| 1 | # Plugin Gestionnaires de Widget pour Movable Type |
|---|
| 2 | # Auteur: Byrne Reese, Six Apart (http://www.sixapart.com) |
|---|
| 3 | # Proposᅵ sous License Artistique |
|---|
| 4 | # |
|---|
| 5 | package WidgetManager::L10N::fr; |
|---|
| 6 | |
|---|
| 7 | use strict; |
|---|
| 8 | use base 'WidgetManager::L10N::en_us'; |
|---|
| 9 | use vars qw( %Lexicon ); |
|---|
| 10 | |
|---|
| 11 | ## The following is the translation table. |
|---|
| 12 | |
|---|
| 13 | %Lexicon = ( |
|---|
| 14 | ## plugins/WidgetManager/lib/WidgetManager/Plugin.pm |
|---|
| 15 | 'Can\'t find included template widget \'[_1]\'' => 'Impossible de trouver le gabarit de widget inclus \'[_1]\'', |
|---|
| 16 | 'Cloning Widgets for blog...' => 'Cloner les widgets pour le blog...', |
|---|
| 17 | |
|---|
| 18 | ## plugins/WidgetManager/lib/WidgetManager/CMS.pm |
|---|
| 19 | 'Can\'t duplicate the existing \'[_1]\' Widget Manager. Please go back and enter a unique name.' => 'Impossible de dupliquer le gestionnaire de Widgets \'[_1]\' existant. Merci de revenir à la page précédente et de saisir un nom unique.', |
|---|
| 20 | 'Main Menu' => 'Menu principal', |
|---|
| 21 | 'Widget Manager' => 'Gestionnaire de Widget', |
|---|
| 22 | 'New Widget Set' => 'Nouveau groupe de widgets', |
|---|
| 23 | |
|---|
| 24 | ## plugins/WidgetManager/default_widgets/monthly_archive_dropdown.mtml |
|---|
| 25 | 'Select a Month...' => 'Sélectionnez un Mois...', |
|---|
| 26 | |
|---|
| 27 | ## plugins/WidgetManager/default_widgets/category_archive_list.mtml |
|---|
| 28 | |
|---|
| 29 | ## plugins/WidgetManager/default_widgets/calendar.mtml |
|---|
| 30 | 'Monthly calendar with links to daily posts' => 'Calendrier mensuel avec des liens vers les notes du jour', |
|---|
| 31 | 'Sun' => 'Dim', |
|---|
| 32 | 'Mon' => 'Lun', |
|---|
| 33 | 'Tue' => 'Mar', |
|---|
| 34 | 'Wed' => 'Mer', |
|---|
| 35 | 'Thu' => 'Jeu', |
|---|
| 36 | 'Fri' => 'Ven', |
|---|
| 37 | 'Sat' => 'Sam', |
|---|
| 38 | |
|---|
| 39 | ## plugins/WidgetManager/default_widgets/recent_entries.mtml |
|---|
| 40 | |
|---|
| 41 | ## plugins/WidgetManager/default_widgets/current_author_monthly_archive_list.mtml |
|---|
| 42 | |
|---|
| 43 | ## plugins/WidgetManager/default_widgets/date_based_author_archives.mtml |
|---|
| 44 | 'Author Yearly Archives' => 'Archives Annuelles par Auteurs', |
|---|
| 45 | 'Author Weekly Archives' => 'Archives Hebdomadaires par Auteurs', |
|---|
| 46 | 'Author Daily Archives' => 'Archives Quotidiennes par Auteurs', |
|---|
| 47 | |
|---|
| 48 | ## plugins/WidgetManager/default_widgets/main_index_meta_widget.mtml |
|---|
| 49 | 'This is a custom set of widgets that are conditioned to only appear on the homepage (or "main_index"). More info: [_1]' => 'Ceci est un groupe de wigets personnalisé qui est conditioné pour n\'apparaître que sur la page d\'accueil (ou "main_index"). Plus d\'infos : [_1]', |
|---|
| 50 | |
|---|
| 51 | ## plugins/WidgetManager/default_widgets/syndication.mtml |
|---|
| 52 | 'Search results matching “<$mt:SearchString$>”' => 'Résultats de la recherche pour la requête “<$mt:SearchString$>”', |
|---|
| 53 | |
|---|
| 54 | ## plugins/WidgetManager/default_widgets/current_category_monthly_archive_list.mtml |
|---|
| 55 | |
|---|
| 56 | ## plugins/WidgetManager/default_widgets/recent_comments.mtml |
|---|
| 57 | '<a href="[_1]">[_2] commented on [_3]</a>: [_4]' => '<a href="[_1]">[_2] a commenté sur [_3]</a>: [_4]', |
|---|
| 58 | |
|---|
| 59 | ## plugins/WidgetManager/default_widgets/technorati_search.mtml |
|---|
| 60 | 'Technorati' => 'Technorati', |
|---|
| 61 | '<a href=\'http://www.technorati.com/\'>Technorati</a> search' => 'Recherche <a href=\'http://www.technorati.com/\'>Technorati</a> ', |
|---|
| 62 | 'this blog' => 'ce blog', |
|---|
| 63 | 'all blogs' => 'tous les blogs', |
|---|
| 64 | 'Blogs that link here' => 'Blogs pointant ici', |
|---|
| 65 | |
|---|
| 66 | ## plugins/WidgetManager/default_widgets/monthly_archive_list.mtml |
|---|
| 67 | |
|---|
| 68 | ## plugins/WidgetManager/default_widgets/signin.mtml |
|---|
| 69 | 'You are signed in as ' => 'Vous êtes identifié en tant que ', |
|---|
| 70 | 'You do not have permission to sign in to this blog.' => 'Vous n\'avez pas l\'autorisation de vous identifier sur ce blog.', |
|---|
| 71 | |
|---|
| 72 | ## plugins/WidgetManager/default_widgets/pages_list.mtml |
|---|
| 73 | |
|---|
| 74 | ## plugins/WidgetManager/default_widgets/archive_meta_widget.mtml |
|---|
| 75 | 'This is a custom set of widgets that are conditioned to serve different content based upon what type of archive it is included. More info: [_1]' => 'Ceci est un groupe de widgets personnalisé qui est conditioné pour afficher un contenu différent basé sur le type d\'archives qui est inclu. Plus d\'infos : [_1]', |
|---|
| 76 | 'Current Category Monthly Archives' => 'Archives Mensuelles de la Catégorie Courante', |
|---|
| 77 | |
|---|
| 78 | ## plugins/WidgetManager/default_widgets/date_based_category_archives.mtml |
|---|
| 79 | 'Category Yearly Archives' => 'Archives Annuelles par Catégories', |
|---|
| 80 | 'Category Weekly Archives' => 'Archives Hebdomadaires par Catégories', |
|---|
| 81 | 'Category Daily Archives' => 'Archives Quotidiennes par Catégories', |
|---|
| 82 | |
|---|
| 83 | ## plugins/WidgetManager/default_widgets/widgets.cfg |
|---|
| 84 | 'About This Page' => 'Ã propos de cette page', |
|---|
| 85 | 'Current Author Monthly Archives' => 'Archives Mensuelles de l\'Auteur Courant', |
|---|
| 86 | 'Calendar' => 'Calendrier', |
|---|
| 87 | 'Creative Commons' => 'Creative Commons', |
|---|
| 88 | 'Home Page Widgets' => 'Widgets de Page d\'Accueil', |
|---|
| 89 | 'Monthly Archives Dropdown' => 'Liste déroulante des Archives Mensuelles', |
|---|
| 90 | 'Page Listing' => 'Liste des Pages', # Translate - New |
|---|
| 91 | 'Powered By' => 'Animé Par', |
|---|
| 92 | 'Syndication' => 'Syndication', |
|---|
| 93 | 'Technorati Search' => 'Recherche Technorati', |
|---|
| 94 | 'Date-Based Author Archives' => 'Archives des Auteurs par Dates', |
|---|
| 95 | 'Date-Based Category Archives' => 'Archives des Catégories par Dates', |
|---|
| 96 | |
|---|
| 97 | ## plugins/WidgetManager/default_widgets/creative_commons.mtml |
|---|
| 98 | 'This weblog is licensed under a' => 'Ce blog est sujet à une licence', |
|---|
| 99 | 'Creative Commons License' => 'Creative Commons', |
|---|
| 100 | |
|---|
| 101 | ## plugins/WidgetManager/default_widgets/about_this_page.mtml |
|---|
| 102 | |
|---|
| 103 | ## plugins/WidgetManager/default_widgets/author_archive_list.mtml |
|---|
| 104 | |
|---|
| 105 | ## plugins/WidgetManager/default_widgets/powered_by.mtml |
|---|
| 106 | |
|---|
| 107 | ## plugins/WidgetManager/default_widgets/tag_cloud.mtml |
|---|
| 108 | |
|---|
| 109 | ## plugins/WidgetManager/default_widgets/recent_assets.mtml |
|---|
| 110 | |
|---|
| 111 | ## plugins/WidgetManager/default_widgets/search.mtml |
|---|
| 112 | |
|---|
| 113 | ## plugins/WidgetManager/tmpl/edit.tmpl |
|---|
| 114 | 'Edit Widget Set' => 'Modifier le groupe de widgets', |
|---|
| 115 | 'Please use a unique name for this widget set.' => 'Merci d\'utiliser un nom unique pour ce groupe de widgets.', |
|---|
| 116 | 'You already have a widget set named \'[_1].\' Please use a unique name for this widget set.' => 'Vous avez déjà un widget nommé \'[_1].\' Merci d\'utiliser un nom unique pour ce groupe de widgets.', |
|---|
| 117 | 'Your changes to the Widget Set have been saved.' => 'Les modifications apportées au groupe de widgets ont été enregistrées.', |
|---|
| 118 | 'Set Name' => 'Nom du groupe', |
|---|
| 119 | 'Drag and drop the widgets you want into the Installed column.' => 'Glissez-déposez les widgets que vous voulez dans la colonne de gauche.', |
|---|
| 120 | 'Installed Widgets' => 'Widgets installés', |
|---|
| 121 | 'Available Widgets' => 'Widgets disponibles', |
|---|
| 122 | 'Save changes to this widget set (s)' => 'Enregistrer les modifications de ce groupe de widgets', |
|---|
| 123 | |
|---|
| 124 | ## plugins/WidgetManager/tmpl/list.tmpl |
|---|
| 125 | 'Widget Sets' => 'Groupes de widgets', |
|---|
| 126 | 'Widget Set' => 'Groupe de widgets', |
|---|
| 127 | 'Delete selected Widget Sets (x)' => 'Effacer les groupes de widgets sélectionnés (x)', |
|---|
| 128 | 'Helpful Tips' => 'Astuces', |
|---|
| 129 | 'To add a widget set to your templates, use the following syntax:' => 'Pour ajouter un groupe de widgets à vos gabarits, utilisez la syntaxe suivante :', |
|---|
| 130 | '<strong><$MTWidgetSet name="Name of the Widget Set"$></strong>' => '<strong><$MTWidgetSet name="Nom du groupe de widgets"$></strong>', |
|---|
| 131 | 'Edit Widget Templates' => 'Ãditer les gabarits de widget', |
|---|
| 132 | 'Your changes to the widget set have been saved.' => 'Les modifications apportées au widget ont été enregistrées.', |
|---|
| 133 | 'You have successfully deleted the selected widget set(s) from your blog.' => 'Vous avez supprimé de votre blog les groupes de widgets sélectionnés.', |
|---|
| 134 | 'Create Widget Set' => 'Créer un groupe de widgets', |
|---|
| 135 | 'No Widget Sets could be found.' => 'Aucun groupe de widgets n\'a été trouvé', |
|---|
| 136 | |
|---|
| 137 | ## plugins/WidgetManager/WidgetManager.pl |
|---|
| 138 | 'Maintain your blog\'s widget content using a handy drag and drop interface.' => 'Organisez les widgets de votre blog via une interface de type glissez-déposez.', |
|---|
| 139 | 'Widgets' => 'Widgets', |
|---|
| 140 | |
|---|
| 141 | ); |
|---|
| 142 | 1; |
|---|
| 143 | |
|---|