From 1388b0fe1177f23776ce3bcafe68fc2006761aa4 Mon Sep 17 00:00:00 2001 From: Emmanuel ROY Date: Tue, 14 Apr 2020 09:36:08 +0200 Subject: [PATCH] ajout du layout polo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TODO: créé les pages de blog (sommaire,news) permettant d'afficher les fichiers md --- .idea/SAND-framework.iml | 1 + .idea/php.xml | 1 + application/config/define-constantes.php | 3 +- application/config/files/routing.yml | 7 + application/include/actions/DefaultAction.php | 1 - .../include/actions/MenudocsAction.php | 35 + application/include/conduits/DocConduit.php | 41 + application/include/controlleurs/docs.php | 7 - application/include/modeles/docs.model | 5 - .../include/vues/layout/body.blade.php | 16 +- application/include/vues/view/docs.blade.php | 14 +- .../include/vues/view/menu-docs.blade.php | 8 + composer.json | 3 +- console/command/module.class.php | 3 + .../wp-content/languages/admin-fr_FR.mo | Bin 0 -> 385581 bytes .../wp-content/languages/admin-fr_FR.po | 10940 ++++++++++++++++ .../languages/admin-network-fr_FR.mo | Bin 0 -> 53088 bytes .../languages/admin-network-fr_FR.po | 1389 ++ .../languages/continents-cities-fr_FR.mo | Bin 0 -> 20758 bytes .../languages/continents-cities-fr_FR.po | 2097 +++ .../wordpress/wp-content/languages/fr_FR.mo | Bin 0 -> 229472 bytes .../wordpress/wp-content/languages/fr_FR.po | 10614 +++++++++++++++ .../languages/plugins/akismet-fr_FR.mo | Bin 0 -> 21605 bytes .../languages/plugins/akismet-fr_FR.po | 722 + .../languages/themes/twentyfifteen-fr_FR.mo | Bin 0 -> 6423 bytes .../languages/themes/twentyfifteen-fr_FR.po | 305 + .../languages/themes/twentyseventeen-fr_FR.mo | Bin 0 -> 7258 bytes .../languages/themes/twentyseventeen-fr_FR.po | 327 + .../languages/themes/twentysixteen-fr_FR.mo | Bin 0 -> 6801 bytes .../languages/themes/twentysixteen-fr_FR.po | 330 + .../01.controleur_facile.md} | 0 .../02.controleur_base.md} | 0 .../03.controleur_rest_html.md} | 0 data/{blog/vues.md => docs/04.vues.md} | 2 +- data/{blog/action.md => docs/05.action.md} | 0 data/{blog/conduit.md => docs/06.conduit.md} | 0 data/{blog/modules.md => docs/07.modules.md} | 0 .../comment_troller_efficacement.md | 14 +- data/{blog => docs}/livre_programmation.md | 0 39 files changed, 26842 insertions(+), 43 deletions(-) create mode 100644 application/include/actions/MenudocsAction.php create mode 100644 application/include/conduits/DocConduit.php delete mode 100644 application/include/controlleurs/docs.php delete mode 100644 application/include/modeles/docs.model create mode 100644 application/include/vues/view/menu-docs.blade.php create mode 100644 console/skel/wordpress/wp-content/languages/admin-fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/admin-fr_FR.po create mode 100644 console/skel/wordpress/wp-content/languages/admin-network-fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/admin-network-fr_FR.po create mode 100644 console/skel/wordpress/wp-content/languages/continents-cities-fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/continents-cities-fr_FR.po create mode 100644 console/skel/wordpress/wp-content/languages/fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/fr_FR.po create mode 100644 console/skel/wordpress/wp-content/languages/plugins/akismet-fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/plugins/akismet-fr_FR.po create mode 100644 console/skel/wordpress/wp-content/languages/themes/twentyfifteen-fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/themes/twentyfifteen-fr_FR.po create mode 100644 console/skel/wordpress/wp-content/languages/themes/twentyseventeen-fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/themes/twentyseventeen-fr_FR.po create mode 100644 console/skel/wordpress/wp-content/languages/themes/twentysixteen-fr_FR.mo create mode 100644 console/skel/wordpress/wp-content/languages/themes/twentysixteen-fr_FR.po rename data/{blog/controleur_facile.md => docs/01.controleur_facile.md} (100%) rename data/{blog/controleur_base.md => docs/02.controleur_base.md} (100%) rename data/{blog/controleur_rest_html.md => docs/03.controleur_rest_html.md} (100%) rename data/{blog/vues.md => docs/04.vues.md} (97%) rename data/{blog/action.md => docs/05.action.md} (100%) rename data/{blog/conduit.md => docs/06.conduit.md} (100%) rename data/{blog/modules.md => docs/07.modules.md} (100%) rename data/{blog => docs}/comment_troller_efficacement.md (87%) rename data/{blog => docs}/livre_programmation.md (100%) diff --git a/.idea/SAND-framework.iml b/.idea/SAND-framework.iml index 16440b1..560fdc0 100644 --- a/.idea/SAND-framework.iml +++ b/.idea/SAND-framework.iml @@ -12,6 +12,7 @@ + diff --git a/.idea/php.xml b/.idea/php.xml index af1acaf..9d660cd 100644 --- a/.idea/php.xml +++ b/.idea/php.xml @@ -33,6 +33,7 @@ + diff --git a/application/config/define-constantes.php b/application/config/define-constantes.php index 454b97e..a1a6476 100644 --- a/application/config/define-constantes.php +++ b/application/config/define-constantes.php @@ -11,4 +11,5 @@ define("VIEW_PATH", APPLICATION_PATH . DIRECTORY_SEPARATOR . "include" . DIRECTO define("CONTROLLER_PATH", APPLICATION_PATH . DIRECTORY_SEPARATOR . "include" . DIRECTORY_SEPARATOR . "controlleurs"); define("TRAITEMENT_PATH", APPLICATION_PATH . DIRECTORY_SEPARATOR . "traitements"); define("PUBLIC_PATH", dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . "public"); -define("CONSOLE_PATH", dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . "console"); \ No newline at end of file +define("CONSOLE_PATH", dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . "console"); +define("DATA_PATH", dirname(dirname(dirname(__FILE__))) . DIRECTORY_SEPARATOR . "data"); \ No newline at end of file diff --git a/application/config/files/routing.yml b/application/config/files/routing.yml index b4c3f9b..8cd0fc0 100644 --- a/application/config/files/routing.yml +++ b/application/config/files/routing.yml @@ -12,3 +12,10 @@ foo_placeholder_route: requirements: id: '[0-9]+' +docs_route: + path: /docs + defaults: { controller: 'DocConduit::index' } + +docs_name_route: + path: /docs/file/{name} + defaults: { controller: 'DocConduit::readfile' } \ No newline at end of file diff --git a/application/include/actions/DefaultAction.php b/application/include/actions/DefaultAction.php index 8b67b84..1b8a237 100644 --- a/application/include/actions/DefaultAction.php +++ b/application/include/actions/DefaultAction.php @@ -10,7 +10,6 @@ class DefaultAction extends Action { public function default($data) { - /**your action algorythm**/ if (isset($data[0])) { $var1 = $data[0]; diff --git a/application/include/actions/MenudocsAction.php b/application/include/actions/MenudocsAction.php new file mode 100644 index 0000000..82549c0 --- /dev/null +++ b/application/include/actions/MenudocsAction.php @@ -0,0 +1,35 @@ +render('menu-docs', array('files'=>$files)); + } + +} diff --git a/application/include/conduits/DocConduit.php b/application/include/conduits/DocConduit.php new file mode 100644 index 0000000..de361b0 --- /dev/null +++ b/application/include/conduits/DocConduit.php @@ -0,0 +1,41 @@ +render('docs', array('page_title' => 'Foo', 'description' => 'DocConduit','files' => $files)); + } + // Route('/docs/file/{name}') + public function readfile(){ + + $markdown = file_get_contents(DATA_PATH.'/docs/'.$this->name); + + $my_html = MarkdownExtra::defaultTransform($markdown); + + return $this->render('docs', array('page_title' => 'Foo', 'description' => 'DocConduit','data' => $my_html)); + + } +} \ No newline at end of file diff --git a/application/include/controlleurs/docs.php b/application/include/controlleurs/docs.php deleted file mode 100644 index c01f667..0000000 --- a/application/include/controlleurs/docs.php +++ /dev/null @@ -1,7 +0,0 @@ -'blade',"templating_b"=>'twig',"templating_c"=>'edge'); -Logger::addLog('ok', 'Hello world'); \ No newline at end of file diff --git a/application/include/modeles/docs.model b/application/include/modeles/docs.model deleted file mode 100644 index e334cbd..0000000 --- a/application/include/modeles/docs.model +++ /dev/null @@ -1,5 +0,0 @@ -name : docs -page_title : module_title -description : module_description -params : module_params - diff --git a/application/include/vues/layout/body.blade.php b/application/include/vues/layout/body.blade.php index 8d0036b..883065d 100644 --- a/application/include/vues/layout/body.blade.php +++ b/application/include/vues/layout/body.blade.php @@ -109,21 +109,7 @@ diff --git a/application/include/vues/view/docs.blade.php b/application/include/vues/view/docs.blade.php index a8e4457..5bfc80c 100644 --- a/application/include/vues/view/docs.blade.php +++ b/application/include/vues/view/docs.blade.php @@ -2,15 +2,15 @@ @section('sidebar') @parent - -

This is appended to the master sidebar.

@endsection @section('content') - Foo Controlleur - @if (isset($id)) - {{$id}} - @else - id not exist + @if (isset($files)) + @foreach( $files as $file) + {{ $file }}
+ @endforeach + @endif + @if (isset($data)) + {{$data}} @endif @endsection \ No newline at end of file diff --git a/application/include/vues/view/menu-docs.blade.php b/application/include/vues/view/menu-docs.blade.php new file mode 100644 index 0000000..49705ba --- /dev/null +++ b/application/include/vues/view/menu-docs.blade.php @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/composer.json b/composer.json index bd020c7..a15090e 100644 --- a/composer.json +++ b/composer.json @@ -21,6 +21,7 @@ "symfony/http-foundation": "~2.8", "symfony/yaml": "~4.0", "symfony/expression-language": "~3.0", - "symfony/config": "3.3.2" + "symfony/config": "3.3.2", + "michelf/php-markdown": "^1.9" } } diff --git a/console/command/module.class.php b/console/command/module.class.php index 375f945..9fbb42a 100644 --- a/console/command/module.class.php +++ b/console/command/module.class.php @@ -170,6 +170,9 @@ class module print $git_chown; $git_ln_1 = shell_exec('cd '.PUBLIC_PATH.' && ln -s ../application/modules/wordpress/ wordpress'); print $git_ln_1; + + $languages = shell_exec('cp '.CONSOLE_PATH.'/skel/wordpress '.MODULES_PATH ); + $git_controlleur = shell_exec('cp '.CONSOLE_PATH.'/skel/module.php '.CONTROLLERS_PATH.'/wordpress.php'); $controlleur = file_get_contents(CONTROLLERS_PATH.'/wordpress.php'); $controlleur = preg_replace('%MODULE%','wordpress',$controlleur); diff --git a/console/skel/wordpress/wp-content/languages/admin-fr_FR.mo b/console/skel/wordpress/wp-content/languages/admin-fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..3ff325130d040db2af944bf28043d5a627e614ae GIT binary patch literal 385581 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 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: fr\n" +"Project-Id-Version: WordPress - 4.7.x - Administration\n" + +#. Author URI of the plugin/theme +msgid "http://ma.tt/" +msgstr "http://ma.tt/" + +#. Author of the plugin/theme +msgid "Matt Mullenweg" +msgstr "Matt Mullenweg" + +#. Description of the plugin/theme +msgid "This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page." +msgstr "Ce n’est pas qu’une extension. Elle symbolise l’espoir et l’enthousiasme de toute une génération, résumé en deux mots, qu’a notamment chanté Louis Armstrong : Hello, Dolly. Une fois activée, elle affichera une ligne aléatoirement des paroles de la chanson Hello, Dolly, en haut à droite de toutes les pages de l’administration." + +#. Plugin URI of the plugin/theme +msgid "http://wordpress.org/plugins/hello-dolly/" +msgstr "http://wordpress.org/plugins/hello-dolly/" + +#. Plugin Name of the plugin/theme +msgid "Hello Dolly" +msgstr "Hello Dolly" + +#: wp-admin/widgets.php:506 +msgid "Add Widget" +msgstr "Ajouter le widget" + +#: wp-admin/widgets.php:438 +msgid "This will clear all items from the inactive widgets list. You will not be able to restore any customizations." +msgstr "Cela supprimera tous les éléments de la liste des widgets désactivés. Vous ne pourrez récupérer aucune personnalisation." + +#: wp-admin/widgets.php:428 +msgid "Clear Inactive Widgets" +msgstr "Vider les widgets désactivés" + +#: wp-admin/widgets.php:392 +msgid "To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back." +msgstr "Pour activer un widget, glissez-le dans la barre latérale ou cliquez dessus. Pour désactiver un widget et supprimer ses réglages, enlevez-le de la barre latérale." + +#: wp-admin/widgets.php:388 +msgctxt "removing-widget" +msgid "Deactivate" +msgstr "Désactiver" + +#: wp-admin/widgets.php:388 +msgid "Available Widgets" +msgstr "Widgets disponibles" + +#: wp-admin/widgets.php:343 +msgid "Error in displaying the widget settings form." +msgstr "Une erreur est survenue durant l’affichage du formulaire de paramétrage du widget." + +#: wp-admin/widgets.php:322 +msgid "Save Widget" +msgstr "Enregistrer le widget" + +#: wp-admin/widgets.php:284 +msgid "Position" +msgstr "Position" + +#: wp-admin/widgets.php:282 +msgid "Select both the sidebar for this widget and the position of the widget in that sidebar." +msgstr "Sélectionnez à la fois la colonne latérale pour ce widget, et la position du widget dans cette colonne latérale." + +#: wp-admin/widgets.php:271 +msgid "Widget %s" +msgstr "Widget %s" + +#: wp-admin/widgets.php:117 +msgid "Drag widgets here to remove them from the sidebar but keep their settings." +msgstr "Glissez ici les widgets que vous voulez retirer de la colonne latérale, tout en conservant leurs réglages actuels." + +#: wp-admin/widgets.php:114 +msgid "Inactive Widgets" +msgstr "Widgets désactivés" + +#: wp-admin/widgets.php:100 +msgid "This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar." +msgstr "Cette barre latérale n’est plus disponible, et ne s’affiche nulle part sur le site. Vous pouvez en retirer les widgets ci-dessous afin de la supprimer totalement." + +#: wp-admin/widgets.php:97 +msgid "Inactive Sidebar (not used)" +msgstr "Barre latérale inactive (inutilisée)" + +#: wp-admin/widgets.php:81 +msgid "The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." +msgstr "Le thème que vous utilisez n’est pas conçu pour les widgets, ce qui signifie qu’il ne dispose pas d’une colonne latérale que vous pouvez modifier. Pour obtenir des informations sur la manière de rendre votre thème compatible avec les widgets, lisez ces instructions." + +#: wp-admin/widgets.php:76 +msgid "Documentation on Widgets" +msgstr "Documentation sur les widgets" + +#: wp-admin/widgets.php:71 +msgid "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved." +msgstr "En changeant de thèmes, il y a souvent des variations sur le nombre et l’agencement des zones de widgets et des barres latérales, et parfois tout cela entre en conflit, rendant la transition moins aisée. Si vous avec changé de thème et que certains widgets semblent manquer, faites défiler cet écran jusqu’en bas pour les retrouver dans la zone des widgets inactifs, où ils ont été conservés avec leurs derniers réglages." + +#: wp-admin/widgets.php:70 +msgid "Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area." +msgstr "De nombreux thèmes affichent par défaut quelques widgets dans la barre latérale, jusqu’à ce que vous la modifiez vous-mêmes. Ces widgets par défaut ne sont pas automatiquement affichés dans le gestionnaire de barre latérale. Après avoir fait vos propres modifications de widgets, vous pouvez rajouter les widgets par défaut depuis la section « Widgets Disponibles »." + +#: wp-admin/widgets.php:68 +msgid "Missing Widgets" +msgstr "Widgets manquants" + +#: wp-admin/widgets.php:64 +msgid "Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop." +msgstr "En activant le mode « Accessibilité », via les options d’écrans, vous autorisez l’utilisation des boutons « Ajouter » et « Modifier » à la place du glisser/déposer." + +#: wp-admin/widgets.php:63 +msgid "Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required." +msgstr "Les widgets peuvent être utilisés à plusieurs reprises. Vous pouvez donner un titre pour chaque widget, afin de l’afficher sur votre site, mais ce n’est pas obligatoire." + +#: wp-admin/widgets.php:62 +msgid "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas." +msgstr "Si vous voulez enlever le widget, mais conserver ses réglages pour un possible usage futur, glissez-le simplement dans la zone « Widgets désactivés ». De là, vous pouvez les rajouter n’importe quand. C’est particulièrement utile quand vous passez à un thème avec moins de zones à widgets, ou des zones différentes." + +#: wp-admin/widgets.php:60 +msgid "Removing and Reusing" +msgstr "Retirer et réutiliser" + +#: wp-admin/widgets.php:56 +msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." +msgstr "La section « Widgets disponibles » contient tous les widgets que vous pouvez utiliser. Une fois le widget glissé dans la barre latérale, il s’ouvrira pour vous permettre d’en modifier les réglages. Quand vous êtes satisfait de vos réglages, cliquez sur le bouton « Enregistrer » et le widget sera lancé sur votre site. Si vous cliquez sur « Supprimer », le widget sera enlevé du site." + +#: wp-admin/widgets.php:55 +msgid "Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them." +msgstr "Les widgets sont des conteneurs de contenu indépendants, qui peuvent être placés dans n’importe quelle zone à widgets de votre thème (le plus souvent, la barre latérale). Pour remplir les zones à widgets de votre barre latérale, glissez/déposez les barres de titre dans la zone désirée. Par défaut, seule la première zone de widgets sera ouverte. Pour remplir les autres zones à widgets, cliquez sur leur barre de titre afin de les ouvrir." + +#: wp-admin/users.php:472 +msgid "Other users have been removed." +msgstr "Les autres utilisateurs ont été supprimés." + +#: wp-admin/users.php:471 +msgid "You can't remove the current user." +msgstr "Vous ne pouvez pas supprimer l’utilisateur courant." + +#: wp-admin/users.php:468 +msgid "User removed from this site." +msgstr "Utilisateur supprimé de ce site." + +#: wp-admin/users.php:465 +msgid "Other users have been deleted." +msgstr "Les autres utilisateurs ont été supprimés." + +#: wp-admin/users.php:464 +msgid "You can’t delete the current user." +msgstr "Vous ne pouvez pas supprimer l’utilisateur en cours d’utilisation." + +#: wp-admin/users.php:461 +msgid "Other user roles have been changed." +msgstr "Les rôles des autres utilisateurs ont été modifiés." + +#: wp-admin/users.php:460 +msgid "The current user’s role must have user editing capabilities." +msgstr "L’utilisateur actuel doit avoir un rôle lui permettant de modifier les utilisateurs." + +#: wp-admin/users.php:457 +msgid "Changed roles." +msgstr "Rôles modifiés." + +#: wp-admin/users.php:453 +msgid "New user created." +msgstr "Le nouvel utilisateur a été créé." + +#. translators: %s: edit page url +#: wp-admin/users.php:449 +msgid "New user created. Edit user" +msgstr "Nouvel utilisateur créé. Modifier l’utilisateur" + +#: wp-admin/users.php:442 +msgid "%s user deleted." +msgid_plural "%s users deleted." +msgstr[0] "%s utilisateur supprimé." +msgstr[1] "%s utilisateurs supprimés." + +#: wp-admin/users.php:440 +msgid "User deleted." +msgstr "Utilisateur supprimé." + +#: wp-admin/users.php:398 +msgid "There are no valid users selected for removal." +msgstr "Aucun utilisateur valide n’est sélectionné pour la suppression." + +#: wp-admin/users.php:396 +msgid "Confirm Removal" +msgstr "Confirmer cette action" + +#. translators: 1: user id, 2: user login +#: wp-admin/users.php:385 +msgid "ID #%1$s: %2$s Sorry, you are not allowed to remove this user." +msgstr "ID #%1$s : %2$s Désolé, vous n’êtes pas autorisé à supprimer cet utilisateur." + +#. translators: 1: user id, 2: user login +#: wp-admin/users.php:382 +msgid "ID #%1$s: %2$s The current user will not be removed." +msgstr "ID n°%1$s : %2$s l’utilisateur actuel ne sera pas supprimé." + +#: wp-admin/users.php:371 +msgid "You have specified these users for removal:" +msgstr "Vous avez choisi de supprimer ces utilisateurs :" + +#: wp-admin/users.php:369 +msgid "You have specified this user for removal:" +msgstr "Vous avez indiqué que cet utilisateur devait être supprimé :" + +#: wp-admin/users.php:366 +msgid "Remove Users from Site" +msgstr "Supprimer des utilisateurs de ce site" + +#: wp-admin/users.php:317 wp-admin/users.php:352 +msgid "Sorry, you are not allowed to remove users." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer les utilisateurs." + +#: wp-admin/users.php:309 wp-admin/users.php:344 +msgid "You can’t remove users." +msgstr "Vous ne pouvez pas supprimer ces utilisateurs." + +#: wp-admin/users.php:297 +msgid "There are no valid users selected for deletion." +msgstr "Aucun utilisateur valide n’est sélectionné pour la suppression." + +#: wp-admin/users.php:269 +msgid "What should be done with content owned by these users?" +msgstr "Que doit-il arriver aux contenus appartenant à ces utilisateurs ?" + +#: wp-admin/users.php:267 +msgid "What should be done with content owned by this user?" +msgstr "Que faire du contenu ayant cet utilisateur pour propriétaire ?" + +#. translators: 1: user id, 2: user login +#: wp-admin/users.php:255 wp-admin/users.php:388 +msgid "ID #%1$s: %2$s" +msgstr "ID n°%1$s : %2$s" + +#. translators: 1: user id, 2: user login +#: wp-admin/users.php:252 +msgid "ID #%1$s: %2$s The current user will not be deleted." +msgstr "ID n°%1$s : %2$s L’utilisateur actuel ne sera pas supprimé." + +#: wp-admin/users.php:242 +msgid "You have specified these users for deletion:" +msgstr "Vous avez indiqué que vous voulez supprimer ces utilisateurs :" + +#: wp-admin/users.php:240 +msgid "You have specified this user for deletion:" +msgstr "Vous avez choisi de supprimer cet utilisateur :" + +#: wp-admin/users.php:235 +msgid "Please select an option." +msgstr "Veuillez choisir une option." + +#: wp-admin/users.php:232 +msgid "Delete Users" +msgstr "Supprimer des utilisateurs" + +#: wp-admin/users.php:174 +msgid "Sorry, you are not allowed to delete that user." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cet utilisateur. " + +#: wp-admin/users.php:167 wp-admin/users.php:207 +msgid "Sorry, you are not allowed to delete users." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer des utilisateurs." + +#: wp-admin/users.php:148 wp-admin/users.php:197 +msgid "User deletion is not allowed from this screen." +msgstr "La suppression d’un utilisateur n’est pas autorisée depuis cet écran." + +#: wp-admin/users.php:134 +msgid "One of the selected users is not a member of this site." +msgstr "Un des utilisateurs sélectionnés n’est pas un abonné de ce site." + +#: wp-admin/users.php:75 +msgid "Users list" +msgstr "Liste des utilisateurs" + +#: wp-admin/users.php:74 +msgid "Users list navigation" +msgstr "Navigation de la liste des utilisateurs" + +#: wp-admin/users.php:73 +msgid "Filter users list" +msgstr "Liste des filtres utilisateurs" + +#: wp-admin/users.php:68 +msgid "Descriptions of Roles and Capabilities" +msgstr "Descriptions des rôles et permissions (en)" + +#: wp-admin/users.php:67 +msgid "Documentation on Managing Users" +msgstr "Documentation sur l’ajout de nouveaux utilisateurs (en)" + +#: wp-admin/users.php:54 +msgid "Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using Bulk Actions." +msgstr "« Supprimer » vous amène à l’écran de suppression des utilisateurs pour confirmer votre action, d’où vous pouvez retirer un utilisateur de manière permanente et supprimer son contenu. Vous pouvez également supprimer plusieurs utilisateurs à la fois avec les Actions Groupées." + +#: wp-admin/users.php:52 +msgid "Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using Bulk Actions." +msgstr "« Supprimer » vous permet de retirer un utilisateur de votre site. Cela ne supprime pas son contenu. Vous pouvez également supprimer plusieurs utilisateurs à la fois avec les Actions groupées." + +#: wp-admin/users.php:49 +msgid "Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username." +msgstr "« Modifier » vous envoie sur l’écran de modification de cet utilisateur. Vous pouvez également vous rendre sur cet écran en cliquant sur le nom de l’utilisateur ;" + +#: wp-admin/users.php:47 +msgid "Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:" +msgstr "Passer la souris au-dessus d’une ligne de la liste des utilisateurs, fera s’afficher des liens vous permettant de gérer l’utilisateur. Vous pouvez lancer les actions suivantes :" + +#: wp-admin/users.php:43 +msgid "You can view all posts made by a user by clicking on the number under the Posts column." +msgstr "Vous pouvez afficher tous les articles faits par un même utilisateur en cliquant sur le nombre sous la colonne « Articles »." + +#: wp-admin/users.php:42 +msgid "You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed." +msgstr "Vous pouvez filtrer la liste des utilisateurs par rôle, à l’aide des liens textuels au-dessus de la liste des utilisateurs, afin d’afficher tous les utilisateurs, ou seulement les administrateurs, les éditeurs, les auteurs ou les contributeurs. Par défaut, tous les utilisateurs sont affichés. Les rôles sans utilisateurs ne sont pas listés." + +#: wp-admin/users.php:41 +msgid "You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab." +msgstr "Vous pouvez masquer/afficher les colonnes en fonction de vos besoins, et décider du nombre d’articles à afficher par écran à l’aide de l’onglet « Options de l’écran »." + +#: wp-admin/users.php:39 +msgid "You can customize the display of this screen in a number of ways:" +msgstr "Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :" + +#: wp-admin/users.php:38 +msgid "Screen Display" +msgstr "Écran affiché" + +#: wp-admin/users.php:33 +msgid "To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section." +msgstr "Pour ajouter un nouvel utilisateur à votre site, cliquez sur le bouton « Ajouter » en haut de l’écran, ou l’option « Ajouter » du menu « Utilisateurs »." + +#: wp-admin/users.php:32 +msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." +msgstr "Cet écran liste tous les utilisateurs actuels de votre site. Chaque utilisateur a l’un des 5 rôles prédéfinis, tel qu’assigné par l’administrateur du site : Administrateur, Éditeur, Auteur, Contributeur ou Abonné. Les utilisateurs avec un rôle autre qu’Administrateur verront moins d’options quand ils seront connectés, en fonction de leur rôle." + +#: wp-admin/user-new.php:470 +msgid "Send the new user an email about their account." +msgstr "Envoyer un message au nouvel utilisateur à propos de son compte." + +#: wp-admin/user-new.php:467 +msgid "Send User Notification" +msgstr "Envoyer une notification à l’utilisateur" + +#: wp-admin/user-new.php:382 +msgid "Create a brand new user and add them to this site." +msgstr "Créer un nouvel utilisateur et l’ajouter à ce site." + +#: wp-admin/user-new.php:354 wp-admin/user-new.php:490 +msgid "Add the user without sending an email that requires their confirmation." +msgstr "Ajouter l’utilisateur sans envoyer de message lui demandant de confirmation." + +#: wp-admin/user-new.php:351 wp-admin/user-new.php:487 +msgid "Skip Confirmation Email" +msgstr "Passer la confirmation par e-mail" + +#: wp-admin/user-new.php:322 +msgid "Email or Username" +msgstr "E-mail ou identifiant" + +#: wp-admin/user-new.php:321 +msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Pour inviter un utilisateur de ce réseau sur ce site, saisissez son adresse de messagerie ou son identifiant. Cette personne recevra alors un message lui proposant de confirmer son ajout." + +#: wp-admin/user-new.php:317 +msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Saisissez l’adresse de messagerie d’un utilisateur existant sur votre réseau, afin de l’inviter sur ce site. Cette personne recevra un message lui demandant de confirmer l’invitation." + +#: wp-admin/user-new.php:282 wp-admin/user-new.php:315 +#: wp-admin/user-new.php:373 +msgid "Add Existing User" +msgstr "Ajouter un utilisateur existant" + +#: wp-admin/user-new.php:273 +msgid "User added." +msgstr "Utilisateur ajouté." + +#: wp-admin/user-new.php:262 +msgid "That user is already a member of this site." +msgstr "Cet utilisateur est déjà membre de ce site." + +#. translators: %s: edit page url +#: wp-admin/user-new.php:258 +msgid "User has been added to your site. Edit user" +msgstr "L’utilisateur a été ajouté à votre site. Modifier l’utilisateur" + +#: wp-admin/user-new.php:255 +msgid "User has been added to your site." +msgstr "L’utilisateur a été ajouté à votre site." + +#: wp-admin/user-new.php:251 +msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." +msgstr "L’invitation a été envoyée à l’utilisateur sur son adresse de messagerie. Il devra cliquer sur un lien de confirmation pour être ajouté à votre site." + +#: wp-admin/user-new.php:248 +msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created." +msgstr "Envoi d’un message d’invitation au nouvel utilisateur. Un lien de confirmation devra d’abord être cliqué avant la création du compte." + +#: wp-admin/user-new.php:213 +msgid "Documentation on Adding New Users" +msgstr "Documentation sur l’ajout de nouveaux utilisateurs (en)" + +#: wp-admin/user-new.php:207 +msgid "Administrators have access to all the administration features." +msgstr "Les administrateurs peuvent accéder à toutes les fonctionnalités de l’administration ;" + +#: wp-admin/user-new.php:206 +msgid "Editors can publish posts, manage posts as well as manage other people’s posts, etc." +msgstr "Les éditeurs peuvent publier et gérer leurs propres articles, ainsi que ceux des autres membres ;" + +#: wp-admin/user-new.php:205 +msgid "Authors can publish and manage their own posts, and are able to upload files." +msgstr "Les auteurs peuvent publier et gérer leurs propres articles, ils peuvent également envoyer des fichiers ;" + +#: wp-admin/user-new.php:204 +msgid "Contributors can write and manage their posts but not publish posts or upload media files." +msgstr "Les contributeurs peuvent écrire et gérer leurs articles, mais ils ne peuvent pas publier les articles ou envoyer des fichiers média ;" + +#: wp-admin/user-new.php:203 +msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." +msgstr "Les abonnés peuvent lire les commentaires/commenter/recevoir les newsletters, etc. Mais ils ne peuvent pas créer du contenu sur le site." + +#: wp-admin/user-new.php:201 +msgid "Here is a basic overview of the different user roles and the permissions associated with each one:" +msgstr "Voici un rapide survol des différents rôles assignables aux utilisateurs, et des permissions qui leurs sont associées :" + +#: wp-admin/user-new.php:200 +msgid "User Roles" +msgstr "Rôles utilisateurs" + +#: wp-admin/user-new.php:190 +msgid "Remember to click the Add New User button at the bottom of this screen when you are finished." +msgstr "N’oubliez pas de cliquer sur le bouton « Ajouter un utilisateur », en bas de cet écran, quand vous aurez terminé." + +#: wp-admin/user-new.php:187 +msgid "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you don’t want to send the new user a welcome email." +msgstr "Par défaut, les nouveaux utilisateurs recevront un message leur indiquant leur ajout en tant que membre de votre site. Ce message contiendra également un lien de réinitialisation de leur mot de passe. Décochez la case si vous souhaitez ne pas envoyer de message de bienvenue." + +#: wp-admin/user-new.php:185 +msgid "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." +msgstr "Les nouveaux utilisateurs reçoivent automatiquement un mot de passe, qui peut être changé après connexion. Vous pouvez afficher le mot de passe ou le modifier en cliquant sur le bouton « Afficher le mot de passe ». L'identifiant ne peut pas être modifié une fois que le compte utilisateur a été créé." + +#: wp-admin/user-new.php:183 +msgid "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you don’t want the user to receive a welcome email." +msgstr "Les nouveaux utilisateurs reçoivent un message les informant qu’ils ont été ajoutés aux utilisateurs de votre site. Ce message contient également leur mot de passe. Décochez la case si vous ne voulez pas que l’utilisateur reçoive ce message de bienvenue." + +#: wp-admin/user-new.php:182 +msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." +msgstr "Parce qu’il s’agit d’une installation multisite, vous pouvez ajouter des comptes qui existent déjà sur le Réseau, en indiquant un nom d’utilisateur ou une adresse de messagerie, et en assignant un rôle. Pour avoir plus d’options, telle que le choix du mot de passe, vous devez être Administrateur du Réseau, et utiliser les liens qui apparaissent au survol sous le nom de l’utilisateur pour modifier son profil utilisateur, depuis l’écran « Tous les utilisateurs »." + +#: wp-admin/user-new.php:179 +msgid "To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom." +msgstr "Pour ajouter un nouvel utilisateur à votre site, remplissez le formulaire de cet écran et cliquez sur le bouton « Ajouter un nouvel utilisateur » en bas de l’écran." + +#: wp-admin/user-new.php:100 +msgid "[%s] Joining confirmation" +msgstr "[%s] Confirmation d’inscription" + +#. translators: 1: Site name, 2: site URL, 3: role, 4: activation URL +#: wp-admin/user-new.php:93 +msgid "" +"Hi,\n" +"\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"\n" +"Please click the following link to confirm the invite:\n" +"%4$s" +msgstr "" +"Bonjour,\n" +"\n" +"Vous avez été invité(e) à rejoindre « %1$s » sur\n" +"%2$s en tant que %3$s. \n" +"Veuillez cliquer sur le lien suivant pour confirmer l’invitation :\n" +"%4$s" + +#: wp-admin/user-new.php:23 wp-admin/user-new.php:117 +msgid "Sorry, you are not allowed to create users." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des utilisateurs." + +#: wp-admin/user-new.php:16 wp-admin/user-new.php:56 +msgid "Sorry, you are not allowed to add users to this network." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des utilisateurs pour ce réseau." + +#: wp-admin/user-edit.php:679 +msgid "Update User" +msgstr "Mettre à jour l’utilisateur" + +#: wp-admin/user-edit.php:679 +msgid "Update Profile" +msgstr "Mettre à jour le profil" + +#: wp-admin/user-edit.php:666 +msgid "Denied: %s" +msgstr "Refusé : %s" + +#: wp-admin/user-edit.php:658 +msgid "Capabilities" +msgstr "Capacités" + +#: wp-admin/user-edit.php:655 +msgid "Additional Capabilities" +msgstr "Fonctionnalités complémentaires" + +#. translators: 1: User's display name. +#: wp-admin/user-edit.php:606 +msgid "Log %s out of all locations." +msgstr "Déconnecter %s de tous les supports/appareils." + +#: wp-admin/user-edit.php:602 +msgid "Log Out Everywhere" +msgstr "Déconnexion globale" + +#: wp-admin/user-edit.php:594 +msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." +msgstr "Avez-vous perdu votre téléphone ou laissé votre compte ouvert sur un ordinateur public ? Vous pouvez rester connecté ici tout en vous déconnectant partout ailleurs." + +#: wp-admin/user-edit.php:584 +msgid "You are only logged in at this location." +msgstr "Vous n’êtes connecté qu’à cet endroit." + +#: wp-admin/user-edit.php:582 wp-admin/user-edit.php:592 +msgid "Log Out Everywhere Else" +msgstr "Me déconnecter partout ailleurs" + +#: wp-admin/user-edit.php:580 wp-admin/user-edit.php:590 +#: wp-admin/user-edit.php:600 +msgid "Sessions" +msgstr "Sessions" + +#: wp-admin/user-edit.php:571 +msgid "Confirm use of potentially weak password" +msgstr "Confirmation de l’utilisation de mot de passe potentiellement faible." + +#: wp-admin/user-edit.php:563 +msgid "Type your new password again." +msgstr "Veuillez saisir une deuxième fois votre mot de passe." + +#: wp-admin/user-edit.php:560 +msgid "Repeat New Password" +msgstr "Répétez le nouveau mot de passe" + +#: wp-admin/user-edit.php:552 wp-admin/user-new.php:444 +msgid "Cancel password change" +msgstr "Annuler la modification du mot de passe" + +#: wp-admin/user-edit.php:543 +msgid "Generate Password" +msgstr "Générer un mot de passe" + +#: wp-admin/user-edit.php:540 +msgid "New Password" +msgstr "Nouveau mot de passe" + +#: wp-admin/user-edit.php:537 +msgid "Account Management" +msgstr "Gestion de compte" + +#: wp-admin/user-edit.php:501 +msgid "https://en.gravatar.com/" +msgstr "https://fr.gravatar.com/" + +#. translators: %s: Gravatar URL +#: wp-admin/user-edit.php:500 +msgid "You can change your profile picture on Gravatar." +msgstr "Vous pouvez changer votre image de profil en passant par Gravatar." + +#: wp-admin/user-edit.php:494 +msgid "Profile Picture" +msgstr "Illustration du profil" + +#: wp-admin/user-edit.php:489 +msgid "Share a little biographical information to fill out your profile. This may be shown publicly." +msgstr "Donnez quelques informations biographiques pour remplir votre profil. Ceci peut être affiché publiquement." + +#: wp-admin/user-edit.php:487 +msgid "Biographical Info" +msgstr "Renseignements biographiques" + +#: wp-admin/user-edit.php:483 +msgid "About the user" +msgstr "À propos de l’utilisateur" + +#: wp-admin/user-edit.php:483 +msgid "About Yourself" +msgstr "À propos de vous" + +#. translators: %s: new email +#: wp-admin/user-edit.php:438 +msgid "There is a pending change of your email to %s." +msgstr "Il y a une modification en cours de votre adresse de messagerie, en faveur de %s." + +#: wp-admin/user-edit.php:425 +msgid "Contact Info" +msgstr "Informations de contact" + +#: wp-admin/user-edit.php:389 +msgid "Display name publicly as" +msgstr "Nom à afficher publiquement" + +#: wp-admin/user-edit.php:384 +msgid "Nickname" +msgstr "Pseudonyme" + +#: wp-admin/user-edit.php:379 wp-admin/user-new.php:418 +msgid "Last Name" +msgstr "Nom" + +#: wp-admin/user-edit.php:374 wp-admin/user-new.php:414 +msgid "First Name" +msgstr "Prénom" + +#: wp-admin/user-edit.php:368 +msgid "Super admin privileges cannot be removed because this user has the network admin email." +msgstr "Les privilèges de super-admin ne peuvent pas être enlevés, car cet utilisateur est celui avec l’adresse de messagerie administrative du réseau." + +#: wp-admin/user-edit.php:366 +msgid "Grant this user super admin privileges for the Network." +msgstr "Donner les privilèges de super-admin à cet utilisateur pour le réseau." + +#: wp-admin/user-edit.php:363 +msgid "Super Admin" +msgstr "Super-admin" + +#: wp-admin/user-edit.php:355 wp-admin/user-edit.php:357 +msgid "— No role for this site —" +msgstr "— Pas de rôle sur ce site —" + +#: wp-admin/user-edit.php:339 +msgid "Usernames cannot be changed." +msgstr "Les identifiants ne peuvent être modifiés." + +#. translators: The user language selection field label +#: wp-admin/user-edit.php:280 +msgid "Language" +msgstr "Langue" + +#: wp-admin/user-edit.php:269 +msgid "Show Toolbar when viewing site" +msgstr "Afficher la barre d’outils lorsque vous visitez le site" + +#: wp-admin/user-edit.php:261 +msgid "More information" +msgstr "Plus d’informations" + +#: wp-admin/user-edit.php:261 +msgid "Enable keyboard shortcuts for comment moderation." +msgstr "Activer les raccourcis clavier pour la modération de commentaires." + +#: wp-admin/user-edit.php:235 +msgid "Disable the visual editor when writing" +msgstr "Désactiver l’éditeur visuel pour écrire" + +#: wp-admin/user-edit.php:234 +msgid "Visual Editor" +msgstr "Éditeur visuel" + +#: wp-admin/user-edit.php:229 +msgid "Personal Options" +msgstr "Options personnelles" + +#: wp-admin/user-edit.php:208 wp-admin/users.php:500 +msgctxt "user" +msgid "Add Existing" +msgstr "Ajouter un utilisateur existant" + +#: wp-admin/user-edit.php:192 +msgid "Error while saving the new email address. Please try again." +msgstr "Une erreur est survenue durant l’enregistrement de votre adresse de messagerie. Veuillez réessayer." + +#: wp-admin/user-edit.php:185 +msgid "← Back to Users" +msgstr "← Retour aux utilisateurs" + +#: wp-admin/user-edit.php:182 +msgid "User updated." +msgstr "Utilisateur mis à jour." + +#: wp-admin/user-edit.php:180 +msgid "Profile updated." +msgstr "Profil mis à jour." + +#: wp-admin/user-edit.php:175 +msgid "This user has super admin privileges." +msgstr "Cet utilisateur possède les privilèges de super-admin." + +#: wp-admin/user-edit.php:55 +msgid "Documentation on User Profiles" +msgstr "Documentation sur le Profil utilisateur (en)" + +#: wp-admin/user-edit.php:45 +msgid "Remember to click the Update Profile button when you are finished." +msgstr "Pensez bien à cliquer sur le bouton « Mettre à jour le profil » quand vous aurez terminé." + +#: wp-admin/user-edit.php:44 +msgid "Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so." +msgstr "Les champs nécessaires sont indiqués, les autres sont facultatifs. Les informations du profil ne sont affichées que si votre thème a été conçu pour les exploiter." + +#: wp-admin/user-edit.php:43 +msgid "You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button." +msgstr "Vous pouvez vous déconnecter d’autres appareils, tels que votre téléphone ou un ordinateur public, en cliquant sur « Me déconnecter partout ailleurs »" + +#: wp-admin/user-edit.php:42 +msgid "Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts." +msgstr "Votre identifiant ne peut être modifié, mais vous pouvez utiliser les autres champs pour saisir votre nom complet ou un pseudonyme, et changer ensuite le nom à afficher dans vos articles." + +#: wp-admin/user-edit.php:41 +msgid "You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see." +msgstr "Vous pouvez sélectionner la langue que vous voulez utiliser pour l’administration de WordPress sans que cela affecte la langue que les visiteurs du site voient." + +#: wp-admin/user-edit.php:40 +msgid "You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens." +msgstr "Vous pouvez modifier votre mot de passe, activer les raccourcis clavier, modifier la combinaison de couleurs des écrans de l’administration, et désactiver l’éditeur visuel (WYSIWYG), entre autres choses. Vous pouvez également masquer la barre d’outils (anciennement « barre d’administration ») sur la partie publique de votre site, mais elle ne peut pas être enlevée des écrans d’administration." + +#: wp-admin/user-edit.php:39 +msgid "Your profile contains information about you (your “account”) as well as some personal options related to using WordPress." +msgstr "Votre profil contient les informations à votre propos (votre « compte »), ainsi que quelques options liées à votre utilisation personnelle de WordPress." + +#: wp-admin/user-edit.php:28 +msgid "Edit User" +msgstr "Modifier l’utilisateur" + +#: wp-admin/upload.php:302 +msgid "Error saving media file." +msgstr "Une erreur est survenue pendant la sauvegarde du fichier média." + +#. translators: %s: number of media files +#: wp-admin/upload.php:294 +msgid "%s media file restored from the trash." +msgid_plural "%s media files restored from the trash." +msgstr[0] "%s fichier média restauré depuis la corbeille." +msgstr[1] "%s fichiers médias restaurés depuis la corbeille." + +#: wp-admin/upload.php:291 wp-admin/upload.php:304 +msgid "Media file restored from the trash." +msgstr "Fichier média récupéré depuis la corbeille." + +#. translators: %s: number of media files +#: wp-admin/upload.php:282 +msgid "%s media file moved to the trash." +msgid_plural "%s media files moved to the trash." +msgstr[0] "%s fichier média déplacé dans la corbeille." +msgstr[1] "%s fichiers médias déplacés dans la corbeille." + +#: wp-admin/upload.php:279 wp-admin/upload.php:303 +msgid "Media file moved to the trash." +msgstr "Fichier média déplacé dans la corbeille." + +#. translators: %s: number of media files +#: wp-admin/upload.php:271 +msgid "%s media file permanently deleted." +msgid_plural "%s media files permanently deleted." +msgstr[0] "%s fichier média supprimé définitivement." +msgstr[1] "%s fichiers médias supprimés définitivement." + +#: wp-admin/upload.php:268 wp-admin/upload.php:301 +msgid "Media file permanently deleted." +msgstr "Fichier média définitivement supprimé." + +#. translators: %s: number of media files +#: wp-admin/upload.php:260 +msgid "%s media file detached." +msgid_plural "%s media files detached." +msgstr[0] "%s fichier média détaché." +msgstr[1] "%s fichiers médias détachés." + +#: wp-admin/upload.php:257 +msgid "Media file detached." +msgstr "Fichier média détaché." + +#. translators: %s: number of media files +#: wp-admin/upload.php:249 +msgid "%s media file attached." +msgid_plural "%s media files attached." +msgstr[0] "%s fichier média attaché." +msgstr[1] "%s fichiers médias attachés." + +#: wp-admin/upload.php:246 +msgid "Media file attached." +msgstr "Fichier média attaché." + +#: wp-admin/upload.php:217 +msgid "Media items list" +msgstr "Liste des éléments média" + +#: wp-admin/upload.php:216 +msgid "Media items list navigation" +msgstr "Navigation de la liste des éléments média" + +#: wp-admin/upload.php:215 +msgid "Filter media items list" +msgstr "Filtrer la liste des fichiers média." + +#: wp-admin/upload.php:205 +msgid "If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file." +msgstr "Le fait qu’un fichier média n’est attaché à aucun article vous sera indiqué dans la colonne « Attaché à », et vous pourrez cliquer sur le lien « Attacher » pour afficher une petite fenêtre vous permettant de rechercher du contenu auquel attacher le fichier." + +#: wp-admin/upload.php:203 +msgid "Attaching Files" +msgstr "Fichiers des extensions" + +#: wp-admin/upload.php:199 +msgid "Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file." +msgstr "Le survol par la souris des lignes du tableau révèle des liens : « Modifier », « Supprimer définitivement » et « Afficher ». En cliquant sur « Modifier » ou sur le nom d’un fichier média, vous obtiendrez un écran où vous pourrez modifier les métadonnées du fichier. En cliquant sur « Supprimer définitivement », vous supprimerez le fichier de la bibliothèque (ainsi que de tous les articles auxquels il était lié). « Afficher » vous enverra sur la page d’affichage de ce fichier." + +#: wp-admin/upload.php:192 +msgid "You can narrow the list by file type/status or by date using the dropdown menus above the media table." +msgstr "Vous pouvez limiter cette liste par type de fichier ou par état à l’aide des filtres situés au-dessus de la liste de médias." + +#: wp-admin/upload.php:191 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen." +msgstr "Tous les fichiers que vous avez mis en ligne sont listés dans la Bibliothèque de Médias, les plus récents en premier. Vous pouvez utiliser l’onglet « Options de l’écran » pour personnaliser l’affichage de cet écran." + +#. translators: %s: list view URL +#: wp-admin/upload.php:87 +msgid "The grid view for the Media Library requires JavaScript. Switch to the list view." +msgstr "La vue en grille de la Bibliothèque de Médias nécessite JavaScript. Passer à la vue en liste." + +#: wp-admin/upload.php:66 wp-admin/upload.php:210 +msgid "Documentation on Media Library" +msgstr "Documentation sur la bibliothèque des médias (en)" + +#: wp-admin/upload.php:61 +msgid "You can also delete individual items and access the extended edit screen from the details dialog." +msgstr "Vous pouvez aussi supprimer les éléments individuellement et accéder à l’écran de modifications étendues par la fenêtre des détails." + +#: wp-admin/upload.php:60 +msgid "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly." +msgstr "Utilisez les boutons fléchées au-dessus de la fenêtre ou les flèches gauche et droite du clavier pour passer rapidement d’un média à l’autre." + +#: wp-admin/upload.php:59 +msgid "Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved." +msgstr "Cliquer sur un élément affichera une fenêtre avec les détails du fichier, ce qui vous permettra de prévisualiser le média et réaliser de rapides modifications. Toutes les modifications que vous ferez dans les détails du média seront automatiquement enregistrées." + +#: wp-admin/upload.php:52 +msgid "To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media." +msgstr "Pour supprimer des éléments de la liste des médias, cliquez sur le bouton de Sélection multiple en haut de l’écran. Sélectionnez tous les éléments à supprimer, puis cliquez sur le bouton Supprimer la sélection. En cliquant sur le bouton Annuler la sélection vous reviendrez sur la vue normale des médias." + +#: wp-admin/upload.php:51 wp-admin/upload.php:193 +msgid "You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media." +msgstr "Vous pouvez voir vos médias dans une grille ou dans une liste avec des colonnes. Passez de l’un à l’autre en utilisant les icônes en haut à gauche des médias." + +#: wp-admin/upload.php:50 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first." +msgstr "Tous les fichiers que vous mettez en ligne sont listés dans la bibliothèque de médias, avec le dernier mis en ligne qui apparaît en premier." + +#: wp-admin/upgrade.php:117 +msgid "%s seconds" +msgstr "%s secondes" + +#: wp-admin/upgrade.php:115 +msgid "%s queries" +msgstr "%s requêtes" + +#: wp-admin/upgrade.php:110 +msgid "Your WordPress database has been successfully updated!" +msgstr "La base de données de WordPress a bien été mise à jour !" + +#: wp-admin/upgrade.php:109 +msgid "Update Complete" +msgstr "Mise à jour terminée" + +#: wp-admin/upgrade.php:99 +msgid "Update WordPress Database" +msgstr "Mettre à jour la base de données de WordPress" + +#: wp-admin/upgrade.php:98 +msgid "The database update process may take a little while, so please be patient." +msgstr "Le processus de mise à jour peut prendre un certain temps, merci donc pour votre patience." + +#: wp-admin/upgrade.php:97 +msgid "WordPress has been updated! Before we send you on your way, we have to update your database to the newest version." +msgstr "WordPress a été mis à jour ! Avant de vous laisser continuer, nous devons mettre à jour la base de données." + +#: wp-admin/upgrade.php:96 +msgid "Database Update Required" +msgstr "Mise à jour de la base de données nécessaire" + +#: wp-admin/upgrade.php:76 +msgid "Your WordPress database is already up-to-date!" +msgstr "Votre base de données WordPress est déjà à jour !" + +#: wp-admin/upgrade.php:75 +msgid "No Update Required" +msgstr "Aucune mise à jour nécessaire" + +#: wp-admin/upgrade.php:64 +msgid "WordPress › Update" +msgstr "WordPress › Mise à jour" + +#: wp-admin/update.php:264 +msgid "Installing Theme from uploaded file: %s" +msgstr "Installation du thème à partir du fichier : %s" + +#: wp-admin/update.php:236 +msgid "Installing Theme: %s" +msgstr "Installation du thème : %s" + +#: wp-admin/update.php:231 +msgid "Install Themes" +msgstr "Installer des thèmes" + +#: wp-admin/update.php:156 +msgid "Installing Plugin from uploaded file: %s" +msgstr "Installation de l’extension à partir du fichier : %s" + +#: wp-admin/update.php:128 +msgid "Installing Plugin: %s" +msgstr "Extension en cours d’installation : %s" + +#: wp-admin/update.php:85 +msgid "Plugin failed to reactivate due to a fatal error." +msgstr "L’extension n’a pu être réactivée suite à une erreur fatale." + +#: wp-admin/update.php:82 +msgid "Plugin reactivated successfully." +msgstr "L’extension a bien été réactivée." + +#: wp-admin/update.php:80 +msgid "Plugin Reactivation" +msgstr "Réactivation d’extension" + +#: wp-admin/update-core.php:608 +msgid "Check Again" +msgstr "Vérifier à nouveau" + +#. translators: %1 date, %2 time. +#: wp-admin/update-core.php:607 +msgid "Last checked on %1$s at %2$s." +msgstr "Dernière vérification le %1$s à %2$s." + +#: wp-admin/update-core.php:594 +msgid "Please select one or more plugins to update." +msgstr "Veuillez sélectionner une ou plusieurs extensions à mettre à jour." + +#: wp-admin/update-core.php:592 +msgid "Please select one or more themes to update." +msgstr "Veuillez sélectionner un ou plusieurs thèmes à mettre à jour." + +#: wp-admin/update-core.php:575 +msgid "Documentation on Updating WordPress" +msgstr "Documentation sur la mise à jour de WordPress (en)" + +#: wp-admin/update-core.php:569 +msgid "How to Update" +msgstr "Comment faire la mise à jour" + +#: wp-admin/update-core.php:564 +msgid "Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button." +msgstr "Traductions — Les fichiers qui traduisent WordPress dans votre langue sont mis à jour dès qu’une modification est faite. Mais si ces fichiers ne sont plus à jour, vous pouvez cliquer sur le bouton \"Mettre à jour les traductions\"." + +#: wp-admin/update-core.php:561 +msgid "Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button." +msgstr "Thèmes et extensions — Pour mettre à jour les thèmes et extensions individuellement depuis cet écran, utilisez les cases à jour pour faire votre sélection, puis cliquez sur le bouton « Mettre à jour » approprié. Pour mettre à jour tous les thèmes et toutes les extensions d’un coup, vous pouvez cocher la case en haut de la section pour tout sélectionner avant de cliquer sur le boutons de mise à jour." + +#: wp-admin/update-core.php:560 +msgid "In most cases, WordPress will automatically apply maintenance and security updates in the background for you." +msgstr "Dans la plupart des cas, WordPress appliquera automatiquement les mises à jour de maintenance et de sécurité en arrière-plan." + +#: wp-admin/update-core.php:560 +msgid "WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update Now” button when you are notified that a new version is available." +msgstr "WordPress — La mise à jour de votre installation WordPress tient en une simple procédure : cliquez sur le bouton « Mettre à jour » quand vous êtes notifié(e) qu’une nouvelle version est disponible." + +#: wp-admin/update-core.php:552 +msgid "If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu." +msgstr "Si une mise à jour est disponible, vous verrez une notification apparaître dans la barre d’outils" + +#: wp-admin/update-core.php:551 +msgid "On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories." +msgstr "Sur cet écran, vous pouvez faire la mise à jour vers la dernière version de WordPress, et mettre à jour les thèmes et extensions depuis les dépôts de WordPress.org." + +#: wp-admin/update-core.php:548 wp-admin/update-core.php:587 +msgid "WordPress Updates" +msgstr "Mises à jour de WordPress" + +#: wp-admin/update-core.php:460 +msgid "Update WordPress" +msgstr "Mettre à jour WordPress" + +#: wp-admin/update-core.php:421 +msgid "New translations are available." +msgstr "De nouvelles traductions sont disponibles." + +#: wp-admin/update-core.php:412 +msgid "Your translations are all up to date." +msgstr "Vos traductions sont toutes à jour." + +#: wp-admin/update-core.php:411 wp-admin/update-core.php:419 +msgid "Translations" +msgstr "Traductions" + +#: wp-admin/update-core.php:351 wp-admin/update-core.php:399 +#: wp-admin/update-core.php:714 wp-admin/update-core.php:719 +msgid "Update Themes" +msgstr "Mettre à jour les thèmes" + +#: wp-admin/update-core.php:348 +msgid "Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications." +msgstr "Notez bien : toutes les personnalisations que vous pourriez avoir apportées aux fichiers des thèmes seront perdues. Pensez à utiliser des thèmes enfants pour vos modifications." + +#: wp-admin/update-core.php:347 +msgid "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." +msgstr "Les thèmes suivants disposent d’une nouvelle version. Cochez ceux que vous voulez mettre à jour, puis cliquez sur « Mettre à jour les thèmes »." + +#: wp-admin/update-core.php:340 +msgid "Your themes are all up to date." +msgstr "Vos thèmes sont tous à jour." + +#. translators: 1: plugin version, 2: new version +#. translators: 1: theme version, 2: new version +#: wp-admin/update-core.php:308 wp-admin/update-core.php:380 +msgid "You have version %1$s installed. Update to %2$s." +msgstr "Vous utilisez la version %1$s. Mettez à jour vers la version %2$s." + +#. translators: %s: plugin version +#: wp-admin/update-core.php:289 +msgid "View version %s details." +msgstr "Afficher les détails de la version %s." + +#: wp-admin/update-core.php:262 wp-admin/update-core.php:272 +msgid "Compatibility with WordPress %1$s: Unknown" +msgstr "Compatibilité avec WordPress %1$s : inconnue" + +#: wp-admin/update-core.php:260 wp-admin/update-core.php:270 +msgid "Compatibility with WordPress %1$s: %2$d%% (%3$d \"works\" votes out of %4$d total)" +msgstr "Compatibilité avec WordPress %1$s : %2$d%% (%3$d votes « ça marche » sur un total de %4$d)" + +#: wp-admin/update-core.php:257 wp-admin/update-core.php:267 +msgid "Compatibility with WordPress %1$s: 100%% (according to its author)" +msgstr "Compatibilité avec WordPress %1$s : 100 %% (selon l’auteur)" + +#: wp-admin/update-core.php:238 +msgid "The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”." +msgstr "Les extensions suivantes disposent d’une nouvelle version. Cochez celles que vous voulez mettre à jour, puis cliquez sur « Mise à jour des extensions »." + +#: wp-admin/update-core.php:226 +msgid "Your plugins are all up to date." +msgstr "Vos extensions sont toutes à jour." + +#: wp-admin/update-core.php:213 +msgid "Learn more about WordPress %s." +msgstr "À propos de WordPress %s." + +#: wp-admin/update-core.php:210 +msgid "While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, your site will return to normal." +msgstr "Durant le processus de mise à jour, votre site sera en mode de maintenance. Dès que le processus sera achevé, votre site sera à nouveau accessible." + +#: wp-admin/update-core.php:196 +msgid "This site is set up to install updates of future beta versions automatically." +msgstr "Ce site est configuré pour installer automatiquement les mises à jour des prochaines versions bêtas." + +#: wp-admin/update-core.php:196 +msgid "BETA TESTERS:" +msgstr "TESTEURS DE PHASE BETA :" + +#: wp-admin/update-core.php:187 +msgid "An updated version of WordPress is available." +msgstr "Une nouvelle version de WordPress est disponible." + +#: wp-admin/update-core.php:183 +msgid "Important: before updating, please back up your database and files. For help with updates, visit the Updating WordPress Codex page." +msgstr "Important : avant de faire une mise à jour, veillez à faire une sauvegarde de votre base de données et de vos fichiers. Pour obtenir de l’aide sur les mises à jour, lisez la page Mettre à jour WordPress." + +#: wp-admin/update-core.php:178 +msgid "Future security updates will be applied automatically." +msgstr "Les prochaines mises à jour de sécurité seront appliquées automatiquement." + +#: wp-admin/update-core.php:165 +msgid "You have the latest version of WordPress." +msgstr "Vous avez la dernière version de WordPress." + +#: wp-admin/update-core.php:127 +msgid "Hide hidden updates" +msgstr "Masquer les mises à jour cachées" + +#: wp-admin/update-core.php:126 wp-admin/update-core.php:138 +msgid "Show hidden updates" +msgstr "Afficher les mises à jour cachées" + +#: wp-admin/update-core.php:113 +msgid "You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released." +msgstr "Vous êtes sur le point d’installer WordPress %s en anglais (US). Il se peut que cette mise à jour ne fonctionne pas avec la traduction de WordPress dont vous disposez. Vous devriez sans doute patienter, le temps que la mise à jour soit officiellement traduite dans votre langue." + +#: wp-admin/update-core.php:110 +msgid "This localized version contains both the translation and various other localization fixes. You can skip upgrading if you want to keep your current translation." +msgstr "Cette version localisée contient à la fois la traduction et divers correctifs liés à la localisation. Si vous souhaitez conserver votre traduction actuelle, vous pouvez ne pas utiliser cette version." + +#: wp-admin/update-core.php:107 +msgid "Bring back this update" +msgstr "Réafficher cette mise à jour" + +#: wp-admin/update-core.php:105 +msgid "Hide this update" +msgstr "Masquer cette mise à jour" + +#. translators: 1: WordPress version number, 2: WordPress version number +#. including locale if necessary +#: wp-admin/update-core.php:81 +msgid "You can update to WordPress %2$s automatically:" +msgstr "Vous pouvez mettre à jour WordPress %2$s automatiquement :" + +#. translators: 1: WordPress version number, 2: Minimum required MySQL version +#. number, 3: Current MySQL version number +#: wp-admin/update-core.php:78 wp-admin/upgrade.php:85 +msgid "You cannot update because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée, car WordPress %1$s requiert une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Current PHP version number +#: wp-admin/update-core.php:75 wp-admin/upgrade.php:83 +msgid "You cannot update because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée, car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Minimum required MySQL version number, 4: Current PHP version +#. number, 5: Current MySQL version number +#: wp-admin/update-core.php:72 wp-admin/upgrade.php:81 +msgid "You cannot update because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." +msgstr "Cette mise à jour ne peut être installée, car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s." + +#: wp-admin/update-core.php:61 +msgid "Re-install Now" +msgstr "Ré-installer maintenant" + +#: wp-admin/update-core.php:60 +msgid "If you need to re-install version %s, you can do so here:" +msgstr "Si vous devez installer à nouveau la version %s, vous pouvez le faire ici :" + +#: wp-admin/update-core.php:57 +msgid "You are using a development version of WordPress. You can update to the latest nightly build automatically:" +msgstr "Vous utilisez une version de développement de WordPress. Vous pouvez mettre à jour vers la version du jour (nightly) automatiquement :" + +#: wp-admin/update-core.php:23 wp-admin/update-core.php:637 +#: wp-admin/update-core.php:665 wp-admin/update-core.php:698 +#: wp-admin/update-core.php:733 +msgid "Sorry, you are not allowed to update this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour ce site." + +#: wp-admin/tools.php:104 +msgid "If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen." +msgstr "Si vous souhaitez convertir vos catégories en étiquettes (et vice versa), utilisez le Convertisseur de catégories-étiquettes, disponible depuis l’écran des importateurs." + +#: wp-admin/tools.php:71 +msgid "Open Press This" +msgstr "Ouvrir Press This" + +#: wp-admin/tools.php:68 +msgid "Follow the link to open Press This. Then add it to your device’s bookmarks or home screen." +msgstr "Cliquez sur le lien pour ouvrir Press This. Ensuite, ajoutez-le aux favoris ou à la page d’accueil de votre appareil." + +#: wp-admin/tools.php:67 +msgid "Direct link (best for mobile)" +msgstr "Lien direct (meilleur sur mobile)" + +#: wp-admin/tools.php:60 +msgid "If you can’t drag the bookmarklet to your bookmarks, copy the following code and create a new bookmark. Paste the code into the new bookmark’s URL field." +msgstr "Si vous ne pouvez pas glisser le bookmarklet dans vos favoris/bookmarks, copiez le code suivant et créez un nouveau favori : vous collerez le code dans le champ « Adresse web » de ce nouveau favori." + +#: wp-admin/tools.php:54 +msgid "Copy “Press This” bookmarklet code" +msgstr "Copier le code du bookmarklet Press This" + +#: wp-admin/tools.php:48 +msgid "Drag the bookmarklet below to your bookmarks bar. Then, when you’re on a page you want to share, simply “press” it." +msgstr "Glissez le bookmarklet ci-dessous dans votre barre de favoris/bookmarks. Ensuite, une fois la page que vous souhaitez partager, il vous suffira de cliquer dessus." + +#: wp-admin/tools.php:47 +msgid "Bookmarklet" +msgstr "Bookmarklet" + +#: wp-admin/tools.php:46 +msgid "Install Press This" +msgstr "Installer Press This" + +#: wp-admin/tools.php:42 +msgid "Use Press This to clip text, images and videos from any web page. Then edit and add more straight from Press This before you save or publish it in a post on your site." +msgstr "Utilisez-le pour récupérer du texte, des images et des vidéos depuis n’importe quelle page Web. Puis modifiez l’article et ajoutez vos propres textes directement dans le bookmarklet, avant d’enregistrer le tout ou de le publier dans un article sur votre site." + +#: wp-admin/tools.php:41 +msgid "Press This is a little tool that lets you grab bits of the web and create new posts with ease." +msgstr "Press This est un petit outil que vous permet de sélectionner des éléments d’une page web et d’en faire rapidement un article." + +#: wp-admin/tools.php:28 +msgid "Documentation on Tools" +msgstr "Documentation sur les outils (en)" + +#: wp-admin/tools.php:23 +msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." +msgstr "Le lien « convertisseur de catégories et étiquettes » vous mènera à la page d’import, où ledit convertisseur est l’une des extensions que vous pouvez installer. Une fois installée, le lien « Activer l’extension & lancer l’importateur » vous mènera à l’écran d’où vous pourrez choisir de lancer une conversion dans un sens ou dans l’autre." + +#: wp-admin/tools.php:22 +msgid "Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content." +msgstr "Les catégories disposent d’une hiérarchie, ce qui signifie que vous pouvez leur donner des sous-catégories. Les étiquettes n’ont pas de hiérarchie et ne peuvent être imbriqués. Parfois, des auteurs commencent par utiliser une sorte de caractérisation, pour se rendre compte par la suite qu’ils préfèrent l’autre." + +#: wp-admin/tools.php:17 +msgid "Press This is a bookmarklet that makes it easy to blog about something you come across on the web. You can use it to just grab a link, or to post an excerpt. Press This will even allow you to choose from images included on the page and use them in your post. Just drag the Press This link on this screen to your bookmarks bar in your browser, and you’ll be on your way to easier content creation. Clicking on it while on another website opens a popup window with all these options." +msgstr "« Press This » est un bookmarklet qui vous facilite la publication sur votre site quand vous voyez une page intéressante sur Internet. Vous pouvez l’utiliser simplement pour publier un lien, ou pour en publier un extrait. « Press This » vous permet même de choisir parmi les images incluses dans la page, et de les utiliser dans votre article. Glissez simplement le lien « Press This » dans la barre de liens de votre navigateur, et à vous la publication facile ! En cliquant dessus lors de la visite d’un site, une fenêtre s’ouvrira avec toutes les options utiles." + +#: wp-admin/tools.php:16 wp-admin/tools.php:40 wp-admin/tools.php:51 +msgid "Press This" +msgstr "Press This" + +#: wp-admin/themes.php:453 +msgid "Update Available" +msgstr "Mise à jour disponible" + +#: wp-admin/themes.php:355 +msgid "Install Parent Theme" +msgstr "Installer le thème parent" + +#: wp-admin/themes.php:318 +msgctxt "theme name" +msgid "Name" +msgstr "Nom" + +#: wp-admin/themes.php:310 +msgid "The following themes are installed but incomplete." +msgstr "Les thèmes suivants sont installés mais incomplets." + +#: wp-admin/themes.php:309 +msgid "Broken Themes" +msgstr "Thèmes endommagés" + +#: wp-admin/themes.php:258 wp-admin/themes.php:388 +msgid "New version available." +msgstr "Nouvelle version disponible." + +#: wp-admin/themes.php:256 wp-admin/themes.php:386 +msgid "New version available. " +msgstr "Nouvelle version disponible. " + +#: wp-admin/themes.php:173 +msgid "You cannot delete a theme while it has an active child theme." +msgstr "Vous ne pouvez pas supprimer un thème qui est actuellement utilisé par l’un de ses thèmes-enfant." + +#: wp-admin/themes.php:171 +msgid "Theme deleted." +msgstr "Thème supprimé." + +#: wp-admin/themes.php:168 +msgid "New theme activated." +msgstr "Nouveau thème activé." + +#: wp-admin/themes.php:166 wp-admin/themes.php:168 +msgid "Visit site" +msgstr "Aller sur le site" + +#: wp-admin/themes.php:166 +msgid "Settings saved and theme activated." +msgstr "Réglages sauvegardés et thème activé." + +#: wp-admin/themes.php:163 +msgid "The active theme is broken. Reverting to the default theme." +msgstr "Le thème courant est endommagé. Retour au thème par défaut." + +#: wp-admin/themes.php:158 +msgctxt "Add new theme" +msgid "Add New" +msgstr "Ajouter" + +#: wp-admin/themes.php:140 +msgid "Search installed themes..." +msgstr "Chercher parmi les thèmes installés..." + +#: wp-admin/themes.php:139 +msgid "Search Installed Themes" +msgstr "Chercher parmi les thèmes installés" + +#: wp-admin/themes.php:134 +msgid "" +"Are you sure you want to delete this theme?\n" +"\n" +"Click 'Cancel' to go back, 'OK' to confirm the delete." +msgstr "" +"Confirmez-vous la suppression de ce thème ?\n" +"\n" +"« Annuler » pour abandonner, « OK » pour supprimer." + +#: wp-admin/themes.php:111 +msgid "Previewing and Customizing" +msgstr "Aperçu et personnalisation" + +#: wp-admin/themes.php:107 +msgid "When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again." +msgstr "Lors de la prévisualisation sur de petits écrans, vous pouvez utiliser l’icône de réduction en bas à gauche du panneau. Cela masquera le panneau, vous donnant ainsi plus de place pour prévisualiser le site avec le nouveau thème. Pour ramener le panneau, cliquez à nouveau sur l’icône de réduction." + +#: wp-admin/themes.php:106 +msgid "The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Save & Activate button above the menu." +msgstr "Le thème en cours de prévisualisation est totalement interactif — naviguez sur les différentes pages pour voir comment le thème affiche vos articles, archives et autres pages. Les réglages peuvent différer selon les fonctionnalités pour lesquelles le thème a été conçu. Pour valider les nouveaux réglages et activer le thème en un seul coup, cliquez sur le bouton \"Enregistrer et activer\" en haut du menu." + +#: wp-admin/themes.php:105 +msgid "Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way." +msgstr "Touchez ou survolez n’importe quel thème puis cliquez sur le bouton Prévisualisation pour voir une prévisualisation de ce thème et changer les options du thème dans un vie séparée et plein écran. Vous pouvez également trouver un bouton Prévisualisation au bas de l’écran de détails du thème. Tout thème installé peut être prévisualisé et personnalisé de cette manière." + +#: wp-admin/themes.php:97 +msgid "Adding Themes" +msgstr "Ajout de thèmes" + +#: wp-admin/themes.php:92 +msgid "If you would like to see more themes to choose from, click on the “Add New” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!" +msgstr "Si vous souhaitez choisir parmi plus de thèmes, cliquez sur le bouton « Ajouter » et vous pourrez parcourir le répertoire de thèmes de WordPress.org et y chercher des thèmes supplémentaires. Les thèmes du répertoire de WordPress.org sont conçus et développés par des tiers, et sont compatibles avec la licence de WordPress. Et ils sont gratuits !" + +#: wp-admin/themes.php:90 +msgid "Installing themes on Multisite can only be done from the Network Admin section." +msgstr "En mode Multisite, vous pouvez installer des thèmes depuis la section Admin du Réseau." + +#: wp-admin/themes.php:78 +msgid "The search for installed themes will search for terms in their name, description, author, or tag." +msgstr "La recherche parmi les thèmes installés se fait sur leurs noms, leurs descriptions, leurs auteurs et leurs étiquettes." + +#: wp-admin/themes.php:77 +msgid "The current theme is displayed highlighted as the first theme." +msgstr "Le thème actuel est affiché en étant mis en avant en tant que premier thème." + +#: wp-admin/themes.php:76 +msgid "Click Customize for the current theme or Live Preview for any other theme to see a live preview" +msgstr "Cliquez sur Personnaliser pour le thème actuel ou Prévisualisation pour n’importe quel autre thème pour voir la prévisualisation" + +#: wp-admin/themes.php:75 +msgid "Click on the theme to see the theme name, version, author, description, tags, and the Delete link" +msgstr "Cliquez sur le thème pour voir le nom du thème, sa version, son auteur, sa description, ses étiquettes et le bouton Supprimer." + +#: wp-admin/themes.php:74 +msgid "Hover or tap to see Activate and Live Preview buttons" +msgstr "Survolez out touchez pour voir les boutons Activer et Prévisualisation" + +#: wp-admin/themes.php:72 +msgid "This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties." +msgstr "Cet écran est utilisé pour gérer vos thèmes installés. En dehors des thèmes par défaut inclus dans votre installation de WordPress, les thèmes sont conçus et développés par des tiers." + +#: wp-admin/themes.php:67 +msgid "Manage Themes" +msgstr "Gérer les thèmes" + +#: wp-admin/theme-install.php:319 +msgid "This theme has not been rated yet." +msgstr "Ce thème n’a pas encore reçu de note." + +#: wp-admin/theme-install.php:293 +msgctxt "Button label for a theme" +msgid "Next" +msgstr "Suivant" + +#: wp-admin/theme-install.php:292 +msgctxt "Button label for a theme" +msgid "Previous" +msgstr "Précédent" + +#: wp-admin/theme-install.php:250 +msgctxt "theme" +msgid "Details & Preview" +msgstr "Détails et prévisualisation" + +#: wp-admin/theme-install.php:217 +msgid "Themes list" +msgstr "Liste des thèmes" + +#: wp-admin/theme-install.php:213 +msgid "Edit Filters" +msgstr "Modifier les filtres" + +#: wp-admin/theme-install.php:211 +msgid "Filtering by:" +msgstr "Trier par :" + +#: wp-admin/theme-install.php:188 wp-admin/theme-install.php:208 +msgid "Clear current filters" +msgstr "Réinitialiser les filtres actuels" + +#: wp-admin/theme-install.php:187 wp-admin/theme-install.php:207 +msgid "Apply Filters" +msgstr "Appliquer les filtres" + +#: wp-admin/theme-install.php:175 +msgid "If you have marked themes as favorites on WordPress.org, you can browse them here." +msgstr "Si vous avez mis des thèmes en favoris sur WordPress.org, vous pourrez les parcourir ici." + +#: wp-admin/theme-install.php:158 +msgctxt "themes" +msgid "Favorites" +msgstr "Favoris" + +#: wp-admin/theme-install.php:156 +msgctxt "themes" +msgid "Popular" +msgstr "Populaires" + +#: wp-admin/theme-install.php:147 +msgid "Filter themes list" +msgstr "Filtrer la liste des thèmes" + +#: wp-admin/theme-install.php:140 +msgid "The Theme Installer screen requires JavaScript." +msgstr "L’écran d’installation de thèmes nécessite JavaScript." + +#: wp-admin/theme-install.php:114 +msgid "Documentation on Adding New Themes" +msgstr "Documentation sur l’ajout de thèmes (en)" + +#: wp-admin/theme-install.php:108 +msgid "Previewing and Installing" +msgstr "Aperçu et installation" + +#: wp-admin/theme-install.php:104 +msgid "To install the theme so you can preview it with your site’s content and customize its theme options, click the \"Install\" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the \"Activate\" link, or by navigating to your Manage Themes screen and clicking the \"Live Preview\" link under any installed theme’s thumbnail image." +msgstr "Pour installer un thème dans le but de le prévisualiser avec le contenu de votre site et d’en personnaliser les options, cliquez sur le bouton « Installer » en haut du panneau de gauche. Les fichiers du thème seront automatiquement téléchargés vers votre site. Ceci fait, le thème sera disponible, et vous pourrez l’activer en cliquant sur le lien « Activer », ou en vous rendant sur l’écran « Gérer les thèmes » et en cliquant sur le lien « Prévisualisation » situé sous la miniature de chaque thème." + +#: wp-admin/theme-install.php:103 +msgid "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you’re interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." +msgstr "Une fois que vous avez généré une liste de thèmes, vous pouvez les prévisualiser et les installer. Cliquez sur la miniature du thème que vous souhaitez prévisualiser. Cela ouvrira une page de prévisualisation en plein écran, afin de vous donner une meilleure idée de l’aspect de ce thème." + +#. translators: %s: /wp-content/themes +#: wp-admin/theme-install.php:92 +msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." +msgstr "Vous pouvez mettre un thème en ligne manuellement si vous avez déjà téléchargé son archive Zip sur votre ordinateur (assurez-vous que le thème vient d’une source de confiance). Vous pouvez également le faire à l’ancienne, c’est-à-dire passer par un client FTP pour mettre le dossier du thème dans le dossier %s." + +#: wp-admin/theme-install.php:89 +msgid "Alternately, you can browse the themes that are Featured, Popular, or Latest. When you find a theme you like, you can preview it or install it." +msgstr "Autrement, vous pouvez parcourir les thèmes mis en avant, populaires, ou les derniers en date. Lorsque vous avez trouvé un thème qui vous plaît, vous pouvez le prévisualiser ou l’installer." + +#: wp-admin/theme-install.php:88 +msgid "You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter." +msgstr "Vous pouvez chercher un thème par mot-clé, auteur ou étiquette, ou faire une recherche plus précise en utilisant les critères listés dans le filtre de fonctionnalités." + +#. translators: %s: Theme Directory URL +#: wp-admin/theme-install.php:85 +msgid "You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses." +msgstr "Vous pouvez trouver plus de thèmes pour votre site en utilisant le navigateur/installeur de thème sur cet écran, qui affiche les thèmes en provenance du dépôt de thèmes de WordPress.org. Ces thèmes sont conçus et développés par des tiers, sont gratuits et utilisent une licence compatible avec celle de WordPress." + +#. translators: hidden accessibility text +#: wp-admin/theme-install.php:61 +msgid "Select one or more Theme features to filter by" +msgstr "Sélectionner une ou plusieurs fonctionnalités de thèmes à filtrer" + +#: wp-admin/theme-install.php:59 +msgid "Expand Sidebar" +msgstr "Étendre la colonne latérale" + +#: wp-admin/theme-install.php:57 wp-admin/theme-install.php:221 +#: wp-admin/themes.php:142 wp-admin/themes.php:301 +msgid "No themes found. Try a different search." +msgstr "Aucun thème trouvé. Essayez une autre recherche." + +#: wp-admin/theme-install.php:56 wp-admin/themes.php:141 +msgid "Number of Themes found: %d" +msgstr "Nombre de thèmes trouvés : %d" + +#: wp-admin/theme-install.php:49 wp-admin/theme-install.php:134 +#: wp-admin/theme-install.php:136 wp-admin/update.php:258 +msgid "Upload Theme" +msgstr "Mettre un thème en ligne" + +#: wp-admin/theme-install.php:48 +msgid "Search themes..." +msgstr "Recherche parmi les thèmes..." + +#: wp-admin/theme-install.php:47 +msgid "Search Themes" +msgstr "Chercher parmi les thèmes" + +#: wp-admin/theme-install.php:46 wp-admin/themes.php:138 +msgid "Add New Theme" +msgstr "Ajouter un thème" + +#: wp-admin/theme-install.php:23 +msgid "Add Themes" +msgstr "Ajouter des thèmes" + +#: wp-admin/theme-editor.php:273 +msgid "This is a file in your current parent theme." +msgstr "Ceci est un fichier de votre thème parent actuel." + +#: wp-admin/theme-editor.php:252 +msgid "Oops, no such file exists! Double check the name and try again, merci." +msgstr "Aïe, ce fichier n’existe pas ! Veuillez bien vérifier son nom et réessayer." + +#. translators: %s: file extension +#: wp-admin/theme-editor.php:226 +msgid "%s files" +msgstr "Fichiers %s" + +#: wp-admin/theme-editor.php:222 +msgctxt "Theme stylesheets in theme editor" +msgid "Styles" +msgstr "Styles" + +#: wp-admin/theme-editor.php:212 +msgid "This child theme inherits templates from a parent theme, %s." +msgstr "Ce thème enfant hérite de certains modèles de son thème parent, %s." + +#: wp-admin/theme-editor.php:210 +msgid "Templates" +msgstr "Modèles" + +#: wp-admin/theme-editor.php:192 +msgid "This theme is broken." +msgstr "Le thème est cassé." + +#: wp-admin/theme-editor.php:173 +msgid "Select theme to edit:" +msgstr "Sélectionnez le thème à modifier :" + +#: wp-admin/theme-editor.php:42 +msgid "Documentation on Template Tags" +msgstr "Documentation sur les marqueurs des modèles (en)" + +#: wp-admin/theme-editor.php:41 +msgid "Documentation on Editing Files" +msgstr "Documentation sur l’édition des fichiers" + +#: wp-admin/theme-editor.php:40 wp-admin/themes.php:118 +msgid "Documentation on Using Themes" +msgstr "Documentation sur l’utilisation des thèmes (en)" + +#: wp-admin/theme-editor.php:39 +msgid "Documentation on Theme Development" +msgstr "Documentation sur le développement de thème (en)" + +#: wp-admin/theme-editor.php:33 +msgid "Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead." +msgstr "La mise à jour vers une nouvelle version du thème supprimera les modifications que vous aurez faites. Pour éviter cela, nous vous conseillons de passer plutôt par un Thème-Enfant." + +#: wp-admin/theme-editor.php:32 +msgid "Advice: think very carefully about your site crashing if you are live-editing the theme currently in use." +msgstr "Conseil : gardez bien en tête que si vous modifiez le thème actuellement utilisé, vos visiteurs pourraient avoir une vision déroutante de votre site..." + +#: wp-admin/theme-editor.php:31 +msgid "After typing in your edits, click Update File." +msgstr "Après avoir fait vos modifications, cliquez sur « Mettre à jour le fichier »." + +#: wp-admin/theme-editor.php:29 +msgid "For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function." +msgstr "Pour les fichiers PHP, vous pouvez utiliser le menu déroulant « Documentation » pour en apprendre plus sur les fonctions trouvées dans le ce fichier. Le bouton « Consulter » vous enverra sur la page dédiée de cette fonction." + +#: wp-admin/theme-editor.php:28 +msgid "Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box." +msgstr "Commencez par choisir un thème à modifier via le menu déroulant, et cliquez sur « Sélectionner ». Une liste apparaîtra ensuite avec tous les fichiers modèles. En cliquant sur n’importe lequel de ces fichiers, vous verrez son contenu apparaître dans l’éditeur." + +#: wp-admin/theme-editor.php:27 +msgid "You can use the Theme Editor to edit the individual CSS and PHP files which make up your theme." +msgstr "Vous pouvez utiliser l’éditeur de thème pour modifier les fichiers CSS et PHP qui composent votre thème." + +#: wp-admin/theme-editor.php:20 +msgid "Edit Themes" +msgstr "Modifier les thèmes" + +#: wp-admin/theme-editor.php:18 +msgid "Sorry, you are not allowed to edit templates for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les modèles de ce site." + +#: wp-admin/setup-config.php:402 +msgid "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" +msgstr "C’est parfait ! Vous avez passé la première partie de l’installation. WordPress peut désormais communiquer avec votre base de données. Si vous êtes prêt(e), il est maintenant temps de…" + +#: wp-admin/setup-config.php:401 +msgid "Successful database connection" +msgstr "La connexion à la base de données s’est bien faite" + +#: wp-admin/setup-config.php:372 wp-admin/setup-config.php:404 +msgid "Run the install" +msgstr "Lancer l’installation" + +#: wp-admin/setup-config.php:371 +msgid "After you’ve done that, click “Run the install.”" +msgstr "Après cela, cliquez sur « Lancer l’installation »." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:364 +msgid "You can create the %s manually and paste the following text into it." +msgstr "Vous pouvez créer le fichier %s vous-même et y coller le contenu suivant." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:360 +msgid "Sorry, but I can’t write the %s file." +msgstr "Désolé, je ne peux pas écrire le fichier %s." + +#: wp-admin/setup-config.php:282 +msgid "ERROR: \"Table Prefix\" is invalid." +msgstr "ERREUR : \"Préfixe de table\" non valide." + +#: wp-admin/setup-config.php:214 +msgid "If you want to run multiple WordPress installations in a single database, change this." +msgstr "Si vous souhaitez faire tourner plusieurs installations de WordPress sur une même base de données, modifiez ce réglage." + +#: wp-admin/setup-config.php:212 +msgid "Table Prefix" +msgstr "Préfixe des tables" + +#. translators: %s: localhost +#: wp-admin/setup-config.php:208 +msgid "You should be able to get this info from your web host, if %s doesn’t work." +msgstr "Ce %s ne marche pas, demandez cette information à l’hébergeur de votre site." + +#: wp-admin/setup-config.php:204 +msgid "Database Host" +msgstr "Adresse de la base de données" + +#: wp-admin/setup-config.php:201 +msgid "Your database password." +msgstr "Votre mot de passe de base de données." + +#: wp-admin/setup-config.php:200 +msgctxt "example password" +msgid "password" +msgstr "mot de passe" + +#: wp-admin/setup-config.php:196 +msgid "Your database username." +msgstr "Nom d’utilisateur MySQL." + +#: wp-admin/setup-config.php:195 +msgctxt "example username" +msgid "username" +msgstr "utilisateur" + +#: wp-admin/setup-config.php:191 +msgid "The name of the database you want to use with WordPress." +msgstr "Le nom de la base de données avec laquelle vous souhaitez utiliser WordPress. " + +#: wp-admin/setup-config.php:189 +msgid "Database Name" +msgstr "Nom de la base de données" + +#: wp-admin/setup-config.php:186 +msgid "Below you should enter your database connection details. If you’re not sure about these, contact your host." +msgstr "Vous devez saisir ci-dessous les détails de connexion à votre base de données. Si vous ne les connaissez pas, contactez votre hébergeur." + +#: wp-admin/setup-config.php:184 +msgid "Set up your database connection" +msgstr "Configurer la connexion à votre base de données" + +#: wp-admin/setup-config.php:174 +msgid "Let’s go!" +msgstr "C’est parti !" + +#: wp-admin/setup-config.php:172 +msgid "In all likelihood, these items were supplied to you by your Web Host. If you don’t have this information, then you will need to contact them before you can continue. If you’re all ready…" +msgstr "Vous devriez normalement avoir reçu ces informations de la part de votre hébergeur. Si vous ne les avez pas, il vous faudra contacter votre hébergeur afin de continuer. Si vous êtes prêt(e)…" + +#. translators: %s: Codex URL +#: wp-admin/setup-config.php:168 +msgid "Need more help? We got it." +msgstr "Besoin d’aide ? Nous sommes là." + +#. translators: 1: wp-config-sample.php, 2: wp-config.php +#: wp-admin/setup-config.php:161 +msgid "If for any reason this automatic file creation doesn’t work, don’t worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s." +msgstr "Si pour une raison ou pour une autre la création automatique du fichier ne fonctionne pas, ne vous inquiétez pas. Sa seule action est d’ajouter les informations de la base de données dans un fichier de configuration. Vous pouvez aussi simplement ouvrir %1$s dans un éditeur de texte, y remplir vos informations et l’enregistrer sous le nom de %2$s." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:155 +msgid "We’re going to use this information to create a %s file." +msgstr "Nous allons utiliser ces informations pour créer le fichier %s." + +#: wp-admin/setup-config.php:151 +msgid "Table prefix (if you want to run more than one WordPress in a single database)" +msgstr "Préfixe de table (si vous souhaitez avoir plusieurs WordPress sur une même base de données)" + +#: wp-admin/setup-config.php:150 +msgid "Database host" +msgstr "Adresse de la base de données" + +#: wp-admin/setup-config.php:149 +msgid "Database password" +msgstr "Mot de passe de l’utilisateur" + +#: wp-admin/setup-config.php:148 +msgid "Database username" +msgstr "Nom d’utilisateur MySQL" + +#: wp-admin/setup-config.php:147 +msgid "Database name" +msgstr "Nom de la base de données" + +#: wp-admin/setup-config.php:145 +msgid "Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding." +msgstr "Bienvenue dans WordPress. Avant de nous lancer, nous avons besoin de certaines informations sur votre base de données. Il va vous falloir réunir les informations suivantes pour continuer." + +#: wp-admin/setup-config.php:144 +msgid "Before getting started" +msgstr "Avant de se lancer" + +#: wp-admin/setup-config.php:98 +msgid "WordPress › Setup Configuration File" +msgstr "WordPress › Fichier de configuration" + +#. translators: %s: install.php +#: wp-admin/setup-config.php:64 +msgid "The file 'wp-config.php' already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Le fichier 'wp-config.php' existe déjà, un niveau au-dessus de votre installation WordPress. Si vous devez mettre à zéro vos éléments de configuration, veuillez d’abord effacer ce fichier. Vous pouvez essayer de lancer l’installation." + +#. translators: %s: install.php +#: wp-admin/setup-config.php:55 +msgid "The file 'wp-config.php' already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Le fichier wp-config.php existe déjà. Si vous devez mettre à zéro n’importe quelle valeur de configuration dans ce fichier, veuillez commencer par le supprimer. Vous pouvez essayer l’installation maintenant." + +#: wp-admin/setup-config.php:49 +msgid "Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file to your WordPress installation." +msgstr "Désolé, j’ai besoin d’un fichier wp-config-sample.php à partir duquel travailler. Veuillez remettre ce fichier en ligne au sein de votre installation WordPress." + +#: wp-admin/revision.php:120 +msgid "Revisions Management" +msgstr "Gestion des révisions (en)" + +#: wp-admin/revision.php:111 +msgid "To restore a revision, click Restore This Revision." +msgstr "Pour rétablir cette révision, cliquez sur « Rétablir cette révision »." + +#: wp-admin/revision.php:110 +msgid "Compare two different revisions by selecting the “Compare any two revisions” box to the side." +msgstr "Comparez deux révisions différentes en cochant la case « Comparer n’importe quelles révisions » sur le côté." + +#: wp-admin/revision.php:109 +msgid "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." +msgstr "Pour naviguer entre les révisions, faites glisser le curseur vers la gauche ou vers la droite ou utilisez les boutons Précédente ou Suivante." + +#: wp-admin/revision.php:108 +msgid "From this screen you can review, compare, and restore revisions:" +msgstr "Depuis cet écran, vous pouvez visualiser, comparer et rétablir les révisions :" + +#: wp-admin/revision.php:107 +msgid "Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added." +msgstr "Les révisions sont des copies de votre article ou votre page, périodiquement créées tandis que vous modifiez votre contenu. Sur la gauche, le texte en rouge indique le contenu qui a été enlevé. Sur la droite, le texte en vert indique le contenu qui a été ajouté." + +#: wp-admin/revision.php:106 +msgid "This screen is used for managing your content revisions." +msgstr "Cet écran est utilisé pour gérer les révisions de vos contenus." + +#: wp-admin/revision.php:79 +msgid "← Return to editor" +msgstr "← Retourner à l’éditeur" + +#. translators: 1: Post title +#: wp-admin/revision.php:78 +msgid "Compare Revisions of “%1$s”" +msgstr "Comparer les versions de « %1$s »" + +#: wp-admin/post.php:249 +msgid "This item has already been deleted." +msgstr "Cet élément a déjà été supprimé." + +#: wp-admin/post.php:231 +msgid "The item you are trying to restore from the Trash no longer exists." +msgstr "L’élément que vous essayez de sortir de la corbeille n’existe plus." + +#: wp-admin/post.php:218 +msgid "You cannot move this item to the Trash. %s is currently editing." +msgstr "Vous ne pouvez pas déplacer cet élément dans la corbeille. %s est en train de le modifier." + +#: wp-admin/post.php:208 +msgid "The item you are trying to move to the Trash no longer exists." +msgstr "L’élément que vous essayez de placer dans la corbeille n’existe plus." + +#: wp-admin/post.php:120 +msgid "You can’t edit this item because it is in the Trash. Please restore it and try again." +msgstr "Vous ne pouvez pas modifier ce contenu, car il est dans la corbeille. Sortez-l’en, puis réessayez." + +#: wp-admin/post.php:72 +msgid "Unable to submit this form, please refresh and try again." +msgstr "Impossible d’envoyer ce formulaire ; veuillez recharger la page et réessayer." + +#: wp-admin/plugins.php:534 +msgid "Search Installed Plugins" +msgstr "Recherchez parmi vos extensions" + +#: wp-admin/plugins.php:498 +msgid "All selected plugins are up to date." +msgstr "Toutes les extensions sélectionnées sont à jour." + +#: wp-admin/plugins.php:496 +msgid "Selected plugins deactivated." +msgstr "Les extensions sélectionnées ont été désactivées." + +#: wp-admin/plugins.php:494 +msgid "Plugin deactivated." +msgstr "Extension désactivée" + +#: wp-admin/plugins.php:492 +msgid "Selected plugins activated." +msgstr "Les extensions sélectionnées ont été activées." + +#: wp-admin/plugins.php:490 +msgid "Plugin activated." +msgstr "Extension activée" + +#: wp-admin/plugins.php:483 +msgid "The selected plugins have been deleted." +msgstr "Les extensions sélectionnées ont été supprimées." + +#: wp-admin/plugins.php:481 +msgid "The selected plugin has been deleted." +msgstr "L’extension sélectionnée a été supprimée." + +#: wp-admin/plugins.php:475 +msgid "Plugin could not be deleted due to an error: %s" +msgstr "L’extension n’a pu être supprimée suite à une erreur fatale : %s" + +#: wp-admin/plugins.php:453 +msgid "Plugin could not be activated because it triggered a fatal error." +msgstr "L’extension n’a pas pu être activée, car elle a déclenché une erreur fatale." + +#: wp-admin/plugins.php:451 +msgid "The plugin generated %d characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin." +msgstr "L’extension a généré %d caractères d’affichage inattendu lors de l’activation. Si vous voyez un message « headers already sent » (Les en-têtes ont déjà été envoyés), des problèmes avec les flux de syndication ou d’autres erreurs, essayez de désactiver ou enlever cette extension." + +#. translators: 1: plugin file 2: error message +#: wp-admin/plugins.php:438 +msgid "The plugin %1$s has been deactivated due to an error: %2$s" +msgstr "L’extension %1$s a été désactivée suite à une erreur : %2$s" + +#: wp-admin/plugins.php:417 +msgid "Documentation on Managing Plugins" +msgstr "Documentation sur la gestion des extensions (en)" + +#. translators: WP_PLUGIN_DIR constant value +#: wp-admin/plugins.php:410 +msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." +msgstr "Si une extension ne fonctionne pas correctement et que vous ne pouvez plus utiliser WordPress, supprimez ou renommez son fichier dans le répertoire %s et elle sera automatiquement désactivée." + +#: wp-admin/plugins.php:407 +msgid "Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue." +msgstr "La plupart du temps, les extensions fonctionnent comme il le faut, tant avec WordPress qu’entre elles. Mais parfois, les ajouts d’une extension peuvent empiéter sur celles d’une autre, ce qui provoque une incompatibilité. Si votre site réagit bizarrement, le problème vient peut-être de là. Essayez de désactiver toutes les extensions, puis de les réactiver une à une pour trouver celle(s) en cause." + +#: wp-admin/plugins.php:405 +msgid "Troubleshooting" +msgstr "Diagnostic" + +#. translators: %s: WordPress Plugin Directory URL +#: wp-admin/plugins.php:399 +msgid "If you would like to see more plugins to choose from, click on the “Add New” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!" +msgstr "Si vous souhaitez choisir parmi plus d’extensions, cliquez sur l’onglet « Ajouter » et vous pourrez parcourir le dépôt d’extensions de WordPress.org, ou y lancer une recherche. Les extensions du dépôt sont conçus et développés par des tiers, et utilisent une licence compatible avec celle de WordPress. Ah, et elles sont gratuites !" + +#: wp-admin/plugins.php:396 +msgid "The search for installed plugins will search for terms in their name, description, or author." +msgstr "La recherche dans les extensions installées sera faite sur les noms des extensions, leurs descriptions ou leurs auteurs." + +#: wp-admin/plugins.php:395 +msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." +msgstr "Les extensions étendent les fonctionnalités de WordPress. Une fois une extension installée, vous pouvez l’activer ou la désactiver ici." + +#: wp-admin/plugins.php:344 +msgid "No, return me to the plugin list" +msgstr "Non, retourner à la liste des extensions" + +#: wp-admin/plugins.php:338 +msgid "Yes, delete these files" +msgstr "Oui, supprimer ces fichiers" + +#: wp-admin/plugins.php:338 +msgid "Yes, delete these files and data" +msgstr "Oui, supprimer ces fichiers et données" + +#: wp-admin/plugins.php:327 +msgid "Are you sure you wish to delete these files?" +msgstr "Voulez-vous vraiment supprimer ces fichiers ?" + +#: wp-admin/plugins.php:325 +msgid "Are you sure you wish to delete these files and data?" +msgstr "Voulez-vous vraiment supprimer ces fichiers et données ?" + +#. translators: 1: plugin name, 2: plugin author +#: wp-admin/plugins.php:318 +msgctxt "plugin" +msgid "%1$s by %2$s" +msgstr "%1$s par %2$s" + +#. translators: 1: plugin name, 2: plugin author +#: wp-admin/plugins.php:314 +msgid "%1$s by %2$s (will also delete its data)" +msgstr "%1$s par %2$s (supprimera également les données liées) " + +#: wp-admin/plugins.php:306 +msgid "You are about to remove the following plugins:" +msgstr "Vous êtes sur le point de supprimer les extensions suivantes :" + +#: wp-admin/plugins.php:304 +msgid "These plugins may be active on other sites in the network." +msgstr "Ces extensions peuvent être actives sur d’autres sites du réseau." + +#: wp-admin/plugins.php:302 +msgid "Delete Plugins" +msgstr "Supprimer les extensions" + +#: wp-admin/plugins.php:300 +msgid "You are about to remove the following plugin:" +msgstr "Vous êtes sur le point de supprimer l’extension suivante :" + +#: wp-admin/plugins.php:298 +msgid "This plugin may be active on other sites in the network." +msgstr "Cette extension peut uniquement être activée sur l’ensemble des sites du réseau." + +#: wp-admin/plugins.php:296 +msgid "Delete Plugin" +msgstr "Supprimer l’extension" + +#: wp-admin/plugins.php:171 wp-admin/plugins.php:196 +msgid "Sorry, you are not allowed to deactivate plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de désactiver les extensions de ce site." + +#: wp-admin/plugins.php:131 wp-admin/update-core.php:241 +#: wp-admin/update-core.php:328 wp-admin/update-core.php:681 +#: wp-admin/update-core.php:685 +msgid "Update Plugins" +msgstr "Mise à jour des extensions" + +#: wp-admin/plugins.php:33 wp-admin/plugins.php:72 wp-admin/plugins.php:150 +msgid "Sorry, you are not allowed to activate plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’activer les extensions de ce site." + +#: wp-admin/plugin-install.php:121 +msgid "Browse Plugins" +msgstr "Parcourir les extensions" + +#: wp-admin/plugin-install.php:105 wp-admin/plugins.php:424 +msgid "Plugins list" +msgstr "Liste des extensions" + +#: wp-admin/plugin-install.php:104 wp-admin/plugins.php:423 +msgid "Plugins list navigation" +msgstr "Navigation de la liste des extensions" + +#: wp-admin/plugin-install.php:103 wp-admin/plugins.php:422 +msgid "Filter plugins list" +msgstr "Filtrer la liste des extensions" + +#: wp-admin/plugin-install.php:98 +msgid "Documentation on Installing Plugins" +msgstr "Documentation sur l’installation des extensions (en)" + +#: wp-admin/plugin-install.php:93 +msgid "If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin." +msgstr "Si vous voulez installer une extension que vous avez téléchargée depuis un site tiers, cliquez sur le bouton « Mettre une extension en ligne ». Il vous sera demandé d’indiquer le fichier .zip à mettre en ligne, et ceci fait, vous pourrez activer l’extension." + +#: wp-admin/plugin-install.php:92 +msgid "You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username." +msgstr "Vous pouvez voir les extensions favorites d’un utilisateur en utilisant le lien « Favorites » situé en haut à gauche de l’écran, et en renseignant son identifiant WordPress.org." + +#: wp-admin/plugin-install.php:91 +msgid "If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly." +msgstr "Si vous voulez juste vous faire une idée de ce qui est disponible, vous pouvez parcourir les rubriques Mises en avant et Populaires en utilisant les liens en haut à gauche de l’écran. Ces sections sont régulièrement renouvelées." + +#: wp-admin/plugin-install.php:90 +msgid "If you know what you’re looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag." +msgstr "Si vous savez ce que vous voulez, commencez par le champ « Recherche » : il vous permet de lancer une recherche sur le dépôt d’extensions de WordPress.org, pour un terme, un auteur, ou une étiquette en particulier. Vous pouvez également lancer une recherche en cliquant sur une des étiquettes populaires. Plus une étiquette est grande, plus elle fait référence à un grand nombre d’extensions." + +#: wp-admin/plugin-install.php:88 +msgid "Adding Plugins" +msgstr "Ajout d’extensions" + +#: wp-admin/plugin-install.php:83 +msgid "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." +msgstr "Vous pouvez trouver des nouvelles extensions à installer en recherchant ou en parcourant le répertoire ici même dans votre section d’extensions" + +#: wp-admin/plugin-install.php:82 +msgid "Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses." +msgstr "Les extensions étendent les fonctionnalités de WordPress avec des fonctions personnalisées. Les extensions sont développées indépendamment du cœur de WordPress par des milliers de développeurs partout dans le monde. Toutes les extensions dans le répertoire WordPress sont compatibles avec la licence d’utilisation de WordPress." + +#: wp-admin/plugin-install.php:48 +msgid "Add Plugins" +msgstr "Ajouter des extensions" + +#: wp-admin/plugin-editor.php:292 wp-admin/theme-editor.php:279 +msgid "You need to make this file writable before you can save your changes. See the Codex for more information." +msgstr "Vous devez rendre ce fichier accessible en écriture avant de pouvoir enregistrer vos modifications. Lire la documentation CHMOD pour plus d’informations." + +#: wp-admin/plugin-editor.php:287 wp-admin/theme-editor.php:277 +msgid "Update File" +msgstr "Mettre à jour le fichier" + +#: wp-admin/plugin-editor.php:285 +msgid "Update File and Attempt to Reactivate" +msgstr "Mettre à jour le fichier et tenter de réactiver l’extension" + +#: wp-admin/plugin-editor.php:279 +msgid "Warning: Making changes to active plugins is not recommended. If your changes cause a fatal error, the plugin will be automatically deactivated." +msgstr "Attention : il n’est pas recommandé de modifier des extensions activées. Si vos modifications amènent une erreur fatale, l’extension sera automatiquement désactivée." + +#: wp-admin/plugin-editor.php:275 wp-admin/theme-editor.php:266 +msgid "Look Up" +msgstr "Consulter" + +#: wp-admin/plugin-editor.php:275 wp-admin/theme-editor.php:264 +msgid "Documentation:" +msgstr "Documentation :" + +#: wp-admin/plugin-editor.php:246 +msgid "Plugin Files" +msgstr "Fichiers de l’extension" + +#: wp-admin/plugin-editor.php:224 +msgid "Select plugin to edit:" +msgstr "Sélectionnez l’extension à modifier :" + +#. translators: %s: plugin file name +#: wp-admin/plugin-editor.php:217 +msgid "Browsing %s (inactive)" +msgstr "Parcours de %s (désactivée)" + +#. translators: %s: plugin file name +#: wp-admin/plugin-editor.php:214 +msgid "Editing %s (inactive)" +msgstr "Modification de %s (désactivée)" + +#. translators: %s: plugin file name +#: wp-admin/plugin-editor.php:209 +msgid "Browsing %s (active)" +msgstr "Parcours de %s (activée)" + +#. translators: %s: plugin file name +#: wp-admin/plugin-editor.php:206 +msgid "Editing %s (active)" +msgstr "Modification de %s (activée)" + +#: wp-admin/plugin-editor.php:184 +msgid "This plugin has been deactivated because your changes resulted in a fatal error." +msgstr "Cette extension a été désactivée, car vos modifications ont abouti à une erreur fatale" + +#: wp-admin/plugin-editor.php:182 wp-admin/theme-editor.php:156 +msgid "File edited successfully." +msgstr "Le fichier a bien été modifié." + +#: wp-admin/plugin-editor.php:171 wp-admin/theme-editor.php:145 +msgid "Function Name…" +msgstr "Nom de fonction…" + +#: wp-admin/plugin-editor.php:156 +msgid "Documentation on Writing Plugins" +msgstr "Documentation sur la création d’extensions (en)" + +#: wp-admin/plugin-editor.php:155 +msgid "Documentation on Editing Plugins" +msgstr "Documentation sur l’édition des extensions (en)" + +#: wp-admin/plugin-editor.php:150 wp-admin/theme-editor.php:34 +msgid "Any edits to files from this screen will be reflected on all sites in the network." +msgstr "Toute modification aux fichiers de cet écran affectera l’ensemble des sites du réseau." + +#: wp-admin/plugin-editor.php:149 +msgid "If you want to make changes but don’t want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." +msgstr "Si vous voulez faire des modifications et ne pas les perdre à la prochaine mise à jour, cela signifie que vous êtes prêt à écrire votre propre extension. Pour obtenir des informations sur la manière de modifier une extension ou d’en créer une, ou simplement pour comprendre leur fonctionnement, suivez les liens ci-dessous." + +#: wp-admin/plugin-editor.php:148 wp-admin/theme-editor.php:30 +msgid "In the editing area the Tab key enters a tab character. To move below this area by pressing Tab, press the Esc key followed by the Tab key. In some cases the Esc key will need to be pressed twice before the Tab key will allow you to continue." +msgstr "Dans la zone de modification, la touche Tab ajoute un caractère de tabulation. Pour vous déplacer en dehors de cette zone en appuyant sur Tab, appuyez sur la touche Échap. (Esc.) suivie de la touche Tab. Dans certains cas, la touche Échap. devra être appuyée deux fois avant que la touche Tab ne vous permette de continuer." + +#: wp-admin/plugin-editor.php:147 +msgid "The Documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function." +msgstr "Le menu « Documentation », situé sous l’éditeur, liste les fonctions PHP reconnues dans le fichier de l’extension. En cliquant sur « Consulter », vous serez envoyé sur une page web documentant cette fonction." + +#: wp-admin/plugin-editor.php:146 +msgid "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Don’t forget to save your changes (Update File) when you’re finished." +msgstr "Choisissez une extension à modifier dans le menu déroulant et cliquez sur le bouton « Sélectionner ». Cliquez une fois sur n’importe quel nom de fichier pour le charger dans l’éditeur, puis faites vos modifications. N’oubliez pas d’enregistrer vos modifications (bouton « Mettre à jour le fichier ») quand vous aurez terminé." + +#: wp-admin/plugin-editor.php:145 +msgid "You can use the editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations." +msgstr "Vous pouvez utiliser l’éditeur pour modifier n’importe quel fichier de vos extensions. Soyez cependant conscient que si vous modifiez les fichiers, les mises à jour les annuleront..." + +#: wp-admin/plugin-editor.php:137 +msgid "Files of this type are not editable." +msgstr "Les fichiers de ce type ne sont pas éditables." + +#: wp-admin/plugin-editor.php:130 +msgid "No such file exists! Double check the name and try again." +msgstr "Ce fichier n’existe pas ! Veuillez vérifier son nom et réessayer." + +#: wp-admin/plugin-editor.php:20 +msgid "Edit Plugins" +msgstr "Modifier les extensions" + +#: wp-admin/plugin-editor.php:18 +msgid "Sorry, you are not allowed to edit plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les extensions de ce site." + +#: wp-admin/options.php:253 +msgid "All Settings" +msgstr "Toutes les options" + +#. translators: %s: the option/setting +#: wp-admin/options.php:204 +msgid "The %s setting is unregistered. Unregistered settings are deprecated. See https://codex.wordpress.org/Settings_API" +msgstr "L’option %s n’est pas enregistrée. Les options non enregistrées sont obsolètes. Consultez la documentation sur la page https://codex.wordpress.org/Settings_API" + +#: wp-admin/options.php:164 +msgid "Sorry, you are not allowed to modify unregistered settings for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les réglages non enregistrés de ce site. " + +#: wp-admin/options.php:160 +msgid "ERROR: options page not found." +msgstr "ERREUR : La page d’options est introuvable." + +#: wp-admin/options.php:50 +msgid "Sorry, you are not allowed to manage these options." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer ces options." + +#: wp-admin/options-writing.php:177 +msgid "WordPress is not notifying any Update Services because of your site’s visibility settings." +msgstr "WordPress ne notifie aucun des services de notification (en), du fait des réglages de vie privée de votre site." + +#: wp-admin/options-writing.php:171 +msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." +msgstr "Quand vous publiez un nouvel article, WordPress notifie automatiquement un service de mise à jour. Une explication se trouve sur la page Update Services du Codex anglophone. Séparez les adresses de services par des retours à la ligne." + +#: wp-admin/options-writing.php:146 +msgid "Default Mail Category" +msgstr "Catégorie par défaut des articles envoyés par e-mail" + +#: wp-admin/options-writing.php:136 +msgid "Login Name" +msgstr "Identifiant" + +#: wp-admin/options-writing.php:131 +msgid "Port" +msgstr "Port" + +#: wp-admin/options-writing.php:129 +msgid "Mail Server" +msgstr "Serveur de messagerie" + +#. translators: 1, 2, 3: examples of random email addresses +#: wp-admin/options-writing.php:120 +msgid "To post to WordPress by email you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s." +msgstr "Pour publier dans WordPress par e-mail, vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards indiscrets. Voici trois chaînes aléatoires que vous pourriez utiliser : %1$s, %2$s, %3$s." + +#: wp-admin/options-writing.php:116 +msgid "Post via email" +msgstr "Envoi d’article par e-mail" + +#: wp-admin/options-writing.php:97 +msgid "Default Link Category" +msgstr "Catégorie par défaut des liens" + +#: wp-admin/options-writing.php:83 +msgid "Default Post Format" +msgstr "Format par défaut des articles" + +#: wp-admin/options-writing.php:71 +msgid "Default Post Category" +msgstr "Catégorie par défaut des articles" + +#: wp-admin/options-writing.php:66 +msgid "WordPress should correct invalidly nested XHTML automatically" +msgstr "WordPress doit automatiquement corriger l’imbrication XHTML erronée" + +#: wp-admin/options-writing.php:65 +msgid "Convert emoticons like :-) and :-P to graphics on display" +msgstr "Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage" + +#: wp-admin/options-writing.php:61 wp-admin/options-writing.php:62 +msgid "Formatting" +msgstr "Mise en forme" + +#: wp-admin/options-writing.php:45 +msgid "Documentation on Writing Settings" +msgstr "Documentation sur les réglages de l’écriture (en)" + +#: wp-admin/options-writing.php:39 +msgid "If desired, WordPress will automatically alert various services of your new posts." +msgstr "Si vous le souhaitez, WordPress peut automatiquement informer différents services en ligne de vos nouvelles publications." + +#: wp-admin/options-writing.php:38 wp-admin/options-writing.php:167 +msgid "Update Services" +msgstr "Services de mise à jour" + +#: wp-admin/options-writing.php:30 +msgid "Post via email settings allow you to send your WordPress install an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret." +msgstr "Les réglages de publication par e-mail vous permettant d’envoyer à votre installation WordPress un e-mail dont le contenu sera publié dans un article. Vous devez définir un compte de messagerie secret avec un accès POP3. Tout message reçu à cette adresse sera publié. Il vaut donc mieux garder cette adresse à l’abri des regards. " + +#: wp-admin/options-writing.php:29 +msgid "Post Via Email" +msgstr "Envoi d’article par e-mail" + +#: wp-admin/options-writing.php:21 +msgid "You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links." +msgstr "Vous disposez de plusieurs méthodes pour envoyer du contenu. Cet écran vous présente les réglages de chacune. La première section gère l’éditeur de l’administration de WordPress, tandis que les autres gèrent les méthodes externes. Pour obtenir plus d’informations sur toutes ces méthodes, suivez les liens vers la documentation." + +#: wp-admin/options-writing.php:15 +msgid "Writing Settings" +msgstr "Options d’écriture" + +#: wp-admin/options-reading.php:106 +msgid "Summary" +msgstr "L’extrait" + +#: wp-admin/options-reading.php:105 +msgid "Full text" +msgstr "Le texte complet" + +#: wp-admin/options-reading.php:103 wp-admin/options-reading.php:104 +msgid "For each article in a feed, show" +msgstr "Pour chaque article d’un flux, fournir" + +#: wp-admin/options-reading.php:100 +msgid "items" +msgstr "éléments" + +#: wp-admin/options-reading.php:99 +msgid "Syndication feeds show the most recent" +msgstr "Les flux de syndication affichent les derniers" + +#: wp-admin/options-reading.php:95 +msgid "posts" +msgstr "articles" + +#: wp-admin/options-reading.php:93 +msgid "Blog pages show at most" +msgstr "Les pages du site doivent afficher au plus" + +#: wp-admin/options-reading.php:87 +msgid "Warning: these pages should not be the same!" +msgstr "Attention : ces pages ne devraient pas être les mêmes !" + +#: wp-admin/options-reading.php:84 +msgid "Posts page: %s" +msgstr "Page des articles : %s" + +#: wp-admin/options-reading.php:83 +msgid "Front page: %s" +msgstr "Page d’accueil : %s" + +#: wp-admin/options-reading.php:79 +msgid "A static page (select below)" +msgstr "Une page statique (choisir ci-dessous)" + +#: wp-admin/options-reading.php:53 +msgid "Encoding for pages and feeds" +msgstr "Codage pour les pages et les flux RSS" + +#: wp-admin/options-reading.php:38 +msgid "Documentation on Reading Settings" +msgstr "Documentation sur les réglages de la lecture (en)" + +#: wp-admin/options-reading.php:33 +msgid "When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search Engines Discouraged,” to remind you that your site is not being crawled." +msgstr "Lorsque ce réglage est actif, un rappel est affiché dans le bloc \"D’un coup d’œil\" du Tableau de bord, indiquant que \"Moteurs de recherche refusés\" pour que vous n’oubliez pas que votre site n’est pas parcouru." + +#: wp-admin/options-reading.php:32 +msgid "You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen. Note that your privacy is not complete; your site is still visible on the web." +msgstr "Vous pouvez choisir si votre site est parcouru par les robots et autres logiciels automatisés, ou non. Si vous préférez que ces services ignorent votre site, cliquez sur le bouton radio marqué « Demander aux moteurs de recherche de ne pas indexer ce site » et cliquez sur le bouton « Enregistrer les modifications » en bas de l’écran. Notez bien que votre vie privée n’est pas assurée : votre site reste visible de tous sur le Web." + +#: wp-admin/options-reading.php:25 +msgid "You can also control the display of your content in RSS feeds, including the maximum numbers of posts to display and whether to show full text or a summary." +msgstr "Vous pouvez également contrôler l’affichage de votre contenu dans les flux RSS, comme le nombre maximum d’articles à afficher, et s’il faut afficher l’article en entier ou juste un résumé." + +#: wp-admin/options-reading.php:24 +msgid "You can choose what’s displayed on the front page of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static home page, you first need to create two Pages. One will become the front page, and the other will be where your posts are displayed." +msgstr "Vous pouvez choisir ce qui est affiché en page d’accueil de votre site. Au choix, le mode « blog » classique (les articles dans l’ordre chronologique inverse) ou une page statique. Pour mettre en place une page statique, vous devez d’abord créer deux pages : la première servira de page d’accueil, la seconde affichera vos articles." + +#: wp-admin/options-reading.php:23 +msgid "This screen contains the settings that affect the display of your content." +msgstr "Cet écran présente les réglages qui influent sur l’affichage de votre contenu." + +#: wp-admin/options-reading.php:15 +msgid "Reading Settings" +msgstr "Options de lecture" + +#: wp-admin/options-permalink.php:257 +msgid "If your .htaccess file were writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all." +msgstr "Si vous aviez les droits en écriture sur le fichier .htaccess, nous pourrions faire cela automatiquement. Ce n’est pas le cas, donc voici les règles de réécriture que vous devrez mettre dans votre fichier .htaccess. Cliquez sur le champ et appuyez sur Ctrl-a pour tout sélectionner." + +#: wp-admin/options-permalink.php:254 +msgid "Documentation on Nginx configuration." +msgstr "Documentation sur la configuration de Nginx (en)." + +#: wp-admin/options-permalink.php:250 +msgid "If you temporarily make your site’s root directory writable for us to generate the web.config file automatically, do not forget to revert the permissions after the file has been created." +msgstr "Si vous rendez temporairement le dossier racine accessible en écriture afin que nous y générions directement le fichier web.config, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées." + +#: wp-admin/options-permalink.php:245 +msgid "If the root directory of your site were writable, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your web.config file. Create a new file, called web.config in the root directory of your site. Click in the field and press CTRL + a to select all. Then insert this code into the web.config file." +msgstr "Si vous aviez les droits en écriture sur le fichier web.config, nous pourrions faire cela automatiquement. Ce n’est pas le cas, donc voici les règles de réécriture que vous devrez mettre dans votre fichier web.config. Créez un nouveau fichier texte, nommé web.config, dans le dossier racine de votre site. Cliquez sur le champ et appuyez sur Ctrl-a pour tout sélectionner. Insérez ensuite le contenu dans le fichier web.config." + +#: wp-admin/options-permalink.php:243 +msgid "If you temporarily make your web.config file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved." +msgstr "Si vous rendez le fichier web.config accessible en écriture afin de générer automatiquement les règles de réécriture, n’oubliez surtout pas de remettre les droits originaux en place une fois que les règles ont été enregistrées." + +#: wp-admin/options-permalink.php:238 +msgid "If your web.config file were writable, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your web.config file. Click in the field and press CTRL + a to select all. Then insert this rule inside of the /<configuration>/<system.webServer>/<rewrite>/<rules> element in web.config file." +msgstr "Si vous aviez les droits en écriture sur le fichier web.config, nous pourrions faire cela automatiquement. Ce n’est pas le cas, donc voici les règles de réécriture que vous devrez mettre dans votre fichier web.config. Cliquez sur le champ et appuyez sur Ctrl-a pour tout sélectionner. Insérez ensuite cette règle dans l’élément /<configuration>/<system.webServer>/<rewrite>/<rules> du fichier web.config." + +#: wp-admin/options-permalink.php:224 +msgid "Tag base" +msgstr "Base des étiquettes" + +#. translators: prefix for category permalinks +#: wp-admin/options-permalink.php:220 +msgid "Category base" +msgstr "Préfixe des catégories" + +#. translators: %s is a placeholder that must come at the start of the URL. +#: wp-admin/options-permalink.php:216 +msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used." +msgstr "Si vous le souhaitez, vous pouvez spécifier ici une structure personnalisée pour les adresses web de vos étiquettes et de vos catégories. Par exemple, en utilisant sujets comme préfixe pour vos catégories, vous obtiendrez des adresses web comme %s/sujets/non-classe/. Si vous laissez ce champ vide, la valeur par défaut sera appliquée." + +#: wp-admin/options-permalink.php:213 +msgid "Optional" +msgstr "Facultatif" + +#: wp-admin/options-permalink.php:203 +msgid "Custom Structure" +msgstr "Structure personnalisée" + +#: wp-admin/options-permalink.php:197 +msgid "Post name" +msgstr "Nom de l’article" + +#: wp-admin/options-permalink.php:193 +msgid "Numeric" +msgstr "Numérique" + +#: wp-admin/options-permalink.php:189 +msgid "Month and name" +msgstr "Mois et titre" + +#: wp-admin/options-permalink.php:186 wp-admin/options-permalink.php:190 +#: wp-admin/options-permalink.php:198 +msgctxt "sample permalink structure" +msgid "sample-post" +msgstr "exemple-article" + +#: wp-admin/options-permalink.php:185 +msgid "Day and name" +msgstr "Date et titre" + +#: wp-admin/options-permalink.php:181 +msgid "Plain" +msgstr "Simple" + +#: wp-admin/options-permalink.php:178 +msgid "Common Settings" +msgstr "Réglages les plus courants" + +#: wp-admin/options-permalink.php:174 wp-admin/options-permalink.php:194 +msgctxt "sample permalink base" +msgid "archives" +msgstr "archives" + +#: wp-admin/options-permalink.php:161 +msgid "WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." +msgstr "WordPress vous offre la possibilité de créer une structure personnalisée d’adresses web pour vos permaliens et archives. Ceci peut améliorer l’esthétique, l’utilisabilité et la pérennité de vos liens. De nombreux marqueurs sont disponibles, et nous vous donnons quelques exemples pour commencer." + +#: wp-admin/options-permalink.php:138 +msgid "You should update your .htaccess now." +msgstr "Vous devriez mettre à jour votre fichier .htaccess maintenant." + +#: wp-admin/options-permalink.php:135 +msgid "Permalink structure updated. Remove write access on web.config file now!" +msgstr "La structure des permaliens a été mise à jour. Pensez à retirer les droits d’accès au fichier web.config dès maintenant !" + +#: wp-admin/options-permalink.php:133 +msgid "You should update your web.config now." +msgstr "Vous devriez mettre à jour votre fichier web.config maintenant." + +#: wp-admin/options-permalink.php:129 +msgid "Permalink structure updated." +msgstr "Structure des permaliens enregistrée." + +#: wp-admin/options-permalink.php:45 +msgid "Documentation on Using Permalinks" +msgstr "Documentation sur l’utilisation des permaliens (en)" + +#: wp-admin/options-permalink.php:44 +msgid "Documentation on Permalinks Settings" +msgstr "Documentation sur les réglages des permaliens (en)" + +#: wp-admin/options-permalink.php:38 +msgid "The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized." +msgstr "Les champs facultatifs, en bas de page, vous permettent de personnaliser les dénominations utilisées pour les chemins /category/ et /tag/ lors de l’affichage des archives. Par exemple, la page listant tous les articles de la catégorie « Non classé » pourrait se lire comme /sujet/non-classe/ plutôt que /categorie/non-classe/." + +#: wp-admin/options-permalink.php:37 +msgid "Custom Structures" +msgstr "Structure personnalisée" + +#: wp-admin/options-permalink.php:31 +msgid "When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %category% or %tag%." +msgstr "Quand vous assignez un article à plusieurs catégories ou étiquettes, une seule apparaîtra dans le permalien : la catégorie avec l’identifiant numérique le plus bas. Idem pour les mots-clés. Cela s’applique si votre structure comprend %category% ou %tag%." + +#: wp-admin/options-permalink.php:30 +msgid "If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %) will also appear in the custom structure field and your path can be further modified there." +msgstr "Si vous choisissez une option autre que « Simple », la structure générale de vos liens, avec les marqueurs de structure (encadrés par %), apparaîtra dans le champ de « Structure personnalisée », d’où vous pourrez l’adapter à vos besoins précis." + +#: wp-admin/options-permalink.php:29 +msgid "Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure." +msgstr "Un permalien peut contenir des informations utiles, telles que le titre de l’article, sa data ou d’autres éléments. Vous pouvez choisir n’importe quel type de format de permalien parmi les réglages les plus courants, ou concevoir votre propre structure personnalisée." + +#: wp-admin/options-permalink.php:22 +msgid "This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures." +msgstr "Cet écran vous permet de choisir la structure de permalien par défaut. Vous pouvez choisir les réglages les plus courants, ou créer votre propre structure de liens." + +#: wp-admin/options-permalink.php:21 +msgid "Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink." +msgstr "Les permaliens sont des adresses Web permanentes vers vos pages individuelles et vos articles, ainsi que vos archives de catégorie et d’étiquette. Ils offrent un lien plus compréhensible vers votre contenu. Les adresses de chaque article devraient être permanentes et ne jamais changer, d’où le nom de permalien." + +#: wp-admin/options-permalink.php:15 wp-admin/options-permalink.php:28 +msgid "Permalink Settings" +msgstr "Réglages des permaliens" + +#: wp-admin/options-media.php:126 +msgid "Organize my uploads into month- and year-based folders" +msgstr "Organiser mes fichiers envoyés dans des dossiers mensuels et annuels" + +#: wp-admin/options-media.php:118 +msgid "Configuring this is optional. By default, it should be blank." +msgstr "Ce réglage est facultatif. Par défaut, ce champ devrait être vide." + +#: wp-admin/options-media.php:116 +msgid "Full URL path to files" +msgstr "Adresse web complète pour les fichiers" + +#. translators: %s: wp-content/uploads +#: wp-admin/options-media.php:110 +msgid "Default is %s" +msgstr "Par défaut, %s" + +#: wp-admin/options-media.php:106 +msgid "Store uploads in this folder" +msgstr "Stocker les fichiers envoyés dans ce dossier" + +#: wp-admin/options-media.php:99 +msgid "Uploading Files" +msgstr "Envoi de fichiers" + +#: wp-admin/options-media.php:92 +msgid "Embeds" +msgstr "Affichages distants" + +#: wp-admin/options-media.php:75 wp-admin/options-media.php:76 +msgid "Large size" +msgstr "Grande taille" + +#: wp-admin/options-media.php:69 wp-admin/options-media.php:79 +msgid "Max Height" +msgstr "Hauteur maximale" + +#: wp-admin/options-media.php:67 wp-admin/options-media.php:77 +msgid "Max Width" +msgstr "Largeur maximale" + +#: wp-admin/options-media.php:65 wp-admin/options-media.php:66 +msgid "Medium size" +msgstr "Taille moyenne" + +#: wp-admin/options-media.php:60 +msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" +msgstr "Recadrer les images pour parvenir aux dimensions exactes (normalement, les miniatures sont au format carré)" + +#: wp-admin/options-media.php:53 +msgid "Thumbnail size" +msgstr "Taille des miniatures" + +#: wp-admin/options-media.php:49 +msgid "The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library." +msgstr "Les tailles précisées ci-dessous déterminent les dimensions maximales (en pixels) à utiliser lors de l’insertion d’une image dans la bibliothèque de médias." + +#: wp-admin/options-media.php:48 +msgid "Image sizes" +msgstr "Tailles des images" + +#: wp-admin/options-media.php:34 +msgid "Documentation on Media Settings" +msgstr "Documentation sur les réglages des médias (en)" + +#: wp-admin/options-media.php:21 +msgid "Uploading Files allows you to choose the folder and path for storing your uploaded files." +msgstr "« Envoi de fichiers » vous permet de choisir le dossier et le chemin de stockage de vos fichiers mis en ligne." + +#: wp-admin/options-media.php:18 +msgid "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size." +msgstr "Vous pouvez indiquer une taille maximale pour les images insérées dans votre contenu textuel. Vous pourrez insérer l’image dans sa taille d’origine." + +#: wp-admin/options-media.php:15 +msgid "Media Settings" +msgstr "Réglages des médias" + +#: wp-admin/options-general.php:352 wp-admin/options-general.php:356 +msgid "The %s constant in your %s file is no longer needed." +msgstr "La constante %s de votre fichier %s n’est plus nécessaire." + +#: wp-admin/options-general.php:330 +msgid "Site Language" +msgstr "Langue du site" + +#: wp-admin/options-general.php:304 +msgid "Week Starts On" +msgstr "La semaine débute le" + +#: wp-admin/options-general.php:298 +msgid "Documentation on date and time formatting." +msgstr "Documentation sur le format des dates." + +#: wp-admin/options-general.php:293 +msgid "Custom time format:" +msgstr "Format d’heure personnalisé :" + +#: wp-admin/options-general.php:292 +msgid "enter a custom time format in the following field" +msgstr "saisissez un format d’heure personnalisé dans le champ suivant" + +#: wp-admin/options-general.php:259 wp-admin/options-general.php:295 +msgid "example:" +msgstr "exemple :" + +#: wp-admin/options-general.php:257 +msgid "Custom date format:" +msgstr "Format de date personnalisé :" + +#: wp-admin/options-general.php:256 +msgid "enter a custom date format in the following field" +msgstr "saisissez un format de date personnalisé dans le champ suivant" + +#: wp-admin/options-general.php:256 wp-admin/options-general.php:292 +msgid "Custom:" +msgstr "Personnalisé :" + +#: wp-admin/options-general.php:216 +msgid "This timezone does not observe daylight saving time." +msgstr "Ce fuseau horaire n’a pas d’heure d’été" + +#. translators: %s: date and time +#: wp-admin/options-general.php:207 +msgid "Standard time begins on: %s." +msgstr "Le passage à l’heure d’hiver commence le %s. " + +#. translators: %s: date and time +#: wp-admin/options-general.php:205 +msgid "Daylight saving time begins on: %s." +msgstr "Le passage à l’heure d’été commence le %s." + +#: wp-admin/options-general.php:183 +msgid "This timezone is currently in standard time." +msgstr "Ce fuseau horaire est actuellement à l’heure d’hiver." + +#: wp-admin/options-general.php:181 +msgid "This timezone is currently in daylight saving time." +msgstr "Ce fuseau horaire est actuellement à l’heure d’été." + +#. translators: %s: local time +#: wp-admin/options-general.php:166 +msgid "Local time is %s." +msgstr "L’heure locale est %s." + +#. translators: 1: UTC abbreviation, 2: UTC time +#: wp-admin/options-general.php:158 +msgid "Universal time (%1$s) is %2$s." +msgstr "L’heure universelle (%1$s) est %2$s" + +#: wp-admin/options-general.php:153 +msgid "Choose either a city in the same timezone as you or a UTC timezone offset." +msgstr "Choisissez une ville dans le même fuseau horaire que le vôtre ou un fuseau horaire universel spécifique." + +#: wp-admin/options-general.php:146 +msgid "Timezone" +msgstr "Fuseau horaire" + +#. translators: %s: new admin email +#: wp-admin/options-general.php:110 +msgid "There is a pending change of the admin email to %s." +msgstr "Il y a un changement en attente de l’e-mail de l’administrateur vers %s." + +#: wp-admin/options-general.php:102 +msgid "This address is used for admin purposes. If you change this we will send you an email at your new address to confirm it. The new address will not become active until confirmed." +msgstr "Cette adresse est utilisée à des fins d’administration. Si vous la modifiez, nous enverrons un message à la nouvelle adresse afin de la confirmer. La nouvelle adresse ne sera pas active tant que vous ne l’aurez pas confirmée." + +#: wp-admin/options-general.php:93 +msgid "New User Default Role" +msgstr "Rôle par défaut de tout nouvel utilisateur" + +#: wp-admin/options-general.php:89 +msgid "Anyone can register" +msgstr "Tout le monde peut s’enregistrer" + +#: wp-admin/options-general.php:86 wp-admin/options-general.php:87 +msgid "Membership" +msgstr "Inscription" + +#: wp-admin/options-general.php:81 wp-admin/options-general.php:100 +msgid "Email Address" +msgstr "Adresse de messagerie" + +#: wp-admin/options-general.php:77 +msgid "Enter the address here if you want your site home page to be different from your WordPress installation directory." +msgstr "Si vous souhaitez que l’adresse de la page d’accueil de votre site soit différente du répertoire où vous avez installé WordPress, saisissez cette adresse ici." + +#: wp-admin/options-general.php:66 +msgid "In a few words, explain what this site is about." +msgstr "En quelques mots, décrivez la raison d’être de ce site." + +#: wp-admin/options-general.php:45 +msgid "Documentation on General Settings" +msgstr "Documentation sur les réglages généraux (en)" + +#: wp-admin/options-general.php:34 +msgid "UTC means Coordinated Universal Time." +msgstr "UTC signifie « Temps universel coordonné »." + +#: wp-admin/options-general.php:33 +msgid "You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable)." +msgstr "Vous pouvez configurer la langue, et les fichiers de traduction seront automatiquement téléchargés et installés (disponible uniquement si votre système de fichier est accessible en écriture)." + +#: wp-admin/options-general.php:30 +msgid "If you want site visitors to be able to register themselves, as opposed to by the site administrator, check the membership box. A default user role can be set for all new users, whether self-registered or registered by the site admin." +msgstr "Si vous voulez que les visiteurs du site puissent s’inscrire eux-mêmes plutôt que de devoir être inscrits par l’administrateur du site, cochez la case « Inscription ». Un rôle d’utilisateur par défaut peut être assigné pour tout nouveau inscrit, qu’il se soit enregistré lui-même ou par le biais de l’administrateur." + +#: wp-admin/options-general.php:29 +msgid "The WordPress URL and the Site URL can be the same (example.com) or different; for example, having the WordPress core files (example.com/wordpress) in a subdirectory instead of the root directory." +msgstr "L’adresse web de WordPress et celle du site peuvent être identiques (exemple.fr) ou différentes. Ainsi, vous pourriez avoir les fichiers de WordPress dans un sous-dossier (exemple.fr/wordpress) plutôt qu’à la racine du site." + +#: wp-admin/options-general.php:26 +msgid "Most themes display the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The tagline is also displayed by many themes." +msgstr "La plupart des thèmes affichent le titre du site en haut de chaque page, dans la barre de titre du navigateur, et en tant qu’identifiant pour les flux de syndication, sauf si votre thème en décide autrement. Le slogan est également utilisé par de nombreux thèmes." + +#: wp-admin/options-general.php:25 +msgid "The fields on this screen determine some of the basics of your site setup." +msgstr "Les champs de cet écran déterminent certains des réglages de base de votre site." + +#. translators: date and time format for exact current time, mainly about +#. timezones, see https://secure.php.net/date +#: wp-admin/options-general.php:21 +msgctxt "timezone date format" +msgid "Y-m-d H:i:s" +msgstr "Y-m-d H:i:s" + +#: wp-admin/options-general.php:18 +msgid "General Settings" +msgstr "Réglages généraux" + +#: wp-admin/options-discussion.php:230 +msgid "Retro (Generated)" +msgstr "Rétro (généré)" + +#: wp-admin/options-discussion.php:229 +msgid "MonsterID (Generated)" +msgstr "MonsterID (généré)" + +#: wp-admin/options-discussion.php:228 +msgid "Wavatar (Generated)" +msgstr "Wavatar (généré)" + +#: wp-admin/options-discussion.php:227 +msgid "Identicon (Generated)" +msgstr "Identicon (généré)" + +#: wp-admin/options-discussion.php:226 +msgid "Gravatar Logo" +msgstr "Logo Gravatar" + +#: wp-admin/options-discussion.php:225 +msgid "Blank" +msgstr "Vide" + +#: wp-admin/options-discussion.php:224 +msgid "Mystery Person" +msgstr "Personne mystère" + +#: wp-admin/options-discussion.php:220 +msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address." +msgstr "Les utilisateurs n’ayant pas d’avatar peuvent se voir attribuer un logo générique, ou un avatar généré à partir de leur adresse de messagerie." + +#: wp-admin/options-discussion.php:217 wp-admin/options-discussion.php:218 +msgid "Default Avatar" +msgstr "Avatar par défaut" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:206 +msgid "X — Even more mature than above" +msgstr "X — Réservés aux adultes" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:204 +msgid "R — Intended for adult audiences above 17" +msgstr "R — Réservés aux personnes de plus de 17 ans" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:202 +msgid "PG — Possibly offensive, usually for audiences 13 and above" +msgstr "PG — Possiblement offensants, réservés normalement aux personnes de 13 ans et plus" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:200 +msgid "G — Suitable for all audiences" +msgstr "G — Visibles par tous" + +#: wp-admin/options-discussion.php:194 wp-admin/options-discussion.php:195 +msgid "Maximum Rating" +msgstr "Classement maximal" + +#: wp-admin/options-discussion.php:189 +msgid "Show Avatars" +msgstr "Afficher les avatars" + +#: wp-admin/options-discussion.php:185 wp-admin/options-discussion.php:186 +msgid "Avatar Display" +msgstr "Affichage des avatars" + +#: wp-admin/options-discussion.php:175 +msgid "An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site." +msgstr "Un avatar est une image qui vous suit de site en site, apparaissant à côté de votre nom quand vous laissez un commentaire sur un site capable de le reconnaître. Vous pouvez ici activer l’affichage des avatars des gens qui laissent un commentaire sur votre site." + +#: wp-admin/options-discussion.php:173 +msgid "Avatars" +msgstr "Avatars" + +#: wp-admin/options-discussion.php:164 +msgid "When a comment contains any of these words in its content, name, URL, email, or IP, it will be put in the trash. One word or IP per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son adresse web, son adresse de messagerie, ou son adresse IP, il sera mis à la corbeille. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress »." + +#: wp-admin/options-discussion.php:162 wp-admin/options-discussion.php:163 +msgid "Comment Blacklist" +msgstr "Liste noire pour les commentaires" + +#: wp-admin/options-discussion.php:155 +msgid "When a comment contains any of these words in its content, name, URL, email, or IP, it will be held in the moderation queue. One word or IP per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Lorsqu’un commentaire contient l’un de ces mots dans son contenu, son nom, son adresse web, son adresse de messagerie, ou son adresse IP, il sera retenu dans la file de modération. Un seul mot ou une seule adresse IP par ligne. Cette fonction reconnaît l’intérieur des mots, donc « press » suffira pour reconnaître « WordPress »." + +#: wp-admin/options-discussion.php:153 +msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" +msgstr "Garder un commentaire dans la file d’attente s’il contient plus de %s lien(s) (une des caractéristiques typiques d’un commentaire indésirable (spam) est son nombre important de liens)" + +#: wp-admin/options-discussion.php:151 wp-admin/options-discussion.php:152 +msgid "Comment Moderation" +msgstr "Modération de commentaires" + +#: wp-admin/options-discussion.php:147 +msgid "Comment author must have a previously approved comment" +msgstr "L’auteur d’un commentaire doit avoir déjà au moins un commentaire approuvé" + +#: wp-admin/options-discussion.php:145 +msgid "Comment must be manually approved" +msgstr "Le commentaire doit être approuvé manuellement" + +#: wp-admin/options-discussion.php:141 wp-admin/options-discussion.php:142 +msgid "Before a comment appears" +msgstr "Avant la publication d’un commentaire" + +#: wp-admin/options-discussion.php:137 +msgid "A comment is held for moderation" +msgstr "Un commentaire est en attente de modération" + +#: wp-admin/options-discussion.php:133 +msgid "Anyone posts a comment" +msgstr "Un nouveau commentaire est publié" + +#: wp-admin/options-discussion.php:129 wp-admin/options-discussion.php:130 +msgid "Email me whenever" +msgstr "M’envoyer un message lorsque" + +#: wp-admin/options-discussion.php:123 +msgid "Comments should be displayed with the %s comments at the top of each page" +msgstr "Les commentaires doivent être affichés avec le plus %s en premier" + +#: wp-admin/options-discussion.php:121 +msgid "newer" +msgstr "récent" + +#: wp-admin/options-discussion.php:119 +msgid "older" +msgstr "ancien" + +#. translators: 1: Form field control for number of top level comments per +#. page, 2: Form field control for the 'first' or 'last' page +#: wp-admin/options-discussion.php:111 +msgid "Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default" +msgstr "Diviser les commentaires en pages, avec %1$s commentaires de premier niveau par page et la %2$s page affichée par défaut" + +#: wp-admin/options-discussion.php:108 +msgid "first" +msgstr "première" + +#: wp-admin/options-discussion.php:106 +msgid "last" +msgstr "dernière" + +#: wp-admin/options-discussion.php:97 +msgid "Enable threaded (nested) comments %s levels deep" +msgstr "Activer les commentaires imbriqués jusqu’à %s niveaux" + +#: wp-admin/options-discussion.php:74 +msgid "Automatically close comments on articles older than %s days" +msgstr "Fermer automatiquement les commentaires pour les articles vieux de plus de %s jours" + +#: wp-admin/options-discussion.php:68 +msgid "(Signup has been disabled. Only members of this site can comment.)" +msgstr " (L’inscription a été désactivée. Seuls les membres de ce site peuvent laisser un commentaire.)" + +#: wp-admin/options-discussion.php:67 +msgid "Users must be registered and logged in to comment" +msgstr "Un utilisateur doit être enregistré et connecté pour publier des commentaires" + +#: wp-admin/options-discussion.php:63 +msgid "Comment author must fill out name and email" +msgstr "L’auteur d’un commentaire doit renseigner son nom et son adresse de messagerie" + +#: wp-admin/options-discussion.php:61 wp-admin/options-discussion.php:62 +msgid "Other comment settings" +msgstr "Autres réglages des commentaires" + +#: wp-admin/options-discussion.php:57 +msgid "These settings may be overridden for individual articles." +msgstr "Ces réglages peuvent être modifiés pour chaque article." + +#: wp-admin/options-discussion.php:47 +msgid "Attempt to notify any blogs linked to from the article" +msgstr "Tenter de notifier les sites liés depuis le contenu des articles" + +#: wp-admin/options-discussion.php:43 wp-admin/options-discussion.php:44 +msgid "Default article settings" +msgstr "Réglages par défaut des articles" + +#: wp-admin/options-discussion.php:28 +msgid "Documentation on Discussion Settings" +msgstr "Documentation sur les réglages des discussions (en)" + +#: wp-admin/options-discussion.php:23 wp-admin/options-general.php:35 +#: wp-admin/options-media.php:24 wp-admin/options-permalink.php:23 +#: wp-admin/options-permalink.php:32 wp-admin/options-permalink.php:39 +#: wp-admin/options-reading.php:26 wp-admin/options-writing.php:22 +msgid "You must click the Save Changes button at the bottom of the screen for new settings to take effect." +msgstr "Vous devez cliquer sur « Enregistrer les modifications » en bas de l’écran pour que les nouveaux réglages prennent effet." + +#: wp-admin/options-discussion.php:22 +msgid "This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they won’t all fit here! :) Use the documentation links to get information on what each discussion setting does." +msgstr "Cet écran offre plusieurs options pour contrôler la gestion et l’affichage des commentaires et liens sur vos articles/pages. En fait, il y en a tellement qu’elles ne tiennent pas toutes ici ! :) Utiliser le lien vers la documentation pour obtenir des informations sur ce que fait chaque réglage de discussion." + +#: wp-admin/options-discussion.php:12 wp-admin/options-general.php:16 +#: wp-admin/options-media.php:13 wp-admin/options-permalink.php:13 +#: wp-admin/options-reading.php:13 wp-admin/options-writing.php:13 +msgid "Sorry, you are not allowed to manage options for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les options de ce site. " + +#. translators: %s: menu name +#: wp-admin/nav-menus.php:820 +msgctxt "menu location" +msgid "(Currently set to: %s)" +msgstr "(Actuellement réglé sur : %s)" + +#: wp-admin/nav-menus.php:812 +msgid "Display location" +msgstr "Afficher l’emplacement" + +#: wp-admin/nav-menus.php:803 +msgid "Auto add pages" +msgstr "Ajoutez automatiquement des pages" + +#: wp-admin/nav-menus.php:790 +msgid "Menu Settings" +msgstr "Réglages du menu" + +#: wp-admin/nav-menus.php:784 +msgid "Give your menu a name, then click Create Menu." +msgstr "Donnez à votre menu un nom, puis cliquez sur « Créer le menu »." + +#: wp-admin/nav-menus.php:771 +msgid "Drag each item into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." +msgstr "Glissez chaque élément pour les placer dans l’ordre que vous préférez. Cliquez sur la flèche à droite de l’élément pour afficher d’autres options de configuration." + +#: wp-admin/nav-menus.php:771 +msgid "Edit your default menu by adding or removing items. Drag each item into the order you prefer. Click Create Menu to save your changes." +msgstr "Modifiez votre menu par défaut en ajoutant ou en enlevant des éléments. Faites glissez chaque élément pour les mettre dans l’ordre que vous souhaitez. Cliquez sur « Créer le menu » pour enregistrer vos modifications." + +#: wp-admin/nav-menus.php:770 +msgid "Menu Structure" +msgstr "Structure du menu" + +#: wp-admin/nav-menus.php:763 wp-admin/nav-menus.php:842 +msgid "Save Menu" +msgstr "Enregistrer le menu" + +#: wp-admin/nav-menus.php:719 +msgid "or create a new menu." +msgstr "ou créez un nouveau menu." + +#: wp-admin/nav-menus.php:678 +msgid "Select a menu to edit:" +msgstr "Sélectionnez le menu à modifier :" + +#: wp-admin/nav-menus.php:673 +msgid "Edit your menu below, or create a new menu." +msgstr "Modifiez votre menu ci-dessous, ou créez un nouveau menu." + +#: wp-admin/nav-menus.php:648 +msgctxt "menu" +msgid "Use new menu" +msgstr "Utiliser le nouveau menu" + +#: wp-admin/nav-menus.php:642 +msgctxt "menu" +msgid "Edit" +msgstr "Modifier" + +#: wp-admin/nav-menus.php:630 +msgid "Select a Menu" +msgstr "Choisir un menu" + +#: wp-admin/nav-menus.php:621 +msgid "Assigned Menu" +msgstr "Menu assigné" + +#: wp-admin/nav-menus.php:620 +msgid "Theme Location" +msgstr "Emplacement du thème" + +#: wp-admin/nav-menus.php:597 +msgid "Manage Locations" +msgstr "Gérer les emplacements" + +#: wp-admin/nav-menus.php:595 +msgid "Edit Menus" +msgstr "Modifier les menus" + +#: wp-admin/nav-menus.php:589 wp-admin/widgets.php:362 +msgid "Manage with Live Preview" +msgstr "Gérer avec l’aperçu en direct" + +#: wp-admin/nav-menus.php:571 +msgid "Documentation on Menus" +msgstr "Documentation sur les menus personnalisés (en)" + +#: wp-admin/nav-menus.php:560 +msgid "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" +msgstr "Pour ajouter un nouveau menu au lieu d’en assigner un qui existe déjà, cliquez sur le lien « Utiliser un nouveau menu ». Votre nouveau menu sera automatiquement ajouté à cet emplacement du thème" + +#: wp-admin/nav-menus.php:559 +msgid "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" +msgstr "Pour modifier un menu actuellement assigné à un emplacement du thème, cliquez sur le lien « Modifier » adjacent" + +#: wp-admin/nav-menus.php:558 +msgid "To assign menus to one or more theme locations, select a menu from each location’s drop down. When you’re finished, click Save Changes" +msgstr "Pour assigner des menus à un ou plusieurs emplacements, sélectionnez le menu depuis la liste déroulante de chaque emplacement. Lorsque vous avez terminé, cliquez sur Enregistrer les modifications" + +#: wp-admin/nav-menus.php:557 +msgid "This screen is used for globally assigning menus to locations defined by your theme." +msgstr "Cet écran est utilisé pour assigner de manière globale vos menus à des emplacements définis par votre thème." + +#: wp-admin/nav-menus.php:553 +msgid "Editing Menus" +msgstr "Modification des menus" + +#: wp-admin/nav-menus.php:549 +msgid "Delete a menu item by expanding it and clicking the Remove link" +msgstr "Supprimez un élément du menu en l’ouvrant et en cliquant sur le bouton Supprimer" + +#: wp-admin/nav-menus.php:548 +msgid "To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" +msgstr "Pour réorganiser les éléments du menu, glissez/déposez les éléments avec la souris ou utilisez votre clavier. Glissez ou déplacez légèrement un élement du menu pour en faire un sous-menu" + +#: wp-admin/nav-menus.php:547 +msgid "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" +msgstr "Pour ajouter un lien personnalisé ouvrez la section « Liens personnalisés », saisissez une adresse web et un texte pour le lien, et cliquez sur « Ajouter au menu »" + +#: wp-admin/nav-menus.php:546 +msgid "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" +msgstr "Ajoutez un ou plusieurs éléments à la fois en cochant la case à côté de chaque élément puis en cliquant sur « Ajouter au menu »" + +#: wp-admin/nav-menus.php:545 +msgid "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." +msgstr "En cliquant sur le titre de n’importe élément du menu dans l’éditeur, un ensemble de réglages standards s’ouvrira. D’autres réglages, tels que la cible du lien, les classes CSS, les relations du lien et la description du lien, peuvent être activés et désactivés dans l’onglet « Options de l’écran »." + +#: wp-admin/nav-menus.php:544 +msgid "Each custom menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." +msgstr "Chaque menu personnalisé peut contenir un mélange de liens vers des pages, des catégories, des adresses web personnalisées ou d’autres types de contenu. Pour ajouter un lien dans un menu, sélectionnez un élément dans l’un des blocs situés dans le colonne de gauche ci-dessous." + +#: wp-admin/nav-menus.php:540 +msgid "Menu Management" +msgstr "Gestion des menus" + +#: wp-admin/nav-menus.php:536 +msgid "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." +msgstr "Vous pouvez assigner un emplacement du thème à chaque menu en sélectionnant les réglages souhaités en bas de l’éditeur de menu. Pour assigner un menu à tous les emplacements d’un coup, rendez-vous dans l’onglet Gérer les emplacements en haut de l’écran." + +#: wp-admin/nav-menus.php:535 +msgid "If you haven’t yet created any menus, click the ’create a new menu’ link to get started" +msgstr "Si vous n’avez pas encore créé de menu, cliquez sur le lien « Créer un nouveau menu » pour vous lancer" + +#: wp-admin/nav-menus.php:534 +msgid "To edit an existing menu, choose a menu from the drop down and click Select" +msgstr "Pour modifier un menu existant, choisissez un menu depuis la liste déroulant et cliquez sur Sélectionner" + +#: wp-admin/nav-menus.php:533 +msgid "The menu management box at the top of the screen is used to control which menu is opened in the editor below." +msgstr "Le bloc de gestion des menus, en haut de l’écran, est utilisé pour contrôler le menu qui est ouvert dans l’éditeur ci-dessous." + +#: wp-admin/nav-menus.php:525 +msgid "Add, organize, and modify individual menu items" +msgstr "Ajouter, organiser et modifier des éléments de menu individuels" + +#: wp-admin/nav-menus.php:524 +msgid "Create, edit, and delete menus" +msgstr "Créer, modifier et supprimer des menus" + +#: wp-admin/nav-menus.php:523 wp-admin/themes.php:73 +msgid "From this screen you can:" +msgstr "Depuis cet écran, vous pouvez :" + +#. translators: 1: Widgets admin screen URL, 2 and 3: The name of the default +#. themes +#: wp-admin/nav-menus.php:522 +msgid "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Custom Menu” widget on the Widgets screen. If your theme does not support the custom menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side." +msgstr "Les menus peuvent être affichés à des emplacements définis par votre thème, et même dans les barres latérales grâce au widget « Menus personnalisés » de l’écran Widgets. Si votre thème ne reconnaît pas encore cette fonctionnalité (les thèmes par défaut, %2$s and %3$s, les intègrent très bien), vous pouvez apprendre à ajouter cette reconnaissance vous-même en suivant le lien de documentation situé sur le côté." + +#: wp-admin/nav-menus.php:520 +msgid "This screen is used for managing your custom navigation menus." +msgstr "Cet écran est utilisé pour gérer vos menus de navigations personnalisés." + +#: wp-admin/nav-menus.php:517 +msgid "Your theme does not natively support menus, but you can use them in sidebars by adding a “Custom Menu” widget on the Widgets screen." +msgstr "Votre thème ne peut pas utiliser les menus nativement, mais vous pouvez les utiliser dans la barre latérale en ajoutant le widget “Menu personnalisé” depuis l’écran Widgets." + +#: wp-admin/nav-menus.php:394 +msgid "Menu locations updated." +msgstr "Les emplacements de menu ont été mis à jour." + +#: wp-admin/nav-menus.php:341 wp-admin/nav-menus.php:351 +msgid "Please enter a valid menu name." +msgstr "Veuillez saisir un nom de menu valide." + +#: wp-admin/nav-menus.php:281 +msgid "Selected menus have been successfully deleted." +msgstr "Les menus sélectionnés ont bien été supprimés." + +#: wp-admin/nav-menus.php:264 +msgid "The menu has been successfully deleted." +msgstr "Le menu a bien été supprimé." + +#: wp-admin/nav-menus.php:245 +msgid "The menu item has been successfully deleted." +msgstr "L’élément du menu a bien été supprimé." + +#: wp-admin/nav-menus.php:19 +msgid "Your theme does not support navigation menus or widgets." +msgstr "Le thème actuel n’accepte pas les menus de navigation ni les widgets." + +#: wp-admin/my-sites.php:118 +msgid "Visit" +msgstr "Visiter" + +#: wp-admin/my-sites.php:102 +msgid "Global Settings" +msgstr "Réglages globaux" + +#: wp-admin/my-sites.php:71 +msgid "You must be a member of at least one site to use this page." +msgstr "Vous devez être membre d’au moins un site pour utiliser cette page." + +#: wp-admin/my-sites.php:64 +msgctxt "site" +msgid "Add New" +msgstr "Ajouter" + +#: wp-admin/my-sites.php:54 wp-admin/options-head.php:15 +#: wp-admin/options.php:239 +msgid "Settings saved." +msgstr "Options enregistrées." + +#: wp-admin/my-sites.php:47 +msgid "Documentation on My Sites" +msgstr "Documentation sur Mes Sites (en)" + +#: wp-admin/my-sites.php:42 +msgid "This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site." +msgstr "Cet écran affiche à un utilisateur individuel tous ses sites sur ce réseau, et permet également à cet utilisateur de régler son site principal. Il peut utiliser les liens sous chaque site pour se rendre soit sur son interface publique, soit sur son administration." + +#: wp-admin/my-sites.php:31 +msgid "The primary site you chose does not exist." +msgstr "Le site principal que vous avez choisi n’existe pas." + +#: wp-admin/ms-delete-site.php:101 +msgid "Delete My Site Permanently" +msgstr "Effacer mon site définitivement" + +#. translators: %s: site address +#: wp-admin/ms-delete-site.php:97 +msgid "I'm sure I want to permanently disable my site, and I am aware I can never get it back or use %s again." +msgstr "Je suis certain de vouloir effacer mon site définitivement, et je me rends compte que je ne pourrais jamais le récupérer ni utiliser %s pour un nouveau site." + +#: wp-admin/ms-delete-site.php:89 +msgid "Remember, once deleted your site cannot be restored." +msgstr "Rappelez-vous qu’une fois supprimé, votre site ne peut être rétabli." + +#: wp-admin/ms-delete-site.php:88 +msgid "If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site." +msgstr "Si vous ne souhaitez plus utiliser votre site %s, vous pouvez l’effacer à l’aide du formulaire ci-dessous. Après avoir cliqué sur Effacer mon site, vous recevrez un message avec un lien. Cliquez sur ce lien pour effacer votre site." + +#: wp-admin/ms-delete-site.php:84 +msgid "Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked." +msgstr "Merci. Veuillez consulter le message que nous vous avons envoyé pour confirmer cette action. Votre site ne sera pas effacé tant que vous n’aurez pas cliqué le lien qu’il contient." + +#: wp-admin/ms-delete-site.php:77 +msgid "Delete My Site" +msgstr "Supprimer le site" + +#. translators: Do not translate USERNAME, URL_DELETE, SITE_NAME: those are +#. placeholders. +#: wp-admin/ms-delete-site.php:48 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently clicked the 'Delete Site' link on your site and filled in a\n" +"form on that page.\n" +"\n" +"If you really want to delete your site, click the link below. You will not\n" +"be asked to confirm again so only click this link if you are absolutely certain:\n" +"###URL_DELETE###\n" +"\n" +"If you delete your site, please consider opening a new site here\n" +"some time in the future! (But remember your current site and username\n" +"are gone forever.)\n" +"\n" +"Thanks for using the site,\n" +"Webmaster\n" +"###SITE_NAME###" +msgstr "" +"Cher/chère ###USERNAME###,\n" +"\n" +"Vous avez récemment cliqué sur le lien « Supprimer le site » pour votre propre site, \n" +"et avez complété le formulaire présent sur cette même page.\n" +"\n" +"Si vous confirmez la suppression de votre site, cliquez sur le lien ci-dessous.\n" +"Aucune confirmation ne vous sera demandée par la suite, soyez donc totalement \n" +"certain(e) de ce que vous faites :\n" +"###URL_DELETE###\n" +"\n" +"Si vous effacez votre site, n’hésitez pas à revenir créer un autre site à l’avenir ! \n" +"(mais souvenez-vous que votre site actuel et votre identifiant\n" +"ne seront plus jamais disponibles)\n" +"\n" +"Merci d’avoir utilisé notre site,\n" +"\n" +"Le webmaster\n" +"###SITE_NAME###" + +#: wp-admin/ms-delete-site.php:23 +msgid "I'm sorry, the link you clicked is stale. Please select another option." +msgstr "Je suis désolé, mais le lien que vous avez cliqué ne répond pas. Veuillez sélectionner une autre option." + +#: wp-admin/ms-delete-site.php:21 +msgid "Thank you for using %s, your site has been deleted. Happy trails to you until we meet again." +msgstr "Merci d’avoir utilisé notre service %s, votre site a été effacé. Ce n’est qu’un au revoir..." + +#: wp-admin/ms-delete-site.php:16 +msgid "Sorry, you are not allowed to delete this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce site." + +#: wp-admin/ms-delete-site.php:13 wp-admin/my-sites.php:13 +msgid "Multisite support is not enabled." +msgstr "Le support multisites n’est pas activé." + +#: wp-admin/menu.php:254 +msgid "Permalinks" +msgstr "Permaliens" + +#: wp-admin/menu.php:251 +msgid "Reading" +msgstr "Lecture" + +#: wp-admin/menu.php:250 +msgid "Writing" +msgstr "Écriture" + +#: wp-admin/menu.php:249 +msgctxt "settings screen" +msgid "General" +msgstr "Général" + +#: wp-admin/menu.php:246 +msgid "Network Setup" +msgstr "Création du réseau" + +#: wp-admin/menu.php:244 wp-admin/ms-delete-site.php:30 +msgid "Delete Site" +msgstr "Supprimer le site" + +#: wp-admin/menu.php:240 +msgid "Available Tools" +msgstr "Outils disponibles" + +#: wp-admin/menu.php:239 wp-admin/tools.php:12 +msgid "Tools" +msgstr "Outils" + +#: wp-admin/menu.php:233 wp-admin/menu.php:235 wp-admin/user-new.php:172 +#: wp-admin/user-new.php:280 wp-admin/user-new.php:380 +#: wp-admin/user-new.php:501 +msgid "Add New User" +msgstr "Ajouter un utilisateur" + +#: wp-admin/menu.php:228 wp-admin/menu.php:231 +msgid "Your Profile" +msgstr "Votre profil" + +#: wp-admin/menu.php:223 wp-admin/menu.php:225 wp-admin/user-edit.php:206 +#: wp-admin/users.php:498 +msgctxt "user" +msgid "Add New" +msgstr "Ajouter" + +#: wp-admin/menu.php:221 +msgid "All Users" +msgstr "Tous les utilisateurs" + +#: wp-admin/menu.php:217 wp-admin/user/menu.php:14 wp-admin/user-edit.php:28 +msgid "Profile" +msgstr "Profil" + +#: wp-admin/menu.php:209 +msgctxt "plugin editor" +msgid "Editor" +msgstr "Éditeur" + +#. translators: add new plugin +#: wp-admin/menu.php:208 wp-admin/plugins.php:504 +msgctxt "plugin" +msgid "Add New" +msgstr "Ajouter" + +#: wp-admin/menu.php:204 +msgid "Installed Plugins" +msgstr "Extensions installées" + +#: wp-admin/menu.php:202 +msgid "Plugins %s" +msgstr "Extensions %s" + +#: wp-admin/menu.php:192 +msgctxt "theme editor" +msgid "Editor" +msgstr "Éditeur" + +#: wp-admin/menu.php:156 +msgid "Appearance" +msgstr "Apparence" + +#: wp-admin/menu.php:86 +msgid "All Comments" +msgstr "Tous les commentaires" + +#: wp-admin/menu.php:75 +msgid "Comments %s" +msgstr "Commentaires %s" + +#: wp-admin/menu.php:63 +msgctxt "admin menu" +msgid "All Links" +msgstr "Tous les liens" + +#: wp-admin/menu.php:50 +msgid "Library" +msgstr "Bibliothèque" + +#: wp-admin/menu.php:41 +msgid "Updates %s" +msgstr "Mises à jour %s" + +#: wp-admin/menu-header.php:247 +msgid "Skip to main content" +msgstr "Aller au contenu principal" + +#: wp-admin/menu-header.php:246 +msgid "Main menu" +msgstr "Menu principal" + +#: wp-admin/menu-header.php:240 +msgid "Collapse menu" +msgstr "Réduire le menu" + +#: wp-admin/media.php:116 wp-admin/media.php:125 +msgid "Update Media" +msgstr "Mettre à jour le fichier" + +#. translators: add new file +#: wp-admin/media.php:110 wp-admin/menu.php:52 wp-admin/upload.php:80 +#: wp-admin/upload.php:228 +msgctxt "file" +msgid "Add New" +msgstr "Ajouter" + +#: wp-admin/media.php:75 +msgid "This screen allows you to edit five fields for metadata in a file within the media library." +msgstr "Cet écran vous permet de modifier les 4 champs des métadonnées des fichiers dans la bibliothèque des médias." + +#: wp-admin/media.php:63 +msgid "You can’t edit this attachment because it is in the Trash. Please move it out of the Trash and try again." +msgstr "Vous ne pouvez pas modifier ce fichier attaché, car il est dans la corbeille. Sortez-l’en, puis réessayez." + +#: wp-admin/media.php:62 +msgid "You attempted to edit an item that isn’t an attachment. Please go back and try again." +msgstr "Vous avez tenté de modifier un élément qui n’est pas un fichier joint. Veuillez réessayer." + +#: wp-admin/media.php:61 +msgid "You attempted to edit an attachment that doesn’t exist. Perhaps it was deleted?" +msgstr "Vous tentez de modifier un fichier attaché qui n’existe pas. Peut-être a-t-il été supprimé ?" + +#: wp-admin/media.php:23 wp-admin/media.php:57 +msgid "Sorry, you are not allowed to edit this attachment." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce fichier attaché." + +#: wp-admin/media-upload.php:38 +msgid "Invalid item ID." +msgstr "Identifiant d’élément non valide." + +#: wp-admin/media-new.php:56 +msgid "Documentation on Uploading Media Files" +msgstr "Documentation sur la mise en ligne de fichiers média (en)" + +#: wp-admin/media-new.php:51 +msgid "Revert to the Browser Uploader by clicking the link below the drag and drop box." +msgstr "Revenez à l’outil de mise en ligne du navigateur en cliquant sur le lien sous la zone de glisser-déposer." + +#: wp-admin/media-new.php:50 +msgid "Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen." +msgstr "Un clic sur Sélectionner les fichiers ouvre la fenêtre de navigation, vous donnant accès aux fichiers de votre machine. Après avoir cliqué sur un fichier, cliquez sur Ouvrir pour l’affichage de la barre de téléchargement." + +#: wp-admin/media-new.php:49 +msgid "Drag and drop your files into the area below. Multiple files are allowed." +msgstr "Glissez/déposez vos fichiers dans la zone ci-dessous. Vous pouvez en déposer plusieurs à la fois." + +#: wp-admin/media-new.php:47 +msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" +msgstr "Vous pouvez ici mettre des fichiers en ligne sans devoir créer un nouvel article avant. Ceci vous permet d’envoyer des fichiers qui seront utilisables par les articles et les pages ultérieurement et/ou seront utilisés via un lien internet pour partager un fichier particulier. Il y a 3 méthodes pour envoyer des fichiers :" + +#: wp-admin/media-new.php:40 +msgid "Upload New Media" +msgstr "Envoi d’un nouveau média" + +#: wp-admin/maint/repair.php:166 +msgid "Repair and Optimize Database" +msgstr "Réparer et optimiser la base de données" + +#: wp-admin/maint/repair.php:165 +msgid "WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing." +msgstr "WordPress peut également tenter d’optimiser la base de données. Cela peut améliorer ses performances dans certains cas. La réparation et l’optimisation peuvent prendre longtemps, et la base de données sera verrouillée durant l’optimisation." + +#: wp-admin/maint/repair.php:164 +msgid "Repair Database" +msgstr "Réparer la base de données" + +#: wp-admin/maint/repair.php:162 +msgid "WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient." +msgstr "WordPress peut automatiquement chercher les problèmes courants des base de données et les réparer. La réparation peut prendre un certain temps, merci donc de votre patience." + +#: wp-admin/maint/repair.php:160 +msgid "One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient." +msgstr "Une ou plusieurs tables de votre base de données sont indisponibles. Pour autoriser WordPress à tenter de réparer ces tables, cliquez sur le bouton « Réparer la base de données ». La réparation peut prendre un certain temps, merci donc d’être patient." + +#: wp-admin/maint/repair.php:157 +msgid "WordPress database repair" +msgstr "Réparation de la base de données de WordPress" + +#: wp-admin/maint/repair.php:153 +msgid "Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users." +msgstr "Réparations effectuées. Veuillez retirer la ligne suivante de votre fichier wp-config.php, pour empêcher que cette page soit utilisée par des utilisateurs non autorisés." + +#: wp-admin/maint/repair.php:147 +msgid "https://wordpress.org/support/forum/how-to-and-troubleshooting" +msgstr "https://wpfr.net/support/forum/support-de-wordpress/" + +#: wp-admin/maint/repair.php:147 +msgid "Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance." +msgstr "Certains problèmes de la base de données n’ont pas pu être réparés. Veuillez copier-coller la liste d’erreurs suivantes sur le forum de support de WordPress pour recevoir plus d’informations." + +#. translators: 1: table name, 2: error message, +#: wp-admin/maint/repair.php:139 +msgid "Failed to optimize the %1$s table. Error: %2$s" +msgstr "Impossible d’optimiser la table %1$s. Erreur : %2$s" + +#. translators: %s: table name +#: wp-admin/maint/repair.php:136 +msgid "Successfully optimized the %s table." +msgstr "La table %s a bien été optimisée." + +#. translators: %s: table name +#: wp-admin/maint/repair.php:129 +msgid "The %s table is already optimized." +msgstr "La table %s a déjà été optimisée." + +#. translators: 1: table name, 2: error message, +#: wp-admin/maint/repair.php:117 +msgid "Failed to repair the %1$s table. Error: %2$s" +msgstr "Impossible de réparer la table %1$s. Erreur : %2$s" + +#. translators: %s: table name +#: wp-admin/maint/repair.php:114 +msgid "Successfully repaired the %s table." +msgstr "La table %s a bien été réparée." + +#. translators: 1: table name, 2: error message, +#: wp-admin/maint/repair.php:107 +msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" +msgstr "La table %1$s est dans un mauvais état. Elle renvoie l’erreur suivante : %2$s. WordPress va tenter de la réparer…" + +#. translators: %s: table name +#: wp-admin/maint/repair.php:104 +msgid "The %s table is okay." +msgstr "La table %s est correcte." + +#: wp-admin/maint/repair.php:74 +msgid "Database repair results" +msgstr "Résultats de la réparation de la base de données" + +#. Translators: 1: wp-config.php; 2: Secret key service URL. +#: wp-admin/maint/repair.php:69 +msgid "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." +msgstr "Tandis que vous modifiez le fichier %1$s, prenez quelques minutes pour vous assurer que vous avez les 8 clés, et qu’elles sont bien uniques. Vous pouvez les générer avec le service de clés secrètes de WordPress.org." + +#: wp-admin/maint/repair.php:66 +msgid "Check secret keys" +msgstr "Vérifier les clés secrètes" + +#. translators: %s: wp-config.php +#: wp-admin/maint/repair.php:37 +msgid "To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page." +msgstr "Pour autoriser cette page à réparer automatiquement les problèmes de base de données, veuillez ajouter la ligne suivante dans votre fichier %s. Une fois cette ligne ajoutée à votre configuration, rechargez cette page." + +#: wp-admin/maint/repair.php:32 +msgid "Allow automatic database repair" +msgstr "Autoriser la réparation automatique de la base de données" + +#: wp-admin/maint/repair.php:20 +msgid "WordPress › Database Repair" +msgstr "WordPress » Réparation de la base de données" + +#: wp-admin/link.php:109 +msgid "Link not found." +msgstr "Lien non trouvé." + +#: wp-admin/link.php:104 +msgid "Edit Link" +msgstr "Modifier le lien" + +#: wp-admin/link-manager.php:102 +msgid "Search Links" +msgstr "Chercher un lien" + +#: wp-admin/link-manager.php:94 +msgid "%s link deleted." +msgid_plural "%s links deleted" +msgstr[0] "%s lien supprimé" +msgstr[1] "%s liens supprimés" + +#: wp-admin/link-manager.php:71 +msgid "Links list" +msgstr "Liste des liens" + +#: wp-admin/link-manager.php:66 +msgid "Documentation on Managing Links" +msgstr "Documentation sur la gestion des liens (en)" + +#: wp-admin/link-manager.php:61 +msgid "If you delete a link, it will be removed permanently, as Links do not have a Trash function yet." +msgstr "Si vous supprimez un lien, il sera supprimé définitivement, car les liens n’ont pas accès à la corbeille pour le moment." + +#: wp-admin/link-manager.php:59 +msgid "Deleting Links" +msgstr "Suppression de liens" + +#: wp-admin/link-manager.php:55 +msgid "You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table." +msgstr "Vous pouvez personnaliser l’affichage de cet écran en utilisant les réglages d’affichage et/ou le filtre déroulant présent au-dessous du tableau de liens." + +#: wp-admin/link-manager.php:54 +msgid "Links may be separated into Link Categories; these are different than the categories used on your posts." +msgstr "Les liens peuvent être rangés dans des catégories de liens ; ce ne sont pas les mêmes catégories que pour vos articles." + +#: wp-admin/link-manager.php:53 +msgid "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." +msgstr "Vous pouvez ici ajouter les liens que vous voulez voir affichés sur votre site, généralement par le biais de widgets. Des liens vers de nombreux sites de la communauté WordPress sont inclus par défaut." + +#: wp-admin/link-add.php:15 +msgid "Add New Link" +msgstr "Ajouter un lien" + +#: wp-admin/link-add.php:13 +msgid "Sorry, you are not allowed to add links to this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des liens pour ce site." + +#: wp-admin/install.php:376 +msgid "WordPress has been installed. Thank you, and enjoy!" +msgstr "WordPress est installé. Merci et profitez bien !" + +#: wp-admin/install.php:374 +msgid "Success!" +msgstr "Quel succès !" + +#: wp-admin/install.php:365 +msgid "Sorry, that isn’t a valid email address. Email addresses look like username@example.com." +msgstr "Désolé, ce n’est pas une adresse de messagerie valide. Les adresses de messagerie ressemblent à cela : utilisateur@exemple.com." + +#: wp-admin/install.php:361 +msgid "You must provide an email address." +msgstr "Vous devez saisir une adresse de messagerie." + +#: wp-admin/install.php:357 +msgid "Your passwords do not match. Please try again." +msgstr "Vos mots de passe ne correspondent pas. Veuillez réessayer." + +#: wp-admin/install.php:353 +msgid "The username you provided has invalid characters." +msgstr "L’identifiant que vous avez fourni contient des caractères non valides." + +#: wp-admin/install.php:350 +msgid "Please provide a valid username." +msgstr "Veuillez saisir un identifiant valide." + +#: wp-admin/install.php:319 +msgid "Please provide the following information. Don’t worry, you can always change these settings later." +msgstr "Veuillez renseigner les informations suivantes. Ne vous inquiétez pas, vous pourrez les modifier plus tard." + +#: wp-admin/install.php:318 +msgid "Information needed" +msgstr "Informations nécessaires" + +#: wp-admin/install.php:316 +msgid "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." +msgstr "Bienvenue dans la très célèbre installation en 5 minutes de WordPress ! Vous n’avez qu’à remplir les informations demandées ci-dessous et vous serez prêt à utiliser la plus extensible et puissante plateforme de publication de contenu au monde." + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/install.php:270 +msgid "The constant %s cannot be defined when installing WordPress." +msgstr "La constante %s ne peut pas être définie lors de l’installation de WordPress." + +#. translators: %s: wp-config.php +#: wp-admin/install.php:257 +msgid "Your %s file has an empty database table prefix, which is not supported." +msgstr "Votre fichier %s a un préfixe de base de donnée vide, ce qui n’est pas supporté." + +#: wp-admin/install.php:254 wp-admin/install.php:267 +msgid "Configuration Error" +msgstr "Erreur de configuration" + +#: wp-admin/install.php:248 +msgid "Insufficient Requirements" +msgstr "Les conditions requises ne sont pas remplies." + +#. translators: 1: WordPress version number, 2: Minimum required MySQL version +#. number, 3: Current MySQL version number +#: wp-admin/install.php:243 +msgid "You cannot install because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." +msgstr "Vous ne pouvez pas installer WordPress %1$s, car cette version requiert une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Current PHP version number +#: wp-admin/install.php:240 +msgid "You cannot install because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." +msgstr "Vous ne pouvez pas installer WordPress %1$s, car cette version requiert une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Minimum required MySQL version number, 4: Current PHP version +#. number, 5: Current MySQL version number +#: wp-admin/install.php:237 +msgid "You cannot install because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." +msgstr "Vous ne pouvez pas installer WordPress %1$s, car cette version requiert une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s." + +#: wp-admin/install.php:205 +msgid "Install WordPress" +msgstr "Installer WordPress" + +#: wp-admin/install.php:199 wp-admin/options-reading.php:138 +msgid "It is up to search engines to honor this request." +msgstr "Certains moteurs de recherche peuvent décider de l’indexer malgré tout." + +#: wp-admin/install.php:192 wp-admin/options-reading.php:118 +msgid "Note: Neither of these options blocks access to your site — it is up to search engines to honor your request." +msgstr "Note : Aucune de ses options ne bloque l’accès à votre site — c’est au moteur de recherche de respecter votre demande." + +#: wp-admin/install.php:191 wp-admin/install.php:198 +#: wp-admin/options-reading.php:117 wp-admin/options-reading.php:137 +msgid "Discourage search engines from indexing this site" +msgstr "Demander aux moteurs de recherche de ne pas indexer ce site" + +#: wp-admin/install.php:189 wp-admin/options-reading.php:115 +msgid "Allow search engines to index this site" +msgstr "Autoriser les moteurs de recherche à indexer ce site" + +#: wp-admin/install.php:182 wp-admin/install.php:185 +#: wp-admin/options-reading.php:31 wp-admin/options-reading.php:111 +#: wp-admin/options-reading.php:112 +msgid "Search Engine Visibility" +msgstr "Visibilité pour les moteurs de recherche" + +#: wp-admin/install.php:182 wp-admin/install.php:185 +#: wp-admin/options-reading.php:31 wp-admin/options-reading.php:111 +#: wp-admin/options-reading.php:112 +msgid "Site Visibility" +msgstr "Visibilité du site" + +#: wp-admin/install.php:179 +msgid "Double-check your email address before continuing." +msgstr "Vérifiez bien cette adresse de messagerie avant de continuer." + +#: wp-admin/install.php:177 +msgid "Your Email" +msgstr "Votre adresse de messagerie" + +#: wp-admin/install.php:167 wp-admin/user-edit.php:567 +#: wp-admin/user-new.php:458 +msgid "Confirm Password" +msgstr "Confirmation du mot de passe" + +#: wp-admin/install.php:159 wp-admin/user-edit.php:384 +#: wp-admin/user-edit.php:429 wp-admin/user-new.php:405 +#: wp-admin/user-new.php:409 wp-admin/user-new.php:429 +#: wp-admin/user-new.php:452 +msgid "(required)" +msgstr "(nécessaire)" + +#: wp-admin/install.php:158 wp-admin/user-new.php:452 +msgid "Repeat Password" +msgstr "Répétez le mot de passe" + +#. translators: The non-breaking space prevents 1Password from thinking the +#. text "log in" should trigger a password save prompt. +#: wp-admin/install.php:153 +msgid "You will need this password to log in. Please store it in a secure location." +msgstr "Vous aurez besoin de ce mot de passe pour vous connecter. Pensez à le stocker dans un lieu sûr." + +#: wp-admin/install.php:151 wp-admin/user-edit.php:175 +msgid "Important:" +msgstr "Important :" + +#: wp-admin/install.php:128 +msgid "Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol." +msgstr "Les identifiants ne peuvent utiliser que des caractères alphanumériques, des espaces, des tirets bas (\"_\"), des traits d'union (\"-\"), des points et le symbole @." + +#: wp-admin/install.php:124 +msgid "User(s) already exists." +msgstr "L’utilisateur existe déjà." + +#: wp-admin/install.php:110 wp-admin/install.php:315 +msgctxt "Howdy" +msgid "Welcome" +msgstr "Bienvenue" + +#: wp-admin/install.php:73 +msgid "WordPress › Installation" +msgstr "WordPress » Installation" + +#: wp-admin/index.php:118 +msgid "Dismiss the welcome panel" +msgstr "Ignorer le panneau de bienvenue" + +#: wp-admin/index.php:97 +msgid "Documentation on Dashboard" +msgstr "Documentation sur le tableau de bord (en)" + +#: wp-admin/index.php:85 +msgid "Welcome — Shows links for some of the most common tasks when setting up a new site." +msgstr "Bienvenue — Affiche des liens pour certaines des tâches les plus courantes lors de la configuration d’un nouveau site." + +#. translators: %s: WordPress Planet URL +#: wp-admin/index.php:81 +msgid "WordPress News — Latest news from the official WordPress project and the WordPress Planet." +msgstr "Nouvelles de WordPress — Les dernières nouveautés du projet officiel WordPress et de la planète WordPress." + +#. translators: %s: WordPress Planet URL +#: wp-admin/index.php:75 +msgid "WordPress News — Latest news from the official WordPress project, the WordPress Planet, and popular plugins." +msgstr "Nouvelles de WordPress — Les dernières nouveautés du projet officiel WordPress, de la planète WordPress et des extensions populaires. " + +#: wp-admin/index.php:71 +msgid "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 5 most recent draft posts you've started." +msgstr "Brouillon rapide — Vous permet de créer un nouvel article et de l’enregistrer en tant que brouillon. Affiche également des liens vers les 5 derniers brouillons que vous avez créés." + +#: wp-admin/index.php:69 +msgid "Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them." +msgstr "Activité — Affiche les articles programmés, ceux récemment publiés, et les commentaires récents sur vos articles, que vous pouvez valider ou non." + +#: wp-admin/index.php:68 +msgid "At A Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using." +msgstr "D’un coup d’œil - Affiche un résumé du contenu de votre site, et indique le thème et la version de WordPress que vous utilisez." + +#: wp-admin/index.php:66 +msgid "The boxes on your Dashboard screen are:" +msgstr "Les blocs de l’écran du tableau de bord sont :" + +#: wp-admin/index.php:58 +msgid "Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it." +msgstr "Contrôles des blocs — Cliquez sur la barre de titre d’un bloc pour l’ouvrir ou le fermer. Certains blocs ajoutés par des extensions peuvent avoir un contenu configurable, et afficheront donc un lien « Configurer » dans la barre de titre lors du survol de la souris." + +#: wp-admin/index.php:57 +msgid "Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box." +msgstr "Glisser/déposer - Pour réarranger les blocs, glissez/déposez-les en cliquant sur la barre de titre du bloc sélectionné, et relâchez-la lorsque vous apercevez un rectangle avec une bordure grise à l’emplacement où vous souhaitez placer le bloc." + +#: wp-admin/index.php:56 +msgid "Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show." +msgstr "Options de l’écran — Utilisez l’onglet Options de l’écran pour choisir les blocs à afficher dans le Tableau de bord." + +#: wp-admin/index.php:55 +msgid "You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well." +msgstr "Vous pouvez utiliser les contrôles suivants pour organiser l’écran du tableau de bord pour afin de se plier à votre manière de l’utiliser. La plupart des écrans de la console d’administration peuvent également être organisés de cette manière." + +#: wp-admin/index.php:51 +msgid "Navigation" +msgstr "Navigation" + +#: wp-admin/index.php:47 +msgid "Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information." +msgstr "Les liens contenus dans la barre d’outils placée en haut de l’écran relient votre tableau de bord à la partie publique de votre site, et fournissent un accès rapide à votre profil et de précieuses informations sur WordPress." + +#: wp-admin/index.php:46 +msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." +msgstr "La navigation située à gauche de l’écran fournit tous les liens pour accéder à la console d’administration de WordPress, avec les sous-menus qui s’affichant au survol. Vous pouvez réduire ce menu à ses seules icônes en cliquant sur la flèche de repliement située en bas du menu." + +#: wp-admin/index.php:34 +msgid "Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab above the screen title." +msgstr "Vous voici dans votre tableau de bord WordPress ! Cet écran s’affiche à chaque connexion à votre site. Il vous donne accès à l’ensemble des fonctionnalités de gestion de WordPress. Vous pouvez obtenir de l’aide pour n’importe quel écran en cliquant sur l’onglet « Aide » présent en haut à droite de chaque écran." + +#: wp-admin/includes/widgets.php:225 +msgctxt "widget" +msgid "Add" +msgstr "Ajouter" + +#: wp-admin/includes/widgets.php:224 +msgctxt "widget" +msgid "Edit" +msgstr "Modifier" + +#. translators: 1: Site name, 2: site URL, 3: role +#: wp-admin/includes/user.php:531 +msgid "" +"Hi,\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"If you do not want to join this site please ignore\n" +"this email. This invitation will expire in a few days.\n" +"\n" +"Please click the following link to activate your user account:\n" +"%%s" +msgstr "" +"Bonjour,\n" +"Vous avez été invité(e) à rejoindre « %1$s » sur\n" +"%2$s en tant que %3$s. \n" +"Si vous ne souhaitez pas rejoindre ce site, veuillez ignorer\n" +"ce message. L’invitation expirera dans quelques jours.\n" +"\n" +"Veuillez cliquer sur le lien suivant pour activer votre compte utilisateur :\n" +"%%s" + +#: wp-admin/includes/user.php:517 +msgid "Always use https when visiting the admin" +msgstr "Toujours utiliser https lors de l’utilisation de l’administration" + +#: wp-admin/includes/user.php:516 +msgid "Use https" +msgstr "Utiliser https" + +#: wp-admin/includes/user.php:481 +msgid "No thanks, do not remind me again" +msgstr "Non, ne pas me relancer à ce sujet" + +#: wp-admin/includes/user.php:480 +msgid "Yes, take me to my profile page" +msgstr "Oui, je veux aller sur mon profil maintenant" + +#: wp-admin/includes/user.php:478 +msgid "You’re using the auto-generated password for your account. Would you like to change it?" +msgstr "Vous utilisez le mot de passe auto-généré pour votre compte. Voulez-vous le changer ?" + +#: wp-admin/includes/user.php:477 +msgid "Notice:" +msgstr "Avertissement :" + +#: wp-admin/includes/user.php:174 +msgid "ERROR: Please enter an email address." +msgstr "ERREUR : veuillez saisir une adresse de messagerie." + +#: wp-admin/includes/user.php:153 +msgid "ERROR: Please enter the same password in both password fields." +msgstr "ERREUR : les deux mots de passe ne sont pas identiques." + +#: wp-admin/includes/user.php:148 +msgid "ERROR: Passwords may not contain the character \"\\\"." +msgstr "ERREUR : le mot de passe ne doit pas contenir le caractère « \\ »." + +#: wp-admin/includes/user.php:143 +msgid "ERROR: Please enter a password." +msgstr "ERREUR : veuillez saisir un mot de passe." + +#: wp-admin/includes/user.php:127 +msgid "ERROR: Please enter a nickname." +msgstr "ERREUR : Veuillez saisir un pseudonyme." + +#: wp-admin/includes/user.php:62 +msgid "You can’t give users that role." +msgstr "Vous ne pouvez pas donner ce rôle aux utilisateurs." + +#: wp-admin/includes/upgrade.php:395 +msgid "New WordPress Site" +msgstr "Nouveau site WordPress" + +#. translators: New site notification email. 1: New site URL, 2: User login, 3: +#. User password or password reset link, 4: Login URL +#: wp-admin/includes/upgrade.php:379 +msgid "" +"Your new WordPress site has been successfully set up at:\n" +"\n" +"%1$s\n" +"\n" +"You can log in to the administrator account with the following information:\n" +"\n" +"Username: %2$s\n" +"Password: %3$s\n" +"Log in here: %4$s\n" +"\n" +"We hope you enjoy your new site. Thanks!\n" +"\n" +"--The WordPress Team\n" +"https://wordpress.org/\n" +msgstr "" +"Votre nouveau site WordPress a bien été installé à l’adresse :\n" +"\n" +"%1$s\n" +"\n" +"Vous pouvez vous y connecter en tant qu’administrateur avec les informations suivantes :\n" +"\n" +"Identifiant : %2$s\n" +"Mot de passe : %3$s\n" +"Connectez-vous ici : %4$s\n" +"\n" +"Nous espérons que vous aimerez votre nouveau site ! Merci à vous !\n" +"\n" +"--L’équipe WordPress\n" +"https://wordpress.org/\n" + +#. translators: Default page slug +#: wp-admin/includes/upgrade.php:241 +msgid "sample-page" +msgstr "page-d-exemple" + +#: wp-admin/includes/upgrade.php:239 +msgid "Sample Page" +msgstr "Page d’exemple" + +#: wp-admin/includes/upgrade.php:220 +msgid "" +"This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n" +"\n" +"
Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)
\n" +"\n" +"...or something like this:\n" +"\n" +"
The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.
\n" +"\n" +"As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" +msgstr "" +"Voici un exemple de page. Elle est différente d’un article de blog, en cela qu’elle restera à la même place, et s’affichera dans le menu de navigation de votre site (en fonction de votre thème). La plupart des gens commencent par écrire une page « À Propos » qui les présente aux visiteurs potentiels du site. Vous pourriez y écrire quelque chose de ce tenant :\n" +"\n" +"
Bonjour ! Je suis un mécanicien qui aspire à devenir un acteur, et voici mon blog. J’habite à Bordeaux, j’ai un super chien baptisé Russell, et j’aime la vodka-ananas (ainsi que regarder la pluie tomber).
\n" +"\n" +"...ou bien quelque chose comme ça :\n" +"\n" +"
La société 123 Machin Truc a été créée en 1971, et n’a cessé de proposer au public des machins-trucs de qualité depuis lors. Située à Saint-Remy-en-Bouzemont-Saint-Genest-et-Isson, 123 Machin Truc emploie 2 000 personnes, et fabrique toutes sortes de bidules super pour la communauté bouzemontoise.
\n" +"\n" +"Étant donné que vous êtes un nouvel utilisateur de WordPress, vous devriez vous rendre sur votre Tableau de bord pour effacer la présente page, et créer de nouvelles pages avec votre propre contenu. Amusez-vous bien !" + +#: wp-admin/includes/upgrade.php:200 +msgid "" +"Hi, this is a comment.\n" +"To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" +"Commenter avatars come from Gravatar." +msgstr "" +"Bonjour, ceci est un commentaire.\n" +"Pour débuter avec la modération, la modification et la suppression de commentaires, veuillez visiter l’écran des Commentaires dans le Tableau de bord.\n" +"Les avatars des personnes qui commentent arrivent depuis Gravatar." + +#: wp-admin/includes/upgrade.php:197 +msgid "A WordPress Commenter" +msgstr "Un commentateur WordPress" + +#. translators: Default post slug +#: wp-admin/includes/upgrade.php:185 wp-admin/includes/upgrade.php:328 +msgctxt "Default post slug" +msgid "hello-world" +msgstr "bonjour-tout-le-monde" + +#: wp-admin/includes/upgrade.php:183 +msgid "Hello world!" +msgstr "Bonjour tout le monde !" + +#: wp-admin/includes/upgrade.php:174 +msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" +msgstr "Bienvenue dans WordPress. Ceci est votre premier article. Modifiez-le ou supprimez-le, puis lancez-vous !" + +#. translators: Default category slug +#: wp-admin/includes/upgrade.php:136 +msgctxt "Default category slug" +msgid "Uncategorized" +msgstr "Non classé" + +#: wp-admin/includes/upgrade.php:98 +msgid "The password you chose during the install." +msgstr "Le mot de passe que vous avez choisi pendant l’installation." + +#: wp-admin/includes/upgrade.php:86 +msgid "User already exists. Password inherited." +msgstr "L’utilisateur existe déjà et a hérité du mot de passe." + +#: wp-admin/includes/upgrade.php:83 +msgid "Your chosen password." +msgstr "Le mot de passe que vous avez choisi." + +#: wp-admin/includes/upgrade.php:77 +msgid "Note that password carefully! It is a random password that was generated just for you." +msgstr "Notez bien ce mot de passe sans vous tromper ! Il a été créé aléatoirement et vous est unique." + +#. translators: %s: Theme name +#: wp-admin/includes/update.php:755 +msgctxt "theme" +msgid "%s was successfully deleted." +msgstr "%s a bien été supprimé." + +#. translators: %s: Plugin name +#: wp-admin/includes/update.php:747 +msgctxt "plugin" +msgid "%s was successfully deleted." +msgstr "%s a bien été supprimé." + +#. translators: %s: Number of failed updates +#: wp-admin/includes/update.php:684 +msgid "%s updates failed." +msgstr "%s mises à jour ont échoué." + +#. translators: %s: Number of failed updates +#: wp-admin/includes/update.php:679 +msgid "%s update failed." +msgstr "%s mise à jour a échoué." + +#. translators: %s: Number of themes +#: wp-admin/includes/update.php:669 +msgid "%s themes successfully updated." +msgstr "%s thèmes mis à jour." + +#. translators: %s: Number of plugins +#: wp-admin/includes/update.php:664 +msgid "%s plugins successfully updated." +msgstr "%s extensions mises à jour." + +#. translators: %s: Number of themes +#: wp-admin/includes/update.php:657 +msgid "%s theme successfully updated." +msgstr "%s thème mis à jour." + +#. translators: %s: Number of plugins +#: wp-admin/includes/update.php:652 +msgid "%s plugin successfully updated." +msgstr "%s extension mise à jour." + +#: wp-admin/includes/update.php:618 +msgid "An automated WordPress update has failed to complete! Please notify the site administrator." +msgstr "Une mise à jour automatique de WordPress a échoué en cours de route ! Veuillez en notifier l’administrateur du site." + +#: wp-admin/includes/update.php:616 +msgid "An automated WordPress update has failed to complete - please attempt the update again now." +msgstr "Une mise à jour automatique de WordPress a échoué en cours de route ; vous pouvez tenter de la relancer." + +#. translators: 1: plugin name, 2: details URL, 3: additional link attributes, +#. 4: version number +#: wp-admin/includes/update.php:391 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin." +msgstr "Une nouvelle version de %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour cette extension." + +#. translators: 1: version number, 2: theme name +#: wp-admin/includes/update.php:286 +msgid "WordPress %1$s running %2$s theme." +msgstr "WordPress %1$s avec le thème %2$s." + +#: wp-admin/includes/update.php:282 +msgid "Latest" +msgstr "Dernière version" + +#: wp-admin/includes/update.php:282 +msgid "Update to %s" +msgstr "Mettre à jour vers la version %s" + +#. translators: 1: Codex URL to release notes, 2: new WordPress version +#: wp-admin/includes/update.php:257 +msgid "WordPress %2$s is available! Please notify the site administrator." +msgstr "WordPress %2$s est disponible ! Veuillez informer l’administrateur du site." + +#: wp-admin/includes/update.php:252 +msgid "Please update WordPress now" +msgstr "Veuillez mettre WordPress à jour maintenant" + +#. translators: %s: WordPress version +#: wp-admin/includes/update.php:247 wp-admin/includes/update.php:260 +msgid "https://codex.wordpress.org/Version_%s" +msgstr "https://codex.wordpress.org/Version_%s" + +#. translators: 1: Codex URL to release notes, 2: new WordPress version, 3: URL +#. to network admin, 4: accessibility text +#: wp-admin/includes/update.php:244 +msgid "WordPress %2$s is available! Please update now." +msgstr "WordPress %2$s est disponible ! Veuillez le mettre à jour maintenant." + +#: wp-admin/includes/update.php:214 +msgid "Get Version %s" +msgstr "Obtenir la version %s" + +#. translators: 1: WordPress version number, 2: WordPress updates admin screen +#. URL +#: wp-admin/includes/update.php:211 +msgid "You are using a development version (%1$s). Cool! Please stay updated." +msgstr "Vous utilisez une version de développement (%1$s). C’est super ! Veillez à rester à jour." + +#: wp-admin/includes/update-core.php:1228 wp-admin/update-core.php:502 +msgid "Welcome to WordPress %1$s. Learn more." +msgstr "Bienvenu dans WordPress %1$s. En savoir plus." + +#: wp-admin/includes/update-core.php:1227 wp-admin/update-core.php:501 +msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." +msgstr "Bienvenue dans WordPress %1$s. Vous allez être redirigé vers l’écran « À propos » de WordPress. Si ce n’est pas le cas, cliquez ici." + +#: wp-admin/includes/update-core.php:1098 +msgid "Upgrading database…" +msgstr "Mise à jour de la base de données…" + +#: wp-admin/includes/update-core.php:988 +msgid "There is not enough free disk space to complete the update." +msgstr "Il n’y a pas assez d’espace sur le disque pour terminer la mise à jour." + +#: wp-admin/includes/update-core.php:941 +msgid "Copying the required files…" +msgstr "Copie des fichiers nécessaires…" + +#: wp-admin/includes/update-core.php:879 +msgid "Preparing to install the latest version…" +msgstr "Préparation de l’installation de la dernière version…" + +#: wp-admin/includes/update-core.php:876 +msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de MySQL égale ou supérieure à la %2$s. Votre hébergement utilise MySQL version %3$s." + +#: wp-admin/includes/update-core.php:874 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s. Votre hébergement utilise PHP version %3$s." + +#: wp-admin/includes/update-core.php:872 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." +msgstr "Cette mise à jour ne peut être installée car WordPress %1$s requiert une version de PHP égale ou supérieure à la %2$s, et une version de MySQL égale ou supérieure à la %3$s. Votre hébergement utilise PHP version %4$s et MySQL version %5$s." + +#: wp-admin/includes/update-core.php:834 +msgid "The update could not be unpacked" +msgstr "La mise à jour ne peut pas être décompressée" + +#: wp-admin/includes/update-core.php:821 +msgid "Verifying the unpacked files…" +msgstr "Vérification des fichiers décompressés…" + +#: wp-admin/includes/translation-install.php:23 +msgid "Invalid translation type." +msgstr "Type de traduction non valide." + +#: wp-admin/includes/theme.php:667 wp-admin/themes.php:464 +msgid "Tags:" +msgstr "Étiquettes :" + +#: wp-admin/includes/theme.php:663 wp-admin/themes.php:460 +msgid "This is a child theme of %s." +msgstr "Ceci est un thème enfant de %s." + +#. translators: %s: Theme version +#: wp-admin/includes/theme.php:658 wp-admin/theme-install.php:324 +#: wp-admin/themes.php:448 +msgid "Version: %s" +msgstr "Version : %s" + +#: wp-admin/includes/theme.php:656 wp-admin/themes.php:446 +msgid "Current Theme" +msgstr "Thème actuel" + +#: wp-admin/includes/theme.php:643 wp-admin/themes.php:433 +msgid "Close details dialog" +msgstr "Fermer la fenêtre des détails" + +#: wp-admin/includes/theme.php:642 wp-admin/themes.php:432 +msgid "Show next theme" +msgstr "Afficher le thème suivant" + +#: wp-admin/includes/theme.php:641 wp-admin/themes.php:431 +msgid "Show previous theme" +msgstr "Affichier le thème précédent" + +#: wp-admin/includes/theme.php:280 +msgid "Portfolio" +msgstr "Portfolio" + +#: wp-admin/includes/theme.php:279 +msgid "Photography" +msgstr "Photographie" + +#: wp-admin/includes/theme.php:278 +msgid "News" +msgstr "Nouvelles" + +#: wp-admin/includes/theme.php:277 +msgid "Holiday" +msgstr "Vacances" + +#: wp-admin/includes/theme.php:276 +msgid "Food & Drink" +msgstr "Nourriture & Boisson" + +#: wp-admin/includes/theme.php:275 +msgid "Entertainment" +msgstr "Divertissement" + +#: wp-admin/includes/theme.php:274 +msgid "Education" +msgstr "Éducation" + +#: wp-admin/includes/theme.php:273 +msgid "E-Commerce" +msgstr "E-Commerce" + +#: wp-admin/includes/theme.php:272 +msgid "Blog" +msgstr "Blog" + +#: wp-admin/includes/theme.php:271 wp-admin/includes/theme.php:304 +msgid "Subject" +msgstr "Thème" + +#: wp-admin/includes/theme.php:268 +msgid "Translation Ready" +msgstr "Prêt à être traduit" + +#: wp-admin/includes/theme.php:267 +msgid "Threaded Comments" +msgstr "Commentaires imbriqués" + +#: wp-admin/includes/theme.php:266 +msgid "Theme Options" +msgstr "Options du thème" + +#: wp-admin/includes/theme.php:265 +msgid "Sticky Post" +msgstr "Article mis en avant" + +#: wp-admin/includes/theme.php:264 +msgid "RTL Language Support" +msgstr "Support des langues RTL" + +#: wp-admin/includes/theme.php:262 +msgid "Microformats" +msgstr "Microformats" + +#: wp-admin/includes/theme.php:261 +msgid "Full Width Template" +msgstr "Modèle pleine largeur" + +#: wp-admin/includes/theme.php:260 +msgid "Front Page Posting" +msgstr "Page d’accueil personnalisée" + +#: wp-admin/includes/theme.php:259 +msgid "Footer Widgets" +msgstr "Widgets de pied de page" + +#: wp-admin/includes/theme.php:258 +msgid "Flexible Header" +msgstr "En-tête flexible" + +#: wp-admin/includes/theme.php:257 +msgid "Featured Images" +msgstr "Images mises en avant" + +#: wp-admin/includes/theme.php:256 +msgid "Featured Image Header" +msgstr "Image d’en-tête mise en avant" + +#: wp-admin/includes/theme.php:255 +msgid "Editor Style" +msgstr "Éditeur de style" + +#: wp-admin/includes/theme.php:253 +msgid "Custom Logo" +msgstr "Logo personnalisé" + +#: wp-admin/includes/theme.php:251 +msgid "Custom Colors" +msgstr "Couleurs personnalisées" + +#: wp-admin/includes/theme.php:249 +msgid "BuddyPress" +msgstr "BuddyPress" + +#: wp-admin/includes/theme.php:248 +msgid "Accessibility Ready" +msgstr "Optimisé pour l’accessibilité" + +#: wp-admin/includes/theme.php:247 wp-admin/includes/theme.php:303 +msgid "Features" +msgstr "Fonctionnalités" + +#: wp-admin/includes/theme.php:244 +msgid "Right Sidebar" +msgstr "Colonne latérale droite" + +#: wp-admin/includes/theme.php:243 +msgid "Left Sidebar" +msgstr "Colonne latérale gauche" + +#: wp-admin/includes/theme.php:242 +msgid "Four Columns" +msgstr "Quatre colonnes" + +#: wp-admin/includes/theme.php:241 +msgid "Three Columns" +msgstr "Trois colonnes" + +#: wp-admin/includes/theme.php:240 +msgid "Two Columns" +msgstr "Deux colonnes" + +#: wp-admin/includes/theme.php:239 +msgid "One Column" +msgstr "Une colonne" + +#: wp-admin/includes/theme.php:238 +msgid "Grid Layout" +msgstr "Style en grille" + +#. translators: 1: theme name, 2: theme details URL, 3: additional link +#. attributes, 4: version number, 5: update URL, 6: additional link attributes +#. translators: 1: plugin name, 2: details URL, 3: additional link attributes, +#. 4: version number, 5: update URL, 6: additional link attributes +#. translators: 1: theme name, 2: details URL, 3: additional link attributes, +#. 4: version number, 5: update URL, 6: additional link attributes +#: wp-admin/includes/theme.php:203 wp-admin/includes/update.php:402 +#: wp-admin/includes/update.php:547 +msgid "There is a new version of %1$s available. View version %4$s details or update now." +msgstr "Une nouvelle version de %1$s est disponible. Afficher les détails de la version %4$s ou mettre à jour immédiatement." + +#. translators: 1: theme name, 2: theme details URL, 3: additional link +#. attributes, 4: version number +#. translators: 1: theme name, 2: details URL, 3: additional link attributes, +#. 4: version number +#: wp-admin/includes/theme.php:192 wp-admin/includes/update.php:536 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." +msgstr "Une nouvelle version pour %1$s est disponible. Afficher les détails de la version %4$s. La mise à jour automatique n’est pas disponible pour ce thème." + +#. translators: 1: theme name, 2: version number +#. translators: 1: plugin name, 2: version number +#. translators: 1: theme name, 2: version number +#. translators: 1: theme name, 2: version number +#. translators: 1: theme name, 2: version number +#. translators: 1: plugin name, 2: version number +#: wp-admin/includes/theme.php:186 wp-admin/includes/theme.php:197 +#: wp-admin/includes/theme.php:208 wp-admin/includes/update.php:385 +#: wp-admin/includes/update.php:396 wp-admin/includes/update.php:407 +#: wp-admin/includes/update.php:530 wp-admin/includes/update.php:541 +#: wp-admin/includes/update.php:552 wp-admin/update-core.php:287 +msgid "View %1$s version %2$s details" +msgstr "Afficher les détails de la version %2$s du thème %1$s" + +#. translators: 1: theme name, 2: theme details URL, 3: additional link +#. attributes, 4: version number +#. translators: 1: plugin name, 2: details URL, 3: additional link attributes, +#. 4: version number +#. translators: 1: theme name, 2: details URL, 3: additional link attributes, +#. 4: version number +#: wp-admin/includes/theme.php:181 wp-admin/includes/update.php:380 +#: wp-admin/includes/update.php:525 +msgid "There is a new version of %1$s available. View version %4$s details." +msgstr "Une nouvelle version de %1$s est disponible. Afficher les détails de la version %4$s." + +#: wp-admin/includes/theme.php:75 +msgid "Could not fully remove the theme %s." +msgstr "Impossible de supprimer complètement le thème %s." + +#: wp-admin/includes/theme-install.php:205 +msgid "Theme Install" +msgstr "Installation du thème" + +#: wp-admin/includes/theme-install.php:146 +msgid "Theme zip file" +msgstr "Fichier zip du thème" + +#: wp-admin/includes/theme-install.php:143 +msgid "If you have a theme in a .zip format, you may install it by uploading it here." +msgstr "Si vous avez un thème au format .zip, vous pouvez l’installer en le mettant en ligne ici." + +#: wp-admin/includes/theme-install.php:133 +msgid "Find Themes" +msgstr "Trouver des thèmes" + +#: wp-admin/includes/theme-install.php:102 +msgid "Find a theme based on specific features." +msgstr "Trouver un thème selon des critères précis." + +#: wp-admin/includes/theme-install.php:101 wp-admin/theme-install.php:161 +msgid "Feature Filter" +msgstr "Filtre de fonctionnalités" + +#: wp-admin/includes/theme-install.php:80 +msgid "Search by tag" +msgstr "Recherche par étiquette" + +#: wp-admin/includes/theme-install.php:77 +msgid "Search by author" +msgstr "Recherche par auteur" + +#: wp-admin/includes/theme-install.php:74 +#: wp-admin/includes/theme-install.php:85 +msgid "Search by keyword" +msgstr "Recherche par mot-clé." + +#: wp-admin/includes/theme-install.php:69 +msgctxt "Theme Installer" +msgid "Tag" +msgstr "Étiquette" + +#: wp-admin/includes/theme-install.php:65 +msgid "Type of search" +msgstr "Type de recherche" + +#: wp-admin/includes/theme-install.php:60 +msgid "Search for themes by keyword." +msgstr "Chercher un thème par mot-clé." + +#: wp-admin/includes/template.php:2126 +msgid "You are currently editing the page that shows your latest posts." +msgstr "Vous êtes en train de modifier la page qui affiche vos derniers articles." + +#. translators: 1: The rating +#: wp-admin/includes/template.php:2102 +msgid "%s rating" +msgstr "Note : %s" + +#. translators: 1: The rating, 2: The number of ratings +#: wp-admin/includes/template.php:2098 +msgid "%1$s rating based on %2$s rating" +msgid_plural "%1$s rating based on %2$s ratings" +msgstr[0] "Une note de %1$s basée sur %2$s vote" +msgstr[1] "Une note de %1$s basée sur %2$s votes" + +#: wp-admin/includes/template.php:2046 +msgid "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." +msgstr "Cela remplacera le contenu actuel de l’éditeur par la dernière version sauvegardée. Vous pouvez utiliser les outils Annuler et Rétablir pour rétablir l’ancien contenu ou revenir à la version sauvegardée." + +#: wp-admin/includes/template.php:2043 +msgid "Restore the backup" +msgstr "Restaurer la sauvegarde." + +#: wp-admin/includes/template.php:2042 +msgid "The backup of this post in your browser is different from the version below." +msgstr "La sauvegarde de cet article dans votre navigateur est différente de la version ci-dessous." + +#: wp-admin/includes/template.php:2025 +msgid "Likely direct inclusion of wp-admin/includes/template.php in order to use add_meta_box(). This is very wrong. Hook the add_meta_box() call into the add_meta_boxes action instead." +msgstr "Il semble y avoir une inclusion directe de wp-admin/includes/template.php afin d’utiliser add_meta_box(). Ce n’est pas comme cela qu’il faut faire. Attachez plutôt le crochet add_meta_box() à l’action add_meta_box." + +#: wp-admin/includes/template.php:1948 wp-admin/nav-menus.php:657 +#: wp-admin/options.php:300 +msgid "Save Changes" +msgstr "Enregistrer les modifications" + +#: wp-admin/includes/template.php:1788 +msgid "Current Background Image" +msgstr "Image d’arrière plan actuelle" + +#: wp-admin/includes/template.php:1775 +msgid "Current Header Image" +msgstr "Image d’en-tête actuelle" + +#: wp-admin/includes/template.php:1717 +msgid "Front Page" +msgstr "Page d’accueil" + +#: wp-admin/includes/template.php:1501 +msgid "Close media attachment panel" +msgstr "Fermer le panneau des fichiers attachés." + +#: wp-admin/includes/template.php:1500 +msgid "Attach to existing content" +msgstr "Attacher à un contenu existant" + +#: wp-admin/includes/template.php:1266 +msgid "The privacy options group has been removed. Use another settings group." +msgstr "Le groupement d’options « Vie privée » a été supprimé. Utilisez un autre groupement de réglages." + +#: wp-admin/includes/template.php:1261 +msgid "The miscellaneous options group has been removed. Use another settings group." +msgstr "Le groupement d’options « Divers » a été supprimé. Utilisez un autre groupement de réglages." + +#: wp-admin/includes/template.php:1042 +msgid "Toggle panel: %s" +msgstr "Ouvrir/fermer le bloc %s" + +#: wp-admin/includes/template.php:872 +msgid "Upload file and import" +msgstr "Envoyer le fichier et l’importer" + +#: wp-admin/includes/template.php:867 +msgid "Maximum size: %s" +msgstr "Taille maximale : %s" + +#: wp-admin/includes/template.php:867 +msgid "Choose a file from your computer:" +msgstr "Choisissez un fichier sur votre ordinateur :" + +#: wp-admin/includes/template.php:861 +msgid "Before you can upload your import file, you will need to fix the following error:" +msgstr "Avant de mettre en ligne votre fichier d’import, il vous faut corriger l’erreur suivante :" + +#: wp-admin/includes/template.php:727 +msgid "Minute" +msgstr "Minute" + +#: wp-admin/includes/template.php:726 +msgid "Hour" +msgstr "Heure" + +#: wp-admin/includes/template.php:724 +msgid "Day" +msgstr "Jour" + +#. translators: 1: month number (01, 02, etc.), 2: month abbreviation +#: wp-admin/includes/template.php:720 +msgid "%1$s-%2$s" +msgstr "%1$s-%2$s" + +#: wp-admin/includes/template.php:714 +msgid "Month" +msgstr "Mois" + +#: wp-admin/includes/template.php:661 +msgid "Add Custom Field" +msgstr "Ajouter un champ personnalisé" + +#: wp-admin/includes/template.php:650 +msgid "Enter new" +msgstr "Saisissez-en un nouveau" + +#: wp-admin/includes/template.php:624 +msgid "Add New Custom Field:" +msgstr "Ajouter un nouveau champ personnalisé :" + +#: wp-admin/includes/template.php:558 +msgid "Key" +msgstr "Clé" + +#: wp-admin/includes/template.php:489 wp-admin/includes/template.php:504 +#: wp-admin/includes/template.php:568 wp-admin/includes/template.php:629 +msgid "Value" +msgstr "Valeur" + +#: wp-admin/includes/template.php:488 wp-admin/includes/template.php:503 +#: wp-admin/includes/template.php:628 +msgctxt "meta name" +msgid "Name" +msgstr "Nom" + +#: wp-admin/includes/template.php:469 +msgid "Comment by %s marked as spam." +msgstr "Commentaire de %s marqué comme indésirable." + +#: wp-admin/includes/template.php:466 +msgid "Comment by %s moved to the trash." +msgstr "Commentaire de %s déplacé dans la corbeille." + +#: wp-admin/includes/template.php:430 +msgid "Submit Reply" +msgstr "Envoyer la réponse" + +#: wp-admin/includes/template.php:429 +msgid "Update Comment" +msgstr "Mettre à jour le commentaire" + +#: wp-admin/includes/template.php:428 +msgid "Add Comment" +msgstr "Ajouter un commentaire" + +#: wp-admin/includes/template.php:398 +msgid "Add new Comment" +msgstr "Ajouter un nouveau commentaire" + +#: wp-admin/includes/template.php:397 +msgid "Reply to Comment" +msgstr "Répondre au commentaire" + +#: wp-admin/includes/taxonomy.php:116 +msgid "You did not enter a category name." +msgstr "Vous n’avez pas entré de nom de catégorie." + +#: wp-admin/includes/schema.php:1101 +msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." +msgstr "Vous pouvez toujours utiliser votre site, mais tout sous-domaine créé pourrait ne pas être accessible. Si vous êtes sûr de votre configuration DNS, ignorez ce message." + +#. translators: %s: asterisk symbol (*) +#: wp-admin/includes/schema.php:1097 +msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." +msgstr "Pour utiliser la configuration en sous-domaine, il vous faut ajouter un enregistrement générique (joker) à vos enregistrements DNS. Cela signifie généralement ajouter un hôte %s pointant vers votre serveur dans votre outil de configuration DNS." + +#. translators: %s: error message +#: wp-admin/includes/schema.php:1091 +msgid "This resulted in an error message: %s" +msgstr "Cela a abouti à ce message d’erreur : %s" + +#. translators: %s: host name +#: wp-admin/includes/schema.php:1086 +msgid "The installer attempted to contact a random hostname (%s) on your domain." +msgstr "L’installateur a tenté de contacter un nom d’hôte aléatoire (%s) sur votre domaine." + +#: wp-admin/includes/schema.php:1082 +msgid "Warning! Wildcard DNS may not be configured correctly!" +msgstr "Attention ! L’enregistrement DNS générique (joker) peut ne pas être configuré correctement !" + +#. translators: %s: site link +#: wp-admin/includes/schema.php:1010 wp-admin/includes/upgrade.php:163 +msgid "Welcome to %s. This is your first post. Edit or delete it, then start blogging!" +msgstr "Bienvenue sur %s. Vous lisez votre premier article. Modifiez-le ou supprimez-le, puis commencez à publier !" + +#: wp-admin/includes/schema.php:913 +msgid "You must provide a valid email address." +msgstr "Vous devez saisir une adresse de messagerie valide." + +#: wp-admin/includes/schema.php:910 +msgid "The network already exists." +msgstr "Le réseau existe déjà." + +#: wp-admin/includes/schema.php:906 +msgid "You must provide a name for your network of sites." +msgstr "vous devez fournir un nom pour votre réseau de sites." + +#: wp-admin/includes/schema.php:904 +msgid "You must provide a domain name." +msgstr "vous devez fournir un nom de domaine." + +#. translators: user role +#: wp-admin/includes/schema.php:644 +msgctxt "User role" +msgid "Subscriber" +msgstr "Abonné" + +#. translators: user role +#: wp-admin/includes/schema.php:642 +msgctxt "User role" +msgid "Contributor" +msgstr "Contributeur" + +#. translators: user role +#: wp-admin/includes/schema.php:640 +msgctxt "User role" +msgid "Author" +msgstr "Auteur" + +#. translators: user role +#: wp-admin/includes/schema.php:638 +msgctxt "User role" +msgid "Editor" +msgstr "Éditeur" + +#. translators: user role +#: wp-admin/includes/schema.php:636 +msgctxt "User role" +msgid "Administrator" +msgstr "Administrateur" + +#. translators: site tagline +#: wp-admin/includes/schema.php:530 +msgid "Just another %s site" +msgstr "Un site utilisant %s" + +#. translators: default start of the week. 0 = Sunday, 1 = Monday +#: wp-admin/includes/schema.php:402 +msgctxt "start of week" +msgid "1" +msgstr "1" + +#. translators: site tagline +#: wp-admin/includes/schema.php:398 +msgid "Just another WordPress site" +msgstr "Un site utilisant WordPress" + +#: wp-admin/includes/schema.php:396 +msgid "My Site" +msgstr "Mon site" + +#. translators: default GMT offset or timezone string. Must be either a valid +#. offset (-12 to 14) or a valid timezone string (America/New_York). See +#. https://secure.php.net/manual/en/timezones.php for all timezone strings +#. supported by PHP. +#: wp-admin/includes/schema.php:387 +msgctxt "default GMT offset or timezone string" +msgid "0" +msgstr "Europe/Paris" + +#: wp-admin/includes/revision.php:395 +msgid "Sorry, something went wrong. The requested comparison could not be loaded." +msgstr "Désolé, quelque chose s’est mal déroulé. La comparaison demandée n’a pas pu être chargée." + +#: wp-admin/includes/revision.php:383 +msgid "Restore This Revision" +msgstr "Rétablir cette révision" + +#: wp-admin/includes/revision.php:381 +msgid "Restore This Autosave" +msgstr "Rétablir cette sauvegarde automatique" + +#: wp-admin/includes/revision.php:366 +msgid "Revision by %s" +msgstr "Révision par %s" + +#: wp-admin/includes/revision.php:363 +msgid "Current Revision by %s" +msgstr "Révision actuelle par %s" + +#: wp-admin/includes/revision.php:360 +msgid "Autosave by %s" +msgstr "Sauvegarde automatique par %s" + +#: wp-admin/includes/revision.php:354 +msgctxt "Followed by post revision info" +msgid "To:" +msgstr "Vers :" + +#: wp-admin/includes/revision.php:352 +msgctxt "Followed by post revision info" +msgid "From:" +msgstr "Depuis :" + +#: wp-admin/includes/revision.php:343 +msgid "Compare any two revisions" +msgstr "Comparer n’importe quelles révisions" + +#: wp-admin/includes/revision.php:329 +msgctxt "Button label for a next revision" +msgid "Next" +msgstr "Suivante" + +#: wp-admin/includes/revision.php:325 +msgctxt "Button label for a previous revision" +msgid "Previous" +msgstr "Précédente" + +#: wp-admin/includes/revision.php:208 wp-admin/includes/revision.php:250 +msgctxt "revision date short format" +msgid "j M @ H:i" +msgstr "j F \\à G \\h i \\m\\i\\n " + +#: wp-admin/includes/post.php:1623 +msgid "Your latest changes were saved as a revision." +msgstr "Vos dernières modifications ont été enregistrées dans une révision." + +#: wp-admin/includes/post.php:1622 +msgid "Saving revision…" +msgstr "Enregistrement de la révision…" + +#: wp-admin/includes/post.php:1608 +msgid "Take over" +msgstr "Prendre la main" + +#: wp-admin/includes/post.php:1585 +msgid "If you take over, %s will be blocked from continuing to edit." +msgstr "Si vous souhaitez vous en occuper, %s sera bloqué et ne pourra pas terminer sa modification." + +#: wp-admin/includes/post.php:1583 +msgid "This content is currently locked." +msgstr "Ce contenu est actuellement verrouillé." + +#: wp-admin/includes/post.php:1425 +msgid "Click the image to edit or update" +msgstr "Cliquez sur l’image pour la modifier ou la mettre à jour." + +#: wp-admin/includes/post.php:1351 +msgid "Edit permalink" +msgstr "Modifier le permalien" + +#: wp-admin/includes/post.php:1336 +msgid "Change Permalinks" +msgstr "Modifier les permaliens" + +#: wp-admin/includes/post.php:1325 wp-admin/includes/post.php:1348 +msgid "Permalink:" +msgstr "Permalien :" + +#: wp-admin/includes/post.php:728 +msgid "Sorry, you are not allowed to create posts or drafts on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des articles ou des brouillons sur ce site." + +#: wp-admin/includes/post.php:726 +msgid "Sorry, you are not allowed to create pages on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de créer des pages sur ce site." + +#: wp-admin/includes/post.php:607 +msgid "Auto Draft" +msgstr "Brouillon auto" + +#: wp-admin/includes/post.php:35 wp-admin/includes/post.php:73 +msgid "Sorry, you are not allowed to edit posts as this user." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier des articles sous cet identifiant." + +#: wp-admin/includes/post.php:33 wp-admin/includes/post.php:71 +msgid "Sorry, you are not allowed to edit pages as this user." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier des pages sous cet identifiant." + +#: wp-admin/includes/plugin.php:958 +msgid "The plugin does not have a valid header." +msgstr "Cette extension ne dispose pas d’un en-tête valide." + +#: wp-admin/includes/plugin.php:954 +msgid "Plugin file does not exist." +msgstr "Le fichier de l’extension n’existe pas." + +#: wp-admin/includes/plugin.php:952 +msgid "Invalid plugin path." +msgstr "Chemin d’extension non valide" + +#: wp-admin/includes/plugin.php:897 +msgid "Could not fully remove the plugin(s) %s." +msgstr "Impossible de supprimer complètement la ou les extensions %s." + +#: wp-admin/includes/plugin.php:758 +msgid "One of the plugins is invalid." +msgstr "L’une des extensions n’est pas valide." + +#: wp-admin/includes/plugin.php:623 +msgid "The plugin generated unexpected output." +msgstr "Cette extension a produit un résultat inattendu." + +#: wp-admin/includes/plugin.php:431 +msgid "Custom site suspended message." +msgstr "Message personnalisé de site suspendu." + +#: wp-admin/includes/plugin.php:430 +msgid "Custom site inactive message." +msgstr "Message personnalisé de site inactif." + +#: wp-admin/includes/plugin.php:429 +msgid "Custom site deleted message." +msgstr "Message personnalisé de site supprimé." + +#: wp-admin/includes/plugin.php:428 +msgid "Executed before Multisite is loaded." +msgstr "Exécuté avant que la fonctionnalité multisites ne soit chargée." + +#: wp-admin/includes/plugin.php:424 +msgid "External object cache." +msgstr "Cache d’objet externe." + +#: wp-admin/includes/plugin.php:423 +msgid "Custom maintenance message." +msgstr "Message personnalisé pour la maintenance." + +#: wp-admin/includes/plugin.php:422 +msgid "Custom install script." +msgstr "Script d’installation personnalisée." + +#: wp-admin/includes/plugin.php:421 +msgid "Custom database error message." +msgstr "Message personnalisé pour l’erreur de base de données." + +#: wp-admin/includes/plugin.php:420 +msgid "Custom database class." +msgstr "Classe personnalisée de connexion à la base de données." + +#: wp-admin/includes/plugin.php:419 +msgid "Advanced caching plugin." +msgstr "Extension de cache avancée." + +#: wp-admin/includes/plugin.php:179 +msgid "By %s." +msgstr "par %s" + +#. translators: 1: Site Wide Only: true, 2: Network: true +#: wp-admin/includes/plugin.php:89 +msgid "The %1$s plugin header is deprecated. Use %2$s instead." +msgstr "L’en-tête d’extensions %1$s est obsolète. Utilisez plutôt %2$s." + +#: wp-admin/includes/plugin-install.php:705 +msgid "Latest Version Installed" +msgstr "Dernière version installée" + +#. translators: %s: Plugin version +#: wp-admin/includes/plugin-install.php:702 +msgid "Newer Version (%s) Installed" +msgstr "Une version plus récente (%s) est installée" + +#: wp-admin/includes/plugin-install.php:697 +msgid "Install Update Now" +msgstr "Installer la mise à jour maintenant" + +#: wp-admin/includes/plugin-install.php:668 +msgid "Warning: This plugin has not been marked as compatible with your version of WordPress." +msgstr "Attention : cette extension n’a pas été marquée comme étant compatible avec votre version de WordPress" + +#: wp-admin/includes/plugin-install.php:666 +msgid "Warning: This plugin has not been tested with your current version of WordPress." +msgstr "Attention : cette extension n’a pas été testée avec votre version de WordPress." + +#: wp-admin/includes/plugin-install.php:637 +msgid "Contributors" +msgstr "Contributeurs" + +#: wp-admin/includes/plugin-install.php:627 +msgid "%d star" +msgid_plural "%d stars" +msgstr[0] "%d étoile" +msgstr[1] "%d étoiles" + +#. translators: 1: number of stars (used to determine singular/plural), 2: +#. number of reviews +#: wp-admin/includes/plugin-install.php:620 +msgid "Reviews with %1$d star: %2$s. Opens in a new window." +msgid_plural "Reviews with %1$d stars: %2$s. Opens in a new window." +msgstr[0] "Avis avec %1$d étoile : %2$s. S’ouvre dans une nouvelle fenêtre." +msgstr[1] "Avis avec %1$d étoiles : %2$s. S’ouvre dans une nouvelle fenêtre." + +#: wp-admin/includes/plugin-install.php:614 +msgid "Read all reviews on WordPress.org or write your own!" +msgstr "Lisez tous les avis sur WordPress.org ou écrivez le vôtre !" + +#: wp-admin/includes/plugin-install.php:613 +msgid "Reviews" +msgstr "Avis" + +#: wp-admin/includes/plugin-install.php:609 +msgid "(based on %s rating)" +msgid_plural "(based on %s ratings)" +msgstr[0] "(basée sur %s vote)" +msgstr[1] "(basée sur %s votes)" + +#: wp-admin/includes/plugin-install.php:607 +msgid "Average Rating" +msgstr "Moyenne des notes" + +#: wp-admin/includes/plugin-install.php:603 +#: wp-admin/includes/plugin-install.php:657 +msgid "Donate to this plugin »" +msgstr "Faites à un don à cette extension »" + +#: wp-admin/includes/plugin-install.php:601 +msgid "Plugin Homepage »" +msgstr "Site Web de l’extension »" + +#: wp-admin/includes/plugin-install.php:599 +msgid "WordPress.org Plugin Page »" +msgstr "Page WordPress.org de l’extension »" + +#: wp-admin/includes/plugin-install.php:589 +msgid "Active Installs:" +msgstr "Installations actives :" + +#: wp-admin/includes/plugin-install.php:587 +msgid "Compatible up to:" +msgstr "Compatible jusqu’à la version : " + +#. translators: %s: WordPress version +#: wp-admin/includes/plugin-install.php:583 +msgid "%s or higher" +msgstr "%s ou plus" + +#: wp-admin/includes/plugin-install.php:580 +msgid "Requires WordPress Version:" +msgstr "Nécessite WordPress en version :" + +#: wp-admin/includes/plugin-install.php:517 wp-admin/update.php:123 +msgid "Plugin Install" +msgstr "Installation d’extensions" + +#: wp-admin/includes/plugin-install.php:495 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Autres notes" + +#: wp-admin/includes/plugin-install.php:494 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Avis" + +#: wp-admin/includes/plugin-install.php:493 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Liste des modifications" + +#: wp-admin/includes/plugin-install.php:492 +msgctxt "Plugin installer section title" +msgid "Screenshots" +msgstr "Captures d’écrans" + +#: wp-admin/includes/plugin-install.php:491 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: wp-admin/includes/plugin-install.php:490 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: wp-admin/includes/plugin-install.php:489 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Description" + +#: wp-admin/includes/plugin-install.php:355 +msgid "You are using a development version of WordPress. These feature plugins are also under development. Learn more." +msgstr "Vous utilisez une version en développement de WordPress. Ces fonctionnalités d’extensions sont aussi en développement. En savoir plus." + +#: wp-admin/includes/plugin-install.php:351 +msgid "These suggestions are based on the plugins you and other users have installed." +msgstr "Ces suggestions sont basées sur les extensions que vous et d’autres utilisateurs ont installées." + +#: wp-admin/includes/plugin-install.php:327 wp-admin/theme-install.php:181 +msgid "Get Favorites" +msgstr "Récupérer les extensions favorites" + +#: wp-admin/includes/plugin-install.php:325 wp-admin/theme-install.php:178 +msgid "Your WordPress.org username:" +msgstr "Votre identifiant WordPress.org :" + +#: wp-admin/includes/plugin-install.php:321 +msgid "If you have marked plugins as favorites on WordPress.org, you can browse them here." +msgstr "Si vous avez mis des extensions en favoris sur WordPress.org, vous pouvez les voir ici." + +#: wp-admin/includes/plugin-install.php:304 +msgid "Plugin zip file" +msgstr "Archive Zip de l’extension" + +#: wp-admin/includes/plugin-install.php:301 +msgid "If you have a plugin in a .zip format, you may install it by uploading it here." +msgstr "Si vous avez une extension au format .zip, vous pouvez l’installer en la mettant en ligne ici." + +#: wp-admin/includes/plugin-install.php:288 +msgid "Search plugins..." +msgstr "Rechercher des extensions..." + +#: wp-admin/includes/plugin-install.php:287 +#: wp-admin/includes/plugin-install.php:290 +msgid "Search Plugins" +msgstr "Chercher parmi les extensions" + +#: wp-admin/includes/plugin-install.php:285 +msgctxt "Plugin Installer" +msgid "Tag" +msgstr "Étiquette" + +#: wp-admin/includes/plugin-install.php:283 +#: wp-admin/includes/theme-install.php:67 +msgid "Keyword" +msgstr "Mot-clé" + +#: wp-admin/includes/plugin-install.php:281 +msgid "Search plugins by:" +msgstr "Recherche d’extensions par :" + +#: wp-admin/includes/plugin-install.php:263 +msgid "%s plugins" +msgstr "%s extensions" + +#: wp-admin/includes/plugin-install.php:263 +msgid "%s plugin" +msgstr "%s extension" + +#: wp-admin/includes/plugin-install.php:241 +msgid "You may also browse based on the most popular tags in the Plugin Directory:" +msgstr "Vous pouvez également naviguer en fonction des étiquettes les plus populaires sur WordPress.org :" + +#: wp-admin/includes/plugin-install.php:240 +msgid "Popular tags" +msgstr "Étiquettes populaires" + +#: wp-admin/includes/plugin-install.php:235 +msgid "Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the WordPress Plugin Directory or upload a plugin in .zip format by clicking the button at the top of this page." +msgstr "Les extensions étendent les fonctionnalités de WordPress, et en ajoutent de nouvelles. Vous pouvez installer des extensions automatiquement en provenance du répertoire des extensions WordPress, ou mettre en ligne une extension au format .zip en cliquant sur le bouton en haut de cette page." + +#: wp-admin/includes/options.php:140 +msgid "The character encoding of your site (UTF-8 is recommended)" +msgstr "Le codage de caractères utilisé par votre site (UTF-8 est recommandé)" + +#. translators: %s: nav menu title +#: wp-admin/includes/nav-menu.php:1084 +msgid "%s has been updated." +msgstr "%s a été mis à jour." + +#: wp-admin/includes/nav-menu.php:978 +msgid "Link Target" +msgstr "Cible du lien" + +#: wp-admin/includes/nav-menu.php:976 +msgid "Show advanced menu properties" +msgstr "Afficher les propriétés avancées du menu" + +#: wp-admin/includes/nav-menu.php:954 +msgid "There are some invalid menu items. Please check or delete them." +msgstr "Certains éléments du menu ne sont pas valides. Veuillez les vérifier ou les effacer." + +#: wp-admin/includes/nav-menu.php:950 +msgid "Click Save Menu to make pending menu items public." +msgstr "Cliquez sur « Enregistrer le menu » pour rendre publics les éléments en attente." + +#. translators: %s: walker class name +#: wp-admin/includes/nav-menu.php:935 +msgid "The Walker class named %s does not exist." +msgstr "La classe Walker nommée %s n’existe pas." + +#: wp-admin/includes/nav-menu.php:914 +msgid "Add menu items from the column on the left." +msgstr "Ajouter des éléments de menu depuis la colonne de gauche." + +#: wp-admin/includes/nav-menu.php:403 wp-admin/includes/nav-menu.php:688 +msgid "View All" +msgstr "Afficher tout" + +#: wp-admin/includes/nav-menu.php:398 +msgid "Most Recent" +msgstr "Les plus récentes" + +#: wp-admin/includes/nav-menu.php:363 wp-admin/includes/nav-menu.php:648 +msgid "Page" +msgstr "Page" + +#: wp-admin/includes/nav-menu.php:345 wp-admin/includes/nav-menu.php:630 +msgid "No items." +msgstr "Aucune entrée." + +#: wp-admin/includes/ms.php:1084 +msgid "Info" +msgstr "Info" + +#: wp-admin/includes/ms.php:1020 wp-admin/users.php:295 +msgid "Confirm Deletion" +msgstr "Confirmer cette action" + +#: wp-admin/includes/ms.php:1017 +msgid "Once you hit “Confirm Deletion”, these users will be permanently removed." +msgstr "Dès que vous aurez cliqué sur « Confirmer cette action », ces utilisateurs seront définitivement supprimés." + +#: wp-admin/includes/ms.php:1015 +msgid "Once you hit “Confirm Deletion”, the user will be permanently removed." +msgstr "Dès que vous aurez cliqué sur « Confirmer cette action », l’utilisateur sera définitivement supprimé." + +#: wp-admin/includes/ms.php:1001 +msgid "User has no sites or content and will be deleted." +msgstr "L’utilisateur n’a pas de site ou de contenu, et sera supprimé." + +#: wp-admin/includes/ms.php:992 wp-admin/users.php:275 +msgid "Attribute all content to:" +msgstr "Attribuer tout le contenu à :" + +#: wp-admin/includes/ms.php:990 wp-admin/users.php:273 +msgid "Delete all content." +msgstr "Supprimer tout le contenu." + +#: wp-admin/includes/ms.php:988 +msgid "Site: %s" +msgstr "Site : %s" + +#: wp-admin/includes/ms.php:973 +msgid "Select a user" +msgstr "Sélectionnez un utilisateur" + +#. translators: user login +#: wp-admin/includes/ms.php:965 +msgid "What should be done with content owned by %s?" +msgstr "Que faire du contenu ayant %s pour propriétaire ?" + +#: wp-admin/includes/ms.php:952 +msgid "Warning! User cannot be deleted. The user %s is a network administrator." +msgstr "Attention ! L’utilisateur ne peut pas être supprimé. L’utilsateur %s est administrateur du réseau." + +#: wp-admin/includes/ms.php:948 +msgid "Warning! User %s cannot be deleted." +msgstr "Attention ! L’utilisateur %s ne peut pas être supprimé." + +#: wp-admin/includes/ms.php:933 +msgid "You have chosen to delete the following users from all networks and sites." +msgstr "Vous avez choisi de supprimer les utilisateurs suivants de tous les réseaux et sites. " + +#: wp-admin/includes/ms.php:931 +msgid "You have chosen to delete the user from all networks and sites." +msgstr "Vous avez choisi de supprimer l’utilisateur de tous les réseaux et sites." + +#. translators: My sites label +#: wp-admin/includes/ms.php:836 +msgid "Primary Site" +msgstr "Site principal" + +#: wp-admin/includes/ms.php:785 +msgid "Thank you for Updating! Please visit the Upgrade Network page to update all your sites." +msgstr "Merci d’avoir fait cette mise à jour ! Rendez-vous sur la page de mise à jour du réseau afin de mettre à jour tous vos sites." + +#: wp-admin/includes/ms.php:744 +msgid "English" +msgstr "Anglais" + +#: wp-admin/includes/ms.php:734 +msgid "British English" +msgstr "Anglais (UK)" + +#: wp-admin/includes/ms.php:730 +msgid "American English" +msgstr "Anglais (US)" + +#: wp-admin/includes/ms.php:689 +msgid "View Site" +msgstr "Afficher le site" + +#: wp-admin/includes/ms.php:688 +msgid "Visit Dashboard" +msgstr "Se rendre sur le Tableau de bord" + +#: wp-admin/includes/ms.php:682 +msgid "Your Sites" +msgstr "Vos sites" + +#: wp-admin/includes/ms.php:680 +msgid "If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way." +msgstr "Si vous êtes arrivé sur cet écran par accident, et que vous vouliez en fait vous rendre sur l’un de vos propres sites, voici quelques raccourcis pour vous aider à trouver votre chemin." + +#: wp-admin/includes/ms.php:677 wp-admin/includes/ms.php:679 +msgid "You attempted to access the \"%1$s\" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the \"%1$s\" dashboard, please contact your network administrator." +msgstr "Vous avez tenté d’accéder au tableau de bord de « %1$s ». Cependant, vous ne disposez pas pour le moment des droits nécessaires sur ce site. Si vous pensez que vous devriez pouvoir accéder au tableau de bord de « %1$s », contactez l’administrateur du réseau." + +#: wp-admin/includes/ms.php:522 +msgid "MB (Leave blank for network default)" +msgstr "Mo (Laisser vide pour utiliser la valeur par défaut du réseau)" + +#: wp-admin/includes/ms.php:522 +msgid "Size in megabytes" +msgstr "Taille en mégaoctets" + +#: wp-admin/includes/ms.php:519 +msgid "Site Upload Space Quota" +msgstr "Quota d’espace de fichiers" + +#. translators: Storage space that's been used. 1: Percentage of used space, 2: +#. Total space allowed in megabytes or gigabytes +#: wp-admin/includes/ms.php:481 +msgid "Used: %1$s%% of %2$s" +msgstr "Taux d’utilisation : %1$s%% sur %2$s" + +#. translators: Megabytes +#: wp-admin/includes/ms.php:476 +msgid "MB" +msgstr "Mo" + +#. translators: Gigabytes +#: wp-admin/includes/ms.php:472 +msgid "GB" +msgstr "Go" + +#: wp-admin/includes/ms.php:451 +msgid "Sorry, you have used your space allocation. Please delete some files to upload more files." +msgstr "Désolé, vous avez utilisé l’intégralité de votre quota aloué. Veuillez supprimer quelques fichiers avant d’en envoyer d’autres." + +#. translators: %s: New email address +#: wp-admin/includes/ms.php:427 +msgid "Your email address has not been updated yet. Please check your inbox at %s for a confirmation email." +msgstr "Votre adresse e-mail n’a pas encore été mise à jour. Veuillez vérifier votre boite de réception %s pour consulter l’e-mail de confirmation." + +#: wp-admin/includes/ms.php:406 +msgid "[%s] New Email Address" +msgstr "[%s] Nouvelle adresse e-mail" + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-admin/includes/ms.php:367 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently requested to have the email address on your account changed.\n" +"\n" +"If this is correct, please click on the following link to change it:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Cher/chère ###USERNAME###,\n" +"\n" +"Vous avez récemment demandé à modifier l’adresse de messagerie de l’administration de votre compte.\n" +"\n" +"Si c’est bien le cas, veuillez cliquer sur le lien suivant pour changer d’adresse de messagerie :\n" +"###ADMIN_URL###\n" +"\n" +"Vous pouvez ignorer ce message et le supprimer si vous ne souhaitez pas lancer cette action.\n" +"\n" +"Ce message a été envoyé à ###EMAIL###\n" +"\n" +"Cordialement,\n" +"\n" +"L’équipe de ###SITENAME###\n" +"###SITEURL###" + +#: wp-admin/includes/ms.php:352 +msgid "ERROR: The email address is already used." +msgstr "ERREUR : l’adresse de messagerie est déjà utilisée." + +#: wp-admin/includes/ms.php:321 +msgid "[%s] New Admin Email Address" +msgstr "[%s] Nouvelle adresse e-mail d’administration" + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-admin/includes/ms.php:280 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently requested to have the administration email address on\n" +"your site changed.\n" +"\n" +"If this is correct, please click on the following link to change it:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Cher/chère ###USERNAME###,\n" +"\n" +"Vous avez récemment demandé à modifier l’adresse de messagerie de l’administration de votre compte.\n" +"\n" +"Si c’est bien le cas, veuillez cliquer sur le lien suivant pour changer d’adresse de messagerie :\n" +"###ADMIN_URL###\n" +"\n" +"Vous pouvez ignorer ce message et le supprimer si vous ne souhaitez pas lancer cette action.\n" +"\n" +"Ce message a été envoyé à ###EMAIL###\n" +"\n" +"Cordialement,\n" +"\n" +"L’équipe de ###SITENAME###\n" +"###SITEURL###" + +#: wp-admin/includes/ms.php:42 +msgid "You have used your space quota. Please delete files before uploading." +msgstr "Vous avez utilisé l’intégralité de votre quota. Veuillez supprimer quelques fichiers avant l’envoi." + +#. translators: 1: Maximum allowed file size in kilobytes +#: wp-admin/includes/ms.php:38 +msgid "This file is too big. Files must be less than %1$s KB in size." +msgstr "Ce fichier est trop gros. La taille des fichiers doit être inférieure %1$s Ko." + +#. translators: 1: Required disk space in kilobytes +#: wp-admin/includes/ms.php:33 +msgid "Not enough space to upload. %1$s KB needed." +msgstr "Pas assez d’espace pour l’envoi. %1$s Ko sont nécessaires." + +#: wp-admin/includes/ms-deprecated.php:33 +msgid "Sorry, you must delete files before you can upload any more." +msgstr "Désolé, vous devez effacer quelques fichiers avant de pouvoir en envoyer d’autres." + +#. translators: %s: date and time +#: wp-admin/includes/misc.php:887 +msgid "Draft saved at %s." +msgstr "Brouillon enregistré à %s." + +#. translators: draft saved date format, see https://secure.php.net/date +#: wp-admin/includes/misc.php:885 +msgid "g:i:s a" +msgstr "G \\h i \\m\\i\\n s \\s" + +#: wp-admin/includes/misc.php:882 wp-admin/includes/post.php:1785 +#: wp-admin/widgets.php:342 +msgid "Error while saving." +msgstr "Erreur lors de la sauvegarde." + +#: wp-admin/includes/misc.php:788 +msgid "%s has taken over and is currently editing." +msgstr "%s a pris la main et modifie actuellement ce contenu." + +#: wp-admin/includes/misc.php:659 wp-admin/user-edit.php:240 +msgid "Admin Color Scheme" +msgstr "Couleurs de l’interface d’administration" + +#: wp-admin/includes/meta-boxes.php:1193 +msgid "(Leave at 0 for no rating.)" +msgstr "(Laissez à 0 pour ne pas donner de note.)" + +#: wp-admin/includes/meta-boxes.php:1180 +msgid "Notes" +msgstr "Commentaires" + +#: wp-admin/includes/meta-boxes.php:1176 +msgid "RSS Address" +msgstr "Adresse du flux RSS" + +#: wp-admin/includes/meta-boxes.php:1172 +msgid "Image Address" +msgstr "Adresse de l’image" + +#: wp-admin/includes/meta-boxes.php:1157 +msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." +msgstr "Si le lien pointe vers une personne, vous pouvez préciser la relation que vous entretenez avec elle via le formulaire ci-dessus. Si vous souhaitez en apprendre plus sur ce système, consultez le site de XFN." + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1151 +msgid "sweetheart" +msgstr "être aimé" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1148 +msgid "date" +msgstr "petit(e) ami(e)" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1145 +msgid "crush" +msgstr "coup de foudre" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1142 +msgid "muse" +msgstr "muse" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1139 wp-admin/includes/meta-boxes.php:1140 +msgid "romantic" +msgstr "romantique" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1131 +msgid "spouse" +msgstr "conjoint" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1128 +msgid "sibling" +msgstr "frère/sœur" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1125 +msgid "parent" +msgstr "parent" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1122 +msgid "kin" +msgstr "apparenté" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1119 +msgid "child" +msgstr "enfant" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1116 wp-admin/includes/meta-boxes.php:1117 +msgid "family" +msgstr "famille" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1108 +msgid "neighbor" +msgstr "voisin" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1105 +msgid "co-resident" +msgstr "colocataire" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1102 wp-admin/includes/meta-boxes.php:1103 +msgid "geographical" +msgstr "géographique" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1097 +msgid "colleague" +msgstr "confrère" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1094 +msgid "co-worker" +msgstr "collègue de travail" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1091 wp-admin/includes/meta-boxes.php:1092 +msgid "professional" +msgstr "professionnel" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1086 +msgid "met" +msgstr "rencontré(e)" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1083 wp-admin/includes/meta-boxes.php:1084 +msgid "physical" +msgstr "physique" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1078 wp-admin/includes/meta-boxes.php:1111 +#: wp-admin/includes/meta-boxes.php:1134 +msgid "none" +msgstr "aucune" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1075 +msgid "friend" +msgstr "ami(e)" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1072 +msgid "acquaintance" +msgstr "connaissance" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1069 +msgid "contact" +msgstr "contact" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1066 wp-admin/includes/meta-boxes.php:1067 +msgid "friendship" +msgstr "amitié" + +#: wp-admin/includes/meta-boxes.php:1062 +msgid "another web address of mine" +msgstr "une autre de mes adresses Web" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1058 wp-admin/includes/meta-boxes.php:1059 +msgid "identity" +msgstr "identité" + +#. translators: xfn: http://gmpg.org/xfn/ +#: wp-admin/includes/meta-boxes.php:1054 +msgid "rel:" +msgstr "rel :" + +#: wp-admin/includes/meta-boxes.php:1007 +msgid "Choose the target frame for your link." +msgstr "Choisissez le cadre dans lequel le lien doit s’ouvrir." + +#: wp-admin/includes/meta-boxes.php:1005 +msgid "_none — same window or tab." +msgstr "_none — même fenêtre ou onglet." + +#: wp-admin/includes/meta-boxes.php:1002 +msgid "_top — current window or tab, with no frames." +msgstr "_top — fenêtre ou onglet en cours, sans cadre incorporé (frame)." + +#: wp-admin/includes/meta-boxes.php:999 +msgid "_blank — new window or tab." +msgstr "_blank — nouvelle fenêtre ou onglet." + +#: wp-admin/includes/meta-boxes.php:978 +msgid "New category name" +msgstr "Nom de la nouvelle catégorie" + +#: wp-admin/includes/meta-boxes.php:975 wp-admin/includes/meta-boxes.php:977 +msgid "+ Add New Category" +msgstr "+ Ajouter une nouvelle catégorie" + +#: wp-admin/includes/meta-boxes.php:902 +msgid "Keep this link private" +msgstr "Ce lien est privé" + +#: wp-admin/includes/meta-boxes.php:894 +msgid "Visit Link" +msgstr "Visiter le lien" + +#: wp-admin/includes/meta-boxes.php:866 +msgid "Need help? Use the Help tab above the screen title." +msgstr "Besoin d’aide ? Utilisez l’onglet Aide au dessus du titre de l’écran." + +#: wp-admin/includes/meta-boxes.php:805 +msgid "(no parent)" +msgstr "(pas de parent)" + +#: wp-admin/includes/meta-boxes.php:733 +msgid "Show comments" +msgstr "Affiche les commentaires" + +#: wp-admin/includes/meta-boxes.php:723 +msgid "No comments yet." +msgstr "Aucun commentaire pour l’instant." + +#: wp-admin/includes/meta-boxes.php:715 +msgid "Add comment" +msgstr "Ajouter un commentaire" + +#. translators: %s: Codex URL +#: wp-admin/includes/meta-boxes.php:675 +msgid "Allow trackbacks and pingbacks on this page." +msgstr "Autoriser les rétroliens et pings sur cette page." + +#: wp-admin/includes/meta-boxes.php:671 +msgid "Allow comments." +msgstr "Autoriser les commentaires." + +#: wp-admin/includes/meta-boxes.php:654 +msgid "https://codex.wordpress.org/Using_Custom_Fields" +msgstr "https://codex.wordpress.org/Using_Custom_Fields" + +#. translators: %s: Codex URL +#: wp-admin/includes/meta-boxes.php:653 +msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." +msgstr "Les champs personnalisés peuvent être utilisés pour ajouter des métadonnées supplémentaires à un article, que vous pouvez ensuite utiliser dans votre thème." + +#: wp-admin/includes/meta-boxes.php:622 wp-admin/includes/meta-boxes.php:676 +msgid "https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" +msgstr "https://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments" + +#. translators: %s: Codex URL +#: wp-admin/includes/meta-boxes.php:621 +msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary." +msgstr "Un rétrolien est une manière de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Si vous faites un lien vers des sites WordPress, ils seront notifiés automatiquement à l’aide des pings (en), sans que vous n’ayez rien à faire." + +#: wp-admin/includes/meta-boxes.php:617 +msgid "Separate multiple URLs with spaces" +msgstr "Séparez les adresses web par des espaces" + +#: wp-admin/includes/meta-boxes.php:614 +msgid "Send trackbacks to:" +msgstr "Envoyer un rétrolien vers :" + +#: wp-admin/includes/meta-boxes.php:604 +msgid "Already pinged:" +msgstr "Déjà notifié(s) par ping :" + +#: wp-admin/includes/meta-boxes.php:587 +msgid "https://codex.wordpress.org/Excerpt" +msgstr "https://codex.wordpress.org/Excerpt" + +#. translators: %s: Codex URL +#: wp-admin/includes/meta-boxes.php:586 +msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." +msgstr "Les extraits sont des résumés facultatifs de vos articles, écrits à la main. Il se peut que votre thème s’en serve. En savoir plus." + +#: wp-admin/includes/meta-boxes.php:493 wp-admin/includes/meta-boxes.php:954 +#: wp-admin/includes/nav-menu.php:683 +msgid "Most Used" +msgstr "Les plus utilisées" + +#. translators: Attachment information. 1: Date the attachment was uploaded +#: wp-admin/includes/meta-boxes.php:310 +msgid "Uploaded on: %1$s" +msgstr "Mise en ligne le : %1$s" + +#: wp-admin/includes/meta-boxes.php:204 +msgid "Browse revisions" +msgstr "Parcourir les révisions" + +#: wp-admin/includes/meta-boxes.php:204 +msgctxt "revisions" +msgid "Browse" +msgstr "Parcourir" + +#. translators: Post revisions heading. 1: The number of available revisions +#: wp-admin/includes/meta-boxes.php:202 +msgid "Revisions: %s" +msgstr "Révisions : %s" + +#. translators: Post date information. 1: Date on which the post is to be +#. published +#: wp-admin/includes/meta-boxes.php:190 +msgid "Publish on: %1$s" +msgstr "Publier le : %1$s" + +#. translators: Post date information. 1: Date on which the post is to be +#. published +#: wp-admin/includes/meta-boxes.php:187 +msgid "Schedule for: %1$s" +msgstr "Planifier pour : %1$s" + +#: wp-admin/includes/meta-boxes.php:184 wp-admin/includes/meta-boxes.php:194 +msgid "Publish immediately" +msgstr "Publier tout de suite" + +#. translators: Post date information. 1: Date on which the post was published +#: wp-admin/includes/meta-boxes.php:182 +msgid "Published on: %1$s" +msgstr "Publié le : %1$s" + +#. translators: Post date information. 1: Date on which the post is currently +#. scheduled to be published +#: wp-admin/includes/meta-boxes.php:179 +msgid "Scheduled for: %1$s" +msgstr "Planifié pour : %1$s" + +#: wp-admin/includes/meta-boxes.php:158 +msgid "Stick this post to the front page" +msgstr "Mettre cet article en avant sur la page d’accueil" + +#: wp-admin/includes/meta-boxes.php:148 +msgid "Edit visibility" +msgstr "Modifier la visibilité" + +#: wp-admin/includes/meta-boxes.php:137 wp-admin/includes/meta-boxes.php:160 +#: wp-admin/includes/template.php:1701 +msgid "Password protected" +msgstr "Protégé par mot de passe" + +#: wp-admin/includes/meta-boxes.php:129 +msgid "Visibility:" +msgstr "Visibilité :" + +#: wp-admin/includes/meta-boxes.php:105 +msgid "Set status" +msgstr "État" + +#: wp-admin/includes/meta-boxes.php:101 +msgid "Edit status" +msgstr "Modifier l’état" + +#: wp-admin/includes/meta-boxes.php:53 +msgid "Preview Changes" +msgstr "Prévisualiser les modifications" + +#: wp-admin/includes/menu.php:342 wp-admin/my-sites.php:16 +msgid "Sorry, you are not allowed to access this page." +msgstr "Désolé, vous n’avez pas l’autorisation d’accéder à cette page." + +#: wp-admin/includes/media.php:2948 +msgid "Audio Codec:" +msgstr "Codex audio :" + +#: wp-admin/includes/media.php:2947 +msgid "Audio Format:" +msgstr "Format audio :" + +#: wp-admin/includes/media.php:2859 +msgid "File URL:" +msgstr "Adresse web du fichier :" + +#: wp-admin/includes/media.php:2827 +msgid "Displayed on attachment pages." +msgstr "Affiché sur les pages des fichiers joints." + +#: wp-admin/includes/media.php:2705 +msgid "Sorry, you have used all of your storage quota of %s MB." +msgstr "Désolé, vous avez utilisé l’intégralité de votre quota de stockage (%s Mo)." + +#. translators: %1$s is link start tag, %2$s is link end tag, %3$d is width, +#. %4$d is height +#: wp-admin/includes/media.php:2693 +msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." +msgstr "Redimensionner les images pour correspondre à la taille large définie dans les %1$sréglages des médias%2$s (%3$d × %4$d)." + +#: wp-admin/includes/media.php:2663 +msgid "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." +msgstr "Vous utilisez l’outil de mise en ligne du navigateur. Le nouvel outil de mise en ligne de WordPress inclus la possibilité de télécharger plusieurs fichiers à la fois par glisser/déposer. Passer au nouvel outil de mise en ligne." + +#: wp-admin/includes/media.php:2650 +msgid "You are using the multi-file uploader. Problems? Try the browser uploader instead." +msgstr "Vous utilisez l’outil de mise en ligne multi-fichiers. Si vous rencontrez des problèmes, essayez la méthode du navigateur à la place." + +#: wp-admin/includes/media.php:2613 +msgid "Link to image" +msgstr "Lier à l’image" + +#: wp-admin/includes/media.php:2608 +msgid "Link Image To:" +msgstr "Lier l’image à :" + +#: wp-admin/includes/media.php:2582 +msgid "Link text, e.g. “Ransom Demands (PDF)”" +msgstr "Texte du lien, par exemple « Théorie sur le chaos (PDF) »" + +#: wp-admin/includes/media.php:2564 +msgid "Audio, Video, or Other File" +msgstr "Audio, vidéo ou un autre format" + +#: wp-admin/includes/media.php:2543 +msgid "Image Caption" +msgstr "Légende de l’image" + +#: wp-admin/includes/media.php:2492 +msgid "Filter »" +msgstr "Filtrer »" + +#: wp-admin/includes/media.php:2451 wp-admin/includes/nav-menu.php:362 +#: wp-admin/includes/nav-menu.php:647 +msgid "»" +msgstr "»" + +#: wp-admin/includes/media.php:2450 wp-admin/includes/nav-menu.php:361 +#: wp-admin/includes/nav-menu.php:646 +msgid "«" +msgstr "«" + +#: wp-admin/includes/media.php:2418 +msgid "All Types" +msgstr "Tous les types" + +#: wp-admin/includes/media.php:2334 +msgid "Update gallery settings" +msgstr "Mettre à jour les réglages de galerie" + +#: wp-admin/includes/media.php:2313 +msgid "Gallery columns:" +msgstr "Colonnes de galerie :" + +#: wp-admin/includes/media.php:2298 +msgid "Order:" +msgstr "Ordre :" + +#: wp-admin/includes/media.php:2290 +msgid "Random" +msgstr "Aléatoire" + +#: wp-admin/includes/media.php:2289 +msgid "Date/Time" +msgstr "Horodatage" + +#: wp-admin/includes/media.php:2287 +msgid "Menu order" +msgstr "Ordre du menu" + +#: wp-admin/includes/media.php:2282 +msgid "Order images by:" +msgstr "Ranger les images par :" + +#: wp-admin/includes/media.php:2272 +msgid "Image File" +msgstr "Fichier image" + +#: wp-admin/includes/media.php:2267 +msgid "Link thumbnails to:" +msgstr "Lier les miniatures à :" + +#: wp-admin/includes/media.php:2246 wp-admin/users.php:60 +msgid "Actions" +msgstr "Actions" + +#: wp-admin/includes/media.php:2237 +msgctxt "verb" +msgid "Clear" +msgstr "Effacer" + +#: wp-admin/includes/media.php:2236 wp-admin/includes/media.php:2306 +msgid "Descending" +msgstr "Décroissant" + +#: wp-admin/includes/media.php:2235 wp-admin/includes/media.php:2303 +msgid "Ascending" +msgstr "Croissant" + +#: wp-admin/includes/media.php:2234 +msgid "Sort Order:" +msgstr "Ordre de tri :" + +#: wp-admin/includes/media.php:2230 +msgid "All Tabs:" +msgstr "Tous les onglets :" + +#: wp-admin/includes/media.php:2080 +msgid "Insert media from another website" +msgstr "Insérer un média depuis un autre site" + +#: wp-admin/includes/media.php:2044 wp-admin/includes/media.php:2255 +#: wp-admin/includes/media.php:2522 +msgid "Save all changes" +msgstr "Enregistrer toutes les modifications" + +#: wp-admin/includes/media.php:2017 +msgid "Add media files from your computer" +msgstr "Ajouter un fichier média depuis votre ordinateur" + +#: wp-admin/includes/media.php:1926 +msgid "Drop files here" +msgstr "Déposez vos fichiers ici" + +#: wp-admin/includes/media.php:1505 wp-admin/upgrade.php:77 +#: wp-admin/upgrade.php:111 +msgid "Continue" +msgstr "Continuer" + +#. translators: %s: file name +#: wp-admin/includes/media.php:1504 +msgid "You are about to delete %s." +msgstr "Vous êtes sur le point de supprimer %s." + +#: wp-admin/includes/media.php:1493 wp-admin/includes/media.php:2619 +#: wp-admin/includes/media.php:2625 +msgid "Insert into Post" +msgstr "Insérer dans l’article" + +#: wp-admin/includes/media.php:1472 +msgid "Upload date:" +msgstr "Date de mise en ligne :" + +#: wp-admin/includes/media.php:1282 wp-admin/includes/media.php:2589 +msgid "Alt text for the image, e.g. “The Mona Lisa”" +msgstr "Texte alternatif de l’image, par ex. : « La Joconde »" + +#: wp-admin/includes/media.php:1241 +msgid "Location of the uploaded file." +msgstr "Emplacement du fichier envoyé." + +#: wp-admin/includes/media.php:1230 wp-admin/includes/media.php:2614 +msgid "Enter a link URL or click above for presets." +msgstr "Saisissez une adresse de lien ou cliquez ci-dessus pour les liens prédéfinis." + +#: wp-admin/includes/media.php:1227 +msgid "Link URL" +msgstr "Adresse du lien" + +#: wp-admin/includes/media.php:1159 +msgid "Empty Title filled from filename." +msgstr "Titre absent, il sera rempli à partir du nom du fichier." + +#: wp-admin/includes/media.php:1081 +msgid "Attachment Post URL" +msgstr "Adresse de l’article du fichier joint" + +#: wp-admin/includes/media.php:1080 wp-admin/includes/media.php:1237 +msgid "File URL" +msgstr "Adresse web du fichier" + +#: wp-admin/includes/media.php:868 +msgid "Invalid image URL" +msgstr "Adresse web non valide pour l’image" + +#: wp-admin/includes/media.php:463 wp-admin/includes/template.php:1591 +#: wp-admin/install.php:80 wp-admin/maint/repair.php:26 +#: wp-admin/setup-config.php:102 wp-admin/upgrade.php:71 +msgid "WordPress" +msgstr "WordPress" + +#: wp-admin/includes/media.php:463 +msgid "Uploads" +msgstr "Fichiers envoyés" + +#. translators: Audio file genre information. 1: Audio genre name +#: wp-admin/includes/media.php:353 +msgid "Genre: %s." +msgstr "Genre : %s" + +#. translators: Audio file track information. 1: Audio track number +#: wp-admin/includes/media.php:347 +msgid "Track %1$s." +msgstr "Piste %1$s." + +#. translators: Audio file track information. 1: Audio track number, 2: Total +#. audio tracks +#: wp-admin/includes/media.php:344 +msgid "Track %1$s of %2$s." +msgstr "Piste %1$s sur %2$s." + +#. translators: Audio file track information. 1: Year of audio track release +#: wp-admin/includes/media.php:337 +msgid "Released: %d." +msgstr "Date de sortie : %d." + +#. translators: 1: audio album title, 2: artist name +#: wp-admin/includes/media.php:324 +msgid "%1$s by %2$s." +msgstr "%1$s par %2$s." + +#. translators: 1: audio track title +#: wp-admin/includes/media.php:317 +msgid "\"%s\"." +msgstr "%s." + +#. translators: 1: audio track title, 2: artist name +#: wp-admin/includes/media.php:314 +msgid "\"%1$s\" by %2$s." +msgstr "%1$s par %2$s." + +#. translators: 1: audio track title, 2: album title +#: wp-admin/includes/media.php:311 +msgid "\"%1$s\" from %2$s." +msgstr "%1$s tiré de %2$s" + +#. translators: 1: audio track title, 2: album title, 3: artist name +#: wp-admin/includes/media.php:308 +msgid "\"%1$s\" from %2$s by %3$s." +msgstr "%1$s tiré de %2$s par %3$s." + +#: wp-admin/includes/media.php:62 +msgid "Gallery (%s)" +msgstr "Galerie (%s)" + +#: wp-admin/includes/media.php:20 +msgid "Gallery" +msgstr "Galerie" + +#: wp-admin/includes/media.php:19 +msgid "From URL" +msgstr "Depuis le Web" + +#: wp-admin/includes/media.php:18 +msgid "From Computer" +msgstr "Depuis votre ordinateur" + +#: wp-admin/includes/import.php:207 +msgid "Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file." +msgstr "Importer des articles, pages, commentaires, champs personnalisés, catégories et étiquettes depuis un fichier d’export WordPress." + +#: wp-admin/includes/import.php:201 +msgid "Import posts & media from Tumblr using their API." +msgstr "Importer des articles et des fichiers média depuis Tumblr par le biais de leur API." + +#: wp-admin/includes/import.php:200 +msgid "Tumblr" +msgstr "Tumblr" + +#: wp-admin/includes/import.php:195 +msgid "Import posts from an RSS feed." +msgstr "Importer des articles depuis un flux RSS." + +#: wp-admin/includes/import.php:189 +msgid "Import links in OPML format." +msgstr "Importer des liens au format OPML." + +#: wp-admin/includes/import.php:188 +msgid "Blogroll" +msgstr "Liens" + +#: wp-admin/includes/import.php:183 +msgid "Import posts and comments from a Movable Type or TypePad blog." +msgstr "Importer les articles et commentaires depuis un blog Movable Type ou TypePad." + +#: wp-admin/includes/import.php:182 +msgid "Movable Type and TypePad" +msgstr "Movable Type et TypePad" + +#: wp-admin/includes/import.php:177 +msgid "Import posts from LiveJournal using their API." +msgstr "Importer les articles depuis LiveJournal par le biais de leur API." + +#: wp-admin/includes/import.php:176 +msgid "LiveJournal" +msgstr "LiveJournal" + +#: wp-admin/includes/import.php:171 +msgid "Convert existing categories to tags or tags to categories, selectively." +msgstr "Convertir les catégories existantes en étiquettes, ou les étiquettes en catégories, de manière sélective." + +#: wp-admin/includes/import.php:170 wp-admin/tools.php:21 +#: wp-admin/tools.php:103 +msgid "Categories and Tags Converter" +msgstr "Convertisseur de catégories et étiquettes" + +#: wp-admin/includes/import.php:165 +msgid "Import posts, comments, and users from a Blogger blog." +msgstr "Importer des articles, commentaires et utilisateurs depuis un blog Blogger." + +#: wp-admin/includes/import.php:164 +msgid "Blogger" +msgstr "Blogger" + +#: wp-admin/includes/image-edit.php:908 +msgid "Image saved" +msgstr "Image enregistrée" + +#: wp-admin/includes/image-edit.php:794 +msgid "Unable to save the image." +msgstr "Échec lors de l’enregistrement de l’image." + +#: wp-admin/includes/image-edit.php:746 +msgid "Nothing to save, the image has not changed." +msgstr "Rien à enregistrer, l’image n’a pas été modifiée." + +#: wp-admin/includes/image-edit.php:738 +msgid "Error while saving the scaled image. Please reload the page and try again." +msgstr "Une erreur est survenue pendant la modification de l’échelle de l’image. Veuillez recharger la page pour faire une nouvelle tentative." + +#: wp-admin/includes/image-edit.php:715 +msgid "Unable to create new image." +msgstr "Échec lors de la création d’une nouvelle image." + +#: wp-admin/includes/image-edit.php:694 +msgid "Image restored successfully." +msgstr "L’image a bien été rétablie." + +#: wp-admin/includes/image-edit.php:692 +msgid "Image metadata is inconsistent." +msgstr "Les métadonnées de l’image ne sont pas cohérentes." + +#: wp-admin/includes/image-edit.php:687 +msgid "Cannot save image metadata." +msgstr "Impossible d’enregistrer les métadonnées de l’image." + +#: wp-admin/includes/image-edit.php:631 +msgid "Cannot load image metadata." +msgstr "Impossible de charger les métadonnées de l’image." + +#: wp-admin/includes/image-edit.php:259 wp-admin/includes/image-edit.php:324 +#: wp-admin/includes/image-edit.php:466 +msgid "$image needs to be an WP_Image_Editor object" +msgstr "$image doit être un objet WP_Image_Editor" + +#: wp-admin/includes/image-edit.php:227 +msgid "There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor." +msgstr "Les modifications qui n’ont pas été enregistrées seront perdues. « OK » pour continuer, « Annuler » pour revenir à l’éditeur d’images." + +#: wp-admin/includes/image-edit.php:201 +msgid "Flip horizontally" +msgstr "Retournement horizontal" + +#: wp-admin/includes/image-edit.php:200 +msgid "Flip vertically" +msgstr "Retournement vertical" + +#: wp-admin/includes/image-edit.php:194 +msgid "Image rotation is not supported by your web host." +msgstr "La rotation d’image n’est pas disponible avec cet hébergeur." + +#: wp-admin/includes/image-edit.php:192 +msgid "Rotate clockwise" +msgstr "Tourner dans le sens des aiguilles d’une montre" + +#: wp-admin/includes/image-edit.php:191 +msgid "Rotate counter-clockwise" +msgstr "Tourner dans le sens inverse des aiguilles d’une montre" + +#: wp-admin/includes/image-edit.php:185 +msgid "Crop" +msgstr "Recadrer" + +#: wp-admin/includes/image-edit.php:173 +msgid "All sizes except thumbnail" +msgstr "Toutes les tailles sauf la miniature" + +#: wp-admin/includes/image-edit.php:165 +msgid "All image sizes" +msgstr "Toutes les tailles" + +#: wp-admin/includes/image-edit.php:161 +msgid "Apply changes to:" +msgstr "Appliquer les modifications à :" + +#: wp-admin/includes/image-edit.php:156 +msgid "Current thumbnail" +msgstr "Miniature actuelle" + +#: wp-admin/includes/image-edit.php:151 +msgid "You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image." +msgstr "Vous pouvez modifier l’image tout en préservant sa miniature. Par exemple, vous pourriez vouloir avoir une miniature carrée qui n’afficherait qu’une partie de l’image." + +#: wp-admin/includes/image-edit.php:150 +msgid "Thumbnail Settings Help" +msgstr "Aide aux réglages de la miniature" + +#: wp-admin/includes/image-edit.php:149 +msgid "Thumbnail Settings" +msgstr "Réglages de la miniature" + +#: wp-admin/includes/image-edit.php:135 +msgid "selection height" +msgstr "hauteur de la sélection" + +#: wp-admin/includes/image-edit.php:131 +msgid "selection width" +msgstr "largeur de la sélection" + +#: wp-admin/includes/image-edit.php:129 +msgid "Selection:" +msgstr "Sélection :" + +#: wp-admin/includes/image-edit.php:122 +msgid "crop ratio height" +msgstr "Proportion verticale" + +#: wp-admin/includes/image-edit.php:118 +msgid "crop ratio width" +msgstr "Proportion horizontale" + +#: wp-admin/includes/image-edit.php:116 +msgid "Aspect ratio:" +msgstr "Proportion de taille :" + +#: wp-admin/includes/image-edit.php:111 +msgid "Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings." +msgstr "Une fois que votre sélection est faite, vous pouvez l’ajuster en saisissant une taille en pixels. La taille minimale de la sélection est celle des miniatures, tel que défini dans les réglages des Média." + +#: wp-admin/includes/image-edit.php:110 +msgid "Crop Selection" +msgstr "Sélection de recadrage" + +#: wp-admin/includes/image-edit.php:108 +msgid "The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc." +msgstr "Les proportions d’une image sont le rapport entre sa largeur et sa hauteur. Vous pouvez préserver les proportions en maintenant appuyée la touche Shift tandis que vous redimensionnez votre sélection. Utilisez le champ de saisie pour préciser la proportion à respecter, par exemple 1:1 (carré), 4:3, 16:9, etc." + +#: wp-admin/includes/image-edit.php:107 +msgid "Crop Aspect Ratio" +msgstr "Proportion de taille du recadrage" + +#: wp-admin/includes/image-edit.php:105 +msgid "To crop the image, click on it and drag to make your selection." +msgstr "Pour couper l’image, cliquez dessus et déplacez la souris pour créer la sélection." + +#: wp-admin/includes/image-edit.php:102 +msgid "Image Crop Help" +msgstr "Aide au recadrage d’image" + +#: wp-admin/includes/image-edit.php:101 +msgid "Image Crop" +msgstr "Recadrage de l’image" + +#: wp-admin/includes/image-edit.php:91 +msgid "Restore image" +msgstr "Rétablir l’image" + +#: wp-admin/includes/image-edit.php:87 +msgid "Previously edited copies of the image will not be deleted." +msgstr "Les copies de l’image précédemment modifiées ne seront pas effacées." + +#: wp-admin/includes/image-edit.php:84 +msgid "Discard any changes and restore the original image." +msgstr "Abandonner toutes modifications et rétablir l’image originale." + +#: wp-admin/includes/image-edit.php:70 +msgid "Scale" +msgstr "Redimensionner" + +#: wp-admin/includes/image-edit.php:66 +msgid "scale height" +msgstr "Redimensionner en hauteur" + +#: wp-admin/includes/image-edit.php:62 +msgid "scale width" +msgstr "Redimensionner en largeur" + +#: wp-admin/includes/image-edit.php:60 +msgid "New dimensions:" +msgstr "Nouvelles dimensions :" + +#: wp-admin/includes/image-edit.php:55 +msgid "Original dimensions %s" +msgstr "Taille originale : %s" + +#: wp-admin/includes/image-edit.php:52 +msgid "You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up." +msgstr "Vous pouvez redimensionner l’image originale de manière proportionnelle. Pour obtenir de meilleurs résultats, le redimensionnement doit être fait avant tout recadrage, retournement ou rotation. La taille des images ne peut être que réduite, pas augmentée." + +#: wp-admin/includes/image-edit.php:50 +msgid "Scale Image Help" +msgstr "Aide sur le redimensionnement d’image " + +#: wp-admin/includes/image-edit.php:49 +msgid "Scale Image" +msgstr "Redimensionnement de l’image" + +#: wp-admin/includes/image-edit.php:26 wp-admin/includes/image-edit.php:754 +msgid "Image data does not exist. Please re-upload the image." +msgstr "Il n’y a pas de données d’image. Veuillez envoyer l’image à nouveau." + +#: wp-admin/includes/file.php:1279 +msgid "Proceed" +msgstr "Continuer" + +#: wp-admin/includes/file.php:1266 +msgid "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." +msgstr "Saisissez l’emplacement sur le serveur où se trouvent les clés publiques et privées. S’il vous faut une passphrase, saisissez-la dans le champ de mot de passe ci-dessus." + +#: wp-admin/includes/file.php:1263 +msgid "Private Key:" +msgstr "Clé privée :" + +#: wp-admin/includes/file.php:1259 +msgid "Public Key:" +msgstr "Clé publique :" + +#: wp-admin/includes/file.php:1257 +msgid "Authentication Keys" +msgstr "Clés d’authentification" + +#: wp-admin/includes/file.php:1237 +msgid "Connection Type" +msgstr "Type de connexion" + +#: wp-admin/includes/file.php:1233 +msgid "This password will not be stored on the server." +msgstr "Le mot de passe ne sera pas stocké sur le serveur." + +#: wp-admin/includes/file.php:1221 +msgid "example: www.wordpress.org" +msgstr "exemple : www.wordpress.org" + +#: wp-admin/includes/file.php:1220 +msgid "Hostname" +msgstr "Nom de l’hôte :" + +#: wp-admin/includes/file.php:1217 +msgid "If you do not remember your credentials, you should contact your web host." +msgstr "Si vous ne vous souvenez pas de votre identifiant, vous devriez contacter votre hébergeur." + +#: wp-admin/includes/file.php:1213 +msgid "FTP Password" +msgstr "Mot de passe FTP" + +#: wp-admin/includes/file.php:1212 +msgid "FTP Username" +msgstr "Identifiant FTP" + +#: wp-admin/includes/file.php:1211 +msgid "Please enter your FTP credentials to proceed." +msgstr "Veuillez saisir votre identifiant FTP pour continuer." + +#: wp-admin/includes/file.php:1209 +msgid "FTP/SSH Password" +msgstr "Mot de passe FTP/SSH" + +#: wp-admin/includes/file.php:1208 +msgid "FTP/SSH Username" +msgstr "Identifiant FTP/SSH" + +#: wp-admin/includes/file.php:1207 +msgid "Please enter your FTP or SSH credentials to proceed." +msgstr "Veuillez saisir votre identifiant FTP ou SSH pour continuer." + +#: wp-admin/includes/file.php:1203 +msgid "To perform the requested action, WordPress needs to access your web server." +msgstr "Pour lancer la requête demandée, WordPress a besoin d’accéder à votre serveur web." + +#: wp-admin/includes/file.php:1198 +msgid "Connection Information" +msgstr "Informations de connexion" + +#: wp-admin/includes/file.php:1172 +msgid "SSH2" +msgstr "SSH2" + +#: wp-admin/includes/file.php:1170 +msgid "FTPS (SSL)" +msgstr "FTPS (SSL)" + +#: wp-admin/includes/file.php:1168 +msgid "FTP" +msgstr "FTP" + +#: wp-admin/includes/file.php:1160 +msgid "ERROR: There was an error connecting to the server, Please verify the settings are correct." +msgstr "Erreur : Une erreur s’est produite lors de la connexion au serveur, vérifiez que vos paramètres sont corrects." + +#: wp-admin/includes/file.php:753 +msgid "Empty archive." +msgstr "Archive vide." + +#: wp-admin/includes/file.php:712 wp-admin/includes/file.php:811 +#: wp-admin/includes/file.php:846 wp-admin/includes/update-core.php:1057 +#: wp-admin/includes/update-core.php:1168 +msgid "Could not copy file." +msgstr "Impossible de copier le fichier." + +#: wp-admin/includes/file.php:709 +msgid "Could not extract file from archive." +msgstr "Impossible d’extraire les fichiers depuis l’archive." + +#: wp-admin/includes/file.php:645 wp-admin/includes/file.php:699 +msgid "Could not retrieve file from archive." +msgstr "Impossible de récupérer le fichier depuis l’archive." + +#: wp-admin/includes/file.php:639 wp-admin/includes/file.php:750 +msgid "Incompatible Archive." +msgstr "Archive incompatible." + +#: wp-admin/includes/file.php:549 +msgid "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." +msgstr "L’empreinte de contrôle (ou checksum) de votre fichier (%1$s) ne correspond pas à la valeur de l’empreinte attendue (%2$s)." + +#: wp-admin/includes/file.php:501 +msgid "Could not create Temporary file." +msgstr "Impossible de créer le fichier temporaire." + +#: wp-admin/includes/file.php:495 +msgid "Invalid URL Provided." +msgstr "L’URL fournie n’est pas valide." + +#: wp-admin/includes/file.php:387 +msgid "The uploaded file could not be moved to %s." +msgstr "Le fichier n’a pas pu être déplacé vers %s." + +#: wp-admin/includes/file.php:352 +msgid "Sorry, this file type is not permitted for security reasons." +msgstr "Désolé, ce type de fichier n’est pas autorisé pour des raisons de sécurité." + +#: wp-admin/includes/file.php:337 +msgid "Specified file failed upload test." +msgstr "Le test d’envoi du fichier spécifié a échoué." + +#: wp-admin/includes/file.php:329 wp-admin/includes/import.php:84 +msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your php.ini or by post_max_size being defined as smaller than upload_max_filesize in php.ini." +msgstr "Ce fichier est vide. Veuillez envoyer quelque chose de plus substantiel. Cette erreur peut également être due à la désactivation de l’envoi de fichier dans le fichier php.ini de votre serveur, ou par une valeur de post_max_size inférieure à celle de upload_max_filesize dans ce même php.ini." + +#: wp-admin/includes/file.php:327 +msgid "File is empty. Please upload something more substantial." +msgstr "Le fichier est vide. Merci d’envoyer quelque chose de plus consistant." + +#: wp-admin/includes/file.php:316 +msgid "Invalid form submission." +msgstr "Envoi non valide du formulaire." + +#: wp-admin/includes/file.php:302 +msgid "File upload stopped by extension." +msgstr "L’envoi de fichier est arrêté par l’extension." + +#: wp-admin/includes/file.php:301 +msgid "Failed to write file to disk." +msgstr "Échec de l’écriture du fichier sur le disque." + +#: wp-admin/includes/file.php:300 +msgid "Missing a temporary folder." +msgstr "Un dossier temporaire est manquant." + +#: wp-admin/includes/file.php:298 +msgid "No file was uploaded." +msgstr "Aucun fichier n’a été envoyé." + +#: wp-admin/includes/file.php:297 +msgid "The uploaded file was only partially uploaded." +msgstr "Le fichier n’a été que partiellement envoyé." + +#: wp-admin/includes/file.php:296 +msgid "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form." +msgstr "La taille du fichier envoyé excède celle indiquée dans la directive MAX_FILE_SIZE du formulaire HTML." + +#: wp-admin/includes/file.php:295 +msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." +msgstr "La taille du fichier envoyé excède celle indiquée dans la directive upload_max_filesize, dans php.ini." + +#: wp-admin/includes/file.php:88 +msgid "%s Page Template" +msgstr "Modèle de page %s" + +#: wp-admin/includes/file.php:63 +msgid "Popup Comments" +msgstr "Commentaires en popup" + +#: wp-admin/includes/file.php:62 +msgid "Popup Comments Template" +msgstr "Modèle pour la fenêtre de commentaires" + +#: wp-admin/includes/file.php:61 +msgid "Comments Template" +msgstr "Modèle pour les commentaires" + +#: wp-admin/includes/file.php:58 +msgid ".htaccess (for rewrite rules )" +msgstr ".htaccess (pour les règles de réécriture)" + +#: wp-admin/includes/file.php:57 +msgid "my-hacks.php (legacy hacks support)" +msgstr "my-hacks.php (reconnaissance des hacks existants)" + +#: wp-admin/includes/file.php:55 +msgid "RTL Stylesheet" +msgstr "Feuille de style RTL" + +#: wp-admin/includes/file.php:54 +msgid "Visual Editor RTL Stylesheet" +msgstr "Feuille de style de l’éditeur visuel (lecture de droite à gauche)" + +#: wp-admin/includes/file.php:53 +msgid "Visual Editor Stylesheet" +msgstr "Feuille de style de l’éditeur visuel" + +#: wp-admin/includes/file.php:50 +msgid "Embed Footer Template" +msgstr "Modèle intégré de pied de page" + +#: wp-admin/includes/file.php:49 +msgid "Embed Header Template" +msgstr "Modèle intégré d’en-tête" + +#: wp-admin/includes/file.php:48 +msgid "Embed Content Template" +msgstr "Modèle intégré de contenu" + +#: wp-admin/includes/file.php:47 +msgid "Embed 404 Template" +msgstr "Modèle intégré 404" + +#: wp-admin/includes/file.php:46 +msgid "Embed Template" +msgstr "Modèle intégré" + +#: wp-admin/includes/file.php:44 +msgid "Application Attachment Template" +msgstr "Modèle pour les programmes attachés" + +#: wp-admin/includes/file.php:43 +msgid "Audio Attachment Template" +msgstr "Modèle pour les fichiers audio attachés" + +#: wp-admin/includes/file.php:42 +msgid "Video Attachment Template" +msgstr "Modèle pour les vidéos attachées" + +#: wp-admin/includes/file.php:41 +msgid "Image Attachment Template" +msgstr "Modèle pour les images attachées" + +#: wp-admin/includes/file.php:40 +msgid "Attachment Template" +msgstr "Modèle pour les fichiers attachés" + +#: wp-admin/includes/file.php:37 +msgid "Single Page" +msgstr "Page individuelle" + +#: wp-admin/includes/file.php:36 +msgid "Single Post" +msgstr "Article seul" + +#: wp-admin/includes/file.php:35 +msgid "Singular Template" +msgstr "Modèle individuel" + +#: wp-admin/includes/file.php:33 +msgid "Date Template" +msgstr "Modèle de date" + +#: wp-admin/includes/file.php:31 wp-admin/includes/template.php:1721 +msgid "Posts Page" +msgstr "Page des articles" + +#: wp-admin/includes/file.php:30 +msgid "Tag Template" +msgstr "Modèle pour étiquette" + +#: wp-admin/includes/file.php:29 +msgid "Category Template" +msgstr "Modèle pour les catégories" + +#: wp-admin/includes/file.php:28 +msgid "Taxonomy Template" +msgstr "Modèle de taxonomie" + +#: wp-admin/includes/file.php:27 +msgid "Author Template" +msgstr "Modèle pour un auteur" + +#: wp-admin/includes/file.php:25 +msgid "Main Index Template" +msgstr "Modèle pour la page d’accueil" + +#: wp-admin/includes/file.php:23 +msgid "Links Template" +msgstr "Modèle pour les liens" + +#: wp-admin/includes/file.php:22 +msgid "404 Template" +msgstr "Modèle pour l’erreur 404" + +#: wp-admin/includes/file.php:21 +msgid "Search Form" +msgstr "Formulaire de recherche" + +#: wp-admin/includes/file.php:18 +msgid "Theme Footer" +msgstr "Pied de page du thème" + +#: wp-admin/includes/file.php:17 +msgid "Theme Header" +msgstr "En-tête du thème" + +#: wp-admin/includes/file.php:16 +msgid "Theme Functions" +msgstr "Fonctions du thème" + +#: wp-admin/includes/edit-tag-messages.php:39 +msgid "Tags deleted." +msgstr "Étiquette supprimée." + +#: wp-admin/includes/edit-tag-messages.php:38 +msgid "Tag not updated." +msgstr "Étiquette non mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:37 +msgid "Tag not added." +msgstr "Étiquette non ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:36 +msgid "Tag updated." +msgstr "Étiquette mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:35 +msgid "Tag deleted." +msgstr "Étiquette supprimée." + +#: wp-admin/includes/edit-tag-messages.php:34 +msgid "Tag added." +msgstr "Étiquette ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:29 +msgid "Categories deleted." +msgstr "Catégories supprimées." + +#: wp-admin/includes/edit-tag-messages.php:28 +msgid "Category not updated." +msgstr "Catégorie non mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:27 +msgid "Category not added." +msgstr "Catégorie non ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:26 +msgid "Category updated." +msgstr "Catégorie mise à jour." + +#: wp-admin/includes/edit-tag-messages.php:25 +msgid "Category deleted." +msgstr "Catégorie effacée." + +#: wp-admin/includes/edit-tag-messages.php:24 +msgid "Category added." +msgstr "Catégorie ajoutée." + +#: wp-admin/includes/edit-tag-messages.php:19 +msgid "Items deleted." +msgstr "Élements supprimés." + +#: wp-admin/includes/edit-tag-messages.php:17 +msgid "Item not added." +msgstr "Contenu non ajouté." + +#: wp-admin/includes/edit-tag-messages.php:16 +msgid "Item updated." +msgstr "Contenu mis à jour." + +#: wp-admin/includes/edit-tag-messages.php:15 +msgid "Item deleted." +msgstr "Contenu supprimé." + +#: wp-admin/includes/edit-tag-messages.php:14 +msgid "Item added." +msgstr "Contenu ajouté." + +#: wp-admin/includes/deprecated.php:594 +msgid "Displaying %s–%s of %s" +msgstr "Affichage de %s à %s sur %s" + +#: wp-admin/includes/dashboard.php:1501 +msgid "https://codex.wordpress.org/First_Steps_With_WordPress" +msgstr "https://codex.wordpress.org/fr:Premiers_pas_avec_WordPress" + +#: wp-admin/includes/dashboard.php:1501 +msgid "Learn more about getting started" +msgstr "Plus d’informations pour bien démarrer" + +#: wp-admin/includes/dashboard.php:1499 +msgid "Turn comments on or off" +msgstr "Activez ou désactivez les commentaires" + +#: wp-admin/includes/dashboard.php:1494 +msgid "Manage menus" +msgstr "Gérer les menus" + +#: wp-admin/includes/dashboard.php:1492 +msgid "Manage widgets" +msgstr "Gérer les widgets" + +#: wp-admin/includes/dashboard.php:1489 +msgid "Manage widgets or menus" +msgstr "Gérez vos widgets ou vos menus" + +#: wp-admin/includes/dashboard.php:1484 +msgid "More Actions" +msgstr "Plus d’actions" + +#: wp-admin/includes/dashboard.php:1480 +msgid "View your site" +msgstr "Affichez votre site" + +#: wp-admin/includes/dashboard.php:1478 +msgid "Add an About page" +msgstr "Ajoutez une page « À propos »" + +#: wp-admin/includes/dashboard.php:1477 +msgid "Write your first blog post" +msgstr "Écrivez votre premier article" + +#: wp-admin/includes/dashboard.php:1475 +msgid "Add a blog post" +msgstr "Écrivez un article" + +#: wp-admin/includes/dashboard.php:1471 wp-admin/includes/dashboard.php:1474 +msgid "Add additional pages" +msgstr "Ajoutez de nouvelles pages" + +#: wp-admin/includes/dashboard.php:1470 wp-admin/includes/dashboard.php:1473 +msgid "Edit your front page" +msgstr "Modifiez votre page d’accueil" + +#: wp-admin/includes/dashboard.php:1467 +msgid "Next Steps" +msgstr "Étapes suivantes" + +#: wp-admin/includes/dashboard.php:1463 +msgid "or, change your theme completely" +msgstr "ou alors, changez complètement de thème" + +#: wp-admin/includes/dashboard.php:1459 wp-admin/includes/dashboard.php:1461 +msgid "Customize Your Site" +msgstr "Personnalisez votre site" + +#: wp-admin/includes/dashboard.php:1458 +msgid "Get Started" +msgstr "Lancez-vous !" + +#: wp-admin/includes/dashboard.php:1454 +msgid "We’ve assembled some links to get you started:" +msgstr "Voici quelques liens pour vous aider à démarrer :" + +#: wp-admin/includes/dashboard.php:1453 +msgid "Welcome to WordPress!" +msgstr "Bienvenue dans WordPress !" + +#: wp-admin/includes/dashboard.php:1364 +msgid "Dismiss the browser warning panel" +msgstr "Masquer l’alerte du navigateur" + +#: wp-admin/includes/dashboard.php:1363 +msgid "Update %2$s or learn how to browse happy" +msgstr "Mettez %2$s à jour, ou apprenez à naviguer sereinement" + +#. translators: %s: browser name and link +#: wp-admin/includes/dashboard.php:1344 +msgid "It looks like you're using an old version of %s. For the best WordPress experience, please update your browser." +msgstr "Il semble que vous utilisez une vieille version de %s. Pour utiliser WordPress dans les meilleures conditions, veuillez mettre à jour votre navigateur." + +#. translators: %s: browser name and link +#: wp-admin/includes/dashboard.php:1339 +msgid "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." +msgstr "Il semble que vous utilisez une version peu sûre de %s. Un navigateur dépassé met votre ordinateur en danger. Pour utiliser WordPress dans des conditions optimales, veuillez mettre à jour votre navigateur." + +#. translators: 1: number of megabytes, 2: percentage +#: wp-admin/includes/dashboard.php:1315 +msgid "%1$s MB (%2$s%%) Space Used" +msgstr "%1$s Mo (%2$s%%) d’espace utilisés" + +#: wp-admin/includes/dashboard.php:1310 wp-admin/includes/dashboard.php:1323 +msgid "Manage Uploads" +msgstr "Gérer les mises en ligne" + +#. translators: number of megabytes +#: wp-admin/includes/dashboard.php:1303 +msgid "%s MB Space Allowed" +msgstr "%s Mo d’espace autorisés" + +#: wp-admin/includes/dashboard.php:1297 +msgid "Storage Space" +msgstr "Espace disque" + +#: wp-admin/includes/dashboard.php:1260 +msgid "Popular Plugin" +msgstr "Extensions populaires " + +#: wp-admin/includes/dashboard.php:1139 +msgid "Other WordPress News" +msgstr "Autres actualités de WordPress (en français)" + +#: wp-admin/includes/dashboard.php:1130 +msgid "https://planet.wordpress.org/feed/" +msgstr "https://feeds.feedburner.com/wpfr" + +#: wp-admin/includes/dashboard.php:1121 wp-admin/index.php:76 +#: wp-admin/index.php:82 +msgid "https://planet.wordpress.org/" +msgstr "https://wpfr.net" + +#: wp-admin/includes/dashboard.php:1106 +msgid "WordPress Blog" +msgstr "Blog WordPress" + +#: wp-admin/includes/dashboard.php:1097 +msgid "http://wordpress.org/news/feed/" +msgstr "http://feeds.feedburner.com/WordpressFrancophone" + +#: wp-admin/includes/dashboard.php:1088 +msgid "https://wordpress.org/news/" +msgstr "http://wpfr.net/" + +#: wp-admin/includes/dashboard.php:971 +msgid "This widget requires JavaScript." +msgstr "Ce widget requiert JavaScript." + +#: wp-admin/includes/dashboard.php:971 +msgid "Loading…" +msgstr "Chargement…" + +#: wp-admin/includes/dashboard.php:927 +msgid "View more comments" +msgstr "Voir plus de commentaires" + +#. translators: 1: relative date, 2: time +#: wp-admin/includes/dashboard.php:863 +msgctxt "dashboard" +msgid "%1$s, %2$s" +msgstr "%1$s, %2$s" + +#. translators: date and time format for recent posts on the dashboard, see +#. https://secure.php.net/date +#: wp-admin/includes/dashboard.php:853 +msgid "M jS" +msgstr "j M" + +#. translators: date and time format for recent posts on the dashboard, from a +#. different calendar year, see https://secure.php.net/date +#: wp-admin/includes/dashboard.php:850 +msgid "M jS Y" +msgstr "j M Y" + +#: wp-admin/includes/dashboard.php:847 +msgid "Tomorrow" +msgstr "Demain" + +#: wp-admin/includes/dashboard.php:784 +msgid "No activity yet!" +msgstr "Aucune activité pour le moment !" + +#: wp-admin/includes/dashboard.php:775 +msgid "Recently Published" +msgstr "Publié récemment" + +#: wp-admin/includes/dashboard.php:768 +msgid "Publishing Soon" +msgstr "Bientôt publié" + +#. translators: 1: type of comment, 2: notification if the comment is pending +#: wp-admin/includes/dashboard.php:735 +msgctxt "dashboard" +msgid "%1$s %2$s" +msgstr "%1$s dans %2$s" + +#. translators: 1: type of comment, 2: post link, 3: notification if the +#. comment is pending +#: wp-admin/includes/dashboard.php:727 +msgctxt "dashboard" +msgid "%1$s on %2$s %3$s" +msgstr "%1$s sur %2$s %3$s" + +#. translators: 1: comment author, 2: notification if the comment is pending +#: wp-admin/includes/dashboard.php:698 +msgid "From %1$s %2$s" +msgstr "De %1$s %2$s" + +#: wp-admin/includes/dashboard.php:693 wp-admin/includes/dashboard.php:700 +#: wp-admin/includes/dashboard.php:730 wp-admin/includes/dashboard.php:737 +msgid "[Pending]" +msgstr "[En attente]" + +#. translators: 1: comment author, 2: post link, 3: notification if the comment +#. is pending +#: wp-admin/includes/dashboard.php:690 +msgid "From %1$s on %2$s %3$s" +msgstr "Par %1$s, sur %2$s%3$s" + +#: wp-admin/includes/dashboard.php:644 +msgid "View this comment" +msgstr "Voir ce commentaire" + +#: wp-admin/includes/dashboard.php:568 +msgctxt "drafts" +msgid "View all" +msgstr "Tout voir" + +#: wp-admin/includes/dashboard.php:568 +msgid "View all drafts" +msgstr "Voir tous les brouillons" + +#: wp-admin/includes/dashboard.php:515 +msgid "What’s on your mind?" +msgstr "Qu’avez-vous en tête ?" + +#: wp-admin/includes/dashboard.php:439 wp-admin/includes/dashboard.php:441 +msgid "Search Sites" +msgstr "Chercher un site" + +#: wp-admin/includes/dashboard.php:431 wp-admin/includes/dashboard.php:433 +#: wp-admin/users.php:514 +msgid "Search Users" +msgstr "Chercher un utilisateur" + +#. translators: 1: Text indicating the number of sites on the network, 2: Text +#. indicating the number of users on the network +#: wp-admin/includes/dashboard.php:401 +msgid "You have %1$s and %2$s." +msgstr "Vous avez %1$s et %2$s." + +#. translators: 1: Number of sites on the network +#: wp-admin/includes/dashboard.php:398 +msgid "%s site" +msgid_plural "%s sites" +msgstr[0] "%s site" +msgstr[1] "%s sites" + +#. translators: 1: Number of users on the network +#: wp-admin/includes/dashboard.php:396 +msgid "%s user" +msgid_plural "%s users" +msgstr[0] "%s utilisateur" +msgstr[1] "%s utilisateurs" + +#: wp-admin/includes/dashboard.php:390 +msgid "Create a New User" +msgstr "Créer un nouvel utilisateur" + +#: wp-admin/includes/dashboard.php:388 +msgid "Create a New Site" +msgstr "Créer un nouveau site" + +#: wp-admin/includes/dashboard.php:341 +msgid "Search Engines Discouraged" +msgstr "Moteurs de recherche refusés" + +#. translators: Number of comments in moderation +#: wp-admin/includes/dashboard.php:283 +msgctxt "comments" +msgid "%s comment in moderation" +msgid_plural "%s comments in moderation" +msgstr[0] "%s commentaire en modération" +msgstr[1] "%s commentaires en modération" + +#: wp-admin/includes/dashboard.php:260 +msgid "%s Page" +msgid_plural "%s Pages" +msgstr[0] "%s page" +msgstr[1] "%s pages" + +#: wp-admin/includes/dashboard.php:258 +msgid "%s Post" +msgid_plural "%s Posts" +msgstr[0] "%s articles" +msgstr[1] "%s articles" + +#: wp-admin/includes/dashboard.php:198 wp-admin/setup-config.php:219 +msgid "Submit" +msgstr "Valider" + +#: wp-admin/includes/dashboard.php:167 +msgid "Configure" +msgstr "Configurer" + +#: wp-admin/includes/dashboard.php:112 +msgid "View all" +msgstr "Afficher tout" + +#: wp-admin/includes/dashboard.php:56 +msgid "WordPress News" +msgstr "Nouvelles de WordPress" + +#: wp-admin/includes/dashboard.php:51 wp-admin/includes/dashboard.php:570 +msgid "Drafts" +msgstr "Brouillons" + +#: wp-admin/includes/dashboard.php:51 +msgid "Quick Draft" +msgstr "Brouillon rapide" + +#: wp-admin/includes/dashboard.php:46 +msgid "Activity" +msgstr "Activité" + +#: wp-admin/includes/dashboard.php:42 +msgid "Right Now" +msgstr "Aujourd’hui" + +#: wp-admin/includes/dashboard.php:39 +msgid "At a Glance" +msgstr "D’un coup d’œil" + +#: wp-admin/includes/dashboard.php:34 +msgid "Your browser is out of date!" +msgstr "Votre navigateur est obsolète !" + +#: wp-admin/includes/dashboard.php:32 +msgid "You are using an insecure browser!" +msgstr "Vous utilisez un navigateur peu sûr !" + +#: wp-admin/includes/class-wp-users-list-table.php:548 +msgctxt "no user roles" +msgid "None" +msgstr "Aucun" + +#: wp-admin/includes/class-wp-users-list-table.php:485 +msgid "%s post by this author" +msgid_plural "%s posts by this author" +msgstr[0] "%s article par cet auteur" +msgstr[1] "%s articles par cet auteur" + +#: wp-admin/includes/class-wp-users-list-table.php:321 +#: wp-admin/user-edit.php:343 wp-admin/user-new.php:343 +#: wp-admin/user-new.php:475 +msgid "Role" +msgstr "Rôle" + +#: wp-admin/includes/class-wp-users-list-table.php:270 +msgid "Change" +msgstr "Changer" + +#: wp-admin/includes/class-wp-users-list-table.php:264 +#: wp-admin/includes/class-wp-users-list-table.php:266 +msgid "Change role to…" +msgstr "Changer de rôle pour…" + +#: wp-admin/includes/class-wp-users-list-table.php:218 +msgid "No role" +msgstr "Aucun rôle" + +#. translators: User role name with count +#: wp-admin/includes/class-wp-users-list-table.php:206 +#: wp-admin/includes/class-wp-users-list-table.php:220 +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: wp-admin/includes/class-wp-users-list-table.php:193 +msgctxt "users" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/includes/class-wp-users-list-table.php:155 +#: wp-admin/includes/deprecated.php:561 +msgid "No users found." +msgstr "Aucun utilisateur trouvé." + +#: wp-admin/includes/class-wp-upgrader.php:175 +#: wp-admin/includes/update-core.php:1020 +msgid "Disabling Maintenance mode…" +msgstr "Désactivation du mode maintenance…" + +#: wp-admin/includes/class-wp-upgrader.php:174 +#: wp-admin/includes/update-core.php:933 +msgid "Enabling Maintenance mode…" +msgstr "Activation du mode maintenance…" + +#: wp-admin/includes/class-wp-upgrader.php:171 +msgid "The package could not be installed." +msgstr "L’archive n’a pas pu être installée." + +#: wp-admin/includes/class-wp-upgrader.php:170 wp-admin/includes/file.php:692 +#: wp-admin/includes/file.php:798 wp-admin/includes/file.php:851 +#: wp-admin/includes/update-core.php:1173 +msgid "Could not create directory." +msgstr "Impossible de créer le dossier." + +#: wp-admin/includes/class-wp-upgrader.php:169 +msgid "Destination folder already exists." +msgstr "Le dossier de destination existe déjà." + +#: wp-admin/includes/class-wp-upgrader.php:168 +msgid "The package contains no files." +msgstr "Ce paquet ne contient aucun fichier." + +#: wp-admin/includes/class-wp-upgrader.php:167 +msgid "Installing the latest version…" +msgstr "Installation de la dernière version…" + +#: wp-admin/includes/class-wp-upgrader.php:166 +msgid "Download failed." +msgstr "Le téléchargement a échoué." + +#. translators: %s: directory name +#: wp-admin/includes/class-wp-upgrader.php:164 +msgid "Unable to locate needed folder (%s)." +msgstr "Impossible de localiser le dossier nécessaire (%s)." + +#: wp-admin/includes/class-wp-upgrader.php:162 wp-admin/includes/theme.php:67 +msgid "Unable to locate WordPress theme directory." +msgstr "Impossible de localiser le dossier des thèmes de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:161 wp-admin/includes/plugin.php:824 +msgid "Unable to locate WordPress plugin directory." +msgstr "Impossible de localiser le répertoire d’extension de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:160 +msgid "Unable to locate WordPress content directory (wp-content)." +msgstr "Impossible de localiser le répertoire de contenu de WordPress (wp-content)." + +#: wp-admin/includes/class-wp-upgrader.php:159 +msgid "Unable to locate WordPress root directory." +msgstr "Impossible de localiser le répertoire racine de WordPress." + +#: wp-admin/includes/class-wp-upgrader.php:158 wp-admin/includes/plugin.php:819 +#: wp-admin/includes/theme.php:62 +msgid "Filesystem error." +msgstr "Erreur du système de fichier." + +#: wp-admin/includes/class-wp-upgrader.php:156 +msgid "Invalid data provided." +msgstr "Les données fournies ne sont pas valides." + +#: wp-admin/includes/class-wp-themes-list-table.php:239 +msgid "This child theme requires its parent theme, %2$s." +msgstr "Ce thème enfant nécessite son thème parent, %2$s." + +#: wp-admin/includes/class-wp-themes-list-table.php:197 +msgid "" +"You are about to delete this theme '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer le thème « %s ».\n" +" « Annuler » pour abandonner, « OK » pour le supprimer." + +#: wp-admin/includes/class-wp-themes-list-table.php:114 +msgid "Only the current theme is available to you. Contact the %s administrator for information about accessing additional themes." +msgstr "Vous n’avez accès qu’au thème déjà en place. Contactez l’administrateur de %s pour obtenir des informations sur l’accès à d’autres thèmes." + +#: wp-admin/includes/class-wp-themes-list-table.php:108 +msgid "You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above." +msgstr "Vous n’avez qu’un seul thème d’installé pour le moment. Faites vivre votre site ! Vous pouvez quand vous le voulez choisir parmi plus de 1 000 thèmes sur le dépôt de thèmes de WordPress.org : cliquez simplement sur l’onglet « Ajouter » ci-dessus." + +#: wp-admin/includes/class-wp-themes-list-table.php:101 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes." +msgstr "Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer plus de thèmes." + +#: wp-admin/includes/class-wp-themes-list-table.php:97 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes." +msgstr "Vous n’avez qu’un thème activé sur ce site actuellement. Veuillez vous rendre sur la page d’administration du réseau pour activer ou installer plus de thèmes." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:423 +#: wp-admin/includes/class-wp-themes-list-table.php:236 +#: wp-admin/includes/plugin-install.php:568 +msgid "Version:" +msgstr "Version : " + +#: wp-admin/includes/class-wp-theme-install-list-table.php:412 +#: wp-admin/includes/dashboard.php:1263 wp-admin/theme-install.php:278 +#: wp-admin/theme-install.php:297 +msgid "Install" +msgstr "Installer" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:344 +#: wp-admin/theme-install.php:334 +msgid "Collapse" +msgstr "Réduire" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:342 +#: wp-admin/theme-install.php:58 wp-admin/theme-install.php:332 +msgid "Collapse Sidebar" +msgstr "Réduire la barre latérale" + +#. translators: %s: Theme name +#: wp-admin/includes/class-wp-theme-install-list-table.php:293 +#: wp-admin/includes/theme.php:677 +msgid "Preview %s" +msgstr "Aperçu de %s" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:285 +#: wp-admin/includes/class-wp-theme-install-list-table.php:408 +#: wp-admin/theme-install.php:284 +msgctxt "theme" +msgid "Installed" +msgstr "Installés" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:285 +#: wp-admin/includes/class-wp-theme-install-list-table.php:408 +msgid "This theme is already installed and is up to date" +msgstr "Ce thème est déjà installé et à jour" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:281 +#: wp-admin/includes/class-wp-theme-install-list-table.php:404 +msgid "Update to version %s" +msgstr "Mettre à jour vers la version %s" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:160 +msgid "No themes match your request." +msgstr "Aucun thème ne correspond à votre requête." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:67 +msgctxt "themes" +msgid "Recently Updated" +msgstr "Mis à jour récemment" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:66 +#: wp-admin/theme-install.php:157 +msgctxt "themes" +msgid "Latest" +msgstr "Derniers en date" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:64 +#: wp-admin/theme-install.php:155 +msgctxt "themes" +msgid "Featured" +msgstr "Mis en avant" + +#. translators: %s: taxonomy term name +#: wp-admin/includes/class-wp-terms-list-table.php:466 +msgid "View “%s” archive" +msgstr "Voir l&rquo;archive pour « %s »" + +#. translators: %s: taxonomy term name +#: wp-admin/includes/class-wp-terms-list-table.php:457 +msgid "Delete “%s”" +msgstr "Supprimer “%s”" + +#: wp-admin/includes/class-wp-terms-list-table.php:188 +msgctxt "Number/count of items" +msgid "Count" +msgstr "Total" + +#: wp-admin/includes/class-wp-screen.php:1227 +msgid "View Mode" +msgstr "Mode d’affichage" + +#: wp-admin/includes/class-wp-screen.php:1180 +msgid "Pagination" +msgstr "Pagination" + +#: wp-admin/includes/class-wp-screen.php:1140 +msgid "Number of items per page:" +msgstr "Nombre d’éléments par page :" + +#: wp-admin/includes/class-wp-screen.php:1120 +msgid "%s column" +msgid_plural "%s columns" +msgstr[0] "%s colonne" +msgstr[1] "%s colonnes" + +#: wp-admin/includes/class-wp-screen.php:1114 wp-admin/includes/theme.php:237 +#: wp-admin/includes/theme.php:302 wp-admin/index.php:62 +msgid "Layout" +msgstr "Arrangement" + +#: wp-admin/includes/class-wp-screen.php:1047 +msgctxt "Welcome panel" +msgid "Welcome" +msgstr "Bienvenue" + +#: wp-admin/includes/class-wp-screen.php:1031 +msgid "Boxes" +msgstr "Blocs" + +#: wp-admin/includes/class-wp-screen.php:979 +msgid "Screen Options Tab" +msgstr "Onglet des options de l’écran" + +#: wp-admin/includes/class-wp-screen.php:924 +msgid "Enable full-height editor and distraction-free functionality." +msgstr "Activer l’éditeur plein-écran et la fonctionnalité d’écriture sans distraction." + +#: wp-admin/includes/class-wp-screen.php:922 +msgid "Additional settings" +msgstr "Réglages supplémentaires" + +#: wp-admin/includes/class-wp-screen.php:919 +msgid "Disable accessibility mode" +msgstr "Désactiver le mode Accessibilité" + +#: wp-admin/includes/class-wp-screen.php:919 +msgid "Enable accessibility mode" +msgstr "Activer le mode « Accessibilité »" + +#: wp-admin/includes/class-wp-screen.php:893 +msgid "Screen Options" +msgstr "Options de l’écran" + +#: wp-admin/includes/class-wp-screen.php:794 +msgid "Contextual Help Tab" +msgstr "Onglet d’aide contextuelle" + +#: wp-admin/includes/class-wp-screen.php:704 +msgid "Items list" +msgstr "Liste des éléments" + +#: wp-admin/includes/class-wp-screen.php:703 +msgid "Items list navigation" +msgstr "Navigation de la liste des éléments" + +#: wp-admin/includes/class-wp-screen.php:702 +msgid "Filter items list" +msgstr "Filtrer la liste des éléments" + +#: wp-admin/includes/class-wp-press-this.php:1534 +msgid "Standard Editor" +msgstr "Éditeur standard" + +#: wp-admin/includes/class-wp-press-this.php:1529 +msgid "More actions" +msgstr "Plus d’actions" + +#: wp-admin/includes/class-wp-press-this.php:1526 +msgid "Saving…" +msgstr "Enregistrement…" + +#: wp-admin/includes/class-wp-press-this.php:1525 +#: wp-admin/includes/meta-boxes.php:269 wp-admin/includes/meta-boxes.php:270 +msgid "Submit for Review" +msgstr "Soumettre à relecture" + +#: wp-admin/includes/class-wp-press-this.php:1483 +#: wp-admin/includes/class-wp-press-this.php:1494 +#: wp-admin/includes/class-wp-press-this.php:1505 +msgid "Back to post options" +msgstr "Retour aux options de l’article" + +#: wp-admin/includes/class-wp-press-this.php:1416 +msgid "Suggested media" +msgstr "Fichier média suggéré" + +#: wp-admin/includes/class-wp-press-this.php:1411 +#: wp-admin/includes/class-wp-press-this.php:1412 +msgid "Post title" +msgstr "Titre de l’article" + +#: wp-admin/includes/class-wp-press-this.php:1402 +msgid "You should upgrade your bookmarklet to the latest version!" +msgstr "Vous devriez passer votre bookmarklet à la dernière version !" + +#: wp-admin/includes/class-wp-press-this.php:1375 +msgid "Scan" +msgstr "Parcourir" + +#: wp-admin/includes/class-wp-press-this.php:1374 +msgid "Enter a URL to scan" +msgstr "Saisissez une adresse web à parcourir" + +#: wp-admin/includes/class-wp-press-this.php:1373 +msgid "Scan site for content" +msgstr "Parcourir un site en quête de contenu" + +#: wp-admin/includes/class-wp-press-this.php:1367 +msgid "Hide post options" +msgstr "Masquer les options de l’article" + +#: wp-admin/includes/class-wp-press-this.php:1365 +msgid "Show post options" +msgstr "Afficher les options de l’article" + +#: wp-admin/includes/class-wp-press-this.php:1272 +msgid "Press This!" +msgstr "Press This!" + +#: wp-admin/includes/class-wp-press-this.php:1166 +msgctxt "Used in Press This to indicate where the content comes from." +msgid "Source:" +msgstr "Source :" + +#: wp-admin/includes/class-wp-press-this.php:914 +msgid "Search categories" +msgstr "Chercher dans les catégories" + +#: wp-admin/includes/class-wp-press-this.php:912 +msgid "Search categories by name" +msgstr "Chercher dans les catégories par nom" + +#: wp-admin/includes/class-wp-press-this.php:887 +msgid "Toggle add category" +msgstr "Ajouter ou non la catégorie" + +#: wp-admin/includes/class-wp-press-this.php:845 +#: wp-admin/includes/meta-boxes.php:385 wp-admin/includes/theme.php:263 +msgid "Post Formats" +msgstr "Format d’article" + +#: wp-admin/includes/class-wp-press-this.php:266 +msgid "Error while adding the category. Please try again later." +msgstr "Erreur lors de l’ajout de la catégorie. Veuillez réessayer plus tard." + +#: wp-admin/includes/class-wp-press-this.php:259 +msgid "This category cannot be added. Please change the name and try again." +msgstr "Cette catégorie ne peut pas être ajoutée. Veuillez changer son nom et réessayer." + +#: wp-admin/includes/class-wp-press-this.php:241 +msgid "This category already exists." +msgstr "Cette catégorie existe déjà." + +#: wp-admin/includes/class-wp-press-this.php:106 +msgid "Missing post ID." +msgstr "ID de l’article manquant." + +#: wp-admin/includes/class-wp-posts-list-table.php:1660 +msgid "Make this post sticky" +msgstr "Mettre ce contenu en avant" + +#: wp-admin/includes/class-wp-posts-list-table.php:1652 +msgid "Not Sticky" +msgstr "Pas mis en avant" + +#: wp-admin/includes/class-wp-posts-list-table.php:1648 +#: wp-admin/includes/class-wp-posts-list-table.php:1651 +#: wp-admin/includes/template.php:1709 +msgid "Sticky" +msgstr "Mis en avant" + +#: wp-admin/includes/class-wp-posts-list-table.php:1616 +msgid "Allow Pings" +msgstr "Autoriser les notifications par ping" + +#: wp-admin/includes/class-wp-posts-list-table.php:1611 +msgid "Allow Comments" +msgstr "Autoriser les commentaires" + +#: wp-admin/includes/class-wp-posts-list-table.php:1590 +#: wp-admin/includes/class-wp-posts-list-table.php:1599 +msgid "Do not allow" +msgstr "Refuser" + +#: wp-admin/includes/class-wp-posts-list-table.php:1589 +#: wp-admin/includes/class-wp-posts-list-table.php:1598 +msgid "Allow" +msgstr "Autoriser" + +#: wp-admin/includes/class-wp-posts-list-table.php:1555 +#: wp-admin/includes/meta-boxes.php:856 +msgid "Default Template" +msgstr "Modèle par défaut" + +#: wp-admin/includes/class-wp-posts-list-table.php:1537 +#: wp-admin/includes/media.php:1233 wp-admin/includes/media.php:2245 +#: wp-admin/includes/meta-boxes.php:863 +msgid "Order" +msgstr "Ordre" + +#: wp-admin/includes/class-wp-posts-list-table.php:1508 +msgid "Main Page (no parent)" +msgstr "Page principale (pas de page parente)" + +#: wp-admin/includes/class-wp-posts-list-table.php:1502 +#: wp-admin/includes/meta-boxes.php:824 +msgid "Parent" +msgstr "Parent" + +#. translators: Between password field and private checkbox on post quick edit +#. interface +#: wp-admin/includes/class-wp-posts-list-table.php:1460 +msgid "–OR–" +msgstr "— OU —" + +#: wp-admin/includes/class-wp-posts-list-table.php:1434 +#: wp-admin/includes/class-wp-posts-list-table.php:1514 +#: wp-admin/includes/class-wp-posts-list-table.php:1551 +#: wp-admin/includes/class-wp-posts-list-table.php:1588 +#: wp-admin/includes/class-wp-posts-list-table.php:1597 +#: wp-admin/includes/class-wp-posts-list-table.php:1629 +#: wp-admin/includes/class-wp-posts-list-table.php:1650 +#: wp-admin/includes/class-wp-posts-list-table.php:1678 +msgid "— No Change —" +msgstr "— Aucun changement —" + +#: wp-admin/includes/class-wp-posts-list-table.php:1387 +#: wp-admin/includes/class-wp-terms-list-table.php:592 +msgid "Quick Edit" +msgstr "Modification rapide" + +#: wp-admin/includes/class-wp-posts-list-table.php:1387 +msgid "Bulk Edit" +msgstr "Modifications groupées" + +#. translators: %s: post title +#: wp-admin/includes/class-wp-posts-list-table.php:1277 +#: wp-admin/includes/class-wp-theme-install-list-table.php:259 +msgid "Preview “%s”" +msgstr "Prévisualiser « %s »" + +#. translators: %s: post title +#. translators: %s: taxonomy term name +#: wp-admin/includes/class-wp-posts-list-table.php:1235 +#: wp-admin/includes/class-wp-terms-list-table.php:448 +msgid "Quick edit “%s” inline" +msgstr "Modifier rapidement “%s” en ligne" + +#: wp-admin/includes/class-wp-posts-list-table.php:1003 +msgid "Last Modified" +msgstr "Dernière modification" + +#: wp-admin/includes/class-wp-posts-list-table.php:998 +msgid "Missed schedule" +msgstr "Planification manquée" + +#: wp-admin/includes/class-wp-posts-list-table.php:981 +msgid "Y/m/d g:i:s a" +msgstr "d/m/Y G \\h i \\m\\i\\n s \\s" + +#: wp-admin/includes/class-wp-posts-list-table.php:910 +#: wp-admin/includes/misc.php:749 +msgid "%s is currently editing" +msgstr "%s modifie actuellement ce contenu" + +#. translators: %s: post title +#: wp-admin/includes/class-wp-posts-list-table.php:843 +msgid "“%s” is locked" +msgstr "“%s” est verrouillé" + +#. translators: manage posts column name +#: wp-admin/includes/class-wp-posts-list-table.php:539 +msgctxt "column name" +msgid "Title" +msgstr "Titre" + +#: wp-admin/includes/class-wp-posts-list-table.php:366 +msgctxt "posts" +msgid "Sticky (%s)" +msgid_plural "Sticky (%s)" +msgstr[0] "Mis en avant (%s)" +msgstr[1] "Mis en avant (%s)" + +#: wp-admin/includes/class-wp-posts-list-table.php:317 +msgctxt "posts" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/includes/class-wp-posts-list-table.php:297 +msgctxt "posts" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Le mien (%s)" +msgstr[1] "Les miens (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:793 +msgid "Visit plugin site" +msgstr "Aller sur le site de l’extension" + +#: wp-admin/includes/class-wp-plugins-list-table.php:788 +msgid "View details" +msgstr "Afficher les détails" + +#. translators: %s: plugin name +#: wp-admin/includes/class-wp-plugins-list-table.php:642 +msgid "Edit %s" +msgstr "Modifier %s" + +#. translators: %s: plugin name +#: wp-admin/includes/class-wp-plugins-list-table.php:627 +msgctxt "plugin" +msgid "Deactivate %s" +msgstr "Désactiver %s" + +#: wp-admin/includes/class-wp-plugins-list-table.php:623 +msgid "Network Only" +msgstr "Réseau seul" + +#: wp-admin/includes/class-wp-plugins-list-table.php:619 +msgid "Network Active" +msgstr "Activé sur le réseau" + +#. translators: %s: plugin name +#: wp-admin/includes/class-wp-plugins-list-table.php:613 +#: wp-admin/includes/class-wp-plugins-list-table.php:634 +msgctxt "plugin" +msgid "Delete %s" +msgstr "Supprimer %s" + +#. translators: %s: plugin name +#: wp-admin/includes/class-wp-plugins-list-table.php:604 +msgctxt "plugin" +msgid "Network Deactivate %s" +msgstr "Désactiver %s du réseau" + +#. translators: 1: drop-in constant name, 2: wp-config.php +#: wp-admin/includes/class-wp-plugins-list-table.php:584 +msgid "Requires %1$s in %2$s file." +msgstr "Requiert la constance %1$s dans le fichier %2$s." + +#: wp-admin/includes/class-wp-plugins-list-table.php:582 +msgid "Inactive:" +msgstr "Inactif :" + +#. translators: %s: wp-content directory name +#: wp-admin/includes/class-wp-plugins-list-table.php:508 +msgid "Drop-ins are advanced plugins in the %s directory that replace WordPress functionality when present." +msgstr "Les « drop-ins » sont des extensions avancées contenues dans le dossier %s ; elles peuvent remplacer certaines fonctionnalités de WordPress." + +#. translators: %s: mu-plugins directory name +#: wp-admin/includes/class-wp-plugins-list-table.php:503 +msgid "Files in the %s directory are executed automatically." +msgstr "Les fichiers du répertoire %s sont exécutés automatiquement." + +#: wp-admin/includes/class-wp-plugins-list-table.php:500 +msgid "Clear List" +msgstr "Vider la liste" + +#: wp-admin/includes/class-wp-plugins-list-table.php:462 +#: wp-admin/includes/class-wp-plugins-list-table.php:627 +msgid "Deactivate" +msgstr "Désactiver" + +#: wp-admin/includes/class-wp-plugins-list-table.php:462 +#: wp-admin/includes/class-wp-plugins-list-table.php:604 +msgid "Network Deactivate" +msgstr "Désactiver du réseau" + +#: wp-admin/includes/class-wp-plugins-list-table.php:432 +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Prête à mettre à jour (%s)" +msgstr[1] "Prêtes à mettre à jour (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:429 +msgid "Drop-ins (%s)" +msgid_plural "Drop-ins (%s)" +msgstr[0] "Drop-ins (%s)" +msgstr[1] "Drop-ins (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:426 +msgid "Must-Use (%s)" +msgid_plural "Must-Use (%s)" +msgstr[0] "Automatique (Must-Use) (%s)" +msgstr[1] "Automatiques (Must-Use) (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:423 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Désactivée (%s)" +msgstr[1] "Désactivées (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:420 +msgid "Recently Active (%s)" +msgid_plural "Recently Active (%s)" +msgstr[0] "Récemment désactivée (%s)" +msgstr[1] "Récemment désactivées (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:417 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Activée (%s)" +msgstr[1] "Activées (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:414 +msgctxt "plugins" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Toutes (%s)" +msgstr[1] "Toutes (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:386 +msgid "Plugin" +msgstr "Extension" + +#: wp-admin/includes/class-wp-plugins-list-table.php:370 +msgid "Search installed plugins..." +msgstr "Recherchez parmi vos extensions..." + +#: wp-admin/includes/class-wp-plugins-list-table.php:340 +msgid "No plugins found." +msgstr "Aucune extension trouvée." + +#: wp-admin/includes/class-wp-plugins-list-table.php:337 +msgid "Search for plugins in the WordPress Plugin Directory." +msgstr "Rechercher des extensions dans le répertoire des extensions WordPress." + +#: wp-admin/includes/class-wp-plugins-list-table.php:333 +msgid "No plugins found for “%s”." +msgstr "Aucune extension trouvée pour “%s”." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:582 +msgid "Compatible with your version of WordPress" +msgstr "Compatible avec votre WordPress" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:580 +msgid "Incompatible with your version of WordPress" +msgstr "Incompatible avec votre version de WordPress" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:578 +msgid "Untested with your version of WordPress" +msgstr "Non testé avec votre version de WordPress" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:570 +msgid "%s Active Installs" +msgstr "%s installations actives" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:566 +#: wp-admin/includes/plugin-install.php:593 +msgctxt "Active plugin installs" +msgid "Less Than 10" +msgstr "Inférieur à 10" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:564 +#: wp-admin/includes/plugin-install.php:591 +msgctxt "Active plugin installs" +msgid "1+ Million" +msgstr "Plus de 1 million" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:559 +#: wp-admin/includes/plugin-install.php:572 +msgid "Last Updated:" +msgstr "Dernière mise à jour :" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:507 +msgid "More Details" +msgstr "Plus de détails" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:497 +msgctxt "plugin" +msgid "Installed" +msgstr "Installée" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:472 +msgctxt "plugin" +msgid "Active" +msgstr "Actif" + +#. translators: %s: Theme author name +#: wp-admin/includes/class-wp-plugin-install-list-table.php:446 +#: wp-admin/includes/class-wp-plugins-list-table.php:778 +#: wp-admin/includes/class-wp-theme-install-list-table.php:312 +#: wp-admin/includes/class-wp-theme-install-list-table.php:416 +#: wp-admin/includes/class-wp-themes-list-table.php:222 +#: wp-admin/includes/theme.php:659 wp-admin/theme-install.php:254 +#: wp-admin/theme-install.php:306 wp-admin/themes.php:264 +#: wp-admin/themes.php:396 wp-admin/themes.php:449 +msgid "By %s" +msgstr "Par %s" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:404 +msgctxt "Plugin installer group title" +msgid "Tools" +msgstr "Outils" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:403 +msgctxt "Plugin installer group title" +msgid "Social" +msgstr "Social" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:402 +msgctxt "Plugin installer group title" +msgid "Performance" +msgstr "Performance" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:237 +msgid "No plugins match your request." +msgstr "Aucune extension ne correspond à votre requête." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:235 +#: wp-admin/includes/class-wp-theme-install-list-table.php:145 +#: wp-admin/setup-config.php:247 +msgid "Try again" +msgstr "Recommencer" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:100 +#: wp-admin/plugin-install.php:120 wp-admin/update.php:151 +msgid "Upload Plugin" +msgstr "Mettre une extension en ligne" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:96 +msgctxt "Plugin Installer" +msgid "Favorites" +msgstr "Favorites" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:95 +msgctxt "Plugin Installer" +msgid "Recommended" +msgstr "Recommandées" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:94 +msgctxt "Plugin Installer" +msgid "Popular" +msgstr "Populaires" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:93 +msgctxt "Plugin Installer" +msgid "Featured" +msgstr "Mises en avant" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:91 +msgctxt "Plugin Installer" +msgid "Beta Testing" +msgstr "Test de phase beta" + +#. translators: %s: attachment title +#. translators: %s: post title +#: wp-admin/includes/class-wp-media-list-table.php:714 +#: wp-admin/includes/class-wp-posts-list-table.php:1246 +msgid "Restore “%s” from the Trash" +msgstr "Restaurer “%s” depuis la corbeille" + +#: wp-admin/includes/class-wp-media-list-table.php:685 +#: wp-admin/includes/class-wp-media-list-table.php:744 +#: wp-admin/includes/class-wp-posts-list-table.php:1287 +#: wp-admin/includes/class-wp-terms-list-table.php:467 +#: wp-admin/includes/dashboard.php:644 +msgid "View" +msgstr "Afficher" + +#. translators: %s: attachment title +#. translators: %s: post title +#: wp-admin/includes/class-wp-media-list-table.php:684 +#: wp-admin/includes/class-wp-media-list-table.php:743 +#: wp-admin/includes/class-wp-posts-list-table.php:1286 +msgid "View “%s”" +msgstr "Afficher « %s »" + +#. translators: %s: attachment title +#. translators: %s: post title +#: wp-admin/includes/class-wp-media-list-table.php:675 +#: wp-admin/includes/class-wp-media-list-table.php:733 +#: wp-admin/includes/class-wp-posts-list-table.php:1263 +msgid "Delete “%s” permanently" +msgstr "Supprimer “%s” définitivement" + +#. translators: %s: attachment title +#. translators: %s: post title +#: wp-admin/includes/class-wp-media-list-table.php:665 +#: wp-admin/includes/class-wp-media-list-table.php:722 +#: wp-admin/includes/class-wp-posts-list-table.php:1254 +msgid "Move “%s” to the Trash" +msgstr "Déplacer “%s” dans la corbeille" + +#. translators: %s: attachment title +#: wp-admin/includes/class-wp-media-list-table.php:513 +#: wp-admin/includes/class-wp-media-list-table.php:693 +msgid "Attach “%s” to existing content" +msgstr "Attacher « %s &rasquo; à du contenu existant" + +#: wp-admin/includes/class-wp-media-list-table.php:506 +msgid "(Unattached)" +msgstr "(Non attaché)" + +#: wp-admin/includes/class-wp-media-list-table.php:502 +msgid "Detach" +msgstr "Détacher" + +#. translators: %s: title of the post the attachment is attached to +#: wp-admin/includes/class-wp-media-list-table.php:501 +msgid "Detach from “%s”" +msgstr "Détacher de « %s &rasquo;" + +#: wp-admin/includes/class-wp-media-list-table.php:488 +msgid "(Private post)" +msgstr "(Article privé)" + +#. translators: %s: Time since the last update +#: wp-admin/includes/class-wp-media-list-table.php:449 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:559 +#: wp-admin/includes/class-wp-posts-list-table.php:988 +#: wp-admin/includes/plugin-install.php:575 wp-admin/includes/revision.php:209 +#: wp-admin/includes/revision.php:251 +msgid "%s ago" +msgstr "Il y a %s" + +#: wp-admin/includes/class-wp-media-list-table.php:447 +msgid "%s from now" +msgstr "%s à partir de maintenant" + +#: wp-admin/includes/class-wp-media-list-table.php:441 +#: wp-admin/includes/class-wp-posts-list-table.php:978 +msgid "Unpublished" +msgstr "Non publié" + +#. translators: %s: attachment title +#. translators: %s: post title +#. translators: %s: taxonomy term name +#: wp-admin/includes/class-wp-media-list-table.php:377 +#: wp-admin/includes/class-wp-posts-list-table.php:942 +#: wp-admin/includes/class-wp-terms-list-table.php:384 +msgid "“%s” (Edit)" +msgstr "« %s » (Modifier)" + +#. translators: column name +#: wp-admin/includes/class-wp-media-list-table.php:313 +msgctxt "column name" +msgid "Date" +msgstr "Date" + +#. translators: column name +#: wp-admin/includes/class-wp-media-list-table.php:308 +msgctxt "column name" +msgid "Uploaded to" +msgstr "Mis en ligne sur " + +#. translators: column name +#: wp-admin/includes/class-wp-media-list-table.php:278 +msgctxt "column name" +msgid "File" +msgstr "Fichier" + +#: wp-admin/includes/class-wp-media-list-table.php:154 +#: wp-admin/includes/class-wp-media-list-table.php:514 +#: wp-admin/includes/class-wp-media-list-table.php:694 +msgid "Attach" +msgstr "Joindre" + +#: wp-admin/includes/class-wp-media-list-table.php:130 +msgctxt "attachment filter" +msgid "Trash" +msgstr "Corbeille" + +#: wp-admin/includes/class-wp-list-table.php:1069 +#: wp-admin/includes/nav-menu.php:575 wp-admin/includes/nav-menu.php:774 +#: wp-admin/update-core.php:246 wp-admin/update-core.php:324 +#: wp-admin/update-core.php:356 wp-admin/update-core.php:395 +msgid "Select All" +msgstr "Tout sélectionner" + +#: wp-admin/includes/class-wp-list-table.php:841 +msgid "Last page" +msgstr "Dernière page" + +#: wp-admin/includes/class-wp-list-table.php:824 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s sur %2$s" + +#: wp-admin/includes/class-wp-list-table.php:815 +#: wp-admin/includes/class-wp-list-table.php:818 +msgid "Current Page" +msgstr "Page actuelle" + +#: wp-admin/includes/class-wp-list-table.php:798 +msgid "First page" +msgstr "Première page" + +#: wp-admin/includes/class-wp-list-table.php:685 +msgid "No pending comments" +msgstr "Aucun commentaire en attente" + +#: wp-admin/includes/class-wp-list-table.php:672 +msgid "No approved comments" +msgstr "Aucun commentaire approuvé" + +#: wp-admin/includes/class-wp-list-table.php:660 +#: wp-admin/includes/class-wp-list-table.php:672 +#: wp-admin/includes/class-wp-list-table.php:685 +msgid "No comments" +msgstr "Aucun commentaire" + +#: wp-admin/includes/class-wp-list-table.php:655 +msgid "%s pending comment" +msgid_plural "%s pending comments" +msgstr[0] "%s commentaire en attente" +msgstr[1] "%s commentaires en attente" + +#: wp-admin/includes/class-wp-list-table.php:654 +msgid "%s approved comment" +msgid_plural "%s approved comments" +msgstr[0] "%s commentaire approuvé" +msgstr[1] "%s commentaires approuvés" + +#: wp-admin/includes/class-wp-list-table.php:653 +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "(%s commentaire)" +msgstr[1] "(%s commentaires)" + +#: wp-admin/includes/class-wp-list-table.php:461 +msgid "Select bulk action" +msgstr "Sélectionnez l’action groupée" + +#: wp-admin/includes/class-wp-list-table.php:163 +#: wp-admin/includes/class-wp-screen.php:1234 +msgid "Excerpt View" +msgstr "Liste avec extraits" + +#: wp-admin/includes/class-wp-links-list-table.php:330 +#: wp-admin/includes/meta-boxes.php:916 +msgid "" +"You are about to delete this link '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer le lien « %s ».\n" +" « Annuler » pour abandonner, « OK » pour supprimer." + +#. translators: %s: link name +#. translators: %s: attachment title +#. translators: %s: post title +#. translators: %s: taxonomy term name +#. translators: %s: post title +#: wp-admin/includes/class-wp-links-list-table.php:190 +#: wp-admin/includes/class-wp-media-list-table.php:655 +#: wp-admin/includes/class-wp-media-list-table.php:704 +#: wp-admin/includes/class-wp-posts-list-table.php:1229 +#: wp-admin/includes/class-wp-terms-list-table.php:442 +#: wp-admin/includes/dashboard.php:578 wp-admin/includes/dashboard.php:866 +msgid "Edit “%s”" +msgstr "Modifier « %s »" + +#. translators: %s: plugin name +#. translators: %s: theme name +#: wp-admin/includes/class-wp-links-list-table.php:172 +#: wp-admin/includes/class-wp-media-list-table.php:351 +#: wp-admin/includes/class-wp-plugins-list-table.php:729 +#: wp-admin/includes/class-wp-posts-list-table.php:835 +#: wp-admin/includes/class-wp-terms-list-table.php:339 +#: wp-admin/includes/class-wp-users-list-table.php:432 +#: wp-admin/update-core.php:299 wp-admin/update-core.php:370 +msgid "Select %s" +msgstr "Sélectionner %s" + +#: wp-admin/includes/class-wp-links-list-table.php:133 +#: wp-admin/includes/meta-boxes.php:1184 +msgid "Rating" +msgstr "Note" + +#: wp-admin/includes/class-wp-links-list-table.php:132 +msgid "Visible" +msgstr "Visible" + +#: wp-admin/includes/class-wp-links-list-table.php:131 +msgid "Relationship" +msgstr "Relation" + +#: wp-admin/includes/class-wp-links-list-table.php:113 +#: wp-admin/includes/class-wp-posts-list-table.php:449 +msgid "Filter by category" +msgstr "Filtrer par catégorie" + +#: wp-admin/includes/class-wp-links-list-table.php:84 +#: wp-admin/includes/class-wp-links-list-table.php:330 +#: wp-admin/includes/class-wp-plugins-list-table.php:468 +#: wp-admin/includes/class-wp-plugins-list-table.php:613 +#: wp-admin/includes/class-wp-plugins-list-table.php:634 +#: wp-admin/includes/class-wp-terms-list-table.php:156 +#: wp-admin/includes/class-wp-terms-list-table.php:458 +#: wp-admin/includes/class-wp-themes-list-table.php:198 +#: wp-admin/includes/class-wp-users-list-table.php:244 +#: wp-admin/includes/class-wp-users-list-table.php:412 +#: wp-admin/includes/media.php:1501 wp-admin/includes/meta-boxes.php:916 +#: wp-admin/includes/template.php:561 wp-admin/includes/widgets.php:253 +#: wp-admin/themes.php:340 wp-admin/themes.php:486 wp-admin/widgets.php:320 +msgid "Delete" +msgstr "Supprimer" + +#: wp-admin/includes/class-wp-links-list-table.php:75 +msgid "No links found." +msgstr "Aucun lien trouvé." + +#. translators: %s: command +#: wp-admin/includes/class-wp-filesystem-ssh2.php:206 +msgid "Unable to perform command: %s" +msgstr "Impossible de lancer la commande : %s" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:159 +msgid "Failed to initialize a SFTP subsystem session with the SSH2 Server %s" +msgstr "Échec de l&rquo;initialisation d’une session de sous-système SFTP avec le serveur SSH2 %s." + +#. translators: %s: username +#: wp-admin/includes/class-wp-filesystem-ssh2.php:147 +msgid "Public and Private keys incorrect for %s" +msgstr "Les clés publiques et privées de %s ne sont pas correctes" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:126 +msgid "Failed to connect to SSH2 Server %s" +msgstr "Impossible de se connecter au serveur SSH2 %s" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:105 +msgid "SSH2 password is required" +msgstr "Le mot de passe SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:96 +msgid "SSH2 username is required" +msgstr "L’identifiant SSH2 est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:83 +msgid "SSH2 hostname is required" +msgstr "Le nom de l’hôte SSH2 est nécessaire" + +#. translators: %s: stream_get_contents() +#: wp-admin/includes/class-wp-filesystem-ssh2.php:69 +msgid "The ssh2 PHP extension is available, however, we require the PHP5 function %s" +msgstr "L’extension PHP ssh2 est disponible, cependant elle nécessite la fonction PHP5 %s" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:61 +msgid "The ssh2 PHP extension is not available" +msgstr "L’extension ssh2 de PHP n’est pas disponible" + +#. translators: %s: username +#: wp-admin/includes/class-wp-filesystem-ftpext.php:90 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:95 +#: wp-admin/includes/class-wp-filesystem-ssh2.php:137 +msgid "Username/Password incorrect for %s" +msgstr "Le couple identifiant / mot de passe est incorrect pour %s" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ftpext.php:80 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:75 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:85 +msgid "Failed to connect to FTP Server %s" +msgstr "Impossible de se connecter au serveur FTP %s" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:57 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:56 +msgid "FTP password is required" +msgstr "Le mot de passe FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:52 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:51 +msgid "FTP username is required" +msgstr "L’identifiant FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:46 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:45 +msgid "FTP hostname is required" +msgstr "Le nom de l’hôte FTP est nécessaire" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:31 +msgid "The ftp PHP extension is not available" +msgstr "L’extension ftp de PHP n’est pas disponible" + +#. translators: %s: directory name +#: wp-admin/includes/class-wp-filesystem-base.php:299 +msgid "Found %s" +msgstr "Trouvé %s" + +#. translators: %s: directory name +#: wp-admin/includes/class-wp-filesystem-base.php:284 +msgid "Changing to %s" +msgstr "Modifier à %s" + +#. translators: 1: folder to locate, 2: folder to start searching from +#: wp-admin/includes/class-wp-filesystem-base.php:257 +msgid "Looking for %1$s in %2$s" +msgstr "Recherche %1$s dans %2$s" + +#: wp-admin/includes/class-wp-comments-list-table.php:627 +msgid "Select comment" +msgstr "Sélectionnez un commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:616 +#: wp-admin/includes/class-wp-list-table.php:523 +#: wp-admin/includes/class-wp-list-table.php:1324 +#: wp-admin/includes/update.php:687 +msgid "Show more details" +msgstr "Afficher plus de détails" + +#: wp-admin/includes/class-wp-comments-list-table.php:590 +#: wp-admin/includes/dashboard.php:635 +msgid "Reply to this comment" +msgstr "Répondre à ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:588 +#: wp-admin/includes/class-wp-posts-list-table.php:1236 +#: wp-admin/includes/class-wp-terms-list-table.php:449 +msgid "Quick Edit" +msgstr "Modification rapide" + +#: wp-admin/includes/class-wp-comments-list-table.php:588 +msgid "Quick edit this comment inline" +msgstr "Modifier ce commentaire sur cette page" + +#: wp-admin/includes/class-wp-comments-list-table.php:584 +#: wp-admin/includes/dashboard.php:634 +msgid "Edit this comment" +msgstr "Éditer ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:580 +#: wp-admin/includes/dashboard.php:641 +msgid "Move this comment to the Trash" +msgstr "Déplacer ce commentaire dans la corbeille" + +#: wp-admin/includes/class-wp-comments-list-table.php:578 +#: wp-admin/includes/dashboard.php:639 +msgid "Delete this comment permanently" +msgstr "Supprimer définitivement ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:574 +msgid "Restore this comment from the Trash" +msgstr "Récupérer ce commentaire depuis la corbeille" + +#: wp-admin/includes/class-wp-comments-list-table.php:570 +msgid "Restore this comment from the spam" +msgstr "Restaurer ce commentaire des indésirables" + +#. translators: mark as spam link +#: wp-admin/includes/class-wp-comments-list-table.php:568 +#: wp-admin/includes/dashboard.php:636 +msgctxt "verb" +msgid "Spam" +msgstr "Indésirable" + +#: wp-admin/includes/class-wp-comments-list-table.php:568 +#: wp-admin/includes/dashboard.php:636 +msgid "Mark this comment as spam" +msgstr "Marquer ce commentaire comme indésirable" + +#: wp-admin/includes/class-wp-comments-list-table.php:560 +#: wp-admin/includes/class-wp-comments-list-table.php:563 +#: wp-admin/includes/dashboard.php:632 +msgid "Approve this comment" +msgstr "Approuver ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:558 +#: wp-admin/includes/class-wp-comments-list-table.php:564 +#: wp-admin/includes/dashboard.php:633 +msgid "Unapprove this comment" +msgstr "Désapprouver ce commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:405 +msgctxt "column name" +msgid "Submitted On" +msgstr "Envoyé le" + +#: wp-admin/includes/class-wp-comments-list-table.php:398 +#: wp-admin/includes/class-wp-post-comments-list-table.php:28 +msgctxt "column name" +msgid "Comment" +msgstr "Commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:359 +#: wp-admin/includes/class-wp-media-list-table.php:181 +#: wp-admin/includes/class-wp-posts-list-table.php:492 +msgid "Empty Trash" +msgstr "Vider la corbeille" + +#: wp-admin/includes/class-wp-comments-list-table.php:359 +msgid "Empty Spam" +msgstr "Supprimer tous les indésirables" + +#: wp-admin/includes/class-wp-comments-list-table.php:354 +#: wp-admin/includes/class-wp-links-list-table.php:115 +#: wp-admin/includes/class-wp-media-list-table.php:177 +#: wp-admin/includes/class-wp-posts-list-table.php:487 +msgid "Filter" +msgstr "Filtrer" + +#: wp-admin/includes/class-wp-comments-list-table.php:340 +#: wp-admin/includes/class-wp-posts-list-table.php:1595 +msgid "Pings" +msgstr "Pings" + +#: wp-admin/includes/class-wp-comments-list-table.php:329 +msgid "All comment types" +msgstr "Tous les types de commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:327 +msgid "Filter by comment type" +msgstr "Filtrer par type de commentaire" + +#: wp-admin/includes/class-wp-comments-list-table.php:302 +#: wp-admin/includes/class-wp-comments-list-table.php:570 +msgctxt "comment" +msgid "Not Spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-comments-list-table.php:300 +#: wp-admin/includes/class-wp-comments-list-table.php:574 +#: wp-admin/includes/class-wp-media-list-table.php:144 +#: wp-admin/includes/class-wp-media-list-table.php:715 +#: wp-admin/includes/class-wp-posts-list-table.php:397 +#: wp-admin/includes/class-wp-posts-list-table.php:1247 +msgid "Restore" +msgstr "Rétablir" + +#: wp-admin/includes/class-wp-comments-list-table.php:295 +#: wp-admin/includes/class-wp-comments-list-table.php:560 +#: wp-admin/includes/class-wp-comments-list-table.php:563 +#: wp-admin/includes/dashboard.php:632 +msgid "Approve" +msgstr "Approuver" + +#: wp-admin/includes/class-wp-comments-list-table.php:293 +#: wp-admin/includes/class-wp-comments-list-table.php:558 +#: wp-admin/includes/class-wp-comments-list-table.php:564 +#: wp-admin/includes/dashboard.php:633 +msgid "Unapprove" +msgstr "Désapprouver" + +#. translators: %s: trashed comments count +#: wp-admin/includes/class-wp-comments-list-table.php:235 +msgctxt "comments" +msgid "Trash (%s)" +msgid_plural "Trash (%s)" +msgstr[0] "Mis à la corbeille (%s)" +msgstr[1] "Mis à la corbeille (%s)" + +#. translators: %s: spam comments count +#: wp-admin/includes/class-wp-comments-list-table.php:228 +msgctxt "comments" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Indésirable (%s)" +msgstr[1] "Indésirables (%s)" + +#. translators: %s: approved comments count +#: wp-admin/includes/class-wp-comments-list-table.php:221 +msgctxt "comments" +msgid "Approved (%s)" +msgid_plural "Approved (%s)" +msgstr[0] "Approuvé (%s)" +msgstr[1] "Approuvés (%s)" + +#. translators: %s: pending comments count +#: wp-admin/includes/class-wp-comments-list-table.php:214 +msgctxt "comments" +msgid "Pending (%s)" +msgid_plural "Pending (%s)" +msgstr[0] "En attente (%s)" +msgstr[1] "En attente (%s)" + +#. translators: %s: all comments count +#: wp-admin/includes/class-wp-comments-list-table.php:207 +msgctxt "comments" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s) " +msgstr[1] "Tous (%s) " + +#: wp-admin/includes/class-wp-comments-list-table.php:189 +msgid "No comments found." +msgstr "Aucun commentaire trouvé." + +#: wp-admin/includes/class-wp-comments-list-table.php:187 +msgid "No comments awaiting moderation." +msgstr "Aucun commentaire en attente de modération." + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:883 +msgid "Error: [%1$s] %2$s" +msgstr "Erreur : [%1$s] %2$s" + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:880 +msgid "Rollback Error: [%1$s] %2$s" +msgstr "Erreur de restauration : [%1$s] %2$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:856 +msgid "" +"UPDATE LOG\n" +"==========" +msgstr "" +"JOURNAL DE LA MISE À JOUR\n" +"==========" + +#: wp-admin/includes/class-wp-automatic-updater.php:853 +msgid "[%s] Background updates have finished" +msgstr "[%s] Les mises à jour en arrière-plan sont terminées" + +#: wp-admin/includes/class-wp-automatic-updater.php:851 +msgid "[%s] There were failures during background updates" +msgstr "[%s] Il y a eu des problèmes lors des mises à jour en arrière-plan" + +#: wp-admin/includes/class-wp-automatic-updater.php:838 +msgid "" +"BETA TESTING?\n" +"=============\n" +"\n" +"This debugging email is sent when you are using a development version of WordPress.\n" +"\n" +"If you think these failures might be due to a bug in WordPress, could you report it?\n" +" * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta\n" +" * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/\n" +"\n" +"Thanks! -- The WordPress Team" +msgstr "" +"BETA TESTEUR ?\n" +"==============\n" +"\n" +"Ce message de débogage est envoyé lorsque vous utilisez une version de développement de WordPress.\n" +"\n" +"Si vous pensez que ces erreurs puissent être dues à un problème du côté de WordPress, pourriez-vous nous les signaler ?\n" +"* Ouvrez une discussion sur le forum de support en anglais : https://wordpress.org/support/forum/alphabeta\n" +"* Ou, si rédiger un rapport de bogue ne vous fait pas peur : http://core.trac.wordpress.org/\n" +"\n" +"Merci ! -- L’équipe WordPress" + +#: wp-admin/includes/class-wp-automatic-updater.php:828 +msgid "FAILED: %s" +msgstr "ÉCHEC : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:822 +msgid "The following translations failed to update:" +msgstr "Les traductions suivantes n’ont pas pu être mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:821 +msgid "The following themes failed to update:" +msgstr "Les thèmes suivants n’ont pas pu être mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:820 +msgid "The following plugins failed to update:" +msgstr "Les extensions suivantes n’ont pas pu être mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:814 +msgid "SUCCESS: %s" +msgstr "SUCCÈS : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:809 +msgid "The following translations were successfully updated:" +msgstr "Les traductions suivantes ont bien été mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:808 +msgid "The following themes were successfully updated:" +msgstr "Les thèmes suivants ont bien été mis à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:807 +msgid "The following plugins were successfully updated:" +msgstr "Les extensions suivantes ont bien été mises à jour :" + +#: wp-admin/includes/class-wp-automatic-updater.php:794 +msgid "FAILED: WordPress failed to update to %s" +msgstr "ÉCHEC : WordPress n’a pas pu être mis à jour vers %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:792 +msgid "SUCCESS: WordPress was successfully updated to %s" +msgstr "SUCCÈS : WordPress a bien été mis à jour vers %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:786 +msgid "WordPress site: %s" +msgstr "Site WordPress : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:731 +msgid "Error code: %s" +msgstr "Code d’erreur : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:718 +msgid "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" +msgstr "Votre hébergeur, les volontaires du forum d’entraide ou un ami développeur devraient pouvoir vous aider à comprendre cette information pour vous aider :" + +#: wp-admin/includes/class-wp-automatic-updater.php:717 +msgid "We have some data that describes the error your site encountered." +msgstr "Nous avons quelques données qui décrivent l’erreur que votre site a rencontré." + +#: wp-admin/includes/class-wp-automatic-updater.php:716 +msgid "Your site was running version %s." +msgstr "Votre site utilise la version %s." + +#: wp-admin/includes/class-wp-automatic-updater.php:712 +msgid "The WordPress Team" +msgstr "L’équipe WordPress" + +#: wp-admin/includes/class-wp-automatic-updater.php:708 +msgid "You also have some plugins or themes with updates available. Update them now:" +msgstr "Certains de vos thèmes et extensions ont également des mises à jour disponibles. Veuillez les mettre à jour dès maintenant :" + +#: wp-admin/includes/class-wp-automatic-updater.php:703 +msgid "If you reach out to us, we'll also ensure you'll never have this problem again." +msgstr "Si vous nous contactez, nous ferons également en sorte que vous ne rencontriez plus jamais ce problème." + +#: wp-admin/includes/class-wp-automatic-updater.php:699 +#: wp-admin/update-core.php:552 +msgid "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." +msgstr "Pour des questions de sécurité, il est important de garder votre site à jour. Par ailleurs, cela rend le Web plus sûr pour vous et vos lecteurs." + +#: wp-admin/includes/class-wp-automatic-updater.php:693 +msgid "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." +msgstr "Si vous rencontrez des problèmes ou avez besoin d’assistance, les volontaires du forum d’entraide de wpfr.net devraient pouvoir vous aider." + +#: wp-admin/includes/class-wp-automatic-updater.php:690 +msgid "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." +msgstr "L’équipe de WordPress est prête à vous aider. Transférez ce message à %s et l’équipe vous aidera à faire en sorte que vous site fonctionne." + +#: wp-admin/includes/class-wp-automatic-updater.php:682 +msgid "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" +msgstr "Veuillez vérifier votre site immédiatement. Il se peut que tout fonctionne. S’il affiche que vous devez faire une mise à jour, vous devriez suivre son conseil :" + +#: wp-admin/includes/class-wp-automatic-updater.php:680 +msgid "This means your site may be offline or broken. Don't panic; this can be fixed." +msgstr "Cela signifie que votre site est peut-être hors ligne ou cassé. Ne paniquez pas, cela peut être réparé." + +#: wp-admin/includes/class-wp-automatic-updater.php:678 +msgid "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." +msgstr "Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour vers la dernière version de WordPress, la %2$s." + +#: wp-admin/includes/class-wp-automatic-updater.php:676 +msgid "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." +msgstr "Votre site à l’adresse %1$s a fait face à un échec critique en essayant de faire une mise à jour de WordPress vers la version %2$s." + +#: wp-admin/includes/class-wp-automatic-updater.php:668 +msgid "We tried but were unable to update your site automatically." +msgstr "Malgré nos tentatives, nous n’avons pas pu mettre votre site à jour automatiquement." + +#: wp-admin/includes/class-wp-automatic-updater.php:661 +msgid "Please update your site at %1$s to WordPress %2$s." +msgstr "Veuillez mettre à jour votre site à l’adresse %1$s pour le passer à WordPress %2$s." + +#: wp-admin/includes/class-wp-automatic-updater.php:653 +#: wp-admin/includes/class-wp-automatic-updater.php:670 +msgid "Updating is easy and only takes a few moments:" +msgstr "La mise à jour est facile et ne requiert que quelques secondes :" + +#: wp-admin/includes/class-wp-automatic-updater.php:652 +msgid "WordPress %s is also now available." +msgstr "WordPress %s est disponible." + +#: wp-admin/includes/class-wp-automatic-updater.php:648 +msgid "For more on version %s, see the About WordPress screen:" +msgstr "Pour en savoir plus sur la version %s, lisez l’écran À Propos de WordPress : " + +#: wp-admin/includes/class-wp-automatic-updater.php:644 +msgid "No further action is needed on your part." +msgstr "Vous n’avez rien de plus à faire." + +#: wp-admin/includes/class-wp-automatic-updater.php:641 +msgid "Howdy! Your site at %1$s has been updated automatically to WordPress %2$s." +msgstr "Salutations ! Votre site à l’adresse %1$s a été automatiquement mis à jour vers WordPress %2$s." + +#. translators: 1: Site name. +#: wp-admin/includes/class-wp-automatic-updater.php:626 +msgid "[%1$s] URGENT: Your site may be down due to a failed update" +msgstr "[%1$s] URGENT : suite à une mise à jour échouée, votre site est peut-être inaccessible." + +#. translators: 1: Site name, 2: WordPress version number. +#: wp-admin/includes/class-wp-automatic-updater.php:621 +msgid "[%1$s] WordPress %2$s is available. Please update!" +msgstr "[%1$s] WordPress %2$s est disponible. Veuillez faire une mise à jour !" + +#. translators: 1: Site name, 2: WordPress version number. +#: wp-admin/includes/class-wp-automatic-updater.php:615 +msgid "[%1$s] Your site has updated to WordPress %2$s" +msgstr "[%1$s] Votre site a été mis à jour vers WordPress %2$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:355 +#: wp-admin/includes/update-core.php:1224 wp-admin/update-core.php:500 +msgid "WordPress updated successfully" +msgstr "WordPress a bien été mis à jour" + +#: wp-admin/includes/class-wp-automatic-updater.php:353 +#: wp-admin/update-core.php:495 +msgid "Installation Failed" +msgstr "Échec de l’installation" + +#: wp-admin/includes/class-wp-automatic-updater.php:342 +#: wp-admin/includes/class-wp-upgrader.php:157 wp-admin/includes/file.php:571 +#: wp-admin/includes/plugin.php:816 wp-admin/includes/theme.php:59 +msgid "Could not access filesystem." +msgstr "Impossible d’accéder au système de fichier." + +#: wp-admin/includes/class-wp-automatic-updater.php:319 +msgid "Translations for %s" +msgstr "Traductions pour %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:315 +msgid "Updating plugin: %s" +msgstr "Mise à jour de l’extension : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:309 +msgid "Updating theme: %s" +msgstr "Mise à jour du thème : %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:303 +msgid "WordPress %s" +msgstr "WordPress %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:302 +msgid "Updating to WordPress %s" +msgstr "Mise à jour vers WordPress %s" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:206 +msgid "To the top" +msgstr "Tout en haut" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:203 +msgid "Down one" +msgstr "Descendre d’un cran" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:202 +msgid "Up one" +msgstr "Un cran vers le haut" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:201 +msgid "Move" +msgstr "Déplacer" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:182 +msgid "CSS Classes (optional)" +msgstr "Classes CSS (facultatives)" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:148 +msgid "Edit menu item" +msgstr "Modifier un élément du menu" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:116 +msgid "sub item" +msgstr "sous-élément" + +#: wp-admin/includes/class-walker-nav-menu-checklist.php:98 +msgctxt "nav menu front page title" +msgid "Home: %s" +msgstr "Accueil : %s" + +#. translators: %s: index.php +#: wp-admin/includes/class-theme-upgrader.php:473 +msgid "The theme is missing the %s file." +msgstr "Le thème n’a pas de fichier %s." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:463 +msgid "The %s stylesheet doesn’t contain a valid theme header." +msgstr "Le fichier %s ne contient pas d’en-tête de thème valide." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:452 +msgid "The theme is missing the %s stylesheet." +msgstr "Le thème n’a pas de fichier %s." + +#: wp-admin/includes/class-theme-upgrader.php:82 +msgid "The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme." +msgstr "Le thème parent n’a pas pu être trouvé. Vous allez devoir installer le thème parent, %s, avant de pouvoir utiliser ce thème enfant." + +#. translators: 1: theme name, 2: version +#: wp-admin/includes/class-theme-upgrader.php:81 +msgid "Successfully installed the parent theme, %1$s %2$s." +msgstr "Le thème parent, %1$s %2$s, a bien été installé." + +#. translators: 1: theme name, 2: version +#: wp-admin/includes/class-theme-upgrader.php:79 +msgid "The parent theme, %1$s %2$s, is currently installed." +msgstr "Le thème parent, %1$s %2$s, est bien installé." + +#. translators: 1: theme name, 2: version +#: wp-admin/includes/class-theme-upgrader.php:77 +msgid "Preparing to install %1$s %2$s…" +msgstr "Préparation à l’installation de %1$s %2$s…" + +#: wp-admin/includes/class-theme-upgrader.php:75 +msgid "This theme requires a parent theme. Checking if it is installed…" +msgstr "Ce thème nécessite un thème parent. Nous vérifions s’il est installé…" + +#. translators: 1: theme name, 2: version +#: wp-admin/includes/class-theme-upgrader.php:74 +msgid "Successfully installed the theme %1$s %2$s." +msgstr "Le thème %1$s %2$s a bien été installé." + +#: wp-admin/includes/class-theme-upgrader.php:72 +msgid "Theme installed successfully." +msgstr "Le thème a bien été installé." + +#: wp-admin/includes/class-theme-upgrader.php:71 +msgid "Theme install failed." +msgstr "L’installation du thème a échoué." + +#: wp-admin/includes/class-theme-upgrader.php:70 +msgid "The theme contains no files." +msgstr "Ce thème ne contient aucun fichier." + +#: wp-admin/includes/class-theme-upgrader.php:69 +msgid "Installing the theme…" +msgstr "Installation du thème…" + +#: wp-admin/includes/class-theme-upgrader.php:56 +msgid "Theme updated successfully." +msgstr "Le thème a bien été mis à jour." + +#: wp-admin/includes/class-theme-upgrader.php:55 +msgid "Theme update failed." +msgstr "La mise à jour du thème a échoué." + +#: wp-admin/includes/class-theme-upgrader.php:54 +msgid "Could not remove the old theme." +msgstr "Impossible de supprimer l’ancien thème." + +#: wp-admin/includes/class-theme-upgrader.php:53 +msgid "Removing the old version of the theme…" +msgstr "Retrait de l’ancienne version du thème…" + +#: wp-admin/includes/class-theme-upgrader.php:49 +msgid "The theme is at the latest version." +msgstr "Vous avez la dernière version de ce thème." + +#: wp-admin/includes/class-theme-upgrader-skin.php:55 +msgid "Customize “%s”" +msgstr "Personnaliser « %s »" + +#: wp-admin/includes/class-theme-upgrader-skin.php:26 wp-admin/update.php:179 +msgid "Update Theme" +msgstr "Mettre à jour le thème" + +#: wp-admin/includes/class-theme-installer-skin.php:77 +msgid "Return to Theme Installer" +msgstr "Retourner à l’installeur de thèmes" + +#: wp-admin/includes/class-theme-installer-skin.php:71 +#: wp-admin/includes/class-theme-upgrader-skin.php:61 +#: wp-admin/includes/class-wp-themes-list-table.php:188 +msgid "Activate “%s”" +msgstr "Activer « %s »" + +#: wp-admin/includes/class-theme-installer-skin.php:69 +#: wp-admin/includes/class-theme-upgrader-skin.php:59 +msgid "Live Preview “%s”" +msgstr "Prévisualisation de « %s »" + +#: wp-admin/includes/class-plugin-upgrader.php:360 +msgid "No valid plugins were found." +msgstr "Aucune extension valide trouvée." + +#: wp-admin/includes/class-plugin-upgrader.php:74 +msgid "Plugin installed successfully." +msgstr "L’extension a bien été installée." + +#: wp-admin/includes/class-plugin-upgrader.php:73 +msgid "Plugin install failed." +msgstr "L’installation de l’extension a échoué." + +#: wp-admin/includes/class-plugin-upgrader.php:72 +msgid "The plugin contains no files." +msgstr "Cette extension ne contient aucun fichier." + +#: wp-admin/includes/class-plugin-upgrader.php:71 +msgid "Installing the plugin…" +msgstr "Installation de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:70 +#: wp-admin/includes/class-theme-upgrader.php:68 +msgid "Unpacking the package…" +msgstr "Décompression de l’archive de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:69 +#: wp-admin/includes/class-theme-upgrader.php:67 +msgid "Downloading install package from %s…" +msgstr "Téléchargement de l’archive d’installation depuis %s…" + +#: wp-admin/includes/class-plugin-upgrader.php:68 +#: wp-admin/includes/class-theme-upgrader.php:66 +msgid "Install package not available." +msgstr "L’archive d’installation n’est pas disponible." + +#: wp-admin/includes/class-plugin-upgrader.php:58 +msgid "Plugins updated successfully." +msgstr "Les extensions ont bien été mises à jour." + +#: wp-admin/includes/class-plugin-upgrader.php:57 +msgid "Plugin updated successfully." +msgstr "L’extension a bien été mise à jour." + +#: wp-admin/includes/class-plugin-upgrader.php:55 +msgid "Could not remove the old plugin." +msgstr "Impossible de supprimer l’ancienne extension." + +#: wp-admin/includes/class-plugin-upgrader.php:54 +msgid "Removing the old version of the plugin…" +msgstr "Retrait de l’ancienne version de l’extension…" + +#: wp-admin/includes/class-plugin-upgrader.php:50 +msgid "The plugin is at the latest version." +msgstr "Vous avez la dernière version de cette extension." + +#: wp-admin/includes/class-plugin-upgrader-skin.php:46 +#: wp-admin/update-core.php:686 wp-admin/update-core.php:720 +msgid "Update progress" +msgstr "Progression de la mise à jour" + +#: wp-admin/includes/class-plugin-upgrader-skin.php:28 wp-admin/update.php:54 +msgid "Update Plugin" +msgstr "Mettre à jour l’extension" + +#: wp-admin/includes/class-plugin-installer-skin.php:67 +#: wp-admin/includes/class-plugin-installer-skin.php:69 +msgid "Return to Plugin Installer" +msgstr "Retourner à l’installeur d’extensions" + +#: wp-admin/includes/class-plugin-installer-skin.php:65 +msgid "Return to Importers" +msgstr "Retour aux importateurs" + +#: wp-admin/includes/class-plugin-installer-skin.php:57 +#: wp-admin/includes/class-plugin-upgrader-skin.php:52 +msgid "Activate Plugin" +msgstr "Activer l’extension" + +#: wp-admin/includes/class-plugin-installer-skin.php:55 +msgid "Activate Plugin & Run Importer" +msgstr "Activer l’extension & lancer l’importateur" + +#: wp-admin/includes/class-plugin-installer-skin.php:41 +msgid "Successfully installed the plugin %s %s." +msgstr "L’extension %s %s a bien été installée." + +#. translators: 1: .po 2: .mo +#: wp-admin/includes/class-language-pack-upgrader.php:338 +msgid "The language pack is missing either the %1$s or %2$s files." +msgstr "Il manque soit le fichier %1$s, soit le fichier %2$s du pack de langue." + +#: wp-admin/includes/class-language-pack-upgrader.php:122 +msgid "Translation updated successfully." +msgstr "La traduction a bien été mise à jour." + +#: wp-admin/includes/class-language-pack-upgrader.php:121 +msgid "Translation update failed." +msgstr "La mise à jour de la traduction a échoué." + +#: wp-admin/includes/class-language-pack-upgrader.php:119 +msgid "Downloading translation from %s…" +msgstr "Téléchargement de la traduction depuis %s…" + +#: wp-admin/includes/class-language-pack-upgrader.php:117 +msgid "The translations are up to date." +msgstr "Les traductions sont à jour." + +#: wp-admin/includes/class-language-pack-upgrader.php:116 +msgid "Some of your translations need updating. Sit tight for a few more seconds while we update them as well." +msgstr "Certaines de vos traductions ont besoin d’être mises à jour. Patientez encore quelques secondes, le temps que nous les mettions également à jour." + +#: wp-admin/includes/class-language-pack-upgrader-skin.php:47 +#: wp-admin/includes/class-wp-automatic-updater.php:320 +msgid "Updating translations for %1$s (%2$s)…" +msgstr "Mise à jour de la traduction de %1$s (%2$s)…" + +#: wp-admin/includes/class-language-pack-upgrader-skin.php:29 +#: wp-admin/update-core.php:423 wp-admin/update-core.php:742 +msgid "Update Translations" +msgstr "Mise à jour des traductions" + +#: wp-admin/includes/class-file-upload-upgrader.php:60 +#: wp-admin/includes/class-file-upload-upgrader.php:94 +#: wp-admin/includes/class-file-upload-upgrader.php:107 +msgid "Please select a file" +msgstr "Veuillez choisir un fichier" + +#: wp-admin/includes/class-core-upgrader.php:138 +#: wp-admin/includes/class-wp-upgrader.php:172 +#: wp-admin/includes/update-core.php:851 wp-admin/includes/update-core.php:928 +#: wp-admin/includes/update-core.php:951 +msgid "The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions." +msgstr "La mise à jour ne peut pas être installée parce que nous n’allons pas pouvoir copier certains fichiers. Ce problème est généralement dû à des incohérences dans les permissions de fichiers." + +#: wp-admin/includes/class-core-upgrader.php:38 +msgid "Due to an error during updating, WordPress has rolled back to your previous version." +msgstr "Suite à une erreur pendant la mise à jour, WordPress vous a ramené à votre version précédente." + +#: wp-admin/includes/class-core-upgrader.php:37 +msgid "Attempting to roll back to previous version." +msgstr "Tentative de retour à la version précédente." + +#: wp-admin/includes/class-core-upgrader.php:36 wp-admin/includes/file.php:669 +#: wp-admin/includes/file.php:775 +msgid "Could not copy files. You may have run out of disk space." +msgstr "Impossible de copier les fichiers. Il se pourrait que vous manquiez de place." + +#: wp-admin/includes/class-core-upgrader.php:35 +msgid "Could not copy files." +msgstr "Impossible de copier les fichiers." + +#: wp-admin/includes/class-core-upgrader.php:34 +#: wp-admin/includes/class-language-pack-upgrader.php:120 +#: wp-admin/includes/class-plugin-upgrader.php:53 +#: wp-admin/includes/class-theme-upgrader.php:52 +msgid "Unpacking the update…" +msgstr "Décompression de la mise à jour…" + +#: wp-admin/includes/class-core-upgrader.php:33 +#: wp-admin/includes/class-plugin-upgrader.php:52 +#: wp-admin/includes/class-theme-upgrader.php:51 +msgid "Downloading update from %s…" +msgstr "Téléchargement de la mise à jour depuis %s…" + +#: wp-admin/includes/class-core-upgrader.php:32 +#: wp-admin/includes/class-language-pack-upgrader.php:118 +#: wp-admin/includes/class-plugin-upgrader.php:51 +#: wp-admin/includes/class-theme-upgrader.php:50 +msgid "Update package not available." +msgstr "Aucune archive de mise à jour disponible." + +#: wp-admin/includes/class-core-upgrader.php:31 +msgid "Another update is currently in progress." +msgstr "Une autre mise à jour est actuellement en cours." + +#: wp-admin/includes/class-core-upgrader.php:30 +msgid "WordPress is at the latest version." +msgstr "Vous avez la dernière version de WordPress." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:47 +msgid "All updates have been completed." +msgstr "Toutes les mises à jour sont terminées." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:46 +msgid "Hide Details" +msgstr "Masquer les détails" + +#: wp-admin/includes/class-bulk-upgrader-skin.php:46 +msgid "Show Details" +msgstr "Afficher les détails" + +#. translators: 1: Title of an update +#: wp-admin/includes/class-bulk-upgrader-skin.php:46 +msgid "%1$s updated successfully." +msgstr "%1$s a bien été mis à jour." + +#. translators: 1: Title of an update +#: wp-admin/includes/class-bulk-upgrader-skin.php:44 +msgid "The update of %1$s failed." +msgstr "La mise à jour de %1$s a échoué." + +#. translators: 1: Title of an update, 2: Error message +#: wp-admin/includes/class-bulk-upgrader-skin.php:42 +msgid "An error occurred while updating %1$s: %2$s" +msgstr "Une erreur est survenue lors de la mise à jour de %1$s  %2$s" + +#: wp-admin/includes/class-bulk-upgrader-skin.php:40 +msgid "The update process is starting. This process may take a while on some hosts, so please be patient." +msgstr "Le processus de mise à jour se lance. Il peut prendre un certain temps chez certains hébergeurs, merci pour votre patience." + +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:49 +#: wp-admin/includes/class-theme-installer-skin.php:79 +#: wp-admin/includes/class-theme-upgrader-skin.php:68 +msgid "Return to Themes page" +msgstr "Retourner sur la page des thèmes" + +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:23 +msgid "Updating Theme %1$s (%2$d/%3$d)" +msgstr "Mise à jour du thème %1$s (%2$d/%3$d)" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:50 +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:50 +#: wp-admin/includes/class-language-pack-upgrader-skin.php:73 +msgid "Return to WordPress Updates page" +msgstr "Retourner aux mises à jour de WordPress" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:49 +#: wp-admin/includes/class-plugin-installer-skin.php:71 +#: wp-admin/includes/class-plugin-upgrader-skin.php:53 +msgid "Return to Plugins page" +msgstr "Retourner sur la page des extensions" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:23 +msgid "Updating Plugin %1$s (%2$d/%3$d)" +msgstr "Mise à jour de l’extension %1$s (%2$d/%3$d)" + +#: wp-admin/includes/bookmark.php:312 +msgid "If you are looking to use the link manager, please install the Link Manager plugin." +msgstr "Si vous souhaitez utiliser le gestionnaire de liens, veuillez installer l’extension Link Manager." + +#: wp-admin/includes/bookmark.php:208 +msgid "Could not insert link into the database" +msgstr "Impossible d’insérer le lien dans la base de données" + +#: wp-admin/includes/bookmark.php:200 +msgid "Could not update link in the database" +msgstr "Impossible de mettre à jour le lien dans la base de données" + +#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:315 +#: wp-admin/link-manager.php:12 wp-admin/link-manager.php:77 +msgid "Sorry, you are not allowed to edit the links for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les liens de ce site." + +#: wp-admin/includes/ajax-actions.php:3842 +#: wp-admin/includes/ajax-actions.php:3885 wp-admin/plugins.php:13 +msgid "Sorry, you are not allowed to manage plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les extensions de ce site." + +#: wp-admin/includes/ajax-actions.php:3812 +msgid "Plugin could not be deleted." +msgstr "L’extension ne peut pas être supprimée." + +#: wp-admin/includes/ajax-actions.php:3783 wp-admin/plugins.php:449 +msgid "You cannot delete a plugin while it is active on the main site." +msgstr "Vous ne pouvez pas effacer une extension tant qu’elle est activée sur le site principal." + +#: wp-admin/includes/ajax-actions.php:3774 wp-admin/plugins.php:231 +msgid "Sorry, you are not allowed to delete plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer des extensions sur ce site." + +#: wp-admin/includes/ajax-actions.php:3717 +#: wp-admin/includes/ajax-actions.php:3744 +#: wp-admin/includes/class-plugin-upgrader.php:56 +msgid "Plugin update failed." +msgstr "La mise à jour de l’extension a échoué." + +#: wp-admin/includes/ajax-actions.php:3673 wp-admin/update.php:24 +#: wp-admin/update.php:50 wp-admin/update.php:71 +msgid "Sorry, you are not allowed to update plugins for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour des extensions sur ce site." + +#: wp-admin/includes/ajax-actions.php:3570 wp-admin/plugin-install.php:18 +#: wp-admin/update.php:96 wp-admin/update.php:144 +msgid "Sorry, you are not allowed to install plugins on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’installer des extensions sur ce site." + +#: wp-admin/includes/ajax-actions.php:3560 +#: wp-admin/includes/ajax-actions.php:3659 +#: wp-admin/includes/ajax-actions.php:3762 +msgid "No plugin specified." +msgstr "Aucune extension spécifiée." + +#: wp-admin/includes/ajax-actions.php:3539 +msgid "Theme could not be deleted." +msgstr "Le thème ne peut pas être supprimé." + +#: wp-admin/includes/ajax-actions.php:3503 +msgid "Sorry, you are not allowed to delete themes on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site." + +#: wp-admin/includes/ajax-actions.php:3474 +msgid "Update failed." +msgstr "Échec de mise à jour." + +#: wp-admin/includes/ajax-actions.php:3419 wp-admin/update.php:172 +#: wp-admin/update.php:193 +msgid "Sorry, you are not allowed to update themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour les thèmes de ce site." + +#: wp-admin/includes/ajax-actions.php:3352 +#: wp-admin/includes/ajax-actions.php:3463 +#: wp-admin/includes/ajax-actions.php:3521 +#: wp-admin/includes/ajax-actions.php:3614 +#: wp-admin/includes/ajax-actions.php:3733 +#: wp-admin/includes/ajax-actions.php:3796 +msgid "Unable to connect to the filesystem. Please confirm your credentials." +msgstr "Impossible de se connecter au système de fichier. Veuillez confirmer vos informations d’identification." + +#: wp-admin/includes/ajax-actions.php:3312 wp-admin/theme-install.php:16 +#: wp-admin/update.php:219 wp-admin/update.php:249 +msgid "Sorry, you are not allowed to install themes on this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’installer des thèmes sur ce site." + +#: wp-admin/includes/ajax-actions.php:3300 +#: wp-admin/includes/ajax-actions.php:3407 +#: wp-admin/includes/ajax-actions.php:3492 +msgid "No theme specified." +msgstr "Aucun thème spécifié." + +#: wp-admin/includes/ajax-actions.php:3162 +msgid "Image could not be processed." +msgstr "L’image n’a pas pu être traitée." + +#. translators: 1: User's display name. +#: wp-admin/includes/ajax-actions.php:3116 +msgid "%s has been logged out." +msgstr "%s a été déconnecté." + +#: wp-admin/includes/ajax-actions.php:3112 +msgid "You are now logged out everywhere else." +msgstr "Vous êtes désormais déconnecté partout ailleurs." + +#: wp-admin/includes/ajax-actions.php:3104 +msgid "Could not log out user sessions. Please try again." +msgstr "Impossible de déconnecter les sessions utilisateur. Veuillez réessayer." + +#: wp-admin/includes/ajax-actions.php:3011 +msgid "This preview is unavailable in the editor." +msgstr "Cette prévisualisation n’est pas disponible dans l’éditeur." + +#: wp-admin/includes/ajax-actions.php:2981 +msgid "%s failed to embed." +msgstr "%s n’a pas pu être intégré." + +#: wp-admin/includes/ajax-actions.php:2022 +msgid "Sorry, you are not allowed to attach files to this post." +msgstr "Désolé, vous n’êtes pas autorisé à attacher des fichiers à ce contenu." + +#: wp-admin/includes/ajax-actions.php:1785 +#: wp-admin/includes/class-wp-posts-list-table.php:1000 +#: wp-admin/includes/class-wp-posts-list-table.php:1633 +#: wp-admin/includes/meta-boxes.php:88 wp-admin/includes/meta-boxes.php:112 +#: wp-admin/includes/template.php:1712 +msgid "Scheduled" +msgstr "Planifié" + +#: wp-admin/includes/ajax-actions.php:1773 +#: wp-admin/includes/class-wp-posts-list-table.php:577 +#: wp-admin/includes/class-wp-posts-list-table.php:1414 +msgid "Date" +msgstr "Date" + +#: wp-admin/includes/ajax-actions.php:1773 +msgid "Type" +msgstr "Type" + +#: wp-admin/includes/ajax-actions.php:1727 +#: wp-admin/includes/ajax-actions.php:1732 +#: wp-admin/includes/edit-tag-messages.php:18 +msgid "Item not updated." +msgstr "L’élément n’a pas été mis à jour" + +#: wp-admin/includes/ajax-actions.php:1621 +msgid "Saving is disabled: %s is currently editing this post." +msgstr "Enregistrement automatique désactivé : %s modifie actuellement cet article." + +#: wp-admin/includes/ajax-actions.php:1621 +msgid "Saving is disabled: %s is currently editing this page." +msgstr "Enregistrement automatique désactivé : %s modifie actuellement cette page." + +#: wp-admin/includes/ajax-actions.php:1620 +msgid "Someone" +msgstr "Quelqu’un" + +#. translators: %s: the new user +#: wp-admin/includes/ajax-actions.php:1354 +msgid "User %s added" +msgstr "L’utilisateur %s a été ajouté" + +#: wp-admin/includes/ajax-actions.php:1288 +msgid "Please provide a custom field name." +msgstr "Veuillez saisir un nom pour le champ personnalisé." + +#: wp-admin/includes/ajax-actions.php:1265 +#: wp-admin/includes/ajax-actions.php:1270 +#: wp-admin/includes/ajax-actions.php:1290 +msgid "Please provide a custom field value." +msgstr "Veuillez saisir une valeur pour le champ personnalisé." + +#. translators: 1: Post creation date, 2: Post creation time +#: wp-admin/includes/ajax-actions.php:1252 +msgid "Draft created on %1$s at %2$s" +msgstr "Brouillon créé le %1$s à %2$s" + +#: wp-admin/includes/ajax-actions.php:1030 +#: wp-admin/includes/ajax-actions.php:1115 +msgid "ERROR: please type a comment." +msgstr "ERREUR : veuillez saisir un commentaire." + +#: wp-admin/includes/ajax-actions.php:1026 +msgid "Sorry, you must be logged in to reply to a comment." +msgstr "Désolé, vous devez être connecté(e) pour répondre à un commentaire." + +#: wp-admin/includes/ajax-actions.php:1006 +msgid "ERROR: you are replying to a comment on a draft post." +msgstr "ERREUR : vous être en train de laisser un commentaire sur un brouillon." + +#: wp-admin/includes/ajax-actions.php:755 +msgid "Comment %d does not exist" +msgstr "Le commentaire %d n’existe pas." + +#: wp-admin/includes/ajax-actions.php:433 +#: wp-admin/includes/class-wp-list-table.php:762 +#: wp-admin/includes/class-wp-list-table.php:1349 +msgid "%s item" +msgid_plural "%s items" +msgstr[0] "%s élément" +msgstr[1] "%s éléments" + +#. translators: Number of comments in moderation +#: wp-admin/includes/ajax-actions.php:381 +#: wp-admin/includes/ajax-actions.php:1087 wp-admin/includes/dashboard.php:281 +msgctxt "comments" +msgid "%s in moderation" +msgid_plural "%s in moderation" +msgstr[0] "%s en attente de validation" +msgstr[1] "%s en attente de validation" + +#. translators: 1: user_login, 2: user_email +#: wp-admin/includes/ajax-actions.php:291 +msgctxt "user autocomplete result" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: wp-admin/import.php:197 +msgid "If the importer you need is not listed, search the plugin directory to see if an importer is available." +msgstr "Si l’importateur dont vous avec besoin n’est pas présent, lancez une recherche dans le dépôt d’extensions pour voir s’il s’y trouve." + +#: wp-admin/import.php:176 +#: wp-admin/includes/class-wp-theme-install-list-table.php:319 +#: wp-admin/includes/class-wp-themes-list-table.php:228 +msgid "Details" +msgstr "Détails" + +#. translators: %s: Importer name +#. translators: 1: Plugin name and version. +#: wp-admin/import.php:175 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:507 +#: wp-admin/includes/class-wp-plugins-list-table.php:786 +msgid "More information about %s" +msgstr "Plus d’informations à propos de %s" + +#. translators: URL to wp-admin/import.php +#: wp-admin/import.php:142 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Cet importateur n’est pas installé. Veuillez installer les importateurs depuis le site principal." + +#. translators: %s: Importer name +#. translators: %s: plugin name +#. translators: %s: Theme name +#: wp-admin/import.php:136 +#: wp-admin/includes/class-wp-theme-install-list-table.php:289 +#: wp-admin/includes/dashboard.php:1263 wp-admin/theme-install.php:276 +msgid "Install %s" +msgstr "Installer %s" + +#: wp-admin/import.php:86 +msgid "No importers are available." +msgstr "Aucun outil d’importation n’est disponible." + +#: wp-admin/import.php:68 +msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" +msgstr "Si vous avez des articles ou des commentaires dans un autre système de site, WordPress peut les importer dans votre site actuel. Pour commencer, choisissez un système d’origine ci-dessous :" + +#. translators: %s: importer slug +#: wp-admin/import.php:64 +msgid "The %s importer is invalid or is not installed." +msgstr "L’importateur %s n’est pas installé ou n’est pas valide." + +#: wp-admin/import.php:62 wp-admin/themes.php:180 wp-admin/users.php:235 +msgid "ERROR:" +msgstr "ERREUR :" + +#: wp-admin/import.php:29 +msgid "Documentation on Import" +msgstr "Documentation sur l’importation (en)" + +#: wp-admin/import.php:24 +msgid "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently." +msgstr "Dans les versions précédentes de WordPress, tous les importateurs étaient directement inclus . Nous les avons convertis en extensions, car la plupart des gens ne s’en servent que très rarement, voire une seule fois." + +#: wp-admin/import.php:23 +msgid "This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform." +msgstr "Cet écran liste les liens vers les extensions servant à importer des données en provenance d’autres plates-formes de blogs ou gestionnaires de contenus. Choisissez la plate-forme d’origine, et cliquez sur « Installer maintenant » dans la fenêtre qui s’affiche. Si vous ne trouvez pas votre plate-forme, cliquez sur le lien « Recherche » dans le Dépôt d’Extensions et lancez une recherche - peut-être qu’une autre extension répondra à vos attentes." + +#: wp-admin/freedoms.php:50 +msgid "Don’t you wish all software came with these freedoms? So do we! For more information, check out the Free Software Foundation." +msgstr "Ne préféreriez-vous pas que tous vos logiciels vous donnent autant de liberté ? Nous aussi ! Pour obtenir plus d’informations, rendez-vous sur le site de la Free Software Foundation, ou en français, ceux de l’April et de l’Aful." + +#: wp-admin/freedoms.php:48 +msgid "Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they don’t respect the WordPress license, we don’t recommend them." +msgstr "Tous les thèmes et extensions disponibles sur le répertoire de WordPress.org respectent à 100%% la licence GPL, ou une licence libre et compatible. Ainsi, vous pouvez en toute sûreté y chercher des extensions et des thèmes. Si vous téléchargez une extension ou un thème en provenance d’une autre source, vérifiez bien qu’il respecte la licence GPL. Si ce n’est pas le cas, l’équipe de WordPress ne vous le recommande alors pas." + +#: wp-admin/freedoms.php:46 wp-admin/theme-install.php:86 +#: wp-admin/themes.php:92 +msgid "https://wordpress.org/themes/" +msgstr "https://fr.wordpress.org/themes/" + +#: wp-admin/freedoms.php:45 wp-admin/includes/plugin-install.php:235 +#: wp-admin/includes/plugin-install.php:599 wp-admin/plugin-install.php:82 +#: wp-admin/plugins.php:400 +msgid "https://wordpress.org/plugins/" +msgstr "https://fr.wordpress.org/plugins/" + +#: wp-admin/freedoms.php:41 +msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first." +msgstr "WordPress croît à chaque fois que vous en parlez à vos amis, et à chaque fois que les milliers de sociétés et services dans le monde construits à l’aide de ou autour de WordPress en font mention à leurs utilisateurs. Nous sommes flattés chaque fois que quelqu’un vante les mérites de cet outil ; veillez cependant à respecter les conseils d’utilisation de notre marque déposée." + +#: wp-admin/freedoms.php:38 +msgid "You have the freedom to distribute copies of your modified versions to others. By doing this you can give the whole community a chance to benefit from your changes." +msgstr "Vous êtes libres de distribuer à autrui des copies de votre propre version modifiée de ce programme. Ce faisant, vous offrez à la communauté la possibilité de profiter de vos modifications." + +#: wp-admin/freedoms.php:37 +msgid "You have the freedom to redistribute copies of the original program so you can help your neighbor." +msgstr "Vous êtes libres de redistribuer des copies du programme original, afin d’aider votre prochain." + +#: wp-admin/freedoms.php:36 +msgid "You have access to the source code, the freedom to study how the program works, and the freedom to change it to make it do what you wish." +msgstr "Vous avez accès au code source, êtes libres d’étudier la manière dont le programme fonctionne, et libres de le modifier pour en faire ce que vous souhaitez." + +#: wp-admin/freedoms.php:35 +msgid "You have the freedom to run the program, for any purpose." +msgstr "Vous êtes libre de modifier ce programme, dans n’importe quel but." + +#: wp-admin/freedoms.php:32 +msgid "WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL." +msgstr "WordPress est un logiciel libre et au code ouvert (open-source), conçu par une communauté de développeurs majoritairement volontaires, partout dans le monde. WordPress est livré avec des libertés formidables et qui changent la vision du monde, grâce à sa licence, la GPL." + +#: wp-admin/export.php:290 +msgid "Download Export File" +msgstr "Télécharger le fichier d’export" + +#: wp-admin/export.php:261 wp-admin/includes/media.php:2244 +#: wp-admin/menu.php:49 wp-admin/menu.php:253 +msgid "Media" +msgstr "Médias" + +#: wp-admin/export.php:205 wp-admin/export.php:247 +#: wp-admin/includes/meta-boxes.php:78 +msgid "Status:" +msgstr "État :" + +#: wp-admin/export.php:197 wp-admin/export.php:239 wp-admin/export.php:271 +msgid "End date:" +msgstr "Date de fin :" + +#: wp-admin/export.php:192 wp-admin/export.php:234 wp-admin/export.php:266 +msgid "Start date:" +msgstr "Date de début :" + +#: wp-admin/export.php:191 wp-admin/export.php:233 wp-admin/export.php:265 +msgid "Date range:" +msgstr "Date de création :" + +#: wp-admin/export.php:177 wp-admin/export.php:219 +msgid "Authors:" +msgstr "Auteurs :" + +#: wp-admin/export.php:173 wp-admin/export.php:184 wp-admin/export.php:207 +#: wp-admin/export.php:226 wp-admin/export.php:249 +msgid "All" +msgstr "Tout" + +#: wp-admin/export.php:172 +msgid "Categories:" +msgstr "Catégories :" + +#: wp-admin/export.php:169 wp-admin/includes/class-wp-users-list-table.php:322 +msgid "Posts" +msgstr "Articles" + +#: wp-admin/export.php:167 +msgid "This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts." +msgstr "Il contiendra tous vos articles, pages, commentaires, champs personnalisés, termes, menus de navigation et types de contenus personnalisés." + +#: wp-admin/export.php:166 +msgid "All content" +msgstr "Tout le contenu" + +#: wp-admin/export.php:164 +msgid "Content to export" +msgstr "Contenu à exporter" + +#: wp-admin/export.php:161 +msgid "Choose what to export" +msgstr "Choisissez ce que vous souhaitez exporter" + +#: wp-admin/export.php:159 +msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site." +msgstr "Une fois que le fichier téléchargé a été enregistré, vous pouvez utiliser la fonction Importer d’un autre site WordPress pour importer ce fichier dans cet autre site." + +#: wp-admin/export.php:158 +msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." +msgstr "Ce format, que nous appelons WordPress eXtended RSS (ou WXR), contient tous vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes." + +#: wp-admin/export.php:157 +msgid "When you click the button below WordPress will create an XML file for you to save to your computer." +msgstr "Cliquez sur ce bouton pour que WordPress crée un fichier XML que vous pourrez enregistrer sur votre ordinateur." + +#: wp-admin/export.php:54 +msgid "Documentation on Export" +msgstr "Documentation sur l’exportation (en)" + +#: wp-admin/export.php:49 +msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." +msgstr "Une fois généré, le fichier WXR peut être importé dans une autre installation WordPress, ou une autre plate-forme de blog capable de lire ce format." + +#: wp-admin/export.php:48 +msgid "You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status." +msgstr "Vous pouvez exporter le contenu de votre site dans un fichier, afin de l’importer dans une autre installation autonome ou une plate-forme. Le fichier d’export utilise un format de type XML, baptisé WXR. Il peut contenir vos articles, pages, commentaires, champs personnalisés, catégories et étiquettes. Vous pouvez utiliser des filtres pour que le fichier WXR ne contienne les articles que d’une certaine plage de dates (par mois), un auteur donné, une catégorie précise, ou des états de publication." + +#: wp-admin/export.php:17 wp-admin/menu.php:242 +msgid "Export" +msgstr "Exporter" + +#: wp-admin/export.php:13 +msgid "Sorry, you are not allowed to export the content of this site." +msgstr "Désolé, vous n’avez pas l’autorisation d’exporter le contenu de ce site." + +#: wp-admin/edit.php:286 +msgid "%s page restored from the Trash." +msgid_plural "%s pages restored from the Trash." +msgstr[0] "%s page récupérée depuis la corbeille." +msgstr[1] "%s pages récupérées depuis la corbeille." + +#: wp-admin/edit.php:285 +msgid "%s page moved to the Trash." +msgid_plural "%s pages moved to the Trash." +msgstr[0] "%s page déplacée dans la corbeille." +msgstr[1] "%s pages déplacées dans la corbeille." + +#: wp-admin/edit.php:284 +msgid "%s page permanently deleted." +msgid_plural "%s pages permanently deleted." +msgstr[0] "%s page définitivement supprimée." +msgstr[1] "%s pages définitivement supprimées." + +#: wp-admin/edit.php:283 +msgid "%s page not updated, somebody is editing it." +msgid_plural "%s pages not updated, somebody is editing them." +msgstr[0] "%s page n’a pas été mise à jour : quelqu’un est déjà en train de la modifier." +msgstr[1] "%s pages n’ont pas été mises à jour : quelqu’un est déjà en train de les modifier." + +#: wp-admin/edit.php:282 +msgid "1 page not updated, somebody is editing it." +msgstr "Une page n’a pas été mise à jour, car quelqu’un est en train de la modifier." + +#: wp-admin/edit.php:281 +msgid "%s page updated." +msgid_plural "%s pages updated." +msgstr[0] "%s page mise à jour." +msgstr[1] "%s pages mises à jour." + +#: wp-admin/edit.php:278 +msgid "%s post restored from the Trash." +msgid_plural "%s posts restored from the Trash." +msgstr[0] "%s article récupéré depuis la corbeille." +msgstr[1] "%s articles récupérés depuis la corbeille." + +#: wp-admin/edit.php:277 +msgid "%s post moved to the Trash." +msgid_plural "%s posts moved to the Trash." +msgstr[0] "%s article déplacé dans la corbeille." +msgstr[1] "%s articles déplacés dans la corbeille." + +#: wp-admin/edit.php:276 +msgid "%s post permanently deleted." +msgid_plural "%s posts permanently deleted." +msgstr[0] "%s article supprimé définitivement." +msgstr[1] "%s articles supprimés définitivement." + +#: wp-admin/edit.php:275 +msgid "%s post not updated, somebody is editing it." +msgid_plural "%s posts not updated, somebody is editing them." +msgstr[0] "%s article n’a pas été mis à jour : quelqu’un est déjà en train de la modifier." +msgstr[1] "%s articles n’ont pas été mis à jour : quelqu’un est déjà en train de les modifier." + +#: wp-admin/edit.php:274 +msgid "1 post not updated, somebody is editing it." +msgstr "Un article n’a pas été mis à jour, car quelqu’un est en train de le modifier." + +#: wp-admin/edit.php:273 +msgid "%s post updated." +msgid_plural "%s posts updated." +msgstr[0] "%s article mis à jour." +msgstr[1] "%s articles mis à jour." + +#: wp-admin/edit.php:249 +msgid "Documentation on Managing Pages" +msgstr "Documentation sur la gestion des pages (en)" + +#: wp-admin/edit.php:244 +msgid "You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk Actions menu to edit the metadata for multiple pages at once." +msgstr "Vous pouvez également réaliser les mêmes sortes d’actions, comme réduire la liste par le biais des filtres, en passant par les liens qui apparaissent quand la souris passe au-dessus d’une ligne, ou en utilisant le menu « Actions groupées » pour modifier les métadonnées de plusieurs pages d’un seul coup." + +#: wp-admin/edit.php:243 +msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way." +msgstr "La gestion des pages est très proche de celle des articles, et les écrans peuvent être personnalisés de la même manière." + +#: wp-admin/edit.php:241 +msgid "Managing Pages" +msgstr "Gestion de pages" + +#: wp-admin/edit.php:228 +msgid "Documentation on Managing Posts" +msgstr "Documentation sur la gestion des articles (en)" + +#: wp-admin/edit.php:223 +msgid "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears." +msgstr "Vous pouvez également modifier plusieurs articles en même temps. Cochez les cases des articles que vous voulez modifier, sélectionnez l’option « Modifier » du menu « Actions groupées », et cliquez sur « Appliquer ». Vous pourrez alors d’un coup modifier les métadonnées (catégories, auteur, etc.) pour tous les articles sélectionnés. Pour retirer un article de la sélection, cliquez simplement sur la croix à gauche de son titre dans la zone « Modifications groupées » qui apparaît." + +#: wp-admin/edit.php:222 +msgid "You can also edit or move multiple posts to the trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk Actions menu and click Apply." +msgstr "Vous pouvez également modifier plusieurs articles à la fois, ou les déplacer dans la corbeille d’un coup. Sélectionnez les articles sur lesquels vous voulez lancer une action, puis sélectionnez l’action que vous voulez lancer dans le menu « Actions groupées » et cliquez sur « Appliquer »." + +#: wp-admin/edit.php:220 wp-admin/includes/class-wp-list-table.php:463 +msgid "Bulk Actions" +msgstr "Actions groupées" + +#: wp-admin/edit.php:215 +msgid "Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status." +msgstr "Aperçu vous donnera une idée de ce à quoi votre brouillon ressemble si vous le publiez tel quel. Afficher vous enverra sur votre site, à l’adresse de l’article. L’action disponible dépend de l’état de votre article." + +#: wp-admin/edit.php:214 +msgid "Trash removes your post from this list and places it in the trash, from which you can permanently delete it." +msgstr "Mettre à la corbeille retire l’article de la liste et le déplace dans la corbeille, d’où vous pourrez le supprimer définitivement." + +#: wp-admin/edit.php:213 +msgid "Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen." +msgstr "Modification Rapide vous donne un accès rapide aux métadonnées de votre article, vous permettant de mettre à jour certains détails sans devoir quitter la liste." + +#: wp-admin/edit.php:212 +msgid "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." +msgstr "Modifier vous envoie sur l’écran de modification de cet article. Vous pouvez également vous rendre sur cet écran en cliquant sur le titre de l’article." + +#: wp-admin/edit.php:210 +msgid "Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:" +msgstr "Passer la souris au-dessus d’une ligne de la liste d’articles, fera s’afficher des liens vous permettant de gérer l’article. Vous pouvez lancer les actions suivantes :" + +#: wp-admin/edit.php:208 wp-admin/upload.php:197 +msgid "Available Actions" +msgstr "Actions disponibles" + +#: wp-admin/edit.php:203 +msgid "You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list." +msgstr "Vous pouvez affiner la liste pour qu’elle n’affiche que les articles d’une catégorie spécifique ou d’un mois donné, à l’aide du menu déroulant situé au-dessus de la liste. Cliquez sur le bouton « Filtrer » après avoir fait votre choix. Vous pouvez également affiner la liste en cliquant sur l’auteur d’un article, sa catégorie ou une étiquette." + +#: wp-admin/edit.php:202 +msgid "You can view posts in a simple title list or with an excerpt using the Screen Options tab." +msgstr "Vous pouvez voir la liste des articles en titre simple ou avec un extrait à l’aide du bouton « Options de l’écran ». " + +#: wp-admin/edit.php:201 +msgid "You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts." +msgstr "Vous pouvez filtrer la liste des articles par statut en utilisant les liens au dessus de la liste des articles pour n’afficher que les articles avec ce statut. La vue par défaut affiche tous les articles." + +#: wp-admin/edit.php:200 +msgid "You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab." +msgstr "Vous pouvez afficher/masquer les colonnes en fonction de vos besoins, et décider du nombre d’articles à afficher par écran à l’aide de l’onglet « Options de l’écran » ;" + +#: wp-admin/edit.php:198 +msgid "You can customize the display of this screen’s contents in a number of ways:" +msgstr "Vous pouvez personnaliser l’affichage de cet écran de plusieurs manières :" + +#: wp-admin/edit.php:196 +msgid "Screen Content" +msgstr "Contenu de l’écran" + +#: wp-admin/edit.php:192 +msgid "This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow." +msgstr "Cet écran vous donne accès à tous vos articles. Vous pouvez personnaliser son affichage afin qu’il corresponde au mieux à vos besoins." + +#: wp-admin/edit.php:144 wp-admin/edit.php:147 wp-admin/post.php:260 +#: wp-admin/post.php:263 wp-admin/upload.php:162 +msgid "Error in deleting." +msgstr "Erreur pendant la suppression." + +#: wp-admin/edit.php:128 wp-admin/post.php:240 wp-admin/upload.php:150 +msgid "Error in restoring from Trash." +msgstr "Erreur pendant la récupération depuis la corbeille." + +#: wp-admin/edit.php:125 wp-admin/post.php:237 wp-admin/upload.php:147 +msgid "Sorry, you are not allowed to restore this item from the Trash." +msgstr "Désolé, vous n’avez pas l’autorisation de récupérer cet élément depuis la corbeille." + +#: wp-admin/edit.php:114 wp-admin/post.php:222 wp-admin/upload.php:138 +msgid "Error in moving to Trash." +msgstr "Erreur lors du déplacement dans la corbeille." + +#: wp-admin/edit.php:106 wp-admin/post.php:214 wp-admin/upload.php:135 +msgid "Sorry, you are not allowed to move this item to the Trash." +msgstr "Désolé, vous n’avez pas l’autorisation de déplacer cet élément dans la corbeille." + +#: wp-admin/edit-tags.php:550 +msgid "Tags can be selectively converted to categories using the tag to category converter." +msgstr "Les étiquettes peuvent être converties de manière sélective en catégories via le convertisseur étiquettes vers catégories" + +#: wp-admin/edit-tags.php:545 +msgid "Categories can be selectively converted to tags using the category to tag converter." +msgstr "Les catégories peuvent être converties de manière sélective en étiquettes via le convertisseur catégories vers étiquettes." + +#. translators: %s: default category +#: wp-admin/edit-tags.php:538 +msgid "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the category %s." +msgstr "Supprimer une catégorie ne supprime pas les articles qu’elle contient. Les articles affectés uniquement à la catégorie supprimée seront affectés à la catégorie %s." + +#: wp-admin/edit-tags.php:535 wp-admin/options-general.php:352 +msgid "Note:" +msgstr "Note :" + +#: wp-admin/edit-tags.php:268 +msgid "Documentation on Tags" +msgstr "Documentation sur les étiquettes (en)" + +#: wp-admin/edit-tags.php:266 +msgid "Documentation on Link Categories" +msgstr "Documentation sur les catégories de liens (en)" + +#: wp-admin/edit-tags.php:264 +msgid "Documentation on Categories" +msgstr "Documentation sur les catégories (en)" + +#: wp-admin/edit-tags.php:256 +msgid "Adding Tags" +msgstr "Ajout d’étiquettes" + +#: wp-admin/edit-tags.php:256 +msgid "Adding Categories" +msgstr "Ajout de catégories" + +#: wp-admin/edit-tags.php:252 +msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." +msgstr "Vous pouvez modifier l’affichage de cet écran via l’onglet « Options de l’écran », afin de définir le nombre d’éléments à afficher par écran, et afficher/masquer les colonnes du tableau." + +#: wp-admin/edit-tags.php:250 +msgid "Description — The description is not prominent by default; however, some themes may display it." +msgstr "Description — La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent." + +#: wp-admin/edit-tags.php:248 +msgid "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." +msgstr "Parent — Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée « Jazz », et à l’intérieur, plusieurs catégories comme « Bebop » et « Big Band ». Le fait d’avoir une hiérarchie est totalement facultatif. Pour créer une sous-catégorie, choisissez juste une autre catégorie depuis la liste déroulante « Parente » ." + +#: wp-admin/edit-tags.php:245 +msgid "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +msgstr "Identifiant — L’identifiant est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union ;" + +#: wp-admin/edit-tags.php:242 +msgid "Name — The name is how it appears on your site." +msgstr "Nom — Le nom est utilisé un peu partout sur votre site ;" + +#: wp-admin/edit-tags.php:239 +msgid "When adding a new tag on this screen, you’ll fill in the following fields:" +msgstr "Quand vous ajoutez une nouvelle étiquette via cet écran, vous devez remplir les champs suivants :" + +#: wp-admin/edit-tags.php:237 +msgid "When adding a new category on this screen, you’ll fill in the following fields:" +msgstr "Quand vous ajoutez une nouvelle catégorie via cet écran, vous devez remplir les champs suivants :" + +#: wp-admin/edit-tags.php:227 +msgid "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." +msgstr "Quelle est la différence entre les catégories et les étiquettes ? Normalement, les étiquettes identifient les informations importantes dans votre article (noms, sujets, etc.) qui seraient susceptibles de revenir dans d’autres articles, ou pas. De leur côté, les catégories ont des sections prédéterminées. Si vous voyez votre site comme un livre, alors les catégories sont la table des matières, et les étiquettes forment l’index." + +#: wp-admin/edit-tags.php:225 +msgid "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." +msgstr "Vous pouvez supprimer des catégories de liens avec la liste déroulante « Actions groupées », mais cette action ne supprime pas les liens contenus dans la catégorie. Au lieu de cela, ils sont déplacés dans la catégorie de liens par défaut." + +#: wp-admin/edit-tags.php:222 +msgid "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another." +msgstr "Vous pouvez assigner des étiquettes à vos articles via le bloc dédié. Au contraire des catégories, les étiquettes n’ont pas de hiérarchie, ce qui signifie qu’elles ne peuvent pas être liés entre elles." + +#: wp-admin/edit-tags.php:220 +msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." +msgstr "Vous pouvez créer des groupes de liens en utilisant les catégories de liens. Le nom d’une catégorie de liens doit être unique, et les catégories de liens ne sont pas les mêmes que les catégories de vos articles." + +#: wp-admin/edit-tags.php:218 +msgid "You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings." +msgstr "Vous pouvez utiliser les catégories pour donner des sections à votre site, et grouper les articles connexes. La catégorie par défaut est « Non classé » ; vous pouvez la modifier dans vos options d’écriture." + +#: wp-admin/edit-tags.php:141 wp-admin/edit-tags.php:161 wp-admin/post.php:107 +#: wp-admin/term.php:26 +msgid "You attempted to edit an item that doesn’t exist. Perhaps it was deleted?" +msgstr "Vous tentez de modifier un contenu qui n’existe pas. Peut-être a-t-il été supprimé ?" + +#: wp-admin/edit-tags.php:118 wp-admin/options.php:80 +msgid "Sorry, you are not allowed to delete these items." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ces éléments." + +#: wp-admin/edit-tags.php:101 wp-admin/edit.php:140 wp-admin/post.php:255 +#: wp-admin/themes.php:43 wp-admin/upload.php:159 +msgid "Sorry, you are not allowed to delete this item." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cet élément." + +#: wp-admin/edit-tag-form.php:176 wp-admin/edit-tags.php:444 +msgid "The description is not prominent by default; however, some themes may show it." +msgstr "La description n’est pas très utilisée par défaut, cependant de plus en plus de thèmes l’affichent." + +#: wp-admin/edit-tag-form.php:168 wp-admin/edit-tags.php:437 +msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." +msgstr "Les catégories, contrairement aux étiquettes, peuvent avoir une hiérarchie. Vous pouvez avoir une catégorie nommée Jazz, et à l’intérieur, plusieurs catégories comme Bebop et Big Band. Ceci est totalement facultatif." + +#: wp-admin/edit-tag-form.php:149 wp-admin/edit-tags.php:399 +msgctxt "term parent" +msgid "Parent" +msgstr "Parent" + +#: wp-admin/edit-tag-form.php:144 wp-admin/edit-tags.php:394 +msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +msgstr "L’identifiant est la version normalisée du nom. Il ne contient généralement que des lettres minuscules non accentuées, des chiffres et des traits d’union." + +#: wp-admin/edit-tag-form.php:122 wp-admin/edit-tags.php:388 +msgid "The name is how it appears on your site." +msgstr "Ce nom est utilisé un peu partout sur votre site." + +#: wp-admin/edit-tag-form.php:120 wp-admin/edit-tags.php:386 +#: wp-admin/includes/class-wp-terms-list-table.php:180 +#: wp-admin/includes/class-wp-terms-list-table.php:595 +msgctxt "term name" +msgid "Name" +msgstr "Nom" + +#. translators: %s: taxonomy name +#: wp-admin/edit-tag-form.php:79 +msgctxt "admin screen" +msgid "← Back to %s" +msgstr "← Retour vers %s" + +#: wp-admin/edit-link-form.php:113 +msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." +msgstr "Cette description sera affichée lors du survol du lien dans la liste de liens ; elle pourra également apparaître sous le lien si votre thème le prévoit." + +#: wp-admin/edit-link-form.php:105 +msgid "Example: http://wordpress.org/ — don’t forget the http://" +msgstr "Exemple : https://wpfr.net/ — Et n’oubliez pas le https:// !" + +#: wp-admin/edit-link-form.php:102 +msgid "Web Address" +msgstr "Adresse web" + +#: wp-admin/edit-link-form.php:97 +msgid "Example: Nifty blogging software" +msgstr "Exemple : Logiciel de création de sites rapide, puissant et efficace" + +#: wp-admin/edit-link-form.php:94 +#: wp-admin/includes/class-wp-links-list-table.php:128 +msgctxt "link name" +msgid "Name" +msgstr "Nom" + +#: wp-admin/edit-link-form.php:76 +msgid "Link added." +msgstr "Lien ajouté." + +#. translators: add new links +#: wp-admin/edit-link-form.php:73 wp-admin/link-manager.php:82 +#: wp-admin/menu.php:65 +msgctxt "link" +msgid "Add New" +msgstr "Ajouter" + +#: wp-admin/edit-link-form.php:65 +msgid "Documentation on Creating Links" +msgstr "Documentation sur la création de liens (en)" + +#: wp-admin/edit-link-form.php:60 +msgid "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." +msgstr "XFN signifie XHTML Friends Network, c’est-à-dire Réseau XHTML d’Amis. Son usage est facultatif. WordPress permet de générer les attributs XFN de vos liens, afin d’indiquer votre relation avec l’auteur ou le propriétaire de la page liée." + +#: wp-admin/edit-link-form.php:59 +msgid "The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don’t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box." +msgstr "Les blocs pour le nom, l’adresse web et la description sont fixes, tandis que les autres peuvent être repositionnés par glisser/déposer. Vous pouvez également masquer les blocs que vous n’utilisez pas via l’onglet « Options de l’écran », et fermer les blocs en cliquant sur leur barre de titre." + +#: wp-admin/edit-link-form.php:58 +msgid "You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields." +msgstr "Vous pouvez ajouter ou modifier des liens sur cet écran, en saisissant dans chacun des blocs. Seuls sont nécessaires les champs « Adresse web » et « Nom » (le texte que vous voulez voir affiché sur votre site pour cette adresse)." + +#: wp-admin/edit-link-form.php:29 wp-admin/includes/meta-boxes.php:996 +msgid "Target" +msgstr "Cible" + +#: wp-admin/edit-link-form.php:19 +msgid "Links / Add New Link" +msgstr "Liens / Ajouter un nouveau lien" + +#: wp-admin/edit-link-form.php:15 wp-admin/includes/meta-boxes.php:922 +msgid "Update Link" +msgstr "Mettre à jour le lien" + +#: wp-admin/edit-link-form.php:14 +msgid "Links / Edit Link" +msgstr "Liens / Modifier le lien" + +#. translators: %s: comment link +#: wp-admin/edit-form-comment.php:137 +msgid "In reply to: %s" +msgstr "En réponse à : %s" + +#. translators: %s: post link +#: wp-admin/edit-form-comment.php:122 +msgid "In response to: %s" +msgstr "En réponse à : %s" + +#: wp-admin/edit-form-comment.php:104 wp-admin/includes/meta-boxes.php:214 +msgid "Date and time" +msgstr "Date et heure" + +#: wp-admin/edit-form-comment.php:102 wp-admin/includes/meta-boxes.php:212 +msgid "Edit date and time" +msgstr "Modifier la date et l’heure" + +#. translators: %s: comment date +#: wp-admin/edit-form-comment.php:98 +msgid "Submitted on: %s" +msgstr "Envoyé le : %s" + +#: wp-admin/edit-form-comment.php:86 +msgctxt "comment status" +msgid "Pending" +msgstr "En attente" + +#: wp-admin/edit-form-comment.php:84 +msgid "Comment status" +msgstr "État du commentaire" + +#: wp-admin/edit-form-comment.php:76 wp-admin/includes/ajax-actions.php:1773 +#: wp-admin/includes/class-wp-posts-list-table.php:1626 +msgid "Status" +msgstr "État" + +#: wp-admin/edit-form-comment.php:67 wp-admin/includes/template.php:402 +msgid "Comment" +msgstr "Commentaire" + +#: wp-admin/edit-form-comment.php:53 +msgid "URL:" +msgstr "Adresse web :" + +#: wp-admin/edit-form-comment.php:47 +msgid "Email:" +msgstr "E-mail :" + +#: wp-admin/edit-form-comment.php:43 +msgid "Name:" +msgstr "Nom :" + +#: wp-admin/edit-form-comment.php:31 +msgctxt "comment" +msgid "Permalink:" +msgstr "Permalien :" + +#. translators: 1: Post edited date, 2: Post edited time +#: wp-admin/edit-form-advanced.php:646 wp-admin/includes/ajax-actions.php:2280 +msgid "Last edited on %1$s at %2$s" +msgstr "Dernière modification le %1$s à %2$s" + +#. translators: 1: Name of most recent post author, 2: Post edited date, 3: +#. Post edited time +#: wp-admin/edit-form-advanced.php:643 wp-admin/includes/ajax-actions.php:2278 +msgid "Last edited by %1$s on %2$s at %3$s" +msgstr "Dernière modification par %1$s, le %2$s à %3$s" + +#: wp-admin/edit-form-advanced.php:635 +msgid "Word count: %s" +msgstr "Nombre de mots : %s" + +#: wp-admin/edit-form-advanced.php:586 +msgid "Get Shortlink" +msgstr "Obtenir le lien court" + +#: wp-admin/edit-form-advanced.php:561 +msgid "Enter title here" +msgstr "Saisissez votre titre ici" + +#: wp-admin/edit-form-advanced.php:497 +msgid "We’re backing up this post in your browser, just in case." +msgstr "Nous sauvegardons cet article dans votre navigateur, par sécurité." + +#: wp-admin/edit-form-advanced.php:496 +msgid "Connection lost. Saving has been disabled until you’re reconnected." +msgstr "Connexion perdue. L’enregistrement a été désactivé jusqu’à ce que vous soyez reconnecté." + +#: wp-admin/edit-form-advanced.php:464 +msgid "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." +msgstr "Ordre — Les pages sont généralement affichées par ordre alphabétique, mais vous pouvez indiquer un nombre dans ce champ pour modifier l’ordre d’apparition : 1 pour premier, etc." + +#: wp-admin/edit-form-advanced.php:463 +msgid "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." +msgstr "Modèle — Certains thèmes utilisent des modèles spéciaux que vous pouvez appliquer à pages des pages précises, avec des fonctionnalités supplémentaires ou une mise en page qui leur est propre. Si c’est le cas, vous les verrez dans ce menu déroulant." + +#: wp-admin/edit-form-advanced.php:462 +msgid "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." +msgstr "Parent — Vous pouvez arranger vos pages en hiérarchies. Par exemple, vous pourriez avoir une page « À propos », avec comme sous-pages « Ma vie » et « Mon œuvre ». Il n’y a pas de limite à la profondeur des sous-pages." + +#: wp-admin/edit-form-advanced.php:458 wp-admin/options-discussion.php:14 +msgid "Discussion Settings" +msgstr "Options de discussion" + +#: wp-admin/edit-form-advanced.php:454 +msgid "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." +msgstr "Discussion — Vous pouvez activer ou désactiver les commentaires et pings, et si votre article reçoit des commentaires, vous pourrez les voir ici et les modérer." + +#: wp-admin/edit-form-advanced.php:453 +msgid "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." +msgstr "Envoyer des rétroliens — Un rétrolien est une manière explicite de notifier les anciens systèmes de blog que vous avez fait un lien vers eux. Saisissez les adresses web que vous voulez notifier. Si dans votre article vous faites des liens vers des sites WordPress, ils seront notifiés automatiquement à l’aide de pings, sans devoir passer par un rétrolien explicite." + +#: wp-admin/edit-form-advanced.php:449 +msgid "Publish Settings" +msgstr "Réglages de publication" + +#. translators: %s: Featured Image +#: wp-admin/edit-form-advanced.php:442 +msgid "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." +msgstr "%s — Vous pouvez associer une image à votre article, sans pour autant l’y insérer. Cela ne sert vraiment que si votre thème fait usage de cette fonctionnalité, sous la forme d’une miniature pour la page d’accueil, d’un en-tête personnalisé, etc." + +#: wp-admin/edit-form-advanced.php:437 +msgid "Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Please refer to the Codex for descriptions of each post format. Your theme could enable all or some of 10 possible formats." +msgstr "Format d’article - Désigne la manière dont votre thème doit afficher un article donné. Par exemple, vous pourriez vouloir utiliser le format par défaut pour afficher titre et contenu, ou le format En passant pour ne pas utiliser le titre et n’afficher qu’un court texte. Lisez la documentation du Codex pour obtenir une description de chaque format d’article (en). Il est possible que votre thème ne reconnaisse qu’une partie des 10 formats possibles." + +#: wp-admin/edit-form-advanced.php:433 +msgid "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." +msgstr "Publier - Vous pouvez définir la manière dont votre article est publié dans le bloc « Publier ». Pour « État », « Visibilité », et « Publier (tout de suite) », un clic sur le lien « Modifier » affichera plus d’options. « Visibilité » inclut des options pour protéger l’article avec un mot de passe ou faire en sorte qu’il reste haut de page indéfiniment (en avant). L’option de protection par mot de passe vous permet de protéger chacun de vos articles avec un mot de passe. L’option « Privé » cache l’article pour tout le monde, sauf aux Éditeurs et Administrateurs. « Publier (tout de suite) » vous permet de planifier la publication de votre article à une date précise, dans le futur ou le passé ; cela vous permet d’écrire à l’avance des articles à publier, ou de les antidater. " + +#: wp-admin/edit-form-advanced.php:431 +msgid "Several boxes on this screen contain settings for how your content will be published, including:" +msgstr "Plusieurs sections de cet écran vous permettez de régler la manière dont votre contenu sera publié, notamment :" + +#: wp-admin/edit-form-advanced.php:425 +msgid "Inserting Media" +msgstr "Insertion du média" + +#: wp-admin/edit-form-advanced.php:421 +msgid "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Please refer to the Codex to learn more about embeds." +msgstr "Vous pouvez également insérer des contenus en provenance de nombreux sites populaires, comme Twitter, YouTube, Flickr et d’autres, simplement en collant l’adresse web du contenu dans sa propre ligne dans le texte de votre article/page. Référez-vous au Codex pour a href=\"https://codex.wordpress.org/Embeds\">en apprendre plus sur les contenu insérés." + +#: wp-admin/edit-form-advanced.php:420 +msgid "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." +msgstr "Vous pouvez mettre en ligne et insérer des fichiers média (images, sons, documents, etc.) en cliquant sur le bouton » Ajouter un média «. Vous pouvez sélectionner vos images et fichiers parmi ceux déjà présents dans la bibliothèque de médias, ou en mettre en ligne de nouveaux à ajouter à votre article/page. Pour créer une galerie d’image, sélectionnez les images à ajouter et cliquez sur le bouton » Créer une nouvelle galerie «." + +#: wp-admin/edit-form-advanced.php:414 wp-admin/media.php:83 +msgid "Documentation on Edit Media" +msgstr "Documentation sur la modification des médias (en)" + +#: wp-admin/edit-form-advanced.php:409 wp-admin/media.php:78 +msgid "Remember to click Update Media to save metadata entered or changed." +msgstr "Pensez bien à cliquer sur le bouton « Mettre à jour le fichier » afin de conserver les métadonnées ajoutées ou modifiées." + +#: wp-admin/edit-form-advanced.php:408 wp-admin/media.php:77 +msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." +msgstr "Pour recadrer une image, cliquez sur l’icône Recadrer puis sélectionnez la zone à conserver en cliquant sur l’image et en faisant glisser le curseur de la souris. Ensuite, cliquez sur Enregistrer pour conserver votre modification." + +#: wp-admin/edit-form-advanced.php:407 wp-admin/media.php:76 +msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." +msgstr "Pour les images (et seulement elles), vous pouvez cliquer sur « Modifier l’Image », sous la miniature, afin de faire apparaître un éditeur d’image, vous permettant de recadrer, d’appliquer une rotation ou d’inverser une image, ainsi que de défaire et refaire vos modifications. Les blocs sur la droite vous donnent accès à d’autres options pour le changement d’échelle, le recadrage et même le recadrage de la miniature, qui peut être différent de celui de l’image originale. Cliquez sur le bouton Aide de ces blocs pour obtenir plus d’informations." + +#: wp-admin/edit-form-advanced.php:406 +msgid "This screen allows you to edit four fields for metadata in a file within the media library." +msgstr "Cet écran vous permet de modifier les quatre champs des métadonnées des fichiers dans la bibliothèque des médias." + +#: wp-admin/edit-form-advanced.php:398 +msgid "Documentation on Editing Pages" +msgstr "Documentation sur la modification des pages (en)" + +#: wp-admin/edit-form-advanced.php:397 +msgid "Documentation on Adding New Pages" +msgstr "Documentation sur l’ajout de nouvelles pages (en)" + +#: wp-admin/edit-form-advanced.php:391 +msgid "About Pages" +msgstr "À propos des pages" + +#: wp-admin/edit-form-advanced.php:387 +msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +msgstr "Le processus de création d’une page reste très proche de celui d’un article, et les écrans respectifs peuvent être personnalisés de la même manière, par le biais de glisser/déposer, de l’onglet « Option de l’Écran », et en ouvrant/fermant les blocs selon vos besoins. Cet écran dispose également du mode « aucune distraction », tant dans le mode Visuel que dans le mode Texte, via les boutons « Plein Écran ». L’éditeur de page fonctionne globalement comme celui des articles, mais dispose de certaines spécificités, disponibles dans le bloc « Attributs de Page » :" + +#: wp-admin/edit-form-advanced.php:386 wp-admin/edit.php:237 +msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." +msgstr "Les pages sont comme des articles, en cela qu’elles ont un titre, un contenu et des métadonnées associées ; mais elles diffèrent en cela qu’elles ne font pas partie du flux chronologique du blog - un peu comme des articles permanents. Les pages ne sont pas catégorisées et ne reçoivent pas d’étiquettes, mais peuvent disposer d’une hiérarchie. En effet, vous pouvez imbriquer des pages sous d’autres pages, faisant de ces dernières les « parentes » des premières, créant ainsi un groupement de pages." + +#: wp-admin/edit-form-advanced.php:382 +msgid "Documentation on Writing and Editing Posts" +msgstr "Documentation sur l’écriture et la modification des articles (en)" + +#: wp-admin/edit-form-advanced.php:380 +msgid "You can also create posts with the Press This bookmarklet." +msgstr "Vous pouvez également créer des articles avec le bookmarklet Press This." + +#: wp-admin/edit-form-advanced.php:375 +msgid "Title and Post Editor" +msgstr "Titre et éditeur d’article" + +#: wp-admin/edit-form-advanced.php:371 +msgid "Keyboard users: When you’re working in the visual editor, you can use Alt + F10 to access the toolbar." +msgstr "Utilisateurs du clavier : lorsque vous travaillez dans l’éditeur visuel, vous pouvez utiliser Alt + F10 pour accéder à la barre d'outils." + +#: wp-admin/edit-form-advanced.php:370 +msgid "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." +msgstr "Vous pouvez activer le mode d’écriture sans distraction en cliquant sur l’icône à droite. Cette fonctionnalité n’est pas disponible pour les anciens navigateurs ou les appareils à petits écrans, et requiert l’activation de l'éditeur plein-écran dans les options de l’écran." + +#: wp-admin/edit-form-advanced.php:369 +msgid "You can insert media files by clicking the icons above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." +msgstr "Vous pouvez insérer des fichiers média en cliquant sur les icônes situées au-dessus de l’éditeur, puis en suivant les instructions. Vous pouvez aligner ou modifier les images à l’aide de la barre de mise en page disponible dans le mode Visuel." + +#: wp-admin/edit-form-advanced.php:368 +msgid "The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +msgstr "Le mode textuel vous permet de saisir de saisir votre texte encadré par votre code HTML. Notez que les balises <p> et <br> sont converties en retours à la ligne lorsque vous entrez dans le mode texte, afin de moins encombrer la fenêtre. Lorsque vous saisissez du texte, un retour à la ligne vous suffit à générer un <br>, et deux retours à la ligne créeront une balise de paragraphe. Les retours à la ligne sont automatiquement convertis en balises HTML." + +#: wp-admin/edit-form-advanced.php:367 +msgid "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." +msgstr "Le mode visuel vous donne accès à un éditeur comparable à un traitement de texte. Cliquez sur le bouton d’ouverture/fermeture de la barre d’outils pour afficher une seconde rangée d’options." + +#: wp-admin/edit-form-advanced.php:366 +msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab." +msgstr "Éditeur d’article — Saisissez-y le contenu de votre article. Vous disposez pour ce faire de deux modes : Visuel ou Texte. Choisissez un mode en cliquant sur l’onglet correspondant." + +#: wp-admin/edit-form-advanced.php:365 +msgid "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." +msgstr "Titre — Saisissez un titre pour votre article. Après avoir saisi le titre, un permalien s’affichera en dessous, que vous pourrez modifier à loisir." + +#: wp-admin/edit-form-advanced.php:361 +msgid "Customizing This Display" +msgstr "Personnaliser cet écran" + +#: wp-admin/edit-form-advanced.php:357 +msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." +msgstr "Le champ du titre et la zone d’édition de l’article sont inamovibles, mais vous pouvez déplacer toutes les autres blocs par simple glisser/déposer. Vous pouvez également les fermer/ouvrir en cliquant sur la barre de titre de chaque boite. Utilisez l’onglet « Options de l’écran » pour masquer d’autres boites (Extrait, Envoyer des rétroliens, Champs personnalisés, Discussion, Identifiant, Auteur) ou pour choisir un affichage sur une ou deux colonnes pour cet écran." + +#: wp-admin/edit-form-advanced.php:309 wp-admin/edit-tag-form.php:126 +#: wp-admin/edit-tags.php:392 +#: wp-admin/includes/class-wp-posts-list-table.php:1405 +#: wp-admin/includes/class-wp-terms-list-table.php:182 +#: wp-admin/includes/class-wp-terms-list-table.php:600 +#: wp-admin/includes/meta-boxes.php:751 +msgid "Slug" +msgstr "Identifiant" + +#: wp-admin/edit-form-advanced.php:291 wp-admin/menu.php:252 +msgid "Discussion" +msgstr "Discussion" + +#: wp-admin/edit-form-advanced.php:276 +msgid "Custom Fields" +msgstr "Champs personnalisés" + +#: wp-admin/edit-form-advanced.php:273 +msgid "Send Trackbacks" +msgstr "Envoyer des rétroliens" + +#: wp-admin/edit-form-advanced.php:202 +msgid "There is an autosave of this post that is more recent than the version below. View the autosave" +msgstr "Une sauvegarde automatique existe pour cet article ; elle est plus récente que la version affichée ci-dessous. Afficher cette sauvegarde automatique." + +#: wp-admin/edit-form-advanced.php:163 wp-admin/media.php:95 +#: wp-admin/upload.php:240 wp-admin/upload.php:300 +msgid "Media file updated." +msgstr "Fichier média mis à jour." + +#: wp-admin/edit-form-advanced.php:161 +msgid "Page draft updated." +msgstr "Le brouillon de la page a été mis à jour." + +#: wp-admin/edit-form-advanced.php:160 +msgid "Page scheduled for: %s." +msgstr "Page programmée pour le %s." + +#: wp-admin/edit-form-advanced.php:159 +msgid "Page submitted." +msgstr "Page envoyée." + +#: wp-admin/edit-form-advanced.php:158 +msgid "Page saved." +msgstr "Page enregistrée." + +#: wp-admin/edit-form-advanced.php:157 +msgid "Page published." +msgstr "Page publiée." + +#. translators: %s: date and time of the revision +#: wp-admin/edit-form-advanced.php:156 +msgid "Page restored to revision from %s." +msgstr "Page rétablie à partir de la révision du %s." + +#: wp-admin/edit-form-advanced.php:151 wp-admin/edit-form-advanced.php:154 +msgid "Page updated." +msgstr "Page mise à jour." + +#: wp-admin/edit-form-advanced.php:147 +msgid "Post draft updated." +msgstr "Le brouillon de l’article a été mis à jour." + +#: wp-admin/edit-form-advanced.php:146 +msgid "Post scheduled for: %s." +msgstr "Article programmé pour le %s." + +#: wp-admin/edit-form-advanced.php:145 +msgid "Post submitted." +msgstr "Article envoyé." + +#: wp-admin/edit-form-advanced.php:144 +msgid "Post saved." +msgstr "Article enregistré." + +#: wp-admin/edit-form-advanced.php:143 +msgid "Post published." +msgstr "Article publié." + +#. translators: %s: date and time of the revision +#: wp-admin/edit-form-advanced.php:142 +msgid "Post restored to revision from %s." +msgstr "Article rétabli à partir de la révision du %s." + +#: wp-admin/edit-form-advanced.php:139 wp-admin/edit-form-advanced.php:153 +msgid "Custom field deleted." +msgstr "Champ personnalisé supprimé." + +#: wp-admin/edit-form-advanced.php:138 wp-admin/edit-form-advanced.php:152 +msgid "Custom field updated." +msgstr "Champ personnalisé mis à jour." + +#: wp-admin/edit-form-advanced.php:137 wp-admin/edit-form-advanced.php:140 +msgid "Post updated." +msgstr "Article mis à jour." + +#. translators: Publish box date format, see https://secure.php.net/date +#: wp-admin/edit-form-advanced.php:133 wp-admin/edit-form-comment.php:93 +#: wp-admin/includes/meta-boxes.php:175 wp-admin/includes/meta-boxes.php:308 +#: wp-admin/includes/revision.php:207 wp-admin/includes/revision.php:249 +msgid "M j, Y @ H:i" +msgstr "j F Y \\à G \\h i \\m\\i\\n " + +#: wp-admin/edit-form-advanced.php:127 +msgid "View page" +msgstr "Voir la page" + +#: wp-admin/edit-form-advanced.php:115 wp-admin/edit-form-advanced.php:121 +msgid "Preview page" +msgstr "Prévisualiser la page" + +#: wp-admin/edit-form-advanced.php:109 +msgid "View post" +msgstr "Voir l’article" + +#: wp-admin/edit-form-advanced.php:97 wp-admin/edit-form-advanced.php:103 +msgid "Preview post" +msgstr "Prévisualiser l’article" + +#: wp-admin/edit-comments.php:301 +msgid "Search Comments" +msgstr "Chercher un commentaire" + +#: wp-admin/edit-comments.php:287 +msgid "This comment is already marked as spam." +msgstr "Ce commentaire est déjà marqué comme indésirable." + +#: wp-admin/edit-comments.php:284 +msgid "View Trash" +msgstr "Voir la corbeille" + +#: wp-admin/edit-comments.php:284 +msgid "This comment is already in the Trash." +msgstr "Ce commentaire est déjà marqué comme indésirable." + +#: wp-admin/edit-comments.php:281 wp-admin/edit-comments.php:287 +msgid "Edit comment" +msgstr "Modifier le commentaire" + +#: wp-admin/edit-comments.php:281 +msgid "This comment is already approved." +msgstr "Ce commentaire est déjà approuvé." + +#. translators: %s: number of comments permanently deleted +#: wp-admin/edit-comments.php:275 +msgid "%s comment permanently deleted" +msgid_plural "%s comments permanently deleted" +msgstr[0] "%s commentaire supprimé définitivement" +msgstr[1] "%s commentaires supprimés définitivement" + +#. translators: %s: number of comments restored from the Trash +#: wp-admin/edit-comments.php:270 +msgid "%s comment restored from the Trash" +msgid_plural "%s comments restored from the Trash" +msgstr[0] "%s commentaire récupéré depuis la corbeille" +msgstr[1] "%s commentaires récupérés depuis la corbeille" + +#. translators: %s: number of comments moved to the Trash +#: wp-admin/edit-comments.php:265 +msgid "%s comment moved to the Trash." +msgid_plural "%s comments moved to the Trash." +msgstr[0] "%s commentaire déplacé dans la corbeille." +msgstr[1] "%s commentaires déplacés dans la corbeille." + +#. translators: %s: number of comments restored from the spam +#: wp-admin/edit-comments.php:259 +msgid "%s comment restored from the spam" +msgid_plural "%s comments restored from the spam" +msgstr[0] "%s commentaire rétabli depuis les commentaires indésirables" +msgstr[1] "%s commentaires rétablis depuis les commentaires indésirables" + +#. translators: %s: number of comments marked as spam +#: wp-admin/edit-comments.php:254 +msgid "%s comment marked as spam." +msgid_plural "%s comments marked as spam." +msgstr[0] "%s commentaire marqué comme indésirable." +msgstr[1] "%s commentaires marqués comme indésirables." + +#. translators: %s: number of comments approved +#: wp-admin/edit-comments.php:248 +msgid "%s comment approved" +msgid_plural "%s comments approved" +msgstr[0] "%s commentaire approuvé" +msgstr[1] "%s commentaires approuvés" + +#: wp-admin/edit-comments.php:190 +msgid "Comments list" +msgstr "Liste des commentaires" + +#: wp-admin/edit-comments.php:189 +msgid "Comments list navigation" +msgstr "Navigation de la liste des commentaires" + +#: wp-admin/edit-comments.php:188 +msgid "Filter comments list" +msgstr "Filtrer la liste des commentaires" + +#: wp-admin/edit-comments.php:183 +msgid "Documentation on Keyboard Shortcuts" +msgstr "Documentation sur les raccourcis clavier" + +#: wp-admin/edit-comments.php:182 +msgid "Documentation on Comment Spam" +msgstr "Documentation sur les commentaires indésirables" + +#: wp-admin/edit-comments.php:176 +msgid "Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more." +msgstr "De nombreux utilisateurs utilisent les raccourcis clavier pour modérer leurs commentaires plus rapidement. Suivez le lien sur le côté pour en savoir plus." + +#: wp-admin/edit-comments.php:175 +msgid "In the Submitted On column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site." +msgstr "Dans la colonne Envoyé le, vous trouverez la date et l’heure de publication du commentaire sur votre site. En cliquant sur le lien, vous ouvrirez la page du lien sur votre site." + +#: wp-admin/edit-comments.php:174 +msgid "In the In Response To column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post." +msgstr "Dans la colonne En réponse à se trouvent trois éléments. Le texte correspond au titre de l’article qui a inspiré ce commentaire, et un clic sur ce lien vous permettra de modifier cet article. Le lien « Afficher l’article » mène à l’article sur le site. La petite bulle avec un nombre vous indique le nombre de commentaires approuvés que l’article a reçu. S’il y a des commentaires en attente de validation, un cercle de notification rouge contenant le nombre de commentaires en attente sera affiché. Un clic sur ce cercle de notification filtrera la liste des commentaires pour ne plus afficher que ceux en attente qui sont liés à cet article." + +#: wp-admin/edit-comments.php:173 +msgid "In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment." +msgstr "Dans la colonne Commentaire, survolez n’importe quel commentaire avec votre souris afin d'afficher les liens pour approuver ce commentaire, y répondre (en l’approuvant), le modifier rapidement, le marquer comme indésirable, ou le mettre à la corbeille." + +#: wp-admin/edit-comments.php:172 +msgid "In the Author column, in addition to the author’s name, email address, and blog URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address." +msgstr "Dans la colonne « Auteur », en plus de trouver le nom de l’auteur, son adresse de messagerie et celle de son site, vous trouverez son adresse IP. En cliquant dessus, vous obtiendrez une liste de tous les commentaires faits depuis cette adresse IP." + +#: wp-admin/edit-comments.php:171 +msgid "A red bar on the left means the comment is waiting for you to moderate it." +msgstr "Une barre rouge sur la gauche signifie que le commentaire attention votre validation." + +#: wp-admin/edit-comments.php:169 +msgid "Moderating Comments" +msgstr "Modération des commentaires" + +#: wp-admin/edit-comments.php:165 +msgid "You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the Bulk Actions." +msgstr "Vous pouvez gérer les commentaires sur votre site de la même manière que vous gérez les articles et autres contenus. Cet écran est personnalisable de la même manière que les autres écrans de gestion, et vous pouvez agir sur les commentaires par le biais des liens qui apparaissent au survol de la souris, ou via le menu « Actions groupées »." + +#. translators: %s: post title +#. translators: %s: link to post +#: wp-admin/edit-comments.php:143 wp-admin/edit-comments.php:200 +msgid "Comments on “%s”" +msgstr "Commentaires sur « %s »" + +#. translators: 1: comments count 2: post title +#: wp-admin/edit-comments.php:137 +msgid "Comments (%1$s) on “%2$s”" +msgstr "Commentaires (%1$s) sur « %2$s »" + +#: wp-admin/customize.php:196 +msgctxt "short (~12 characters) label for hide controls button" +msgid "Hide Controls" +msgstr "Masquer les controles" + +#: wp-admin/customize.php:163 +msgid "The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements." +msgstr "La personnalisation vous permet de prévisualiser les changements apportés à votre site avant de les publier. Vous pouvez naviguer sur les différentes pages du site depuis la prévisualisation. Les raccourcis de modification sont affichés pour certains éléments modifiables." + +#: wp-admin/customize.php:149 +msgid "Close the Customizer and go back to the previous page" +msgstr "Fermer l’outil de personnalisation et retour vers la page précédente." + +#: wp-admin/customize.php:107 +msgid "Loading…" +msgstr "Chargement…" + +#: wp-admin/customize.php:41 +msgid "Customize New Changes" +msgstr "Personnaliser les nouvelles modifications" + +#: wp-admin/customize.php:40 +msgid "This changeset has already been published and cannot be further modified." +msgstr "Ce groupe de modifications a été publié et ne peut plus être modifié." + +#: wp-admin/customize.php:33 +msgid "Sorry, you are not allowed to edit this changeset." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce groupe de modifications." + +#: wp-admin/custom-header.php:969 +msgid "Sorry, you are not allowed to customize headers." +msgstr "Désolé, vous n’avez pas l’autorisation de personnaliser les en-têtes." + +#: wp-admin/custom-header.php:893 +msgid "The current theme does not support a flexible sized header image." +msgstr "Le thème actuel ne peut pas utiliser une image d’en-tête à taille variable." + +#: wp-admin/custom-header.php:851 +msgid "Image Upload Error" +msgstr "Erreur lors de l’envoi de l’image" + +#: wp-admin/custom-header.php:826 +msgid "Skip Cropping, Publish Image as Is" +msgstr "Aucun recadrage, utiliser l’image telle quelle" + +#: wp-admin/custom-header.php:823 +msgid "Crop and Publish" +msgstr "Recadrer et publier" + +#: wp-admin/custom-header.php:805 +msgid "You need JavaScript to choose a part of the image." +msgstr "Vous avez besoin de la fonctionnalité JavaScript de votre navigateur web pour choisir une partie de l’image." + +#: wp-admin/custom-header.php:804 +msgid "Choose the part of the image you want to use as your header." +msgstr "Choisissez la partie de l’image que vous voulez utiliser comme en-tête." + +#: wp-admin/custom-header.php:801 +msgid "Crop Header Image" +msgstr "Recadrer l’image d’en-tête" + +#: wp-admin/custom-header.php:787 wp-admin/custom-header.php:923 +msgid "Image Processing Error" +msgstr "Erreur lors du traitement de l’image" + +#: wp-admin/custom-header.php:787 wp-admin/custom-header.php:923 +#: wp-admin/custom-header.php:1234 +msgid "Image could not be processed. Please go back and try again." +msgstr "L’image n’a pas pu être traitée. Veuillez revenir en arrière en réessayer." + +#: wp-admin/custom-header.php:727 wp-admin/custom-header.php:885 +msgid "The current theme does not support uploading a custom header image." +msgstr "Le thème actuel ne permet pas de mettre en ligne une image d’en-tête personnalisée." + +#: wp-admin/custom-header.php:692 +msgctxt "color" +msgid "Default: %s" +msgstr "Par défaut : %s" + +#: wp-admin/custom-header.php:671 +msgid "Text Color" +msgstr "Couleur du texte" + +#: wp-admin/custom-header.php:665 +msgid "Show header text with your image." +msgstr "Afficher le texte d’en-tête avec l’image." + +#: wp-admin/custom-header.php:648 +msgid "Restore Original Header Image" +msgstr "Rétablir l’image d’en-tête d’origine" + +#: wp-admin/custom-header.php:647 +msgid "This will restore the original header image. You will not be able to restore any customizations." +msgstr "Ceci remettra en place l’image d’en-tête d’origine. Il ne vous sera pas possible de récupérer vos personnalisations." + +#: wp-admin/custom-header.php:645 +msgid "Reset Image" +msgstr "Remettre l’image d’origine" + +#: wp-admin/custom-header.php:637 +msgid "Remove Header Image" +msgstr "Retirer l’image d’en-tête" + +#: wp-admin/custom-header.php:636 +msgid "This will remove the header image. You will not be able to restore any customizations." +msgstr "Ceci retirera l’image d’en-tête. Il ne vous sera pas possible de rétablir vos personnalisations." + +#: wp-admin/custom-header.php:624 +msgid "You can use one of these cool headers or show a random one on each page." +msgstr "Vous pouvez choisir parmi ces en-têtes, ou en afficher un aléatoirement à chaque chargement de page." + +#: wp-admin/custom-header.php:622 +msgid "If you don‘t want to upload your own image, you can use one of these cool headers, or show a random one." +msgstr "Si vous ne voulez pas mettre en ligne d’image, vous pouvez utiliser l’un de ces en-têtes, ou en afficher un aléatoirement." + +#: wp-admin/custom-header.php:619 +msgid "Default Images" +msgstr "Images par défaut" + +#: wp-admin/custom-header.php:610 +msgid "You can choose one of your previously uploaded headers, or show a random one." +msgstr "Vous pouvez choisir un en-tête parmi ceux que vous avez déjà mis en ligne, ou en afficher un aléatoirement" + +#: wp-admin/custom-header.php:608 +msgid "Uploaded Images" +msgstr "Images mises en ligne" + +#: wp-admin/custom-header.php:593 +msgid "Set as header" +msgstr "Utiliser comme en-tête" + +#: wp-admin/custom-header.php:592 +msgid "Choose a Custom Header" +msgstr "Choisir un en-tête personnalisé" + +#. translators: %s: size in pixels +#: wp-admin/custom-header.php:564 +msgid "Suggested height is %s." +msgstr "La hauteur suggérée est de %s." + +#. translators: %s: size in pixels +#: wp-admin/custom-header.php:554 +msgid "Suggested width is %s." +msgstr "La taille suggérée est de %s." + +#. translators: %s: size in pixels +#: wp-admin/custom-header.php:542 +msgid "Images should be at least %s tall." +msgstr "Les images devraient faire au moins %s de haut" + +#. translators: %d: custom header width +#. translators: %d: custom header height +#. translators: %d: custom header width +#. translators: %d: custom header height +#: wp-admin/custom-header.php:534 wp-admin/custom-header.php:545 +#: wp-admin/custom-header.php:557 wp-admin/custom-header.php:567 +msgid "%d pixels" +msgstr "%d pixels" + +#. translators: %s: size in pixels +#: wp-admin/custom-header.php:531 +msgid "Images should be at least %s wide." +msgstr "Les images doivent être large de %s minimum." + +#: wp-admin/custom-header.php:526 +msgid "Images of exactly %1$d × %2$d pixels will be used as-is." +msgstr "Les images ayant pour taille exacte %1$d pixels par %2$d seront utilisées telles quelles." + +#: wp-admin/custom-header.php:523 +msgid "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." +msgstr "Vous pouvez choisir une image d’en-tête personnalisée en la mettant en ligne depuis votre ordinateur ou en la choisissant dans votre bibliothèque de médias. Après avoir sélectionné l’image, vous pourrez la recadrer." + +#: wp-admin/custom-header.php:473 +msgid "Header updated. Visit your site to see how it looks." +msgstr "L’en-tête a été mis à jour. Visiter le site pour voir son nouvel aspect." + +#: wp-admin/custom-header.php:463 +msgid "You can now manage and live-preview Custom Header in the Customizer." +msgstr "Vous pouvez gérer et prévisualiser l’en-tête personnalisée dans l’outil de personnalisation." + +#: wp-admin/custom-header.php:456 wp-admin/includes/theme.php:252 +msgid "Custom Header" +msgstr "Personnalisation de l’en-tête" + +#: wp-admin/custom-header.php:279 +msgid "Random: Show a different image on each page." +msgstr "Aléatoire  : affiche une image différente sur chaque page." + +#: wp-admin/custom-header.php:127 +msgid "Documentation on Custom Header" +msgstr "Documentation sur l’en-tête personnalisé" + +#: wp-admin/custom-header.php:122 +msgid "Don’t forget to click “Save Changes” when you’re done!" +msgstr "N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé !" + +#: wp-admin/custom-header.php:121 +msgid "In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Dans la section « Texte d’en-tête » de cette page, vous pouvez choisir d’afficher ce texte ou de le masquer. Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : #ff0000 pour du rouge) ou en cliquant sur le sélecteur de couleur." + +#: wp-admin/custom-header.php:120 +msgid "For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section." +msgstr "Pour la plupart des thèmes, le texte d’en-tête est le titre de votre site et son slogan, tels que définis dans la section Réglages généraux." + +#: wp-admin/custom-header.php:118 wp-admin/custom-header.php:657 +#: wp-admin/custom-header.php:662 +msgid "Header Text" +msgstr "Texte de l’en-tête" + +#: wp-admin/custom-header.php:113 +msgid "If you don’t want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." +msgstr "Si vous ne souhaitez pas que votre site utilise une image d’en-tête, cliquez sur le bouton « Retirer l’image d’en-tête » en bas de la section « Image d’en-tête » de cette page. Si vous souhaitez réactiver l’image d’en-tête, il vous suffit de sélectionner l’une des autres options d’images, et de la valider en cliquant sur « Enregistrer les modifications »." + +#: wp-admin/custom-header.php:112 +msgid "If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature." +msgstr "Si votre thème a plus d’une image d’en-tête par défaut, ou si vous avez mis en ligne plus d’une image d’en-tête personnalisée, vous pouvez faire en sorte que WordPress affiche une image aléatoire différente à chaque chargement de votre site. Sélectionnez l’option « Au hasard » dans la section « Images par défaut » ou « Images mises en ligne » pour activer cette fonctionnalité." + +#: wp-admin/custom-header.php:111 +msgid "Some themes come with additional header images bundled. If you see multiple images displayed, select the one you’d like and click the “Save Changes” button." +msgstr "Certains thèmes disposent d’une série d’images d’en-tête. Si vous voyez plusieurs images affichées, sélectionnez celle que vous aimez et cliquez sur le bouton « Enregistrer les modifications »." + +#: wp-admin/custom-header.php:110 +msgid "You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button." +msgstr "Vous pouvez utiliser une image d’en-tête personnalisée pour votre site. Mettez simplement l’image en ligne, recadrez-la, et le nouvel en-tête sera aussitôt en ligne. Autrement, vous pouvez utiliser une image qui a déjà été mise en ligne dans votre Bibliothèque de Médias, en cliquant sur le bouton « Choisissez une image »." + +#: wp-admin/custom-header.php:103 +msgid "You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed." +msgstr "Vous pouvez choisir à partir des images d’en-tête par défaut du thème, ou utiliser l’une des vôtres. Vous pouvez également personnaliser la manière dont s’affichent le titre de votre site et son slogan." + +#: wp-admin/custom-header.php:102 +msgid "This screen is used to customize the header section of your theme." +msgstr "Cet écran est utilisé pour personnaliser la section d’en-tête de votre thème." + +#: wp-admin/custom-background.php:454 wp-admin/custom-header.php:846 +#: wp-admin/includes/ajax-actions.php:2042 +msgid "The uploaded file is not a valid image. Please try again." +msgstr "Le fichier mis en ligne n’est pas une image valide. Veuillez réessayer." + +#: wp-admin/custom-background.php:410 wp-admin/custom-background.php:411 +msgctxt "Background Scroll" +msgid "Scroll" +msgstr "Défilement" + +#: wp-admin/custom-background.php:402 wp-admin/custom-background.php:403 +msgctxt "Background Repeat" +msgid "Repeat" +msgstr "Répétition" + +#: wp-admin/custom-background.php:394 +msgctxt "Original Size" +msgid "Original" +msgstr "Taille d’origine" + +#: wp-admin/custom-background.php:339 +msgid "Display Options" +msgstr "Options d’affichage" + +#: wp-admin/custom-background.php:330 +msgid "Set as background" +msgstr "Utiliser comme image de fond" + +#: wp-admin/custom-background.php:329 +msgid "Choose a Background Image" +msgstr "Choisir une image d’arrière-plan" + +#: wp-admin/custom-background.php:327 wp-admin/custom-header.php:589 +msgid "Or choose an image from your media library:" +msgstr "Ou choisissez une image dans votre bibliothèque de médias :" + +#: wp-admin/custom-background.php:324 wp-admin/custom-header.php:579 +#: wp-admin/includes/class-wp-theme-install-list-table.php:63 +#: wp-admin/includes/media.php:1951 wp-admin/includes/media.php:1953 +msgid "Upload" +msgstr "Envoyer" + +#: wp-admin/custom-background.php:320 wp-admin/custom-header.php:575 +msgid "Choose an image from your computer:" +msgstr "Choisissez une image sur votre ordinateur :" + +#: wp-admin/custom-background.php:309 +msgid "This will restore the original background image. You will not be able to restore any customizations." +msgstr "Ceci remettra en place l’image d’arrière-plan originale. Il ne vous sera pas possible de récupérer vos personnalisations." + +#: wp-admin/custom-background.php:304 wp-admin/custom-background.php:308 +#: wp-admin/includes/image-edit.php:82 +msgid "Restore Original Image" +msgstr "Rétablir l’image originale" + +#: wp-admin/custom-background.php:295 +msgid "This will remove the background image. You will not be able to restore any customizations." +msgstr "Ceci supprimera l’image d’arrière-plan. Il ne vous sera pas possible de rétablir vos personnalisations." + +#: wp-admin/custom-background.php:294 +msgid "Remove Background Image" +msgstr "Retirer l’image d’arrière-plan" + +#: wp-admin/custom-background.php:290 wp-admin/custom-header.php:634 +msgid "Remove Image" +msgstr "Retirer l’image" + +#: wp-admin/custom-background.php:242 +msgid "Background updated. Visit your site to see how it looks." +msgstr "L’arrière-plan a été mis à jour. Afficher votre site pour voir le rendu." + +#: wp-admin/custom-background.php:232 +msgid "You can now manage and live-preview Custom Backgrounds in the Customizer." +msgstr "Vous pouvez gérer et prévisualiser les arrières-plans personnalisés dans l’outil de personnalisation. " + +#: wp-admin/custom-background.php:225 wp-admin/includes/theme.php:250 +msgid "Custom Background" +msgstr "Arrière-plan personnalisé" + +#: wp-admin/custom-background.php:100 +msgid "Documentation on Custom Background" +msgstr "Documentation sur l’arrière-plan personnalisé (en)" + +#: wp-admin/custom-background.php:95 +msgid "Don’t forget to click on the Save Changes button when you are finished." +msgstr "N’oubliez pas de cliquer sur « Enregistrer les modifications » quand vous avez terminé." + +#: wp-admin/custom-background.php:94 +msgid "You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Vous pouvez également choisir une couleur pour ce texte en cliquant sur le bouton « Sélecteur de couleur » et soit en saisissant une valeur HTML valide (ex. : #ff0000 pour du rouge) ou en cliquant sur le sélecteur de couleur." + +#: wp-admin/custom-background.php:93 +msgid "To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site." +msgstr "Pour utiliser une image de fond, mettez-la simplement en ligne ou choisissez une image déjà mise en ligne dans votre Bibliothèque de Médias en cliquant sur le bouton « Choisir l’image ». Vous pouvez n’afficher qu’une occurrence de l’image, ou la répéter afin de remplir l’écran. Vous pouvez choisir de garder le fond en place quand vous faites défiler le contenu, ou au contraire faire que le fond défile en même temps." + +#: wp-admin/custom-background.php:92 +msgid "You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color." +msgstr "Vous pouvez personnaliser l’apparence de votre site sans jamais toucher au code de votre thème, en utilisant un fond personnalisé. Votre fond peut être une image ou juste une couleur." + +#: wp-admin/credits.php:125 +msgid "External Libraries" +msgstr "Bibliothèques tierces" + +#: wp-admin/credits.php:124 +msgid "Core Developer" +msgstr "Développeur cœur" + +#: wp-admin/credits.php:123 +msgid "Release Deputy" +msgstr "Assistant du responsable de cette version" + +#: wp-admin/credits.php:122 +msgid "Release Design Lead" +msgstr "Responsable Design de cette version" + +#: wp-admin/credits.php:121 +msgid "Release Lead" +msgstr "Responsable de cette version" + +#: wp-admin/credits.php:120 +msgid "Lead Developer" +msgstr "Développeur principal" + +#: wp-admin/credits.php:119 +msgid "Cofounder, Project Lead" +msgstr "Cofondateur, chef de projet" + +#: wp-admin/credits.php:118 +msgid "Contributing Developers" +msgstr "Développeurs ayant contribué" + +#: wp-admin/credits.php:117 +msgid "Core Contributors to WordPress %s" +msgstr "Contributeurs au code de WordPress %s" + +#: wp-admin/credits.php:116 +msgid "Project Leaders" +msgstr "Chefs de projet" + +#. translators: %s: https://make.wordpress.org/ +#: wp-admin/credits.php:103 +msgid "Want to see your name in lights on this page? Get involved in WordPress." +msgstr "Vous voulez faire partie des noms listés sur cette page ? Participez au développement de WordPress !" + +#: wp-admin/credits.php:56 +msgctxt "Translate this to be the equivalent of English Translators in your language for the credits page Translators section" +msgid "Translators" +msgstr "Traducteurs" + +#: wp-admin/credits.php:50 +msgid "WordPress is created by a worldwide team of passionate individuals." +msgstr "WordPress est créé par une équipe de personnes passionnées, réparties sur toute la planète." + +#: wp-admin/credits.php:42 wp-admin/credits.php:104 +msgid "https://make.wordpress.org/" +msgstr "https://make.wordpress.org/" + +#. translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org/ +#: wp-admin/credits.php:40 +msgid "WordPress is created by a worldwide team of passionate individuals. Get involved in WordPress." +msgstr "WordPress est créé par une équipe de personnes passionnées, répartie sur toute la planète. Participez au développement de WordPress !" + +#: wp-admin/credits.php:21 wp-admin/freedoms.php:20 +msgid "Welcome to WordPress %s" +msgstr "Bienvenue dans WordPress %s" + +#: wp-admin/comment.php:329 +msgid "Unknown action." +msgstr "Action inconnue." + +#: wp-admin/comment.php:257 wp-admin/edit-comments.php:229 +#: wp-admin/includes/comment.php:49 +msgid "Sorry, you are not allowed to edit comments on this post." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les commentaires de cet article." + +#: wp-admin/comment.php:195 +msgid "Submitted on" +msgstr "Envoyé le" + +#. translators: %s: comment link +#: wp-admin/comment.php:187 +#: wp-admin/includes/class-wp-comments-list-table.php:648 +msgid "In reply to %s." +msgstr "En réponse à %s." + +#. translators: column name or table row header +#: wp-admin/comment.php:169 +#: wp-admin/includes/class-wp-comments-list-table.php:402 +msgid "In Response To" +msgstr "En réponse à" + +#: wp-admin/comment.php:149 wp-admin/plugins.php:298 wp-admin/plugins.php:304 +#: wp-admin/theme-editor.php:272 +msgid "Caution:" +msgstr "Attention :" + +#: wp-admin/comment.php:141 +msgid "This comment is currently in the Trash." +msgstr "Ce commentaire est actuellement dans la corbeille." + +#: wp-admin/comment.php:138 +msgid "This comment is currently marked as spam." +msgstr "Ce commentaire est actuellement marqué comme indésirable." + +#: wp-admin/comment.php:135 +msgid "This comment is currently approved." +msgstr "Ce commentaire est actuellement approuvé." + +#: wp-admin/comment.php:127 +msgid "Approve Comment" +msgstr "Approuver le commentaire" + +#: wp-admin/comment.php:126 +msgid "You are about to approve the following comment:" +msgstr "Vous êtes sur le point d’approuver le commentaire suivant :" + +#: wp-admin/comment.php:123 +msgid "Permanently Delete Comment" +msgstr "Supprimer définitivement le commentaire" + +#: wp-admin/comment.php:122 +msgid "You are about to delete the following comment:" +msgstr "Vous êtes sur le point de supprimer le commentaire suivant :" + +#: wp-admin/comment.php:119 wp-admin/edit-form-comment.php:162 +#: wp-admin/includes/class-wp-comments-list-table.php:308 +#: wp-admin/includes/class-wp-posts-list-table.php:407 +#: wp-admin/includes/media.php:1509 wp-admin/includes/meta-boxes.php:250 +msgid "Move to Trash" +msgstr "Déplacer dans la corbeille" + +#: wp-admin/comment.php:118 +msgid "You are about to move the following comment to the Trash:" +msgstr "Vous êtes sur le point de déplacer le commentaire suivant dans la corbeille :" + +#: wp-admin/comment.php:115 +#: wp-admin/includes/class-wp-comments-list-table.php:297 +msgctxt "comment" +msgid "Mark as Spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/comment.php:114 +msgid "You are about to mark the following comment as spam:" +msgstr "Vous êtes sur le point de marquer le commentaire suivant comme indésirable :" + +#: wp-admin/comment.php:80 +msgid "Moderate Comment" +msgstr "Modérer le commentaire" + +#: wp-admin/comment.php:67 +msgid "This comment is in the Trash. Please move it out of the Trash if you want to edit it." +msgstr "Ce commentaire est dans la corbeille. Veuillez l’en sortir avant de le modifier." + +#: wp-admin/comment.php:61 wp-admin/comment.php:255 +#: wp-admin/includes/post.php:1532 +msgid "Go back" +msgstr "Retour" + +#: wp-admin/comment.php:52 wp-admin/custom-background.php:101 +#: wp-admin/custom-header.php:128 wp-admin/edit-comments.php:184 +#: wp-admin/edit-form-advanced.php:383 wp-admin/edit-form-advanced.php:399 +#: wp-admin/edit-form-advanced.php:415 wp-admin/edit-link-form.php:66 +#: wp-admin/edit-tags.php:270 wp-admin/edit.php:229 wp-admin/edit.php:250 +#: wp-admin/export.php:55 wp-admin/import.php:30 wp-admin/index.php:98 +#: wp-admin/link-manager.php:67 wp-admin/media-new.php:57 wp-admin/media.php:84 +#: wp-admin/my-sites.php:48 wp-admin/nav-menus.php:572 +#: wp-admin/options-discussion.php:29 wp-admin/options-general.php:46 +#: wp-admin/options-media.php:35 wp-admin/options-permalink.php:46 +#: wp-admin/options-reading.php:39 wp-admin/options-writing.php:46 +#: wp-admin/plugin-editor.php:157 wp-admin/plugin-install.php:99 +#: wp-admin/plugins.php:418 wp-admin/revision.php:121 +#: wp-admin/theme-editor.php:43 wp-admin/theme-install.php:115 +#: wp-admin/themes.php:119 wp-admin/tools.php:29 wp-admin/update-core.php:576 +#: wp-admin/upload.php:67 wp-admin/upload.php:211 wp-admin/user-edit.php:56 +#: wp-admin/user-new.php:214 wp-admin/users.php:69 wp-admin/widgets.php:77 +msgid "Support Forums" +msgstr "Forums de support" + +#: wp-admin/comment.php:51 wp-admin/edit-comments.php:181 +msgid "Documentation on Comments" +msgstr "Documentation sur les commentaires (en)" + +#: wp-admin/comment.php:50 wp-admin/custom-background.php:99 +#: wp-admin/custom-header.php:126 wp-admin/edit-comments.php:180 +#: wp-admin/edit-form-advanced.php:381 wp-admin/edit-form-advanced.php:396 +#: wp-admin/edit-form-advanced.php:413 wp-admin/edit-link-form.php:64 +#: wp-admin/edit-tags.php:261 wp-admin/edit.php:227 wp-admin/edit.php:248 +#: wp-admin/export.php:53 wp-admin/import.php:28 wp-admin/index.php:96 +#: wp-admin/link-manager.php:65 wp-admin/media-new.php:55 wp-admin/media.php:82 +#: wp-admin/my-sites.php:46 wp-admin/nav-menus.php:570 +#: wp-admin/options-discussion.php:27 wp-admin/options-general.php:44 +#: wp-admin/options-media.php:33 wp-admin/options-permalink.php:43 +#: wp-admin/options-reading.php:37 wp-admin/options-writing.php:44 +#: wp-admin/plugin-editor.php:154 wp-admin/plugin-install.php:97 +#: wp-admin/plugins.php:416 wp-admin/revision.php:119 +#: wp-admin/theme-editor.php:38 wp-admin/theme-install.php:113 +#: wp-admin/themes.php:117 wp-admin/tools.php:27 wp-admin/update-core.php:574 +#: wp-admin/upload.php:65 wp-admin/upload.php:209 wp-admin/user-edit.php:54 +#: wp-admin/user-new.php:212 wp-admin/users.php:66 wp-admin/widgets.php:75 +msgid "For more information:" +msgstr "Plus d’informations :" + +#: wp-admin/comment.php:46 +msgid "You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment." +msgstr "Vous pouvez également modérer le commentaire depuis cet écran, à l’aide du bloc État, d’où vous pouvez également changer l’horodatage du commentaire." + +#: wp-admin/comment.php:45 +msgid "You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error." +msgstr "Au besoin, vous pouvez modifier les informations laissées dans un commentaire. Par exemple, si un commentateur a fait une faute d’orthographe." + +#: wp-admin/comment.php:43 wp-admin/custom-background.php:90 +#: wp-admin/custom-header.php:100 wp-admin/edit-comments.php:163 +#: wp-admin/edit-form-advanced.php:404 wp-admin/edit-link-form.php:56 +#: wp-admin/edit-tags.php:231 wp-admin/edit.php:190 wp-admin/edit.php:235 +#: wp-admin/export.php:47 wp-admin/import.php:22 +#: wp-admin/includes/class-wp-screen.php:779 wp-admin/index.php:40 +#: wp-admin/link-manager.php:51 wp-admin/media-new.php:45 wp-admin/media.php:73 +#: wp-admin/my-sites.php:40 wp-admin/nav-menus.php:529 +#: wp-admin/nav-menus.php:564 wp-admin/options-discussion.php:21 +#: wp-admin/options-general.php:39 wp-admin/options-media.php:28 +#: wp-admin/options-permalink.php:20 wp-admin/options-reading.php:22 +#: wp-admin/options-writing.php:20 wp-admin/plugin-editor.php:143 +#: wp-admin/plugin-install.php:80 wp-admin/plugins.php:393 +#: wp-admin/revision.php:115 wp-admin/theme-editor.php:25 +#: wp-admin/theme-install.php:98 wp-admin/themes.php:82 +#: wp-admin/update-core.php:556 wp-admin/upload.php:48 wp-admin/upload.php:189 +#: wp-admin/user-edit.php:49 wp-admin/user-new.php:194 wp-admin/users.php:31 +#: wp-admin/widgets.php:53 +msgid "Overview" +msgstr "Vue d’ensemble" + +#: wp-admin/comment.php:39 wp-admin/edit-form-comment.php:16 +#: wp-admin/includes/template.php:396 +msgid "Edit Comment" +msgstr "Modifier le commentaire" + +#: wp-admin/async-upload.php:63 +msgctxt "media item" +msgid "Edit" +msgstr "Modifier" + +#: wp-admin/async-upload.php:57 wp-admin/edit-tags.php:154 +#: wp-admin/includes/post.php:1791 wp-admin/media-upload.php:46 +#: wp-admin/post.php:117 wp-admin/term.php:38 +msgid "Sorry, you are not allowed to edit this item." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier cet élément." + +#: wp-admin/async-upload.php:55 wp-admin/post.php:110 wp-admin/post.php:211 +#: wp-admin/post.php:234 wp-admin/post.php:252 +msgid "Unknown post type." +msgstr "Type de contenu inconnu." + +#: wp-admin/admin.php:285 wp-admin/import.php:18 wp-admin/menu.php:241 +msgid "Import" +msgstr "Importer" + +#: wp-admin/admin.php:261 wp-admin/import.php:15 +msgid "Sorry, you are not allowed to import content." +msgstr "Désolé, vous n’avez pas l’autorisation d’importer du contenu." + +#: wp-admin/admin.php:228 +msgid "Cannot load %s." +msgstr "Impossible de charger %s." + +#: wp-admin/admin.php:225 +msgid "Invalid plugin page" +msgstr "Page d’extension non valide" + +#: wp-admin/admin-header.php:230 +msgid "Main content" +msgstr "Contenu principal" + +#. translators: Admin screen title. 1: Admin screen name, 2: Network or site +#. name +#: wp-admin/admin-header.php:50 +msgid "%1$s ‹ %2$s — WordPress" +msgstr "%1$s ‹ %2$s — WordPress" + +#. translators: Admin screen title. 1: Admin screen name +#: wp-admin/admin-header.php:47 +msgid "%1$s — WordPress" +msgstr "%1$s — WordPress" + +#: wp-admin/admin-footer.php:34 +msgid "Thank you for creating with WordPress." +msgstr "Merci de faire de WordPress votre outil de création." + +#. translators: 1: WordPress version number, 2: plural number of bugs. Singular +#. security issue. +#: wp-admin/about.php:284 +msgid "Version %1$s addressed a security issue and fixed %2$s bug." +msgid_plural "Version %1$s addressed a security issue and fixed %2$s bugs." +msgstr[0] "La version %1$s a corrigé un problème de sécurité et %2$s bug." +msgstr[1] "La version %1$s a corrigé un problème de sécurité et %2$s bugs." + +#. translators: %s: WordPress version number +#: wp-admin/about.php:275 +msgid "Version %s addressed one security issue." +msgstr "La version %s a corrigé un problème de sécurité." + +#: wp-admin/about.php:271 +msgid "Maintenance and Security Release" +msgstr "Mise à jour de maintenance et de sécurité" + +#: wp-admin/about.php:269 +msgid "Security Releases" +msgstr "Mises à jour de sécurité" + +#: wp-admin/about.php:268 +msgid "Security Release" +msgstr "Mise à jour de sécurité" + +#: wp-admin/about.php:266 +msgid "Maintenance Releases" +msgstr "Mises à jour de maintenance" + +#: wp-admin/about.php:265 +msgid "Maintenance Release" +msgstr "Mise à jour de maintenance" + +#: wp-admin/about.php:254 +msgid "Go to Dashboard" +msgstr "Aller sur le tableau de bord" + +#: wp-admin/about.php:254 +msgid "Go to Dashboard → Home" +msgstr "Aller sur l’accueil" + +#: wp-admin/about.php:251 +msgid "Return to Dashboard → Updates" +msgstr "Retourner aux mises à jour" + +#: wp-admin/about.php:251 +msgid "Return to Updates" +msgstr "Retourner aux mises à jour" + +#: wp-admin/about.php:240 +msgid "Customize changesets make changes in the customizer persistent, like autosave drafts. They also make exciting new features like starter content possible." +msgstr "Les groupes de modifications personnalisés rendent persistantes les modifications dans l’outil de personnalisation, comme la sauvegarde automatique de brouillons. Ils rendent également possibles de nouvelles fonctionnalités, comme le contenu de démarrage." + +#: wp-admin/about.php:239 +msgid "Customize Changesets" +msgstr "Groupes de modifications personnalisés" + +#. translators: 1: register_setting(), 2: +#. https://make.wordpress.org/core/2016/10/26/registering-your-settings-in-wordpress-4-7/ +#: wp-admin/about.php:232 +msgid "%1$s has been enhanced to include type, description, and REST API visibility." +msgstr "%1$s a été améliorée pour inclure le type, la description et la visibilité dans l’API REST." + +#: wp-admin/about.php:228 +msgid "Settings Registration API" +msgstr "API d’enregistrement des réglages" + +#. translators: %s: +#. https://make.wordpress.org/core/2016/09/08/wp_hook-next-generation-actions-and-filters/ +#: wp-admin/about.php:222 +msgid "The code that lies beneath actions and filters has been overhauled and modernized, fixing bugs along the way." +msgstr "Le code derrière les actions et les filtres a été révisé et modernisé, permettant de corriger des bugs au passage." + +#: wp-admin/about.php:212 +msgid "List tables, now with more than bulk edit and delete." +msgstr "Les tableaux de liste vous permettent maintenant de faire plus que des modifications et suppressions groupées." + +#: wp-admin/about.php:211 +msgid "Custom Bulk Actions" +msgstr "Actions groupées personnalisées" + +#. translators: %s: +#. https://make.wordpress.org/core/2016/09/09/new-functions-hooks-and-behaviour-for-theme-developers-in-wordpress-4-7/ +#: wp-admin/about.php:205 +msgid "WordPress 4.7 includes new functions, hooks, and behavior for theme developers." +msgstr "WordPress 4.7 inclut de nouvelles fonctions, crochets et comportements pour les développeurs de thème." + +#: wp-admin/about.php:201 +msgid "More Theme API Goodies" +msgstr "Encore plus de bonus pour l’API de Thèmes" + +#: wp-admin/about.php:198 +msgid "By opening up the page template functionality to all post types, theme developers have even more flexibility with the WordPress template hierarchy." +msgstr "En ouvrant la fonctionnalité de modèle de page à tous les types de contenu, les développeurs de thèmes disposent d’encore plus de souplesse avec la hiérarchie des modèles WordPress." + +#: wp-admin/about.php:197 +msgid "Post Type Templates" +msgstr "Modèles de type de contenu" + +#. translators: %s: smiling face with smiling eyes emoji +#: wp-admin/about.php:190 +msgid "Even More Developer Happiness %s" +msgstr "Encore plus de bonheur pour les développeurs %s" + +#. translators: %s: https://developer.wordpress.org/rest-api/ +#: wp-admin/about.php:178 +msgid "Content endpoints provide machine-readable external access to your WordPress site with a clear, standards-driven interface, paving the way for new and innovative methods of interacting with sites through plugins, themes, apps, and beyond. Ready to get started with development? Check out the REST API reference." +msgstr "Les points d’extrémité de contenu fournissent un accès externe lisible par machine à votre site WordPress, avec une interface claire et basée sur les normes. Cela permet d’ouvrir la voie à de nouvelles méthodes novatrices d’interaction avec les sites par le biais d’extensions, de thèmes, d’applications et plus encore. Prêt à vous lancer dans de tels développements ? Consultez la référence de l’API REST." + +#: wp-admin/about.php:173 +msgid "WordPress 4.7 comes with REST API endpoints for posts, comments, terms, users, meta, and settings." +msgstr "WordPress 4.7 vient avec la finalisation de l’API REST pour les articles, commentaires, termes, utilisateurs, métas et réglages." + +#: wp-admin/about.php:172 +msgid "Introducing REST API Content Endpoints" +msgstr "Présentation des points d’extrémité de contenu de l’API REST" + +#: wp-admin/about.php:165 +msgid "Just because your site is in one language doesn’t mean that everybody helping manage it prefers that language for their admin. Add more languages to your site and a user language option will show up in your user’s profiles." +msgstr "Le fait que votre site soit dans une langue, ne signifie pas forcement que tous ceux qui aident à le gérer préfèrent cette langue pour leur admin. Ajoutez plus de langues à votre site et une nouvelle option de langue sera disponible dans le profil de vos utilisateurs." + +#: wp-admin/about.php:163 +msgid "Dashboard in your language" +msgstr "Tableau de bord dans votre langue" + +#: wp-admin/about.php:160 +msgid "Managing your document collection is easier with WordPress 4.7. Uploading PDFs will generate thumbnail images so you can more easily distinguish between all your documents." +msgstr "Gérer votre collection de documents est plus facile avec WordPress 4.7. La mise en ligne de PDF génèrera des images miniatures, ainsi vous pouvez distinguer plus facilement tous vos documents" + +#: wp-admin/about.php:158 +msgid "PDF Thumbnail Previews" +msgstr "Aperçus de miniature de PDF" + +#: wp-admin/about.php:150 +msgid "Sometimes you just need a few visual tweaks to make your site perfect. WordPress 4.7 allows you to add custom CSS and instantly see how your changes affect your site. The live preview allows you to work quickly without page refreshes slowing you down." +msgstr "Parfois, vous n’avez besoin que de quelques ajustements visuels pour parfaire votre site. WordPress 4.7 vous permet d’ajouter du CSS personnalisé et de voir instantanément comment vos modifications affectent votre site. L’aperçu en direct vous permet de travailler rapidement, sans devoir rafraîchir la page." + +#: wp-admin/about.php:145 +msgid "Many menus for sites contain links to the pages of your site, but what happens when you don’t have any pages yet? Now you can add new pages while building menus instead of leaving the customizer and abandoning your changes. Once you’ve published your customizations, you’ll have new pages ready for you to fill with content." +msgstr "De nombreux menus de sites contiennent des liens vers les pages du site, mais que se passe-t-il si vous n’avez pas encore de page ? Vous pouvez désormais ajouter de nouvelles pages tout en créant des menus, au lieu de quitter l’outil de personnalisation et d’abandonner vos modifications. Une fois que vous avez publié vos personnalisations, vous aurez de nouvelles pages prêtes à remplir avec du contenu." + +#: wp-admin/about.php:143 +msgid "Smoother Menu Building" +msgstr "Construction de menu plus fluide" + +#: wp-admin/about.php:137 +msgid "Sometimes a big atmospheric video as a moving header image is just what you need to showcase your wares; go ahead and try it out with Twenty Seventeen. Need some video inspiration? Try searching for sites with video headers available for download and use." +msgstr "Il se peut que vous vouliez utiliser une belle vidéo atmosphérique comme une image d'en-tête afin de présenter vos marchandises ; c’est possible avec Twenty Seventeen. Besoin d’une inspiration vidéo ? Lancez une recherche sur des sites de téléchargement d’en-têtes vidéo prêtes à l’emploi." + +#: wp-admin/about.php:127 +msgid "Video Headers" +msgstr "En-têtes vidéo" + +#: wp-admin/about.php:124 +msgid "Visible icons appear to show you which parts of your site can be customized while live previewing. Click on a shortcut and get straight to editing. Paired with starter content, getting started with customizing your site is faster than ever." +msgstr "Des icônes apparaissent pour vous montrer quelles parties de votre site peuvent être personnalisées dans l’aperçu en direct. Cliquez sur un raccourci et accédez directement à l’éditeur. Associé au contenu de démarrage, vous pouvez commencer à personnaliser votre site plus rapidement que jamais." + +#: wp-admin/about.php:114 +msgid "Edit Shortcuts" +msgstr "Raccourcis d’édition" + +#: wp-admin/about.php:97 +msgid "To help give you a solid base to build from, individual themes can provide starter content that appears when you go to customize your brand new site. This can range from placing a business information widget in the best location to providing a sample menu with social icon links to a static front page complete with beautiful images. Don’t worry - nothing new will appear on the live site until you’re ready to save and publish your initial theme setup." +msgstr "Pour aider à créer une base de départ solide, les thèmes peuvent fournir des contenus de démarrage qui apparaissent lorsque vous accédez à la personnalisation de votre tout nouveau site. Cela peut consister à placer un widget d’information commerciale au meilleur endroit, à fournir un exemple de menu avec des liens sociaux ou à une page d’accueil statique avec de belles images. Ne vous inquiétez pas - rien de nouveau n’apparaîtra sur le site en direct jusqu'à ce que vous soyez prêt à enregistrer et à publier votre configuration initiale du thème." + +#: wp-admin/about.php:96 +msgid "Theme Starter Content" +msgstr "Contenu de démarrage de thème" + +#: wp-admin/about.php:91 +msgid "WordPress 4.7 adds new features to the customizer to help take you through the initial setup of a theme, with non-destructive live previews of all your changes in one uninterrupted workflow." +msgstr "WordPress 4.7 ajoute de nouvelles fonctionnalités à l’outil de personnalisation pour vous aider à dépasser la configuration initiale d’un thème, avec des aperçus en direct non destructifs de tous vos changements dans un flux de travail ininterrompu." + +#: wp-admin/about.php:90 +msgid "Your Site, Your Way" +msgstr "Votre site, à votre manière" + +#: wp-admin/about.php:84 +msgid "Twenty Seventeen focuses on business sites and features a customizable front page with multiple sections. Personalize it with widgets, navigation, social menus, a logo, custom colors, and more. Our default theme for 2017 works great in many languages, on any device, and for a wide range of users." +msgstr "Twenty Seventeen se concentre sur les sites d’entreprises et dispose d’une page d’accueil personnalisable avec plusieurs sections. Personnalisez-le avec des widgets, navigation, menus sociaux, logo, des couleurs personnalisées et bien plus encore. Notre thème par défaut pour 2017 fonctionne parfaitement dans de nombreuses langues, sur n’importe quel appareil et pour un large éventail d’utilisateurs." + +#: wp-admin/about.php:78 +msgid "A brand new default theme brings your site to life with immersive featured images and video headers." +msgstr "Un nouveau thème par défaut qui apporte de la vie à votre site avec des images mises en avant et des en-têtes vidéo immersives." + +#: wp-admin/about.php:77 +msgid "Presenting Twenty Seventeen" +msgstr "Présentation de Twenty Seventeen" + +#. translators: %s: WordPress version number +#: wp-admin/about.php:60 wp-admin/about.php:277 +msgid "Version %s addressed some security issues." +msgstr "La version %s a corrigé quelques problèmes de sécurité." + +#. translators: 1: WordPress version number, 2: plural number of bugs. More +#. than one security issue. +#: wp-admin/about.php:48 wp-admin/about.php:56 wp-admin/about.php:63 +#: wp-admin/about.php:288 +msgid "Version %1$s addressed some security issues and fixed %2$s bug." +msgid_plural "Version %1$s addressed some security issues and fixed %2$s bugs." +msgstr[0] "La version %1$s a corrigé quelques problèmes de sécurité et %2$s bug." +msgstr[1] "La version %1$s a corrigé quelques problèmes de sécurité et %2$s bugs." + +#. translators: %s: Codex URL +#: wp-admin/about.php:50 wp-admin/about.php:54 wp-admin/about.php:58 +#: wp-admin/about.php:61 wp-admin/about.php:65 wp-admin/about.php:292 +msgid "For more information, see the release notes." +msgstr "Pour plus d’informations, consultez les notes de publication." + +#. translators: 1: WordPress version number, 2: plural number of bugs. +#: wp-admin/about.php:52 wp-admin/about.php:280 +msgid "Version %1$s addressed %2$s bug." +msgid_plural "Version %1$s addressed %2$s bugs." +msgstr[0] "La version %1$s a corrigé %2$s bug." +msgstr[1] "La version %1$s a corrigé %2$s bugs." + +#: wp-admin/about.php:47 wp-admin/about.php:272 +msgid "Maintenance and Security Releases" +msgstr "Mises à jour de maintenance et de sécurité" + +#: wp-admin/about.php:43 wp-admin/credits.php:30 wp-admin/freedoms.php:12 +#: wp-admin/freedoms.php:29 +msgid "Freedoms" +msgstr "Libertés" + +#: wp-admin/about.php:42 wp-admin/credits.php:13 wp-admin/credits.php:29 +#: wp-admin/freedoms.php:28 +msgid "Credits" +msgstr "Crédits" + +#: wp-admin/about.php:41 wp-admin/credits.php:28 wp-admin/freedoms.php:27 +msgid "What’s New" +msgstr "Nouveautés" + +#. translators: %s: Plugin version +#: wp-admin/about.php:38 wp-admin/credits.php:25 wp-admin/freedoms.php:24 +#: wp-admin/includes/ajax-actions.php:3683 +#: wp-admin/includes/ajax-actions.php:3726 +#: wp-admin/includes/class-wp-plugins-list-table.php:773 +#: wp-admin/includes/update.php:193 wp-admin/includes/update.php:218 +msgid "Version %s" +msgstr "Version %s" + +#: wp-admin/about.php:37 wp-admin/credits.php:23 wp-admin/freedoms.php:22 +msgid "Thank you for updating to the latest version! WordPress %s helps you get your site set up the way you want it." +msgstr "Merci d’avoir fait la mise à jour vers la dernière version en date ! WordPress %s vous aide à configurer votre site comme vous le souhaitez." + +#: wp-admin/about.php:35 +msgid "Welcome to WordPress %s" +msgstr "Bienvenue dans WordPress %s" + +#: wp-admin/about.php:28 +msgid "About" +msgstr "À propos" diff --git a/console/skel/wordpress/wp-content/languages/admin-network-fr_FR.mo b/console/skel/wordpress/wp-content/languages/admin-network-fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..cffb23c2afb8ccc6a55da531b2981353e71d5051 GIT binary patch literal 53088 zcmc(|3z%G2b?18w27`E*m(3d=3(J;lb<36w7|E8AB^k>|ve1KPKvZ{^y34ArYFBmX z6+#HfkO{942onf|aY6tK0>lAkLVygUdE`P8CKJeHCIgc&7s5?QNG@RlWG1=4|5|JB zb53>ZVQ0SY_NSv&=hQy?vG#iJwRe5(QRly<;P1xsisDJY^H&wchxq*MN9$=(-2H^2 zcqH%?@BzS&10MwZH1IOu7l4-ozZ3TtKd~rY%Kc{Gi-5lf>;S(9Yy%I`h~Q^|v%ssK zTolv5Hv^}D{{Var@I_B4ii_#Tdw|=4pS+|fegt^GON-)f`To%AqSy`G`_!U%Ch(oW zhXVfu_%Pr%fFA{Z7pVT8qO*d(0bBrn97t2e`ZbIZcpLDA!0!Up|J@9VCW>DJJ_PtB z;DdpG8t@yy$8!H2;7foPTu~Ggz&3C_@Xf%hfS&@Y-EYVD-;3u@U0W2Oy0{(q7~qS5 z>VF^jdf>}}!qcjCj>iSy2JXKI)VTiO$JYSYgRl1jui^g7 zbmjo?fpqQy;EREp;%Oi#DvkkF|J#9wfnNlwzKsm(p}=iGwYL{|Gw`KA)$_{%PXSkP ze-H4vz)t`{W%2OIqF^Y+b-;%KUjlp}@Cfk1zyT1_C|(X!J8uQv4tzIIc=;Ys^R$Z2 zfx2QX@EyRtK;i$dffoZGaJAR}B%t2A5~%Ur1Qh-52daN<;G=*Gz^?&+5-56`0!jA( zKL|VoeA&jLcm?oNz!~68*FpopUj?>+i`Ny!t-wD9?gd`*G^d{hAS6+I0r&{u-vzwi z)4>7vj|Qqgw*ocZ7Xd{lvq0hD%|MOwLqOr_KLa(MuL17@eiwK#@aLaV6eaNeKv<;s zJ)q{}uYel&cYzlIFSy>}V}Tm?6+pGW38?<<0@}O))xRUa2LSH^s@!{kuy*mAKu}Tq z5%BxK2f}p1=RX70&ZK7fI*4C**#;Ee4g!VOX`uRj z6sUf@7Wi1;F9U^-j{!BlFU0*ffvV>pfNJN#+Z@l22dW>}0fpafK-IS=;0#dxJ_*$O zZw4|Y#k+x!M)5V^2H-{8ivrdub^t+nu?U<1eh8>}{%Smb)DCZdH&E@o1gP;0fx_#n zfd_$a0=@wFE#MQ*D~heRcsoDx?4n@miq`>O1pL2%h>qeim_zM97x)?AD}i4D?%3(` z`NZ3N{uh9H|JQ*f@UMYS20r{bA)kRW+}{Sg8u%fg`0~$yCxM4{A5qWl0)7=JzWdx> zmup`ILi)x1p9^gPZv-v?Uj=+4@Vmf&2L9AOWTD`Ga0=WCG5>quM}f}=&VyW7wfHO$ z5-a{UQ24m%c@AF=gjI@<0iOl@9`IV=(|P#~z&n8I=MR9Q+xs&~k^_$gUI@G-;0E9$ zxxWecPr&B_OW@uYy1cp*D0+Tt+`k9Nloh`Z6h1CyaxVg|0X`168Te@MegLR?=U(h| zeiC>E_pb#$2>4;(0QdFGM4=%EeN z^EU#;C!Yjr9DfDWdyj58{a+7!9rr&6d=u~~5SQrn9^e+>mw-0`A3p8x?*ZPx{ZSw& zC_W6F170}e^K~33yuJ>odVU2ce0~ZjJp3o1=JC&fn&-a-LdwMtfv`Zav+a0#3sB|n z2CDqO1FGETfU57J!~XphKz;u-p!j?T@G|D{1wfViv03Mbp9QMiTYy&q-woUV{6pXs z!1EXcRTt}kyjuJ$Q1tyjfp-A!=wQnLzXCh~+`&VA{~v%Vf9(;M@4pCq3+;ak_-}x( zn8#)TUc}4i13w8$|2_~BD1L23d%%Z6L{A023#j@3JW%xh_dwNm|6?)#z;|$eJy7%e6(FopTyz{< z0{g%R0pAV05%|G){%xSYiN{JbBi@qP*TXy6ZkPX<2h zryO1dd$$%NzLolR{Tr9d-}nWu=OJ$`3Z|sE z0yqo&0FbFKE_xfjBk--j9|K;?&4s{wfSUJD14VcL9asV%_jbld{m%qGf&1Iu;e6T# zitgSG>;eA(_$c6wzZCip_%QD81Wo~e9H{Yr9Vj~eyZHY8?{q!!NMOnH8-VM9F9ALd z_!{8jf$svUy-xzw&NqST&kul40Y2v6I=-$2YCNrgcLMeOPXM0^ybCBie+H=e`!nD^ z;P-&S^R0KeANF$rzYKgX&ma5CZbx*0d$@mpz#jrNo}Itq{eLm=N!-62sPVrI_)6e= zfiD2AeHU|k9{mBTo%hUw#gFA@JS6Rltt|Uq!z^1uVJW z_F?bu4Di|9-vita`~mRifxABf?*P9JJivRe|7cMx>HgojUGScNk1fpoGk??d;r&16 zc47~x`THicg2uLC~m^G-L<1zyelPXUGB zj{;u`e9-SYz0Lw}zTkqz&n6%1HKw~{ug|{Ukkj3`|^uk?>?Z$ z|8Ah_`yTKH;I+T!dVB$RH}`)5d=l`DzwiD20Pte&KL^x!z6!hq_bOz&n5s$05UFq znd_5W|B>sVl)nnNp6l^^zLM)Be7+F)XyDVi=D75?nM*XIzklL-s(pf$$(P4M~u28utP!u2SwM{+H4 z!M5f<0rKCIC@-E9-@YfF!dCWoDbH@;`U-bXjAtUWpXT$$K>b}0yc76qTx+rM8_>wjqe4%6`!BT^G9<16!-s~ zYntnixL`TcX&Zt1lN>t4^+3x0E8t&nJ&e!a1FrOUQ9OKjz{gQmw(PUx{_g@lKA^x) zaQ$xF|8L+D*Wbkbfq-uY{wCMWTwjl8-vz!uJ`21vKL1JW+4lH64{USIa{V6Hm$@#d zU;i1XzaQng&_1~j_?Pin;D2y^o9k6vKgab9F8yi!L4OYb{yFe^t_^y?-vwNMYM*>9 z;hB_qIM)Z`*&057h|jO)`Y6|LbG?`A16&W{`W3G9_j*1|as4{ib-Z^!;0dn7T<_r0 z-z&JT#wh0j-WjkrF+^>*HG?3Ts=Nt#s?&>yNK^f`-BYyd|P~e zCh*7O^Rs}mIlcq@`FNJVAU=FH;JWlh4L+53_4fv@w{!g`u2np{3s|hV=CWaV`BSgo zc+EAN%QYJ>8y0JZ<#TS<|NA?OZM$8ZYtOgKnRd6m*q)ixSN3GM{82g68MdanW2Kfo zE8D$grShX2TIJlJefY-JbBl`$!%Z7DO!sHn$0v{V2Qv$U_Ha1aAIxspHfXmN+lRIu z+S6X-nXaA@nye5bcU-Hbm~ zT3VU=SoNX(?Zrj1fecei@2S?0R8cwbvNAW}I) zGifwl?!LBiaAAhoKSMJI7iI^onLJ1Lxt(EqaE4aWU=FI-xwmnk-|r3+;hug*>NMum zv2qhl#u$zk7W#w54Tt-K(fo$_QFpO3WNJ68-m>4nDR0p?(cR(Vpx>L_va@%%f5V2j zDKDR&X$|K#m&{SAcgutOc9orBIcN>q-4kVdhG#QnOHzQR)2$xYXxNre@bZiOve#cM z#h2y6puf-_bWcoLb^F@0o#A48!26oPvela@ceRF#rO#-3IzZZVh6~-+2_#8ow3e9B z8=P-Zb<10$Bdx*oT<2(eW_>waXw9!ra>=TnZ!L}n?e!&{8noy8N89D$L4Uqn7)^CM z(`A?Li2us|Ajz)D;)cLP#d6D0!^julm2x=OKSl?vqOyOuY<0WkFqj$~4g1p_20Bw7 z>nzSW!i3Vva(^F@3PMZx-U>{eD4&mr+ba=g9q)tBfyUM-v(O#Q3JWLtqp~%<*g49} zpr{Wr7w1}wRyi>=A>h1A6~YR=~S zGo8aHG?h%~(N=fVM#_(prH)3p5&bN+G zX@{z&r$KB7-Q;6Y&ut=hE|xQW%2<1WP;0?zTVGBIbKS0HnQFj;x|@cpDolAkWAm`w zy0Fl04O+eFwzUn#_oL^~hxZMxw7QY79gWck0ok^leX?>|GhDqTiI)R`!Pb^?Xj-B| zZb+UL$ul^}(FK2smQGKPK?4kR*e|E&T0Ll+K6eJ?px=dkAj>wxwQ`GEFA#nycdB!6&xXx2vy^ey8bPU?@q z5Y=d2V~Sk5w2|k=!N~j}1<(yXBPRZY%pOCtvS|jq3sMC1)+8#uF?p=wL+g&(nQ0F@ zvpo})%$7{Byx`>AqDzYSu3S54qlcyw6}OMO!l=pW!Km9FuJd82qlf#N4tt?5 zF+C{F#y;FZ^gxNSvCE`kjA$#_sMj?(sIoPq8rEEU*>F=v!8z2tK3ARlT~%)yWxVHB zy|~3uDq29&^}OdHg6ILNx7;D-Dz?HUR?0rjKuVYD6XYfm8JLD2m=(_C*>g!rh?gor z9$)nlMa&vpnyJbjFnr{Vl@`kh8>@}C%FD4m2Aj*^q}7RbRXe)JP`h|yp*@5(+6%~F zX+zzYFcT&LqM!L;0GKX9@DXbs-ixyKTw_Y?slqEvb)xlS*c>xBL(}FDZ4K+A*b2Rg z35OUQ_TgA(h|-7i%yrU$+)P5z-EU{09_3ikyf%Bpr;lh$!kCHFYMWATaoyOEbmM8c>u6Y;7n3V zQc2c?WS|?P=pv_j*|iLK&_B}d!G{a7jJqhB8&_ND)mzrC8LopJ`C`kxEOtP2u&LPA z>V>(n7>1*Z*o8%x^OGuJmJGb5p5_N`W>%%+OV<@l^o$Qz8eMnQtZ#;9m@b+5{T}8& zqa7m6r{^HT)?sY8Pbxbnwh2><@P=Mts8t?E0tOeY@J4y>>6Yb zNW#2Mrn;zcZ+kG0S=>7^tlq8AfPmko9%^VPwyA!1rkryr?Z_FlCx$p)-fN8DE;jJC z{``W1CN}CydgB2tn80(p*1yFIKx_=n60pfqOH#WQ-;lO5zE!1Yy1{&cj%c|8{a&%n zoC#jrQ@vI(xFp=L*p72I)fcw9^gjt+T!Hl1ja2y(l%FiNx09c-z6??4GqxXJt2{Q> z!F*9onhqlX&}cCjH&ziF5HHfiyI5nHqo{X?sEf3QPPexYxA0bR2Ya(4>;N7Z>WuOm zHw?kQ^0pz8R*AiV`5?p1n{m=K%&yp{sA8tr?!l=9%Qe&<@v5`3@VOTpEkHYFyNK`1 z27(+L#_D9TW8c2p_iZviIn6q913D8!R|YQyrN%Uwo77!%fZ7472X%$3h?v}=RJd_7 zbJlTs3+Gr)WGf~Q3Z!35uRX~_7rWco8Ori+x#e{ncCA z-C_HfX41Y_hv(Yeg-TJ$9h+2-Tcrf3SbJpQP?x_@z#P`8M8=$^5?gV->sDt>hKL=x z$Xmzyl`YXad>AWFlY!F3J5v31OI`+Bg&A}jAs%%p&=y{eCeDI|ZV*Bx7(}K*%cF`y zhTY#Why8><lZ$F{Ulj6p}S5C}iWI3D{4uuJW*qDUHQ>Itnl5%L z-ik~xE$bq3xFNHXknXs0`-?K21s1nj7m(JBa@dEdMVlubD?=Uz3J|V(BH9kcUtQmKBFR`@v3-ahEEDw zQgxzhDMm5%F;*Oquh(o;41WO^6)q69;$*>T3;p5Zdb4DZ4Q{gK4<)h#Yt5^PFQxw` z892t_e#z5f4=V;HSPv61fTOv$8OlnddL&^TWfXA7AC%cHVpf0rEi)`{*BXPK1zsdL z0%Mhn33zQw0=9)!ez~fWbU({FT+Uwy-fr%EgW%>lo(XKO^$`uH(zMsGpvae)Id3_t=24h zPpuGjQJ`}$EvpNs7-xeRMQh^ZIxuc41QA1-JFx&O!B|*@9A(e}S3Edyf&V}+BZrFMh14Dt1^rT#y!nO@`d(c;g>KGNs`W2=F zq3Z}RrVxuBk1gV7yH$plP|UmDq00D=849GYhldFhVUJx}l)JJV*# zJKpPtcI6@9AIz-G*5)n5nuigZh+kMtQ*qb>Op`@a8p}ioOiB%m7LFNnn|b0Qi(#AS zsAwROGcrjeWf9^=NOfEt)^TUS;_3mCYSOWutlvkZUPTZ%{;+9D$csa`37$%G7jug8* zfX6s2>V{QC7mcU9pG^PBW_gU7&S6E06wGV9lZi>rN4&kkB}&R=(E8YD0h1d?Kxji! zl#xWBub^;u223B}$b?}_IGS__Pb*;k#8yir$?Y-nXe)yt5xR7<=^@w>kE*t$xBo1d;%_9_tz0u%C;d- z0gktH2rYIdr7you-4y{@55h1|3ji1GslQl0MlW6sp z=gHr#hP~X^x3GYPOjL`$kLqGEDQd5{J++t9@T_&k!a{VV0t7aWh-jG?W;W_cagdPo z@zk-45wGY`tu%MLx*bJu$s+h=)d}-{KVBQ0VX@t) ztM=0A%C9tB8F@ znO{t+3{dOzXfUXv8fSjZ2Tn^VesGrlKD-DFD7IGn1urq=Zk%z7@b62yshjdLkY z9A3-#iBX+&&epqlDd=pxcg=OkVt?)aM7h)Dm_IdLw8A4MyIR#ckviv&uI3$4e|SUy zKr(Lu@hhvwau%jp423y7!(dT!Sz8-pROYU_jeE8gzgk&k04yN9PQN_pg-y!&l1Zl4;J)Af8}*;=Rzvk6E><3V@r9^*wf5Z zTa=@S9+{02CYwpFSZc8abq~ZF@v2<-1>^BtRb$SS9JMM~jS^_1KwB)U9ancrT2m;n z3I!0;!c_0JXSI-jz#X=Y*T`XmVNp=E%#KUTTZt;LP8lICm9MNI^O9tWg8jCwLu>X$ zZT=0#WeSmCbGV!MiM%6M6EbRP{A%VI;tGhhaya8$*^hetgle9A(H*vuj1DQKpV=GGj3 zMXiQ5{EqMiLM2=^f5JeWVe|a1F&R{&1fOT~g))IA>$>5)sGA~2a%>g%stAy@sL`~@ zgisTyykv(e8cj62-Li~>JY$xh;M1)*is)S9mxdMz)|WzpKF)5fKbjYB@*|?-dCqP*uval4>1%WTJScAK z0M4o~2$QaBvLD$dFVkR%VDPq!3ZfPc}2v1G=U@g?mDFG(kAWr)JQ; zlbmf!(09on9kIoT@gk<4n(Js@#J(W^RFm(5OuV6ic?=~gt;LqHpV&&Uh|~!u*{xCw z@mQ>2Fx+so(P`X&qoayfw9Mb1A!nSENZIH*%Q`7L{%#KDOT+mt+xI2(i%tm!THCGx6YQ zc_B&E4g)kiCqJ<6sL?OFp(IEtlfi)3vQFYvGYsryQMbF2VjS76ib$IRi1aJ#CPGKA zMF-QHqh1G6wivqvq6bCFBkdE>cO|ON$C8d|XA>Q36lzl_;eZUZ2HiMuk)_sFAK=a$ zYC)bff-NFRtWRyE@hZa1@#J{hVIhy%NHerWG)S8oiWvzOgfdC0fTfMpW=PBvdb`|j zsdS*m!`fz}tM&Hr>Gohj(y7hH14zg-E>(9&#zX1p?z;C>3gu**CjOjZ4oR;WzPj3@Bb+NPg1?t(@lZYT6qd48xe_MX>BK z^2IivDO*aiEDBT}=oGzYZD+Xh6v?2`t<60iu6$GO36ZyzHj{v(DvX2Uql7tYsitDX zb3k#}L^nGR!AR0K{70}OjhW<~WzC2hGG*E9i`39Up5B2x4O!&TFppm61-@pR#2X!3 z9?d{sMJA1UQfo+YCK52`6uy(dg8Q^=rYV>9P|0jD%T8*%%48(+OVuk7vw$Z~XT#(s z9FldSs?9O;cqRJn+$N1ghhR7p?FgLl9YaO}>V@huwB;Eg8;RCQ*dt~MnpcoRw47uSEY|3anamhwYC&&eGLB$n7(h=h zf9iD`H%}G^Q#7>j91RyuLFMsm2yE<6<=&Dhu%B%=V!Ai8(l#=rC$OcJkO*h*CV6;9 z$)5S4&pGeIEndkxJ#Nh_2w}=7netK8_eYEivKNLCT#IGKvc2yLwDQ@*a8|OlcM*oX z5fE9q7&d{EC5Fk^ehp_hX>w^kcz&%#jlnxFo1dV}4|1=Wnp)O<<%*OqG%&9lo<%m8FpW__9;pLDF|=c7K)Ne;mUWE`(4~ zuPDS0L(B@pq%%C0QX;kY*VDtD>u}^`6wm^zM76|DtDp+ok^q`EMVKA{9U~j9d4rz6 zLjq=A2r@C8m)JuwSYK+3#E`6*)(66L#Kal#sY8>6ud}SdcEKuBK3681HYx!1!&zP=(PDBZ=@>$P#fmWxD*A`02IiW$=k zoY_+{B_E9-%E73oiWS(vEGc)G!3<>#>8|I@R84A*YvGC%Dsa^*gxYGfRBoDXbJ~50 zy-!X;jABzkCbKqVD9PB8qgk&b#0t5XWX}Nw%X^iSuzhJJG^pep-%YmmvhpD|tSKR3 zG(b|3hz9;Z6(&TuO+i_CFlmumhLjPGr&)qsf{S_gt|gQDIBfnZ+gMpgP$|)} z0Hl5~AT2QYQon??XCp$kdfoaIlyy^4h12AZPASwK>xY+?H~TCeL+T|0gTC#3GVaOm zkwBt{4745rq5{`^8l1BSykBp2vUp(|qrO_M%1-3i7vO+O@Y`R=D9mu1vJFOvM|qht zk5VHr4b?6y7FkDUE>$z#&sH#R^)aekvCW98``E?HAa>r8Dp%;>N`*zJ_v!_74{~zZ z;9b8MhN_K8hR;p+rZBrxmsOn?gwKNiQBQqaUPy5jGb$^AEyDM>C%5Rnc2E z)f@q;*o<4*gY_7AhzVk-eMR2t3s2NP+cz=g>}}?Raet#5lAyMTl_XkYCCiq@@)B0n znW1kO3y*z#EJ{yur_??AYQLFU^G$eg<$aGF2&=xVp1UOS$~GSy)`gAGDw<=kr*DHX zQ+hnk6KW58kHS@SN1S5HT%6E&J;lW<1;!9v5SYL|p$*gYOSu?1v{GxHKBEhW%S7T^ zw!ss-&G_LXo>?sMV`5#nH0q|8*#Ne@9*Ge$MZA-?Z0d_GMwh0r6mPM`8hDjBy(JM? zH?zuAGl)+X2+cy#`XZx}a~8`p8i46DlZiDSqY7lCjkJ2kG2v?!I6%;?Y_HkO?*2% zAHU_S>-FbSM*P-9sy)d_wYwTp;en~m#vJFz#>-;w?GyXjvVYh!vmM^tRBpWbnrBR0 z{WSiS*KFK$&DEPWUU${i{H@x(bN7yk=fUBW-BeyPdG)Go_>4Hj69?EDzo}d#M|lHh z8+3Y`#q#XMT)gq%fmf;TqN73^7^UH;;Oyf(V*3xxP@JKET8qr z9piR*d%=&E{1vn0U6Y_w)yw%4c``i*~rphK-ZgOMqQ+R;B$7 zn~3(T!rs0E>t$l+Ox5qo2AL?Yn|#LP@p59^D4Ixo=3lHTY=%u;)Xy~Q7rXGrT+|RN zWqMJ+i*rkND@}}GFI&QvPEA%1jzI+y>KV=WGX{ zS-VUdqnYjEFX25mnyiL)#^d6~+C*xc?pUutB`w(=W)LZgX=3qSG<850>KWT&NKSr!zK4kfVcIS-PvdL%Oyim2z#n$MFPpdbt-PJt$-1G^d%RSsdZc6MUCHcppc5 zE@!7DT3tFdjQ|@XnB_F8l!EGDLGe81#R})AA?`-=LRS>Acv3pZMJK4CgT@bH+R1*Q z%Ll_dNBzwZl$JTeDMw8$ol<4t;lsaan;gqH%H5SYspa^Yc%SIX(%m>loO4i4x8e2$ zW^d5K@?!Ougay4KQY9S0+BNz8qF-{HCQFGuGNbiBwPqQ?dLsAicIb7M?&kdlRj^gi zmJL{|SUN?R)hekmzs+EX81fiK?6uX#nHeqF4az%5(diKzy3{8P-m^rPPAT(Pva&N! z#6$@XP+^N*v?|AX+u_5lX_acR0Iwc0F80E(N@TRkz%5khNzYm!bZlkmD|0o?%DyBu zme0&KZKGg9NJn9HgkjQ9s+vX@`y-5BP*w>Z)&)4sjgE_TNJ-Mb*svi=lvV=9#7;7{ka@n{Gp&oGh^l+9&NfD}mYpN%(6H3n*He z9dw3j35*5WX7}=!ljOZGYX3iRnv07lVS> zb{5n&>{Ju$8Gj;oEzCdwnNTgz5Y?ZSGiXf7N_rm&lEJ)w{#2VbG*@!~~BHlmgjS$yWtiXj!@52d@GH75+FJvTuy&7_g%eyUU z^~-xx!-dTWQOz>`9Y>d`ps5BCPi+>IYmO4CRck$x#6gf^ystNf*n`6T#aJ{j8Y82D zu_AiQI`&Wpdeop7rVPcvvLR=4GHKNiDLjjk5dVM}M-S-NO|4If4o;dr>}uJ`XIzKx znIfNcg_C5Ow5d4S-S9>(U-HuJh(3tvsK(&s&T>Q_eFZPgs&i6ct`>SEu!&Q<^j_8M z3jA(1j!M}QM(3e-KD(7VxG%^Y`758;Oyi?{G<9yy97-FWg?y5E;fNiMYMKm`m>B_* zY#HHq?&5qstKZQ#Sn}QsM?|QtGcfS-#?ZN;AZE1g0W#HaeJwr4Ic-w363&S=NYs_3 zk(#4hdBjeZI`&Ulu7-{@`4scM1pTEl;+`beG{VfE`A9#6H_QKFGZ`fn2jIvKl;Q1h zMj!_*V6-q6O^3@?eZsO~Nz$`R#tMxaoU~mram*UeR+L^Q8O==fSClo!)R@KBVBUi@ zk(Un|^vW9?Ok#x{DM*8f48gL71hca0yL3ug+^5+OAC#z*cxe;oR(|Hekn)Y@cY8MQ zpwX6Pi)T^M#k_G>22o|jBN;C6VKv8;RrAa`*wQIKSVg?h3L6QI)xm`dUU*Px=~S`w z8rZ^ZhA=kQw%2LW5v|?6&SdmR2y-XHFzhk!@lEx&hf5zfD}AN+;WE< zekKJW;tAeCpDZ$Rxjs%HvXHx@#ifsM=ncF`Gu{JX`LLv@jP+m)KX)a$U_ySQ`ZQ2G zAP&XjJl9w-r2Cm+QTW82WsA5}K!emec*a4ep$3{l&@UUJ4yv<$xI+NRf*=i8x;>4_ zw^=~~xnuXS>1z19#$r}Jb%^@ZsP{Vp2IfR2j)R@HVG3daooy%8ITmwc824J0I+1et z%Y0sUW=7=QF@Er`juMpTfPzMmBo{+8B{^9eMYDXp%37hQ`4)UG=oz&qbLKe4mgsq? z*-I#twG=)Pj`rn4cp49e z0~j7Ex77R#+Lf|mtj=&2f5ZtqY}^i0n=_^wVjqVV=GP(?Kpj##_rfOzJ7Zf77iN+4 zCKi|8rzz$QR>g7tBjiE6g9BG3Y<=agHPTK)q?T(JAy|joRz`$%#obO+kH1`rgr;45KoK5qWQr(TW2!N_ z?`D$u)-pG%QjXW;TsJG+POoE_jmp-S4dRN`k};hMIW|h|tc9T(wJ{&^b(mrzF4N3D zG$7sJS~!efLzbaaK_Cy@D3X(cVazPtiY6O%EdXPF52;Keu1T$I$b3z+R zwGzSP!}qRe8_%-#Z6YSWHZ~CAZsHA}!Ll=8=I|ywlSW^dq!6VeNRzm#j17|(anz#i zb@fG(qBafn&stN-U!8+wu9ZFehS;4=AF)+=+~F0$F~XvvK`u*|PGQB^v6?#$?sL3s zB956Y0*23Ic^JuO%fokZ;*%JVIgqGNFEhTa9+OE>Lykvgd?;{K>CBq_Dh66s(4U+G zrtD3z@!6DJ)kL|^IlM3t%}|maui;TnRnl22;gdO+d|&zHtfL!_arUz&i+%FMTsgR% zufTzE457@<1RNzfEiK_5d}yIc%dRM9JXBA3lvll|xK0g(RbKHYdd}rtS0@i5k!Amr zi8V(w6)(@EsGr^`AK3ghl2DD+o%2#$iIXGSJXP?BiSs@w1`=~at>;OS@lZqipIbQHtDHZZMo?yDmm9|8%^nD zCGrekXyQ4dI8lQc^H2-ai}NROa&+l#Ns2Zbc2bOLEfzap8rDLJF#GH_=`6Im>+*bb zJSS47EwU@EE93r?o?$^}aOUnoO_mrjCBBUqFC7VhSrW>0h+0X3}XHkJI+IjLAeu3}KZPg2Zc<`|4p0H&N_})ec53?;_?JJ}8c(tp{MqNGpclQeQ@? zqSHR~L{*hG$Z?-hinBN$B@|XQM9gaW$`4yN&KgX2Mv3P8)3{-1%&|VzqfHVKSwAGs zA(on#O0cQL0?4JPGzk&vHH$0I0f{6-3uGbbpa|a8kA8&E14?q3Z<1IUd7xj&VVYf2 z$Q6!{bw;iTEsIP@yDJmH0vge^N)lm*=_pzCQ5L6HZn8D?LKLc=c}6ic@iO`T(bqI9 zb@3;%VWF6~a70KFCY+2Acb>7XC=q00i+(m@+NJU?D^qZ~7Tn+r50%$>(k5w)T5T`A zPHR}kOu{6_^60p{Cc0$7WUG5Q>D3H7F<+O(R}0SO1ySU>;U>Am@_tho$>!Li)hl&S z!d!S6w)N{RwZ6=?rpQsiW#TEwsEiR)9>Z`8#G$mT1wp*gTD(HGcEvlj0sIR)FI5{G zBP9K4#ze7+Nkt)LS1~4AQe&1Z%9-55Bm~_HhjyemlLpFuxa_c2D3dzr#ezV!R?W6J z&|tozZk&fDgtX{s3E6`rB-Q#_r6WFc71ncR&)D6`$Uw3i<)J7Ps@#`W^2Krt zeRiZD2v{j~fdg{!C?%H(NpLQ%+jH4AjCC`Vi%}Hk4hK=umEC>Lqpt@8T*3^FVxfy- z$H|RD!bU8Aixe6x75pTToV>xHBRZdh)y4?~VJ-8aIN)8LZyo1k^07`AyUb~c00cj3 zrjsAm%3fIKGbS!$XP$|ThKsu+XBhZ=r^P7d$SMi*WUT)^+3BO>vO-u95hj(WY(}Cn zj1QTZFsXrNmQ>?Jb(5!ZN@r+V-HDv-|1pZ4t>ZD+e zr;w{b;`w|SVhB*>0|9Fy_#N;A4*7MzbWC+4+JpG05(1|``y-t?3t68 zQi;MUA(9Gn*1yYd?9u7+cWCJVzDr?b*%MV-Ri;^f?uBHwgpVM7WDB;JB&9Ichzam4 zNfHa$CP_lr@*q@hQ7mZ|dkLc+o7_UfP#^lvjyDE5gVtfWt*lNPj+OfrQQ)R}HDeBM z3UbKXrxbfu4pfBoq$oiJ1e7?5se}3?Ipy|YJ<@hE{!P|WU2SXQRy%8lsoBR{a12Ts z`^@$|C`SM@B6cU)?D1}lr!hMrv9VvE81^I;^Y#ozV>c zky1%CP!p7oYt~0tm5dZ$AJIKOiPvG>Vde^s48UeGku94pR+fuBF*dg`Ani(g8wa^; za?;ll0miwenxzq~ASi$zhE(=wD_40f5^KJHf{7CaaadU-j_S5<lv+>+-^}UGh&U5$&X+98TP)* zLZ=G1lWWS8X9>SOGu4-=y|M4*m(;SFJWQo9q|5vIz*ms{G*>gOxLZL&&{Z~3r#MCx zEYd;K2&R>Vu19<EXG=X)deX(xL$LgmeascVs_({$#So;5H(oLD_aynv!SDsJiyW6 z-~ddY+6oTLttGHJjfyhB((>%sJPXdrPN+#mdTeh6f61Js>?ol{Fp98OOqDu{m;%?r zDW5txsxB1BZCUyiynF=;78ppw9<0hIJJ0Br_tQNxt!8Rw*+q59?wx0Qevj}PS zr7W~-HH~uwELHoq!4F9=I1_?+b}IS0Su>{y(G@3TTLj0js~|9vQZrMlUhB*ldy43R zF}~1mRWhlfrON+hO^@GH*RI-f7hj~{|Uw8_A~51Ia)ZNkw1J8nDLFt!S|!%-LijPR$ikKw9Yd)}wwKplu%LO($F!cS zR5W2mnr!0zbiypaW*=fV153R|YHSjby7J+RL{3RUHk40PMe>8(86=W2b08w<#&=A3 zUC>drA!>PjNyV;M+mQ7yYSD=+M%&4ejGh&Hef5B@nyB*q7Gi?&g4Lii9(Gu+o6WH{ z1elHO1Fkh#qtlF!)3>@}X*CU3`eqSyaWxttV|e=7{A+(bkjz5jGAvW&ie-d5zKd`T zc9V`1@AE^zi@x^VXSF{RLr?qV($0#mZrrE~GfWR6eZ`cO4M;{e9!qE#xk>mG=UgQU zKe7o$+Zw4@0z3QOS5#>+x}%!@f38AYpUDqJeP2735p+0DRePT z9G8wzKB`46=Bd^hMFuU*k1>e;Gm%oAr4El(LBzA>Hq^?VJrP3k78Y0BGzTANv;~gQ!zGq zaM(`f%JHVBFv{vsu$u9ZZ1p>LaafJjw=kNrU*Yw|HQD-#!tp(90Cm$OHWr<3EdC}& zNDFIfRh+=vOYg<7^pLC3yuvugYs=8P4@y;Y?t`5fzjY*sJQ+N5^iECX@R6HpY2Xnf z26KoV^GQsnL3vwk ziDKv;x|Z0QB!T5{H6i0!aURf-m|>o+q{$fwJI9EUhy>p& zt`Zu(c(QLAO^ZxK_dukCv3Tmqr8Plo>sjh<*q`WZdYTN0oc$k84TdF7qVg=j*1Qr` zK!>_pZM!8+1<~Q=HjB+u?2^Ow7tv~(5a-JIagm=WO|n!48gm}U=-WQ2wEX0viPwES zz%-6oD>*~PBCALX`(;p9bsin&H%^r75RqHSjw++eG8>gOuuDOGsYy8e%t!3&{bmke zP#aBGNnxAsKAWLc3aIjQRGR+t3-4;7b8YP1fAeEe_+44FObAm)SMit7Xyc zlARdqCcdLjC=PSdB2CpQ!Z=gYKz$X&x_WN}z_Nvi(@6@=f@ih`Uz}bnz>R&PooVsG z!<~jpt+S?xK|-_6$kTXJ+-z8rugFfHKHJSvnJ11%)#d!Ir4gzSfw{cd6kE>Lq*G&- z3CsLj0KC@>Kp7RTk;CCNGVn<1%5qCY8GLqHBaIFbCJ1E+m+77SBLM1cX0p(ski2E8 zNUfQG(PBjWR)Cgh%^I`a3+gdJP25cww3xUi4@H_9SRI>zR?RNuEWh{#6nC_(B zjWZR-@R&XER7;?-pAV3PfXIif(spfUsa5@CwzREyKoz9@(_k+qI82A223LaGQKR$R z6{dxPt8LB_2aVl_2m+<{OOt3wL{~T`K-lv+6SHZvgU!NvEP`kh(Py>_D~B_*k-RW! z5ax2Kz!~;0LVEt~_!dO$q=+C*F#+n7nIgGInwG^)L(6FF)z1e7NBR$Th=JKc-;Z-D2T+wl&a} z9NGT0pe|;5!n5;ZI!+pvvzWeFyGBHvY3D8pci-lreS3*mrCJrHv)oL|FB^VJcS*7# zl`Itss1oI8a*B8Xdm`&Ay>e`34AeY9*VMK-SlT&6)Z3hn}l?1baT-)(34p+yt=SJ9W1XZNV>xv# zQ^#A-GDpm^*LiI9)JNGgwbvm!rdb5_jUeXxO1MIL4cl#HPfObV`JcxErL7GvbMJI@k@w3UBsa@jyhB$;b9$B-$PG5Pg0!yu1?9oum$G$6=Tb(t=kK zwlXzHGGI70j;k%}u>x(DgizP3Ev|$=gB?;W(in@=F7u9ARqG*iAY++vz>oao1m_8f z@oW9EQPz6Fq9MP_WqA}SJiKgKwt<*NZh2aYpw^>Eg|%LVITMhB?eAl~Ma$yEIr6dw zJu+Kmdg&v|8cj-ukCd4sxGHs3?Ey$MYWQ0rMj@U_dciEPG>PkBB`q*(HJo6E-BoLg zXa7kIM&Lmt za!W(W0`v@922$fW1yZmRR$kcWmo+dpQsWkY$?PTR?X9JT>7~nViFV7TH|scSSm<1= zyV4jG!Kp=>YCMud^~t58pah?m7ZdkeFN5t(6cH#g4_5Y_)CI*Un-*@OWQ|7~T{0Wh zBSL=omubwj!9?|7?kUig^hISU*SfSzOzpmz$t(2>1li}B?~>oJbP07dHH1+SrMGVj)rv{`iV+*D|=U#OD32~cr%DRI13sexM4N7rLI7tGzGUR_iZt)DRWT7itcLE z#r0m1a&juhT=41$kNVE&ZNjM8^>ueWpXz}wT&c>&$wcQ=apR5g>Iu*D+aBb>X!G~9 zj%c^|m5;CP&(`uD~k3po!$aY;5~!klK%P zEU&CaLlQN)dVfyGM8s$s9ht^F<^4*5&3eCTRjt%L3E!2queVz>qbsDA2QA!h{b1la z5C${1uhWv(Ub)WQy_L388LcvyTBTv<^FyZ+BJJbaZIlD)@w+42VT4E-928?|R*eWo zvAdq?G+vZ?gW2nOOG%_@TeR_gkUKw|ICdn;ur%+BI+Bo+=dBizDIInI1R-{t#SL@;uId}aPz!b zMUB{He?)B%nxFUroh8(mfxW=;z77S*nID=!2~JP@7%CSxo6WfSERc*vwVSr6oN<$Q zPF$YpVO-bDb0Eth+3s08)QH>?7?M|8d!EC@-i~Xd`uCE6;p6L z-c*KSbFug>d{j||VA^IJnTJ-ZWlGAiFzf|G6U=khi&FVqo!Y{hv^Q#vqkPc|H7vy< zfSUKHU?aGH=AyCYzifE6#1unxC2oODGn1GoJ72+!*@&SqDpR|}{;;uoGX41(Hyzh# zipakU+K$9?OHm(nCS+>M09$5i#bygoYTr8z>8&w3Vk+WHgA_cdB_n4$!1s96wSU7O zJaDG-9LD|5-E_fpcVm%<6!B5DNl}!bHe=9<9Be2aATxrG-+6HfVSAfq6cvx$e9*dv zBz8;H@|A@^GZ|Cv{5J-X(tjG=LgfiPTI4ay-y3PpMGCKwpoAyHQfohUQE|4_*aPiD z%Znx!V54ISfz+MSMt-dZL3Wa)jcjhTu=1YdFME_bFTNuPap1^=5|cC*mkgP4RHz}| z)F zGb&KCyp}b#i8MhR0keOVVLgwhj2&!he3;{WTJfv}No~6=G-!u2)#BdgT2<5Ot}Vcv zzJeULa0Od45sZ~hwOF_OoV#p*hR1>uO3NB4S2m=ExjPms!z0qNv6e+5Si`KNM6|V) zP`5X1tr=bT!aMp?%84Jr@k8h&aO*aV@99#&P{@iiO0)0fD+ejE%Vr9Zk0khbwVacY z2&oq1Tk)akyqY2z7B}aZpv$A6mAaiN64~cs)M@k5)4f$AtytV|m^|?|LQxS6IU8`g zv@i->N8DGgL37!H8L*f_r08S}r61X0DjMxn+eOfvzDWn>iyhp4yc)g^zb=p_E~eZ2 zSO2}8bXXfALX#&FNQ3Z*x;1S<3LUVam2Kn^5mtWd4;Mn5a#ReXR173VRFRS~jb6q( zuXJ_}jR^IrDnU?$K$m}&B|mjZmdF>)C&o=@oyv4RuPln7C91WfFC!p*hB{(q?KkIsKl%;LSq)4$@=!QecB!eSI+SA=T5q+iMv5>2qrtZ?oI!jsB=I(ej z*V0VLbPwEMlS)S_oy=0I>`Vm-9;{t9-s#XbY#<9)Hr_}%wJAY}iHUe$S_fch(tn> zZ-UGcP9BqOly{W0jACd%#+L%9Opaz=>valkM$-s=P#H2`G8$H}Zc+^?plnfD`)MO~0!NzVb_j*m46_q{-S!<{5hojqP}YW8j{h3;t?_e(;>*Uv*y+i-O=2h?Z~ln OD)fH{Wm`iT6#pM~4ijns literal 0 HcmV?d00001 diff --git a/console/skel/wordpress/wp-content/languages/admin-network-fr_FR.po b/console/skel/wordpress/wp-content/languages/admin-network-fr_FR.po new file mode 100644 index 0000000..a8bd401 --- /dev/null +++ b/console/skel/wordpress/wp-content/languages/admin-network-fr_FR.po @@ -0,0 +1,1389 @@ +# Translation of WordPress - 4.7.x - Administration - Network Admin in French (France) +# This file is distributed under the same license as the WordPress - 4.7.x - Administration - Network Admin package. +msgid "" +msgstr "" +"PO-Revision-Date: 2017-05-05 12:10:24+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: fr\n" +"Project-Id-Version: WordPress - 4.7.x - Administration - Network Admin\n" + +#: wp-admin/network.php:71 +msgid "Network" +msgstr "Réseau" + +#: wp-admin/network.php:67 wp-admin/network.php:78 +msgid "Documentation on the Network Screen" +msgstr "Documentation sur l’écran du réseau" + +#: wp-admin/network.php:66 wp-admin/network.php:77 +msgid "Documentation on Creating a Network" +msgstr "Documentation sur la création de réseau." + +#: wp-admin/network.php:64 +msgid "The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version." +msgstr "Le choix d’avoir des sites en mode sous-répertoire est désactivé si le réseau a été installé il y a un mois ou plus, afin de pallier les problèmes de permaliens avec l’ajout de « /blog/ » sur les adresses du site principal. Cette limitation sera corrigée dans une prochaine version." + +#: wp-admin/network.php:63 +msgid "Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar." +msgstr "Une fois que vous aurez ajouté ce code et rafraîchi la page dans votre navigateur, le mode multisite devrait être activé. Cet écran, désormais placé dans le menu de navigation Admin du Réseau, conservera une archive du code ajouté. Vous pouvez basculer de l’administration du réseau à l’administration du site en cliquant sur « Admin du réseau », ou en cliquant sur le nom d’un site individuel dans le menu déroulant « Mes Sites » de la barre d’outils." + +#: wp-admin/network.php:62 +msgid "Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules)." +msgstr "Ajoutez les lignes de code désignées dans le fichier wp-config.php (juste avant /*...stop editing...*/) et le fichier .htaccess (en remplaçant les règles existantes de WordPress)." + +#: wp-admin/network.php:61 +msgid "The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files." +msgstr "L’écran suivant vous présentera un ensemble de lignes de code générées à partir de votre configuration, qu’il vous faudra ajouter à vos fichiers wp-config.php et .htaccess. Veillez bien à ce que votre client FTP soit configuré pour afficher les fichiers commençant par un point, afin que vous puissiez trouver le fichier .htaccess. Il est possible que vous ayez à créer ce fichier s’il n’est pas déjà présent. Avant toute modification de wp-config.php et .htaccess, faites-en une copie de sauvegarde." + +#: wp-admin/network.php:60 +msgid "Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your install. Fill out the network details, and click install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories)." +msgstr "Faites le choix entre sous-domaines ou sous-dossiers. Une fois l’installation configurée, vous ne pourrez pas revenir en arrière sans recommencer à zéro. Saisissez tous les détails, et cliquez sur « Installer ». Si cela ne marche pas, vous devrez sans doute ajouter une entrée de sous-domaine générique (wildcard) dans vos enregistrements DNS, ou passer à un réglage différent pour vos permaliens (si en mode sous-dossiers)." + +#: wp-admin/network.php:59 +msgid "This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it." +msgstr "Cet écran vous permet de configurer un réseau, sous la forme sous-domaines (site1.example.com) ou sous-dossiers (example.com/site1). La forme sous-domaines nécessite une entrée de sous-domaine générique (wildcard) dans les enregistrements DNS et la configuration Apache, si votre hébergeur le permet." + +#: wp-admin/network.php:55 +msgid "Create a Network of WordPress Sites" +msgstr "Créer un réseau de sites WordPress" + +#. translators: 1: WP_ALLOW_MULTISITE 2: wp-config.php +#: wp-admin/network.php:44 +msgid "You must define the %1$s constant as true in your %2$s file to allow creation of a Network." +msgstr "Vous devez mettre la constante %1$s à true dans votre fichier %2$s afin de permettre la création d’un Réseau." + +#: wp-admin/network.php:29 +msgid "The Network creation panel is not for WordPress MU networks." +msgstr "Le panneau de création de réseau n’est pas conçu pour les réseaux WordPress MU." + +#: wp-admin/network/users.php:206 +msgid "Users deleted." +msgstr "Utilisateurs supprimés." + +#: wp-admin/network/users.php:203 +msgid "Users removed from spam." +msgstr "Utilisateurs marqués comme sains." + +#: wp-admin/network/users.php:200 +msgid "Users marked as spam." +msgstr "Utilisateurs marqués comme indésirables." + +#: wp-admin/network/users.php:174 +msgid "You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege." +msgstr "Vous pouvez promouvoir un utilisateur existant en super-admin en allant sur leur page de profil, et en cochant la case correspondante." + +#: wp-admin/network/users.php:173 +msgid "The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses." +msgstr "Le menu « Actions groupées » permet d’effacer définitivement plusieurs utilisateurs d’un coup, ou de les marquer comme sains ou indésirables. Les utilisateurs indésirables verront leurs articles supprimés, et ne pourront plus se connecter avec leur adresse de messagerie." + +#: wp-admin/network/users.php:172 +msgid "You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list." +msgstr "Un clic sur le titre d’une colonne permet de changer le tri du tableau. Les icônes en haut à droite permettent d’afficher des extraits ou non." + +#: wp-admin/network/users.php:171 +msgid "You can also go to the user’s profile page by clicking on the individual username." +msgstr "Vous pouvez également aller sur la page de profil d’un utilisateur en cliquant sur son identifiant." + +#: wp-admin/network/users.php:170 +msgid "Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site." +msgstr "Survolez n’importe quel des utilisateurs de la liste pour faire apparaître les liens de modification. Le lien Modifier à gauche ouvrira la page de modification du profil de l'utilisateur ; le lien Modifier à droite de n'importe quel nom de site ouvrira l'écran de modification de ce site." + +#: wp-admin/network/users.php:169 +msgid "This table shows all users across the network and the sites to which they are assigned." +msgstr "Ce tableau affiche tous les utilisateurs appartenant au réseau, et les sites auxquels ils sont assignés." + +#: wp-admin/network/users.php:70 +msgid "Warning! User cannot be modified. The user %s is a network administrator." +msgstr "Attention ! L’utilisateur %s ne peut être modifié car c’est un administrateur du réseau." + +#. translators: %s: edit page url +#: wp-admin/network/user-new.php:80 +msgid "User added. Edit user" +msgstr "Utilisateur ajouté. Modifier l’utilisateur" + +#: wp-admin/network/user-new.php:49 +msgid "Cannot add user." +msgstr "Impossible d’ajouter l’utilisateur." + +#: wp-admin/network/user-new.php:37 +msgid "Cannot create an empty user." +msgstr "Impossible de créer un utilisateur vide." + +#: wp-admin/network/user-new.php:26 wp-admin/network/users.php:179 +msgid "Documentation on Network Users" +msgstr "Documentation sur les utilisateurs du réseau." + +#: wp-admin/network/user-new.php:21 +msgid "Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them." +msgstr "Les utilisateurs qui se sont inscrits sur le réseau sans créer de site deviennent abonnés du site d’accueil. Celui-ci leur permet d’accéder à leur compte. Ces utilisateurs ne voient dans la navigation principale que les options « Tableau de bord » et « Mes sites », jusqu’à ce qu’un site leur soit créé." + +#: wp-admin/network/user-new.php:20 +msgid "Add User will set up a new user account on the network and send that person an email with username and password." +msgstr "« Ajouter un utilisateur » créera un nouveau compte utilisateur sur le réseau, et enverra un message contenant son identifiant et son mot de passe au destinataire." + +#: wp-admin/network/upgrade.php:126 +msgid "WordPress has been updated! Before we send you on your way, we need to individually upgrade the sites in your network." +msgstr "WordPress a été mis à jour ! Avant de vous laisser continuer, nous devons mettre à jour chaque site de votre réseau." + +#: wp-admin/network/upgrade.php:111 +msgid "Next Sites" +msgstr "Sites suivants" + +#: wp-admin/network/upgrade.php:111 +msgid "If your browser doesn’t start loading the next page automatically, click this link:" +msgstr "Si votre navigateur ne lance pas automatiquement la page suivante, cliquez sur ce lien :" + +#. translators: 1: site url, 2: server error message +#: wp-admin/network/upgrade.php:87 +msgid "Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s" +msgstr "Attention ! Un problème est survenu lors de la mise à jour de %1$s. Votre serveur peut ne pas être en mesure de se connecter à certains sites qui y sont installés. Message d’erreur : %2$s." + +#: wp-admin/network/upgrade.php:67 +msgid "All done!" +msgstr "Terminé !" + +#: wp-admin/network/upgrade.php:29 +msgid "Documentation on Upgrade Network" +msgstr "Documentation sur la mise à jour de réseau (en)." + +#: wp-admin/network/upgrade.php:24 +msgid "If this process fails for any reason, users logging in to their sites will force the same update." +msgstr "Si ce processus échoue pour n’importe quelles raisons, les utilisateurs se connectant à leurs sites déclencheront la même mise à jour." + +#: wp-admin/network/upgrade.php:23 +msgid "If a version update to core has not happened, clicking this button won’t affect anything." +msgstr "S’il n’y a pas eu de mise à jour de l’installation de WordPress récemment, cliquer sur ce bouton n’aura aucun effet." + +#: wp-admin/network/upgrade.php:22 +msgid "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." +msgstr "N’utilisez cet écran que quand vous avez mis à jour cette installation de WordPress (au moyen de la fonction de mise à jour automatique ou la barre d’outils). En cliquant sur « Mettre à jour le réseau », WordPress s’occupera de tous les sites du réseau, par groupes de cinq, et s’assurera que toutes les mises à jour de bases de données sont appliquées." + +#: wp-admin/network/themes.php:286 +msgid "You cannot delete a theme while it is active on the main site." +msgstr "Vous ne pouvez pas effacer un thème s’il est activé sur le site principal." + +#: wp-admin/network/themes.php:280 +msgid "%s theme deleted." +msgid_plural "%s themes deleted." +msgstr[0] "%s thème supprimé." +msgstr[1] "%s thèmes supprimés." + +#: wp-admin/network/themes.php:235 +msgid "Themes list navigation" +msgstr "Parcours de la liste des thèmes" + +#: wp-admin/network/themes.php:229 +msgid "Documentation on Network Themes" +msgstr "Documentation sur les thèmes du réseau." + +#: wp-admin/network/themes.php:224 +msgid "Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes." +msgstr "Les thèmes peuvent être activés par l’administrateur du réseau pour chaque site, individuellement, par le biais de l’écran de modification d’un site (et de son onglet « Thèmes »), accessible via le lien « Modifier » de la liste des sites. Seuls les administrateurs du réseau peuvent installer ou modifier des thèmes." + +#: wp-admin/network/themes.php:223 +msgid "If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen." +msgstr "Si l’administrateur du réseau désactive un thème en cours d’utilisation par un site, ce thème restera en place pour ce site. Si le site change de thème, le thème désactivé n’apparaîtra plus dans l’écran de sélection des thèmes de ce site." + +#: wp-admin/network/themes.php:222 +msgid "This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using." +msgstr "Cet écran permet d’activer ou désactiver la disponibilité des thèmes pour tous les sites du réseau. Il ne permet pas d’activer ou activer le thème actuellement utilisé ce site." + +#: wp-admin/network/themes.php:171 +msgid "No, return me to the theme list" +msgstr "Non, je veux revenir à la liste des thèmes." + +#: wp-admin/network/themes.php:163 +msgid "Yes, delete these themes" +msgstr "Oui, supprimer ces thèmes" + +#: wp-admin/network/themes.php:161 +msgid "Yes, delete this theme" +msgstr "Oui, supprimer ce thème" + +#: wp-admin/network/themes.php:148 +msgid "Are you sure you wish to delete these themes?" +msgstr "Êtes-vous certain(e) de vouloir supprimer ces thèmes ?" + +#: wp-admin/network/themes.php:146 +msgid "Are you sure you wish to delete this theme?" +msgstr "Êtes-vous sûr de vouloir supprimer ce thème ?" + +#. translators: 1: theme name, 2: theme author +#: wp-admin/network/themes.php:138 +msgctxt "theme" +msgid "%1$s by %2$s" +msgstr "%1$s par %2$s" + +#: wp-admin/network/themes.php:131 +msgid "You are about to remove the following themes:" +msgstr "Vous êtes sur le point d’enlever les thèmes suivants :" + +#: wp-admin/network/themes.php:130 +msgid "These themes may be active on other sites in the network." +msgstr "Ces thèmes peuvent être actifs sur d’autres site de ce réseau." + +#: wp-admin/network/themes.php:129 +msgid "Delete Themes" +msgstr "Supprimer les thèmes" + +#: wp-admin/network/themes.php:127 +msgid "You are about to remove the following theme:" +msgstr "Vous êtes sur le point de supprimer le thème suivant :" + +#: wp-admin/network/themes.php:126 +msgid "This theme may be active on other sites in the network." +msgstr "Ce thème est peut-être activé sur d’autres sites du réseau" + +#: wp-admin/network/themes.php:125 +msgid "Delete Theme" +msgstr "Supprimer le thème" + +#: wp-admin/network/themes.php:90 +msgid "Sorry, you are not allowed to delete themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer les thèmes de ce site." + +#: wp-admin/network/themes.php:14 +msgid "Sorry, you are not allowed to manage network themes." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les thèmes du réseau." + +#: wp-admin/network/sites.php:263 +msgid "Site marked as spam." +msgstr "Site marqué comme indésirable." + +#: wp-admin/network/sites.php:260 +msgid "Site removed from spam." +msgstr "Site marqué comme sain." + +#: wp-admin/network/sites.php:257 +msgid "Site deactivated." +msgstr "Site désactivé." + +#: wp-admin/network/sites.php:254 +msgid "Site activated." +msgstr "Site activé." + +#: wp-admin/network/sites.php:251 +msgid "Site unarchived." +msgstr "Site désarchivé." + +#: wp-admin/network/sites.php:248 +msgid "Site archived." +msgstr "Site archivé." + +#: wp-admin/network/sites.php:245 +msgid "Sorry, you are not allowed to delete that site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce site." + +#: wp-admin/network/sites.php:242 +msgid "Site deleted." +msgstr "Site effacé." + +#: wp-admin/network/sites.php:239 +msgid "Sites deleted." +msgstr "Sites effacés." + +#: wp-admin/network/sites.php:236 +msgid "Sites marked as spam." +msgstr "Sites marqués comme indésirables." + +#: wp-admin/network/sites.php:233 +msgid "Sites removed from spam." +msgstr "Sites marqués comme sains." + +#: wp-admin/network/sites.php:144 +msgid "Sorry, you are not allowed to delete the site." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer ce site." + +#: wp-admin/network/sites.php:107 +msgid "Confirm" +msgstr "Confirmer" + +#: wp-admin/network/sites.php:100 +msgid "Confirm your action" +msgstr "Confirmez cette action" + +#: wp-admin/network/sites.php:91 wp-admin/network/sites.php:157 +msgid "Sorry, you are not allowed to change the current site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier le site actuel." + +#: wp-admin/network/sites.php:75 +msgid "The requested action is not valid." +msgstr "L’action demandée n’est pas valide." + +#: wp-admin/network/sites.php:67 +msgid "You are about to mark the site %s as not mature." +msgstr "Vous êtes sur le point d’indiquer que le site %s n’est pas réservé aux adultes." + +#: wp-admin/network/sites.php:66 +msgid "You are about to mark the site %s as mature." +msgstr "Vous êtes sur le point d’indiquer que le site %s est réservé aux adultes." + +#: wp-admin/network/sites.php:65 +msgid "You are about to delete the site %s." +msgstr "Vous êtes sur le point de supprimer le site %s." + +#: wp-admin/network/sites.php:64 +msgid "You are about to mark the site %s as spam." +msgstr "Vous êtes sur le point de marquer le site %s comme indésirable." + +#: wp-admin/network/sites.php:63 +msgid "You are about to unspam the site %s." +msgstr "Vous êtes sur le point de marquer le site %s comme sain." + +#: wp-admin/network/sites.php:62 +msgid "You are about to archive the site %s." +msgstr "Vous êtes sur le point d’archiver le site %s." + +#: wp-admin/network/sites.php:61 +msgid "You are about to unarchive the site %s." +msgstr "Vous êtes sur le point de désarchiver le site %s." + +#: wp-admin/network/sites.php:60 +msgid "You are about to deactivate the site %s." +msgstr "Vous êtes sur le point de désactiver le site %s." + +#: wp-admin/network/sites.php:59 +msgid "You are about to activate the site %s." +msgstr "Vous êtes sur le point d’activer le site %s." + +#: wp-admin/network/sites.php:48 +msgid "Sites list" +msgstr "Liste des sites" + +#: wp-admin/network/sites.php:47 +msgid "Sites list navigation" +msgstr "Parcours de la liste des sites" + +#: wp-admin/network/sites.php:37 +msgid "Clicking on bold headings can re-sort this table." +msgstr "Cliquez sur les en-têtes en gras afin de retrier ce tableau." + +#: wp-admin/network/sites.php:36 +msgid "The site ID is used internally, and is not shown on the front end of the site or to users/viewers." +msgstr "L’ID du site est utilisé en interne et n’est pas affiché dans la partie publique du site, ni aux utilisateurs/visiteurs." + +#: wp-admin/network/sites.php:35 +msgid "Visit to go to the front-end site live." +msgstr "« Afficher » envoie vers la page d’accueil du site." + +#: wp-admin/network/sites.php:34 +msgid "Delete which is a permanent action after the confirmation screens." +msgstr "« Supprimer » est une action irréversible une fois passé l’écran de confirmation." + +#: wp-admin/network/sites.php:33 +msgid "Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later." +msgstr "« Désactiver », « Archiver » et « Indésirable » envoient chacun à des écrans de confirmation. Ces actions peuvent être annulées par la suite ." + +#: wp-admin/network/sites.php:32 +msgid "Dashboard leads to the Dashboard for that site." +msgstr "« Tableau de bord » mène au tableau de bord pour ce site." + +#: wp-admin/network/sites.php:31 +msgid "An Edit link to a separate Edit Site screen." +msgstr "Un lien « Modifier » vers un nouvel écran de modification de site." + +#: wp-admin/network/sites.php:30 +msgid "Hovering over each site reveals seven options (three for the primary site):" +msgstr "Survoler chaque site avec la souris révèle sept options (trois pour le site principal) :" + +#: wp-admin/network/sites.php:29 +msgid "This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table." +msgstr "Voici la liste de tous les sites de ce réseau. Vous pouvez changer de vue (liste avec ou sans extrait) en utilisant les icônes présentes en haut à droite de la liste." + +#: wp-admin/network/sites.php:28 +msgid "Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgstr "Ajouter vous envoie au formulaire en bas de cette page. Vous pouvez chercher un site par le nom, l’identifiant ou l’adresse IP. Les options d’écran vous permettent de choisir le nombre de sites à afficher sur une même page." + +#: wp-admin/network/site-users.php:332 wp-admin/network/user-new.php:117 +msgid "A password reset link will be sent to the user via email." +msgstr "Un lien de réinitialisation de mot de passe sera envoyé à l’utilisateur par e-mail." + +#: wp-admin/network/site-users.php:300 wp-admin/network/user-new.php:129 +msgid "Add User" +msgstr "Ajouter un utilisateur" + +#: wp-admin/network/site-users.php:255 +msgid "Duplicated username or email address." +msgstr "Identifiant ou adresse de messagerie déjà utilisé(e)." + +#: wp-admin/network/site-users.php:252 +msgid "Enter the username and email." +msgstr "Saisir l’identifiant et l’adresse de messagerie." + +#: wp-admin/network/site-users.php:249 +msgid "User created." +msgstr "L’utilisateur a été créé." + +#: wp-admin/network/site-users.php:246 +msgid "Select a user to remove." +msgstr "Sélectionnez un utilisateur à enlever." + +#: wp-admin/network/site-users.php:240 +msgid "Select a user to change role." +msgstr "Sélectionnez un utilisateur dont vous voulez changer le rôle." + +#: wp-admin/network/site-users.php:234 +msgid "Enter the username of an existing user." +msgstr "Saisir l’identifiant d’un utilisateur existant." + +#: wp-admin/network/site-users.php:231 +msgid "User is already a member of this site." +msgstr "Cet utilisateur est déjà membre de ce site." + +#: wp-admin/network/site-users.php:39 +msgid "Site users list" +msgstr "Liste des utilisateurs du site" + +#: wp-admin/network/site-users.php:38 +msgid "Site users list navigation" +msgstr "Parcours de la liste des utilisateurs du site" + +#: wp-admin/network/site-users.php:37 +msgid "Filter site users list" +msgstr "Filtrer la liste des utilisateurs du site" + +#: wp-admin/network/site-themes.php:200 +msgid "Network enabled themes are not shown on this screen." +msgstr "Les thèmes activés pour le réseau ne sont pas visibles sur cet écran." + +#: wp-admin/network/site-themes.php:197 wp-admin/network/themes.php:284 +msgid "No theme selected." +msgstr "Aucun thème sélectionné." + +#: wp-admin/network/site-themes.php:193 wp-admin/network/themes.php:272 +msgid "%s theme disabled." +msgid_plural "%s themes disabled." +msgstr[0] "%s thème désactivé." +msgstr[1] "%s thèmes désactivés." + +#: wp-admin/network/site-themes.php:191 wp-admin/network/themes.php:270 +msgid "Theme disabled." +msgstr "Thème désactivé." + +#: wp-admin/network/site-themes.php:185 wp-admin/network/themes.php:264 +msgid "%s theme enabled." +msgid_plural "%s themes enabled." +msgstr[0] "%s thème activé." +msgstr[1] "%s thèmes activés." + +#: wp-admin/network/site-themes.php:183 wp-admin/network/themes.php:262 +msgid "Theme enabled." +msgstr "Thème activé." + +#: wp-admin/network/site-themes.php:36 +msgid "Site themes list" +msgstr "Liste des thèmes du site" + +#: wp-admin/network/site-themes.php:35 +msgid "Site themes list navigation" +msgstr "Parcours de la liste des thèmes du site" + +#: wp-admin/network/site-themes.php:34 +msgid "Filter site themes list" +msgstr "Filtrer la liste des thème du site" + +#: wp-admin/network/site-themes.php:14 +msgid "Sorry, you are not allowed to manage themes for this site." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les thèmes de ce site." + +#: wp-admin/network/site-settings.php:80 +msgid "Site options updated." +msgstr "Les réglages du site ont été mis à jour." + +#: wp-admin/network/site-new.php:259 +msgid "Add Site" +msgstr "Ajouter un site" + +#: wp-admin/network/site-new.php:247 +msgid "The username and password will be mailed to this email address." +msgstr "L’identifiant et le mot de passe seront envoyés sur l’adresse de contact indiquée." + +#: wp-admin/network/site-new.php:247 +msgid "A new user will be created if the above email address is not in the database." +msgstr "Un nouvel utilisateur sera créé si l’adresse de contact n’existe pas dans la base de données." + +#: wp-admin/network/site-new.php:243 +msgid "Admin Email" +msgstr "Adresse de contact de l’administrateur" + +#: wp-admin/network/site-new.php:205 +msgid "Only lowercase letters (a-z), numbers, and hyphens are allowed." +msgstr "Seuls les lettres minuscules (a-z), les nombres, et les traits d'union sont autorisés." + +#: wp-admin/network/site-new.php:178 wp-admin/network/site-new.php:188 +msgid "Add New Site" +msgstr "Ajouter un nouveau site" + +#. translators: 1: dashboard url, 2: network admin edit url +#: wp-admin/network/site-new.php:172 +msgid "Site added. Visit Dashboard or Edit Site" +msgstr "Site ajouté. Afficher le tableau de bord | Modifier le site" + +#: wp-admin/network/site-new.php:155 +msgctxt "email \"From\" field" +msgid "Site Admin" +msgstr "Administrateur du site" + +#. translators: 1: user login, 2: site url, 3: site name/title +#: wp-admin/network/site-new.php:145 +msgid "" +"New site created by %1$s\n" +"\n" +"Address: %2$s\n" +"Name: %3$s" +msgstr "" +"Nouveau site créé par %1$s\n" +"\n" +"Adresse : %2$s\n" +"Nom : %3$s" + +#. translators: %s: network name +#: wp-admin/network/site-new.php:140 +msgid "[%s] New Site Created" +msgstr "[%s] Nouveau site créé" + +#: wp-admin/network/site-new.php:115 +msgid "There was an error creating the user." +msgstr "Une erreur s’est produite lors de la création d’un utilisateur." + +#: wp-admin/network/site-new.php:110 +msgid "The domain or path entered conflicts with an existing username." +msgstr "Le domaine ou le chemin saisi est entré en conflit avec un identifiant utilisateur existant." + +#: wp-admin/network/site-new.php:80 +msgid "Missing email address." +msgstr "Adresse de messagerie manquante." + +#: wp-admin/network/site-new.php:77 +msgid "Missing or invalid site address." +msgstr "Adresse de site manquante ou non valide." + +#. translators: %s: reserved names list +#: wp-admin/network/site-new.php:51 +msgid "The following words are reserved for use by WordPress functions and cannot be used as blog names: %s" +msgstr "Les mots suivants sont réservés pour l’usage de fonctions WordPress et ne peuvent pas être utilisés comme nom de site : %s" + +#: wp-admin/network/site-new.php:37 +msgid "Can’t create an empty site." +msgstr "Impossible de créer un site vide." + +#: wp-admin/network/site-new.php:24 +msgid "If the admin email for the new site does not exist in the database, a new user will also be created." +msgstr "Si l’adresse de contact du nouveau site n’existe pas dans la base de données, un nouvel utilisateur sera créé pour l’occasion." + +#: wp-admin/network/site-new.php:23 +msgid "This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings." +msgstr "Cet écran permet aux super-admins d’ajouter de nouveaux sites au réseau. Il n’est pas limité par les réglages d’inscription." + +#: wp-admin/network/site-new.php:17 +msgid "Sorry, you are not allowed to add sites to this network." +msgstr "Désolé, vous n’avez pas l’autorisation d’ajouter des sites sur ce réseau." + +#: wp-admin/network/site-info.php:197 +msgid "Set site attributes" +msgstr "Configurer les attributs du site" + +#: wp-admin/network/site-info.php:194 +msgid "Attributes" +msgstr "Attributs" + +#. translators: %s: site name +#: wp-admin/network/site-info.php:131 wp-admin/network/site-settings.php:84 +#: wp-admin/network/site-themes.php:163 wp-admin/network/site-users.php:193 +msgid "Edit Site: %s" +msgstr "Modifier le site : %s" + +#: wp-admin/network/site-info.php:126 +msgid "Site info updated." +msgstr "Les infos du site ont été mises à jour." + +#: wp-admin/network/site-info.php:42 wp-admin/network/site-settings.php:40 +#: wp-admin/network/site-themes.php:63 wp-admin/network/site-users.php:56 +msgid "The requested site does not exist." +msgstr "Le site demandé n’existe pas." + +#: wp-admin/network/site-info.php:37 wp-admin/network/site-settings.php:36 +#: wp-admin/network/site-themes.php:57 wp-admin/network/site-users.php:52 +msgid "Invalid site ID." +msgstr "Identifiant du site non valide." + +#: wp-admin/network/site-info.php:30 wp-admin/network/site-new.php:29 +#: wp-admin/network/site-settings.php:29 wp-admin/network/site-themes.php:29 +#: wp-admin/network/site-users.php:32 wp-admin/network/sites.php:42 +msgid "Documentation on Site Management" +msgstr "Documentation sur la gestion de site." + +#: wp-admin/network/site-info.php:25 wp-admin/network/site-settings.php:24 +#: wp-admin/network/site-themes.php:24 wp-admin/network/site-users.php:27 +msgid "Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database." +msgstr "Réglages — Cette page affiche la liste de tous les réglages associés à ce site. Certains sont créés par WordPress, d’autres par des extensions que vous activez. Notez que certains champs sont grisés et indiquent des données sérialisées (Serialized Data). Vous ne pouvez pas modifier ces valeurs, du fait de la manière dont ils sont stockés dans la base de données." + +#: wp-admin/network/site-info.php:24 wp-admin/network/site-settings.php:23 +#: wp-admin/network/site-themes.php:23 wp-admin/network/site-users.php:26 +msgid "Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen." +msgstr "Thèmes — Cette zone affiche les thèmes qui n’ont pas déjà été activés pour l’ensemble du réseau. En activant un thème avec ce menu, vous le rendez disponible pour ce site. Cela ne l’active pas, mais l’affichera dans le menu Apparence du site. Pour activer un thème pour l’ensemble du réseau, rendez-vous sur l’écran Thèmes du réseau." + +#: wp-admin/network/site-info.php:23 wp-admin/network/site-settings.php:22 +#: wp-admin/network/site-themes.php:22 wp-admin/network/site-users.php:25 +msgid "Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network." +msgstr "Utilisateurs — Affiche les utilisateurs associés à ce site. Vous pouvez également modifier leur rôle, réinitialiser leur mot de passe, ou les enlever du site. Enlever un utilisateur d’un site ne l’enlève pas du réseau." + +#: wp-admin/network/site-info.php:22 wp-admin/network/site-settings.php:21 +#: wp-admin/network/site-themes.php:21 wp-admin/network/site-users.php:24 +msgid "Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable." +msgstr "Infos — Il n’est pas recommandé de modifier le domaine ou le chemin d’accès, car cela pourrait rendre le site non fonctionnel. Les dates de création et de dernière mise à jour sont affichées. Les administrateurs réseau peuvent indiquer qu’un site est archivé, indésirable, pour adulte et effacé, afin de le retirer de la liste publique ou le désactiver." + +#: wp-admin/network/site-info.php:21 wp-admin/network/site-settings.php:20 +#: wp-admin/network/site-themes.php:20 wp-admin/network/site-users.php:23 +msgid "The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable." +msgstr "Ce menu sert à modifier les informations relatives à un site individuel, en particulier si sa zone d’administration est indisponible." + +#: wp-admin/network/site-info.php:14 wp-admin/network/site-settings.php:14 +#: wp-admin/network/site-users.php:14 +msgid "Sorry, you are not allowed to edit this site." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce site." + +#: wp-admin/network/settings.php:380 +msgid "Enable menus" +msgstr "Activer les menus" + +#: wp-admin/network/settings.php:358 +msgid "Enable administration menus" +msgstr "Activer les menus d’administration" + +#: wp-admin/network/settings.php:331 +msgid "Default Language" +msgstr "Langue par défaut" + +#: wp-admin/network/settings.php:328 +msgid "Language Settings" +msgstr "Réglages de langue" + +#: wp-admin/network/settings.php:317 +msgid "Size in kilobytes" +msgstr "Taille en kilooctets" + +#. translators: %s: File size in kilobytes +#: wp-admin/network/settings.php:312 +msgid "%s KB" +msgstr "%s Ko" + +#: wp-admin/network/settings.php:307 +msgid "Max upload file size" +msgstr "Taille maximale des fichiers" + +#: wp-admin/network/settings.php:301 +msgid "Allowed file types. Separate types by spaces." +msgstr "Types de fichier autorisés. Séparez les types par une espace." + +#: wp-admin/network/settings.php:297 +msgid "Upload file types" +msgstr "Types de fichiers " + +#: wp-admin/network/settings.php:289 +msgid "Limit total size of files uploaded to %s MB" +msgstr "La taille totale des fichiers envoyés est limitée à %s Mo" + +#: wp-admin/network/settings.php:287 +msgid "Site upload space" +msgstr "Espace de stockage du site" + +#: wp-admin/network/settings.php:284 +msgid "Upload Settings" +msgstr "Réglages d’envoi des fichiers" + +#: wp-admin/network/settings.php:279 +msgid "The URL for the first comment on a new site." +msgstr "L’adresse web du premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:275 +msgid "First Comment URL" +msgstr "Adresse du premier commentaire" + +#: wp-admin/network/settings.php:270 +msgid "The email address of the first comment author on a new site." +msgstr "L’adresse e-mail de l’auteur du premier commentaire sur un nouveau site." + +#: wp-admin/network/settings.php:266 +msgid "First Comment Email" +msgstr "E-mail du premier commentaire" + +#: wp-admin/network/settings.php:261 +msgid "The author of the first comment on a new site." +msgstr "L’auteur du premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:257 +msgid "First Comment Author" +msgstr "Auteur du premier commentaire" + +#: wp-admin/network/settings.php:252 +msgid "The first comment on a new site." +msgstr "Le premier commentaire sur tout nouveau site." + +#: wp-admin/network/settings.php:247 +msgid "First Comment" +msgstr "Premier commentaire" + +#: wp-admin/network/settings.php:242 +msgid "The first page on a new site." +msgstr "La première page sur tout nouveau site." + +#: wp-admin/network/settings.php:237 +msgid "First Page" +msgstr "Première page" + +#: wp-admin/network/settings.php:232 +msgid "The first post on a new site." +msgstr "Le premier article sur tout nouveau site." + +#: wp-admin/network/settings.php:222 +msgid "The welcome email sent to new users." +msgstr "Ce message de bienvenue sera envoyé aux nouveaux utilisateurs." + +#: wp-admin/network/settings.php:217 +msgid "Welcome User Email" +msgstr "Message de bienvenue des utilisateurs" + +#: wp-admin/network/settings.php:212 +msgid "The welcome email sent to new site owners." +msgstr "Ce message de bienvenue sera envoyé aux propriétaires de nouveaux sites." + +#: wp-admin/network/settings.php:207 +msgid "Welcome Email" +msgstr "Message de bienvenue" + +#: wp-admin/network/settings.php:203 +msgid "New Site Settings" +msgstr "Réglages des nouveaux sites" + +#: wp-admin/network/settings.php:197 +msgid "If you want to ban domains from site registrations. One domain per line." +msgstr "Si vous souhaitez interdire la création de sites aux personnes dont l’adresse de messagerie est liée à certains noms de domaines. Un domaine par ligne." + +#: wp-admin/network/settings.php:192 +msgid "Banned Email Domains" +msgstr "Noms de domaines bannis" + +#: wp-admin/network/settings.php:186 +msgid "If you want to limit site registrations to certain domains. One domain per line." +msgstr "Si vous souhaitez que les seules personnes habilitées à créer un site soient celles disposant d’une adresse de messagerie liée à certains noms de domaines. Un domaine par ligne." + +#: wp-admin/network/settings.php:179 +msgid "Limited Email Registrations" +msgstr "Enregistrement réservé aux noms de domaines" + +#: wp-admin/network/settings.php:173 +msgid "Users are not allowed to register these sites. Separate names by spaces." +msgstr "Les utilisateurs ne sont pas autorisés à créer un site avec l’un de ces noms. Séparez les noms par un espace." + +#: wp-admin/network/settings.php:169 +msgid "Banned Names" +msgstr "Noms bannis" + +#: wp-admin/network/settings.php:164 +msgid "Allow site administrators to add new users to their site via the \"Users → Add New\" page." +msgstr "Autoriser les administrateurs de sites à ajouter de nouveaux utilisateurs à leurs sites via la page « Utilisateurs → Ajouter »." + +#: wp-admin/network/settings.php:162 +msgid "Add New Users" +msgstr "Ajouter de nouveaux utilisateurs" + +#: wp-admin/network/settings.php:157 +msgid "Send the network admin an email notification every time someone registers a site or user account." +msgstr "Envoyer un message à l’administrateur du réseau à chaque inscription de site ou d’utilisateurs." + +#: wp-admin/network/settings.php:151 +msgid "Registration notification" +msgstr "Notification d’inscription" + +#. translators: 1: NOBLOGREDIRECT 2: wp-config.php +#: wp-admin/network/settings.php:140 +msgid "If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site." +msgstr "Si la création de compte est désactivée, veuillez remplir la valeur de %1$s (dans le fichier %2$s) avec l’adresse vers laquelle vous souhaitez que les visiteurs soient redirigés lorsqu’ils se rendent à un site qui n’existe pas." + +#: wp-admin/network/settings.php:136 +msgid "Both sites and user accounts can be registered." +msgstr "La création de sites et d’utilisateurs est autorisée." + +#: wp-admin/network/settings.php:135 +msgid "Logged in users may register new sites." +msgstr "Seuls les utilisateurs connectés peuvent créer de nouveaux sites." + +#: wp-admin/network/settings.php:134 +msgid "User accounts may be registered." +msgstr "Seuls les comptes utilisateurs peuvent être créés." + +#: wp-admin/network/settings.php:133 +msgid "Registration is disabled." +msgstr "Les inscriptions ne sont pas autorisées pour le moment." + +#: wp-admin/network/settings.php:132 +msgid "New registrations settings" +msgstr "Réglages pour les nouvelles inscriptions" + +#: wp-admin/network/settings.php:124 +msgid "Allow new registrations" +msgstr "Autoriser les nouvelles inscriptions" + +#: wp-admin/network/settings.php:121 +msgid "Registration Settings" +msgstr "Réglages d’inscription" + +#: wp-admin/network/settings.php:116 +msgid "This email address will receive notifications. Registration and support emails will also come from this address." +msgstr "Cette adresse de messagerie recevra des notifications. Les inscriptions et les messages d’assistance proviendront également de cette adresse." + +#: wp-admin/network/settings.php:102 +msgid "Operational Settings" +msgstr "Réglages de fonctionnement" + +#: wp-admin/network/settings.php:40 +msgid "Documentation on Network Settings" +msgstr "Documentation sur les réglages du réseau." + +#: wp-admin/network/settings.php:35 +msgid "Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges." +msgstr "Les super-admins ne peuvent plus être ajoutés via l’écran des options. Vous devez aller à la liste des utilisateurs (option « Utilisateurs » du menu « Admin du réseau ») et cliquer sur un identifiant ou sur le lien « Modifier » qui s’affiche en dessous. Vous arriverez alors à un écran vous permettant de modifier ce compte utilisateur, où une case à cocher donne les droits de super-admin." + +#: wp-admin/network/settings.php:34 +msgid "Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins." +msgstr "Le réglage du menu (dés)active la section « Extensions » du menu pour les utilisateurs normaux, de telle sorte que seuls les super-admins peuvent y accéder pour activer une extension." + +#: wp-admin/network/settings.php:32 +msgid "Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only)." +msgstr "Les réglages d’envoi des fichiers permettent de limiter la taille des fichiers mis en ligne et l’espace disponible pour chaque site. Vous pouvez préciser la valeur pour chaque site individuellement. Vous pouvez également préciser les types de fichiers acceptés (séparés par des espaces)." + +#: wp-admin/network/settings.php:31 +msgid "New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL." +msgstr "Les réglages des nouveaux sites sont les réglages par défaut appliqués à tout nouveau site créé sur le réseau. Cela comprend le message d’accueil quand un nouvel utilisateur ou un nouveau site est enregistré, ainsi que le contenu du premier article, de la première page et du premier commentaire (dont le nom et l’adresse web du commentateur)." + +#: wp-admin/network/settings.php:30 +msgid "Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network." +msgstr "Les réglages d’inscription permettent d’ouvrir ou fermer les inscriptions au public. Si vous ouvrez les inscriptions, veillez à installer des extensions antispam. Les domaines bannis devraient être indiqués séparés d’un espace, non d’une virgule." + +#: wp-admin/network/settings.php:29 +msgid "Operational settings has fields for the network’s name and admin email." +msgstr "Les réglages de fonctionnement permettent de modifier le nom du réseau, et l’adresse de messagerie de l’administrateur." + +#: wp-admin/network/settings.php:28 +msgid "This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options." +msgstr "Cet écran vous donne accès aux options régissant l’ensemble du réseau. Le premier site est le site principal du réseau, et les options du réseau sont tirées des options de ce premier site." + +#: wp-admin/network/menu.php:55 wp-admin/network/settings.php:19 +msgid "Network Settings" +msgstr "Réglages du réseau" + +#: wp-admin/network/menu.php:41 wp-admin/network/themes.php:250 +msgctxt "theme" +msgid "Add New" +msgstr "Ajouter" + +#: wp-admin/network/menu.php:40 +msgid "Installed Themes" +msgstr "Thèmes installés" + +#: wp-admin/network/menu.php:36 +msgid "Themes %s" +msgstr "Thèmes %s" + +#: wp-admin/network/menu.php:28 +msgid "All Sites" +msgstr "Tous les sites" + +#: wp-admin/network/menu.php:22 wp-admin/network/upgrade.php:15 +#: wp-admin/network/upgrade.php:39 wp-admin/network/upgrade.php:130 +msgid "Upgrade Network" +msgstr "Mettre à jour le réseau" + +#: wp-admin/network/menu.php:19 +msgid "Updates" +msgstr "Mises à jour" + +#: wp-admin/network/index.php:51 wp-admin/network/site-info.php:31 +#: wp-admin/network/site-new.php:30 wp-admin/network/site-settings.php:30 +#: wp-admin/network/site-themes.php:30 wp-admin/network/site-users.php:33 +#: wp-admin/network/sites.php:43 wp-admin/network/user-new.php:27 +#: wp-admin/network/users.php:180 +msgid "Support Forums" +msgstr "Forum de support" + +#: wp-admin/network/index.php:50 +msgid "Documentation on the Network Admin" +msgstr "Documentation sur l’administration du réseau" + +#: wp-admin/network/index.php:44 +msgid "Quick Tasks" +msgstr "Tâches rapides" + +#: wp-admin/network/index.php:40 +msgid "To search for a site, enter the path or domain." +msgstr "Pour chercher un site, saisissez son chemin ou son domaine." + +#: wp-admin/network/index.php:39 +msgid "To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*." +msgstr "Pour chercher un utilisateur, saisissez une adresse de messagerie ou un identifiant. Utilisez le signe étoile (*) pour lancer une recherche sur un identifiant partiel, par exemple utilisa*." + +#: wp-admin/network/index.php:38 +msgid "To search for a user or site, use the search boxes." +msgstr "Pour chercher un utilisateur ou un site, utilisez les champs de recherche." + +#: wp-admin/network/index.php:37 +msgid "To add a new site, click Create a New Site." +msgstr "Pour ajouter un nouveau site, cliquez sur Créer un nouveau site." + +#: wp-admin/network/index.php:36 +msgid "To add a new user, click Create a New User." +msgstr "Pour ajouter un nouvel utilisateur, cliquez sur Créer un nouvel utilisateur." + +#: wp-admin/network/index.php:35 +msgid "The Right Now widget on this screen provides current user and site counts on your network." +msgstr "Le widget Aujourd’hui de cet écran vous donne le nombre actuel d’utilisateurs et de sites sur votre réseau." + +#: wp-admin/network/index.php:27 +msgid "Modify global network settings" +msgstr "Modifier les réglages globaux du réseau" + +#: wp-admin/network/index.php:26 +msgid "Update your network" +msgstr "Mettre à jour votre réseau" + +#: wp-admin/network/index.php:25 +msgid "Install and activate themes or plugins" +msgstr "Installer et activer des thèmes ou des extensions" + +#: wp-admin/network/index.php:24 +msgid "Add and manage sites or users" +msgstr "Ajouter et gérer des sites ou des utilisateurs" + +#: wp-admin/network/index.php:23 +msgid "From here you can:" +msgstr "D’ici, vous pouvez :" + +#: wp-admin/network/index.php:22 +msgid "Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network." +msgstr "Bienvenue dans l’administration de votre réseau ! Cette partie des écrans d’administration sert à gérer tous les aspects de votre réseau multisite." + +#: wp-admin/includes/network.php:594 +msgid "Once you complete these steps, your network is enabled and configured. You will have to log in again." +msgstr "Une fois que vous aurez passé ces étapes, votre réseau sera activé et configuré. Vous devrez vous reconnecter." + +#. translators: 1: a filename like .htaccess. 2: a file path. +#: wp-admin/includes/network.php:539 wp-admin/includes/network.php:579 +msgid "Add the following to your %1$s file in %2$s, replacing other WordPress rules:" +msgstr "Ajoutez les règles suivantes à votre fichier %1$s, dans le dossier %2$s, en remplacement d’autres règles de WordPress :" + +#: wp-admin/includes/network.php:475 +msgid "To make your installation more secure, you should also add:" +msgstr "Pour sécuriser encore plus votre installation, vous devriez également ajouter :" + +#. translators: 1: wp-config.php +#: wp-admin/includes/network.php:470 +msgid "These unique authentication keys are also missing from your %s file." +msgstr "Ces clés d’authentification uniques manquent également à votre fichier %s." + +#. translators: 1: wp-config.php +#: wp-admin/includes/network.php:464 +msgid "This unique authentication key is also missing from your %s file." +msgstr "La clé unique d'authentification est aussi absente de votre fichier %s." + +#. translators: This string should only be translated if wp-config-sample.php +#. is localized. You can check the localized release package or +#. https://i18n.svn.wordpress.org//branches//dist/wp-config-sample.php +#: wp-admin/includes/network.php:427 +msgid "That’s all, stop editing! Happy blogging." +msgstr "C’est tout, ne touchez pas à ce qui suit ! Bonne publication de contenu !" + +#. translators: 1: wp-config.php 2: location of wp-config file, 3: translated +#. version of "That's all, stop editing! Happy blogging." +#: wp-admin/includes/network.php:419 +msgid "Add the following to your %1$s file in %2$s above the line reading %3$s:" +msgstr "Ajouter ce texte à votre fichier %1$s dans %2$s au dessus de la ligne %3$s :" + +#. translators: 1: wp-config.php +#: wp-admin/includes/network.php:408 +msgid "We recommend you back up your existing %s file." +msgstr "Nous vous recommandons de sauvegarder votre fichier %s existant." + +#. translators: 1: wp-config.php 2: .htaccess +#. translators: 1: wp-config.php 2: web.config +#: wp-admin/includes/network.php:392 wp-admin/includes/network.php:400 +msgid "We recommend you back up your existing %1$s and %2$s files." +msgstr "Nous vous recommandons de sauvegarder vos fichiers %1$s et %2$s existants." + +#: wp-admin/includes/network.php:386 +msgid "Complete the following steps to enable the features for creating a network of sites." +msgstr "Suivez les étapes suivantes pour activer les fonctionnalités de création de réseau de sites." + +#: wp-admin/includes/network.php:385 +msgid "Enabling the Network" +msgstr "Activer le Réseau" + +#: wp-admin/includes/network.php:374 +msgid "Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables." +msgstr "Veuillez suivre les étapes de configuration. Pour créer un nouveau réseau, vous devrez vider ou supprimer les tables du réseau de la base de données." + +#: wp-admin/includes/network.php:373 +msgid "An existing WordPress network was detected." +msgstr "Un réseau WordPress pré-existant a été détecté." + +#: wp-admin/includes/network.php:368 +msgid "The original configuration steps are shown here for reference." +msgstr "Les étapes de la configuration originale sont affichées ici pour référence." + +#: wp-admin/includes/network.php:317 +msgid "Your email address." +msgstr "Votre adresse de messagerie." + +#: wp-admin/includes/network.php:313 wp-admin/network/settings.php:112 +msgid "Network Admin Email" +msgstr "Adresse de messagerie de l’administrateur du réseau" + +#: wp-admin/includes/network.php:308 +msgid "What would you like to call your network?" +msgstr "Comment souhaitez-vous appeler votre réseau ?" + +#: wp-admin/includes/network.php:304 wp-admin/network/settings.php:105 +msgid "Network Title" +msgstr "Titre du réseau" + +#: wp-admin/includes/network.php:286 +msgid "Because your install is not new, the sites in your WordPress network must use sub-domains." +msgstr "Comme vous ne ne venez pas d’installer WordPress, les sites de votre réseau doivent utiliser des sous-domaines." + +#: wp-admin/includes/network.php:285 +msgid "Sub-domain Install" +msgstr "Installation en sous-domaine" + +#: wp-admin/includes/network.php:277 +msgid "Because your install is in a directory, the sites in your WordPress network must use sub-directories." +msgstr "Comme votre installation de WordPress se trouve dans un répertoire, les sites de votre réseau doivent utiliser des sous-répertoires." + +#: wp-admin/includes/network.php:270 wp-admin/includes/network.php:280 +#: wp-admin/includes/network.php:287 +msgid "The main site in a sub-directory install will need to use a modified permalink structure, potentially breaking existing links." +msgstr "Le site principal d’une installation en sous-répertoire devra utiliser une structure de permalien modifiée, ce qui pourrait potentiellement casse vos liens existants." + +#. translators: 1: localhost 2: localhost.localdomain +#: wp-admin/includes/network.php:264 +msgid "Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains." +msgstr "Dans le mesure où vous utilisez %1$s, les sites de votre réseau WordPress doivent fonctionner avec des sous-répertoires. Utilisez plutôt %2$s si vous préférez qu’ils fonctionnent avec des sous-domaines." + +#: wp-admin/includes/network.php:260 wp-admin/includes/network.php:275 +msgid "Sub-directory Install" +msgstr "Installation en sous-répertoire" + +#: wp-admin/includes/network.php:256 +msgid "Network Details" +msgstr "Détails du réseau" + +#. translators: %s: host name +#: wp-admin/includes/network.php:248 wp-admin/includes/network.php:297 +msgid "The internet address of your network will be %s." +msgstr "L’adresse internet de votre réseau sera %s." + +#. translators: 1: site url 2: host name 3. www +#: wp-admin/includes/network.php:237 +msgid "We recommend you change your siteurl to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix." +msgstr "Nous vous recommandons de modifier votre adresse de site pour %1$s avant d’activer la fonctionnalité réseau. Il sera toujours possible de parcourir votre site en mettant le préfixe %3$s à une adresse telle que %2$s, mais tous les liens n’auront pas le préfixe %3$s." + +#: wp-admin/includes/network.php:234 wp-admin/includes/network.php:244 +#: wp-admin/includes/network.php:293 +msgid "Server Address" +msgstr "Adresse du serveur" + +#: wp-admin/includes/network.php:229 wp-admin/includes/network.php:545 +#: wp-admin/includes/network.php:585 +msgid "Subdirectory networks may not be fully compatible with custom wp-content directories." +msgstr "Les sous-répertoires du réseau peuvent ne pas être totalement compatibles avec les répertoires personnalisés de wp-content." + +#. translators: 1: hostname +#: wp-admin/includes/network.php:219 +msgctxt "subdirectory examples" +msgid "like %1$s/site1 and %1$s/site2" +msgstr "comme %1$s/site1 et %1$s/site2" + +#: wp-admin/includes/network.php:216 +msgid "Sub-directories" +msgstr "Sous-répertoires" + +#. translators: 1: hostname +#: wp-admin/includes/network.php:211 +msgctxt "subdomain examples" +msgid "like site1.%1$s and site2.%1$s" +msgstr "comme site1.%1$s et site2.%1$s" + +#: wp-admin/includes/network.php:208 +msgid "Sub-domains" +msgstr "Sous-domaines" + +#: wp-admin/includes/network.php:204 +msgid "You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality." +msgstr "Si vous souhaitez utiliser la fonctionnalité d’hébergement virtuel (sous-domaine), vous aurez besoin d’un enregistrement DNS générique (joker/wildcard)." + +#: wp-admin/includes/network.php:203 +msgid "You cannot change this later." +msgstr "Vous ne pourrez pas changer ceci ultérieurement." + +#: wp-admin/includes/network.php:202 +msgid "Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories." +msgstr "Veuillez indiquer si vous souhaitez que les sites de votre réseau WordPress utilisent des sous-domaines ou des sous-répertoires." + +#: wp-admin/includes/network.php:201 +msgid "Addresses of Sites in your Network" +msgstr "Adresses des sites de votre réseau" + +#. translators: 1: mod_rewrite, 2: mod_rewrite documentation URL, 3: Google +#. search for mod_rewrite +#: wp-admin/includes/network.php:191 +msgid "If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up." +msgstr "Si %1$s est désactivé, demandez à votre administrateur d’activer ce module, ou parcourez la documentation Apache . Vous pouvez aussi lancer une recherche afin de trouver de l’aide sur l’installation." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:182 +msgid "It looks like the Apache %s module is not installed." +msgstr "Il semble que le module %s d’Apache ne soit pas installé." + +#: wp-admin/includes/network.php:180 wp-admin/includes/network.php:229 +#: wp-admin/includes/network.php:270 wp-admin/includes/network.php:280 +msgid "Warning!" +msgstr "Attention !" + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:175 +msgid "Please make sure the Apache %s module is installed as it will be used at the end of this installation." +msgstr "Veuillez vous assurer que le module %s d’Apache soit installé, car il sera utilisé à la fin de l’installation." + +#: wp-admin/includes/network.php:161 +msgid "Fill in the information below and you’ll be on your way to creating a network of WordPress sites. We will create configuration files in the next step." +msgstr "Remplissez les informations ci-dessous et vous pourrez créer un réseau de sites Wordpress. Nous créerons les fichiers de configuration lors de la prochaine étape." + +#: wp-admin/includes/network.php:160 +msgid "Welcome to the Network installation process!" +msgstr "Bienvenue dans l’installation du Réseau !" + +#. translators: %s: Default network name +#: wp-admin/includes/network.php:151 +msgid "%s Sites" +msgstr "Les sites de %s" + +#: wp-admin/includes/network.php:140 +msgid "ERROR: The network could not be created." +msgstr "ERREUR : Le réseau ne peut pas être créé." + +#: wp-admin/includes/network.php:128 +msgid "Return to Dashboard" +msgstr "Revenir au tableau de bord" + +#. translators: %s: port number +#: wp-admin/includes/network.php:125 +msgid "You cannot use port numbers such as %s." +msgstr "Vous ne pouvez pas utiliser des numéros de port tels que %s." + +#: wp-admin/includes/network.php:122 +msgid "You cannot install a network of sites with your server address." +msgstr "Vous ne pouvez pas installer un réseau de sites avec votre adresse de serveur." + +#: wp-admin/includes/network.php:113 +msgid "Once the network is created, you may reactivate your plugins." +msgstr "Dès que le réseau sera créé, vous pourrez réactiver vos extensions." + +#: wp-admin/includes/network.php:113 +msgid "Please deactivate your plugins before enabling the Network feature." +msgstr "Veuillez désactiver vos extensions avant d’activer la fonctionnalité Réseau. " + +#: wp-admin/includes/network.php:113 wp-admin/includes/network.php:373 +#: wp-admin/includes/network.php:545 wp-admin/includes/network.php:585 +msgid "Warning:" +msgstr "Attention :" + +#: wp-admin/includes/network.php:105 +msgid "The constant DO_NOT_UPGRADE_GLOBAL_TABLES cannot be defined when creating a network." +msgstr "La constante DO_NOT_UPGRADE_GLOBAL_TABLES ne peut pas être définie lors de la création d’un réseau." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:171 +msgctxt "user" +msgid "Registered" +msgstr "Inscription" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:142 +msgid "Super Admin (%s)" +msgid_plural "Super Admins (%s)" +msgstr[0] "Super-admin (%s)" +msgstr[1] "Super-admins (%s)" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:114 +msgctxt "user" +msgid "Not Spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:113 +msgctxt "user" +msgid "Mark as Spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:573 +msgid "Visit Theme Site" +msgstr "Aller sur le site du thème" + +#. translators: %s: theme name +#: wp-admin/includes/class-wp-ms-themes-list-table.php:568 +msgid "Visit %s homepage" +msgstr "Visiter la page d’accueil de %s" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:541 +msgid "Broken Theme:" +msgstr "Thème cassé :" + +#. translators: %s: theme name +#: wp-admin/includes/class-wp-ms-themes-list-table.php:476 +msgctxt "theme" +msgid "Delete %s" +msgstr "Supprimer %s" + +#. translators: %s: theme name +#: wp-admin/includes/class-wp-ms-themes-list-table.php:457 +msgid "Open %s in the Theme Editor" +msgstr "Ouvrir %s dans l’Éditeur de Thème" + +#. translators: %s: theme name +#: wp-admin/includes/class-wp-ms-themes-list-table.php:441 +msgid "Network Disable %s" +msgstr "Désactiver %s pour le réseau" + +#. translators: %s: theme name +#: wp-admin/includes/class-wp-ms-themes-list-table.php:438 +msgid "Disable %s" +msgstr "Désactiver %s" + +#. translators: %s: theme name +#: wp-admin/includes/class-wp-ms-themes-list-table.php:419 +msgid "Network Enable %s" +msgstr "Activer %s sur le réseau" + +#. translators: %s: theme name +#: wp-admin/includes/class-wp-ms-themes-list-table.php:416 +msgid "Enable %s" +msgstr "Activer %s" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:335 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:447 +msgid "Network Disable" +msgstr "Désactiver du réseau" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:335 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:447 +msgid "Disable" +msgstr "Désactiver" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:333 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:425 +msgid "Enable" +msgstr "Activer" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:302 +msgid "Broken (%s)" +msgid_plural "Broken (%s)" +msgstr[0] "Cassé (%s)" +msgstr[1] "Cassé (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:296 +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Désactivé (%s)" +msgstr[1] "Désactivés (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:293 +msgid "Enabled (%s)" +msgid_plural "Enabled (%s)" +msgstr[0] "Activé (%s)" +msgstr[1] "Activés (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:290 +msgctxt "themes" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Tous (%s)" +msgstr[1] "Tous (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:247 +msgid "Theme" +msgstr "Thème" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:236 +msgid "You do not appear to have any themes available at this time." +msgstr "Vous ne semblez pas avoir de thème disponible en ce moment." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:234 +msgid "No themes found." +msgstr "Aucun thème trouvé." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:531 +msgctxt "verb; site" +msgid "Archive" +msgstr "Archiver" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:529 +msgid "Unarchive" +msgstr "Désarchiver" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:360 +msgid "Never" +msgstr "Jamais" + +#. translators: 1: site name, 2: site tagline. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:334 +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:231 +#: wp-admin/network/site-info.php:177 +msgctxt "site" +msgid "Registered" +msgstr "Inscription" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:230 +#: wp-admin/network/site-info.php:181 +msgid "Last Updated" +msgstr "Dernière mise à jour" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:204 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:535 +msgctxt "site" +msgid "Not Spam" +msgstr "N’est pas un indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:203 +msgctxt "site" +msgid "Mark as Spam" +msgstr "Marquer comme indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:192 +msgid "No sites found." +msgstr "Aucun site trouvé." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:44 +#: wp-admin/network/site-info.php:191 +msgid "Mature" +msgstr "Adulte" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:43 +#: wp-admin/network/site-info.php:189 +msgid "Deleted" +msgstr "Supprimé" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:42 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:537 +#: wp-admin/network/site-info.php:188 +msgctxt "site" +msgid "Spam" +msgstr "Indésirable" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:41 +#: wp-admin/network/site-info.php:187 +msgid "Archived" +msgstr "Archivé" diff --git a/console/skel/wordpress/wp-content/languages/continents-cities-fr_FR.mo b/console/skel/wordpress/wp-content/languages/continents-cities-fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..ef659ec7ebc00622ed12820cc3f53e2a278eaacc GIT binary patch literal 20758 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 literal 0 HcmV?d00001 diff --git a/console/skel/wordpress/wp-content/languages/continents-cities-fr_FR.po b/console/skel/wordpress/wp-content/languages/continents-cities-fr_FR.po new file mode 100644 index 0000000..5ae0ca5 --- /dev/null +++ b/console/skel/wordpress/wp-content/languages/continents-cities-fr_FR.po @@ -0,0 +1,2097 @@ +# Translation of WordPress - 4.7.x - Continents & Cities in French (France) +# This file is distributed under the same license as the WordPress - 4.7.x - Continents & Cities package. +msgid "" +msgstr "" +"PO-Revision-Date: 2016-07-04 14:14:02+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: fr\n" +"Project-Id-Version: WordPress - 4.7.x - Continents & Cities\n" + +#: wp-admin/includes/continents-cities.php:549 +msgid "Yap" +msgstr "Yap" + +#: wp-admin/includes/continents-cities.php:548 +msgid "Wallis" +msgstr "Wallis-et-Futuna" + +#: wp-admin/includes/continents-cities.php:547 +msgid "Wake" +msgstr "Île Wake" + +#: wp-admin/includes/continents-cities.php:546 +msgid "Truk" +msgstr "Chuuk (Truk)" + +#: wp-admin/includes/continents-cities.php:545 +msgid "Tongatapu" +msgstr "Tongatapu" + +#: wp-admin/includes/continents-cities.php:544 +msgid "Tarawa" +msgstr "Tarawa" + +#: wp-admin/includes/continents-cities.php:543 +msgid "Tahiti" +msgstr "Tahiti" + +#: wp-admin/includes/continents-cities.php:542 +msgid "Samoa" +msgstr "Samoa" + +#: wp-admin/includes/continents-cities.php:541 +msgid "Saipan" +msgstr "Saipan" + +#: wp-admin/includes/continents-cities.php:540 +msgid "Rarotonga" +msgstr "Rarotonga" + +#: wp-admin/includes/continents-cities.php:539 +msgid "Port Moresby" +msgstr "Port Moresby" + +#: wp-admin/includes/continents-cities.php:538 +msgid "Ponape" +msgstr "Pohnpei (Ponape)" + +#: wp-admin/includes/continents-cities.php:537 +msgid "Pohnpei" +msgstr "Pohnpei" + +#: wp-admin/includes/continents-cities.php:536 +msgid "Pitcairn" +msgstr "Îles Pitcairn" + +#: wp-admin/includes/continents-cities.php:535 +msgid "Palau" +msgstr "Palaos" + +#: wp-admin/includes/continents-cities.php:534 +msgid "Pago Pago" +msgstr "Pago Pago" + +#: wp-admin/includes/continents-cities.php:533 +msgid "Noumea" +msgstr "Nouméa" + +#: wp-admin/includes/continents-cities.php:532 +msgid "Norfolk" +msgstr "Norfolk" + +#: wp-admin/includes/continents-cities.php:531 +msgid "Niue" +msgstr "Niué" + +#: wp-admin/includes/continents-cities.php:530 +msgid "Nauru" +msgstr "Nauru" + +#: wp-admin/includes/continents-cities.php:529 +msgid "Midway" +msgstr "Atoll de Midway" + +#: wp-admin/includes/continents-cities.php:528 +msgid "Marquesas" +msgstr "Îles Marquises" + +#: wp-admin/includes/continents-cities.php:527 +msgid "Majuro" +msgstr "Majuro" + +#: wp-admin/includes/continents-cities.php:526 +msgid "Kwajalein" +msgstr "Kwajalein" + +#: wp-admin/includes/continents-cities.php:525 +msgid "Kosrae" +msgstr "Kosrae" + +#: wp-admin/includes/continents-cities.php:524 +msgid "Kiritimati" +msgstr "Île Christmas (Kiribati)" + +#: wp-admin/includes/continents-cities.php:523 +msgid "Johnston" +msgstr "Atoll de Johnston" + +#: wp-admin/includes/continents-cities.php:522 +msgid "Honolulu" +msgstr "Honolulu" + +#: wp-admin/includes/continents-cities.php:521 +msgid "Guam" +msgstr "Guam" + +#: wp-admin/includes/continents-cities.php:520 +msgid "Guadalcanal" +msgstr "Guadalcanal" + +#: wp-admin/includes/continents-cities.php:519 +msgid "Gambier" +msgstr "Îles Gambier" + +#: wp-admin/includes/continents-cities.php:518 +msgid "Galapagos" +msgstr "Îles Galápagos" + +#: wp-admin/includes/continents-cities.php:517 +msgid "Funafuti" +msgstr "Funafuti" + +#: wp-admin/includes/continents-cities.php:516 +msgid "Fiji" +msgstr "Fidji" + +#: wp-admin/includes/continents-cities.php:515 +msgid "Fakaofo" +msgstr "Fakaofo" + +#: wp-admin/includes/continents-cities.php:514 +msgid "Enderbury" +msgstr "Enderbury" + +#: wp-admin/includes/continents-cities.php:513 +msgid "Efate" +msgstr "Éfaté" + +#: wp-admin/includes/continents-cities.php:512 +msgid "Easter" +msgstr "Île de Pâques" + +#: wp-admin/includes/continents-cities.php:511 +msgid "Chuuk" +msgstr "Chuuk" + +#: wp-admin/includes/continents-cities.php:510 +msgid "Chatham" +msgstr "Îles Chatham" + +#: wp-admin/includes/continents-cities.php:509 +msgid "Bougainville" +msgstr "Bougainville" + +#: wp-admin/includes/continents-cities.php:508 +msgid "Auckland" +msgstr "Auckland" + +#: wp-admin/includes/continents-cities.php:507 +msgid "Apia" +msgstr "Apia" + +#: wp-admin/includes/continents-cities.php:506 +msgid "Pacific" +msgstr "Océan Pacifique" + +#: wp-admin/includes/continents-cities.php:504 +msgid "Reunion" +msgstr "Île de la Réunion" + +#: wp-admin/includes/continents-cities.php:503 +msgid "Mayotte" +msgstr "Mayotte" + +#: wp-admin/includes/continents-cities.php:502 +msgid "Mauritius" +msgstr "Île Maurice" + +#: wp-admin/includes/continents-cities.php:501 +msgid "Maldives" +msgstr "Maldives" + +#: wp-admin/includes/continents-cities.php:500 +msgid "Mahe" +msgstr "Mahé" + +#: wp-admin/includes/continents-cities.php:499 +msgid "Kerguelen" +msgstr "Îles Kerguelen" + +#: wp-admin/includes/continents-cities.php:498 +msgid "Comoro" +msgstr "Archipel des Comores" + +#: wp-admin/includes/continents-cities.php:497 +msgid "Cocos" +msgstr "Îles Cocos" + +#: wp-admin/includes/continents-cities.php:496 +msgid "Christmas" +msgstr "Île Christmas" + +#: wp-admin/includes/continents-cities.php:495 +msgid "Chagos" +msgstr "Archipel des Chagos" + +#: wp-admin/includes/continents-cities.php:494 +msgid "Antananarivo" +msgstr "Antananarivo" + +#: wp-admin/includes/continents-cities.php:493 +msgid "Indian" +msgstr "Océan Indien" + +#: wp-admin/includes/continents-cities.php:491 +msgid "Zurich" +msgstr "Zurich" + +#: wp-admin/includes/continents-cities.php:490 +msgid "Zaporozhye" +msgstr "Zaporojie" + +#: wp-admin/includes/continents-cities.php:489 +msgid "Zagreb" +msgstr "Zagreb" + +#: wp-admin/includes/continents-cities.php:488 +msgid "Warsaw" +msgstr "Varsovie" + +#: wp-admin/includes/continents-cities.php:487 +msgid "Volgograd" +msgstr "Volgograd" + +#: wp-admin/includes/continents-cities.php:486 +msgid "Vilnius" +msgstr "Vilnius" + +#: wp-admin/includes/continents-cities.php:485 +msgid "Vienna" +msgstr "Vienne" + +#: wp-admin/includes/continents-cities.php:484 +msgid "Vatican" +msgstr "Vatican" + +#: wp-admin/includes/continents-cities.php:483 +msgid "Vaduz" +msgstr "Vaduz" + +#: wp-admin/includes/continents-cities.php:482 +msgid "Uzhgorod" +msgstr "Oujhorod (Uzhgorod)" + +#: wp-admin/includes/continents-cities.php:481 +msgid "Ulyanovsk" +msgstr "Oulianovsk" + +#: wp-admin/includes/continents-cities.php:480 +msgid "Tiraspol" +msgstr "Tiraspol" + +#: wp-admin/includes/continents-cities.php:479 +msgid "Tirane" +msgstr "Tirana" + +#: wp-admin/includes/continents-cities.php:478 +msgid "Tallinn" +msgstr "Tallinn" + +#: wp-admin/includes/continents-cities.php:477 +msgid "Stockholm" +msgstr "Stockholm" + +#: wp-admin/includes/continents-cities.php:476 +msgid "Sofia" +msgstr "Sofia" + +#: wp-admin/includes/continents-cities.php:475 +msgid "Skopje" +msgstr "Skopje" + +#: wp-admin/includes/continents-cities.php:474 +msgid "Simferopol" +msgstr "Simferopol" + +#: wp-admin/includes/continents-cities.php:473 +msgid "Sarajevo" +msgstr "Sarajevo" + +#: wp-admin/includes/continents-cities.php:472 +msgid "San Marino" +msgstr "Saint-Marin" + +#: wp-admin/includes/continents-cities.php:471 +msgid "Samara" +msgstr "Samara" + +#: wp-admin/includes/continents-cities.php:470 +msgid "Rome" +msgstr "Rome" + +#: wp-admin/includes/continents-cities.php:469 +msgid "Riga" +msgstr "Riga" + +#: wp-admin/includes/continents-cities.php:468 +msgid "Prague" +msgstr "Prague" + +#: wp-admin/includes/continents-cities.php:467 +msgid "Podgorica" +msgstr "Podgorica" + +#: wp-admin/includes/continents-cities.php:466 +msgid "Paris" +msgstr "Paris" + +#: wp-admin/includes/continents-cities.php:465 +msgid "Oslo" +msgstr "Oslo" + +#: wp-admin/includes/continents-cities.php:463 +msgid "Moscow" +msgstr "Moscou" + +#: wp-admin/includes/continents-cities.php:462 +msgid "Monaco" +msgstr "Monaco" + +#: wp-admin/includes/continents-cities.php:461 +msgid "Minsk" +msgstr "Minsk" + +#: wp-admin/includes/continents-cities.php:460 +msgid "Mariehamn" +msgstr "Mariehamn" + +#: wp-admin/includes/continents-cities.php:459 +msgid "Malta" +msgstr "Malte" + +#: wp-admin/includes/continents-cities.php:458 +msgid "Madrid" +msgstr "Madrid" + +#: wp-admin/includes/continents-cities.php:457 +msgid "Luxembourg" +msgstr "Luxembourg" + +#: wp-admin/includes/continents-cities.php:456 +msgid "London" +msgstr "Londres" + +#: wp-admin/includes/continents-cities.php:455 +msgid "Ljubljana" +msgstr "Ljubljana" + +#: wp-admin/includes/continents-cities.php:454 +msgid "Lisbon" +msgstr "Lisbonne" + +#: wp-admin/includes/continents-cities.php:453 +msgid "Kirov" +msgstr "Kirov" + +#: wp-admin/includes/continents-cities.php:452 +msgid "Kiev" +msgstr "Kiev" + +#: wp-admin/includes/continents-cities.php:451 +msgid "Kaliningrad" +msgstr "Kaliningrad" + +#: wp-admin/includes/continents-cities.php:450 +msgid "Jersey" +msgstr "Jersey" + +#: wp-admin/includes/continents-cities.php:448 +msgid "Isle of Man" +msgstr "Île de Man" + +#: wp-admin/includes/continents-cities.php:447 +msgid "Helsinki" +msgstr "Helsinki" + +#: wp-admin/includes/continents-cities.php:446 +msgid "Guernsey" +msgstr "Guernsey" + +#: wp-admin/includes/continents-cities.php:445 +msgid "Gibraltar" +msgstr "Gibraltar" + +#: wp-admin/includes/continents-cities.php:444 +msgid "Dublin" +msgstr "Dublin" + +#: wp-admin/includes/continents-cities.php:443 +msgid "Copenhagen" +msgstr "Copenhague" + +#: wp-admin/includes/continents-cities.php:442 +msgid "Chisinau" +msgstr "Chişinău (Kichinev)" + +#: wp-admin/includes/continents-cities.php:441 +msgid "Busingen" +msgstr "Büsingen" + +#: wp-admin/includes/continents-cities.php:440 +msgid "Budapest" +msgstr "Budapest" + +#: wp-admin/includes/continents-cities.php:439 +msgid "Bucharest" +msgstr "Bucarest" + +#: wp-admin/includes/continents-cities.php:438 +msgid "Brussels" +msgstr "Bruxelles" + +#: wp-admin/includes/continents-cities.php:437 +msgid "Bratislava" +msgstr "Bratislava" + +#: wp-admin/includes/continents-cities.php:436 +msgid "Berlin" +msgstr "Berlin" + +#: wp-admin/includes/continents-cities.php:435 +msgid "Belgrade" +msgstr "Belgrade" + +#: wp-admin/includes/continents-cities.php:434 +msgid "Belfast" +msgstr "Belfast" + +#: wp-admin/includes/continents-cities.php:433 +msgid "Athens" +msgstr "Athènes" + +#: wp-admin/includes/continents-cities.php:432 +msgid "Astrakhan" +msgstr "Astrakhan" + +#: wp-admin/includes/continents-cities.php:431 +msgid "Andorra" +msgstr "Andorre" + +#: wp-admin/includes/continents-cities.php:430 +msgid "Amsterdam" +msgstr "Amsterdam" + +#: wp-admin/includes/continents-cities.php:429 +msgid "Europe" +msgstr "Europe" + +#: wp-admin/includes/continents-cities.php:427 +msgid "Zulu" +msgstr "Zulu" + +#: wp-admin/includes/continents-cities.php:426 +msgid "Universal" +msgstr "Universel" + +#: wp-admin/includes/continents-cities.php:425 +msgid "UTC" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:424 +msgid "UCT" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:423 +msgid "Greenwich" +msgstr "Greenwich" + +#: wp-admin/includes/continents-cities.php:422 +msgid "GMT0" +msgstr "UTC0" + +#: wp-admin/includes/continents-cities.php:421 +msgid "GMT-9" +msgstr "UTC-9" + +#: wp-admin/includes/continents-cities.php:420 +msgid "GMT-8" +msgstr "UTC-8" + +#: wp-admin/includes/continents-cities.php:419 +msgid "GMT-7" +msgstr "UTC-7" + +#: wp-admin/includes/continents-cities.php:418 +msgid "GMT-6" +msgstr "UTC-6" + +#: wp-admin/includes/continents-cities.php:417 +msgid "GMT-5" +msgstr "UTC-5" + +#: wp-admin/includes/continents-cities.php:416 +msgid "GMT-4" +msgstr "UTC-4" + +#: wp-admin/includes/continents-cities.php:415 +msgid "GMT-3" +msgstr "UTC-3" + +#: wp-admin/includes/continents-cities.php:414 +msgid "GMT-2" +msgstr "UTC-2" + +#: wp-admin/includes/continents-cities.php:413 +msgid "GMT-14" +msgstr "UTC-14" + +#: wp-admin/includes/continents-cities.php:412 +msgid "GMT-13" +msgstr "UTC-13" + +#: wp-admin/includes/continents-cities.php:411 +msgid "GMT-12" +msgstr "UTC-12" + +#: wp-admin/includes/continents-cities.php:410 +msgid "GMT-11" +msgstr "UTC-11" + +#: wp-admin/includes/continents-cities.php:409 +msgid "GMT-10" +msgstr "UTC-10" + +#: wp-admin/includes/continents-cities.php:408 +msgid "GMT-1" +msgstr "UTC-1" + +#: wp-admin/includes/continents-cities.php:407 +msgid "GMT-0" +msgstr "UTC-0" + +#: wp-admin/includes/continents-cities.php:406 +msgid "GMT+9" +msgstr "UTC+9" + +#: wp-admin/includes/continents-cities.php:405 +msgid "GMT+8" +msgstr "UTC+8" + +#: wp-admin/includes/continents-cities.php:404 +msgid "GMT+7" +msgstr "UTC+7" + +#: wp-admin/includes/continents-cities.php:403 +msgid "GMT+6" +msgstr "UTC+6" + +#: wp-admin/includes/continents-cities.php:402 +msgid "GMT+5" +msgstr "UTC+5" + +#: wp-admin/includes/continents-cities.php:401 +msgid "GMT+4" +msgstr "UTC+4" + +#: wp-admin/includes/continents-cities.php:400 +msgid "GMT+3" +msgstr "UTC+3" + +#: wp-admin/includes/continents-cities.php:399 +msgid "GMT+2" +msgstr "UTC+2" + +#: wp-admin/includes/continents-cities.php:398 +msgid "GMT+12" +msgstr "UTC+12" + +#: wp-admin/includes/continents-cities.php:397 +msgid "GMT+11" +msgstr "UTC+11" + +#: wp-admin/includes/continents-cities.php:396 +msgid "GMT+10" +msgstr "UTC+10" + +#: wp-admin/includes/continents-cities.php:395 +msgid "GMT+1" +msgstr "UTC+1" + +#: wp-admin/includes/continents-cities.php:394 +msgid "GMT+0" +msgstr "UTC+0" + +#: wp-admin/includes/continents-cities.php:393 +msgid "GMT" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:392 +msgid "Etc" +msgstr "Etc." + +#: wp-admin/includes/continents-cities.php:390 +msgid "Yancowinna" +msgstr "Yancowinna" + +#: wp-admin/includes/continents-cities.php:389 +msgid "West" +msgstr "Ouest" + +#: wp-admin/includes/continents-cities.php:388 +msgid "Victoria" +msgstr "Victoria" + +#: wp-admin/includes/continents-cities.php:387 +msgid "Tasmania" +msgstr "Tasmanie" + +#: wp-admin/includes/continents-cities.php:386 +msgid "Sydney" +msgstr "Sydney" + +#: wp-admin/includes/continents-cities.php:385 +msgid "South" +msgstr "Sud" + +#: wp-admin/includes/continents-cities.php:384 +msgid "Queensland" +msgstr "Queensland" + +#: wp-admin/includes/continents-cities.php:383 +msgid "Perth" +msgstr "Perth" + +#: wp-admin/includes/continents-cities.php:382 +msgid "North" +msgstr "Nord" + +#: wp-admin/includes/continents-cities.php:381 +msgid "NSW" +msgstr "Nouvelle-Galles du Sud (NSW)" + +#: wp-admin/includes/continents-cities.php:380 +msgid "Melbourne" +msgstr "Melbourne" + +#: wp-admin/includes/continents-cities.php:379 +msgid "Lord Howe" +msgstr "Île Lord Howe (LHI)" + +#: wp-admin/includes/continents-cities.php:378 +msgid "Lindeman" +msgstr "Lindeman" + +#: wp-admin/includes/continents-cities.php:377 +msgid "LHI" +msgstr "Île Lord Howe (LHI)" + +#: wp-admin/includes/continents-cities.php:376 +msgid "Hobart" +msgstr "Hobart" + +#: wp-admin/includes/continents-cities.php:375 +msgid "Eucla" +msgstr "Eucla" + +#: wp-admin/includes/continents-cities.php:374 +msgid "Darwin" +msgstr "Darwin" + +#: wp-admin/includes/continents-cities.php:373 +msgid "Currie" +msgstr "Currie" + +#: wp-admin/includes/continents-cities.php:372 +msgid "Canberra" +msgstr "Canberra" + +#: wp-admin/includes/continents-cities.php:371 +msgid "Broken Hill" +msgstr "Broken Hill" + +#: wp-admin/includes/continents-cities.php:370 +msgid "Brisbane" +msgstr "Brisbane" + +#: wp-admin/includes/continents-cities.php:369 +msgid "Adelaide" +msgstr "Adélaïde" + +#: wp-admin/includes/continents-cities.php:368 +msgid "ACT" +msgstr "Territoire de la capitale australienne (ACT)" + +#: wp-admin/includes/continents-cities.php:367 +msgid "Australia" +msgstr "Australie" + +#: wp-admin/includes/continents-cities.php:365 +msgid "Stanley" +msgstr "Stanley" + +#: wp-admin/includes/continents-cities.php:364 +msgid "St Helena" +msgstr "Sainte-Hélène" + +#: wp-admin/includes/continents-cities.php:363 +msgid "South Georgia" +msgstr "Île de Géorgie du Sud" + +#: wp-admin/includes/continents-cities.php:362 +msgid "Reykjavik" +msgstr "Reykjavík" + +#: wp-admin/includes/continents-cities.php:361 +msgid "Madeira" +msgstr "Madère" + +#: wp-admin/includes/continents-cities.php:360 +msgid "Jan Mayen" +msgstr "Île Jan Mayen" + +#: wp-admin/includes/continents-cities.php:359 +msgid "Faroe" +msgstr "Îles Féroé" + +#: wp-admin/includes/continents-cities.php:358 +msgid "Faeroe" +msgstr "Îles Féroé" + +#: wp-admin/includes/continents-cities.php:357 +msgid "Cape Verde" +msgstr "Cap-Vert" + +#: wp-admin/includes/continents-cities.php:356 +msgid "Canary" +msgstr "Îles Canaries" + +#: wp-admin/includes/continents-cities.php:355 +msgid "Bermuda" +msgstr "Bermudes" + +#: wp-admin/includes/continents-cities.php:354 +msgid "Azores" +msgstr "Açores" + +#: wp-admin/includes/continents-cities.php:353 +msgid "Atlantic" +msgstr "Atlantique" + +#: wp-admin/includes/continents-cities.php:351 +msgid "Yerevan" +msgstr "Yerevan (Erevan)" + +#: wp-admin/includes/continents-cities.php:350 +msgid "Yekaterinburg" +msgstr "Iekaterinbourg" + +#: wp-admin/includes/continents-cities.php:349 +msgid "Yakutsk" +msgstr "Iakoutsk" + +#: wp-admin/includes/continents-cities.php:348 +msgid "Vladivostok" +msgstr "Vladivostok" + +#: wp-admin/includes/continents-cities.php:347 +msgid "Vientiane" +msgstr "Vientiane" + +#: wp-admin/includes/continents-cities.php:346 +msgid "Ust-Nera" +msgstr "Oust-Nera" + +#: wp-admin/includes/continents-cities.php:345 +msgid "Urumqi" +msgstr "Ürümqi" + +#: wp-admin/includes/continents-cities.php:344 +msgid "Ulan Bator" +msgstr "Oulan-Bator (Ulaanbaatar)" + +#: wp-admin/includes/continents-cities.php:343 +msgid "Ulaanbaatar" +msgstr "Oulan-Bator (Ulaanbaatar)" + +#: wp-admin/includes/continents-cities.php:342 +msgid "Ujung Pandang" +msgstr "Makassar (Ujung Pandang)" + +#: wp-admin/includes/continents-cities.php:341 +msgid "Tomsk" +msgstr "Tomsk" + +#: wp-admin/includes/continents-cities.php:340 +msgid "Tokyo" +msgstr "Tōkyō" + +#: wp-admin/includes/continents-cities.php:339 +msgid "Thimphu" +msgstr "Thimphou" + +#: wp-admin/includes/continents-cities.php:338 +msgid "Thimbu" +msgstr "Thimphou" + +#: wp-admin/includes/continents-cities.php:337 +msgid "Tel Aviv" +msgstr "Tel Aviv-Jaffa" + +#: wp-admin/includes/continents-cities.php:336 +msgid "Tehran" +msgstr "Téhéran" + +#: wp-admin/includes/continents-cities.php:335 +msgid "Tbilisi" +msgstr "Tbilissi" + +#: wp-admin/includes/continents-cities.php:334 +msgid "Tashkent" +msgstr "Tachkent" + +#: wp-admin/includes/continents-cities.php:333 +msgid "Taipei" +msgstr "" + +#: wp-admin/includes/continents-cities.php:332 +msgid "Srednekolymsk" +msgstr "Srednekolymsk" + +#: wp-admin/includes/continents-cities.php:331 +msgid "Singapore" +msgstr "Singapour" + +#: wp-admin/includes/continents-cities.php:330 +msgid "Shanghai" +msgstr "" + +#: wp-admin/includes/continents-cities.php:329 +msgid "Seoul" +msgstr "Séoul" + +#: wp-admin/includes/continents-cities.php:328 +msgid "Samarkand" +msgstr "Samarcande" + +#: wp-admin/includes/continents-cities.php:327 +msgid "Sakhalin" +msgstr "Sakhaline" + +#: wp-admin/includes/continents-cities.php:326 +msgid "Saigon" +msgstr "Hô-Chi-Minh-Ville (Saigon)" + +#: wp-admin/includes/continents-cities.php:325 +msgid "Riyadh" +msgstr "Riyad" + +#: wp-admin/includes/continents-cities.php:324 +msgid "Rangoon" +msgstr "Rangoon" + +#: wp-admin/includes/continents-cities.php:323 +msgid "Qyzylorda" +msgstr "Kyzylorda" + +#: wp-admin/includes/continents-cities.php:322 +msgid "Qatar" +msgstr "" + +#: wp-admin/includes/continents-cities.php:321 +msgid "Pyongyang" +msgstr "Pyongyang" + +#: wp-admin/includes/continents-cities.php:320 +msgid "Pontianak" +msgstr "Pontianak" + +#: wp-admin/includes/continents-cities.php:319 +msgid "Phnom Penh" +msgstr "Phnom Penh" + +#: wp-admin/includes/continents-cities.php:318 +msgid "Oral" +msgstr "Oural" + +#: wp-admin/includes/continents-cities.php:317 +msgid "Omsk" +msgstr "Omsk" + +#: wp-admin/includes/continents-cities.php:316 +msgid "Novosibirsk" +msgstr "Novossibirsk" + +#: wp-admin/includes/continents-cities.php:315 +msgid "Novokuznetsk" +msgstr "Novokouznetsk" + +#: wp-admin/includes/continents-cities.php:314 +#: wp-admin/includes/continents-cities.php:464 +msgid "Nicosia" +msgstr "Nicosie" + +#: wp-admin/includes/continents-cities.php:313 +msgid "Muscat" +msgstr "Mascate" + +#: wp-admin/includes/continents-cities.php:312 +msgid "Manila" +msgstr "Manille" + +#: wp-admin/includes/continents-cities.php:311 +msgid "Makassar" +msgstr "Makassar" + +#: wp-admin/includes/continents-cities.php:310 +msgid "Magadan" +msgstr "Magadan" + +#: wp-admin/includes/continents-cities.php:309 +msgid "Macau" +msgstr "Macao" + +#: wp-admin/includes/continents-cities.php:308 +msgid "Macao" +msgstr "Macao" + +#: wp-admin/includes/continents-cities.php:307 +msgid "Kuwait" +msgstr "Koweït" + +#: wp-admin/includes/continents-cities.php:306 +msgid "Kuching" +msgstr "Kuching" + +#: wp-admin/includes/continents-cities.php:305 +msgid "Kuala Lumpur" +msgstr "Kuala Lumpur" + +#: wp-admin/includes/continents-cities.php:304 +msgid "Krasnoyarsk" +msgstr "Krasnoïarsk" + +#: wp-admin/includes/continents-cities.php:303 +msgid "Kolkata" +msgstr "Calcutta" + +#: wp-admin/includes/continents-cities.php:302 +msgid "Khandyga" +msgstr "Khandyga" + +#: wp-admin/includes/continents-cities.php:301 +msgid "Katmandu" +msgstr "Katmandou" + +#: wp-admin/includes/continents-cities.php:300 +msgid "Kathmandu" +msgstr "Katmandou" + +#: wp-admin/includes/continents-cities.php:299 +msgid "Kashgar" +msgstr "Kachgar" + +#: wp-admin/includes/continents-cities.php:298 +msgid "Karachi" +msgstr "Karachi" + +#: wp-admin/includes/continents-cities.php:297 +msgid "Kamchatka" +msgstr "Kamtchatka" + +#: wp-admin/includes/continents-cities.php:296 +msgid "Kabul" +msgstr "Kaboul" + +#: wp-admin/includes/continents-cities.php:295 +msgid "Jerusalem" +msgstr "Jérusalem" + +#: wp-admin/includes/continents-cities.php:294 +msgid "Jayapura" +msgstr "Jayapura" + +#: wp-admin/includes/continents-cities.php:293 +msgid "Jakarta" +msgstr "Jakarta" + +#: wp-admin/includes/continents-cities.php:292 +#: wp-admin/includes/continents-cities.php:449 +msgid "Istanbul" +msgstr "Istanbul" + +#: wp-admin/includes/continents-cities.php:291 +msgid "Irkutsk" +msgstr "Irkoutsk" + +#: wp-admin/includes/continents-cities.php:290 +msgid "Hovd" +msgstr "Hovd" + +#: wp-admin/includes/continents-cities.php:289 +msgid "Hong Kong" +msgstr "Hong Kong" + +#: wp-admin/includes/continents-cities.php:288 +msgid "Ho Chi Minh" +msgstr "Hô-Chi-Minh-Ville" + +#: wp-admin/includes/continents-cities.php:287 +msgid "Hebron" +msgstr "Hébron" + +#: wp-admin/includes/continents-cities.php:286 +msgid "Harbin" +msgstr "Harbin" + +#: wp-admin/includes/continents-cities.php:285 +msgid "Gaza" +msgstr "Gaza" + +#: wp-admin/includes/continents-cities.php:284 +msgid "Dushanbe" +msgstr "Douchanbé" + +#: wp-admin/includes/continents-cities.php:283 +msgid "Dubai" +msgstr "Dubaï" + +#: wp-admin/includes/continents-cities.php:282 +msgid "Dili" +msgstr "Dili" + +#: wp-admin/includes/continents-cities.php:281 +msgid "Dhaka" +msgstr "Dhâkâ (Dacca)" + +#: wp-admin/includes/continents-cities.php:280 +msgid "Damascus" +msgstr "Damas" + +#: wp-admin/includes/continents-cities.php:279 +msgid "Dacca" +msgstr "Dhâkâ (Dacca)" + +#: wp-admin/includes/continents-cities.php:278 +msgid "Colombo" +msgstr "Colombo" + +#: wp-admin/includes/continents-cities.php:277 +msgid "Chungking" +msgstr "Chungking" + +#: wp-admin/includes/continents-cities.php:276 +msgid "Chongqing" +msgstr "Chongqing" + +#: wp-admin/includes/continents-cities.php:275 +msgid "Choibalsan" +msgstr "Choybalsan" + +#: wp-admin/includes/continents-cities.php:274 +msgid "Chita" +msgstr "Tchita" + +#: wp-admin/includes/continents-cities.php:273 +msgid "Calcutta" +msgstr "Calcutta" + +#: wp-admin/includes/continents-cities.php:272 +msgid "Brunei" +msgstr "Brunei" + +#: wp-admin/includes/continents-cities.php:271 +msgid "Bishkek" +msgstr "Bichkek" + +#: wp-admin/includes/continents-cities.php:270 +msgid "Beirut" +msgstr "Beyrouth" + +#: wp-admin/includes/continents-cities.php:269 +msgid "Barnaul" +msgstr "Barnaoul" + +#: wp-admin/includes/continents-cities.php:268 +msgid "Bangkok" +msgstr "Bangkok" + +#: wp-admin/includes/continents-cities.php:267 +msgid "Baku" +msgstr "Bakou" + +#: wp-admin/includes/continents-cities.php:266 +msgid "Bahrain" +msgstr "Bahreïn" + +#: wp-admin/includes/continents-cities.php:265 +msgid "Baghdad" +msgstr "Bagdad" + +#: wp-admin/includes/continents-cities.php:264 +msgid "Ashkhabad" +msgstr "Achgabat" + +#: wp-admin/includes/continents-cities.php:263 +msgid "Ashgabat" +msgstr "Achgabat" + +#: wp-admin/includes/continents-cities.php:262 +msgid "Aqtobe" +msgstr "Aktioubé" + +#: wp-admin/includes/continents-cities.php:261 +msgid "Aqtau" +msgstr "Aqtou" + +#: wp-admin/includes/continents-cities.php:260 +msgid "Anadyr" +msgstr "Anadyr" + +#: wp-admin/includes/continents-cities.php:259 +msgid "Amman" +msgstr "Amman" + +#: wp-admin/includes/continents-cities.php:258 +msgid "Almaty" +msgstr "Almaty" + +#: wp-admin/includes/continents-cities.php:257 +msgid "Aden" +msgstr "Aden" + +#: wp-admin/includes/continents-cities.php:256 +msgid "Asia" +msgstr "Asie" + +#: wp-admin/includes/continents-cities.php:254 +msgid "Longyearbyen" +msgstr "Longyearbyen" + +#: wp-admin/includes/continents-cities.php:253 +msgid "Arctic" +msgstr "Arctique" + +#: wp-admin/includes/continents-cities.php:251 +msgid "Vostok" +msgstr "Vostok" + +#: wp-admin/includes/continents-cities.php:250 +msgid "Troll" +msgstr "Troll" + +#: wp-admin/includes/continents-cities.php:249 +msgid "Syowa" +msgstr "Syowa" + +#: wp-admin/includes/continents-cities.php:248 +msgid "South Pole" +msgstr "Pôle Sud" + +#: wp-admin/includes/continents-cities.php:247 +msgid "Rothera" +msgstr "Rothera" + +#: wp-admin/includes/continents-cities.php:246 +msgid "Palmer" +msgstr "Palmer" + +#: wp-admin/includes/continents-cities.php:245 +msgid "McMurdo" +msgstr "McMurdo" + +#: wp-admin/includes/continents-cities.php:244 +msgid "Mawson" +msgstr "Mawson" + +#: wp-admin/includes/continents-cities.php:243 +msgid "Macquarie" +msgstr "Macquarie" + +#: wp-admin/includes/continents-cities.php:242 +msgid "DumontDUrville" +msgstr "Dumont d'Urville" + +#: wp-admin/includes/continents-cities.php:241 +msgid "Davis" +msgstr "Davis" + +#: wp-admin/includes/continents-cities.php:240 +msgid "Casey" +msgstr "Casey" + +#: wp-admin/includes/continents-cities.php:239 +msgid "Antarctica" +msgstr "Antartique" + +#: wp-admin/includes/continents-cities.php:237 +msgid "Yellowknife" +msgstr "Yellowknife" + +#: wp-admin/includes/continents-cities.php:236 +msgid "Yakutat" +msgstr "Yakutat" + +#: wp-admin/includes/continents-cities.php:235 +msgid "Winnipeg" +msgstr "Winnipeg" + +#: wp-admin/includes/continents-cities.php:234 +msgid "Whitehorse" +msgstr "Whitehorse" + +#: wp-admin/includes/continents-cities.php:233 +msgid "Virgin" +msgstr "Virgin" + +#: wp-admin/includes/continents-cities.php:232 +msgid "Vancouver" +msgstr "Vancouver" + +#: wp-admin/includes/continents-cities.php:231 +msgid "Tortola" +msgstr "Tortola" + +#: wp-admin/includes/continents-cities.php:230 +msgid "Toronto" +msgstr "Toronto" + +#: wp-admin/includes/continents-cities.php:229 +msgid "Tijuana" +msgstr "Tijuana" + +#: wp-admin/includes/continents-cities.php:228 +msgid "Thunder Bay" +msgstr "Thunder Bay" + +#: wp-admin/includes/continents-cities.php:227 +msgid "Thule" +msgstr "Thule" + +#: wp-admin/includes/continents-cities.php:226 +msgid "Tegucigalpa" +msgstr "Tegucigalpa" + +#: wp-admin/includes/continents-cities.php:225 +msgid "Swift Current" +msgstr "Swift Current" + +#: wp-admin/includes/continents-cities.php:224 +msgid "St Vincent" +msgstr "Saint Vincent" + +#: wp-admin/includes/continents-cities.php:223 +msgid "St Thomas" +msgstr "Saint Thomas" + +#: wp-admin/includes/continents-cities.php:222 +msgid "St Lucia" +msgstr "Sainte-Lucie" + +#: wp-admin/includes/continents-cities.php:221 +msgid "St Kitts" +msgstr "Île Saint-Christophe" + +#: wp-admin/includes/continents-cities.php:220 +msgid "St Johns" +msgstr "Saint John's" + +#: wp-admin/includes/continents-cities.php:219 +msgid "St Barthelemy" +msgstr "Saint-Barthélemy" + +#: wp-admin/includes/continents-cities.php:218 +msgid "Sitka" +msgstr "Sitka" + +#: wp-admin/includes/continents-cities.php:217 +msgid "Shiprock" +msgstr "Shiprock" + +#: wp-admin/includes/continents-cities.php:216 +msgid "Scoresbysund" +msgstr "Ittoqqortoormiit (Scoresbysund)" + +#: wp-admin/includes/continents-cities.php:215 +msgid "Sao Paulo" +msgstr "São Paulo" + +#: wp-admin/includes/continents-cities.php:214 +msgid "Santo Domingo" +msgstr "Saint-Domingue" + +#: wp-admin/includes/continents-cities.php:213 +msgid "Santiago" +msgstr "Santiago du Chili" + +#: wp-admin/includes/continents-cities.php:212 +msgid "Santarem" +msgstr "Santarém" + +#: wp-admin/includes/continents-cities.php:211 +msgid "Santa Isabel" +msgstr "Santa Isabel" + +#: wp-admin/includes/continents-cities.php:210 +msgid "Rosario" +msgstr "Rosario" + +#: wp-admin/includes/continents-cities.php:209 +msgid "Rio Branco" +msgstr "Rio Branco" + +#: wp-admin/includes/continents-cities.php:208 +msgid "Resolute" +msgstr "Resolute" + +#: wp-admin/includes/continents-cities.php:207 +msgid "Regina" +msgstr "Regina" + +#: wp-admin/includes/continents-cities.php:206 +msgid "Recife" +msgstr "Recife" + +#: wp-admin/includes/continents-cities.php:205 +msgid "Rankin Inlet" +msgstr "Kangiqtiniq (Rankin Inlet)" + +#: wp-admin/includes/continents-cities.php:204 +msgid "Rainy River" +msgstr "Rainy River" + +#: wp-admin/includes/continents-cities.php:203 +msgid "Puerto Rico" +msgstr "Porto Rico" + +#: wp-admin/includes/continents-cities.php:202 +msgid "Porto Velho" +msgstr "Porto Velho" + +#: wp-admin/includes/continents-cities.php:201 +msgid "Porto Acre" +msgstr "Porto Acre" + +#: wp-admin/includes/continents-cities.php:200 +msgid "Port-au-Prince" +msgstr "Port-au-Prince" + +#: wp-admin/includes/continents-cities.php:199 +msgid "Port of Spain" +msgstr "Port-d'Espagne" + +#: wp-admin/includes/continents-cities.php:198 +msgid "Phoenix" +msgstr "Phoenix" + +#: wp-admin/includes/continents-cities.php:197 +msgid "Paramaribo" +msgstr "Paramaribo" + +#: wp-admin/includes/continents-cities.php:196 +msgid "Pangnirtung" +msgstr "Pangnirtung" + +#: wp-admin/includes/continents-cities.php:195 +msgid "Panama" +msgstr "Panama" + +#: wp-admin/includes/continents-cities.php:194 +msgid "Ojinaga" +msgstr "Ojinaga" + +#: wp-admin/includes/continents-cities.php:193 +msgid "New Salem" +msgstr "New Salem" + +#: wp-admin/includes/continents-cities.php:192 +msgid "Center" +msgstr "Center" + +#: wp-admin/includes/continents-cities.php:191 +msgid "Beulah" +msgstr "Beulah" + +#: wp-admin/includes/continents-cities.php:190 +msgid "North Dakota" +msgstr "Dakota du Nord" + +#: wp-admin/includes/continents-cities.php:189 +msgid "Noronha" +msgstr "Noronha" + +#: wp-admin/includes/continents-cities.php:188 +msgid "Nome" +msgstr "Nome" + +#: wp-admin/includes/continents-cities.php:187 +msgid "Nipigon" +msgstr "Nipigon" + +#: wp-admin/includes/continents-cities.php:186 +msgid "New York" +msgstr "New York" + +#: wp-admin/includes/continents-cities.php:185 +msgid "Nassau" +msgstr "Nassau" + +#: wp-admin/includes/continents-cities.php:184 +msgid "Montserrat" +msgstr "Montserrat" + +#: wp-admin/includes/continents-cities.php:183 +msgid "Montreal" +msgstr "Montréal" + +#: wp-admin/includes/continents-cities.php:182 +msgid "Montevideo" +msgstr "Montévidéo" + +#: wp-admin/includes/continents-cities.php:181 +msgid "Monterrey" +msgstr "Monterrey" + +#: wp-admin/includes/continents-cities.php:180 +msgid "Moncton" +msgstr "Moncton" + +#: wp-admin/includes/continents-cities.php:179 +msgid "Miquelon" +msgstr "Miquelon" + +#: wp-admin/includes/continents-cities.php:178 +msgid "Mexico City" +msgstr "Mexico" + +#: wp-admin/includes/continents-cities.php:177 +msgid "Metlakatla" +msgstr "Metlakatla" + +#: wp-admin/includes/continents-cities.php:176 +msgid "Merida" +msgstr "Merida" + +#: wp-admin/includes/continents-cities.php:175 +msgid "Menominee" +msgstr "Menominee" + +#: wp-admin/includes/continents-cities.php:173 +msgid "Mazatlan" +msgstr "Mazatlan" + +#: wp-admin/includes/continents-cities.php:172 +msgid "Matamoros" +msgstr "Matamoros" + +#: wp-admin/includes/continents-cities.php:171 +msgid "Martinique" +msgstr "Martinique" + +#: wp-admin/includes/continents-cities.php:170 +msgid "Marigot" +msgstr "Marigot" + +#: wp-admin/includes/continents-cities.php:169 +msgid "Manaus" +msgstr "Manaos" + +#: wp-admin/includes/continents-cities.php:168 +msgid "Managua" +msgstr "Managua" + +#: wp-admin/includes/continents-cities.php:167 +msgid "Maceio" +msgstr "Maceió" + +#: wp-admin/includes/continents-cities.php:166 +msgid "Lower Princes" +msgstr "Lower Princes" + +#: wp-admin/includes/continents-cities.php:164 +msgid "Los Angeles" +msgstr "Los Angeles" + +#: wp-admin/includes/continents-cities.php:163 +msgid "Lima" +msgstr "Lima" + +#: wp-admin/includes/continents-cities.php:162 +msgid "La Paz" +msgstr "La Paz" + +#: wp-admin/includes/continents-cities.php:161 +msgid "Kralendijk" +msgstr "Kralendijk" + +#: wp-admin/includes/continents-cities.php:160 +msgid "Knox IN" +msgstr "Knox (Indiana)" + +#: wp-admin/includes/continents-cities.php:159 +msgid "Monticello" +msgstr "Monticello" + +#: wp-admin/includes/continents-cities.php:158 +#: wp-admin/includes/continents-cities.php:165 +msgid "Louisville" +msgstr "Louisville" + +#: wp-admin/includes/continents-cities.php:157 +msgid "Kentucky" +msgstr "Kentucky" + +#: wp-admin/includes/continents-cities.php:156 +msgid "Juneau" +msgstr "Juneau" + +#: wp-admin/includes/continents-cities.php:154 +msgid "Jamaica" +msgstr "Jamaïque" + +#: wp-admin/includes/continents-cities.php:153 +msgid "Iqaluit" +msgstr "Iqaluit" + +#: wp-admin/includes/continents-cities.php:152 +msgid "Inuvik" +msgstr "Inuvik" + +#: wp-admin/includes/continents-cities.php:150 +msgid "Winamac" +msgstr "Winamac" + +#: wp-admin/includes/continents-cities.php:149 +msgid "Vincennes" +msgstr "Vincennes" + +#: wp-admin/includes/continents-cities.php:148 +msgid "Vevay" +msgstr "Vevay" + +#: wp-admin/includes/continents-cities.php:147 +msgid "Tell City" +msgstr "Tell City" + +#: wp-admin/includes/continents-cities.php:146 +msgid "Petersburg" +msgstr "Petersburg" + +#: wp-admin/includes/continents-cities.php:145 +msgid "Marengo" +msgstr "Marengo" + +#: wp-admin/includes/continents-cities.php:144 +msgid "Knox" +msgstr "Knox" + +#: wp-admin/includes/continents-cities.php:143 +#: wp-admin/includes/continents-cities.php:151 +msgid "Indianapolis" +msgstr "Indianapolis" + +#: wp-admin/includes/continents-cities.php:142 +msgid "Indiana" +msgstr "Indiana" + +#: wp-admin/includes/continents-cities.php:141 +msgid "Hermosillo" +msgstr "Hermosillo" + +#: wp-admin/includes/continents-cities.php:140 +msgid "Havana" +msgstr "La Havane" + +#: wp-admin/includes/continents-cities.php:139 +msgid "Halifax" +msgstr "Halifax" + +#: wp-admin/includes/continents-cities.php:138 +msgid "Guyana" +msgstr "Guyane" + +#: wp-admin/includes/continents-cities.php:137 +msgid "Guayaquil" +msgstr "Guayaquil" + +#: wp-admin/includes/continents-cities.php:136 +msgid "Guatemala" +msgstr "Guatemala" + +#: wp-admin/includes/continents-cities.php:135 +msgid "Guadeloupe" +msgstr "Guadeloupe" + +#: wp-admin/includes/continents-cities.php:134 +msgid "Grenada" +msgstr "Grenade" + +#: wp-admin/includes/continents-cities.php:133 +msgid "Grand Turk" +msgstr "Grand Turk" + +#: wp-admin/includes/continents-cities.php:132 +msgid "Goose Bay" +msgstr "Goose Bay" + +#: wp-admin/includes/continents-cities.php:131 +msgid "Godthab" +msgstr "Nuuk (Godthåb)" + +#: wp-admin/includes/continents-cities.php:130 +msgid "Glace Bay" +msgstr "Glace Bay" + +#: wp-admin/includes/continents-cities.php:129 +msgid "Fortaleza" +msgstr "Fortaleza" + +#: wp-admin/includes/continents-cities.php:128 +msgid "Fort Wayne" +msgstr "Fort Wayne" + +#: wp-admin/includes/continents-cities.php:127 +msgid "Fort Nelson" +msgstr "Fort Nelson" + +#: wp-admin/includes/continents-cities.php:126 +msgid "Ensenada" +msgstr "Ensenada" + +#: wp-admin/includes/continents-cities.php:125 +msgid "El Salvador" +msgstr "Salvador" + +#: wp-admin/includes/continents-cities.php:124 +msgid "Eirunepe" +msgstr "Eirunepé" + +#: wp-admin/includes/continents-cities.php:123 +msgid "Edmonton" +msgstr "Edmonton" + +#: wp-admin/includes/continents-cities.php:122 +msgid "Dominica" +msgstr "Dominique" + +#: wp-admin/includes/continents-cities.php:121 +msgid "Detroit" +msgstr "Detroit" + +#: wp-admin/includes/continents-cities.php:120 +msgid "Denver" +msgstr "Denver" + +#: wp-admin/includes/continents-cities.php:119 +msgid "Dawson Creek" +msgstr "Dawson Creek" + +#: wp-admin/includes/continents-cities.php:118 +msgid "Dawson" +msgstr "Dawson" + +#: wp-admin/includes/continents-cities.php:117 +msgid "Danmarkshavn" +msgstr "Danmarkshavn" + +#: wp-admin/includes/continents-cities.php:116 +msgid "Curacao" +msgstr "Curaçao" + +#: wp-admin/includes/continents-cities.php:115 +msgid "Cuiaba" +msgstr "Cuiabá" + +#: wp-admin/includes/continents-cities.php:114 +msgid "Creston" +msgstr "Creston" + +#: wp-admin/includes/continents-cities.php:113 +msgid "Costa Rica" +msgstr "Costa Rica" + +#: wp-admin/includes/continents-cities.php:111 +msgid "Coral Harbour" +msgstr "Coral Harbour" + +#: wp-admin/includes/continents-cities.php:110 +msgid "Chihuahua" +msgstr "Etat de Chihuahua" + +#: wp-admin/includes/continents-cities.php:109 +msgid "Chicago" +msgstr "Chicago" + +#: wp-admin/includes/continents-cities.php:108 +msgid "Cayman" +msgstr "Îles Caïmans" + +#: wp-admin/includes/continents-cities.php:107 +msgid "Cayenne" +msgstr "Cayenne" + +#: wp-admin/includes/continents-cities.php:105 +msgid "Caracas" +msgstr "Caracas" + +#: wp-admin/includes/continents-cities.php:104 +msgid "Cancun" +msgstr "Cancún" + +#: wp-admin/includes/continents-cities.php:103 +msgid "Campo Grande" +msgstr "Campo Grande" + +#: wp-admin/includes/continents-cities.php:102 +msgid "Cambridge Bay" +msgstr "Ikaluktutiak" + +#: wp-admin/includes/continents-cities.php:100 +msgid "Boise" +msgstr "Boise" + +#: wp-admin/includes/continents-cities.php:99 +msgid "Bogota" +msgstr "Bogotá" + +#: wp-admin/includes/continents-cities.php:98 +msgid "Boa Vista" +msgstr "Boa Vista" + +#: wp-admin/includes/continents-cities.php:97 +msgid "Blanc-Sablon" +msgstr "Blanc-Sablon" + +#: wp-admin/includes/continents-cities.php:96 +msgid "Belize" +msgstr "Belize" + +#: wp-admin/includes/continents-cities.php:95 +msgid "Belem" +msgstr "Belém" + +#: wp-admin/includes/continents-cities.php:94 +msgid "Barbados" +msgstr "Barbade" + +#: wp-admin/includes/continents-cities.php:93 +msgid "Bahia Banderas" +msgstr "Bahía de Banderas" + +#: wp-admin/includes/continents-cities.php:92 +msgid "Bahia" +msgstr "Bahia" + +#: wp-admin/includes/continents-cities.php:91 +msgid "Atka" +msgstr "Atka" + +#: wp-admin/includes/continents-cities.php:90 +msgid "Atikokan" +msgstr "Atikokan" + +#: wp-admin/includes/continents-cities.php:89 +msgid "Asuncion" +msgstr "Asunción" + +#: wp-admin/includes/continents-cities.php:88 +msgid "Aruba" +msgstr "Aruba" + +#: wp-admin/includes/continents-cities.php:87 +msgid "Ushuaia" +msgstr "Ushuaïa" + +#: wp-admin/includes/continents-cities.php:86 +msgid "Tucuman" +msgstr "San Miguel de Tucumán" + +#: wp-admin/includes/continents-cities.php:85 +msgid "San Luis" +msgstr "San Luis" + +#: wp-admin/includes/continents-cities.php:84 +msgid "San Juan" +msgstr "San Juan" + +#: wp-admin/includes/continents-cities.php:83 +msgid "Salta" +msgstr "Salta" + +#: wp-admin/includes/continents-cities.php:82 +msgid "Rio Gallegos" +msgstr "Rio Gallegos" + +#: wp-admin/includes/continents-cities.php:81 +#: wp-admin/includes/continents-cities.php:174 +msgid "Mendoza" +msgstr "Mendoza" + +#: wp-admin/includes/continents-cities.php:80 +msgid "La Rioja" +msgstr "La Rioja" + +#: wp-admin/includes/continents-cities.php:79 +#: wp-admin/includes/continents-cities.php:155 +msgid "Jujuy" +msgstr "San Salvador de Jujuy" + +#: wp-admin/includes/continents-cities.php:78 +#: wp-admin/includes/continents-cities.php:112 +msgid "Cordoba" +msgstr "Córdoba" + +#: wp-admin/includes/continents-cities.php:77 +msgid "ComodRivadavia" +msgstr "Comodoro Rivadavia" + +#: wp-admin/includes/continents-cities.php:76 +#: wp-admin/includes/continents-cities.php:106 +msgid "Catamarca" +msgstr "Catamarca" + +#: wp-admin/includes/continents-cities.php:75 +#: wp-admin/includes/continents-cities.php:101 +msgid "Buenos Aires" +msgstr "Buenos Aires" + +#: wp-admin/includes/continents-cities.php:74 +msgid "Argentina" +msgstr "Argentine" + +#: wp-admin/includes/continents-cities.php:73 +msgid "Araguaina" +msgstr "Araguaína" + +#: wp-admin/includes/continents-cities.php:72 +msgid "Antigua" +msgstr "Antigua" + +#: wp-admin/includes/continents-cities.php:71 +msgid "Anguilla" +msgstr "Anguilla" + +#: wp-admin/includes/continents-cities.php:70 +msgid "Anchorage" +msgstr "Anchorage" + +#: wp-admin/includes/continents-cities.php:69 +msgid "Adak" +msgstr "Adak" + +#: wp-admin/includes/continents-cities.php:68 +msgid "America" +msgstr "Amériques" + +#: wp-admin/includes/continents-cities.php:66 +msgid "Windhoek" +msgstr "Windhoek" + +#: wp-admin/includes/continents-cities.php:65 +msgid "Tunis" +msgstr "Tunis" + +#: wp-admin/includes/continents-cities.php:64 +msgid "Tripoli" +msgstr "Tripoli" + +#: wp-admin/includes/continents-cities.php:63 +msgid "Timbuktu" +msgstr "Tombouctou" + +#: wp-admin/includes/continents-cities.php:62 +msgid "Sao Tome" +msgstr "São Tomé" + +#: wp-admin/includes/continents-cities.php:61 +msgid "Porto-Novo" +msgstr "Porto-Novo" + +#: wp-admin/includes/continents-cities.php:60 +msgid "Ouagadougou" +msgstr "Ouagadougou" + +#: wp-admin/includes/continents-cities.php:59 +msgid "Nouakchott" +msgstr "Nouakchott" + +#: wp-admin/includes/continents-cities.php:58 +msgid "Niamey" +msgstr "Niamey" + +#: wp-admin/includes/continents-cities.php:57 +msgid "Ndjamena" +msgstr "N'Djamena" + +#: wp-admin/includes/continents-cities.php:56 +msgid "Nairobi" +msgstr "Nairobi" + +#: wp-admin/includes/continents-cities.php:55 +msgid "Monrovia" +msgstr "Monrovia" + +#: wp-admin/includes/continents-cities.php:54 +msgid "Mogadishu" +msgstr "Mogadiscio" + +#: wp-admin/includes/continents-cities.php:53 +msgid "Mbabane" +msgstr "Mbabane" + +#: wp-admin/includes/continents-cities.php:52 +msgid "Maseru" +msgstr "Maseru" + +#: wp-admin/includes/continents-cities.php:51 +msgid "Maputo" +msgstr "Maputo" + +#: wp-admin/includes/continents-cities.php:50 +msgid "Malabo" +msgstr "Malabo" + +#: wp-admin/includes/continents-cities.php:49 +msgid "Lusaka" +msgstr "Lusaka" + +#: wp-admin/includes/continents-cities.php:48 +msgid "Lubumbashi" +msgstr "Lubumbashi" + +#: wp-admin/includes/continents-cities.php:47 +msgid "Luanda" +msgstr "Luanda" + +#: wp-admin/includes/continents-cities.php:46 +msgid "Lome" +msgstr "Lomé" + +#: wp-admin/includes/continents-cities.php:45 +msgid "Libreville" +msgstr "Libreville" + +#: wp-admin/includes/continents-cities.php:44 +msgid "Lagos" +msgstr "Lagos" + +#: wp-admin/includes/continents-cities.php:43 +msgid "Kinshasa" +msgstr "Kinshasa" + +#: wp-admin/includes/continents-cities.php:42 +msgid "Kigali" +msgstr "Kigali" + +#: wp-admin/includes/continents-cities.php:41 +msgid "Khartoum" +msgstr "Khartoum" + +#: wp-admin/includes/continents-cities.php:40 +msgid "Kampala" +msgstr "Kampala" + +#: wp-admin/includes/continents-cities.php:39 +msgid "Juba" +msgstr "Djouba" + +#: wp-admin/includes/continents-cities.php:38 +msgid "Johannesburg" +msgstr "Johannesburg" + +#: wp-admin/includes/continents-cities.php:37 +msgid "Harare" +msgstr "Harare" + +#: wp-admin/includes/continents-cities.php:36 +msgid "Gaborone" +msgstr "Gaborone" + +#: wp-admin/includes/continents-cities.php:35 +msgid "Freetown" +msgstr "Freetown" + +#: wp-admin/includes/continents-cities.php:34 +msgid "El Aaiun" +msgstr "Laâyoune" + +#: wp-admin/includes/continents-cities.php:33 +msgid "Douala" +msgstr "Douala" + +#: wp-admin/includes/continents-cities.php:32 +msgid "Djibouti" +msgstr "Djibouti" + +#: wp-admin/includes/continents-cities.php:31 +msgid "Dar es Salaam" +msgstr "Dar es Salaam" + +#: wp-admin/includes/continents-cities.php:30 +msgid "Dakar" +msgstr "Dakar" + +#: wp-admin/includes/continents-cities.php:29 +msgid "Conakry" +msgstr "Conakry" + +#: wp-admin/includes/continents-cities.php:28 +msgid "Ceuta" +msgstr "Ceuta" + +#: wp-admin/includes/continents-cities.php:27 +msgid "Casablanca" +msgstr "Casablanca" + +#: wp-admin/includes/continents-cities.php:26 +msgid "Cairo" +msgstr "Le Caire" + +#: wp-admin/includes/continents-cities.php:25 +msgid "Bujumbura" +msgstr "Bujumbura" + +#: wp-admin/includes/continents-cities.php:24 +msgid "Brazzaville" +msgstr "Brazzaville" + +#: wp-admin/includes/continents-cities.php:23 +msgid "Blantyre" +msgstr "Blantyre" + +#: wp-admin/includes/continents-cities.php:22 +msgid "Bissau" +msgstr "Bissau" + +#: wp-admin/includes/continents-cities.php:21 +msgid "Banjul" +msgstr "Banjul" + +#: wp-admin/includes/continents-cities.php:20 +msgid "Bangui" +msgstr "Bangui" + +#: wp-admin/includes/continents-cities.php:19 +msgid "Bamako" +msgstr "Bamako" + +#: wp-admin/includes/continents-cities.php:18 +msgid "Asmera" +msgstr "Asmara" + +#: wp-admin/includes/continents-cities.php:17 +msgid "Asmara" +msgstr "Asmara" + +#: wp-admin/includes/continents-cities.php:16 +msgid "Algiers" +msgstr "Alger" + +#: wp-admin/includes/continents-cities.php:15 +msgid "Addis Ababa" +msgstr "Addis-Abeba" + +#: wp-admin/includes/continents-cities.php:14 +msgid "Accra" +msgstr "Accra" + +#: wp-admin/includes/continents-cities.php:13 +msgid "Abidjan" +msgstr "Abidjan" + +#: wp-admin/includes/continents-cities.php:12 +msgid "Africa" +msgstr "Afrique" diff --git a/console/skel/wordpress/wp-content/languages/fr_FR.mo b/console/skel/wordpress/wp-content/languages/fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..3e52b7e5af1ae63ddd9c05e6a6f18ca857bde6a1 GIT binary patch literal 229472 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 1;\n" +"X-Generator: GlotPress/2.4.0-alpha\n" +"Language: fr\n" +"Project-Id-Version: WordPress - 4.7.x\n" + +#: wp-trackback.php:125 +msgid "We already have a ping from that URL for this post." +msgstr "Nous avons déjà un ping de cette adresse web pour cet article. " + +#: wp-trackback.php:111 +msgid "Sorry, trackbacks are closed for this item." +msgstr "Désolé, mais les rétroliens sont fermés pour ce contenu." + +#: wp-trackback.php:85 +msgid "I really need an ID for this to work." +msgstr "J’ai vraiment besoin d’un identifiant pour que cela fonctionne." + +#. translators: %s: site address +#: wp-signup.php:885 +msgid "The site you were looking for, %s, does not exist." +msgstr "Le site que vous cherchez (%s) n’existe pas." + +#. translators: %s: site address +#: wp-signup.php:880 +msgid "The site you were looking for, %s, does not exist, but you can create it now!" +msgstr "Le site que vous cherchez (%s) n’existe pas, mais vous pouvez le créer dès à présent !" + +#: wp-signup.php:873 +msgid "You are logged in already. No need to register again!" +msgstr "Vous êtes déjà connecté. Inutile de vous inscrire à nouveau !" + +#: wp-signup.php:871 +msgid "Sorry, new registrations are not allowed at this time." +msgstr "Désolé, il n’est pas possible de s’enregistrer à l’heure actuelle." + +#: wp-signup.php:852 +msgid "Site registration has been disabled." +msgstr "Les inscriptions de sites sont désactivées." + +#: wp-signup.php:846 +msgid "User registration has been disabled." +msgstr "Les inscriptions d’utilisateurs sont désactivées." + +#. translators: %s: login URL +#: wp-signup.php:838 +msgid "You must first log in, and then you can create a new site." +msgstr "Vous devez d’abord vous connecter avant de pouvoir créer un nouveau site." + +#: wp-signup.php:834 +msgid "Registration has been disabled." +msgstr "Les inscriptions ont été désactivées." + +#. translators: 1: type of site sign-up; 2: network settings URL +#: wp-signup.php:827 +msgid "Greetings Site Administrator! You are currently allowing “%s” registrations. To change or disable registration go to your Options page." +msgstr "Salutations, cher administrateur du site ! Vous acceptez actuellement les inscriptions de type « %s ». Pour modifier ou désactiver les inscriptions, allez sur votre page d’options." + +#: wp-signup.php:823 +msgctxt "Multisite active signup type" +msgid "user" +msgstr "utilisateur" + +#: wp-signup.php:822 +msgctxt "Multisite active signup type" +msgid "blog" +msgstr "site" + +#: wp-signup.php:821 +msgctxt "Multisite active signup type" +msgid "none" +msgstr "aucune" + +#: wp-signup.php:820 +msgctxt "Multisite active signup type" +msgid "all" +msgstr "tous" + +#. translators: %s: email address +#: wp-signup.php:764 +msgid "Have you entered your email correctly? You have entered %s, if it’s incorrect, you will not receive your email." +msgstr "Avez-vous correctement saisi votre adresse de messagerie ? Vous aviez saisi %s, mais si ce n’est pas correct, vous ne recevrez pas de message." + +#: wp-signup.php:761 +msgid "Check the junk or spam folder of your email client. Sometime emails wind up there by mistake." +msgstr "Vérifiez le courrier indésirable (ou dossier spam) de votre client de messagerie. Parfois, certains messages arrivent là par erreur." + +#: wp-signup.php:760 +msgid "Wait a little longer. Sometimes delivery of email can be delayed by processes outside of our control." +msgstr "Veuillez patienter encore quelques instants. Parfois, la livraison des messages peut être retardée par des processus en dehors de notre contrôle." + +#: wp-signup.php:758 +msgid "If you haven’t received your email yet, there are a number of things you can do:" +msgstr "Si vous n’avez encore pas reçu votre e-mail, il existe un certain nombre de choses que vous pouvez faire :" + +#: wp-signup.php:756 +msgid "Still waiting for your email?" +msgstr "Toujours dans l’attente de votre e-mail ?" + +#: wp-signup.php:755 +msgid "If you do not activate your site within two days, you will have to sign up again." +msgstr "Si vous n’activez pas votre site dans les deux jours, vous devrez à nouveau l’enregistrer." + +#: wp-signup.php:752 +msgid "But, before you can start using your site, you must activate it." +msgstr "Mais, avant d’utiliser votre nouveau site, vous devez l’activer." + +#. translators: %s: site address +#: wp-signup.php:750 +msgid "Congratulations! Your new site, %s, is almost ready." +msgstr "Félicitations! Votre nouveau site, %s, est presque prêt." + +#: wp-signup.php:673 +msgid "Signup" +msgstr "Inscription" + +#: wp-signup.php:609 +msgid "If you do not activate your username within two days, you will have to sign up again." +msgstr "Si vous n’activez pas votre compte sous deux jours, vous devrez vous réinscrire." + +#. translators: %s: email address +#: wp-signup.php:608 wp-signup.php:754 +msgid "Check your inbox at %s and click the link given." +msgstr "Veuillez vérifier votre boite de réception à l’adresse %s et cliquer sur le lien reçu." + +#: wp-signup.php:606 +msgid "But, before you can start using your new username, you must activate it." +msgstr "Mais, avant d’utiliser votre nouvel identifiant, vous devez l’activer." + +#. translators: %s: username +#: wp-signup.php:605 +msgid "%s is your new username" +msgstr "Votre nouvel identifiant est %s" + +#: wp-signup.php:555 +msgid "Just a username, please." +msgstr "Juste l’identifiant, s’il vous plaît." + +#: wp-signup.php:552 +msgid "Gimme a site!" +msgstr "Donnez-moi un site !" + +#. translators: %s: name of the network +#: wp-signup.php:535 +msgid "Get your own %s account in seconds" +msgstr "Obtenez votre propre compte %s en quelques secondes" + +#. translators: 1: home URL, 2: site address, 3: login URL, 4: username +#: wp-signup.php:474 +msgid "%2$s is your new site. Log in as “%4$s” using your existing password." +msgstr "http://%2$s est votre nouveau site. Connectez-vous avec l’identifiant « %4$s », à l’aide de votre mot de passe actuel." + +#. translators: %s: site name +#: wp-signup.php:469 +msgid "The site %s is yours." +msgstr "Le site %s est à vous." + +#: wp-signup.php:343 +msgid "Create Site" +msgstr "Créer un site" + +#: wp-signup.php:328 +msgid "If you’re not going to use a great site domain, leave it for a new user. Now have at it!" +msgstr "Si vous ne comptez pas utiliser ce superbe nom de domaine, laissez-le à un autre utilisateur. Et maintenant, lancez-vous !" + +#: wp-signup.php:319 +msgid "Sites you are already a member of:" +msgstr "Les sites que vous possédez déjà :" + +#: wp-signup.php:313 +msgid "Welcome back, %s. By filling out the form below, you can add another site to your account. There is no limit to the number of sites you can have, so create to your heart’s content, but write responsibly!" +msgstr "Heureux de vous revoir, %s ! En remplissant le formulaire ci-dessous, vous pouvez ajouter un autre site à votre compte. Il n’y a pas de limite au nombre de sites dont vous pouvez disposer, donc créez-en autant que vous le souhaitez, mais écrivez de manière responsable !" + +#: wp-signup.php:310 +msgid "There was a problem, please correct the form below and try again." +msgstr "Il y a eu un problème, veuillez remplir le formulaire ci-dessous et réessayer." + +#: wp-signup.php:307 +msgid "Get another %s site in seconds" +msgstr "Ouvrir un autre site %s en quelques secondes" + +#: wp-signup.php:240 +msgid "We send your registration email to this address. (Double-check your email address before continuing.)" +msgstr "Nous enverrons votre confirmation d’inscription à cette adresse. Vérifiez donc bien qu’elle est correcte avant de continuer." + +#: wp-signup.php:236 +msgid "Email Address:" +msgstr "Adresse e-mail :" + +#: wp-signup.php:233 +msgid "(Must be at least 4 characters, letters and numbers only.)" +msgstr "(Doit contenir au moins 4 caractères, uniquement des lettres ou des chiffres.)" + +#: wp-signup.php:182 +msgid "No" +msgstr "Non" + +#: wp-signup.php:178 +msgid "Yes" +msgstr "Oui" + +#: wp-signup.php:174 +msgid "Allow search engines to index this site." +msgstr "Demander aux moteurs de recherche d’indexer ce site." + +#: wp-signup.php:173 +msgid "Privacy:" +msgstr "Vie privée :" + +#: wp-signup.php:146 +msgid "Site Language:" +msgstr "Langue du site :" + +#: wp-signup.php:132 +msgid "Site Title:" +msgstr "Titre du site :" + +#: wp-signup.php:127 +msgid "Must be at least 4 characters, letters and numbers only. It cannot be changed, so choose carefully!" +msgstr "Doit contenir au moins 4 caractères, avec uniquement des lettres et des chiffres. Vous ne pourrez pas en changer, donc choisissez bien !" + +#. translators: %s: site address +#: wp-signup.php:127 +msgid "Your address will be %s." +msgstr "Votre adresse sera %s." + +#: wp-signup.php:123 +msgid "domain" +msgstr "domaine" + +#: wp-signup.php:121 +msgid "sitename" +msgstr "nomdusite" + +#: wp-signup.php:108 +msgid "Site Domain:" +msgstr "Domaine du site :" + +#: wp-signup.php:106 +msgid "Site Name:" +msgstr "Nom du site :" + +#. translators: %s: the message ID +#: wp-mail.php:246 +msgid "Mission complete. Message %s deleted." +msgstr "Mission accomplie. Message %s supprimé." + +#. translators: %s: POP3 error +#: wp-mail.php:238 +msgid "Oops: %s" +msgstr "Oups : %s" + +#: wp-mail.php:233 +msgid "Posted title:" +msgstr "Titre publié :" + +#: wp-mail.php:232 +msgid "Author:" +msgstr "Auteur :" + +#. translators: Post author email address +#: wp-mail.php:128 +msgid "Author is %s" +msgstr "L’auteur est %s" + +#: wp-mail.php:60 +msgid "There doesn’t seem to be any new mail." +msgstr "Il ne semble pas y avoir de nouveau message." + +#: wp-mail.php:40 +msgid "Slow down cowboy, no need to check for new mails so often!" +msgstr "Lève le pied, champion ! Inutile de vérifier tes e-mails aussi souvent !" + +#: wp-mail.php:15 wp-mail.php:20 +msgid "This action has been disabled by the administrator." +msgstr "Cette action a été désactivée par l’administrateur." + +#: wp-login.php:867 +msgid "You have successfully updated WordPress! Please log back in to see what’s new." +msgstr "WordPress a bien été mis à jour ! Veuillez vous reconnecter pour voir les nouveautés." + +#: wp-login.php:865 +msgid "Registration complete. Please check your email." +msgstr "Enregistrement terminé. Veuillez consulter vos e-mails." + +#: wp-login.php:863 +msgid "Check your email for your new password." +msgstr "Vérifiez votre messagerie pour y trouver votre nouveau mot de passe." + +#: wp-login.php:861 +msgid "Check your email for the confirmation link." +msgstr "Vérifiez votre messagerie pour y trouver le lien de confirmation." + +#: wp-login.php:859 +msgid "User registration is currently not allowed." +msgstr "Les nouvelles inscriptions ne sont pas autorisées pour l’instant." + +#: wp-login.php:857 +msgid "You are now logged out." +msgstr "Votre déconnexion a bien été effectuée." + +#: wp-login.php:853 +msgid "Your session has expired. Please log in to continue where you left off." +msgstr "Votre session a expiré. Veuillez vous reconnecter pour reprendre à la dernière page visitée." + +#: wp-login.php:816 +msgid "You have logged in successfully." +msgstr "Votre connexion a bien été établie." + +#. translators: 1: Browser cookie documentation URL +#: wp-login.php:797 +msgid "ERROR: Cookies are blocked or not supported by your browser. You must enable cookies to use WordPress." +msgstr "ERREUR : les cookies sont bloqués ou ne sont pas reconnus par votre navigateur. Vous devez activer les cookies pour utiliser WordPress." + +#: wp-login.php:793 wp-login.php:798 +msgid "https://codex.wordpress.org/Cookies" +msgstr "https://codex.wordpress.org/Cookies" + +#. translators: 1: Browser cookie documentation URL, 2: Support forums URL +#: wp-login.php:792 +msgid "ERROR: Cookies are blocked due to unexpected output. For help, please see this documentation or try the support forums." +msgstr "ERREUR : les cookies sont bloqués en raison d’un retour inattendu. Pour obtenir de l’aide, veuillez lire cette documentation ou essayez les forums d’entraide." + +#: wp-login.php:737 +msgid "Registration confirmation will be emailed to you." +msgstr "La confirmation d’inscription vous sera envoyée par e-mail." + +#: wp-login.php:722 +msgid "Username" +msgstr "Identifiant" + +#: wp-login.php:718 +msgid "Register For This Site" +msgstr "S’inscrire sur ce site" + +#: wp-login.php:718 +msgid "Registration Form" +msgstr "Formulaire d’inscription" + +#: wp-login.php:641 +msgid "Confirm new password" +msgstr "Confirmer le nouveau mot de passe" + +#: wp-login.php:636 +msgid "Strength indicator" +msgstr "Indicateur de robustesse" + +#: wp-login.php:629 +msgid "New password" +msgstr "Nouveau mot de passe" + +#: wp-login.php:621 +msgid "Enter your new password below." +msgstr "Veuillez saisir votre nouveau mot de passe ci-dessous." + +#: wp-login.php:621 wp-login.php:659 +msgid "Reset Password" +msgstr "Réinitialiser le mot de passe" + +#: wp-login.php:613 +msgid "Your password has been reset." +msgstr "Votre mot de passe a été réinitialisé." + +#: wp-login.php:613 +msgid "Password Reset" +msgstr "Réinitialisation du mot de passe" + +#: wp-login.php:598 +msgid "The passwords do not match." +msgstr "Vos mots de passe ne correspondent pas." + +#: wp-login.php:546 +msgid "Get New Password" +msgstr "Générer un mot de passe" + +#: wp-login.php:527 +msgid "Please enter your username or email address. You will receive a link to create a new password via email." +msgstr "Veuillez saisir votre identifiant ou votre adresse de messagerie. Un lien permettant de créer un nouveau mot de passe vous sera envoyé par e-mail." + +#: wp-login.php:527 +msgid "Lost Password" +msgstr "Mot de passe oublié" + +#: wp-login.php:506 +msgid "Your password reset link has expired. Please request a new link below." +msgstr "Votre lien de réinitialisation de mot de passe semble avoir expiré. Veuillez demander un nouveau lien ci-dessous." + +#: wp-login.php:504 +msgid "Your password reset link appears to be invalid. Please request a new link below." +msgstr "Votre lien de réinitialisation de mot de passe semble ne pas être valide. Veuillez demander un nouveau lien ci-dessous." + +#: wp-login.php:373 +msgid "Possible reason: your host may have disabled the mail() function." +msgstr "Cause possible : votre hébergeur a peut-être désactivé la fonction mail()." + +#: wp-login.php:373 +msgid "The email could not be sent." +msgstr "Le message n’a pas pu être envoyé." + +#. translators: Password reset email subject. 1: Site name +#: wp-login.php:345 +msgid "[%s] Password Reset" +msgstr "[%s] Mot de passe réinitialisé" + +#: wp-login.php:331 +msgid "To reset your password, visit the following address:" +msgstr "Pour renouveler votre mot de passe, cliquez sur le lien suivant :" + +#: wp-login.php:330 +msgid "If this was a mistake, just ignore this email and nothing will happen." +msgstr "S’il s’agit d’une erreur, ignorez ce message et la demande ne sera pas prise en compte." + +#: wp-login.php:327 +msgid "Someone has requested a password reset for the following account:" +msgstr "Quelqu’un a demandé la réinitialisation du mot de passe pour le compte suivant :" + +#: wp-login.php:314 +msgid "ERROR: Invalid username or email." +msgstr "ERREUR : l’identifiant ou l’adresse de messagerie n’est pas valide." + +#: wp-login.php:293 +msgid "ERROR: There is no user registered with that email address." +msgstr "ERREUR : il n’y aucun utilisateur enregistré avec cette adresse de messagerie." + +#: wp-login.php:289 +msgid "ERROR: Enter a username or email address." +msgstr "ERREUR : veuillez saisir une adresse de messagerie ou un identifiant." + +#. translators: %s: site title +#: wp-login.php:230 +msgctxt "site" +msgid "← Back to %s" +msgstr "← Retour vers %s" + +#: wp-login.php:104 +msgid "Powered by WordPress" +msgstr "Propulsé par WordPress" + +#: wp-load.php:90 +msgid "Create a Configuration File" +msgstr "Créer un fichier de configuration" + +#. translators: %s: wp-config.php +#: wp-load.php:87 +msgid "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." +msgstr "Vous pouvez créer un fichier %s par le biais d’une interface web, mais cela ne marche pas pour toutes les configurations de serveur. La manière la plus sûre reste de créer le fichier à la main." + +#: wp-load.php:83 +msgid "https://codex.wordpress.org/Editing_wp-config.php" +msgstr "https://codex.wordpress.org/fr:Modifier_wp-config.php" + +#. translators: %s: Codex URL +#: wp-load.php:82 +msgid "Need more help? We got it." +msgstr "Besoin de plus d’aide ? En voici." + +#. translators: %s: wp-config.php +#: wp-load.php:77 +msgid "There doesn't seem to be a %s file. I need this before we can get started." +msgstr "Il ne semble pas y avoir de fichier %s. J’en ai besoin avant de lancer le processus." + +#. translators: 1: Site name +#: wp-links-opml.php:31 +msgid "Links for %s" +msgstr "Liens pour %s" + +#. translators: 1: WordPress version number, 2: Minimum required MySQL version +#. number +#: wp-includes/wp-db.php:3221 +msgid "ERROR: WordPress %1$s requires MySQL %2$s or higher" +msgstr "ERREUR : WordPress %1$s requiert MySQL %2$s ou une version supérieure." + +#: wp-includes/wp-db.php:1801 wp-includes/wp-db.php:1807 +msgid "Unable to retrieve the error message from MySQL" +msgstr "Impossible de retrouver le message d’erreur depuis MYSQL" + +#: wp-includes/wp-db.php:1699 +msgid "Are you sure that the database server is not under particularly heavy load?" +msgstr "Confirmez-vous que le serveur de la base de données n’est pas en train de plier sous le nombre de requêtes ?" + +#. translators: %s: database host +#: wp-includes/wp-db.php:1693 +msgid "This means that we lost contact with the database server at %s. This could mean your host’s database server is down." +msgstr "Cela signifie que nous avons perdu le contact avec le serveur de base de données à l’adresse %s. Cela peut signifier que le serveur de votre base de données ne fonctionne plus." + +#: wp-includes/wp-db.php:1689 +msgid "Error reconnecting to the database" +msgstr "Erreur de reconnexion à la base de données" + +#. translators: %s: support forums URL +#: wp-includes/wp-db.php:1600 wp-includes/wp-db.php:1704 +msgid "If you’re unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress Support Forums." +msgstr "Si vous n’êtes pas sûr(e) de connaître ces termes, vous devriez probablement contacter votre hébergeur. Si vous avez toujours besoin d’aide, vous pouvez toujours vous rendre sur les forums d’entraide de WordPress." + +#: wp-includes/wp-db.php:1595 wp-includes/wp-db.php:1698 +msgid "Are you sure that the database server is running?" +msgstr "Confirmez-vous que le serveur de la base de données fonctionne correctement ?" + +#: wp-includes/wp-db.php:1594 +msgid "Are you sure that you have typed the correct hostname?" +msgstr "Confirmez-vous avoir saisi le bon nom d’hôte (hostname) ?" + +#: wp-includes/wp-db.php:1593 +msgid "Are you sure you have the correct username and password?" +msgstr "Confirmez-vous utiliser le bon nom d’utilisateur et le bon mot de passe ?" + +#. translators: 1: wp-config.php. 2: database host +#: wp-includes/wp-db.php:1587 +msgid "This either means that the username and password information in your %1$s file is incorrect or we can’t contact the database server at %2$s. This could mean your host’s database server is down." +msgstr "Cela signifie soit que l’identifiant ou le mot de passe dans votre fichier %1$s n’est pas correct, soit que nous ne pouvons pas contacter le serveur de base de données à l’adresse %2$s. Cela peut signifier que votre serveur de base de données est tombé." + +#: wp-includes/wp-db.php:1385 wp-includes/wp-db.php:1402 +msgid "WordPress database error:" +msgstr "Erreur de la base de données WordPress :" + +#. translators: 1: Database error message, 2: SQL query +#: wp-includes/wp-db.php:1372 +msgid "WordPress database error %1$s for query %2$s" +msgstr "Erreur de la base de données WordPress %1$s pour la requête %2$s" + +#. translators: 1: Database error message, 2: SQL query, 3: Name of the calling +#. function +#: wp-includes/wp-db.php:1369 +msgid "WordPress database error %1$s for query %2$s made by %3$s" +msgstr "Erreur de la base de données WordPress %1$s pour la requête %2$s faite par %3$s" + +#: wp-includes/wp-db.php:1297 +msgid "The query argument of %s must have a placeholder." +msgstr "L’argument de requête %s doit avoir un paramètre fictif." + +#. translators: %s: database access abstraction class, usually wpdb or a class +#. extending wpdb +#: wp-includes/wp-db.php:1180 +msgid "%s must set a database connection for use with escaping." +msgstr "%s doit mettre en place une connexion à la base de données pour l’utiliser avec l’échappement" + +#. translators: %s: support forums URL +#: wp-includes/wp-db.php:1128 +msgid "If you don’t know how to set up a database you should contact your host. If all else fails you may find help at the WordPress Support Forums." +msgstr "Si vous ne savez pas comment configurer une base de données, vous devriez contacter votre hébergeur. Pour tout autre problème, vous devriez trouver de l’aide dans les Forums d’entraide de WordPress." + +#. translators: %s: database name +#: wp-includes/wp-db.php:1120 +msgid "On some systems the name of your database is prefixed with your username, so it would be like username_%1$s. Could that be the problem?" +msgstr "Dans certaines configurations système, le nom de la base de données a pour préfixe votre nom d’utilisateur, cela devrait ressembler à nom_d_utilisateur_%1$s. Cela pourrait-il être le problème ?" + +#. translators: 1: database user, 2: database name +#: wp-includes/wp-db.php:1113 +msgid "Does the user %1$s have permission to use the %2$s database?" +msgstr " Est-ce que l’utilisateur %1$s a la permission d’utiliser la base de données %2$s ?" + +#: wp-includes/wp-db.php:1109 +msgid "Are you sure it exists?" +msgstr "Confirmez-vous que cela existe ?" + +#. translators: %s: database name +#: wp-includes/wp-db.php:1104 +msgid "We were able to connect to the database server (which means your username and password is okay) but not able to select the %s database." +msgstr "Nous avons pu nous connecter au serveur de la base données (ce qui signifie que votre nom d’utilisateur et mot de passe sont bons), mais nous n’avons pas pu sélectionner la base de données %s." + +#: wp-includes/wp-db.php:1100 +msgid "Can’t select database" +msgstr "Impossible de sélectionner la base données" + +#: wp-includes/widgets.php:1373 +msgid "Display item date?" +msgstr "Afficher la date de l’élément ?" + +#: wp-includes/widgets.php:1370 +msgid "Display item author if available?" +msgstr "Afficher l’auteur de l’élément si disponible ?" + +#: wp-includes/widgets.php:1367 +msgid "Display item content?" +msgstr "Afficher le contenu de l’élément ?" + +#: wp-includes/widgets.php:1357 +msgid "How many items would you like to display?" +msgstr "Combien d’entrées souhaitez-vous afficher ?" + +#: wp-includes/widgets.php:1354 +msgid "Give the feed a title (optional):" +msgstr "Donnez un titre au flux (facultatif) :" + +#: wp-includes/widgets.php:1351 +msgid "Enter the RSS feed URL here:" +msgstr "Saisissez l’adresse web du flux RSS ici :" + +#: wp-includes/widgets.php:1267 +msgid "Untitled" +msgstr "Sans titre" + +#: wp-includes/widgets.php:1236 wp-includes/widgets.php:1345 +msgid "RSS Error:" +msgstr "Erreur Rss :" + +#. translators: 1: the id argument, 2: sidebar name, 3: recommended id value +#: wp-includes/widgets.php:258 +msgid "No %1$s was set in the arguments array for the \"%2$s\" sidebar. Defaulting to \"%3$s\". Manually set the %1$s to \"%3$s\" to silence this notice and keep existing sidebar content." +msgstr "Aucun %1$s n’a été configuré dans le tableau d’arguments de la colonne latérale « %2$s ». « %3$s » sera utilisé par défaut. Configurez manuellement %1$s avec « %3$s » pour faire disparaître cette notification et conserver le contenu actuel de la colonne latérale." + +#: wp-includes/widgets.php:175 +msgid "Sidebar" +msgstr "Colonne latérale" + +#: wp-includes/widgets.php:173 wp-includes/widgets.php:244 +msgid "Sidebar %d" +msgstr "Colonne latérale %d" + +#: wp-includes/widgets/class-wp-widget-text.php:115 +msgid "Automatically add paragraphs" +msgstr "Créer automatiquement les paragraphes" + +#: wp-includes/widgets/class-wp-widget-text.php:112 +msgid "Content:" +msgstr "Contenu :" + +#: wp-includes/widgets/class-wp-widget-text.php:32 +msgid "Text" +msgstr "Texte" + +#: wp-includes/widgets/class-wp-widget-text.php:28 +msgid "Arbitrary text or HTML." +msgstr "Texte arbitraire ou HTML." + +#: wp-includes/widgets/class-wp-widget-tag-cloud.php:152 +msgid "Taxonomy:" +msgstr "Taxonomie :" + +#: wp-includes/widgets/class-wp-widget-tag-cloud.php:135 +msgid "The tag cloud will not be displayed since there are no taxonomies that support the tag cloud widget." +msgstr "Le nuage d’étiquettes ne sera pas affiché étant donné qu’il n’y a pas de taxinomie qui reconnaisse le widget de nuage d’étiquettes." + +#: wp-includes/widgets/class-wp-widget-tag-cloud.php:49 +msgid "Tags" +msgstr "Étiquettes" + +#: wp-includes/widgets/class-wp-widget-tag-cloud.php:30 +msgid "Tag Cloud" +msgstr "Nuage d’étiquettes" + +#: wp-includes/widgets/class-wp-widget-tag-cloud.php:27 +msgid "A cloud of your most used tags." +msgstr "Un nuage de vos étiquettes les plus utilisées." + +#: wp-includes/widgets/class-wp-widget-search.php:31 +msgctxt "Search widget" +msgid "Search" +msgstr "Rechercher" + +#: wp-includes/widgets/class-wp-widget-search.php:28 +msgid "A search form for your site." +msgstr "Un formulaire de recherche pour votre site." + +#: wp-includes/widgets/class-wp-widget-rss.php:74 +msgid "Unknown Feed" +msgstr "Flux inconnu" + +#: wp-includes/widgets/class-wp-widget-rss.php:31 +msgid "RSS" +msgstr "Flux" + +#: wp-includes/widgets/class-wp-widget-rss.php:27 +msgid "Entries from any RSS or Atom feed." +msgstr "Les entrées depuis n’importe quel flux RSS ou Atom." + +#: wp-includes/widgets/class-wp-widget-recent-posts.php:139 +msgid "Display post date?" +msgstr "Afficher la date du contenu ?" + +#: wp-includes/widgets/class-wp-widget-recent-posts.php:135 +msgid "Number of posts to show:" +msgstr "Nombre d’articles à afficher :" + +#: wp-includes/widgets/class-wp-widget-recent-posts.php:31 +#: wp-includes/widgets/class-wp-widget-recent-posts.php:50 +msgid "Recent Posts" +msgstr "Articles récents" + +#: wp-includes/widgets/class-wp-widget-recent-posts.php:28 +msgid "Your site’s most recent Posts." +msgstr "Les articles les plus récents de votre site." + +#: wp-includes/widgets/class-wp-widget-recent-comments.php:162 +msgid "Number of comments to show:" +msgstr "Nombre de commentaires à afficher :" + +#. translators: comments widget: 1: comment author, 2: post link +#: wp-includes/widgets/class-wp-widget-recent-comments.php:116 +msgctxt "widgets" +msgid "%1$s on %2$s" +msgstr "%1$s dans %2$s" + +#: wp-includes/widgets/class-wp-widget-recent-comments.php:31 +#: wp-includes/widgets/class-wp-widget-recent-comments.php:78 +msgid "Recent Comments" +msgstr "Commentaires récents" + +#: wp-includes/widgets/class-wp-widget-recent-comments.php:28 +msgid "Your site’s most recent comments." +msgstr "Les commentaires les plus récents de votre site." + +#: wp-includes/widgets/class-wp-widget-pages.php:146 +msgid "Page IDs, separated by commas." +msgstr "IDs de pages, séparés par une virgule." + +#: wp-includes/widgets/class-wp-widget-pages.php:143 +msgid "Exclude:" +msgstr "Exclure :" + +#: wp-includes/widgets/class-wp-widget-pages.php:139 +msgid "Page ID" +msgstr "ID de la page" + +#: wp-includes/widgets/class-wp-widget-pages.php:138 +msgid "Page order" +msgstr "Ordre de la page" + +#: wp-includes/widgets/class-wp-widget-pages.php:137 +msgid "Page title" +msgstr "Titre de la page" + +#: wp-includes/widgets/class-wp-widget-pages.php:28 +msgid "A list of your site’s Pages." +msgstr "Une liste des pages de votre site." + +#: wp-includes/widgets/class-wp-widget-meta.php:71 +msgctxt "meta widget link text" +msgid "WordPress.org" +msgstr "Site de WordPress-FR" + +#: wp-includes/widgets/class-wp-widget-meta.php:70 +msgid "Powered by WordPress, state-of-the-art semantic personal publishing platform." +msgstr "Propulsé par WordPress, plate-forme de publication personnelle sémantique de pointe." + +#: wp-includes/widgets/class-wp-widget-meta.php:59 +msgid "Comments RSS" +msgstr "RSS des commentaires" + +#: wp-includes/widgets/class-wp-widget-meta.php:58 +msgid "Entries RSS" +msgstr "Flux RSS des articles" + +#: wp-includes/widgets/class-wp-widget-meta.php:30 +msgid "Login, RSS, & WordPress.org links." +msgstr "Connexion, flux RSS et liens WordPress.org." + +#: wp-includes/widgets/class-wp-widget-links.php:161 +msgid "Number of links to show:" +msgstr "Nombre de liens à afficher :" + +#: wp-includes/widgets/class-wp-widget-links.php:158 +msgid "Show Link Rating" +msgstr "Afficher la note du lien" + +#: wp-includes/widgets/class-wp-widget-links.php:156 +msgid "Show Link Description" +msgstr "Afficher la description du lien" + +#: wp-includes/widgets/class-wp-widget-links.php:154 +msgid "Show Link Name" +msgstr "Afficher le nom du lien" + +#: wp-includes/widgets/class-wp-widget-links.php:152 +msgid "Show Link Image" +msgstr "Afficher l’image du lien" + +#: wp-includes/widgets/class-wp-widget-links.php:147 +msgctxt "Links widget" +msgid "Random" +msgstr "Aléatoire" + +#: wp-includes/widgets/class-wp-widget-links.php:146 +msgid "Link ID" +msgstr "ID du lien" + +#: wp-includes/widgets/class-wp-widget-links.php:145 +msgid "Link rating" +msgstr "Note du lien" + +#: wp-includes/widgets/class-wp-widget-links.php:144 +msgid "Link title" +msgstr "Titre du lien" + +#: wp-includes/widgets/class-wp-widget-links.php:142 +#: wp-includes/widgets/class-wp-widget-pages.php:135 +msgid "Sort by:" +msgstr "Trier par :" + +#: wp-includes/widgets/class-wp-widget-links.php:133 +msgctxt "links widget" +msgid "All Links" +msgstr "Tous les liens" + +#: wp-includes/widgets/class-wp-widget-links.php:131 +msgid "Select Link Category:" +msgstr "Sélectionner la catégorie de liens :" + +#: wp-includes/widgets/class-wp-widget-links.php:30 +msgid "Links" +msgstr "Liens" + +#: wp-includes/widgets/class-wp-widget-links.php:27 +msgid "Your blogroll" +msgstr "Vos liens préférés" + +#: wp-includes/widgets/class-wp-widget-categories.php:170 +msgid "Show hierarchy" +msgstr "Afficher la hiérarchie" + +#: wp-includes/widgets/class-wp-widget-categories.php:71 +msgid "Select Category" +msgstr "Sélectionner une catégorie" + +#: wp-includes/widgets/class-wp-widget-categories.php:28 +msgid "A list or dropdown of categories." +msgstr "Une liste ou un menu déroulant des catégories." + +#: wp-includes/widgets/class-wp-widget-calendar.php:41 +msgid "Calendar" +msgstr "Calendrier" + +#: wp-includes/widgets/class-wp-widget-calendar.php:38 +msgid "A calendar of your site’s Posts." +msgstr "Un calendrier des articles de votre site." + +#: wp-includes/widgets/class-wp-widget-archives.php:161 +#: wp-includes/widgets/class-wp-widget-categories.php:167 +msgid "Show post counts" +msgstr "Afficher le nombre d’articles" + +#: wp-includes/widgets/class-wp-widget-archives.php:159 +#: wp-includes/widgets/class-wp-widget-categories.php:164 +msgid "Display as dropdown" +msgstr "Afficher comme liste déroulante" + +#: wp-includes/widgets/class-wp-widget-archives.php:91 +msgid "Select Post" +msgstr "Sélectionner un article" + +#: wp-includes/widgets/class-wp-widget-archives.php:88 +msgid "Select Week" +msgstr "Sélectionner la semaine" + +#: wp-includes/widgets/class-wp-widget-archives.php:85 +msgid "Select Day" +msgstr "Sélectionner le jour" + +#: wp-includes/widgets/class-wp-widget-archives.php:82 +msgid "Select Month" +msgstr "Sélectionner un mois" + +#: wp-includes/widgets/class-wp-widget-archives.php:79 +msgid "Select Year" +msgstr "Sélectionner l’année" + +#: wp-includes/widgets/class-wp-widget-archives.php:28 +msgid "A monthly archive of your site’s Posts." +msgstr "Une archive mensuelle des articles de votre site." + +#: wp-includes/widgets/class-wp-nav-menu-widget.php:141 +msgid "Select Menu:" +msgstr "Sélectionner le menu :" + +#: wp-includes/widgets/class-wp-nav-menu-widget.php:137 +#: wp-includes/widgets/class-wp-widget-archives.php:157 +#: wp-includes/widgets/class-wp-widget-calendar.php:104 +#: wp-includes/widgets/class-wp-widget-categories.php:160 +#: wp-includes/widgets/class-wp-widget-meta.php:111 +#: wp-includes/widgets/class-wp-widget-pages.php:131 +#: wp-includes/widgets/class-wp-widget-recent-comments.php:159 +#: wp-includes/widgets/class-wp-widget-recent-posts.php:132 +#: wp-includes/widgets/class-wp-widget-search.php:71 +#: wp-includes/widgets/class-wp-widget-tag-cloud.php:122 +#: wp-includes/widgets/class-wp-widget-text.php:109 +msgid "Title:" +msgstr "Titre :" + +#: wp-includes/widgets/class-wp-nav-menu-widget.php:133 +msgid "No menus have been created yet. Create some." +msgstr "Aucun menu n’a été créé pour le moment. En créer un." + +#: wp-includes/widgets/class-wp-nav-menu-widget.php:30 +msgid "Custom Menu" +msgstr "Menu personnalisé" + +#: wp-includes/widgets/class-wp-nav-menu-widget.php:27 +msgid "Add a custom menu to your sidebar." +msgstr "Ajouter un menu personnalisé à votre colonne latérale." + +#: wp-includes/user.php:2341 +msgid "ERROR: Couldn’t register you… please contact the webmaster !" +msgstr "ERREUR : inscription impossible… Veuillez prendre contact avec le webmaster !" + +#: wp-includes/user.php:2301 +msgid "ERROR: This email is already registered, please choose another one." +msgstr "ERREUR : cette adresse de messagerie est déjà utilisée. Merci d’en choisir une autre." + +#: wp-includes/user.php:2298 +msgid "ERROR: The email address isn’t correct." +msgstr "ERREUR : adresse de messagerie incorrecte." + +#: wp-includes/user.php:2296 +msgid "ERROR: Please type your email address." +msgstr "ERREUR : veuillez saisir une adresse de messagerie." + +#: wp-includes/user.php:2290 +msgid "ERROR: Sorry, that username is not allowed." +msgstr "ERREUR : Désolé mais ce nom d’utilisateur n’est pas autorisé." + +#: wp-includes/user.php:2284 +msgid "ERROR: This username is already registered. Please choose another one." +msgstr "ERREUR : cet identifiant existe déjà. Merci d’en choisir un autre." + +#: wp-includes/user.php:2281 +msgid "ERROR: This username is invalid because it uses illegal characters. Please enter a valid username." +msgstr "ERREUR : cet identifiant n’est pas valide, car il utilise des caractères non autorisés. Merci d’utiliser un identifiant valide." + +#: wp-includes/user.php:2279 +msgid "ERROR: Please enter a username." +msgstr "ERREUR : veuillez renseigner l’identifiant." + +#: wp-includes/user.php:2158 wp-includes/user.php:2161 +#: wp-includes/user.php:2165 wp-includes/user.php:2189 +#: wp-includes/user.php:2198 wp-includes/user.php:2202 +#: wp-includes/user.php:2219 +msgid "Invalid key" +msgstr "Clé non valide" + +#: wp-includes/user.php:2129 +msgid "Could not save password reset key to database." +msgstr "Impossible d’enregistrer la clé de mise à zéro du mot de passe dans la base de données." + +#: wp-includes/user.php:2104 +msgid "Password reset is not allowed for this user" +msgstr "La réinitialisation du mot de passe n’est pas autorisée pour cet utilisateur" + +#: wp-includes/user.php:2040 +msgid "Hint: The password should be at least twelve characters long. To make it stronger, use upper and lower case letters, numbers, and symbols like ! \" ? $ % ^ & )." +msgstr "Astuce : le mot de passe devrait contenir au moins 12 caractères. Pour le rendre plus sûr, utilisez des lettres en majuscule et minuscule, des nombres, et des symboles tels que ! \" ? $ % ^ & )." + +#: wp-includes/user.php:2002 +msgid "Jabber / Google Talk" +msgstr "Jabber / Google Talk" + +#: wp-includes/user.php:2001 +msgid "Yahoo IM" +msgstr "Yahoo Messenger" + +#: wp-includes/user.php:2000 +msgid "AIM" +msgstr "AIM" + +#. translators: User email change notification email subject. 1: Site name +#: wp-includes/user.php:1883 +msgid "[%s] Notice of Email Change" +msgstr "[%s] Notification d’un changement d’adresse de messagerie" + +#. translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, +#. SITEURL: those are placeholders. +#: wp-includes/user.php:1867 +msgid "" +"Hi ###USERNAME###,\n" +"\n" +"This notice confirms that your email was changed on ###SITENAME###.\n" +"\n" +"If you did not change your email, please contact the Site Administrator at\n" +"###ADMIN_EMAIL###\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Bonjour ###USERNAME###,\n" +"\n" +"Ce message vous confirme que votre adresse de messagerie a bien été modifiée sur le site ###SITENAME###.\n" +"\n" +"Si vous n’avez pas effectué cette action, veuillez contacter rapidement l’administrateur du site à cette adresse :\n" +"###ADMIN_EMAIL###\n" +"\n" +"Ce message a été envoyé à ###EMAIL###\n" +"\n" +"Cordialement,\n" +"L’équipe du site ###SITENAME###\n" +"###SITEURL###" + +#. translators: User password change notification email subject. 1: Site name +#: wp-includes/user.php:1827 +msgid "[%s] Notice of Password Change" +msgstr "[%s] Notification d’un changement de mot de passe" + +#. translators: Do not translate USERNAME, ADMIN_EMAIL, EMAIL, SITENAME, +#. SITEURL: those are placeholders. +#: wp-includes/user.php:1811 +msgid "" +"Hi ###USERNAME###,\n" +"\n" +"This notice confirms that your password was changed on ###SITENAME###.\n" +"\n" +"If you did not change your password, please contact the Site Administrator at\n" +"###ADMIN_EMAIL###\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Salutations ###USERNAME###,\n" +"\n" +"Ce message vous confirme que votre mot de passe a bien été modifié sur ###SITENAME###.\n" +"\n" +"Si vous n’avez pas modifié votre mot de passe, veuillez contacter l’administrateur du site à cette adresse :\n" +"###ADMIN_EMAIL###\n" +"\n" +"Ce message a été envoyé à ###EMAIL###\n" +"\n" +"Cordialement,\n" +"Toute l’équipe de ###SITENAME###\n" +"###SITEURL###" + +#. translators: 1: first name, 2: last name +#: wp-includes/user.php:1566 +msgctxt "Display name based on first name and last name" +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: wp-includes/user.php:1475 +msgid "Nicename may not be longer than 50 characters." +msgstr "Un jolinom (nicename) ne devrait pas dépasser les 50 caractères." + +#: wp-includes/user.php:1446 +msgid "Cannot create a user with an empty login name." +msgstr "Impossible de créer un utilisateur avec un identifiant vide." + +#. translators: 1: display name, 2: user_login +#: wp-includes/user.php:1105 +msgctxt "user dropdown" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: wp-includes/user.php:310 +msgid "ERROR: Your account has been marked as a spammer." +msgstr "ERREUR : votre compte a été marqué comme étant indésirable." + +#. translators: %s: email address +#: wp-includes/user.php:238 +msgid "ERROR: The password you entered for the email address %s is incorrect." +msgstr "ERREUR : Le mot de passe que vous avez saisi pour l’adresse e-mail %s est incorrect." + +#: wp-includes/user.php:220 +msgid "ERROR: Invalid email address." +msgstr "ERREUR : Adresse e-mail non valide" + +#: wp-includes/user.php:202 +msgid "ERROR: The email field is empty." +msgstr "ERREUR : Le champ e-mail est vide." + +#. translators: %s: user name +#: wp-includes/user.php:166 +msgid "ERROR: The password you entered for the username %s is incorrect." +msgstr "ERREUR : Ce mot de passe ne correspond pas à l’identifiant %s." + +#: wp-includes/user.php:144 wp-includes/user.php:170 wp-includes/user.php:222 +#: wp-includes/user.php:242 wp-login.php:745 wp-login.php:939 +msgid "Lost your password?" +msgstr "Mot de passe oublié ?" + +#: wp-includes/user.php:142 +msgid "ERROR: Invalid username." +msgstr "ERREUR : Nom d’utilisateur non valide." + +#: wp-includes/user.php:133 wp-includes/user.php:206 +msgid "ERROR: The password field is empty." +msgstr "ERREUR : le champ du mot de passe est vide." + +#: wp-includes/user.php:130 +msgid "ERROR: The username field is empty." +msgstr "ERREUR : le champ de l’identifiant est vide." + +#: wp-includes/update.php:603 +msgid "Translation Updates" +msgstr "Mises à jour des traductions" + +#. translators: 1: Number of updates available to themes +#: wp-includes/update.php:600 +msgid "%d Theme Update" +msgid_plural "%d Theme Updates" +msgstr[0] "%d mise à jour de thème" +msgstr[1] "%d mises à jour de thèmes" + +#. translators: 1: Number of updates available to plugins +#: wp-includes/update.php:596 +msgid "%d Plugin Update" +msgid_plural "%d Plugin Updates" +msgstr[0] "%d mise à jour d’extension" +msgstr[1] "%d mises à jour d’extensions" + +#. translators: 1: Number of updates available to WordPress +#: wp-includes/update.php:592 +msgid "%d WordPress Update" +msgstr "%d mise à jour de WordPress" + +#: wp-includes/update.php:128 wp-includes/update.php:318 +#: wp-includes/update.php:498 +msgid "(WordPress could not establish a secure connection to WordPress.org. Please contact your server administrator.)" +msgstr "(WordPress n’a pas pu établir de connexion sécurisée vers WordPress.org. Veuillez contacter l’administrateur de votre serveur.)" + +#. translators: %s: support forums URL +#: wp-includes/update.php:126 wp-includes/update.php:316 +#: wp-includes/update.php:496 +msgid "An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums." +msgstr "Une erreur imprévue est survenue. Il pourrait y avoir un problème avec WordPress.org ou la configuration de ce serveur. Si vous continuez à rencontrer ce problème, veuillez vous rendre sur le forums d’entraide (en anglais)." + +#: wp-includes/theme.php:2970 +msgid "Customizer" +msgstr "Outil de personnalisation" + +#. translators: 1: Theme support 2: hook name +#: wp-includes/theme.php:2418 +msgid "Theme support for %1$s should be registered before the %2$s hook." +msgstr "La reconnaissance de %1$s par le thème doit être enregistrée avec le point d’accroche %2$s" + +#: wp-includes/theme.php:2262 +msgid "You need to pass an array of types." +msgstr "Vous devez passer un tableau de types." + +#: wp-includes/theme.php:2083 +msgctxt "Theme starter content" +msgid "This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts." +msgstr "C’est un exemple de section de page d’accueil. Les sections de page d’accueil peuvent être n’importe quelle page autre que la page d’accueil elle-même, y compris la page qui affiche vos derniers articles de blog." + +#: wp-includes/theme.php:2082 +msgctxt "Theme starter content" +msgid "A homepage section" +msgstr "Une section de page d’accueil" + +#: wp-includes/theme.php:2077 +msgctxt "Theme starter content" +msgid "News" +msgstr "Actualités" + +#: wp-includes/theme.php:2073 +msgctxt "Theme starter content" +msgid "Blog" +msgstr "Blog" + +#: wp-includes/theme.php:2069 +msgctxt "Theme starter content" +msgid "This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form." +msgstr "C’est une page avec des informations de contact de base, comme l’adresse et le numéro de téléphone. Vous pouvez aussi essayer une extension pour ajouter un formulaire de contact." + +#: wp-includes/theme.php:2068 +msgctxt "Theme starter content" +msgid "Contact" +msgstr "Contact" + +#: wp-includes/theme.php:2064 +msgctxt "Theme starter content" +msgid "You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe." +msgstr "Vous pourriez être un artiste et vouloir présenter vos travaux et vous même ou encore être une entreprise avec une mission à promouvoir." + +#: wp-includes/theme.php:2063 +msgctxt "Theme starter content" +msgid "About" +msgstr "À propos de" + +#: wp-includes/theme.php:2059 +msgctxt "Theme starter content" +msgid "Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time." +msgstr "Bienvenue sur votre site ! C’est votre page d’accueil que vos visiteurs verront lorsqu’ils arriveront sur votre site la première fois." + +#: wp-includes/theme.php:2051 +msgctxt "Theme starter content" +msgid "YouTube" +msgstr "YouTube" + +#: wp-includes/theme.php:2047 +msgctxt "Theme starter content" +msgid "Yelp" +msgstr "Yelp" + +#: wp-includes/theme.php:2043 +msgctxt "Theme starter content" +msgid "Twitter" +msgstr "Twitter" + +#: wp-includes/theme.php:2039 +msgctxt "Theme starter content" +msgid "Pinterest" +msgstr "Pinterest" + +#: wp-includes/theme.php:2035 +msgctxt "Theme starter content" +msgid "LinkedIn" +msgstr "LinkedIn" + +#: wp-includes/theme.php:2031 +msgctxt "Theme starter content" +msgid "Instagram" +msgstr "Instagram" + +#: wp-includes/theme.php:2027 +msgctxt "Theme starter content" +msgid "GitHub" +msgstr "GitHub" + +#: wp-includes/theme.php:2023 +msgctxt "Theme starter content" +msgid "Foursquare" +msgstr "Foursquare" + +#: wp-includes/theme.php:2019 +msgctxt "Theme starter content" +msgid "Facebook" +msgstr "Facebook" + +#: wp-includes/theme.php:2015 +msgctxt "Theme starter content" +msgid "Email" +msgstr "E-mail" + +#: wp-includes/theme.php:1985 wp-includes/theme.php:2058 +msgctxt "Theme starter content" +msgid "Home" +msgstr "Accueil" + +#: wp-includes/theme.php:1979 +msgctxt "Theme starter content" +msgid "Search" +msgstr "Rechercher" + +#: wp-includes/theme.php:1976 +msgctxt "Theme starter content" +msgid "Recent Posts" +msgstr "Articles récents" + +#: wp-includes/theme.php:1973 +msgctxt "Theme starter content" +msgid "Recent Comments" +msgstr "Commentaires récents" + +#: wp-includes/theme.php:1970 +msgctxt "Theme starter content" +msgid "Meta" +msgstr "Méta" + +#: wp-includes/theme.php:1967 +msgctxt "Theme starter content" +msgid "Categories" +msgstr "Catégories" + +#: wp-includes/theme.php:1964 +msgctxt "Theme starter content" +msgid "Calendar" +msgstr "Calendrier" + +#: wp-includes/theme.php:1961 +msgctxt "Theme starter content" +msgid "Archives" +msgstr "Archives" + +#: wp-includes/theme.php:1958 +msgctxt "Theme starter content" +msgid "This may be a good place to introduce yourself and your site or include some credits." +msgstr "C’est peut-être le bon endroit pour vous présenter et votre site ou insérer quelques crédits." + +#: wp-includes/theme.php:1957 +msgctxt "Theme starter content" +msgid "About This Site" +msgstr "À propos de ce site" + +#: wp-includes/theme.php:1953 +msgctxt "Theme starter content" +msgid "Saturday & Sunday: 11:00AM–3:00PM" +msgstr "Les samedi et dimanche : 11h00–15h00" + +#: wp-includes/theme.php:1953 +msgctxt "Theme starter content" +msgid "Monday—Friday: 9:00AM–5:00PM" +msgstr "Du lundi au vendredi : 9h00–17h00" + +#: wp-includes/theme.php:1952 +msgctxt "Theme starter content" +msgid "Hours" +msgstr "Heures d’ouverture" + +#: wp-includes/theme.php:1951 +msgctxt "Theme starter content" +msgid "New York, NY 10001" +msgstr "75008, Paris" + +#: wp-includes/theme.php:1951 +msgctxt "Theme starter content" +msgid "123 Main Street" +msgstr "Avenue des Champs-Élysées" + +#: wp-includes/theme.php:1950 +msgctxt "Theme starter content" +msgid "Address" +msgstr "Adresse" + +#: wp-includes/theme.php:1948 +msgctxt "Theme starter content" +msgid "Find Us" +msgstr "Retrouvez-nous" + +#: wp-includes/theme.php:1397 +msgid "Video is playing." +msgstr "La vidéo en cours de lecture" + +#: wp-includes/theme.php:1396 +msgid "Video is paused." +msgstr "La vidéo est en pause" + +#: wp-includes/theme-compat/sidebar.php:103 +#: wp-includes/widgets/class-wp-widget-meta.php:33 +#: wp-includes/widgets/class-wp-widget-meta.php:48 +msgid "Meta" +msgstr "Méta" + +#. translators: %s: site link +#: wp-includes/theme-compat/sidebar.php:78 +msgid "You are currently browsing the %s blog archives." +msgstr "Vous parcourez actuellement les archives du blog %s." + +#. translators: 1: site link, 2: search query +#: wp-includes/theme-compat/sidebar.php:70 +msgid "You have searched the %1$s blog archives for ‘%2$s’. If you are unable to find anything in these search results, you can try one of these links." +msgstr "Vous avez lancé une recherche dans les archives du site %1$s avec la requête « %2$s ». Si les résultats ne vous conviennent pas, vous pouvez essayer l’un de ces liens." + +#. translators: 1: site link, 2: archive year +#: wp-includes/theme-compat/sidebar.php:62 +msgid "You are currently browsing the %1$s blog archives for the year %2$s." +msgstr "Vous parcourez actuellement les archives du blog %1$s pour l’année %2$s. " + +#: wp-includes/theme-compat/sidebar.php:56 +msgid "F, Y" +msgstr "F Y" + +#. translators: 1: site link, 2: archive month +#: wp-includes/theme-compat/sidebar.php:54 +msgid "You are currently browsing the %1$s blog archives for %2$s." +msgstr "Vous parcourez actuellement les archives du blog %1$s pour %2$s." + +#: wp-includes/theme-compat/sidebar.php:48 +msgid "l, F jS, Y" +msgstr "l j F Y" + +#. translators: 1: site link, 2: archive date +#: wp-includes/theme-compat/sidebar.php:46 +msgid "You are currently browsing the %1$s blog archives for the day %2$s." +msgstr "Vous parcourez actuellement les archives du blog %1$s pour le %2$s." + +#. translators: %s: category name +#: wp-includes/theme-compat/sidebar.php:39 +msgid "You are currently browsing the archives for the %s category." +msgstr "Vous parcourez actuellement les archives de la catégorie %s." + +#. translators: 1: blog name, 2: WordPress +#: wp-includes/theme-compat/footer.php:26 +msgid "%1$s is proudly powered by %2$s" +msgstr "%1$s est fièrement propulsé par %2$s" + +#. translators: %s: a link to the embedded site +#: wp-includes/theme-compat/embed-404.php:21 +msgid "It looks like nothing was found at this location. Maybe try visiting %s directly?" +msgstr "Il semble qu’il n’y ait rien à cette adresse. Essayez de vous rendre directement sur %s." + +#: wp-includes/theme-compat/embed-404.php:14 +msgid "Oops! That embed can’t be found." +msgstr "Oups ! Ce contenu intégré n’a pas pu être trouvé." + +#: wp-includes/theme-compat/comments.php:66 +msgid "Comments are closed." +msgstr "Les commentaires sont fermés." + +#. translators: 1: number of comments, 2: post title +#: wp-includes/theme-compat/comments.php:40 +msgid "%1$s response to %2$s" +msgid_plural "%1$s responses to %2$s" +msgstr[0] "%1$s réponse à %2$s" +msgstr[1] "%1$s réponses à %2$s" + +#. translators: %s: post title +#: wp-includes/theme-compat/comments.php:37 +msgid "One response to %s" +msgstr "Une réponse à %s" + +#: wp-includes/theme-compat/comments.php:24 +msgid "This post is password protected. Enter the password to view comments." +msgstr "Cet article est protégé par un mot de passe. Saisissez le mot de passe pour voir les commentaires." + +#. translators: %s: template name +#: wp-includes/theme-compat/comments.php:16 +#: wp-includes/theme-compat/footer.php:15 +#: wp-includes/theme-compat/header.php:15 +#: wp-includes/theme-compat/sidebar.php:15 +msgid "Please include a %s template in your theme." +msgstr "Veuillez inclure un modèle de %s à votre thème." + +#. translators: %s: template name +#: wp-includes/theme-compat/comments.php:12 +#: wp-includes/theme-compat/footer.php:11 +#: wp-includes/theme-compat/header.php:11 +#: wp-includes/theme-compat/sidebar.php:11 +msgid "Theme without %s" +msgstr "Thème sans %s" + +#: wp-includes/taxonomy.php:4072 +msgid "Invalid object ID" +msgstr "Identifiant d’objet non valide." + +#. translators: %s: taxonomy label, %l: list of terms formatted as per +#. $term_template +#: wp-includes/taxonomy.php:4001 +msgid "%s: %l." +msgstr "%s : %l." + +#: wp-includes/taxonomy.php:3516 +msgid "Could not split shared term." +msgstr "Impossible de séparer les termes partagés." + +#. translators: 1: Taxonomy term slug +#: wp-includes/taxonomy.php:2685 +msgid "The slug “%s” is already in use by another term" +msgstr "L’identifiant « %s » est déjà utilisé par un autre terme" + +#: wp-includes/taxonomy.php:2331 +msgid "Could not insert term relationship into the database" +msgstr "Impossible d’insérer le terme associé dans la base de données" + +#: wp-includes/taxonomy.php:2108 +msgid "Could not insert term into the database" +msgstr "Impossible d’insérer le terme dans la base de données" + +#: wp-includes/taxonomy.php:2087 +msgid "A term with the name provided already exists in this taxonomy." +msgstr "Un terme avec ce nom et cet identifiant existe déjà dans cette taxonomie." + +#: wp-includes/taxonomy.php:2084 +msgid "A term with the name provided already exists with this parent." +msgstr "Un terme avec ce nom existe déjà pour ce parent." + +#: wp-includes/taxonomy.php:1999 wp-includes/taxonomy.php:2623 +msgid "A name is required for this term." +msgstr "Un nom est nécessaire pour ce terme. " + +#: wp-includes/taxonomy.php:1160 wp-includes/taxonomy.php:1242 +msgid "Term meta cannot be added to terms that are shared between taxonomies." +msgstr "Les méta de termes ne peuvent pas être ajoutés à des termes partagés entre plusieurs taxinomies." + +#: wp-includes/taxonomy.php:726 wp-includes/taxonomy.php:2599 +#: wp-includes/taxonomy.php:3870 +msgid "Empty Term" +msgstr "Pas de terme" + +#: wp-includes/taxonomy.php:513 +msgid "Categories list" +msgstr "Liste des catégories" + +#: wp-includes/taxonomy.php:513 +msgid "Tags list" +msgstr "Liste des étiquettes" + +#: wp-includes/taxonomy.php:512 +msgid "Categories list navigation" +msgstr "Navigation de la liste des catégories" + +#: wp-includes/taxonomy.php:512 +msgid "Tags list navigation" +msgstr "Navigation de la liste des étiquettes" + +#: wp-includes/taxonomy.php:511 +msgid "No tags" +msgstr "Aucune étiquette" + +#: wp-includes/taxonomy.php:510 +msgid "No categories found." +msgstr "Aucune catégorie trouvée." + +#: wp-includes/taxonomy.php:510 +msgid "No tags found." +msgstr "Aucune étiquette trouvée." + +#: wp-includes/taxonomy.php:509 +msgid "Choose from the most used tags" +msgstr "Choisir parmi les étiquettes les plus utilisées" + +#: wp-includes/taxonomy.php:508 +msgid "Add or remove tags" +msgstr "Ajouter ou retirer des étiquettes" + +#: wp-includes/taxonomy.php:507 +msgid "Separate tags with commas" +msgstr "Séparez les étiquettes par des virgules" + +#: wp-includes/taxonomy.php:506 +msgid "New Category Name" +msgstr "Nom de la nouvelle catégorie" + +#: wp-includes/taxonomy.php:506 +msgid "New Tag Name" +msgstr "Nom de la nouvelle étiquette" + +#: wp-includes/taxonomy.php:505 +msgid "Add New Category" +msgstr "Ajouter une nouvelle catégorie" + +#: wp-includes/taxonomy.php:505 +msgid "Add New Tag" +msgstr "Ajouter une nouvelle étiquette" + +#: wp-includes/taxonomy.php:504 +msgid "Update Category" +msgstr "Mettre à jour la catégorie" + +#: wp-includes/taxonomy.php:504 +msgid "Update Tag" +msgstr "Mettre à jour l’étiquette" + +#: wp-includes/taxonomy.php:503 +msgid "View Category" +msgstr "Voir la catégorie" + +#: wp-includes/taxonomy.php:503 +msgid "View Tag" +msgstr "Voir l’étiquette" + +#: wp-includes/taxonomy.php:502 +msgid "Edit Category" +msgstr "Modifier la catégorie" + +#: wp-includes/taxonomy.php:502 +msgid "Edit Tag" +msgstr "Modifier l’étiquette" + +#: wp-includes/taxonomy.php:501 +msgid "Parent Category:" +msgstr "Catégorie parente :" + +#: wp-includes/taxonomy.php:500 +msgid "Parent Category" +msgstr "Catégorie parente" + +#: wp-includes/taxonomy.php:499 +msgid "All Categories" +msgstr "Toutes" + +#: wp-includes/taxonomy.php:499 +msgid "All Tags" +msgstr "Toutes les étiquettes" + +#: wp-includes/taxonomy.php:498 +msgid "Popular Tags" +msgstr "Étiquettes populaires" + +#: wp-includes/taxonomy.php:497 +msgid "Search Categories" +msgstr "Rechercher dans les catégories" + +#: wp-includes/taxonomy.php:497 +msgid "Search Tags" +msgstr "Rechercher dans les étiquettes" + +#: wp-includes/taxonomy.php:496 +msgctxt "taxonomy singular name" +msgid "Category" +msgstr "Catégorie" + +#: wp-includes/taxonomy.php:496 +msgctxt "taxonomy singular name" +msgid "Tag" +msgstr "Étiquette" + +#: wp-includes/taxonomy.php:495 +msgctxt "taxonomy general name" +msgid "Categories" +msgstr "Catégories" + +#: wp-includes/taxonomy.php:495 +msgctxt "taxonomy general name" +msgid "Tags" +msgstr "Étiquettes" + +#: wp-includes/taxonomy.php:426 +msgid "Unregistering a built-in taxonomy is not allowed" +msgstr "Vous ne pouvez supprimer une taxonomie interne" + +#: wp-includes/taxonomy.php:380 wp-includes/taxonomy.php:381 +msgid "Taxonomy names must be between 1 and 32 characters in length." +msgstr "Un nom de taxonomie doit comporter entre 1 et 32 caractères." + +#: wp-includes/taxonomy.php:141 wp-includes/taxonomy.php:142 +msgctxt "post format" +msgid "Format" +msgstr "Format" + +#: wp-includes/taxonomy.php:119 +msgid "New Link Category Name" +msgstr "Nom de la nouvelle catégorie de liens" + +#: wp-includes/taxonomy.php:118 +msgid "Add New Link Category" +msgstr "Ajouter une catégorie de liens" + +#: wp-includes/taxonomy.php:117 +msgid "Update Link Category" +msgstr "Mettre à jour la catégorie de liens" + +#: wp-includes/taxonomy.php:116 +msgid "Edit Link Category" +msgstr "Modifier la catégorie de lien" + +#: wp-includes/taxonomy.php:115 +msgid "All Link Categories" +msgstr "Toutes les catégories de liens" + +#: wp-includes/taxonomy.php:113 +msgid "Search Link Categories" +msgstr "Rechercher dans les catégories de liens" + +#: wp-includes/taxonomy.php:112 +msgid "Link Category" +msgstr "Catégorie de liens" + +#: wp-includes/taxonomy.php:111 +msgid "Link Categories" +msgstr "Catégories de liens" + +#: wp-includes/taxonomy.php:99 +msgid "Navigation Menu" +msgstr "Menu de navigation" + +#: wp-includes/taxonomy.php:98 +msgid "Navigation Menus" +msgstr "Menus de navigation" + +#. translators: %s: shortcode tag +#: wp-includes/shortcodes.php:320 +msgid "Attempting to parse a shortcode without a valid callback: %s" +msgstr "Tentative d’analyse d’un code court sans fonction de rappel valide : %s" + +#. translators: 1: shortcode name, 2: space separated list of reserved +#. characters +#: wp-includes/shortcodes.php:100 +msgid "Invalid shortcode name: %1$s. Do not use spaces or reserved characters: %2$s" +msgstr "Nom de code court non valide : %1$s. N’utilisez pas d’espace ou de caractères réservés : %2$s" + +#: wp-includes/shortcodes.php:93 +msgid "Invalid shortcode name: Empty name given." +msgstr "Nom de code court non valide : aucun nom donné." + +#: wp-includes/script-loader.php:980 +msgid "Previous" +msgstr "Précédent" + +#: wp-includes/script-loader.php:979 wp-signup.php:559 +msgid "Next" +msgstr "Suivant" + +#: wp-includes/script-loader.php:976 +msgid "Today" +msgstr "Aujourd’hui" + +#. translators: To add an additional Open Sans character subset specific to +#. your language, translate this to 'greek', 'cyrillic' or 'vietnamese'. Do not +#. translate into your own language. +#: wp-includes/script-loader.php:806 +msgctxt "Open Sans font: add new subset (greek, cyrillic, vietnamese)" +msgid "no-subset" +msgstr "no-subset" + +#. translators: If there are characters in your language that are not supported +#. by Open Sans, translate this to 'off'. Do not translate into your own +#. language. +#: wp-includes/script-loader.php:800 +msgctxt "Open Sans font: on or off" +msgid "on" +msgstr "on" + +#: wp-includes/script-loader.php:751 +msgid "" +"You are about to permanently delete this menu. \n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer définitivement ce menu.\n" +" « Annuler » pour abandonner, « OK » pour le supprimer." + +#: wp-includes/script-loader.php:744 +msgid "Done" +msgstr "Terminé" + +#: wp-includes/script-loader.php:743 +msgid "Could not set that as the thumbnail image. Try a different attachment." +msgstr "Impossible de s’en servir comme miniature. Essayez un autre fichier joint." + +#: wp-includes/script-loader.php:742 +msgid "Saving..." +msgstr "Enregistrement..." + +#: wp-includes/script-loader.php:736 +msgid "Could not load the preview image. Please reload the page and try again." +msgstr "Impossible de charger l’image de prévisualisation. Veuillez recharger la page et réessayer. " + +#: wp-includes/script-loader.php:721 +msgid "Current Color" +msgstr "Couleur actuelle" + +#: wp-includes/script-loader.php:720 +msgid "Select Color" +msgstr "Sélectionner une couleur" + +#: wp-includes/script-loader.php:709 +msgid "No plugins found. Try a different search." +msgstr "Aucune extension trouvée. Essayer une recherche différente." + +#: wp-includes/script-loader.php:708 +msgid "Number of plugins found: %d" +msgstr "Nombre d’extensions trouvées : %d" + +#. translators: %s: Importer name +#: wp-includes/script-loader.php:704 +msgid "Run %s" +msgstr "Lancer %s" + +#: wp-includes/script-loader.php:702 +msgid "Run Importer" +msgstr "Lancer l’importateur" + +#: wp-includes/script-loader.php:701 +msgctxt "theme" +msgid "Activate %s" +msgstr "Activation de %s" + +#. translators: %s: Theme name +#: wp-includes/script-loader.php:701 +msgctxt "theme" +msgid "Network Activate %s" +msgstr "Activation réseau de %s" + +#: wp-includes/script-loader.php:699 +msgctxt "plugin" +msgid "Activate %s" +msgstr "Activation de %s" + +#. translators: %s: Plugin name +#: wp-includes/script-loader.php:699 +msgctxt "plugin" +msgid "Network Activate %s" +msgstr "Activation réseau de %s" + +#: wp-includes/script-loader.php:697 +msgid "Network Enable" +msgstr "Activer sur le réseau" + +#: wp-includes/script-loader.php:696 +msgid "Network Activate" +msgstr "Activer sur le réseau" + +#: wp-includes/script-loader.php:694 +msgid "Deleted!" +msgstr "Supprimé !" + +#. translators: %s: Error string for a failed deletion +#: wp-includes/script-loader.php:693 +msgid "Deletion failed: %s" +msgstr "Échec de suppression : %s" + +#: wp-includes/script-loader.php:691 +msgid "Deleting..." +msgstr "Suppression..." + +#: wp-includes/script-loader.php:690 +msgid "Caution: These themes may be active on other sites in the network. Are you sure you want to proceed?" +msgstr "Attention : Ces thèmes peuvent être actifs sur d’autres sites dans le réseau. Voulez vous vraiment faire cela ?" + +#: wp-includes/script-loader.php:689 +msgid "Are you sure you want to delete the selected plugins and their data?" +msgstr "Voulez vous vraiment supprimer les extensions sélectionnées et leur données ?" + +#. translators: %s: Plugin name +#: wp-includes/script-loader.php:688 +msgid "Are you sure you want to delete %s and its data?" +msgstr "Voulez vous vraiment supprimer %s et ses données ?" + +#. translators: %s: Theme name +#: wp-includes/script-loader.php:686 +msgid "Are you sure you want to delete %s?" +msgstr "Voulez vous vraiment supprimer %s ?" + +#. translators: %s: Activation URL +#: wp-includes/script-loader.php:684 +msgid "Importer installed successfully. Run importer" +msgstr "L’importateur a bien été installé. Lancer l’importateur>" + +#: wp-includes/script-loader.php:682 +msgid "Installation completed successfully." +msgstr "L’installation a bien été terminée." + +#: wp-includes/script-loader.php:681 +msgid "Installing... please wait." +msgstr "Installation... veuillez patienter." + +#. translators: %s: Theme name and version +#: wp-includes/script-loader.php:680 +msgctxt "theme" +msgid "%s installation failed" +msgstr "L’installation de %s a échoué" + +#. translators: %s: Plugin name and version +#: wp-includes/script-loader.php:678 +msgctxt "plugin" +msgid "%s installation failed" +msgstr "L’installation pour %s a échoué" + +#. translators: %s: Theme name and version +#: wp-includes/script-loader.php:676 +msgctxt "theme" +msgid "%s installed!" +msgstr "%s installé !" + +#. translators: %s: Plugin name and version +#: wp-includes/script-loader.php:674 +msgctxt "plugin" +msgid "%s installed!" +msgstr "%s installé !" + +#. translators: %s: Theme name and version +#: wp-includes/script-loader.php:672 +msgctxt "theme" +msgid "Installing %s..." +msgstr "Installation de %s..." + +#. translators: %s: Plugin name and version +#: wp-includes/script-loader.php:670 +msgctxt "plugin" +msgid "Installing %s..." +msgstr "Installation de %s..." + +#. translators: %s: Error string for a failed installation +#: wp-includes/script-loader.php:668 +msgid "Installation failed: %s" +msgstr "Échec d’installation : %s" + +#: wp-includes/script-loader.php:666 +msgid "Install Failed!" +msgstr "Échec d’installation !" + +#: wp-includes/script-loader.php:665 +msgid "Installed!" +msgstr "Installé !" + +#: wp-includes/script-loader.php:664 +msgid "Installing..." +msgstr "Installation..." + +#. translators: %s: Plugin name +#: wp-includes/script-loader.php:663 +msgid "Install %s now" +msgstr "Installer %s" + +#: wp-includes/script-loader.php:661 +msgid "Install Now" +msgstr "Installer" + +#: wp-includes/script-loader.php:660 +msgid "Updates may not complete if you navigate away from this page." +msgstr "Les mises à jour peuvent ne pas se terminer si vous quittez cette page." + +#. translators: JavaScript accessible string +#: wp-includes/script-loader.php:659 +msgid "Update canceled." +msgstr "Mise à jour annulée." + +#. translators: JavaScript accessible string +#: wp-includes/script-loader.php:657 +msgid "Update completed successfully." +msgstr "Mise à jour réussie." + +#. translators: JavaScript accessible string +#: wp-includes/script-loader.php:655 +msgid "Updating... please wait." +msgstr "Mise à jour en cours... veuillez patienter." + +#. translators: %s: Plugin name and version +#: wp-includes/script-loader.php:653 +msgid "%s update failed" +msgstr "La mise à jour de %s a échoué" + +#. translators: %s: Plugin name and version +#: wp-includes/script-loader.php:651 +msgid "%s updated!" +msgstr "%s est à jour !" + +#. translators: %s: Plugin name and version +#: wp-includes/script-loader.php:649 +msgid "Updating %s..." +msgstr "Mise à jour de %s..." + +#. translators: %s: Error string for a failed update +#: wp-includes/script-loader.php:647 +msgid "Update Failed: %s" +msgstr "La mise à jour a échoué : %s" + +#: wp-includes/script-loader.php:645 +msgid "Update Failed!" +msgstr "Échec de la mise à jour !" + +#. translators: %s: Plugin name and version +#: wp-includes/script-loader.php:644 +msgid "Update %s now" +msgstr "Mettre à jour %s maintenant" + +#: wp-includes/script-loader.php:642 +msgid "Update Now" +msgstr "Mettre à jour maintenant" + +#: wp-includes/script-loader.php:640 +msgid "Updated!" +msgstr "À jour !" + +#: wp-includes/script-loader.php:639 +msgid "Updating..." +msgstr "Mise à jour en cours..." + +#: wp-includes/script-loader.php:638 +msgid "Please select at least one item to perform this action on." +msgstr "Veuillez sélectionner au moins un élément pour effectuer cette action." + +#: wp-includes/script-loader.php:637 +msgid "You do not appear to have any plugins available at this time." +msgstr "Vous ne semblez pas avoir d’extensions disponibles pour le moment." + +#: wp-includes/script-loader.php:636 +msgid "Search Results" +msgstr "Résultats de recherche" + +#. translators: %s: Search string +#: wp-includes/script-loader.php:635 +msgid "Search results for “%s”" +msgstr "Résultats de recherche pour « %s »" + +#: wp-includes/script-loader.php:627 +msgid "Are you sure you want to install this plugin?" +msgstr "Voulez-vous vraiment installer cette extension ?" + +#: wp-includes/script-loader.php:626 +msgid "Plugin details" +msgstr "Détails de l’extension" + +#: wp-includes/script-loader.php:625 +msgid "Plugin:" +msgstr "Extension :" + +#: wp-includes/script-loader.php:614 wp-includes/script-loader.php:620 +msgid "Changes saved." +msgstr "Changements sauvegardés." + +#: wp-includes/script-loader.php:611 +msgid "Remove From Bulk Edit" +msgstr "Enlever des modifications groupées" + +#: wp-includes/script-loader.php:610 wp-includes/script-loader.php:619 +msgid "Error while saving the changes." +msgstr "Erreur lors de la sauvegarde des modifications." + +#: wp-includes/script-loader.php:597 +msgid "Submitted on:" +msgstr "Envoyé le :" + +#. translators: %d: nth image found in a post +#: wp-includes/script-loader.php:587 +msgid "Suggested image #%d" +msgstr "Image suggérée #%d" + +#. translators: %d: nth embed found in a post +#: wp-includes/script-loader.php:585 +msgid "Suggested embed #%d" +msgstr "Inclusion suggérée #%d" + +#: wp-includes/script-loader.php:582 wp-includes/script-loader.php:706 +msgid "Connection lost or the server is busy. Please try again later." +msgstr "Connexion perdue ou serveur occupé. Veuillez réessayer plus tard." + +#: wp-includes/script-loader.php:576 +msgid "Permalink saved" +msgstr "Permalien enregistré" + +#: wp-includes/script-loader.php:575 +msgid "Saving Draft…" +msgstr "Enregistrement du brouillon…" + +#: wp-includes/script-loader.php:572 +msgid "Privately Published" +msgstr "Publié en privé" + +#: wp-includes/script-loader.php:571 +msgid "Password Protected" +msgstr "Protégé par un mot de passe" + +#: wp-includes/script-loader.php:570 +msgid "Public, Sticky" +msgstr "Public, mis en avant" + +#: wp-includes/script-loader.php:569 +msgid "Public" +msgstr "Public" + +#: wp-includes/script-loader.php:567 +msgid "Save Draft" +msgstr "Enregistrer le brouillon" + +#: wp-includes/script-loader.php:566 +msgid "Save as Pending" +msgstr "Mettre à relire" + +#: wp-includes/script-loader.php:564 +msgid "Schedule" +msgstr "Planifier" + +#: wp-includes/script-loader.php:563 +msgid "Publish" +msgstr "Publier" + +#: wp-includes/script-loader.php:562 +msgid "No more comments found." +msgstr "Il n’y a pas d’autres commentaires." + +#: wp-includes/script-loader.php:561 +msgid "Show more comments" +msgstr "Afficher plus de commentaires" + +#. translators: 1: month, 2: day, 3: year, 4: hour, 5: minute +#: wp-includes/script-loader.php:560 wp-includes/script-loader.php:599 +msgid "%1$s %2$s, %3$s @ %4$s:%5$s" +msgstr "%2$s %1$s %3$s à %4$s h %5$s min" + +#: wp-includes/script-loader.php:558 +msgid "Published on:" +msgstr "Publié le :" + +#: wp-includes/script-loader.php:557 +msgid "Schedule for:" +msgstr "Planifier pour :" + +#: wp-includes/script-loader.php:556 +msgid "Publish on:" +msgstr "Publié le :" + +#: wp-includes/script-loader.php:549 +msgid "Term removed." +msgstr "Terme retiré." + +#: wp-includes/script-loader.php:548 +msgid "Term added." +msgstr "Terme ajouté." + +#: wp-includes/script-loader.php:547 +msgid "Term selected." +msgstr "Terme sélectionné." + +#: wp-includes/script-loader.php:546 +msgid "Remove term:" +msgstr "Retirer un terme :" + +#: wp-includes/script-loader.php:538 +msgid "Drag boxes here" +msgstr "Glissez les blocs ici" + +#. translators: %s: comments count +#: wp-includes/script-loader.php:531 +msgid "Comments (%s)" +msgstr "Commentaires (%s)" + +#: wp-includes/script-loader.php:529 +msgid "Comments" +msgstr "Commentaires" + +#: wp-includes/script-loader.php:528 +msgid "" +"Are you sure you want to do this?\n" +"The comment changes you made will be lost." +msgstr "" +"Voulez-vous vraiment faire cela ?\n" +"Les modifications apportées au commentaire seront perdues." + +#: wp-includes/script-loader.php:527 +msgid "" +"Are you sure you want to edit this comment?\n" +"The changes you made will be lost." +msgstr "" +"Voulez-vous vraiment modifier ce commentaire ?\n" +"Les changements que vous y avez apportés seront perdus." + +#: wp-includes/script-loader.php:525 +msgid "Approve and Reply" +msgstr "Approuver et répondre" + +#: wp-includes/script-loader.php:475 +msgid "Allowed Files" +msgstr "Fichiers autorisés" + +#: wp-includes/script-loader.php:473 +msgid "(Untitled)" +msgstr "(Sans titre)" + +#: wp-includes/script-loader.php:472 +msgctxt "label for hide controls button without length constraints" +msgid "Show Controls" +msgstr "Afficher les contrôles" + +#: wp-includes/script-loader.php:471 +msgctxt "label for hide controls button without length constraints" +msgid "Hide Controls" +msgstr "Masquer les contrôles" + +#: wp-includes/script-loader.php:469 +msgid "Site Preview" +msgstr "Aperçu du site" + +#: wp-includes/script-loader.php:464 +msgid "Saved" +msgstr "Enregistré" + +#: wp-includes/script-loader.php:462 +msgid "Save & Publish" +msgstr "Enregistrer & publier" + +#: wp-includes/script-loader.php:461 +msgid "Save & Activate" +msgstr "Enregistrer & activer" + +#: wp-includes/script-loader.php:434 +msgid "Link inserted." +msgstr "Lien inséré." + +#: wp-includes/script-loader.php:433 +msgid "Link selected." +msgstr "Lien sélectionné." + +#: wp-includes/script-loader.php:417 +msgid "Hide password" +msgstr "Cacher le mot de passe" + +#: wp-includes/script-loader.php:416 +msgid "Show password" +msgstr "Afficher le mot de passe" + +#: wp-includes/script-loader.php:414 +msgid "Hide" +msgstr "Cacher" + +#: wp-includes/script-loader.php:413 +msgid "Show" +msgstr "Afficher" + +#: wp-includes/script-loader.php:412 +msgid "Confirm use of weak password" +msgstr "Confirmer l’utilisation du mot de passe faible" + +#: wp-includes/script-loader.php:411 +msgid "Your new password has not been saved." +msgstr "Votre nouveau mot de passe n’a pas été enregistré." + +#: wp-includes/script-loader.php:406 +msgctxt "password mismatch" +msgid "Mismatch" +msgstr "Non concordance" + +#: wp-includes/script-loader.php:405 +msgctxt "password strength" +msgid "Strong" +msgstr "Forte" + +#: wp-includes/script-loader.php:404 +msgctxt "password strength" +msgid "Medium" +msgstr "Moyenne" + +#: wp-includes/script-loader.php:403 +msgctxt "password strength" +msgid "Weak" +msgstr "Faible" + +#: wp-includes/script-loader.php:402 +msgctxt "password strength" +msgid "Very weak" +msgstr "Très faible" + +#: wp-includes/script-loader.php:401 +msgctxt "password strength" +msgid "Password strength unknown" +msgstr "Force du mot de passe inconnue." + +#: wp-includes/script-loader.php:371 +msgid "Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds." +msgstr "Utilisez les flèches droite/gauche pour avancer d’une seconde, haut/bas pour avancer de dix secondes." + +#: wp-includes/script-loader.php:370 +msgid "Use Up/Down Arrow keys to increase or decrease volume." +msgstr "Utilisez les flèches haut/bas pour augmenter ou diminuer le volume." + +#: wp-includes/script-loader.php:369 +msgid "Mute" +msgstr "Muet" + +#: wp-includes/script-loader.php:368 +msgid "Unmute" +msgstr "Réactiver le son" + +#: wp-includes/script-loader.php:367 +msgid "Mute Toggle" +msgstr "Couper le son" + +#: wp-includes/script-loader.php:366 +msgid "Volume Slider" +msgstr "Curseur de volume" + +#: wp-includes/script-loader.php:365 +msgid "Audio Player" +msgstr "Lecteur audio" + +#: wp-includes/script-loader.php:364 +msgid "Video Player" +msgstr "Lecteur vidéo" + +#. translators: %1: number of seconds (30 by default) +#: wp-includes/script-loader.php:363 +msgid "Skip back %1 seconds" +msgstr "Saut en arrière de %1 seconde(s)" + +#: wp-includes/script-loader.php:361 +msgid "Time Slider" +msgstr "Curseur de temps" + +#: wp-includes/script-loader.php:359 +msgid "Captions/Subtitles" +msgstr "Légendes/Sous-titres" + +#: wp-includes/script-loader.php:358 wp-includes/theme.php:1394 +msgid "Pause" +msgstr "Pause" + +#: wp-includes/script-loader.php:357 wp-includes/theme.php:1395 +msgid "Play" +msgstr "Lecture" + +#: wp-includes/script-loader.php:356 +msgid "Download Video" +msgstr "Télécharger la vidéo" + +#: wp-includes/script-loader.php:355 +msgid "Download File" +msgstr "Télécharger le fichier" + +#: wp-includes/script-loader.php:354 +msgid "Go Fullscreen" +msgstr "Passer en plein écran" + +#: wp-includes/script-loader.php:353 +msgid "Turn off Fullscreen" +msgstr "Quitter le plein écran" + +#: wp-includes/script-loader.php:302 +msgid "“%s” has failed to upload." +msgstr "« %s » n’a pas pu être mis en ligne." + +#: wp-includes/script-loader.php:301 +msgid "moved to the trash." +msgstr "déplacé dans la corbeille." + +#: wp-includes/script-loader.php:300 +msgid "Crunching…" +msgstr "En cours de traitement…" + +#: wp-includes/script-loader.php:298 +msgid "Upload stopped." +msgstr "L’envoi est stoppé." + +#: wp-includes/script-loader.php:297 +msgid "File canceled." +msgstr "Fichier annulé." + +#: wp-includes/script-loader.php:296 +msgid "Security error." +msgstr "Erreur de sécurité." + +#: wp-includes/script-loader.php:295 +msgid "IO error." +msgstr "Erreur I/O (entrées-sorties)." + +#: wp-includes/script-loader.php:294 +msgid "%s exceeds the maximum upload size for the multi-file uploader when used in your browser." +msgstr "%s dépasse la limite d’envoi pour l’outil de mise ne ligne multiple utilisé avec votre navigateur." + +#. translators: 1: Opening link tag, 2: Closing link tag +#: wp-includes/script-loader.php:293 +msgid "Please try uploading this file with the %1$sbrowser uploader%2$s." +msgstr "Veuillez essayer de mettre ce fichier en ligne à l’aide de l’%1$soutil du navigateur%2$s." + +#: wp-includes/script-loader.php:291 +msgid "Upload failed." +msgstr "L’envoi a échoué." + +#: wp-includes/script-loader.php:290 +msgid "HTTP error." +msgstr "Erreur HTTP." + +#: wp-includes/script-loader.php:289 +msgid "You may only upload 1 file." +msgstr "Vous pouvez seulement envoyer 1 fichier." + +#: wp-includes/script-loader.php:288 +msgid "There was a configuration error. Please contact the server administrator." +msgstr "Il y a une erreur de configuration. Veuillez contacter l’administrateur de votre serveur." + +#: wp-includes/script-loader.php:287 +msgid "An error occurred in the upload. Please try again later." +msgstr "Une erreur est survenue lors de l’envoi. Veuillez réessayer plus tard." + +#: wp-includes/script-loader.php:286 +msgid "This is larger than the maximum size. Please try another." +msgstr "Ce fichier est plus grand que la taille maximale. Merci d’en envoyer un autre." + +#: wp-includes/script-loader.php:285 +msgid "Memory exceeded. Please try another smaller file." +msgstr "Mémoire dépassée. Veuillez réessayer avec un fichier plus petit." + +#: wp-includes/script-loader.php:284 +msgid "This file is not an image. Please try another." +msgstr "Ce fichier n’est pas une image. Merci d’en envoyer un autre." + +#: wp-includes/script-loader.php:283 +msgid "This file type is not allowed. Please try another." +msgstr "Ce type de fichier n’est pas autorisé. Merci d’en essayer un autre." + +#: wp-includes/script-loader.php:282 +msgid "This file is empty. Please try another." +msgstr "Le fichier est vide. Merci d’en essayer un autre." + +#: wp-includes/script-loader.php:281 +msgid "%s exceeds the maximum upload size for this site." +msgstr "%s dépasse la limite d’envoi de ce site." + +#: wp-includes/script-loader.php:280 +msgid "You have attempted to queue too many files." +msgstr "Vous essayez d’envoyer trop de fichiers à la fois." + +#: wp-includes/script-loader.php:270 +msgid "This feature requires inline frames. You have iframes disabled or your browser does not support them." +msgstr "Cette fonctionnalité requiert des iframes. Les iframes sont désactivées sur votre navigateur, ou alors il ne les accepte pas." + +#: wp-includes/script-loader.php:268 +msgid "of" +msgstr "sur" + +#: wp-includes/script-loader.php:267 +msgid "Image" +msgstr "Image" + +#: wp-includes/script-loader.php:266 +msgid "< Prev" +msgstr "< Préc." + +#: wp-includes/script-loader.php:265 +msgid "Next >" +msgstr "Suiv. >" + +#: wp-includes/script-loader.php:239 +msgid "Item selected." +msgstr "Élément sélectionné." + +#. translators: %d: Number of results found when using jQuery UI Autocomplete +#: wp-includes/script-loader.php:238 +msgid "%d results found. Use up and down arrow keys to navigate." +msgstr "%d résultats trouvés. Utilisez les flèches haut et bas du clavier pour les parcourir." + +#. translators: Number of results found when using jQuery UI Autocomplete +#: wp-includes/script-loader.php:236 +msgid "1 result found. Use up and down arrow keys to navigate." +msgstr "Un résultat trouvé. Utilisez les flèches haut et bas du clavier pour les parcourir. " + +#: wp-includes/script-loader.php:157 +msgid "Your session has expired. You can log in again from this page or go to the login page." +msgstr "Votre session a expiré. Vous pouvez vous reconnecter depuis cette page ou aller à la page de connexion." + +#: wp-includes/script-loader.php:138 wp-includes/script-loader.php:299 +msgid "Dismiss" +msgstr "Fermer" + +#: wp-includes/script-loader.php:133 wp-includes/script-loader.php:518 +msgid "An unidentified error has occurred." +msgstr "Une erreur non identifiée est survenue." + +#: wp-includes/script-loader.php:119 +msgid "Close code tag" +msgstr "Balise de fermeture du code" + +#: wp-includes/script-loader.php:117 +msgid "Close list item tag" +msgstr "Balise de fermeture de l’élément de liste" + +#: wp-includes/script-loader.php:116 +msgid "List item" +msgstr "Élément de liste" + +#: wp-includes/script-loader.php:115 +msgid "Close numbered list tag" +msgstr "Fermer la balise de liste numérotée" + +#: wp-includes/script-loader.php:113 +msgid "Close bulleted list tag" +msgstr "Fermer la balise de liste à puces" + +#: wp-includes/script-loader.php:110 +msgid "Close inserted text tag" +msgstr "Fermer la balise d’insertion de texte" + +#: wp-includes/script-loader.php:109 +msgid "Inserted text" +msgstr "Texte inséré" + +#: wp-includes/script-loader.php:108 +msgid "Close deleted text tag" +msgstr "Fermer la baliste de texte supprimé" + +#: wp-includes/script-loader.php:107 +msgid "Deleted text (strikethrough)" +msgstr "Texte supprimé (barré)" + +#: wp-includes/script-loader.php:106 +msgid "Close blockquote tag" +msgstr "Fermer la balise de citation" + +#: wp-includes/script-loader.php:104 +msgid "Insert link" +msgstr "Insérer un lien" + +#: wp-includes/script-loader.php:103 +msgid "Close italic tag" +msgstr "Fermer la balise d’italique" + +#: wp-includes/script-loader.php:101 +msgid "Close bold tag" +msgstr "Fermer la balise de gras" + +#: wp-includes/script-loader.php:98 +msgid "Toggle Editor Text Direction" +msgstr "Inverser la direction de l’éditeur de texte" + +#: wp-includes/script-loader.php:97 +msgid "text direction" +msgstr "direction du texte" + +#: wp-includes/script-loader.php:96 +msgid "Enter a description of the image" +msgstr "Saisissez une description pour l’image" + +#: wp-includes/script-loader.php:95 +msgid "Enter the URL of the image" +msgstr "Saisissez l’adresse de l’image" + +#: wp-includes/script-loader.php:94 +msgid "Enter the URL" +msgstr "Saisissez l’adresse" + +#: wp-includes/script-loader.php:93 +msgid "close tags" +msgstr "fermer les balises" + +#: wp-includes/script-loader.php:92 +msgid "Close all open tags" +msgstr "Fermer toutes les balises ouvertes" + +#: wp-includes/script-loader.php:83 +msgid "Expand Main menu" +msgstr "Déplier le menu principal" + +#: wp-includes/script-loader.php:82 +msgid "Collapse Main menu" +msgstr "Replier le menu principal" + +#: wp-includes/script-loader.php:81 +msgid "Dismiss this notice." +msgstr "Ne pas tenir compte de ce message." + +#: wp-includes/rss.php:917 wp-includes/widgets.php:1251 +msgid "An error has occurred, which probably means the feed is down. Try again later." +msgstr "Une erreur est survenue, le flux est probablement indisponible. Veuillez réessayer plus tard." + +#: wp-includes/revision.php:550 +msgid "Sorry, you are not allowed to preview drafts." +msgstr "Désolé, vous n’avez pas l’autorisation de prévisualiser les brouillons." + +#: wp-includes/revision.php:295 +msgid "Cannot create a revision of a revision" +msgstr "Impossible de créer une version d’une version." + +#: wp-includes/revision.php:36 +msgid "Excerpt" +msgstr "Extrait" + +#: wp-includes/revision.php:35 +msgid "Content" +msgstr "Contenu" + +#. translators: 1: parameter, 2: minimum number, 3: maximum number +#: wp-includes/rest-api.php:1127 +msgid "%1$s must be between %2$d (inclusive) and %3$d (inclusive)" +msgstr "%1$s doit être compris entre %2$d (inclus) et %3$d (inclus)" + +#. translators: 1: parameter, 2: minimum number, 3: maximum number +#: wp-includes/rest-api.php:1122 +msgid "%1$s must be between %2$d (exclusive) and %3$d (inclusive)" +msgstr "%1$s doit être compris entre %2$d (exclu) et %3$d (inclus)" + +#. translators: 1: parameter, 2: minimum number, 3: maximum number +#: wp-includes/rest-api.php:1117 +msgid "%1$s must be between %2$d (inclusive) and %3$d (exclusive)" +msgstr "%1$s doit être compris entre %2$d (inclus) et %3$d (exclu)" + +#. translators: 1: parameter, 2: minimum number, 3: maximum number +#: wp-includes/rest-api.php:1112 +msgid "%1$s must be between %2$d (exclusive) and %3$d (exclusive)" +msgstr "%1$s doit être compris entre %2$d (exclu) et %3$d (exclu)" + +#. translators: 1: parameter, 2: maximum number +#: wp-includes/rest-api.php:1106 +msgid "%1$s must be less than %2$d (inclusive)" +msgstr "%1$s doit être inférieur à %2$d (inclus)" + +#. translators: 1: parameter, 2: maximum number +#: wp-includes/rest-api.php:1103 +msgid "%1$s must be less than %2$d (exclusive)" +msgstr "%1$s doit être inférieur à %2$d (exclu)" + +#. translators: 1: parameter, 2: minimum number +#: wp-includes/rest-api.php:1098 +msgid "%1$s must be greater than %2$d (inclusive)" +msgstr "%1$s doit être supérieur à %2$d (inclus)" + +#. translators: 1: parameter, 2: minimum number +#: wp-includes/rest-api.php:1095 +msgid "%1$s must be greater than %2$d (exclusive)" +msgstr "%1$s doit être supérieur à %2$d (exclu)" + +#. translators: %s: IP address +#: wp-includes/rest-api.php:1085 +msgid "%s is not a valid IP address." +msgstr "%s n’est pas une adresse IP valide." + +#. translators: 1: parameter, 2: list of valid values +#: wp-includes/rest-api.php:1041 +msgid "%1$s is not one of %2$s." +msgstr "Le paramètre %1$s devrait avoir l’une de ces valeurs : %2$s." + +#. translators: 1: parameter, 2: type name +#: wp-includes/rest-api.php:1029 wp-includes/rest-api.php:1047 +#: wp-includes/rest-api.php:1052 wp-includes/rest-api.php:1057 +#: wp-includes/rest-api.php:1062 +msgid "%1$s is not of type %2$s." +msgstr "Le paramètre %1$s n’est pas de type %2$s." + +#: wp-includes/rest-api.php:726 +msgid "Cookie nonce is invalid" +msgstr "Le nonce du cookie n’est pas valide" + +#. translators: 1: function name, 2: WordPress version number, 3: error message +#: wp-includes/rest-api.php:507 +msgid "%1$s (since %2$s; %3$s)" +msgstr "%1$s (depuis la %2$s ; %3$s)" + +#. translators: 1: function name, 2: WordPress version number +#: wp-includes/rest-api.php:489 wp-includes/rest-api.php:510 +msgid "%1$s (since %2$s; no alternative available)" +msgstr "%1$s (depuis la %2$s ; pas d’alternative disponible)" + +#. translators: 1: function name, 2: WordPress version number, 3: new function +#. name +#: wp-includes/rest-api.php:486 +msgid "%1$s (since %2$s; use %3$s instead)" +msgstr "%1$s (depuis la %2$s ; utilisez %3$s à la place)" + +#: wp-includes/rest-api.php:45 +msgid "Route must be specified." +msgstr "Une route doit être renseignée." + +#: wp-includes/rest-api.php:42 +msgid "Routes must be namespaced with plugin or theme name and version." +msgstr "Les routes doivent posséder un espace de noms en lien avec le nom et la version de l’extension ou du thème." + +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:390 +msgid "Meta fields." +msgstr "Champs métas." + +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:254 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:264 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:311 +msgid "Could not update meta value in database." +msgstr "La mise à jour de la valeur de la méta en base de données n’est pas possible." + +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:191 +msgid "Could not delete meta value from database." +msgstr "La suppression de la valeur de la méta en base de données n’est pas possible." + +#. translators: %s: custom field key +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:183 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:219 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:291 +msgid "Sorry, you are not allowed to edit the %s custom field." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier le champ personnalisé %s." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1366 +msgid "Limit result set to users matching at least one specific role provided. Accepts csv list or single role." +msgstr "Limiter le résultat aux utilisateurs correspondants à au moins un rôle spécifique fourni. Accepte les listes de type CSV ou les rôles uniques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1358 +msgid "Limit result set to users with a specific slug." +msgstr "Limiter les résultats aux utilisateurs avec un identifiant spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1286 +msgid "Avatar URLs for the user." +msgstr "URL d’avatar pour l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1262 +msgid "Any extra capabilities assigned to the user." +msgstr "Les capacités supplémentaires affectées à l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1256 +msgid "All capabilities assigned to the user." +msgstr "Toutes les capacités affectées à l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1247 +msgid "Password for the user (never included)." +msgstr "Mot de passe pour l’utilisateur (jamais inclus)." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1239 +msgid "Roles assigned to the user." +msgstr "Rôles assignés à l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1232 +msgid "Registration date for the user." +msgstr "Date d’enregistrement de l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1224 +msgid "An alphanumeric identifier for the user." +msgstr "Un identificateur alphanumérique pour l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1216 +msgid "The nickname for the user." +msgstr "Le surnom de l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1210 +msgid "Locale for the user." +msgstr "Langue de l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1203 +msgid "Author URL of the user." +msgstr "URL auteur pour l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1198 +msgid "Description of the user." +msgstr "Description de l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1192 +msgid "URL of the user." +msgstr "URL de l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1185 +msgid "The email address for the user." +msgstr "L’adresse e-mail pour l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1177 +msgid "Last name for the user." +msgstr "Nom de l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1169 +msgid "First name for the user." +msgstr "Prénom de utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1161 +msgid "Display name for the user." +msgstr "Nom affiché pour l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1152 +msgid "Login name for the user." +msgstr "Nom de connexion pour l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1125 +msgid "Passwords cannot contain the \"\\\" character." +msgstr "Les mots de passe ne peuvent pas contenir le caractère « \\ »." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1121 +msgid "Passwords cannot be empty." +msgstr "Le champ texte mot de passe ne peut être vide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1092 +msgid "Username contains invalid characters." +msgstr "Le nom d’utilisateur contient des caractères non valides." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1059 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1069 +msgid "Sorry, you are not allowed to give users that role." +msgstr "Désolé, vous n’avez pas l’autorisation de donner ce rôle aux utilisateurs." + +#. translators: %s: role key +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1045 +msgid "The role %s does not exist." +msgstr "Le rôle %s n’existe pas." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:751 +msgid "Invalid user ID for reassignment." +msgstr "ID utilisateur non valide pour réaffectation" + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:746 +msgid "Users do not support trashing. Set force=true to delete." +msgstr "Les utilisateurs ne peuvent pas être mis à la corbeille. Utilisez le paramètre force=true pour supprimer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:733 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:765 +msgid "The user cannot be deleted." +msgstr "L’utilisateur ne peut pas être supprimé." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:715 +msgid "Sorry, you are not allowed to delete this user." +msgstr "Désolé, vous n’avez pas l’autorisation de supprimer cet utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:613 +msgid "Invalid slug." +msgstr "Identifiant non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:609 +msgid "Username isn't editable." +msgstr "Le nom d’utilisateur n’est pas modifiable." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:605 +#: wp-includes/rest-api.php:1079 +msgid "Invalid email address." +msgstr "Adresse de messagerie non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:577 +msgid "Sorry, you are not allowed to edit roles of this user." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier le rôle de cet utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:495 +msgid "Error creating new user." +msgstr "Erreur de création de nouvel utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:459 +msgid "Cannot create existing user." +msgstr "Impossible de créer un utilisateur existant." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:442 +msgid "Sorry, you are not allowed to create new users." +msgstr "Désolé, vous n’avez pas l’autorisation de créer de nouveaux utilisateurs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:419 +msgid "You are not currently logged in." +msgstr "Vous n’êtes actuellement pas connecté(e)." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:190 +msgid "Sorry, you are not allowed to order users by this parameter." +msgstr "Désolé, vous n’avez pas l’autorisation de trier les utilisateurs avec ce paramètre." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:182 +msgid "Sorry, you are not allowed to filter users by role." +msgstr "Désolé, vous n’avez pas l’autorisation de filtrer les utilisateurs par rôle." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:167 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:478 +msgid "Invalid user parameter(s)." +msgstr "Paramètre(s) utilisateur non valide(s)." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:100 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:135 +msgid "Reassign the deleted user's posts and links to this user ID." +msgstr "Réaffectez les articles et les liens de l’utilisateur supprimé à cet ID d’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:96 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:131 +msgid "Required to be true, as users do not support trashing." +msgstr "Nécessite la valeur \"true\", car l’utilisateur ne supporte pas la suppression forcée." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:70 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1146 +msgid "Unique identifier for the user." +msgstr "Identificateur unique pour l’utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:981 +msgid "Limit result set to terms with a specific slug." +msgstr "Limiter le résultat aux termes avec un identifiant spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:975 +msgid "Limit result set to terms assigned to a specific post." +msgstr "Limiter le résultat aux termes assignés à un article spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:969 +msgid "Limit result set to terms assigned to a specific parent." +msgstr "Résultats limités aux termes ayant un parent spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:962 +msgid "Whether to hide terms not assigned to any posts." +msgstr "Que ce soit pour masquer des termes non affectées à des articles." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:947 +msgid "Sort collection by term attribute." +msgstr "Trier la collection par attributs de terme." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:886 +msgid "The parent term ID." +msgstr "L’ID du terme parent." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:873 +msgid "Type attribution for the term." +msgstr "Type attribué pour le terme." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:865 +msgid "An alphanumeric identifier for the term unique to its type." +msgstr "Un identificateur alphanumérique pour le terme, propre au type de la ressource." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:856 +msgid "HTML title for the term." +msgstr "Titre HTML pour le terme." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:849 +msgid "URL of the term." +msgstr "URL du terme." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:844 +msgid "HTML description of the term." +msgstr "Description HTML du terme." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:838 +msgid "Number of published posts for the term." +msgstr "Nombre de publications publiées pour le terme." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:605 +msgid "The term cannot be deleted." +msgstr "Le terme ne peut pas être supprimé." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:595 +msgid "Terms do not support trashing. Set force=true to delete." +msgstr "Les termes ne peuvent pas être mis à la corbeille. Utilisez le paramètre force=true pour supprimer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:406 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:512 +msgid "Parent term doesn't exist." +msgstr "Le terme parent n’existe pas." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:400 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:506 +msgid "Can not set parent term, taxonomy is not hierarchical." +msgstr "Impossible de définir un terme parent, la taxonomie n’est pas hiérarchique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:382 +msgid "Sorry, you are not allowed to create new terms." +msgstr "Désolé, vous n’avez pas l’autorisation de créer de nouveaux termes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:305 +msgid "Term does not exist." +msgstr "Le terme n’existe pas." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:150 +msgid "Sorry, you are not allowed to edit terms in this taxonomy." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier les termes de cette taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:127 +msgid "Required to be true, as terms do not support trashing." +msgstr "Nécessite la valeur \"true\", car les termes ne supportent pas la suppression forcée. " + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:101 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:832 +msgid "Unique identifier for the term." +msgstr "Identificateur unique pour le terme." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:317 +msgid "Limit results to taxonomies associated with a specific post type." +msgstr "Limiter les résultats aux taxinomies associées un type de contenu spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:295 +msgid "REST base route for the taxonomy." +msgstr "Route de base REST pour la taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:286 +msgid "Types associated with the taxonomy." +msgstr "Le type associé avec la taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:280 +msgid "Whether or not the term cloud should be displayed." +msgstr "Définit si le nuage de termes doit être affiché ou non." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:268 +msgid "The title for the taxonomy." +msgstr "Le titre pour la taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:262 +msgid "Human-readable labels for the taxonomy for various contexts." +msgstr "Libellés lisibles par un humain pour la taxonomie dans divers contextes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:256 +msgid "Whether or not the taxonomy should have children." +msgstr "Définit si la taxonomie doit avoir des enfants ou non." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:250 +msgid "A human-readable description of the taxonomy." +msgstr "Une description de la taxonomie lisible par l’humain." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:244 +msgid "All capabilities used by the taxonomy." +msgstr "Toutes les capacités utilisées par la taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:90 +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:150 +msgid "Sorry, you are not allowed to manage terms in this taxonomy." +msgstr "Désolé, vous n’avez pas l’autorisation de gérer les termes de cette taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:53 +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:274 +msgid "An alphanumeric identifier for the taxonomy." +msgstr "Un identificateur alphanumérique pour la taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:203 +msgid "The %s property has an invalid stored value, and cannot be updated to null." +msgstr "La propriété %s a une valeur stockée non valide, et ne peut pas être enregistrée comme nulle." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:302 +msgid "Revisions do not support trashing. Set force=true to delete." +msgstr "Les révisions ne peuvent pas être mises à la corbeille. Utilisez le paramètre force=true pour supprimer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:179 +msgid "Invalid revision ID." +msgstr "ID de révision non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:164 +msgid "Sorry, you are not allowed to view revisions of this post." +msgstr "Désolé, vous n’avez pas l’autorisation de voir les révisions de cet article." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:116 +msgid "Required to be true, as revisions do not support trashing." +msgstr "Nécessite la valeur \"true\", car les révisions ne supportent pas la suppression forcée. " + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2261 +msgid "Status is forbidden." +msgstr "L’état est interdit." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2206 +msgid "Limit result set to items that are sticky." +msgstr "Limiter les résultats aux éléments qui sont épinglés." + +#. translators: %s: taxonomy name +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2195 +msgid "Limit result set to all items except those that have the specified term assigned in the %s taxonomy." +msgstr "Limiter le jeu de résultats à tous les éléments sauf ceux qui ont un terme spécifique assigné à la taxonomie %s." + +#. translators: %s: taxonomy name +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2185 +msgid "Limit result set to all items that have the specified term assigned in the %s taxonomy." +msgstr "Limiter le jeu de résultats aux éléments qui ont le terme spécifié assigné dans la taxonomie %s." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2169 +msgid "Limit result set to posts assigned one or more statuses." +msgstr "Limiter le jeu de résultats aux articles associés à un ou plusieurs états." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2159 +msgid "Limit result set to posts with one or more specific slugs." +msgstr "Limiter le jeu de résultats aux articles ayant au moins un identifiant particulier." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2149 +msgid "Limit result set to all items except those of a particular parent ID." +msgstr "Limiter le jeu de résultats à tous les résultats, exceptés ceux dont le parent porte un ID spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2141 +msgid "Limit result set to those of particular parent IDs." +msgstr "Limiter le jeu de résultats à ceux qui ont un ID parent particulier." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2102 +msgid "Limit result set to posts with a specific menu_order value." +msgstr "Limiter le jeu de résultats aux articles ayant une valeur menu_order spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2077 +msgid "Limit response to posts published before a given ISO8601 compliant date." +msgstr "Limiter la réponse aux articles publiés avant une date définie et conforme à la norme ISO8601. " + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2067 +msgid "Ensure result set excludes posts assigned to specific authors." +msgstr "S’assurer que le jeu de résultats exclut les articles assignés à des auteurs spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2059 +msgid "Limit result set to posts assigned to specific authors." +msgstr "Limiter les résultats aux publications assignées à des auteurs spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2052 +msgid "Limit response to posts published after a given ISO8601 compliant date." +msgstr "Limiter la réponse aux articles publiés après une date définie et conforme à la norme ISO8601. " + +#. translators: %s: taxonomy name +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2026 +msgid "The terms assigned to the object in the %s taxonomy." +msgstr "Les termes assignés à l’objet dans la taxonomie %s." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2015 +msgid "The theme file to use to display the object." +msgstr "Le fichier de thème à utiliser pour afficher l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2008 +msgid "Whether or not the object should be treated as sticky." +msgstr "Définit si l’objet doit être traité en tant que contenu épinglé ou non." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1992 +msgid "The format for the object." +msgstr "Le format pour l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1981 +msgid "The order of the object in relation to other object of its type." +msgstr "L’ordre de l’objet en relation à d’autres objets du même type." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1972 +msgid "Whether or not the object can be pinged." +msgstr "Définit si l’objet peut recevoir un ping ou non." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1966 +msgid "Whether or not comments are open on the object." +msgstr "Définit si les commentaires sont ouverts ou non pour cet objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1958 +msgid "The ID of the featured media for the object." +msgstr "L’ID du média mis en avant pour l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1947 +msgid "Whether the excerpt is protected with a password." +msgstr "Définit si l’extrait est protégé par un mot de passe ou non." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1941 +msgid "HTML excerpt for the object, transformed for display." +msgstr "Extrait HTML pour l’objet, mis en forme pour l’affichage." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1936 +msgid "Excerpt for the object, as it exists in the database." +msgstr "L’extrait pour l’objet, tel qu’il existe dans la base de données." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1928 +msgid "The excerpt for the object." +msgstr "L’extrait pour l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1920 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:471 +msgid "The ID for the author of the object." +msgstr "L’ID pour l’auteur de l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1909 +msgid "Whether the content is protected with a password." +msgstr "Définit si le contenu est protégé par mot de passe ou non." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1879 +msgid "HTML title for the object, transformed for display." +msgstr "Le titre HTML pour l’objet, mis en forme pour l’affichage." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1874 +msgid "Title for the object, as it exists in the database." +msgstr "Le titre pour l’objet, tel qu’il existe dans la base de données. " + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1866 +msgid "The title for the object." +msgstr "Le titre pour l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1795 +msgid "A password to protect access to the content and excerpt." +msgstr "Un mot de passe pour protéger l’accès au contenu et à l’extrait." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1789 +msgid "Type of Post for the object." +msgstr "Le type de publication de l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1783 +msgid "A named status for the object." +msgstr "Un état nommé pour l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1775 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:515 +msgid "An alphanumeric identifier for the object unique to its type." +msgstr "Un identificateur alphanumérique pour l’objet unique de son type." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1768 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:504 +msgid "The date the object was last modified, as GMT." +msgstr "La dernière date GMT à laquelle l’objet a été modifié." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1761 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:498 +msgid "The date the object was last modified, in the site's timezone." +msgstr "La date de dernière modification de l’objet, dans le fuseau horaire du site." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1740 +msgid "GUID for the object, transformed for display." +msgstr "GUID pour l’objet, transformé pour l’affichage." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1734 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:488 +msgid "GUID for the object, as it exists in the database." +msgstr "GUID pour cet objet, tel qu’il existe dans la base de données." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1728 +msgid "The globally unique identifier for the object." +msgstr "L’identifiant unique global pour cet objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1155 +msgid "Invalid featured media ID." +msgstr "ID du média mis en avant non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1064 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:134 +msgid "Invalid post parent ID." +msgstr "ID du contenu parent non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1053 +msgid "A password protected post can not be set to sticky." +msgstr "Un contenu protégé par mot de passe ne peut pas être épinglé." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1046 +msgid "A sticky post can not be password protected." +msgstr "Un contenu épinglé ne peut pas être protégé par un mot de passe." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1042 +msgid "A post can not be sticky and have a password." +msgstr "Un contenu ne peut pas être épinglé et être protégé par un mot de passe." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:823 +msgid "The post has already been deleted." +msgstr "Ce contenu a déjà été supprimé." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:818 +msgid "The post does not support trashing. Set force=true to delete." +msgstr "L’article ne peut pas être mis à la corbeille. Utilisez le paramètre force=true pour supprimer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:640 +msgid "Sorry, you are not allowed to update posts as this user." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre à jour des articles sous cet identifiant." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:508 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:648 +msgid "Sorry, you are not allowed to assign the provided terms." +msgstr "Désolé, vous n’avez pas l’autorisation d’attribuer les termes proposés." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:490 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:525 +msgid "Cannot create existing post." +msgstr "Impossible de créer un article existant déjà." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:405 +msgid "Incorrect post password." +msgstr "Mot de passe de l’article incorrect." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:158 +msgid "You need to define a search term to order by relevance." +msgstr "Vous devez définir un terme à rechercher pour ordonner par pertinence." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:258 +msgid "REST base route for the post type." +msgstr "Route de base REST pour le type de contenu." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:249 +msgid "Taxonomies associated with post type." +msgstr "Taxinomies associées avec ce type de contenu." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:237 +msgid "The title for the post type." +msgstr "Le titre pour le type de contenu." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:231 +msgid "Human-readable labels for the post type for various contexts." +msgstr "Libellés lisibles par un humain pour le type de contenu dans divers contextes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:225 +msgid "Whether or not the post type should have children." +msgstr "Définir si le type de contenu doit avoir des enfants ou non." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:219 +msgid "A human-readable description of the post type." +msgstr "Une description du type de contenu lisible par l’humain. " + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:213 +msgid "All capabilities used by the post type." +msgstr "Toutes les capacités utilisées par le type de contenu." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:132 +msgid "Cannot view post type." +msgstr "Impossible d’affiche le type de contenu." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:53 +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:243 +msgid "An alphanumeric identifier for the post type." +msgstr "Un identificateur alphanumérique pour le type de contenu." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:287 +msgid "Whether to include posts in the edit listing for their post type." +msgstr "Détermine s’il faut inclure les articles dans le listing de modifications pour leur type de contenu." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:281 +msgid "Whether posts with this status should be publicly-queryable." +msgstr "Définir si les articles avec cet état devraient être requétables publiquement." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:275 +msgid "Whether posts of this status should be shown in the front end of the site." +msgstr "Détermine si les articles avec cet état devraient être affichés sur l’interface publique du site." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:269 +msgid "Whether posts with this status should be protected." +msgstr "Détermine si les articles ayant cet été doivent être protégés." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:263 +msgid "Whether posts with this status should be private." +msgstr "Détermine si les articles avec cet état devraient être privés." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:257 +msgid "The title for the status." +msgstr "Le titre pour l’état." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:140 +msgid "Cannot view status." +msgstr "Impossible d’afficher l’état." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:134 +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:186 +msgid "Invalid status." +msgstr "État non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:53 +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:293 +msgid "An alphanumeric identifier for the status." +msgstr "Un identificateur alphanumérique pour l’état." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:355 +msgid "Scope under which the request is made; determines fields present in response." +msgstr "Le contexte dans lequel la requête est faite ; cela détermine les champs renvoyés." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:334 +msgid "Limit results to those matching a string." +msgstr "Limiter les résultats à ceux qui correspondent à une chaîne de caractères." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:325 +msgid "Maximum number of items to be returned in result set." +msgstr "Nombre maximal d’éléments à renvoyer dans le groupe de résultats." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:317 +msgid "Current page of the collection." +msgstr "Page courante dans la collection." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:55 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:68 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:81 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:94 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:107 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:120 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:133 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:146 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:159 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:172 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:185 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:199 +msgid "Method '%s' not implemented. Must be overridden in subclass." +msgstr "La méthode « %s » n’est pas implémentée. Cela devrait être surchargé en sous-classe." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:42 +msgid "The register_routes() method must be overridden" +msgstr "La méthode register_routes() doit être surchargée par une autre" + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1439 +msgid "Limit result set to comments assigned a specific type. Requires authorization." +msgstr "Limite le jeu de résultats aux commentaires assignés à un type spécifique. Nécessite des droits spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1431 +msgid "Limit result set to comments assigned a specific status. Requires authorization." +msgstr "Limiter le jeu de résultats aux commentaires assignés à un état spécifique. Nécessite les droits correspondants." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1422 +msgid "Limit result set to comments assigned to specific post IDs." +msgstr "Limite le jeu de résultats aux commentaires assignés à des ID d’articles spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1413 +msgid "Ensure result set excludes specific parent IDs." +msgstr "S’assure que le jeu de résultats exclut des ID parents spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1404 +msgid "Limit result set to comments of specific parent IDs." +msgstr "Limiter le jeu de résultats aux commentaires ayant un ID parent spécifique." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1388 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2120 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1344 +msgid "Sort collection by object attribute." +msgstr "Trier la collection par attribut d’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1378 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2113 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:937 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1337 +msgid "Order sort attribute ascending or descending." +msgstr "Le paramètre order trie les attributs dans l’ordre croissant ou décroissant." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1373 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2108 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:931 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1331 +msgid "Offset the result set by a specific number of items." +msgstr "Ignorer un nombre spécifique d’éléments au sein du jeu de résultats." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1364 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2092 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:921 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1322 +msgid "Limit result set to specific IDs." +msgstr "Limiter le groupe de résultats aux ID spécifiés." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1355 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2083 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:912 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1313 +msgid "Ensure result set excludes specific IDs." +msgstr "S’assure que le jeu de résultats exclut des ID spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1349 +msgid "Limit response to comments published before a given ISO8601 compliant date." +msgstr "Limiter les réponses aux commentaires publiés avant une date donnée et conforme ISO8601." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1343 +msgid "Limit result set to that from a specific author email. Requires authorization." +msgstr "Limiter le jeu de résultats à une adresse email d’auteur spécifique. Nécessite les droits correspondants." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1334 +msgid "Ensure result set excludes comments assigned to specific user IDs. Requires authorization." +msgstr "S’assurer que le jeu de résultats exclut les commentaires assignés aux ID utilisateurs spécifiés. Nécessite des droits spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1326 +msgid "Limit result set to comments assigned to specific user IDs. Requires authorization." +msgstr "Limiter le jeu de résultats aux commentaires assignés aux ID utilisateurs spécifiés. Nécessite des droits spécifiques." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1320 +msgid "Limit response to comments published after a given ISO8601 compliant date." +msgstr "Limiter les réponses aux commentaires publiés après une date donnée et conforme ISO8601." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1293 +msgid "Avatar URLs for the object author." +msgstr "URLs d’avatar pour l’objet author." + +#. translators: %d: avatar image size in pixels +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1285 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1278 +msgid "Avatar URL with image size of %d pixels." +msgstr "URL d’avatar avec une taille d’image de %d pixels." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1270 +msgid "Type of Comment for the object." +msgstr "Type de commentaire pour l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1262 +msgid "State of the object." +msgstr "État de l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1256 +msgid "The ID of the associated post object." +msgstr "L’ID de l’objet article associé." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1250 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1806 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:76 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:92 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:510 +msgid "The ID for the parent of the object." +msgstr "L’ID du parent de l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1243 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1754 +msgid "URL to the object." +msgstr "URL de l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1237 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1722 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:482 +msgid "The date the object was published, as GMT." +msgstr "La date à laquelle l’objet a été publié, au format GMT." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1231 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1716 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:476 +msgid "The date the object was published, in the site's timezone." +msgstr "La date à laquelle l’objet a été publié, dans le fuseau horaire du site." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1223 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1903 +msgid "HTML content for the object, transformed for display." +msgstr "Contenu HTML pour l’objet, transformé pour l’affichage." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1218 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1898 +msgid "Content for the object, as it exists in the database." +msgstr "Contenu pour cet objet, tel qu’il existe dans la base de données." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1210 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1890 +msgid "The content for the object." +msgstr "Le contenu pour cet objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1202 +msgid "User agent for the object author." +msgstr "Agent utilisateur pour l‘objet author." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1196 +msgid "URL for the object author." +msgstr "URL pour l’objet auteur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1188 +msgid "Display name for the object author." +msgstr "Nom d’affichage pour l’objet auteur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1182 +msgid "IP address for the object author." +msgstr "Adresse IP de l’auteur de l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1172 +msgid "Email address for the object author." +msgstr "Adresse de messagerie pour l’objet auteur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1167 +msgid "The ID of the user object, if author was a user." +msgstr "L’ID de l’objet user, si l’auteur était un utilisateur." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1089 +msgid "Invalid comment author ID." +msgstr "ID de l’auteur du commentaire non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:833 +msgid "The comment cannot be deleted." +msgstr "Le commentaire ne peut pas être supprimé." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:824 +msgid "The comment has already been trashed." +msgstr "Le commentaire a déjà été placé dans la corbeille." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:820 +msgid "The comment does not support trashing. Set force=true to delete." +msgstr "Le commentaire ne peut pas être mis à la corbeille. Utilisez le paramètre force=true pour supprimer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:776 +msgid "Sorry, you are not allowed to delete this comment." +msgstr "Désolé, vous vous n’avez pas l’autorisation de supprimer ce commentaire." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:724 +msgid "Updating comment failed." +msgstr "La mise à jour du commentaire a échoué." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:702 +msgid "Updating comment status failed." +msgstr "La mise à jour de l’état du commentaire a échoué." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:681 +msgid "Sorry, you are not allowed to change the comment type." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier le type de commentaire." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:657 +msgid "Sorry, you are not allowed to edit this comment." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier ce commentaire." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:590 +msgid "Creating comment failed." +msgstr "La création du commentaire a échoué." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:555 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:718 +msgid "Comment field exceeds maximum length allowed." +msgstr "Le champ de commentaire dépasse la longueur maximum autorisée." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:536 +msgid "Creating a comment requires valid author name and email values." +msgstr "La création d’un commentaire nécessite une valeur valide pour le nom d’auteur et l’e-mail." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:510 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:710 +msgid "Invalid comment content." +msgstr "Contenu du commentaire non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:495 +msgid "Cannot create a comment with that type." +msgstr "Impossible de créer un commentaire avec ce type." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:490 +msgid "Cannot create existing comment." +msgstr "Impossible de créer un commentaire qui existe déjà." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:461 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:465 +msgid "Sorry, you are not allowed to create a comment on this post." +msgstr "Désolé, vous n’avez pas l’autorisation de créer un commentaire sur cet article." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:452 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:457 +msgid "Sorry, you are not allowed to create this comment without a post." +msgstr "Désolé, vous n’avez pas l’autorisation de créer ce commentaire sans un article." + +#. translators: %s: request parameter +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:428 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:437 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:446 +msgid "Sorry, you are not allowed to edit '%s' for comments." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier « %s » pour les commentaires." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:360 +msgid "Sorry, you are not allowed to read this comment." +msgstr "Désolé, vous n’avez pas l’autorisation de lire ce commentaire." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:156 +msgid "Query parameter not permitted: %s" +msgstr "Paramètre de requête non autorisé : %s" + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:134 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:354 +msgid "Sorry, you are not allowed to edit comments." +msgstr "Désolé, vous n’avez pas l’autorisation de modifier des commentaires." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:128 +msgid "Sorry, you are not allowed to read comments without a post." +msgstr "Désolé, vous n’avez pas l’autorisation de lire les commentaires sans article." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:126 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:364 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:469 +msgid "Sorry, you are not allowed to read the post for this comment." +msgstr "Désolé, vous n’avez pas l’autorisation de lire l’article pour ce commentaire." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:98 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:117 +msgid "Whether to bypass trash and force deletion." +msgstr "Que ce soit pour éviter la corbeille ou forcer la suppression." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:79 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:101 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1446 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:86 +msgid "The password for the post if it is password protected." +msgstr "Le mot de passe pour cet article, s’il est protégé par un mot de passe." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:68 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1161 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:93 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1748 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:96 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:493 +msgid "Unique identifier for the object." +msgstr "Identifiant unique de l’objet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:654 +msgid "Limit result set to attachments of a particular MIME type." +msgstr "Limiter le groupe de résultats à un type MIME particulier." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:647 +msgid "Limit result set to attachments of a particular media type." +msgstr "Limiter le groupe de résultats aux médias attachés d’un type particulier." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:531 +msgid "Could not open file handle." +msgstr "Impossible d’ouvrir la manipulation de fichier." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:515 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:702 +msgid "Content hash did not match expected." +msgstr "Le hachage de contenu ne correspondait pas aux attentes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:506 +msgid "Invalid Content-Disposition supplied. Content-Disposition needs to be formatted as `attachment; filename=\"image.png\"` or similar." +msgstr "Valeur Content-Disposition fournie non valide. Content-Disposition a besoin d’être formaté comme `attachment; filename=\"image.png\"` ou équivalent." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:500 +msgid "No Content-Disposition supplied." +msgstr "Aucune valeur fournie pour Content-Disposition." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:496 +msgid "No Content-Type supplied." +msgstr "Aucune valeur fournie pour Content-Type." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:492 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:692 +msgid "No data supplied." +msgstr "Aucune donnée fournie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:468 +msgid "URL to the original attachment file." +msgstr "URL pour le fichier joint original." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:462 +msgid "The ID for the associated post of the attachment." +msgstr "L’ID pour l’article associé au fichier." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:455 +msgid "Details about the media file, specific to its type." +msgstr "Détails sur le fichier média, propre à son format." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:448 +msgid "The attachment MIME type." +msgstr "Le type MIME du fichier joint." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:440 +msgid "Attachment type." +msgstr "Type de fichier joint." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:431 +msgid "HTML description for the object, transformed for display." +msgstr "Description HTML de l’objet, transformé pour l’affichage." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:426 +msgid "Description for the object, as it exists in the database." +msgstr "Description de l’objet, telle qu’elle existe dans la base de données." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:418 +msgid "The attachment description." +msgstr "La description du fichier joint." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:409 +msgid "HTML caption for the attachment, transformed for display." +msgstr "Légende HTML pour le fichier joint, transformée pour l’affichage." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:404 +msgid "Caption for the attachment, as it exists in the database." +msgstr "Légende pour le fichier joint, telle qu’elle existe dans la base de données." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:396 +msgid "The attachment caption." +msgstr "La légende du fichier joint." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:387 +msgid "Alternative text to display when attachment is not displayed." +msgstr "Texte alternatif proposé si le fichier ne peut pas être affiché." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:103 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:210 +msgid "Invalid parent type." +msgstr "Type de parent non valide." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:84 +msgid "Sorry, you are not allowed to upload media to this post." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre en ligne des médias pour cet article." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:75 +msgid "Sorry, you are not allowed to upload media on this site." +msgstr "Désolé, vous n’avez pas l’autorisation de mettre en ligne des médias sur ce site." + +#: wp-includes/rest-api/class-wp-rest-server.php:1056 +msgid "The specified namespace could not be found." +msgstr "L’espace de nom (namespace) spécifié n’a pas pu être trouvé." + +#: wp-includes/rest-api/class-wp-rest-server.php:966 +msgid "No route was found matching the URL and request method" +msgstr "Aucun itinéraire n’a été trouvé correspondant à l’URL et à la méthode de requête" + +#: wp-includes/rest-api/class-wp-rest-server.php:902 +#: wp-includes/script-loader.php:132 wp-includes/script-loader.php:517 +msgid "Sorry, you are not allowed to do that." +msgstr "Désolé, vous n’avez pas l’autorisation de faire cela." + +#: wp-includes/rest-api/class-wp-rest-server.php:845 +msgid "The handler for the route is invalid" +msgstr "Le gestionnaire de route n’est pas valide" + +#: wp-includes/rest-api/class-wp-rest-server.php:288 +msgid "Invalid JSONP callback function." +msgstr "Fonction de rappel JSONP non valide." + +#: wp-includes/rest-api/class-wp-rest-server.php:282 +msgid "JSONP support is disabled on this site." +msgstr "Le support de JSONP est désactivé sur ce site." + +#: wp-includes/rest-api/class-wp-rest-server.php:267 +msgid "The REST API can no longer be completely disabled, the rest_authentication_errors can be used to restrict access to the API, instead." +msgstr "L’API REST ne peut plus rester davantage complètement désactivée, rest_authentification_errors pouvant être utilisé pour restreindre l’accès à l’API à la place." + +#: wp-includes/rest-api/class-wp-rest-request.php:908 +msgid "Invalid parameter." +msgstr "Paramètre non valide." + +#: wp-includes/rest-api/class-wp-rest-request.php:890 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:163 +msgid "Missing parameter(s): %s" +msgstr "Paramètre(s) manquant(s) : %s" + +#: wp-includes/rest-api/class-wp-rest-request.php:851 +#: wp-includes/rest-api/class-wp-rest-request.php:918 +msgid "Invalid parameter(s): %s" +msgstr "Paramètre(s) non valide(s) : %s" + +#: wp-includes/rest-api/class-wp-rest-request.php:697 +msgid "Invalid JSON body passed." +msgstr "Contenu JSON transmis non valide." + +#: wp-includes/registration-functions.php:7 wp-includes/registration.php:7 +msgid "This file no longer needs to be included." +msgstr "Ce fichier n’a plus besoin d’être inclus." + +#: wp-includes/query.php:743 +msgid "https://codex.wordpress.org/Function_Reference/is_main_query" +msgstr "https://codex.wordpress.org/Function_Reference/is_main_query" + +#. translators: 1: pre_get_posts 2: WP_Query->is_main_query() 3: +#. is_main_query() 4: link to codex is_main_query() page. +#: wp-includes/query.php:739 +msgid "In %1$s, use the %2$s method, not the %3$s function. See %4$s." +msgstr "Dans %1$s, utilisez la méthode %2$s et non la fonction %3$s. Voir %4$s." + +#: wp-includes/query.php:154 wp-includes/query.php:175 +#: wp-includes/query.php:196 wp-includes/query.php:220 +#: wp-includes/query.php:244 wp-includes/query.php:268 +#: wp-includes/query.php:297 wp-includes/query.php:317 +#: wp-includes/query.php:337 wp-includes/query.php:358 +#: wp-includes/query.php:378 wp-includes/query.php:407 +#: wp-includes/query.php:436 wp-includes/query.php:456 +#: wp-includes/query.php:483 wp-includes/query.php:503 +#: wp-includes/query.php:523 wp-includes/query.php:543 +#: wp-includes/query.php:563 wp-includes/query.php:592 +#: wp-includes/query.php:619 wp-includes/query.php:639 +#: wp-includes/query.php:659 wp-includes/query.php:679 +#: wp-includes/query.php:699 wp-includes/query.php:719 +msgid "Conditional query tags do not work before the query is run. Before then, they always return false." +msgstr "Les balises de requête conditionnelle ne fonctionnent pas avant le lancement de la requête. Avant cela, elles renvoient toujours le booléen false." + +#: wp-includes/post.php:3876 wp-includes/script-loader.php:545 +#: wp-includes/script-loader.php:613 +msgctxt "tag delimiter" +msgid "," +msgstr ", " + +#: wp-includes/post.php:3411 +msgid "Invalid page template." +msgstr "Modèle de page non valide." + +#. translators: %s: taxonomy name +#: wp-includes/post.php:3344 +msgid "Invalid taxonomy: %s." +msgstr "Taxonomie non valide : %s" + +#: wp-includes/post.php:3313 +msgid "Could not insert post into the database" +msgstr "Impossible d’insérer l’article dans la base de données" + +#: wp-includes/post.php:3298 +msgid "Could not update post in the database" +msgstr "Impossible de mettre à jour l’article dans la base de données" + +#: wp-includes/post.php:3131 wp-includes/rest-api.php:1069 +msgid "Invalid date." +msgstr "Date non valide." + +#: wp-includes/post.php:3059 +msgid "Content, title, and excerpt are empty." +msgstr "Le contenu de l’article, le titre et l’extrait sont vides." + +#: wp-includes/post.php:2879 +msgid "Passing an integer number of posts is deprecated. Pass an array of arguments instead." +msgstr "Il n’est pas recommandé de passer un nombre entier d’articles ; il est préférable de passer un tableau d’arguments." + +#: wp-includes/post.php:2289 +msgid "Video (%s)" +msgid_plural "Video (%s)" +msgstr[0] "Vidéo (%s)" +msgstr[1] "Vidéos (%s)" + +#: wp-includes/post.php:2289 +msgid "Manage Video" +msgstr "Gérer les vidéos" + +#: wp-includes/post.php:2289 +msgid "Video" +msgstr "Vidéos" + +#: wp-includes/post.php:2288 +msgid "Audio (%s)" +msgid_plural "Audio (%s)" +msgstr[0] "Son (%s)" +msgstr[1] "Sons (%s)" + +#: wp-includes/post.php:2288 +msgid "Manage Audio" +msgstr "Gérer l’audio" + +#: wp-includes/post.php:2288 +msgid "Audio" +msgstr "Sons" + +#: wp-includes/post.php:2287 +msgid "Image (%s)" +msgid_plural "Images (%s)" +msgstr[0] "Image (%s)" +msgstr[1] "Images (%s)" + +#: wp-includes/post.php:2287 +msgid "Manage Images" +msgstr "Gérer les images" + +#: wp-includes/post.php:2287 +msgid "Images" +msgstr "Images" + +#: wp-includes/post.php:1393 +msgid "Pages list" +msgstr "Liste des pages" + +#: wp-includes/post.php:1393 +msgid "Posts list" +msgstr "Liste des articles" + +#: wp-includes/post.php:1392 +msgid "Pages list navigation" +msgstr "Navigation de la liste des pages" + +#: wp-includes/post.php:1392 +msgid "Posts list navigation" +msgstr "Navigation de la liste des articles" + +#: wp-includes/post.php:1391 +msgid "Filter pages list" +msgstr "Filtrer la liste des pages" + +#: wp-includes/post.php:1391 +msgid "Filter posts list" +msgstr "Filtrer la liste des articles" + +#: wp-includes/post.php:1390 wp-includes/script-loader.php:741 +msgid "Use as featured image" +msgstr "Utiliser comme image mise en avant" + +#: wp-includes/post.php:1389 +msgid "Remove featured image" +msgstr "Retirer l’image mise en avant" + +#: wp-includes/post.php:1388 +msgid "Set featured image" +msgstr "Définir l’image mise en avant" + +#: wp-includes/post.php:1387 +msgid "Featured Image" +msgstr "Image mise en avant" + +#: wp-includes/post.php:1386 +msgid "Uploaded to this page" +msgstr "Mis en ligne sur cette page" + +#: wp-includes/post.php:1386 +msgid "Uploaded to this post" +msgstr "Mis en ligne sur cet article" + +#: wp-includes/post.php:1385 +msgid "Insert into page" +msgstr "Insérer dans la page" + +#: wp-includes/post.php:1385 +msgid "Insert into post" +msgstr "Insérer dans l’article" + +#: wp-includes/post.php:1384 +msgid "Page Attributes" +msgstr "Attributs de page" + +#: wp-includes/post.php:1384 +msgid "Post Attributes" +msgstr "Attributs d’articles" + +#: wp-includes/post.php:1383 +msgid "Page Archives" +msgstr "Archives des pages" + +#: wp-includes/post.php:1383 +msgid "Post Archives" +msgstr "Archives des articles" + +#: wp-includes/post.php:1382 +msgid "All Pages" +msgstr "Toutes les pages" + +#: wp-includes/post.php:1382 +msgid "All Posts" +msgstr "Tous les articles" + +#: wp-includes/post.php:1381 +msgid "Parent Page:" +msgstr "Page parente :" + +#: wp-includes/post.php:1380 +msgid "No pages found in Trash." +msgstr "Aucune page trouvée dans la corbeille." + +#: wp-includes/post.php:1380 +msgid "No posts found in Trash." +msgstr "Aucun article trouvé dans la corbeille." + +#: wp-includes/post.php:1379 +msgid "No pages found." +msgstr "Aucune page trouvée." + +#: wp-includes/post.php:1379 +msgid "No posts found." +msgstr "Aucun article trouvé." + +#: wp-includes/post.php:1378 +msgid "Search Pages" +msgstr "Rechercher dans les pages" + +#: wp-includes/post.php:1378 +msgid "Search Posts" +msgstr "Rechercher dans les articles" + +#: wp-includes/post.php:1377 +msgid "View Pages" +msgstr "Voir les pages" + +#: wp-includes/post.php:1377 +msgid "View Posts" +msgstr "Voir les articles" + +#: wp-includes/post.php:1376 +msgid "View Page" +msgstr "Voir la page" + +#: wp-includes/post.php:1376 +msgid "View Post" +msgstr "Voir l’article" + +#: wp-includes/post.php:1375 +msgid "New Page" +msgstr "Nouvelle page" + +#: wp-includes/post.php:1374 +msgid "Edit Page" +msgstr "Modifier la page" + +#: wp-includes/post.php:1374 +msgid "Edit Post" +msgstr "Modifier l’article" + +#: wp-includes/post.php:1373 +msgid "Add New Page" +msgstr "Ajouter une nouvelle page" + +#: wp-includes/post.php:1373 +msgid "Add New Post" +msgstr "Ajouter un nouvel article" + +#: wp-includes/post.php:1372 +msgctxt "page" +msgid "Add New" +msgstr "Ajouter" + +#: wp-includes/post.php:1372 +msgctxt "post" +msgid "Add New" +msgstr "Ajouter" + +#: wp-includes/post.php:1371 +msgctxt "post type singular name" +msgid "Page" +msgstr "Page" + +#: wp-includes/post.php:1371 +msgctxt "post type singular name" +msgid "Post" +msgstr "Article" + +#: wp-includes/post.php:1370 +msgctxt "post type general name" +msgid "Pages" +msgstr "Pages" + +#: wp-includes/post.php:1370 +msgctxt "post type general name" +msgid "Posts" +msgstr "Articles" + +#: wp-includes/post.php:1167 +msgid "Unregistering a built-in post type is not allowed" +msgstr "Vous ne pouvez supprimer un type de contenu par défaut" + +#: wp-includes/post.php:1116 wp-includes/post.php:1117 +msgid "Post type names must be between 1 and 20 characters in length." +msgstr "Le nom d’un type de contenu doit contenir entre 1 et 20 caractères." + +#: wp-includes/post.php:691 wp-includes/post.php:711 +#: wp-includes/script-loader.php:573 +msgid "Published" +msgstr "Publié" + +#: wp-includes/post.php:690 wp-includes/post.php:710 +#: wp-includes/script-loader.php:568 +msgid "Private" +msgstr "Privé" + +#: wp-includes/post.php:689 +msgid "Pending Review" +msgstr "En attente de relecture" + +#: wp-includes/post.php:688 wp-includes/post.php:709 +msgid "Draft" +msgstr "Brouillon" + +#: wp-includes/post.php:237 +msgid "Trash (%s)" +msgid_plural "Trash (%s)" +msgstr[0] "Corbeille (%s)" +msgstr[1] "Corbeille (%s)" + +#: wp-includes/post.php:234 +msgctxt "post status" +msgid "Trash" +msgstr "Corbeille" + +#: wp-includes/post.php:230 +msgid "Private (%s)" +msgid_plural "Private (%s)" +msgstr[0] "Privé (%s)" +msgstr[1] "Privés (%s)" + +#: wp-includes/post.php:227 +msgctxt "post status" +msgid "Private" +msgstr "Privé" + +#: wp-includes/post.php:223 +msgid "Pending (%s)" +msgid_plural "Pending (%s)" +msgstr[0] "En attente de relecture (%s)" +msgstr[1] "En attente de relecture (%s)" + +#: wp-includes/post.php:220 +msgctxt "post status" +msgid "Pending" +msgstr "En attente" + +#: wp-includes/post.php:216 +msgid "Draft (%s)" +msgid_plural "Drafts (%s)" +msgstr[0] "Brouillon (%s)" +msgstr[1] "Brouillons (%s)" + +#: wp-includes/post.php:213 +msgctxt "post status" +msgid "Draft" +msgstr "Brouillon" + +#: wp-includes/post.php:209 +msgid "Scheduled (%s)" +msgid_plural "Scheduled (%s)" +msgstr[0] "Planifié (%s)" +msgstr[1] "Planifiés (%s)" + +#: wp-includes/post.php:206 +msgctxt "post status" +msgid "Scheduled" +msgstr "Planifié" + +#: wp-includes/post.php:202 +msgid "Published (%s)" +msgid_plural "Published (%s)" +msgstr[0] "Publié (%s)" +msgstr[1] "Publiés (%s)" + +#: wp-includes/post.php:199 +msgctxt "post status" +msgid "Published" +msgstr "Publié" + +#: wp-includes/post.php:167 +msgid "No changesets found in Trash." +msgstr "Aucun jeu de modifications trouvé dans la corbeille." + +#: wp-includes/post.php:166 +msgid "No changesets found." +msgstr "Aucun jeu de modifications trouvé." + +#: wp-includes/post.php:165 +msgid "Search Changesets" +msgstr "Rechercher un jeu de modifications" + +#: wp-includes/post.php:164 +msgid "All Changesets" +msgstr "Tous les jeux de modifications" + +#: wp-includes/post.php:163 +msgid "View Changeset" +msgstr "Voir le jeu de modifications" + +#: wp-includes/post.php:162 +msgid "Edit Changeset" +msgstr "Modifier le jeu de modifications." + +#: wp-includes/post.php:161 +msgid "New Changeset" +msgstr "Nouveau jeu de modifications" + +#: wp-includes/post.php:160 +msgid "Add New Changeset" +msgstr "Ajouter un nouveau jeu de modifications" + +#: wp-includes/post.php:159 +msgctxt "Customize Changeset" +msgid "Add New" +msgstr "Ajouter" + +#: wp-includes/post.php:158 +msgctxt "add new on admin bar" +msgid "Changeset" +msgstr "Jeu de modifications" + +#: wp-includes/post.php:157 +msgctxt "admin menu" +msgid "Changesets" +msgstr "Jeux de modifications" + +#: wp-includes/post.php:156 +msgctxt "post type singular name" +msgid "Changeset" +msgstr "Jeu de modifications" + +#: wp-includes/post.php:155 +msgctxt "post type general name" +msgid "Changesets" +msgstr "Jeux de modifications" + +#: wp-includes/post.php:126 wp-includes/post.php:127 +msgid "Custom CSS" +msgstr "CSS personnalisé" + +#: wp-includes/post.php:114 +msgid "Navigation Menu Item" +msgstr "Élément de menu de navigation" + +#: wp-includes/post.php:113 +msgid "Navigation Menu Items" +msgstr "Éléments de menu de navigation" + +#: wp-includes/post.php:96 +msgid "Revision" +msgstr "Révision" + +#: wp-includes/post.php:95 +msgid "Revisions" +msgstr "Révisions" + +#: wp-includes/post.php:69 +msgid "Attachment Attributes" +msgstr "Attributs du fichier joint" + +#: wp-includes/post.php:68 +msgid "View Attachment Page" +msgstr "Voir la page du fichier joint" + +#: wp-includes/post.php:67 +msgid "Edit Media" +msgstr "Modifier un média" + +#: wp-includes/post.php:66 +msgctxt "add new media" +msgid "Add New" +msgstr "Ajouter" + +#: wp-includes/post.php:65 +msgctxt "add new from admin bar" +msgid "Media" +msgstr "Fichier média" + +#: wp-includes/post.php:64 +msgctxt "post type general name" +msgid "Media" +msgstr "Fichier média" + +#: wp-includes/post.php:43 +msgctxt "add new from admin bar" +msgid "Page" +msgstr "Page" + +#: wp-includes/post.php:23 +msgctxt "add new from admin bar" +msgid "Post" +msgstr "Article" + +#: wp-includes/post-template.php:1812 +msgid "JavaScript must be enabled to use this feature." +msgstr "JavaScript doit être activé pour utiliser cette fonctionnalité." + +#. translators: post revision title: 1: author avatar, 2: author name, 3: time +#. ago, 4: date +#: wp-includes/post-template.php:1746 +msgid "%1$s %2$s, %3$s ago (%4$s)" +msgstr "%1$s %2$s, il y a %3$s (%4$s)" + +#. translators: %s: revision date +#. translators: %s: revision date with author avatar +#: wp-includes/post-template.php:1704 wp-includes/post-template.php:1756 +msgid "%s [Current Revision]" +msgstr "%s [Version actuelle]" + +#. translators: %s: revision date +#. translators: %s: revision date with author avatar +#: wp-includes/post-template.php:1702 wp-includes/post-template.php:1754 +msgid "%s [Autosave]" +msgstr "%s [Sauvegarde automatique]" + +#. translators: revision date format, see https://secure.php.net/date +#: wp-includes/post-template.php:1700 wp-includes/post-template.php:1736 +msgctxt "revision date format" +msgid "F j, Y @ H:i:s" +msgstr "j F Y à G \\h i \\m\\i\\n" + +#: wp-includes/post-template.php:1602 +msgctxt "post password form" +msgid "Enter" +msgstr "Valider" + +#: wp-includes/post-template.php:1601 +msgid "This content is password protected. To view it please enter your password below:" +msgstr "Cet article est protégé par un mot de passe. Pour le lire, veuillez saisir votre mot de passe ci-dessous :" + +#: wp-includes/post-template.php:1334 +msgid "Home" +msgstr "Accueil" + +#: wp-includes/post-template.php:1175 wp-includes/theme-compat/sidebar.php:89 +#: wp-includes/widgets/class-wp-widget-pages.php:31 +#: wp-includes/widgets/class-wp-widget-pages.php:55 +msgid "Pages" +msgstr "Pages" + +#: wp-includes/post-template.php:866 +msgid "Previous page" +msgstr "Page précédente" + +#: wp-includes/post-template.php:865 +msgid "Next page" +msgstr "Page suivante" + +#: wp-includes/post-template.php:859 +msgid "Pages:" +msgstr "Pages :" + +#: wp-includes/post-template.php:385 +msgid "There is no excerpt because this is a protected post." +msgstr "Il n’y a pas d’extrait, car cet article est protégé." + +#: wp-includes/post-template.php:273 +msgid "(more…)" +msgstr "(suite…)" + +#: wp-includes/post-template.php:145 +msgid "Private: %s" +msgstr "Privé : %s" + +#: wp-includes/post-template.php:130 +msgid "Protected: %s" +msgstr "Protégé : %s" + +#: wp-includes/post-formats.php:99 +msgctxt "Post format" +msgid "Audio" +msgstr "Son" + +#: wp-includes/post-formats.php:98 +msgctxt "Post format" +msgid "Video" +msgstr "Vidéo" + +#: wp-includes/post-formats.php:97 +msgctxt "Post format" +msgid "Status" +msgstr "État" + +#: wp-includes/post-formats.php:96 +msgctxt "Post format" +msgid "Quote" +msgstr "Citation" + +#: wp-includes/post-formats.php:95 +msgctxt "Post format" +msgid "Image" +msgstr "Image" + +#: wp-includes/post-formats.php:94 +msgctxt "Post format" +msgid "Link" +msgstr "Lien" + +#: wp-includes/post-formats.php:93 +msgctxt "Post format" +msgid "Gallery" +msgstr "Galerie" + +#: wp-includes/post-formats.php:92 +msgctxt "Post format" +msgid "Chat" +msgstr "Discussion" + +#: wp-includes/post-formats.php:91 +msgctxt "Post format" +msgid "Aside" +msgstr "En passant" + +#: wp-includes/post-formats.php:90 +msgctxt "Post format" +msgid "Standard" +msgstr "Par défaut" + +#: wp-includes/post-formats.php:68 +msgid "Invalid post." +msgstr "Article non valide" + +#: wp-includes/plugin.php:801 +msgid "Only a static class method or function can be used in an uninstall hook." +msgstr "Seule une méthode statique de classe ou une fonction peut être utilisée avec un crochet de désinstallation." + +#: wp-includes/pluggable.php:1811 +msgid "[%s] Your username and password info" +msgstr "[%s] Votre identifiant et votre mot de passe" + +#: wp-includes/pluggable.php:1806 +msgid "To set your password, visit the following address:" +msgstr "Pour configurer votre mot de passe, rendez-vous à l’adresse suivante :" + +#: wp-includes/pluggable.php:1778 +msgid "[%s] New User Registration" +msgstr "[%s] Inscription d’un nouvel utilisateur" + +#: wp-includes/pluggable.php:1775 wp-includes/pluggable.php:1805 +#: wp-login.php:329 +msgid "Username: %s" +msgstr "Identifiant : %s" + +#: wp-includes/pluggable.php:1774 +msgid "New user registration on your site %s:" +msgstr "Inscription d’un nouvel utilisateur sur votre site %s :" + +#. translators: %s: site title +#: wp-includes/pluggable.php:1736 +msgid "[%s] Password Changed" +msgstr "[%s] Mot de passe changé" + +#. translators: %s: user name +#: wp-includes/pluggable.php:1731 +msgid "Password changed for user: %s" +msgstr "Mot de passe changé pour l’utilisateur : %s" + +#. translators: Comment moderation notification email subject. 1: Site name, 2: +#. Post title +#: wp-includes/pluggable.php:1663 +msgid "[%1$s] Please moderate: \"%2$s\"" +msgstr "[%1$s] Demande de modération pour « %2$s »" + +#. translators: Comment moderation. 1: Number of comments awaiting approval +#: wp-includes/pluggable.php:1658 +msgid "Currently %s comment is waiting for approval. Please visit the moderation panel:" +msgid_plural "Currently %s comments are waiting for approval. Please visit the moderation panel:" +msgstr[0] "En ce moment, %s commentaire attend votre approbation. Veuillez vous rendre sur le panneau de modération :" +msgstr[1] "En ce moment, %s commentaires attendent vos approbations. Veuillez vous rendre sur le panneau de modération :" + +#. translators: Comment moderation. 1: Comment action URL +#: wp-includes/pluggable.php:1644 +msgid "Approve it: %s" +msgstr "L’approuver : %s" + +#. translators: 1: Post title +#: wp-includes/pluggable.php:1630 +msgid "A new comment on the post \"%s\" is waiting for your approval" +msgstr "Un nouveau commentaire sur l’article « %s » attend votre approbation" + +#: wp-includes/pluggable.php:1626 +msgid "Pingback excerpt: " +msgstr "Extrait du ping :" + +#. translators: 1: Post title +#: wp-includes/pluggable.php:1620 +msgid "A new pingback on the post \"%s\" is waiting for your approval" +msgstr "Un nouveau ping sur l’article « %s » attend votre approbation" + +#: wp-includes/pluggable.php:1616 +msgid "Trackback excerpt: " +msgstr "Extrait du rétrolien :" + +#. translators: 1: Post title +#: wp-includes/pluggable.php:1610 +msgid "A new trackback on the post \"%s\" is waiting for your approval" +msgstr "Un nouveau rétrolien sur l’article « %s » attend votre approbation" + +#. translators: Comment moderation. 1: Comment action URL +#: wp-includes/pluggable.php:1491 wp-includes/pluggable.php:1655 +msgid "Spam it: %s" +msgstr "Le marquer comme indésirable : %s" + +#. translators: Comment moderation. 1: Comment action URL +#: wp-includes/pluggable.php:1489 wp-includes/pluggable.php:1651 +msgid "Delete it: %s" +msgstr "Le supprimer : %s" + +#. translators: Comment moderation. 1: Comment action URL +#: wp-includes/pluggable.php:1487 wp-includes/pluggable.php:1648 +msgid "Trash it: %s" +msgstr "Le mettre dans la corbeille : %s" + +#: wp-includes/pluggable.php:1483 +msgid "Permalink: %s" +msgstr "Permalien : %s" + +#. translators: 1: blog name, 2: post title +#: wp-includes/pluggable.php:1479 +msgid "[%1$s] Comment: \"%2$s\"" +msgstr "[%1$s] Commentaire : « %2$s »" + +#: wp-includes/pluggable.php:1477 +msgid "You can see all comments on this post here:" +msgstr "Vous pouvez lire tous les commentaires de cet article ici :" + +#. translators: 1: Comment author URL +#: wp-includes/pluggable.php:1474 wp-includes/pluggable.php:1635 +#: wp-includes/pluggable.php:1776 +msgid "Email: %s" +msgstr "E-mail : %s" + +#. translators: 1: comment author, 2: author IP, 3: author domain +#. translators: 1: Comment author name, 2: comment author's IP, 3: comment +#. author IP's hostname +#: wp-includes/pluggable.php:1473 wp-includes/pluggable.php:1633 +msgid "Author: %1$s (IP: %2$s, %3$s)" +msgstr "Auteur : %1$s (IP : %2$s, %3$s)" + +#: wp-includes/pluggable.php:1471 +msgid "New comment on your post \"%s\"" +msgstr "Nouveau commentaire sur votre article « %s »" + +#. translators: 1: blog name, 2: post title +#: wp-includes/pluggable.php:1468 +msgid "[%1$s] Pingback: \"%2$s\"" +msgstr "[%1$s] Ping : « %2$s »" + +#: wp-includes/pluggable.php:1466 +msgid "You can see all pingbacks on this post here:" +msgstr "Vous pouvez voir tous les pings de cet article ici : " + +#. translators: 1: Post title +#: wp-includes/pluggable.php:1461 +msgid "New pingback on your post \"%s\"" +msgstr "Nouveau ping sur votre article « %s »" + +#. translators: 1: blog name, 2: post title +#: wp-includes/pluggable.php:1457 +msgid "[%1$s] Trackback: \"%2$s\"" +msgstr "[%1$s] Rétrolien : « %2$s »" + +#: wp-includes/pluggable.php:1455 +msgid "You can see all trackbacks on this post here:" +msgstr "Vous pouvez voir tous les rétroliens de cet article ici :" + +#. translators: 1: Comment text +#: wp-includes/pluggable.php:1454 wp-includes/pluggable.php:1465 +#: wp-includes/pluggable.php:1476 wp-includes/pluggable.php:1639 +msgid "Comment: %s" +msgstr "Commentaire : %s" + +#. translators: 1: Trackback/pingback/comment author URL +#: wp-includes/pluggable.php:1453 wp-includes/pluggable.php:1464 +#: wp-includes/pluggable.php:1475 wp-includes/pluggable.php:1615 +#: wp-includes/pluggable.php:1625 wp-includes/pluggable.php:1637 +msgid "URL: %s" +msgstr "Adresse web : %s" + +#. translators: 1: Trackback/pingback website name, 2: website IP, 3: website +#. hostname +#: wp-includes/pluggable.php:1452 wp-includes/pluggable.php:1463 +#: wp-includes/pluggable.php:1613 wp-includes/pluggable.php:1623 +msgid "Website: %1$s (IP: %2$s, %3$s)" +msgstr "Site web : %1$s (IP : %2$s, %3$s)" + +#. translators: 1: Post title +#: wp-includes/pluggable.php:1450 +msgid "New trackback on your post \"%s\"" +msgstr "Nouveau rétrolien sur votre article « %s »" + +#: wp-includes/pluggable.php:1059 wp-includes/pluggable.php:1102 +msgid "You should specify a nonce action to be verified by using the first parameter." +msgstr "Vous devriez préciser une action de type « nonce », qui sera vérifiée par le premier paramètre." + +#: wp-includes/pluggable.php:527 +msgid "ERROR: Invalid username, email address or incorrect password." +msgstr "ERREUR : Nom d’utilisateur, e-mail ou mot de passe non valide." + +#: wp-includes/option.php:1957 +msgid "$sanitize_callback is deprecated. The callback from register_setting() is used instead." +msgstr "$sanitize_callback est déprécié. La fonction de rappel de register_setting() est utilisé à la place." + +#: wp-includes/option.php:1907 wp-includes/option.php:1912 +#: wp-includes/option.php:1943 wp-includes/option.php:1948 +msgid "The \"%s\" options group has been removed. Use another settings group." +msgstr "Le groupe d’options « %s » a été supprimé. Utiliser un autre groupe de réglages." + +#: wp-includes/option.php:1844 +msgid "Allow people to post comments on new articles." +msgstr "Autoriser les lecteurs à publier des commentaires sur les nouveaux articles." + +#: wp-includes/option.php:1834 +msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new articles." +msgstr "Autoriser les liens de notification d’autres blogs (pings et rétroliens) sur les nouveaux articles." + +#: wp-includes/option.php:1823 +msgid "Blog pages show at most." +msgstr "Les pages de blog affichent au maximum." + +#: wp-includes/option.php:1817 +msgid "Default post format." +msgstr "Format d’article par défaut." + +#: wp-includes/option.php:1811 +msgid "Default post category." +msgstr "Catégorie d’article par défaut." + +#: wp-includes/option.php:1804 +msgid "Convert emoticons like :-) and :-P to graphics on display." +msgstr "Convertir les émoticônes, comme :-) et :-P, en images lors de l’affichage." + +#: wp-includes/option.php:1797 +msgid "WordPress locale code." +msgstr "Code local de l’installation WordPress." + +#: wp-includes/option.php:1789 +msgid "A day number of the week that the week should start on." +msgstr "Le numéro du jour de la semaine à laquelle la semaine devrait commencer." + +#: wp-includes/option.php:1783 +msgid "A time format for all time strings." +msgstr "Un format d’heure commun pour tous les réglages d’heures." + +#: wp-includes/option.php:1777 +msgid "A date format for all date strings." +msgstr "Un format de date commun pour tous les réglages de dates." + +#: wp-includes/option.php:1771 +msgid "A city in the same timezone as you." +msgstr "Une ville dans le même fuseau horaire que le vôtre." + +#: wp-includes/option.php:1762 +msgid "This address is used for admin purposes, like new user notification." +msgstr "Cette adresse est utilisée à des fins d’administration, comme les notifications d’utilisateur." + +#: wp-includes/option.php:1749 +msgid "Site URL." +msgstr "URL du site." + +#: wp-includes/option.php:1737 +msgid "Site tagline." +msgstr "Slogan du site." + +#: wp-includes/option.php:1729 +msgid "Site title." +msgstr "Titre du site." + +#: wp-includes/option.php:156 +msgid "%s is a protected WP option and may not be modified" +msgstr "%s est une option protégée de WordPress, et ne peut être modifiée" + +#: wp-includes/nav-menu.php:376 +msgid "Invalid menu ID." +msgstr "ID de menu non valide." + +#: wp-includes/nav-menu.php:371 +msgid "The given object ID is not that of a menu item." +msgstr "L’identifiant donné pour cet objet n’est pas une entrée de menu." + +#. translators: %s: menu name +#: wp-includes/nav-menu.php:291 wp-includes/nav-menu.php:304 +msgid "The menu name %s conflicts with another menu name. Please try another." +msgstr "Le nom du menu %s entre en conflit avec un autre nom de menu. Veuillez le modifier." + +#: wp-includes/ms-load.php:488 +msgid "If you’re still stuck with this message, then check that your database contains the following tables:" +msgstr "Si vous êtes toujours bloqué par ce message, vérifiez alors que votre base de données contient bien les tables suivantes :" + +#: wp-includes/ms-load.php:486 +msgid "https://codex.wordpress.org/Debugging_a_WordPress_Network" +msgstr "https://codex.wordpress.org/Debugging_a_WordPress_Network" + +#. translators: %s: Codex URL +#: wp-includes/ms-load.php:485 +msgid "Read the bug report page. Some of the guidelines there may help you figure out what went wrong." +msgstr "Lisez la page des rapports de bug. Elle contient des bonnes pratiques qui peuvent vous permettre de comprendre ce qui ne marche pas." + +#: wp-includes/ms-load.php:483 +msgid "What do I do now?" +msgstr "Que dois-je faire maintenant ?" + +#. translators: 1: site url, 2: table name, 3: database name +#: wp-includes/ms-load.php:477 +msgid "Could not find site %1$s. Searched for table %2$s in database %3$s. Is that right?" +msgstr "Impossible de trouver le site %1$s. Nous avons cherché dans la table %2$s de la base de données %3$s. Est-ce bien correct ?" + +#. translators: %s: table name +#: wp-includes/ms-load.php:471 +msgid "Database tables are missing. This means that MySQL is not running, WordPress was not installed properly, or someone deleted %s. You really should look at your database now." +msgstr "Il manque des tables à la base de données. Cela peut signifier que MySQL ne fonctionne pas, que WordPress n’a pas été correctement installé, ou que quelqu’un a supprimé %s. Vous devriez vraiment vérifier votre base de données maintenant." + +#: wp-includes/ms-load.php:466 +msgid "If you are the owner of this network please check that MySQL is running properly and all tables are error free." +msgstr "Si vous êtes le gestionnaire de ce réseau de sites, veuillez vous assurer que MySQL fonctionne correctement et qu’aucune table n’a d’erreur." + +#: wp-includes/ms-load.php:465 +msgid "If your site does not display, please contact the owner of this network." +msgstr "Si votre site ne s’affiche pas, veuillez contacter le gestionnaire de ce réseau de sites." + +#: wp-includes/ms-load.php:114 +msgid "This site has been archived or suspended." +msgstr "Ce site a été archivé ou suspendu." + +#. translators: %s: admin email link +#: wp-includes/ms-load.php:103 +msgid "This site has not been activated yet. If you are having problems activating your site, please contact %s." +msgstr "Ce site n{a pas encore été activé. Si vous rencontrez des problèmes pour l’activer, veuillez contacter %s." + +#: wp-includes/ms-load.php:93 +msgid "This site is no longer available." +msgstr "Ce site n’est plus disponible." + +#. translators: Do not translate USERNAME, PASSWORD, LOGINLINK, SITE_NAME: +#. those are placeholders. +#: wp-includes/ms-functions.php:2170 +msgid "" +"Howdy USERNAME,\n" +"\n" +"Your new account is set up.\n" +"\n" +"You can log in with the following information:\n" +"Username: USERNAME\n" +"Password: PASSWORD\n" +"LOGINLINK\n" +"\n" +"Thanks!\n" +"\n" +"--The Team @ SITE_NAME" +msgstr "" +"Cher/chère USERNAME,\n" +"\n" +"Votre nouveau compte a été créé.\n" +"\n" +"Vous pouvez vous connecter avec les informations suivantes :\n" +"Identifiant : USERNAME\n" +"Mot de passe : PASSWORD\n" +"LOGINLINK\n" +"\n" +"Merci !\n" +"\n" +"--L’équipe de SITE_NAME" + +#: wp-includes/ms-functions.php:2024 +msgid "WordPress › Success" +msgstr "WordPress » Réussite" + +#: wp-includes/ms-functions.php:2024 +msgid "You have been added to this site. Please visit the homepage or log in using your username and password." +msgstr "Vous avez été ajouté à ce site. Vous pouvez vous rendre sur sa page d’accueil ou vous connecter à l’aide de votre identifiant et mot de passe." + +#: wp-includes/ms-functions.php:2022 +msgid "An error occurred adding you to this site. Back to the homepage." +msgstr "Une erreur est survenue lors de votre ajout à ce site. Retournez à l’accueil." + +#: wp-includes/ms-functions.php:1940 +msgid "This file is too big. Files must be less than %d KB in size." +msgstr "Ce fichier est trop gros. La taille des fichiers doit être inférieure %d Ko." + +#. translators: New user notification email subject. 1: Network name, 2: New +#. user login +#: wp-includes/ms-functions.php:1619 +msgid "New %1$s User: %2$s" +msgstr "Nouvel utilisateur %1$s : %2$s" + +#. translators: New site notification email subject. 1: Network name, 2: New +#. site name +#: wp-includes/ms-functions.php:1531 +msgid "New %1$s Site: %2$s" +msgstr "Nouveau site %1$s : %2$s" + +#. translators: Do not translate USERNAME, SITE_NAME, BLOG_URL, PASSWORD: those +#. are placeholders. +#: wp-includes/ms-functions.php:1479 +msgid "" +"Howdy USERNAME,\n" +"\n" +"Your new SITE_NAME site has been successfully set up at:\n" +"BLOG_URL\n" +"\n" +"You can log in to the administrator account with the following information:\n" +"\n" +"Username: USERNAME\n" +"Password: PASSWORD\n" +"Log in here: BLOG_URLwp-login.php\n" +"\n" +"We hope you enjoy your new site. Thanks!\n" +"\n" +"--The Team @ SITE_NAME" +msgstr "" +"Cher/chère USERNAME,\n" +"\n" +"Votre nouveau site SITE_NAME a été bien créé à l’adresse :\n" +"BLOG_URL\n" +"\n" +"Vous pouvez vous connecter au compte administrateur avec les informations suivantes :\n" +"Identifiant : USERNAME\n" +"Mot de passe : PASSWORD\n" +"Connectez-vous ici : BLOG_URLwp-login.php\n" +"\n" +"Nous espérons que vous apprécierez votre nouveau site. Merci !\n" +"\n" +"--L’équipe de SITE_NAME" + +#: wp-includes/ms-functions.php:1367 +msgid "You appear to have already installed WordPress. To reinstall please clear your old database tables first." +msgstr "Il semblerait que WordPress soit déjà installé. Pour le réinstaller, commencez par supprimer vos anciennes tables de la base de données." + +#: wp-includes/ms-functions.php:1367 +msgid "Already Installed" +msgstr "Déjà installé" + +#: wp-includes/ms-functions.php:1266 +msgid "New User Registration: %s" +msgstr "Inscription d’un nouvel utilisateur : %s" + +#. translators: New user notification email. 1: User login, 2: User IP address, +#. 3: Settings screen URL +#: wp-includes/ms-functions.php:1251 +msgid "" +"New User: %1$s\n" +"Remote IP: %2$s\n" +"\n" +"Disable these notifications: %3$s" +msgstr "" +"Nouvel utilisateur : %1$s\n" +"Adresse IP : %2$s\n" +"\n" +"Désactiver ces notifications : %3$s" + +#: wp-includes/ms-functions.php:1223 +msgid "New Site Registration: %s" +msgstr "Inscription d’un nouveau site : %s" + +#. translators: New site notification email. 1: Site URL, 2: User IP address, +#. 3: Settings screen URL +#: wp-includes/ms-functions.php:1208 +msgid "" +"New Site: %1$s\n" +"URL: %2$s\n" +"Remote IP: %3$s\n" +"\n" +"Disable these notifications: %4$s" +msgstr "" +"Nouveau site : %1$s\n" +"URL : %2$s\n" +"Adresse IP : %3$s\n" +"\n" +"Désactiver ces notifications : %4$s" + +#: wp-includes/ms-functions.php:1140 +msgid "Could not create site." +msgstr "Impossible de créer le site." + +#: wp-includes/ms-functions.php:1008 +msgid "That username is already activated." +msgstr "Cet identifiant est déjà activé." + +#: wp-includes/ms-functions.php:1000 +msgid "Could not create user" +msgstr "Impossible de créer l’utilisateur." + +#: wp-includes/ms-functions.php:986 +msgid "The site is already active." +msgstr "Ce site est déjà activé." + +#: wp-includes/ms-functions.php:984 +msgid "The user is already active." +msgstr "Cet utilisateur est déjà activé." + +#: wp-includes/ms-functions.php:980 +msgid "Invalid activation key." +msgstr "Clé d’activation non valide." + +#. translators: New user notification email subject. 1: Network name, 2: New +#. user login +#: wp-includes/ms-functions.php:944 +msgctxt "New user notification email subject" +msgid "[%1$s] Activate %2$s" +msgstr "[%1$s] Activation de %2$s" + +#: wp-includes/ms-functions.php:924 +msgid "" +"To activate your user, please click the following link:\n" +"\n" +"%s\n" +"\n" +"After you activate, you will receive *another email* with your login." +msgstr "" +"Pour activer votre utilisateur, veuillez cliquer sur le lien suivant :\n" +"\n" +"%s\n" +"\n" +"Après l’activation, vous recevrez *un autre e-mail* contenant votre identifiant." + +#. translators: New site notification email subject. 1: Network name, 2: New +#. site URL +#: wp-includes/ms-functions.php:850 +msgctxt "New site notification email subject" +msgid "[%1$s] Activate %2$s" +msgstr "[%1$s] Activation de %2$s" + +#: wp-includes/ms-functions.php:825 +msgid "" +"To activate your blog, please click the following link:\n" +"\n" +"%s\n" +"\n" +"After you activate, you will receive *another email* with your login.\n" +"\n" +"After you activate, you can visit your site here:\n" +"\n" +"%s" +msgstr "" +"Pour activer votre site, veuillez cliquer sur le lien suivant :\n" +"\n" +"%s\n" +"\n" +"Après l’activation, vous recevrez *un autre e-mail* contenant votre identifiant.\n" +"\n" +"Vous pourrez alors vous rendre sur votre site ici :\n" +"\n" +"%s" + +#: wp-includes/ms-functions.php:631 +msgid "That site is currently reserved but may be available in a couple days." +msgstr "Ce site est réservé pour le moment, mais pourrait être disponible dans quelques jours." + +#: wp-includes/ms-functions.php:620 +msgid "Sorry, that site is reserved!" +msgstr "Désolé, ce site est réservé !" + +#: wp-includes/ms-functions.php:616 wp-includes/ms-functions.php:1133 +msgid "Sorry, that site already exists!" +msgstr "Désolé, ce site existe déjà !" + +#: wp-includes/ms-functions.php:605 +msgid "Please enter a site title." +msgstr "Veuillez saisir un titre de site." + +#: wp-includes/ms-functions.php:588 +msgid "Sorry, site names must have letters too!" +msgstr "Désolé, les identifiants de site doivent également avoir des lettres !" + +#: wp-includes/ms-functions.php:584 +msgid "Sorry, you may not use that site name." +msgstr "Désolé, vous ne pouvez pas utiliser ce nom pour votre site." + +#: wp-includes/ms-functions.php:580 +msgid "Site name must be at least 4 characters." +msgstr "L’identifiant du site doit utiliser au moins 4 caractères." + +#: wp-includes/ms-functions.php:577 +msgid "That name is not allowed." +msgstr "Ce nom n’est pas autorisé." + +#: wp-includes/ms-functions.php:573 +msgid "Site names can only contain lowercase letters (a-z) and numbers." +msgstr "Les noms de sites ne peuvent contenir que des minuscules (a-z) et des chiffres." + +#: wp-includes/ms-functions.php:570 +msgid "Please enter a site name." +msgstr "Veuillez saisir un nom de site." + +#: wp-includes/ms-functions.php:497 +msgid "That email address has already been used. Please check your inbox for an activation email. It will become available in a couple of days if you do nothing." +msgstr "Cette adresse de messagerie a déjà été utilisée. Veuillez vérifier dans votre messagerie si le message d’activation ne s’y trouve pas. L’identifiant redeviendra disponible dans quelques jours si vous ne faites rien." + +#: wp-includes/ms-functions.php:487 +msgid "That username is currently reserved but may be available in a couple of days." +msgstr "Cet identifiant est pour le moment réservé, mais pourrait être disponible dans quelques jours." + +#: wp-includes/ms-functions.php:475 wp-includes/user.php:1526 +msgid "Sorry, that email address is already used!" +msgstr "Désolé, cette adresse de messagerie est déjà utilisée !" + +#: wp-includes/ms-functions.php:471 wp-includes/user.php:1452 +msgid "Sorry, that username already exists!" +msgstr "Désolé, cet identifiant existe déjà !" + +#: wp-includes/ms-functions.php:465 +msgid "Sorry, that email address is not allowed!" +msgstr "Désolé, cette adresse de messagerie n’est pas autorisée !" + +#: wp-includes/ms-functions.php:459 +msgid "Please enter a valid email address." +msgstr "Veuillez saisir une adresse de messagerie valide." + +#: wp-includes/ms-functions.php:456 +msgid "Sorry, usernames must have letters too!" +msgstr "Désolé, les identifiants doivent aussi avoir des lettres !" + +#: wp-includes/ms-functions.php:451 wp-includes/user.php:1448 +msgid "Username may not be longer than 60 characters." +msgstr "L’identifiant ne doit pas faire plus de 60 caractères." + +#: wp-includes/ms-functions.php:448 +msgid "Username must be at least 4 characters." +msgstr "L’identifiant doit utiliser au moins 4 caractères." + +#: wp-includes/ms-functions.php:445 +msgid "You cannot use that email address to signup. We are having problems with them blocking some of our email. Please use another email provider." +msgstr "Vous ne pouvez pas vous inscrire avec cette adresse de messagerie. Nous avons rencontré des problèmes de la part de ce service. Merci d’en utiliser un autre." + +#: wp-includes/ms-functions.php:434 wp-includes/ms-functions.php:441 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1099 +#: wp-includes/user.php:1465 +msgid "Sorry, that username is not allowed." +msgstr "Désolé, ce nom d’utilisateur n’est pas autorisé." + +#: wp-includes/ms-functions.php:426 +msgid "Please enter a username." +msgstr "Veuillez saisir un identifiant." + +#: wp-includes/ms-functions.php:419 +msgid "Usernames can only contain lowercase letters (a-z) and numbers." +msgstr "Les noms d’utilisateurs ne peuvent contenir que des minuscules (a-z) et des chiffres." + +#: wp-includes/ms-functions.php:241 +msgid "That user does not exist." +msgstr "Cet utilisateur n’existe pas." + +#: wp-includes/ms-functions.php:159 +msgid "The requested user does not exist." +msgstr "Cet utilisateur n’existe pas." + +#: wp-includes/ms-deprecated.php:406 +msgid "ERROR: problem creating site entry." +msgstr "Erreur : problème lors de la création de l’entrée du site." + +#: wp-includes/ms-deprecated.php:399 +msgid "ERROR: Site URL already taken." +msgstr "Erreur p;: cette adresse de site est déjà prise." + +#: wp-includes/ms-default-constants.php:141 +msgid "Conflicting values for the constants VHOST and SUBDOMAIN_INSTALL. The value of SUBDOMAIN_INSTALL will be assumed to be your subdomain configuration setting." +msgstr "Les valeurs des constantes VHOST et SUBDOMAIN_INSTALL ne correspondent pas. C’est la valeur de SUBDOMAIN_INSTALL qui sera prise en compte pour votre réglage du mode sous-domaines." + +#. translators: 1: VHOST, 2: SUBDOMAIN_INSTALL, 3: wp-config.php, 4: +#. is_subdomain_install() +#: wp-includes/ms-default-constants.php:134 +msgid "The constant %1$s is deprecated. Use the boolean constant %2$s in %3$s to enable a subdomain configuration. Use %4$s to check whether a subdomain configuration is enabled." +msgstr "La constante %1$s est obsolète. Utilisez la constante booléenne %2$s dans %3$s pour activer la configuration des sous-domaines. Utilisez %4$s pour vérifier que la configuration des sous-domaines est bien active." + +#: wp-includes/media.php:3574 +msgid "Add to Video Playlist" +msgstr "Ajouter à la liste de lecture vidéo" + +#: wp-includes/media.php:3573 +msgid "Add to video playlist" +msgstr "Ajouter à la liste de lecture vidéo" + +#: wp-includes/media.php:3572 +msgid "Update video playlist" +msgstr "Mettre à jour la liste de lecture vidéo" + +#: wp-includes/media.php:3571 +msgid "Insert video playlist" +msgstr "Insérer une liste de lecture vidéo" + +#: wp-includes/media.php:3570 +msgid "← Cancel Video Playlist" +msgstr "← Annuler la liste de lecture vidéo" + +#: wp-includes/media.php:3569 +msgid "Edit Video Playlist" +msgstr "Modifier une liste de lecture vidéo" + +#: wp-includes/media.php:3568 +msgid "Create Video Playlist" +msgstr "Créer une liste de lecture vidéo" + +#: wp-includes/media.php:3567 +msgid "Drag and drop to reorder videos." +msgstr "Glisser-déposer pour réorganiser les vidéos." + +#: wp-includes/media.php:3564 +msgid "Add to Audio Playlist" +msgstr "Ajouter à la liste de lecture audio" + +#: wp-includes/media.php:3563 +msgid "Add to audio playlist" +msgstr "Ajouter à la liste de lecture audio" + +#: wp-includes/media.php:3562 +msgid "Update audio playlist" +msgstr "Mettre à jour la liste de lecture audio" + +#: wp-includes/media.php:3561 +msgid "Insert audio playlist" +msgstr "Insérer une liste de lecture audio" + +#: wp-includes/media.php:3560 +msgid "← Cancel Audio Playlist" +msgstr "← Annuler la liste de lecture audio" + +#: wp-includes/media.php:3559 +msgid "Edit Audio Playlist" +msgstr "Modifier la liste de lecture audio" + +#: wp-includes/media.php:3558 +msgid "Create Audio Playlist" +msgstr "Créer une liste de lecture audio" + +#: wp-includes/media.php:3557 +msgid "Drag and drop to reorder tracks." +msgstr "Glisser-déposer pour réorganiser les pistes." + +#: wp-includes/media.php:3554 +msgid "Add Subtitles" +msgstr "Ajouter des sous-titres" + +#: wp-includes/media.php:3553 +msgid "Select Poster Image" +msgstr "Choisir une image de couverture" + +#: wp-includes/media.php:3551 +msgid "Add Video Source" +msgstr "Ajouter une source vidéo" + +#: wp-includes/media.php:3550 +msgid "Replace Video" +msgstr "Remplacer la vidéo" + +#: wp-includes/media.php:3549 +msgid "Video Details" +msgstr "Détails de la vidéo" + +#: wp-includes/media.php:3545 +msgid "Add Audio Source" +msgstr "Ajouter une source audio" + +#: wp-includes/media.php:3544 +msgid "Replace Audio" +msgstr "Remplacer le son" + +#: wp-includes/media.php:3543 +msgid "Audio Details" +msgstr "Détails audio" + +#: wp-includes/media.php:3540 +msgid "There has been an error cropping your image." +msgstr "Une erreur est survenue lors du recadrage de votre image." + +#: wp-includes/media.php:3538 +msgid "Cropping…" +msgstr "Recadrage…" + +#: wp-includes/media.php:3537 +msgid "Crop your image" +msgstr "Recadrer votre image" + +#: wp-includes/media.php:3536 +msgid "Crop Image" +msgstr "Recadrer l’image" + +#: wp-includes/media.php:3535 +msgid "Skip Cropping" +msgstr "Pas de recadrage" + +#: wp-includes/media.php:3534 +msgid "Select and Crop" +msgstr "Sélectionner et rogner" + +#: wp-includes/media.php:3529 wp-includes/media.php:3546 +#: wp-includes/media.php:3552 +msgid "Cancel Edit" +msgstr "Annuler la modification" + +#: wp-includes/media.php:3528 +msgid "Replace Image" +msgstr "Remplacer l’image" + +#: wp-includes/media.php:3527 +msgid "Image Details" +msgstr "Détails de l’image" + +#: wp-includes/media.php:3524 +msgid "Reverse order" +msgstr "Inverser l’ordre" + +#: wp-includes/media.php:3523 +msgid "Add to Gallery" +msgstr "Ajouter à la galerie" + +#: wp-includes/media.php:3522 +msgid "Add to gallery" +msgstr "Ajouter à la galerie" + +#: wp-includes/media.php:3521 +msgid "Update gallery" +msgstr "Mettre à jour la galerie" + +#: wp-includes/media.php:3520 +msgid "Insert gallery" +msgstr "Insérer la galerie" + +#: wp-includes/media.php:3519 +msgid "← Cancel Gallery" +msgstr "← Annuler la galerie" + +#: wp-includes/media.php:3518 +msgid "Edit Gallery" +msgstr "Modifier la galerie" + +#: wp-includes/media.php:3517 +msgid "Create Gallery" +msgstr "Créer une galerie" + +#: wp-includes/media.php:3510 +msgid "Insert from URL" +msgstr "Insérer à partir d’une adresse web" + +#: wp-includes/media.php:3504 +msgid "No media files found." +msgstr "Aucun fichier média n’a été trouvé." + +#: wp-includes/media.php:3503 +msgid "Search media items..." +msgstr "Rechercher des médias…" + +#: wp-includes/media.php:3502 +msgid "Search Media" +msgstr "Rechercher un fichier média" + +#: wp-includes/media.php:3501 +msgid "Filter by type" +msgstr "Filtrer par type" + +#: wp-includes/media.php:3500 +msgid "Filter by date" +msgstr "Filtrer par date" + +#: wp-includes/media.php:3497 +msgid "Delete Selected" +msgstr "Supprimer la sélection" + +#: wp-includes/media.php:3496 +msgid "Untrash Selected" +msgstr "Retirer la sélection de la corbeille" + +#: wp-includes/media.php:3495 +msgid "Trash Selected" +msgstr "Mettre la sélection à la corbeille" + +#: wp-includes/media.php:3494 +msgid "Cancel Selection" +msgstr "Annuler la sélection" + +#: wp-includes/media.php:3493 +msgid "Bulk Select" +msgstr "Sélection en masse" + +#: wp-includes/media.php:3492 +msgid "" +"You are about to trash these items.\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de mettre ces éléments à la corbeille.\n" +"« Annuler » pour arrêter, « OK » pour les supprimer." + +#: wp-includes/media.php:3491 wp-includes/script-loader.php:80 +msgid "" +"You are about to permanently delete these items.\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer définitivement ces éléments.\n" +"« Annuler » pour arrêter, « OK » pour continuer." + +#: wp-includes/media.php:3490 +msgid "" +"You are about to permanently delete this item.\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Vous êtes sur le point de supprimer définitivement cet élément.\n" +" « Annuler » pour abandonner, « OK » pour le supprimer." + +#: wp-includes/media.php:3488 +msgctxt "noun" +msgid "Trash" +msgstr "Corbeille" + +#: wp-includes/media.php:3487 +msgid "Unattached" +msgstr "Non attaché" + +#: wp-includes/media.php:3484 +msgid "All dates" +msgstr "Toutes les dates" + +#: wp-includes/media.php:3483 +msgid "All media items" +msgstr "Tous les éléments média" + +#: wp-includes/media.php:3482 +msgid "← Return to library" +msgstr "← Revenir à la bibliothèque" + +#: wp-includes/media.php:3481 +msgid "Create a new video playlist" +msgstr "Créer une nouvelle liste de lecture vidéo" + +#: wp-includes/media.php:3480 +msgid "Create a new playlist" +msgstr "Créer une nouvelle liste de lecture" + +#: wp-includes/media.php:3479 +msgid "Create a new gallery" +msgstr "Créer une nouvelle galerie" + +#: wp-includes/media.php:3478 +msgid "Insert Media" +msgstr "Insérer un média" + +#: wp-includes/media.php:3477 +msgid "Media Library" +msgstr "Bibliothèque de médias" + +#: wp-includes/media.php:3474 +msgid "Upload Images" +msgstr "Envoyer des images" + +#: wp-includes/media.php:3473 +msgid "Upload Files" +msgstr "Envoyer des fichiers" + +#: wp-includes/media.php:3470 +msgid "Drag and drop to reorder media files." +msgstr "Glissez-déposez les médias pour les réorganiser." + +#. translators: This is a would-be plural string used in the media manager. +#. If there is not a word you can use in your language to avoid issues with +#. the lack of plural support here, turn it into "selected: %d" then +#. translate it. +#: wp-includes/media.php:3469 +msgid "%d selected" +msgstr "%d sélection(s)" + +#: wp-includes/media.php:3461 wp-includes/script-loader.php:429 +#: wp-includes/script-loader.php:565 wp-includes/script-loader.php:641 +msgid "Update" +msgstr "Mettre à jour" + +#: wp-includes/media.php:3459 +msgid "Select" +msgstr "Sélectionner" + +#: wp-includes/media.php:3457 +msgid "Add Media" +msgstr "Ajouter un média" + +#: wp-includes/media.php:3115 wp-includes/script-loader.php:431 +#: wp-includes/script-loader.php:612 +msgid "(no title)" +msgstr "(pas de titre)" + +#: wp-includes/media.php:2901 +msgid "No editor could be selected." +msgstr "Aucun éditeur n’a pas pu être sélectionné." + +#: wp-includes/media.php:2186 +msgid "Bitrate Mode" +msgstr "Mode de débit" + +#: wp-includes/media.php:2185 +msgid "Bitrate" +msgstr "Débit" + +#: wp-includes/media.php:2183 +msgctxt "video or audio" +msgid "Length" +msgstr "Durée" + +#: wp-includes/media.php:2182 +msgid "Year" +msgstr "Année" + +#: wp-includes/media.php:2181 +msgid "Genre" +msgstr "Genre" + +#. translators: playlist item title +#: wp-includes/media.php:1832 wp-includes/media.php:1847 +msgctxt "playlist item title" +msgid "“%s”" +msgstr "« %s »" + +#: wp-includes/media-template.php:1255 +msgid "As an app icon" +msgstr "En tant qu’icône d’application" + +#: wp-includes/media-template.php:1245 +msgid "As a browser icon" +msgstr "En tant qu’icône de navigateur" + +#: wp-includes/media-template.php:1239 +msgid "Image crop area preview. Requires mouse interaction." +msgstr "Zone d’aperçu de recadrage d’image. Nécessite l’interaction de la souris." + +#: wp-includes/media-template.php:1233 wp-includes/media.php:3485 +msgid "No items found." +msgstr "Aucun élément trouvé." + +#: wp-includes/media-template.php:1200 +msgid "There are no associated subtitles." +msgstr "Il n’y a pas de sous-titres associés." + +#: wp-includes/media-template.php:1196 +msgctxt "media" +msgid "Remove video track" +msgstr "Retirer la piste vidéo" + +#: wp-includes/media-template.php:1187 +msgid "Tracks (subtitles, captions, descriptions, chapters, or metadata)" +msgstr "Pistes (sous-titres, légendes, descriptions, chapitres ou métadonnées)" + +#: wp-includes/media-template.php:1164 +msgid "Remove poster image" +msgstr "Retirer l’image de couverture" + +#: wp-includes/media-template.php:1162 +msgid "Poster Image" +msgstr "Image de couverture" + +#: wp-includes/media-template.php:1131 wp-includes/media-template.php:1143 +msgid "Remove video source" +msgstr "Retirer la source vidéo" + +#: wp-includes/media-template.php:1094 wp-includes/media-template.php:1183 +msgid "Loop" +msgstr "Répéter" + +#: wp-includes/media-template.php:1089 wp-includes/media-template.php:1178 +msgid "Autoplay" +msgstr "Lecture automatique" + +#: wp-includes/media-template.php:1082 wp-includes/media-template.php:1171 +msgid "Metadata" +msgstr "Métadonnées" + +#: wp-includes/media-template.php:1081 wp-includes/media-template.php:1170 +msgctxt "auto preload" +msgid "Auto" +msgstr "Automatique" + +#: wp-includes/media-template.php:1079 wp-includes/media-template.php:1168 +msgid "Preload" +msgstr "Précharger" + +#: wp-includes/media-template.php:1069 wp-includes/media-template.php:1151 +msgid "Add alternate sources for maximum HTML5 playback:" +msgstr "Ajoutez des sources alternatives pour une lecture optimale avec HTML5 :" + +#: wp-includes/media-template.php:1048 wp-includes/media-template.php:1062 +msgid "Remove audio source" +msgstr "Retirer la source audio" + +#: wp-includes/media-template.php:1012 +msgid "Link CSS Class" +msgstr "Classe CSS du lien" + +#: wp-includes/media-template.php:1008 +msgid "Link Rel" +msgstr "Attribut « Rel » du lien" + +#: wp-includes/media-template.php:999 +msgid "Image CSS Class" +msgstr "Classe CSS de l’image" + +#: wp-includes/media-template.php:995 +msgid "Image Title Attribute" +msgstr "Attribut « Title » de l’image" + +#: wp-includes/media-template.php:991 +msgid "Advanced Options" +msgstr "Options avancées" + +#: wp-includes/media-template.php:956 +msgid "Custom Size" +msgstr "Taille personalisée" + +#: wp-includes/media-template.php:909 +msgid "Display Settings" +msgstr "Réglages de l’affichage" + +#: wp-includes/media-template.php:905 +msgid "Alternative Text" +msgstr "Texte alternatif" + +#: wp-includes/media-template.php:889 wp-includes/media.php:3462 +msgid "Replace" +msgstr "Remplacer" + +#: wp-includes/media-template.php:888 +msgid "Edit Original" +msgstr "Modifier l’original" + +#: wp-includes/media-template.php:866 wp-includes/media-template.php:978 +msgid "Image URL" +msgstr "Adresse web de l’image" + +#: wp-includes/media-template.php:845 wp-includes/media-template.php:911 +msgid "Align" +msgstr "Alignement" + +#: wp-includes/media-template.php:811 +msgid "Show Images" +msgstr "Montrer les images" + +#: wp-includes/media-template.php:803 +msgid "Show Artist Name in Tracklist" +msgstr "Afficher le nom de l’artiste dans la liste de lecture" + +#: wp-includes/media-template.php:794 +msgid "Show Tracklist" +msgstr "Montrer la liste des pistes" + +#: wp-includes/media-template.php:792 +msgid "Show Video List" +msgstr "Afficher la list des vidéos" + +#: wp-includes/media-template.php:782 +msgid "Playlist Settings" +msgstr "Réglages de liste de lecture" + +#: wp-includes/media-template.php:751 +msgid "Random Order" +msgstr "Ordre aléatoire" + +#: wp-includes/media-template.php:737 +msgid "Columns" +msgstr "Colonnes" + +#: wp-includes/media-template.php:712 +msgid "Gallery Settings" +msgstr "Réglages de la galerie" + +#: wp-includes/media-template.php:694 wp-includes/media-template.php:769 +#: wp-includes/media-template.php:943 wp-includes/media.php:3151 +msgid "Full Size" +msgstr "Taille originale" + +#: wp-includes/media-template.php:693 wp-includes/media-template.php:768 +#: wp-includes/media-template.php:942 wp-includes/media.php:3150 +msgid "Large" +msgstr "Grande" + +#: wp-includes/media-template.php:692 wp-includes/media-template.php:767 +#: wp-includes/media-template.php:941 wp-includes/media.php:3149 +msgid "Medium" +msgstr "Moyenne" + +#: wp-includes/media-template.php:691 wp-includes/media-template.php:766 +#: wp-includes/media-template.php:940 wp-includes/media.php:3148 +msgid "Thumbnail" +msgstr "Miniature" + +#: wp-includes/media-template.php:682 wp-includes/media-template.php:756 +#: wp-includes/media-template.php:931 +msgid "Size" +msgstr "Taille" + +#: wp-includes/media-template.php:672 wp-includes/media-template.php:869 +#: wp-includes/media-template.php:982 +msgid "Custom URL" +msgstr "Lien personnalisé" + +#: wp-includes/media-template.php:667 wp-includes/media-template.php:725 +#: wp-includes/media-template.php:974 +msgid "Attachment Page" +msgstr "Page du fichier joint" + +#: wp-includes/media-template.php:665 +msgid "Link to Attachment Page" +msgstr "Lien vers la page du fichier joint" + +#: wp-includes/media-template.php:660 wp-includes/media-template.php:728 +#: wp-includes/media-template.php:971 +msgid "Media File" +msgstr "Fichier média" + +#: wp-includes/media-template.php:658 +msgid "Link to Media File" +msgstr "Lien vers le fichier média" + +#: wp-includes/media-template.php:648 +msgid "Embed Media Player" +msgstr "Intégrer le lecteur de média" + +#: wp-includes/media-template.php:637 wp-includes/media-template.php:715 +#: wp-includes/media-template.php:863 wp-includes/media-template.php:967 +msgid "Link To" +msgstr "Lier à" + +#: wp-includes/media-template.php:635 +msgid "Embed or Link" +msgstr "Intégrer ou lier" + +#: wp-includes/media-template.php:605 +msgid "Attachment Display Settings" +msgstr "Réglages de l’affichage du fichier joint" + +#: wp-includes/media-template.php:598 wp-includes/script-loader.php:718 +msgid "Clear" +msgstr "Effacer" + +#: wp-includes/media-template.php:595 +msgid "Edit Selection" +msgstr "Modifier la sélection" + +#: wp-includes/media-template.php:498 wp-includes/media.php:3507 +msgid "Attachment Details" +msgstr "Détails du fichier joint" + +#: wp-includes/media-template.php:490 +msgid "Describe this media file…" +msgstr "Décrivez ce fichier média…" + +#: wp-includes/media-template.php:488 +msgid "Describe this audio file…" +msgstr "Décrivez ce fichier audio…" + +#: wp-includes/media-template.php:486 +msgid "Describe this video…" +msgstr "Décrivez cette vidéo…" + +#: wp-includes/media-template.php:482 +msgid "Caption this image…" +msgstr "Décrivez cette image…" + +#: wp-includes/media-template.php:475 +msgid "Deselect" +msgstr "Désélectionner" + +#: wp-includes/media-template.php:438 wp-includes/media-template.php:541 +#: wp-includes/media.php:3498 +msgid "Delete Permanently" +msgstr "Supprimer définitivement" + +#: wp-includes/media-template.php:435 wp-includes/media-template.php:538 +msgctxt "verb" +msgid "Trash" +msgstr "Corbeille" + +#: wp-includes/media-template.php:433 wp-includes/media-template.php:536 +msgid "Untrash" +msgstr "Sortir de la corbeille" + +#: wp-includes/media-template.php:428 +msgid "Edit more details" +msgstr " Indiquer plus de détails" + +#: wp-includes/media-template.php:426 +msgid "View attachment page" +msgstr "Voir la page du fichier joint" + +#: wp-includes/media-template.php:414 +msgid "Uploaded To" +msgstr "Mis en ligne sur" + +#: wp-includes/media-template.php:409 +msgid "Uploaded By" +msgstr "Mis en ligne par" + +#: wp-includes/media-template.php:400 wp-includes/media-template.php:581 +#: wp-includes/media-template.php:840 +msgid "Alt Text" +msgstr "Texte alternatif" + +#: wp-includes/media-template.php:386 wp-includes/media-template.php:567 +#: wp-includes/media.php:2177 +msgid "Album" +msgstr "Album" + +#: wp-includes/media-template.php:385 wp-includes/media-template.php:566 +#: wp-includes/media.php:2176 +msgid "Artist" +msgstr "Artiste" + +#: wp-includes/media-template.php:357 +msgid "Bitrate:" +msgstr "Débit binaire" + +#: wp-includes/media-template.php:352 wp-includes/media-template.php:530 +msgid "Length:" +msgstr "Durée :" + +#: wp-includes/media-template.php:347 +msgid "Dimensions:" +msgstr "Dimensions :" + +#: wp-includes/media-template.php:344 +msgid "File size:" +msgstr "Taille du fichier :" + +#: wp-includes/media-template.php:342 +msgid "Uploaded on:" +msgstr "Mis en ligne le :" + +#: wp-includes/media-template.php:341 +msgid "File type:" +msgstr "Type du fichier :" + +#: wp-includes/media-template.php:340 +msgid "File name:" +msgstr "Nom du fichier :" + +#: wp-includes/media-template.php:337 wp-includes/media-template.php:501 +msgid "Saved." +msgstr "Enregistré." + +#: wp-includes/media-template.php:329 +msgid "Document Preview" +msgstr "Aperçu du document" + +#: wp-includes/media-template.php:327 wp-includes/media-template.php:525 +#: wp-includes/media.php:3530 +msgid "Edit Image" +msgstr "Modifier l’image" + +#: wp-includes/media-template.php:282 +msgid "Edit next media item" +msgstr "Modifier l’élément média suivant" + +#: wp-includes/media-template.php:281 +msgid "Edit previous media item" +msgstr "Modifier l’élément média précédent" + +#: wp-includes/media-template.php:261 +msgid "Dismiss Errors" +msgstr "Ignorer les erreurs" + +#: wp-includes/media-template.php:260 +msgid "Uploading" +msgstr "Mise en ligne" + +#: wp-includes/media-template.php:255 +msgid "Grid View" +msgstr "Vue en grille" + +#: wp-includes/media-template.php:252 +msgid "List View" +msgstr "Vue en liste" + +#: wp-includes/media-template.php:238 wp-includes/media.php:3539 +msgid "Suggested image dimensions:" +msgstr "Dimensions d’image suggérées :" + +#: wp-includes/media-template.php:233 +msgid "Maximum upload file size: %s." +msgstr "Taille de fichier maximale pour la mise en ligne : %s." + +#: wp-includes/media-template.php:205 +msgid "Select Files" +msgstr "Choisir des fichiers" + +#: wp-includes/media-template.php:204 +msgctxt "Uploader: Drop files here - or - Select Files" +msgid "or" +msgstr "ou" + +#: wp-includes/media-template.php:203 +msgid "Drop files anywhere to upload" +msgstr "Déposez vos fichiers n’importe où pour les mettre en ligne" + +#: wp-includes/media-template.php:196 +msgid "Upload Limit Exceeded" +msgstr "Limite de mise en ligne dépassée" + +#: wp-includes/media-template.php:194 +msgid "The web browser on your device cannot be used to upload files. You may be able to use the native app for your device instead." +msgstr "Le navigateur web de votre système ne permet pas de mettre des fichiers en ligne. Vous devriez pouvoir le faire en passant par une application native." + +#: wp-includes/media-template.php:187 +msgid "Close uploader" +msgstr "Fermer le panneau de chargement" + +#: wp-includes/media-template.php:174 wp-includes/media-template.php:180 +msgid "Drop files to upload" +msgstr "Déposez vos fichiers pour les mettre en ligne" + +#: wp-includes/media-template.php:166 +msgid "Close media panel" +msgstr "Fermer le panneau des médias" + +#: wp-includes/load.php:536 +msgid "The site you have requested is not installed properly. Please contact the system administrator." +msgstr "Le site que vous avez demandé n’est pas installé correctement. Veuillez contacter l’administrateur de votre serveur." + +#. translators: 1: $table_prefix 2: wp-config.php +#: wp-includes/load.php:438 +msgid "ERROR: %1$s in %2$s can only contain numbers, letters, and underscores." +msgstr "ERREUR : la variable %1$s du fichier %2$s ne peut contenir que des chiffres, des lettres et des tirets bas ( _ )." + +#: wp-includes/load.php:223 +msgid "Briefly unavailable for scheduled maintenance. Check back in a minute." +msgstr "Indisponibilité temporaire pour cause de maintenance. Veuillez revenir dans un instant." + +#: wp-includes/load.php:219 +msgid "Maintenance" +msgstr "Maintenance" + +#: wp-includes/load.php:141 +msgid "Your PHP installation appears to be missing the MySQL extension which is required by WordPress." +msgstr "Votre installation PHP ne dispose pas de MySQL. Extension requise pour WordPress." + +#. translators: 1: Current PHP version number, 2: WordPress version number, 3: +#. Minimum required PHP version number +#: wp-includes/load.php:132 +msgid "Your server is running PHP version %1$s but WordPress %2$s requires at least %3$s." +msgstr "Votre serveur utilise la version %1$s de PHP mais WordPress %2$s nécessite au moins la version %3$s." + +#: wp-includes/link-template.php:3745 +msgid "This is the short link." +msgstr "Ceci est un lien court." + +#: wp-includes/link-template.php:2823 wp-includes/link-template.php:2871 +msgid "Comments navigation" +msgstr "Navigation des commentaires" + +#: wp-includes/link-template.php:2822 +msgid "Newer comments" +msgstr "Commentaires plus récents" + +#: wp-includes/link-template.php:2821 +msgid "Older comments" +msgstr "Commentaires plus anciens" + +#: wp-includes/link-template.php:2735 +msgid "« Older Comments" +msgstr "« Commentaires plus anciens" + +#: wp-includes/link-template.php:2691 +msgid "Newer Comments »" +msgstr "Commentaires plus récents »" + +#: wp-includes/link-template.php:2535 +msgctxt "next set of posts" +msgid "Next" +msgstr "Suivant" + +#: wp-includes/link-template.php:2534 +msgctxt "previous set of posts" +msgid "Previous" +msgstr "Précédent" + +#: wp-includes/link-template.php:2482 wp-includes/link-template.php:2536 +#: wp-includes/link-template.php:2580 +msgid "Posts navigation" +msgstr "Navigation des articles" + +#: wp-includes/link-template.php:2481 +msgid "Newer posts" +msgstr "Articles plus récents" + +#: wp-includes/link-template.php:2480 +msgid "Older posts" +msgstr "Articles plus anciens" + +#: wp-includes/link-template.php:2414 +msgid "Post navigation" +msgstr "Navigation de l’article" + +#: wp-includes/link-template.php:2300 wp-includes/link-template.php:2352 +msgid "« Previous Page" +msgstr "« Page précédente" + +#: wp-includes/link-template.php:2217 wp-includes/link-template.php:2353 +msgid "Next Page »" +msgstr "Page suivante »" + +#: wp-includes/link-template.php:1779 wp-includes/link-template.php:2021 +msgid "Next Post" +msgstr "Article suivant" + +#: wp-includes/link-template.php:1779 wp-includes/link-template.php:2021 +msgid "Previous Post" +msgstr "Article précédent" + +#: wp-includes/link-template.php:1607 +msgid "Use commas instead of %s to separate excluded terms." +msgstr "Utilisez des virgules au lieu de %s pour séparer les termes exclus." + +#: wp-includes/link-template.php:994 wp-includes/link-template.php:1329 +#: wp-includes/link-template.php:1431 wp-includes/link-template.php:1492 +msgid "Edit This" +msgstr "Modifier" + +#: wp-includes/link-template.php:699 +msgid "Comments Feed" +msgstr "Flux des commentaires" + +#: wp-includes/l10n.php:1222 +msgctxt "translations" +msgid "Available" +msgstr "Disponible" + +#: wp-includes/l10n.php:1198 +msgctxt "default site language" +msgid "Site Default" +msgstr "Site par défaut" + +#: wp-includes/l10n.php:1191 +msgctxt "translations" +msgid "Installed" +msgstr "Installé" + +#: wp-includes/general-template.php:3472 +msgctxt "admin color scheme" +msgid "Coffee" +msgstr "Café" + +#: wp-includes/general-template.php:3466 +msgctxt "admin color scheme" +msgid "Ocean" +msgstr "Océan" + +#: wp-includes/general-template.php:3460 +msgctxt "admin color scheme" +msgid "Ectoplasm" +msgstr "Ectoplasme" + +#: wp-includes/general-template.php:3454 +msgctxt "admin color scheme" +msgid "Sunrise" +msgstr "Lever du soleil" + +#: wp-includes/general-template.php:3448 +msgctxt "admin color scheme" +msgid "Midnight" +msgstr "Minuit" + +#: wp-includes/general-template.php:3442 +msgctxt "admin color scheme" +msgid "Blue" +msgstr "Bleu" + +#: wp-includes/general-template.php:3436 +msgctxt "admin color scheme" +msgid "Light" +msgstr "Lumineux" + +#: wp-includes/general-template.php:3425 +msgctxt "admin color scheme" +msgid "Default" +msgstr "Par défaut" + +#: wp-includes/general-template.php:3259 +msgid "Next »" +msgstr "Suivant »" + +#: wp-includes/general-template.php:3258 +msgid "« Previous" +msgstr "« Précédent" + +#. translators: 1: blog name, 2: separator(raquo), 3: post type name +#: wp-includes/general-template.php:2662 +msgid "%1$s %2$s %3$s Feed" +msgstr "%1$s %2$s Flux pour %3$s" + +#. translators: 1: blog name, 2: separator(raquo), 3: search phrase +#: wp-includes/general-template.php:2660 +msgid "%1$s %2$s Search Results for “%3$s” Feed" +msgstr "%1$s %2$s Flux de résultats de la recherche pour "%3$s"" + +#. translators: 1: blog name, 2: separator(raquo), 3: author name +#: wp-includes/general-template.php:2658 +msgid "%1$s %2$s Posts by %3$s Feed" +msgstr "%1$s %2$s Flux des articles écrits par %3$s" + +#. translators: 1: blog name, 2: separator(raquo), 3: term name, 4: taxonomy +#. singular name +#: wp-includes/general-template.php:2656 +msgid "%1$s %2$s %3$s %4$s Feed" +msgstr "Flux pour %1$s %2$s %3$s %4$s" + +#. translators: 1: blog name, 2: separator(raquo), 3: tag name +#: wp-includes/general-template.php:2654 +msgid "%1$s %2$s %3$s Tag Feed" +msgstr "%1$s %2$s Flux de l’étiquette %3$s" + +#. translators: 1: blog name, 2: separator(raquo), 3: category name +#: wp-includes/general-template.php:2652 +msgid "%1$s %2$s %3$s Category Feed" +msgstr "%1$s %2$s Flux de la catégorie %3$s" + +#. translators: 1: blog name, 2: separator(raquo), 3: post title +#: wp-includes/general-template.php:2650 +msgid "%1$s %2$s %3$s Comments Feed" +msgstr "%1$s %2$s %3$s Flux des commentaires" + +#. translators: 1: blog title, 2: separator (raquo) +#: wp-includes/general-template.php:2610 +msgid "%1$s %2$s Comments Feed" +msgstr "%1$s %2$s Flux des commentaires" + +#. translators: 1: blog title, 2: separator (raquo) +#: wp-includes/general-template.php:2608 +msgid "%1$s %2$s Feed" +msgstr "%1$s %2$s Flux" + +#. translators: Separator between blog name and feed type in feed links +#: wp-includes/general-template.php:2606 wp-includes/general-template.php:2648 +msgctxt "feed link" +msgid "»" +msgstr "»" + +#. translators: Post calendar label. 1: Date +#: wp-includes/general-template.php:2062 +msgid "Posts published on %s" +msgstr "Publications publiées sur %s" + +#. translators: Calendar caption: 1: month name, 2: 4-digit year +#: wp-includes/general-template.php:1968 +msgctxt "calendar caption" +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#. translators: 1: month name, 2: 4-digit year +#: wp-includes/general-template.php:1743 wp-includes/media.php:3398 +msgid "%1$s %2$d" +msgstr "%1$s %2$d" + +#: wp-includes/general-template.php:1509 +#: wp-includes/theme-compat/sidebar.php:91 +#: wp-includes/widgets/class-wp-widget-archives.php:31 +#: wp-includes/widgets/class-wp-widget-archives.php:49 +msgid "Archives" +msgstr "Archives" + +#. translators: Taxonomy term archive title. 1: Taxonomy singular name, 2: +#. Current taxonomy term +#: wp-includes/general-template.php:1507 +msgid "%1$s: %2$s" +msgstr "%1$s : %2$s" + +#. translators: Post type archive title. 1: Post type name +#: wp-includes/general-template.php:1503 +msgid "Archives: %s" +msgstr "Archives : %s" + +#: wp-includes/general-template.php:1499 +msgctxt "post format archive title" +msgid "Chats" +msgstr "Discussions" + +#: wp-includes/general-template.php:1497 +msgctxt "post format archive title" +msgid "Audio" +msgstr "Audio" + +#: wp-includes/general-template.php:1495 +msgctxt "post format archive title" +msgid "Statuses" +msgstr "États" + +#: wp-includes/general-template.php:1493 +msgctxt "post format archive title" +msgid "Links" +msgstr "Liens" + +#: wp-includes/general-template.php:1491 +msgctxt "post format archive title" +msgid "Quotes" +msgstr "Citations" + +#: wp-includes/general-template.php:1489 +msgctxt "post format archive title" +msgid "Videos" +msgstr "Vidéos" + +#: wp-includes/general-template.php:1487 +msgctxt "post format archive title" +msgid "Images" +msgstr "Images" + +#: wp-includes/general-template.php:1485 +msgctxt "post format archive title" +msgid "Galleries" +msgstr "Galeries" + +#: wp-includes/general-template.php:1483 +msgctxt "post format archive title" +msgid "Asides" +msgstr "En passant" + +#: wp-includes/general-template.php:1480 wp-includes/general-template.php:2060 +msgctxt "daily archives date format" +msgid "F j, Y" +msgstr "j F Y" + +#. translators: Daily archive title. 1: Date +#: wp-includes/general-template.php:1480 +msgid "Day: %s" +msgstr "Jour : %s" + +#. translators: Monthly archive title. 1: Month name and year +#: wp-includes/general-template.php:1477 +msgid "Month: %s" +msgstr "Mois : %s" + +#. translators: Yearly archive title. 1: Year +#: wp-includes/general-template.php:1474 +msgid "Year: %s" +msgstr "Année : %s" + +#. translators: Author archive title. 1: Author name +#: wp-includes/general-template.php:1471 +msgid "Author: %s" +msgstr "Auteur : %s" + +#. translators: Tag archive title. 1: Tag name +#: wp-includes/general-template.php:1468 +msgid "Tag: %s" +msgstr "Étiquette : %s" + +#. translators: Category archive title. 1: Category name +#: wp-includes/general-template.php:1465 +msgid "Category: %s" +msgstr "Catégorie : %s" + +#. translators: 1: separator, 2: search phrase +#: wp-includes/general-template.php:1179 +msgid "Search Results %1$s %2$s" +msgstr "Résultats de recherche %1$s %2$s" + +#: wp-includes/general-template.php:1016 +msgid "Page %s" +msgstr "Page %s" + +#: wp-includes/general-template.php:1008 wp-includes/general-template.php:1477 +msgctxt "monthly archives date format" +msgid "F Y" +msgstr "F Y" + +#: wp-includes/general-template.php:1005 wp-includes/general-template.php:1474 +msgctxt "yearly archives date format" +msgid "Y" +msgstr "Y" + +#. translators: %s: search phrase +#: wp-includes/general-template.php:974 +msgid "Search Results for “%s”" +msgstr "Résultats de recherche pour « %s »" + +#: wp-includes/general-template.php:969 wp-includes/general-template.php:1184 +msgid "Page not found" +msgstr "Page non trouvée" + +#. translators: 1: 'text_direction' argument, 2: bloginfo() function name, 3: +#. is_rtl() function name +#: wp-includes/general-template.php:725 +msgid "The %1$s option is deprecated for the family of %2$s functions. Use the %3$s function instead." +msgstr "L’option %1$s est obsolète pour l’ensemble des fonctions %2$s. Utilisez plutôt l’option %3$s." + +#. translators: Translate this to the correct language tag for your locale, see +#. https://www.w3.org/International/articles/language-tags/ for reference. Do +#. not translate into your own language. +#: wp-includes/general-template.php:716 +msgid "html_lang_attribute" +msgstr "fr-FR" + +#. translators: 1: 'siteurl'/'home' argument, 2: bloginfo() function name, 3: +#. 'url' argument +#: wp-includes/general-template.php:652 +msgid "The %1$s option is deprecated for the family of %2$s functions. Use the %3$s option instead." +msgstr "L’option %1$s est obsolète pour l’ensemble des fonctions %2$s. Utilisez plutôt l’option %3$s." + +#: wp-includes/general-template.php:543 +msgid "Site Admin" +msgstr "Admin. du site" + +#: wp-includes/general-template.php:539 wp-login.php:553 wp-login.php:666 +#: wp-login.php:740 wp-login.php:933 +msgid "Register" +msgstr "Inscription" + +#: wp-includes/general-template.php:411 wp-login.php:884 wp-login.php:916 +msgid "Log In" +msgstr "Se connecter" + +#: wp-includes/general-template.php:410 wp-login.php:914 +msgid "Remember Me" +msgstr "Se souvenir de moi" + +#: wp-includes/general-template.php:409 wp-login.php:903 +msgid "Password" +msgstr "Mot de passe" + +#: wp-includes/general-template.php:408 wp-login.php:535 wp-login.php:899 +msgid "Username or Email Address" +msgstr "Nom d’utilisateur ou adresse e-mail" + +#: wp-includes/general-template.php:274 +msgid "Log out" +msgstr "Déconnexion" + +#: wp-includes/general-template.php:272 wp-login.php:550 wp-login.php:613 +#: wp-login.php:663 wp-login.php:744 +msgid "Log in" +msgstr "Connexion" + +#: wp-includes/general-template.php:227 wp-includes/general-template.php:234 +msgctxt "submit button" +msgid "Search" +msgstr "Rechercher" + +#: wp-includes/general-template.php:225 +msgctxt "placeholder" +msgid "Search …" +msgstr "Recherche…" + +#: wp-includes/general-template.php:224 wp-includes/general-template.php:232 +msgctxt "label" +msgid "Search for:" +msgstr "Rechercher :" + +#. translators: 1: script name, 2: wp_enqueue_scripts +#: wp-includes/functions.wp-scripts.php:230 +msgid "Do not deregister the %1$s script in the administration area. To target the front-end theme, use the %2$s hook." +msgstr "Ne désenregistrez pas le script %1$s dans la zone d’administration. Pour cibler le thème public, utilisez le crochet %2$s." + +#. translators: 1: