Changeset 1308

Show
Ignore:
Timestamp:
01/22/08 00:15:49 (22 months ago)
Author:
bsmith
Message:

Merging commits from release-28 changesets 1274 to 1306

Location:
branches/release-29
Files:
1 removed
38 modified

Legend:

Unmodified
Added
Removed
  • branches/release-29/MANIFEST.SKIP

    r1244 r1308  
    4949#?package=MT ^mt-static/addons/Enterprise.pack 
    5050 
    51 # Held from beta releases for now 
    52 #?package=MT ^plugins/TypePadAntiSpam 
    53  
    5451#?package=MTP ^addons 
    5552#?package=MTP ^COPYING 
     
    6360#?package=MTOS ^mt-static/addons 
    6461#?package=MTOS ^mt-static/themes/tristan-blue 
     62#?package=MTOS ^mt-static/themes/universal-black 
     63#?package=MTOS ^mt-static/plugins/feeds-app-lite 
     64#?package=MTOS ^plugins/feeds-app-lite 
     65#?package=MTOS ^plugins/CustomFields 
    6566 
    6667#?package=MTE ^COPYING 
     
    9798\bRCS\b 
    9899\.svn\b 
     100\.gitignore 
    99101,v$ 
    100102 
     
    108110^\.DS_Store$ 
    109111 
    110 # Doc files. 
    111 ^mt-static/docs 
    112 ^mt-static/docs/.*\.txt 
    113 ^mt-static/docs/.*\.pod 
    114 ^mt-static/docs/mtweblogs.* 
    115 ^mt-static/docs/mtapi 
    116 ^mt-static/docs/mttrackback 
    117 ^mt-static/docs/mtmanual-full.html$ 
    118 ^docs-.*/ 
    119  
    120112# Packages 
    121113^lib/MT/FileMgr/SFTP.pm$ 
     
    127119Tangent\.pm$ 
    128120/no\.pm$ 
    129 #/ja\.pm$ 
    130121/it\.pm$ 
    131122 
     
    178169index\.html\..* 
    179170build-language-stamp 
    180 .gitignore 
  • branches/release-29/build/Build.pm

    r1174 r1308  
    6262      'arch=s@'         => undef,  # Constructed below. 
    6363      'beta=s'          => 0,  # Beta build number. 
     64      'rc=s'            => 0,  # Release candidate build number. 
    6465      'cleanup!'        => 1,  # Remove the exported directory after deployment. 
    6566      'date!'           => 1,  # Toggle date stamping. 
     
    156157 
    157158    # Handle option aliases. 
    158     if( $self->{'prod'} or $self->{'alpha=s'} or $self->{'beta=s'} ) { 
     159    if( $self->{'prod'} or $self->{'alpha=s'} or $self->{'beta=s'} or $self->{'rc=s'} ) { 
    159160        $self->{'symlink!'} = 0; 
    160161    } 
     
    181182        $self->{'license=s'} ||= $config->{LICENSE}; 
    182183        my @stamp = (); 
    183         push @stamp, $config->{PRODUCT_VERSION} . ( 
    184             $self->{'alpha=s'} ? "a$self->{'alpha=s'}" 
    185           : $self->{'beta=s'}  ? "b$self->{'beta=s'}" 
    186           : '' ); 
     184        if ($self->{'stamp=s'}) { 
     185            push @stamp, $self->{'stamp=s'}; 
     186        } else { 
     187            push @stamp, $config->{PRODUCT_VERSION} . ( 
     188                $self->{'alpha=s'} ? "a$self->{'alpha=s'}" 
     189              : $self->{'beta=s'}  ? "b$self->{'beta=s'}" 
     190              : $self->{'rc=s'}    ? "rc$self->{'rc=s'}" 
     191              : '' ); 
     192        } 
    187193        # Add repo, date and ldap to the stamp if we are not production. 
    188194        unless( $self->{'prod'} ) { 
     
    844850    # version. 
    845851    return if $self->{'debug'} || $self->{'make'} || 
    846         ($self->{'prod'} && !($self->{'beta=s'} || $self->{'alpha=s'})); 
     852        ($self->{'prod'} && !($self->{'beta=s'} || $self->{'alpha=s'} || $self->{'rc=s'})); 
    847853    $self->verbose( 'Entered inject_footer()' ); 
    848854    return if $self->{'prod'} || $self->{'debug'} || $self->{'make'}; 
  • branches/release-29/build/exportmt.pl

    r1174 r1308  
    2525 
    2626foreach my $lang ( $build->languages() ) { 
     27    local $build->{'stamp=s'}; 
    2728    $build->setup( language => $lang ); 
    2829 
  • branches/release-29/build/l10n/wrap.pl

    r1174 r1308  
    3232 
    3333my $tmpl; 
     34my $plugin = q(); 
     35my %conv; 
     36my %pgconv; 
    3437 
    3538while (<>) { 
    3639    if (/^\s*##\s*(.*)$/) { 
    3740        $tmpl = $1; 
     41        if ( $tmpl =~ m!^plugins! 
     42          || $tmpl =~ m!^addons! ) { 
     43            my ($pg) = $tmpl =~ m!^(?:plugins|addons)/(.+?)/.+!; 
     44            warn $pg; 
     45            %pgconv = () unless $pg eq $plugin; 
     46            $plugin = $pg; 
     47        } 
     48        else { 
     49            $plugin = q(); 
     50        } 
    3851        my $l = $_; 
    3952        last if eof(); 
     
    4558        my $base = $1;  
    4659        my $trans = $2; 
    47         unless (defined $conv{$base}) { 
    48                 print $_; 
    49                 $words = wordcount($base); 
    50                 $wc += $words unless ($trans); 
     60        if ( !exists($conv{$base}) && !exists($pgconv{$base}) ) { 
     61            print $_; 
     62            $words = wordcount($base); 
     63            $wc += $words unless ($trans); 
    5164        } 
    52         $conv{$base} = 1; 
     65        if ( $plugin ) { 
     66            $pgconv{$base} = 1; 
     67        } 
     68        else { 
     69            $conv{$base} = 1; 
     70        } 
    5371    } 
    5472    else{ 
    55             print $_; 
     73        print $_; 
    5674    } 
    5775} 
  • branches/release-29/default_templates/comment_detail.mtml

    r1262 r1308  
    1 <div class="comment<MTIf name="__last__"> last</MTIf>"<MTIfArchiveTypeEnabled archive_type="Individual"> id="comment-<$MTCommentID$>"</MTIfArchiveTypeEnabled>> 
     1<div class="comment"<MTIfArchiveTypeEnabled archive_type="Individual"> id="comment-<$MTCommentID$>"</MTIfArchiveTypeEnabled>> 
    22    <div class="inner"> 
    33        <div class="comment-header"> 
     
    55            <div class="user-pic"> 
    66                <mt:if tag="CommenterUserpic"> 
    7                 <a href="<$MTCGIPath$><$MTCommunityScript$>?__mode=view&amp;id=<$MTCommenterID$>"><img src="<$MTCommenterUserpicURL$>" width="50" height="50" alt="user-pic" /></a> 
     7                <img src="<$MTCommenterUserpicURL$>" width="50" height="50" alt="user-pic" /> 
    88                <mt:else> 
    99                    <mt:if tag="CommenterAuthIconURL"> 
     
    1717</mt:IfImageSupport> 
    1818            <div class="asset-meta"> 
    19                 <span class="byline"><MTIfCommenterIsAuthor><__trans phrase="By [_1] on [_2]" params='<span class="vcard author"><a href="<mt:var name="profile_view_url" encode_html="1"><$MTCommenterID$>"><$MTCommenterName$></a></span>%%<a href="#comment-<$MTCommentID$>"><abbr class="published" title="<$MTCommentDate format_name="iso8601"$>"><$MTCommentDate$></abbr></a>'><MTElse><__trans phrase="By [_1] on [_2]" params='<span class="vcard author"><a href="<$MTCommenterURL$>"><$MTCommenterName$></a></span>%%<a href="#comment-<$MTCommentID$>"><abbr class="published" title="<$MTCommentDate format_name="iso8601"$>"><$MTCommentDate$></abbr></a>'></MTIfCommenterIsAuthor></span> 
     19                <span class="byline"><__trans phrase="By [_1] on [_2]" params='<span class="vcard author"><MTIfNonEmpty tag="CommenterID"><a href="<$MTCommenterURL$>"><$MTCommenterName$></a><MTElse><$MTCommentAuthorLink default_name="Anonymous" show_email="0"$></MTIfNonEmpty></span>%%<a href="#comment-<$MTCommentID$>"><abbr class="published" title="<$MTCommentDate format_name="iso8601"$>"><$MTCommentDate$></abbr></a>'></span> 
    2020            </div> 
    2121        </div> 
  • branches/release-29/index.html.de

    r1258 r1308  
    9393            <h2>Movable Type installieren?</h2> 
    9494 
    95             <p>Wenn Sie Movable Type jetzt installieren möchten, lesen Sie bitte die Installationshinweise in der <a href="__HELP_URL__">Movable Type-Dokumentation</a> und nutzen Sie die <a rel="nofollow" href="mt-check.cgi">Movable Type-SystemÃŒberprÃŒfung</a>, die Ihren Server automatisch auf die erforderliche Software hin ÃŒberprÃŒft.</p> 
     95            <p>Wenn Sie Movable Type jetzt installieren möchten, lesen Sie bitte die Installationshinweise in der <a href="http://www.movabletype.org/documentation/">Movable Type-Dokumentation</a> und nutzen Sie die <a rel="nofollow" href="mt-check.cgi">Movable Type-SystemÃŒberprÃŒfung</a>, die Ihren Server automatisch auf die erforderliche Software hin ÃŒberprÃŒft.</p> 
    9696        </div> 
    9797    </div> 
  • branches/release-29/index.html.en_US

    r1258 r1308  
    9393            <h2>Installing?</h2> 
    9494 
    95             <p>If you are just starting with Movable Type, you may want to review the installation/upgrade guide posted on the <a href="__HELP_URL__">Movable Type documentation site</a> and view the <a rel="nofollow" href="mt-check.cgi">Movable Type System Check</a> to make sure that your system has what it needs.</p> 
     95            <p>If you are just starting with Movable Type, you may want to review the installation/upgrade guide posted on the <a href="http://www.movabletype.org/documentation/">Movable Type documentation site</a> and view the <a rel="nofollow" href="mt-check.cgi">Movable Type System Check</a> to make sure that your system has what it needs.</p> 
    9696        </div> 
    9797    </div> 
  • branches/release-29/index.html.es

    r1258 r1308  
    9393            <h2>¿Instalando?</h2> 
    9494 
    95             <p>Si acaba de empezar con Movable Type, quizás desee consultar la sección de instalación/actualización de la <a href="__HELP_URL__">documentación de Movable Type</a> y ver la <a rel="nofollow" href="mt-check.cgi">comprobación del sistema de Movable Type</a> para segurarse de que su sistema tiene todo lo necesario.</p> 
     95            <p>Si acaba de empezar con Movable Type, quizás desee consultar la sección de instalación/actualización de la <a href="http://www.movabletype.org/documentation/">documentación de Movable Type</a> y ver la <a rel="nofollow" href="mt-check.cgi">comprobación del sistema de Movable Type</a> para segurarse de que su sistema tiene todo lo necesario.</p> 
    9696        </div> 
    9797    </div> 
  • branches/release-29/index.html.fr

    r1258 r1308  
    9393            <h2>Installation?</h2> 
    9494 
    95             <p>Si vous découvrez Movable Type, vous apprécierez certainement de trouver des conseils utiles dans le chapitre "Installation" dans notre <a href="__HELP_URL__">documentation Movable Type</a>. Vous pouvez aussi visiter la Page <a rel="nofollow" href="mt-check.cgi">"Vérification SystÚme"</a> pour vérifier que votre systÚme comporte tous les éléments nécessaires à l'installation de Movable Type.</p> 
     95            <p>Si vous découvrez Movable Type, vous apprécierez certainement de trouver des conseils utiles dans le chapitre "Installation" dans notre <a href="http://www.movabletype.org/documentation/">documentation Movable Type</a>. Vous pouvez aussi visiter la Page <a rel="nofollow" href="mt-check.cgi">"Vérification SystÚme"</a> pour vérifier que votre systÚme comporte tous les éléments nécessaires à l'installation de Movable Type.</p> 
    9696        </div> 
    9797    </div> 
  • branches/release-29/index.html.ja

    r1258 r1308  
    9090            <h2>はじめおお䜿いになる方ぞ</h2> 
    9191            <p>Movable Typeをご利甚いただくためには、セットアップを完了しおおく忠
    92 èŠãŒã‚ã‚ŠãŸã™ã€‚<a href="__HELP_URL__">オンラむン・マニュアル</a>のむンストヌル・セットアップの章を読み、皌働に忠
     92芁がありたす。<a href="http://www.movabletype.jp/documentation/">オンラむン・マニュアル</a>のむンストヌル・セットアップの章を読み、皌働に忠
    9393芁な環境を準備しおください。たた、<a rel="nofollow" href="mt-check.cgi">Movable Type システム・チェック (mt-check.cgi)</a> を実行し、環境が敎ったこずを確認しおください。</p> 
    9494            <p>å¿ 
  • branches/release-29/index.html.nl

    r1258 r1308  
    9393            <h2>Installatie?</h2> 
    9494 
    95             <p>Als u Movable Type aan het installeren bent, is het nuttig om de <a href="__HELP_URL__">installatie-instructies</a> te bekijken en om de <a rel="nofollow" href="mt-check.cgi">Movable Type systeemcontrole</a> uit te voeren om zeker te zijn dat u systeem alles heeft wat nodig is.</p> 
     95            <p>Als u Movable Type aan het installeren bent, is het nuttig om de <a href="http://www.movabletype.org/documentation/">installatie-instructies</a> te bekijken en om de <a rel="nofollow" href="mt-check.cgi">Movable Type systeemcontrole</a> uit te voeren om zeker te zijn dat u systeem alles heeft wat nodig is.</p> 
    9696        </div> 
    9797    </div> 
  • branches/release-29/lib/MT.pm.pre

    r1174 r1308  
    18781878    my $param = {}; 
    18791879    $param->{mt_debug} = $MT::DebugMode; 
    1880     $param->{mt_beta} = 1 if MT->version_id =~ m/^\d+\.\d+b/; 
     1880    $param->{mt_beta} = 1 if MT->version_id =~ m/^\d+\.\d+(?:a|b|rc)/; 
    18811881    $param->{static_uri} = $mt->static_path; 
    18821882    $param->{mt_version} = MT->version_number; 
  • branches/release-29/lib/MT/App/CMS.pm

    r1261 r1308  
    755755                permission  => 'manage_pages', 
    756756                condition   => sub { 
    757                     return 0 if $app->mode eq 'view'; 
     757                    return $app->mode ne 'view'; 
    758758                }, 
    759759            }, 
     
    766766                permission  => 'manage_pages', 
    767767                condition   => sub { 
    768                     return 0 if $app->mode eq 'view'; 
     768                    return $app->mode ne 'view'; 
    769769                }, 
    770770            }, 
     
    15621562                    my @blogs =  
    15631563                        map { $_->blog_id } 
    1564                           grep { $_->can_create_post || $_->can_pubish_post || $_->can_edit_all_posts } 
     1564                          grep { $_->can_create_post || $_->can_publish_post || $_->can_edit_all_posts } 
    15651565                          MT::Permission->load( { author_id => $app->user->id } ); 
    15661566                    return 1 if @blogs; 
     
    29122912        $arg{offset} = $offset = $total - $limit; 
    29132913    } 
    2914     elsif ( ( $offset < 0 ) || ( $total - $offset < $limit ) ) { 
    2915         $arg{offset} = $offset = 0; 
     2914    elsif ( $offset && ( ( $offset < 0 ) || ( $total - $offset < $limit ) ) ) { 
     2915        $arg{offset} = $offset = $total - $limit; 
    29162916    } 
    29172917    else { 
     
    29732973    $param{object_label_plural}     = $tag_class->class_label_plural; 
    29742974    $param{object_type}             = 'tag'; 
     2975 
     2976    my $search_types = $app->search_apis($app->blog ? 'blog' : 'system'); 
     2977    if (grep { $_->{key} eq $param{tag_object_type} } @$search_types) { 
     2978        $param{search_type} = $param{tag_object_type}; 
     2979        $param{search_label} = $param{tag_object_label_plural}; 
     2980    } else { 
     2981        $param{search_type} = 'entry'; 
     2982        $param{search_label} = $app->translate("Entries"); 
     2983    } 
     2984 
    29752985    $param{list_start}              = $offset + 1; 
    29762986    $param{list_end}                = $offset + scalar @$data; 
     
    44134423    $param{can_create_blog} = $author->can_create_blog; 
    44144424    $param{saved_deleted}   = $app->param('saved_deleted'); 
     4425    $param{refreshed}       = $app->param('refreshed'); 
    44154426    $param{nav_blogs}       = 1; 
    44164427    $param{list_noncron}    = 1; 
     
    1189511906        $arg{offset} = $offset = $total - $limit; 
    1189611907    } 
    11897     elsif ( ( $offset < 0 ) || ( $total - $offset < $limit ) ) { 
    11898         $arg{offset} = $offset = 0; 
     11908    elsif ( $offset && ( ( $offset < 0 ) || ( $total - $offset < $limit ) ) ) { 
     11909        $arg{offset} = $offset = $total - $offset; 
    1189911910    } 
    1190011911    elsif ($offset) { 
     
    1233212343        $arg{offset} = $offset = $total - $limit; 
    1233312344    } 
    12334     elsif ( ( $offset < 0 ) || ( $total - $offset < $limit ) ) { 
    12335         $arg{offset} = $offset = 0; 
     12345    elsif ( $offset && ( ( $offset < 0 ) || ( $total - $offset < $limit ) ) ) { 
     12346        $arg{offset} = $offset = $total - $offset; 
    1233612347    } 
    1233712348    else { 
  • branches/release-29/lib/MT/App/Search.pm

    r1174 r1308  
    318318    $ctx->stash('template_id', $app->{searchparam}{Template}); 
    319319    $ctx->stash('maxresults', $app->{searchparam}{MaxResults}); 
     320    $ctx->var( 'page_layout', $blog->page_layout ) 
     321        if $blog && $blog->page_layout; 
     322    if (my $layout = $ctx->var('page_layout')) { 
     323        my $columns = { 
     324            'layout-wt'  => 2, 
     325            'layout-tw'  => 2, 
     326            'layout-wm'  => 2, 
     327            'layout-mw'  => 2, 
     328            'layout-wtt' => 3, 
     329            'layout-twt' => 3, 
     330        }->{$layout}; 
     331        $ctx->var( 'page_columns', $columns ) if $columns; 
     332    } 
    320333 
    321334    my $str; 
  • branches/release-29/lib/MT/L10N/fr.pm

    r1211 r1308  
    1 # Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd. 
    2 # This program is distributed under the terms of the 
    3 # GNU General Public License, version 2. 
     1# Copyright 2003-2008 Six Apart. This code cannot be redistributed without 
     2# permission from www.sixapart.com. 
    43# 
    54# $Id$ 
     
    151150 
    152151## default_templates/comment_detail.mtml 
    153         '[_1] [_2] said:' => '[_1] [_2] a dit :', 
    154         '<a href="[_1]" title="Permalink to this comment">[_2]</a>' => '<a href="[_1]" title="Lien permanent vers ce commentaire">[_2]</a>', 
     152        'default userpic' => 'Image de l\'utilisateur par défaut', 
     153        'By [_1] on [_2]' => 'Par [_1] le [_2]', 
    155154 
    156155## default_templates/comment_form.mtml 
     
    195194 
    196195## default_templates/entry_metadata.mtml 
    197         'By [_1] on [_2]' => 'Par [_1] le [_2]', 
    198196        'Permalink' => 'Lien permanent', 
    199197        'Comments ([_1])' => 'Commentaires ([_1])', 
     
    232230        'Listed below are links to blogs that reference this entry: <a href="[_1]">[_2]</a>.' => 'Voici la liste des liens vers les blogs faisant référence à cette note : <a href="[_1]">[_2]</a>.', 
    233231        'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'URL de trackback pour cette note : <span id="trackbacks-link">[_1]</span>', 
    234         '&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a> de [_3]', 
     232        '<a href="[_1]">[_2]</a> from [_3] on <a href="[_4]">[_5]</a>' => '<a href="[_1]">[_2]</a> depuis [_3] sur <a href="[_4]">[_5]</a>', # Translate - New 
    235233        '[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">Lire la suite</a>', 
    236         'Tracked on <a href="[_1]">[_2]</a>' => 'Tracké le <a href="[_1]">[_2]</a>', 
    237234 
    238235## default_templates/sidebar.mtml 
     
    550547        'Registered User' => 'Utilisateur enregistré', 
    551548        'The sign-in attempt was not successful; please try again.' => 'La tentative d\'enregistrement a échoué; veuillez essayer de nouveau.', 
    552         'The sign-in validation was not successful. Please make sure your weblog is properly configured and try again.' => 'La procédure d\'enregistrement a échoué. Veuillez vérifier que votre blog est configuré correctement et essayez de nouveau.', 
    553         'No such entry ID \'[_1]\'' => 'Aucune ID pour la Note \'[_1]\'', 
    554549        'No entry was specified; perhaps there is a template problem?' => 'Aucune note n\'a été spécifiée; peut-être y a-t-il un problÚme de gabarit?', 
    555550        'Somehow, the entry you tried to comment on does not exist' => 'Il semble que la note que vous souhaitez commenter n\'existe pas', 
     
    673668        'Password was reset for user \'[_1]\' (user #[_2]). Password was sent to the following address: [_3]' => 'Le mot de passe a été réinitialisé pour l\'utilisateur \'[_1]\' (utilisateur #[_2]). Le mot de passe a été envoyé à l\'adresse suivante: [_3]', 
    674669        'Error sending mail ([_1]); please fix the problem, then try again to recover your password.' => 'Erreur d\'envoi du mail ([_1]); merci de corriger le problÚme, puis essayez à nouveau de récupérer votre mot de passe.', 
    675         '(newly created user)' => '(utilisateur nouvellement créé)', 
     670        '(newly created user)' => '(nouveaux utilisateurs)', 
    676671        'Untitled' => 'Sans nom', 
    677672        'Files' => 'Fichiers', 
     
    700695        'Blog Activity Feed' => 'Flux Activité du Blog', 
    701696        '*User deleted*' => '*Utilisateur supprimé*', 
     697        '<a href="[_1]">QuickPost to [_2]</a> - Drag this link to your browser\'s toolbar then click it when you are on a site you want to blog about.' => '<a href="[_1]">QuickPost vers [_2]</a> - Glissez ce lien vers la barre d\'outils de votre navigateur et cliquez dessus à chaque fois que vous êtes sur un site dont vous voulez parler dans votre blog.', 
    702698        'All Feedback' => 'Tous les retours lecteurs', 
    703699        'Publishing' => 'Publication', 
     
    940936        'System Administrator' => 'Administrateur SystÚme', 
    941937        'Error saving file: [_1]' => 'Erreur en sauvegardant le fichier: [_1]', 
    942         'represents a user who will be created afterwards' => 'représente un utilisateur qui sera créé ensuite', 
     938        'represents a user who will be created afterwards' => 'il s\'agit des nouveaux utilisateurs créés plus tard', 
    943939        'Select Blogs' => 'Sélectionner des blogs', 
    944940        'Blogs Selected' => 'Blogs sélectionnés', 
     
    991987        'You can\'t reply to unapproved comment.' => 'Vous ne pouvez répondre à un commentaire non approuvé.', 
    992988        'You can\'t reply to unpublished comment.' => 'Vous ne pouvez pas répondre à un commentaire non publié.', 
     989        ' (Backup from [_1])' => ' (Sauvegarde depuis [_1])', # Translate - New 
    993990        'Error creating new template: ' => 'Erreur pendant la création du nouveau gabarit : ', 
    994991        'Skipping template \'[_1]\' since it appears to be a custom template.' => 'Saut du gabarit \'[_1]\' car c\'est un gabarit personnalisé.', 
     
    11751172        'Can comment.' => 'Peut commenter.', 
    11761173        'Removing Dynamic Site Bootstrapper index template...' => 'Suppression du gabarit index Dynamic Site Bootstrapper', 
    1177         'Creating new template: \'[_1]\'.' => 'Creation d\'un nouveau gabarit: \'[_1]\'.', 
     1174        'Creating new template: \'[_1]\'.' => 'Création d\'un nouveau gabarit: \'[_1]\'.', 
    11781175        'Mapping templates to blog archive types...' => 'Mapping des gabarits vers les archives des blogs...', 
    11791176        'Renaming PHP plugin file names...' => 'Renommage des noms de fichier des plugins php...', 
     
    12351232        'Moving OpenID usernames to external_id fields...' => 'Déplacement des identifiants OpenID vers les champs external_id...', 
    12361233        'Assigning blog template set...' => 'Attribution du groupe de gabarits de blogs', 
     1234        'Assigning blog page layout...' => 'Attribution de la mise en page du blog', # Translate - New 
    12371235 
    12381236## lib/MT/Core.pm 
     
    12801278        'If Block' => 'Bloc If', 
    12811279        'If/Else Block' => 'Bloc If/Else', 
    1282         'Include Template Module' => 'Inclure un gabarit de module', 
    1283         'Include Template File' => 'Inclure un gabarit de fichier', 
     1280        'Include Template Module' => 'Inclure un module de gabarit', 
     1281        'Include Template File' => 'Inclure un fichier de gabarit', 
    12841282        'Get Variable' => 'Récupérer la variable', 
    12851283        'Set Variable' => 'Spécifier la variable', 
     
    16661664        'Powered by [_1]' => 'Powered by [_1]', 
    16671665        'Version [_1]' => 'Version [_1]', 
    1668         'http://www.sixapart.com/movabletype/' => 'http://www.movabletype.org', 
     1666        'http://www.sixapart.com/movabletype/' => 'http://www.movabletype.com/', 
    16691667        'OpenID URL' => 'URL OpenID', 
    16701668        'Sign in using your OpenID identity.' => 'Identifiez-vous avec votre identité OpenID.', 
     
    17941792        'Continue' => 'Continuer', 
    17951793        'Show current mail settings' => 'Montrer les paramÚtres d\'email actuels', 
    1796         'Periodically Movable Type will send email to inform users of new comments as well as other other events. For these emails to be sent properly, you must instruct Movable Type how to send email.' => 'Movable Type va envoyer périodiquement des emails afin d\'informer les utilisateurs de nouveaux commentaires et autres événements. Pour que ces emails puissent être envoyés correctement, veuillez spécifier la méthode que Movable Type va utiliser.', 
     1794        'Periodically Movable Type will send email to inform users of new comments as well as other other events. For these emails to be sent properly, you must instruct Movable Type how to send email.' => 'Movable Type va envoyer périodiquement des emails afin d\'informer les utilisateurs des nouveaux commentaires et autres événements. Pour que ces emails puissent être envoyés correctement, veuillez spécifier la méthode que Movable Type va utiliser.', 
    17971795        'An error occurred while attempting to send mail: ' => 'Une erreur s\'est produite en essayant d\'envoyer un email: ', 
    17981796        'Send email via:' => 'Envoyer email via :', 
     
    18121810        'Confirm your [_1] home directory (the directory that contains mt.cgi) is writable by your web server and then click \'Retry\'.' => 'Vérifiez que votre répertoire [_1] (celui qui contient mt.cgi) est ouvert en écriture pour votre serveur web et cliquez sur Recommencer', 
    18131811        'Congratulations! You\'ve successfully configured [_1].' => 'Félicitations ! Vous avez configuré [_1] avec succÚs.', 
    1814         'Your configuration settings have been written to the following file:' => 'Vos paramÚtres de configuration ont été écrit dans le fichier suivant:', 
     1812        'Your configuration settings have been written to the following file:' => 'Vos paramÚtres de configuration ont été écrits dans le fichier suivant:', 
    18151813        'To reconfigure the settings, click the \'Back\' button below.' => 'Pour reconfigurer vos paramÚtres, cliquez sur le bouton \'Retour\' ci-dessous. Sinon, cliquez sur Continuer.', 
    18161814        'Show the mt-config.cgi file generated by the wizard' => 'Afficher le fichier mt-config.cgi généré par l\'assistant', 
     
    18421840        'Once the [_1] directory is in a web-accessible location, specify the location below.' => 'Déplacez ou créez un lien symbolique du répertoire [_1] dans un endroit accessible depuis le web et spécifiez le chemin web statique dans le champs ci-dessous.', 
    18431841        'This URL path can be in the form of [_1] or simply [_2]' => 'Ce chemin d\'URL peut être de la forme [_1] ou simplement [_2]', 
    1844         'This path must be in the form of [_1]' => '', # Translate - New 
     1842        'This path must be in the form of [_1]' => 'Ce chemin doit être de la forme [_1]', 
    18451843        'Static web path' => 'Chemin web statique', 
    18461844        'Static file path' => 'Chemin fichier statique', 
     
    18691867        'You must set your Username.' => 'Vous devez définir votre nom d\'utilisateur.', 
    18701868        'You must set your Database Server.' => 'Vous devez définir votre serveur de Base de données.', 
    1871         'Your database configuration is complete.' => 'Votre configuration de base de données est complÚte.', 
     1869        'Your database configuration is complete.' => 'Votre configuration de base de données est terminée.', 
    18721870        'You may proceed to the next step.' => 'Vous pouvez passer à l\'étape suivante.', 
    18731871        'Please enter the parameters necessary for connecting to your database.' => 'Merci de saisir les paramÚtres nécessaires pour se connecter à votre base de données.', 
     
    19061904 
    19071905## tmpl/cms/include/copyright.tmpl 
    1908         'Copyright &copy; 2001-[_1] Six Apart. All Rights Reserved.' => '', # Translate - New 
     1906        'Copyright &copy; 2001-[_1] Six Apart. All Rights Reserved.' => 'Copyright &copy; 2001-[_1] Six Apart. Tous droits réservés.', 
    19091907 
    19101908## tmpl/cms/include/comment_table.tmpl 
     
    20892087        'View entry' => 'Afficher une note', 
    20902088        'View page' => 'Afficher une page', 
    2091         'No entries could be found. <a href="[_1]">Create Entry</a>' => '', # Translate - New 
    2092         'No page could be found. <a href="[_1]">Create Page</a>' => '', # Translate - New 
     2089        'No entries could be found. <a href="[_1]">Create an entry</a> now.' => 'Aucune note n\'a été trouvée. <a href="[_1]">Créer une note</a> maintenant.', # Translate - New 
     2090        'No page could be found. <a href="[_1]">Create a page</a> now.' => 'Aucune page n\'a été trouvée. <a href="[_1]">Créer une page</a> maintenant.', # Translate - New 
    20932091 
    20942092## tmpl/cms/include/login_mt.tmpl 
     
    21472145## tmpl/cms/include/category_selector.tmpl 
    21482146        'Add sub category' => 'Ajouter une sous-catégorie', 
     2147        'Add new' => 'Créer', 
    21492148 
    21502149## tmpl/cms/include/display_options.tmpl 
     
    21982197        'Back (b)' => 'Retour (b)', 
    21992198        'Cancel (x)' => 'Annuler (x)', 
    2200         'Add [lc,_1] name' => 'Ajouter le nom [lc,_1]', 
    22012199 
    22022200## tmpl/cms/include/header.tmpl 
     
    23112309 
    23122310## tmpl/cms/dialog/refresh_templates.tmpl 
    2313         'Refresh Template Set' => '', # Translate - New 
    2314         'Refresh [_1] template set' => '', # Translate - New 
     2311        'Refresh Template Set' => 'Réactualiser le Groupe de Gabartis', 
     2312        'Refresh [_1] template set' => 'Réactualiser le groupe de gabarits [_1]', 
    23152313        'Updates current templates while retaining any user-created or user-modified templates.' => ' 
    23162314        Met à jour les gabarits actuels en conservant les gabarits créés ou modifiés par n\'import quel utilisateur.', 
    2317         'Apply a new template set' => '', # Translate - New 
     2315        'Apply a new template set' => 'Appliquer un nouveau groupe de gabarits', 
     2316        'Deletes all existing templates and install the selected template set.' => 'Supprime tout les gabarits existants et installe le groupe de gabarits sélectionné.', # Translate - New 
     2317        'Reset to factory defaults' => 'Remettre à zéro les modifications', # Translate - New 
    23182318        'Deletes all existing templates and installs factory default template set.' => 'Supprime tous les gabartis existants et installe les groupes de gabarits par défaut ', 
    23192319        'Make backups of existing templates first' => 'Faire d\'abord des sauvegardes des gabarits existants', 
    2320         'You have requested to <strong>refresh the current template set</strong>. This action will:' => '', # Translate - New 
     2320        'You have requested to <strong>refresh the current template set</strong>. This action will:' => 'Vous avez demandé de <strong>réactualiser le groupe de gabarit actuel</strong>. Cette action va :', 
    23212321        'potentially install new templates' => 'peut-être installer de nouveaux gabarits', 
    23222322        'overwrite some existing templates with new template code' => 'remplacer le code de certains gabarits par un nouveau code', 
    23232323        'backups will be made of your templates and can be accessed through your backup filter' => 'créer des sauvegardes de vos gabarits (qui pourront être accessibles grâce au filtre "sauvegardes")', 
    2324         'You have requested to <strong>apply a new template set</strong>. This action will:' => '', # Translate - New 
     2324        'You have requested to <strong>apply a new template set</strong>. This action will:' => 'Vous avez demandé d\'<strong>appliquer un nouveau groupe de gabarit</strong>. Cette action va :', 
    23252325        'delete all of the templates in your blog' => 'supprimer tous les gabarits de votre blog', 
    23262326        'install new templates from the selected template set' => 'installer de nouveaux gabarits depuis le groupe de gabarits sélectionné', 
     
    23522352        'Recipients' => 'Destinataires', 
    23532353        'Enter email addresses on separate lines, or comma separated.' => 'Saisissez les adresses email sur des lignes séparées, ou séparées par une virgule.', 
    2354         'All addresses from Address Book' => 'Toutes les adresses de carnet d\'adresses', 
     2354        'All addresses from Address Book' => 'Toutes les adresses du carnet d\'adresses', 
    23552355        'Optional Message' => 'Message optionnel', 
    23562356        'Optional Content' => 'Contenu optionnel', 
     
    24072407## tmpl/cms/widget/blog_stats_recent_entries.tmpl 
    24082408        '[quant,_1,entry,entries] tagged &ldquo;[_2]&rdquo;' => '[quant,_1,note,notes] avec le tag &ldquo;[_2]&rdquo;', 
     2409        '...' => '...', 
    24092410        'Posted by [_1] [_2] in [_3]' => 'Postée par [_1] [_2] dans [_3]', 
    24102411        'Posted by [_1] [_2]' => 'Postée par [_1] [_2]', 
     
    24772478## tmpl/cms/widget/blog_stats_entry.tmpl 
    24782479        'Most Recent Entries' => 'Notes récentes', 
    2479         '...' => '...', 
    24802480        'View all entries' => 'Voir toutes les notes', 
    24812481 
     
    25772577## tmpl/cms/list_blog.tmpl 
    25782578        'You have successfully deleted the blogs from the Movable Type system.' => 'Le blog a été correctement supprimé du systÚme Movable Type.', 
     2579        'You have successfully refreshed your templates.' => 'Vous avez réactualisé avec succÚs vos gabarits.', 
    25792580        'Create Blog' => 'Créer un blog', 
    2580         'Are you sure you want to delete this blog?' => 'Êtes-vous sûr de vouloir effacer ce blog ?', 
    25812581 
    25822582## tmpl/cms/edit_template.tmpl 
     
    26622662        'Quickfilters' => 'Filtres rapides', 
    26632663        '[_1] (Disabled)' => '[_1] (Désactivé)', 
    2664         'Go back' => 'Retour', 
    26652664        'Showing only: [_1]' => 'Montrer seulement : [_1]', 
    26662665        'Remove filter' => 'Supprimer le filtre', 
     
    27642763        'Specifies the Text Formatting option to use for formatting visitor comments.' => 'Spécifie les options de mise en forme du texte des commentaires publiés par les visiteurs.', 
    27652764        'CAPTCHA Provider' => 'Fournisseur de CAPTCHA', 
    2766         'none' => 'aucune', 
     2765        'none' => 'Aucun fournisseur', 
    27672766        'No CAPTCHA provider available' => 'Aucun fournisseur de CAPTCHA disponible', 
    27682767        'No CAPTCHA provider is available in this system.  Please check to see if Image::Magick is installed, and CaptchaSourceImageBase directive points to captcha-source directory under mt-static/images.' => 'Aucun fournisseur de CAPTCHA n\'est disponible sur ce systÚme. Merci de vérifier si Image::Magick est installé, et si la directive CaptchaSourceImageBase contient le répertoire captcha-source dans mt-static/images.', 
     
    27922791        'Preview this page (v)' => 'Prévisualiser cette page (v)', 
    27932792        'Delete this page (x)' => 'Supprimer cette page (x)', 
     2793        'View Page' => 'Afficher une Page', # Translate - Case 
    27942794        'Add category' => 'Ajouter une catégorie', 
    27952795        'Add category name' => 'Ajouter un nom de catégorie', 
     
    27982798        'Preview this entry (v)' => 'Prévisualiser cette note (v)', 
    27992799        'Delete this entry (x)' => 'Supprimer cette note (x)', 
     2800        'View Entry' => 'Afficher la note', 
    28002801        'A saved version of this entry was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Une version enregistrée de cette note a été sauvergardée automatiquement [_2]. <a href="[_1]">Récupérer le contenu sauvegardé automatiquement</a>', 
    28012802        'A saved version of this page was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Une version enregistrée de cette page a été sauvergardée automatiquement [_2]. <a href="[_1]">Récupérer le contenu sauvegardé automatiquement</a>', 
     
    28062807        'Your customization preferences have been saved, and are visible in the form below.' => 'Vos préférences ont été enregistrées et sont affichées dans le formulaire ci-dessous.', 
    28072808        'Your changes to the comment have been saved.' => 'Les modifications apportées aux commentaires ont été enregistrées.', 
    2808         'Your notification has been sent.' => 'Votre notification a été envoyé.', 
     2809        'Your notification has been sent.' => 'Votre notification a été envoyée.', 
    28092810        'You have successfully recovered your saved entry.' => 'Vous avez récupéré le contenu sauvegardé de votre note avec succÚs.', 
    28102811        'You have successfully recovered your saved page.' => 'Vous avez récupéré le contenu sauvegardé de votre page avec succÚs.', 
     
    28132814        'You have successfully deleted the checked comment(s).' => 'Les commentaires sélectionnés ont été supprimés.', 
    28142815        'You have successfully deleted the checked TrackBack(s).' => 'Le(s) trackback(s) sélectionné(s) ont été correctement supprimé(s).', 
     2816        'Change Folder' => 'Modifier le Dossier', # Translate - New 
    28152817        'Stats' => 'Stats', 
    28162818        'Share' => 'Partager', 
     
    28292831        'Warning: If you set the basename manually, it may conflict with another entry.' => 'ATTENTION : Editer le nom de base manuellement peut créer des conflits avec d\'autres notes.', 
    28302832        'Warning: Changing this entry\'s basename may break inbound links.' => 'ATTENTION : Changer le nom de base de cette note peut casser des liens entrants.', 
     2833        'edit' => 'Editer', 
     2834        'close' => 'fermer', 
    28312835        'Accept' => 'Accepter', 
    28322836        'Outbound TrackBack URLs' => 'URLs trackbacks sortants', 
     
    28402844        'Are you sure you want to use the Rich Text editor?' => 'Êtes-vous sûr de vouloir utiliser l\'éditeur de texte enrichi ?', 
    28412845        'Make primary' => 'Rendre principal', 
    2842         'Add new' => 'Créer', 
    28432846        'Fields' => 'Champs', 
    28442847        'Body' => 'Corps', 
     
    28532856        '(space-delimited list)' => '(liste délimitée par espace)', 
    28542857        '(delimited by \'[_1]\')' => '(délimitée par \'[_1]\')', 
    2855         '<a href="[_1]">QuickPost to [_2]</a> - Drag this link to your browser\'s toolbar then click it when you are on a site you want to blog about.' => '<a href="[_1]">QuickPost vers [_2]</a> - Glissez ce lien vers la barre d\'outils de votre navigateur et cliquez dessus à chaque fois que vous êtes sur un site dont vous voulez parler dans votre blog.', 
    28562858        'None selected' => 'Aucune sélectionnée', 
    28572859 
     
    30683070        'All Templates' => 'Tous les gabarits', 
    30693071        'You have successfully deleted the checked template(s).' => 'Les gabarits sélectionnés ont été supprimés.', 
    3070         'You have successfully refreshed your templates.' => 'Vous avez réactualisé avec succÚs vos gabarits.', 
    30713072        'Your templates have been published.' => 'Vos gabarits ont bien été publiés.', 
    3072         'Create Archive Template:' => 'Créer une archive de gabarit', 
     3073        'Create Archive Template:' => 'Créer un gabarit d\'archives', 
    30733074        'Create [_1] template' => 'Créer un nouveau gabarit de [_1]', 
    30743075 
     
    30843085        'Rename' => 'Changer le nom', 
    30853086        'Show all [_1] with this tag' => 'Montrer toutes les [_1] avec ce tag', 
    3086         '[quant,_1,_2,_3]' => '[quant,_1,_2,_3', 
     3087        '[quant,_1,_2,_3]' => '[quant,_1,_2,_3]', 
    30873088        '[quant,_1,entry,entries]' => '[quant,_1,note,notes]', 
    30883089        'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\' across all blogs?' => 'Le tag \'[_2]\' existe déjà. Êtes-vous sûr de vouloir fusionner \'[_1]\' et \'[_2]\' sur tous les blogs ?', 
     
    31223123        'This feature allows you to disable sending notification pings when a new entry is created.' => 'Cette fonctionnalité vous permet de désactiver l\'envoi de pings de notification quand une nouvelle note est créée.', 
    31233124        'Disable notification pings for all blogs' => 'Désactiver les pings de notification pour tous les blogs', 
    3124         'Limit outbound TrackBacks and TrackBack auto-discovery for the purposes of keeping your installation private.' => 'Limiter les trackbacks sortants et les trackbacks d\'autorecherche dans le but de conserver le caractÚre privé de votre installation. ', 
     3125        'Limit outbound TrackBacks and TrackBack auto-discovery for the purposes of keeping your installation private.' => 'Limitez les trackbacks sortants et les trackbacks d\'autorecherche afin de conserver le caractÚre privé de votre installation. ', 
    31253126        'Allow to any site' => 'Autoriser sur tous les sites', 
    31263127        '(No outbound TrackBacks)' => '(Pas de trackbacks sortants)', 
     
    32243225        'You must select a blog to import.' => 'Vous devez sélectionner un blog à importer.', 
    32253226        'Transfer weblog entries into Movable Type from other Movable Type installations or even other blogging tools or export your entries to create a backup or copy.' => 'Transférer les notes dans Movable Type depuis une autre installation Movable Type ou à partir d\'un autre outil de publication de blogs afin de créer une sauvegarde ou une copie.', 
    3226         'Blog to Import' => 'Blog à importer', 
     3227        'Import data into' => 'Importer les données dans', # Translate - New 
    32273228        'Select a blog to import.' => 'Sélectionner un blog à importer.', 
    32283229        'Importing from' => 'Importation à partir de', 
     
    32903291        'Unlock this blog&rsquo;s site URL for editing' => 'Déverrouillez l\'URL du site de ce blog pour le modifier', 
    32913292        'Warning: Changing the site URL can result in breaking all the links in your blog.' => 'Attention : Modifier l\'URL du site peut rompre tous les liens de votre blog.', 
    3292         'The path where your index files will be published. An absolute path (starting with \'/\') is preferred, but you can also use a path relative to the Movable Type directory. Example: /home/melody/public_html/blog' => 'Le chemin où votre fichiers d\'index seront publiés. Un chemin absolu (commençant par \'/\') est préférable, mais vous pouvez utiliser un chemin relatif au répertoire de Movable Type. Exemple : /home/melody/public_html/blog', 
     3293        'The path where your index files will be published. An absolute path (starting with \'/\') is preferred, but you can also use a path relative to the Movable Type directory. Example: /home/melody/public_html/blog' => 'Il s\'agit du chemin où vos fichiers d\'index seront publiés. Un chemin absolu (commençant par \'/\') est préférable, mais vous pouvez utiliser un chemin relatif au répertoire de Movable Type. Exemple : /home/melody/public_html/blog', 
    32933294        'Unlock this blog&rsquo;s site path for editing' => 'Déverrouiller le chemin du site de ce blog pour le modifier', 
    32943295        'Note: Changing your site root requires a complete publish of your site.' => 'Remarque : La modification de la racine de votre site nécessite une publication complÚte de votre site.', 
     
    33033304        'Publishing Options' => 'Options de publication', 
    33043305        'Preferred Archive Type' => 'Type d\'archive préféré', 
    3305         'Used for creating links to an archived entry (permalink). Select from the archive types used in this blogs archive templates.' => 'Utilisé pour créer des liens vers une note archivée (lien permanent). Sélectionner parmi les types d\'archives utilisée dans les templates d\'archive du blog.', 
     3306        'Used for creating links to an archived entry (permalink). Select from the archive types used in this blogs archive templates.' => 'Utilisé pour créer des liens vers une note archivée (lien permanent). Sélectionner parmi les types d\'archives utilisés dans les gabarits d\'archives du blog.', 
    33063307        'No archives are active' => 'Aucune archive n\'est active', 
    33073308        'Publishing Method' => 'Méthode de publication', 
     
    34083409        'Move' => 'Déplacer', 
    34093410        '[quant,_1,page,pages]' => '[quant,_1,page,pages]', 
    3410         'No folders could be found.' => '', # Translate - New 
     3411        'No folders could be found.' => 'Aucun dossier n\'a pu être trouvé.', 
    34113412 
    34123413## tmpl/cms/list_association.tmpl 
     
    34403441        'Collapse' => 'Réduire', 
    34413442        'Expand' => 'Développer', 
     3443        'Create Subcategory' => 'Créer une Sous-catégorie', # Translate - New 
    34423444        'Move Category' => 'Déplacer une Catégorie', 
    34433445        '[quant,_1,TrackBack,TrackBacks]' => '[quant,_1,trackback,trackbacks]', 
    3444         'No categories could be found.' => '', # Translate - New 
     3446        'No categories could be found.' => 'Aucune catégorie n\'a pu être trouvée.', 
    34453447 
    34463448## tmpl/cms/cfg_entry.tmpl 
     
    35893591## tmpl/cms/preview_strip.tmpl 
    35903592        'Save this entry' => 'Enregistrer cette note', 
     3593        'Re-Edit this entry' => 'Modifier à nouveau cette note', # Translate - New 
     3594        'Re-Edit this entry (e)' => 'Modifier à nouveau cette note (e)', # Translate - New 
    35913595        'Save this page' => 'Enregistrer cette page', 
     3596        'Re-Edit this page' => 'Modifier à nouveau cette page', # Translate - New 
     3597        'Re-Edit this page (e)' => 'Modifier à nouveau cette page (e)', # Translate - New 
    35923598        'You are previewing the entry titled &ldquo;[_1]&rdquo;' => 'Vous prévisualisez la note suivante : &ldquo;[_1]&rdquo;', 
    35933599        'You are previewing the page titled &ldquo;[_1]&rdquo;' => 'Vous prévisualisez la page suivante : &ldquo;[_1]&rdquo;', 
     
    35973603        'The TrackBack has been approved.' => 'Le trackback a été approuvé.', 
    35983604        'List &amp; Edit TrackBacks' => 'Lister &amp; éditer les trackbacks', 
    3599         'View Entry' => 'Afficher la note', 
    36003605        'Save changes to this TrackBack (s)' => 'Enregistrer les modifications de ce Trackback (s)', 
    36013606        'Delete this TrackBack (x)' => 'Supprimer ce Trackback (x)', 
     
    36903695        '_ERROR_CGI_PATH' => 'Votre configuration de chemin CGI est invalide ou absente de vos fichiers de configuration Movable Type. Merci de consulter la base de connaissance', 
    36913696 
     3697## addons/Commercial.pack/lib/MT/Commercial/Util.pm 
     3698        'About' => 'A propos de', # Translate - New 
     3699        '_UTS_REPLACE_THIS' => '<p><strong>Remplacez ce texte d\'exemple par vos propres informations.</strong></p>', # Translate - New 
     3700        '_UTS_SAMPLE_ABOUT' => q{ 
     3701<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In nec tellus sed turpis varius sagittis. Nullam pulvinar. Fusce dapibus neque pellentesque nulla. Maecenas condimentum quam. Vestibulum pretium fringilla quam. Nam elementum. Suspendisse odio magna, aliquam vitae, vulputate et, dignissim at, pede. Integer pellentesque orci at nibh. Morbi ante.</p> 
     3702 
     3703<p>Maecenas convallis mattis justo. Ut mauris sapien, consequat a, bibendum vitae, sagittis ac, nisi. Nulla et sapien. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Ut condimentum turpis ut elit. Quisque ultricies sollicitudin justo. Duis vitae magna nec risus pulvinar ultricies.</p> 
     3704}, # Translate - New 
     3705        '_UTS_EDIT_LINK' => q{ 
     3706<!-- retirer ce lien aprÚs l'édition --> 
     3707<p class="admin-edit-link"> 
     3708<script type="text/javascript">document.write('<a href="' + adminurl + '?__mode=view&_type=page&id=' + page_id + '&blog_id=' + blog_id + '" target="_blank">Éditer ce contenu</a>')</script> 
     3709</p> 
     3710}, # Translate - New 
     3711        '_UTS_CONTACT' => 'Contacter', # Translate - New 
     3712        '_UTS_SAMPLE_CONTACT' => q{ 
     3713<p>Nous adorerions avoir de vos nouvelles. Envoyez un email à email (at) nomdedomaine.com</p> 
     3714}, # Translate - New 
     3715        'Welcome to our new website!' => 'Bienvenue sur notre nouveau site !', # Translate - New 
     3716        '_UTS_SAMPLE_WELCOME' => q{ 
     3717<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In nec tellus sed turpis varius sagittis. Nullam pulvinar. Fusce dapibus neque pellentesque nulla. Maecenas condimentum quam. Aliquam erat volutpat. Ut placerat porta nibh. Donec vitae nulla. Pellentesque nisi leo, pretium a, gravida quis, sollicitudin non, eros. Vestibulum pretium fringilla quam. Nam elementum. Suspendisse odio magna, aliquam vitae, vulputate et, dignissim at, pede. Integer pellentesque orci at nibh. Morbi ante.</p> 
     3718 
     3719<p>Maecenas convallis mattis justo. Ut mauris sapien, consequat a, bibendum vitae, sagittis ac, nisi. Nulla et sapien. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Ut condimentum turpis ut elit. Quisque ultricies sollicitudin justo. Duis vitae magna nec risus pulvinar ultricies. Aliquam sagittis volutpat metus.</p> 
     3720 
     3721<p>Sed enim. Integer hendrerit, arcu ac pretium nonummy, velit turpis faucibus risus, pulvinar egestas enim elit sed ante. Curabitur orci diam, placerat a, faucibus id, condimentum vitae, magna. Etiam enim massa, convallis quis, rutrum vitae, porta quis, turpis.</p> 
     3722}, # Translate - New 
     3723        'New design launched using Movable Type' => 'Nouveau design lancé en utilisant Movable Type', # Translate - New 
     3724        '_UTS_SAMPLE_NEWDESIGN' => q{ 
     3725<p>Notre nouveau site internet est habillé d'un nouvel habillage grâce à <a href="http://www.movabletype.com/">Movable Type</a> et les Groupes d'Habillages Universels. Les Groupes d'Habillages Universels rendent facile et accessible à n'importe qui la mise en place et l'animation d'un site internet utilisant Movable Type. Et cela ne vous prendra que quelques instants#160;! Sélectionnez-en un simplement pour votre nouveau site web et publiez. Voilà#160;! Merci Movable Type#160;!</p>  
     3726}, # Translate - New 
     3727 
    36923728## addons/Commercial.pack/lib/CustomFields/App/CMS.pm 
    36933729        'Show' => 'Afficher', 
     
    37013737        'Invalid date \'[_1]\'; dates must be in the format YYYY-MM-DD HH:MM:SS.' => 'Date invalide \'[_1]\'; les dates doivent être dans le format YYYY-MM-DD HH:MM:SS.', 
    37023738        'Invalid date \'[_1]\'; dates should be real dates.' => 'Date invalide \'[_1]\'; les dates doivent être de vraies dates.', 
     3739        'Please enter valid URL for the URL field: [_1]' => 'Merci de saisir une URL correcte pour le champ URL : [_1]', # Translate - New 
    37033740        'Please enter some value for required \'[_1]\' field.' => 'Merci de saisir une valeur pour le champ obligatoire \'[_1]\'.', 
    37043741        'Please ensure all required fields have been filled in.' => 'Merci de vérifier que tous les champs obligatoires ont été remplis.', 
     
    37063743        'The template tag \'[_1]\' is already in use.' => 'Le tag de gabarit \'[_1]\' est déjà utilisé.', 
    37073744        'The basename \'[_1]\' is already in use.' => 'Le nom de base \'[_1]\' est déjà utilisé.', 
     3745        'Default value must be valid URL.' => 'La valeur par défaut doit être une URL valide.', # Translate - New 
    37083746        'Customize the forms and fields for entries, pages, folders, categories, and users, storing exactly the information you need.' => 'Personnalisez les champs des notes, pages, répertoires, catégories et auteurs pour stocker toutes les informations dont vous avez besoin.', 
    37093747        ' ' => ' ', # Translate - Case 
     
    37653803        'Close field order widget' => 'Fermer le module de changement d\'ordre des champs', 
    37663804        'open' => 'ouvrir', 
    3767         'close' => 'fermer', 
    37683805        'click-down and drag to move this field' => 'gardez le clic maintenu et glissez le curseur pour déplacer ce champs', 
    37693806        'click to %toggle% this box' => 'cliquez pour %toggle% cette boîte', 
     
    37813818        'Remove [_1]' => 'Supprimer [_1]', 
    37823819 
     3820## addons/Commercial.pack/templates/notify-entry.mtml 
     3821 
     3822## addons/Commercial.pack/templates/blog_index.mtml 
     3823 
     3824## addons/Commercial.pack/templates/main_index.mtml 
     3825 
     3826## addons/Commercial.pack/templates/page.mtml 
     3827 
     3828## addons/Commercial.pack/templates/entry_summary.mtml 
     3829 
     3830## addons/Commercial.pack/templates/comment_response.mtml 
     3831 
     3832## addons/Commercial.pack/templates/commenter_notify.mtml 
     3833 
     3834## addons/Commercial.pack/templates/recent_entries_expanded.mtml 
     3835 
     3836## addons/Commercial.pack/templates/footer-email.mtml 
     3837 
     3838## addons/Commercial.pack/templates/entry_detail.mtml 
     3839 
     3840## addons/Commercial.pack/templates/verify-subscribe.mtml 
     3841 
     3842## addons/Commercial.pack/templates/new-ping.mtml 
     3843 
     3844## addons/Commercial.pack/templates/comment_detail.mtml 
     3845        '[_1] [_2] on' => '[_1] [_2] sur', # Translate - New 
     3846        '<a href="[_1]" title="Permalink to this comment">[_2]</a>' => '<a href="[_1]" title="Lien permanent vers ce commentaire">[_2]</a>', 
     3847 
     3848## addons/Commercial.pack/templates/comment_form.mtml 
     3849 
     3850## addons/Commercial.pack/templates/comment_throttle.mtml 
     3851 
     3852## addons/Commercial.pack/templates/new-comment.mtml 
     3853 
     3854## addons/Commercial.pack/templates/entry_listing.mtml 
     3855 
     3856## addons/Commercial.pack/templates/contact.mtml 
     3857 
     3858## addons/Commercial.pack/templates/footer.mtml 
     3859        'Powered By (Footer)' => 'Powered By (Pied de Page)', # Translate - New 
     3860        'Footer Links' => 'Liens de Pied de Page', # Translate - New 
     3861 
     3862## addons/Commercial.pack/templates/tags.mtml 
     3863 
     3864## addons/Commercial.pack/templates/navigation.mtml 
     3865        'Home' => 'Accueil', 
     3866 
     3867## addons/Commercial.pack/templates/entry.mtml 
     3868 
     3869## addons/Commercial.pack/templates/recover-password.mtml 
     3870 
     3871## addons/Commercial.pack/templates/javascript.mtml 
     3872 
     3873## addons/Commercial.pack/templates/rss.mtml 
     3874 
     3875## addons/Commercial.pack/templates/archive_index.mtml 
     3876 
     3877## addons/Commercial.pack/templates/sign_in_top.mtml 
     3878        'You are signed in as' => 'Vous êtes identifié comme étant', # Translate - New 
     3879        'Sign Out' => 'Se Déconnecter', # Translate - Case 
     3880 
     3881## addons/Commercial.pack/templates/trackbacks.mtml 
     3882        '&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a> de [_3]', 
     3883        'Tracked on <a href="[_1]">[_2]</a>' => 'Tracké le <a href="[_1]">[_2]</a>', 
     3884 
     3885## addons/Commercial.pack/templates/sidebar.mtml 
     3886        'Recent Entries Expanded' => 'Entrées étendues récentes', # Translate - New 
     3887        'Recent Assets' => 'Éléments récents', 
     3888        'Recent Comments' => 'Commentaires récents', 
     3889        'Category Archives' => 'Archives par Catégories', 
     3890 
     3891## addons/Commercial.pack/templates/powered_by_footer.mtml 
     3892 
     3893## addons/Commercial.pack/templates/categories.mtml 
     3894 
     3895## addons/Commercial.pack/templates/comments.mtml 
     3896 
     3897## addons/Commercial.pack/templates/search_results.mtml 
     3898 
     3899## addons/Commercial.pack/templates/search_top.mtml 
     3900 
     3901## addons/Commercial.pack/templates/header.mtml 
     3902        'Sign In (In Header)' => 'S\'identifier (Dans l\'En-tête de la Page)', # Translate - New 
     3903        'Navigation' => 'Navigation', 
     3904        'Search (In Navigation)' => 'Rechercher (Dans la Navigation)', # Translate - New 
     3905        'Homepage Image' => 'Image de Page d\'Accueil', # Translate - New 
     3906 
     3907## addons/Commercial.pack/templates/sidebar_2col.mtml 
     3908 
     3909## addons/Commercial.pack/templates/sidebar_3col.mtml 
     3910 
     3911## addons/Commercial.pack/templates/dynamic_error.mtml 
     3912 
     3913## addons/Commercial.pack/templates/footer_links.mtml 
     3914        'Links' => 'Liens', # Translate - New 
     3915 
     3916## addons/Commercial.pack/templates/comment_preview.mtml 
     3917 
     3918## addons/Commercial.pack/templates/commenter_confirm.mtml 
     3919 
    37833920## addons/Commercial.pack/config.yaml 
    3784  
    3785 ## addons/Community.pack/lib/MT/App/Community.pm 
    3786         'No login form template defined' => 'Aucun formulaire d\'identification de défini', 
    3787         'Before you can sign in, you must authenticate your email address. <a href="[_1]">Click here</a> to resend the verification email.' => 'Avant de pouvoir vous identifier, vous devez confirmer votre adresse email. <a href="[_1]">Cliquez ici</a> pour envoyer à nouveau l\'email de vérification.', 
    3788         'Your confirmation have expired. Please register again.' => 'Votre confirmation a expiré. Merci de vous inscrire à nouveau.', 
    3789         'User \'[_1]\' (ID:[_2]) has been successfully registered.' => 'L\'utilisateur \'[_1]\' (ID:[_2]) a été enregistré avec succÚs.', 
    3790         'Thanks for the confirmation.  Please sign in.' => 'Merci pour la confirmation. Identifiez-vous.', 
    3791         'Login required' => 'Authentification obligatoire', 
    3792         'System template entry_response not found in blog: [_1]' => 'Gabarit systÚme entry_response introuvable dans le blog: [_1]', 
    3793         'Posting a new entry failed.' => 'Echec de saisie d\'une nouvelle note.', 
    3794         'New entry \'[_1]\' added to the blog \'[_2]\'' => 'Nouvelle note \'[_1]\' ajoutée sur le blog \'[_2]\'', 
    3795         'Id or Username is required' => 'Id ou identifiant obligatoire', 
    3796         'Unknown user' => 'Utilisateur inconnu', 
    3797         'Cannot edit profile.' => 'Impossible de modifier le profil.', 
    3798         'Recent Entries from [_1]' => 'Notes récentes de [_1]', 
    3799         'Responses to Comments from [_1]' => 'Réponses aux commentaires de [_1]', 
    3800  
    3801 ## addons/Community.pack/lib/MT/Community/Tags.pm 
    3802         'You used an \'[_1]\' tag outside of the block of MTIfEntryRecommended; perhaps you mistakenly placed it outside of an \'MTIfEntryRecommended\' container?' => 'Vous avez utilisé un tag \'[_1]\' en dehors d\'un bloc de MTIfEntryRecommended; Peut-être l\'avez-vous placé par erreur en dehors d\'un conteneur \'MTIfEntryRecommended\' ?', 
    3803         'Click here to recommend' => 'Cliquer ici pour recommander', 
    3804  
    3805 ## addons/Community.pack/lib/MT/Community/CMS.pm 
    3806         'Welcome to the Movable Type Community Solution' => 'Bienvenue dans Movable Type Community Solution', 
    3807         'The Community Solution gives you to the tools to build a successful community with active, engaged conversations. Some key features to explore:' => 'Le Community Solution vous offre les outils pour construire avec succÚs une communauté active avec des conversations engagées. Certaines fonctionnalités principales à explorer:', 
    3808         'Member Profiles' => 'Profils des membres', 
    3809         'Allow registered members of your community to create and customize profiles, including user pictures' => 'Permettez aux membres enregistrés de votre communauté de créer et personnaliser leur profil, avec leur photo', 
    3810         'Favoriting, Recommendations and User Voting' => 'Favoris, recommandations et votes', 
    3811         'Your community can vote for its favorite content, making it easy for your readers and authors to see what\'s most popular' => 'Votre communauté peut voter pour son contenu favori, ainsi vos lecteurs et auteurs peuvent voir facilement ce qui est populaire', 
    3812         'User-Contributed Content' => 'Contenu généré par les utilisateurs', 
    3813         'Registered users can submit content to your site, and administrators have full control over what gets published' => 'Les utilisateurs enregistrés peuvent soumettre du contenu dans votre site, et les administrateurs ont un contrÃŽle complet sur ce qui sera publié', 
    3814         'Forums and Community Blogs' => 'Forums et blogs communautaires', 
    3815         'Add forums and group blogs to your site with just a few clicks' => 'Ajoutez des forums et des blogs collectifs à votre site avec quelques clics.', 
    3816         'Completely Customizable Design' => 'Design complétement personnalisable', 
    3817         'Every element of your site experience is customizable, including login screens, registration forms, profile editing, and even email messages' => 'Chaque élément de votre site est personnalisable, ce qui inclut les écrans d\'identification, les formulaires d\'inscription, la modification des profils, et même les corps des emails', 
    3818  
    3819 ## addons/Community.pack/php/function.mtentryrecommendvotelink.php 
    3820  
    3821 ## addons/Community.pack/tmpl/widget/blog_stats_registration.mtml 
    3822         'Registrations' => 'Inscriptions', 
    3823         'Recent Registrations' => 'Inscriptions récentes', 
    3824         'default userpic' => 'Image de l\'utilisateur par défaut', 
    3825         'You have [quant,_1,registration,registrations] from [_2]' => 'Vous avez [quant,_1,inscription,inscriptions] depuis [_2]', 
    3826  
    3827 ## addons/Community.pack/tmpl/widget/most_popular_entries.mtml 
    3828         'Most Popular Entries' => 'Notes les plus populaires', 
    3829         'There are no popular entries.' => 'Il n\'y a pas de notes populaires.', 
    3830  
    3831 ## addons/Community.pack/tmpl/widget/recent_submissions.mtml 
    3832         'Recent Submissions' => 'Soumissions récentes', 
    3833  
    3834 ## addons/Community.pack/tmpl/widget/recent_favorites.mtml 
    3835         'Recent Favorites' => 'Favoris récents', 
    3836         'There are no recently favorited entries.' => 'Il n\'y a pas de notes favorites récentes.', 
    3837  
    3838 ## addons/Community.pack/tmpl/cfg_community_prefs.tmpl 
    3839         'Community Settings' => 'Réglages de la communauté', 
    3840         'Anonymous Recommendation' => 'Recommandation anonyme', 
    3841         'Check to allow anonymous users (users not logged in) to recommend discussion.  IP address is recorded and used to identify each user.' => 'Cocher pour autoriser les utilisateurs anonymes (non identifiés) à recommander une discussion. L\'adresse IP est enregistrée et utilisée pour identifier chaque utilisateur.', 
    3842         'Allow anonymous user to recommend' => 'Autoriser un utilisateur anonyme à recommander', 
    3843         'Save changes to blog (s)' => 'Enregistrer les modifications du blog (s)', 
    3844  
    3845 ## addons/Community.pack/templates/global/register_form.mtml 
    3846         'Sign up' => 'Enregistrez-vous', 
    3847         'Simple Header' => 'Tête de page simple', 
    3848  
    3849 ## addons/Community.pack/templates/global/simple_footer.mtml 
    3850  
    3851 ## addons/Community.pack/templates/global/profile_error.mtml 
    3852         'Profile Error' => 'Erreur de profil', 
    3853         'Status Message' => 'Message de statut', 
    3854  
    3855 ## addons/Community.pack/templates/global/profile_feed_rss.mtml 
    3856  
    3857 ## addons/Community.pack/templates/global/userpic.mtml 
    3858  
    3859 ## addons/Community.pack/templates/global/new_entry_email.mtml 
    3860         'A new entry \'[_1]([_2])\' has been posted on your blog [_3].' => 'Une nouvelle note \'[_1]([_2])\' a été postée sur votre blog [_3].', 
    3861         'Author name: [_1]' => 'Nom de l\'auteur: [_1]', 
    3862         'Author nickname: [_1]' => 'Surnom de l\'auteur: [_1]', 
    3863         'Title: [_1]' => 'Titre: [_1]', 
    3864         'Edit entry:' => 'Modifier la note:', 
    3865  
    3866 ## addons/Community.pack/templates/global/password_reset_form.mtml 
    3867         'Reset Password' => 'Initialiser le mot de passe', 
    3868         'Back to the original page' => 'Retour à la page initiale', 
    3869         'Simple Footer' => 'Pied de page simple', 
    3870  
    3871 ## addons/Community.pack/templates/global/profile_edit_form.mtml 
    3872         'Go <a href="[_1]">back to the previous page</a> or <a href="[_2]">view your profile</a>.' => 'Retourner à  <a href="[_1]">la page précédente</a> ou <a href="[_2]">voir votre profil</a>.', 
    3873         'Form Field' => 'Champ de formulaire', 
    3874         'User Name' => 'Identifiant', 
    3875         'Upload New Userpic' => 'Charger une nouvelle photo utilisateur', 
    3876  
    3877 ## addons/Community.pack/templates/global/header.mtml 
    3878         'Blog Description' => 'Description du blog', 
    3879         'GlobalJavaScript' => 'GlobalJavaScript', 
    3880         'Navigation' => 'Navigation', 
    3881         'User Navigation' => 'Navigation utilisateur', 
    3882  
    3883 ## addons/Community.pack/templates/global/profile_view.mtml 
    3884         'User Profile' => 'Profil de l\'utilisateur', 
    3885         'Website:' => 'Site Web:', 
    3886         'Recent Comments' => 'Commentaires récents', 
    3887         'Responses to Comments' => 'Réponses aux commentaires', 
    3888         'Favorites' => 'Favoris', 
    3889         'No recent entries.' => 'Pas de notes récentes.', 
    3890         'Recents Comments from [_1]' => 'Commentaires récents de [_1]', 
    3891         '(posted to [_1])' => '(posté sur [_1])', 
    3892         'No recent comments.' => 'Pas de commentaires récents.', 
    3893         'No responses to comments.' => 'Pas de réponse aux commentaires.', 
    3894         'Favorites of [_1]' => 'Favoris de [_1]', 
    3895         '[_1] has not added any favorites yet.' => '[_1] n\'a pas encore ajouté de favoris.', 
    3896  
    3897 ## addons/Community.pack/templates/global/login_form.mtml 
    3898  
    3899 ## addons/Community.pack/templates/global/register_confirmation.mtml 
    3900         'Authentication Email Sent' => 'Email d\'authentification envoyé', 
    3901         'Profile Created' => 'Profil créé', 
    3902         '<a href="[_1]">Return to the original page.</a>' => '<a href="[_1]">Retourner à la page initiale</a>', 
    3903  
    3904 ## addons/Community.pack/templates/global/user_navigation.mtml 
    3905         'Logged in as <a href="[_1]">[_2]</a>' => 'Identifié comme <a href="[_1]">[_2]</a>', 
    3906         'Sign out' => 'déconnexion', 
    3907         'Not a member? <a href="[_1]">Register</a>' => 'Pas encore membre? <a href="[_1]">Enregistrez-vous</a>', 
    3908  
    3909 ## addons/Community.pack/templates/global/footer.mtml 
    3910  
    3911 ## addons/Community.pack/templates/global/navigation.mtml 
    3912         'Home' => 'Accueil', 
    3913  
    3914 ## addons/Community.pack/templates/global/login_form_module.mtml 
    3915         'Hello [_1]' => 'Bonjour [_1]', 
    3916         'Forgot Password' => 'Mot de passe oublié?', 
    3917  
    3918 ## addons/Community.pack/templates/global/email_verification_email.mtml 
    3919         'Thank you registering for an account to [_1].' => 'Merci de créer un compte sur [_1].', 
    3920         'For your own security and to prevent fraud, we ask that you please confirm your account and email address before continuing. Once confirmed you will immediately be allowed to sign in to [_1].' => 'Pour votre propre sécurité et pour prévenir la fraude, nous vous demandons de confirmer votre compte et adresse email avant de continuer. Une fois confirmés vous serez immédiatement autorisé à vous identifier sur [_1].', 
    3921         'If you did not make this request, or you don\'t want to register for an account to [_1], then no further action is required.' => 'Si vous n\'avez pas fait cette demande, ou que vous ne souhaitez pas créer un compte sur [_1], alors aucune action n\'est nécessaire.', 
    3922  
    3923 ## addons/Community.pack/templates/global/register_notification_email.mtml 
    3924  
    3925 ## addons/Community.pack/templates/global/search.mtml 
    3926  
    3927 ## addons/Community.pack/templates/blog/rss.mtml 
    3928  
    3929 ## addons/Community.pack/templates/blog/archive_index.mtml 
    3930         'Content Navigation' => 'Navigation du contenu', 
    3931  
    3932 ## addons/Community.pack/templates/blog/trackbacks.mtml 
    3933  
    3934 ## addons/Community.pack/templates/blog/main_index.mtml 
    3935  
    3936 ## addons/Community.pack/templates/blog/page.mtml 
    3937  
    3938 ## addons/Community.pack/templates/blog/content_nav.mtml 
    3939         'Blog Home' => 'Accueil du blog', 
    3940  
    3941 ## addons/Community.pack/templates/blog/entry_summary.mtml 
    3942         'A favorite' => 'Un favori', 
    3943         'Favorite' => 'Favori', 
    3944  
    3945 ## addons/Community.pack/templates/blog/entry_response.mtml 
    3946         'Thank you for posting an entry.' => 'Merci d\'avoir posté votre message.', 
    3947         'Entry Pending' => 'Message en attente', 
    3948         'Your entry has been received and held for approval by the blog owner.' => 'Votre message a été reçu et est en attente d\'approbation par le propriétaire du blog.', 
    3949         'Entry Posted' => 'Message posté', 
    3950         'Your entry has been posted.' => 'Votre message a bien été posté.', 
    3951         'Your entry has been received.' => 'Votre message a été reçu.', 
    3952         'Return to the <a href="[_1]">blog\'s main index</a>.' => 'Retour à la <a href="[_1]">page principale du blog</a>.', 
    3953  
    3954 ## addons/Community.pack/templates/blog/comment_response.mtml 
    3955  
    3956 ## addons/Community.pack/templates/blog/entry_detail.mtml 
    3957  
    3958 ## addons/Community.pack/templates/blog/entry_form.mtml 
    3959         'You don\'t have permission to post.' => 'Vous n\'avez pas la permission de poster.', 
    3960         '<a href="[_1]">Sign in</a> to create an entry.' => '<a href="[_1]">Identifiez-vous</a> pour créer une note.', 
    3961         'Select Category...' => 'Sélectionner la catégorie...', 
    3962  
    3963 ## addons/Community.pack/templates/blog/entry_create.mtml 
    3964         'Entry Form' => 'Formulaire de note', 
    3965  
    3966 ## addons/Community.pack/templates/blog/comment_detail.mtml 
    3967  
    3968 ## addons/Community.pack/templates/blog/comments.mtml 
    3969  
    3970 ## addons/Community.pack/templates/blog/comment_form.mtml 
    3971  
    3972 ## addons/Community.pack/templates/blog/categories.mtml 
    3973  
    3974 ## addons/Community.pack/templates/blog/search_results.mtml 
    3975  
    3976 ## addons/Community.pack/templates/blog/sidebar_2col.mtml 
    3977         'Subscribe icon' => 'IcÃŽne d\'abonnement', 
    3978         'Subscribe' => 'Abonnement', 
    3979  
    3980 ## addons/Community.pack/templates/blog/sidebar_3col.mtml 
    3981  
    3982 ## addons/Community.pack/templates/blog/entry_listing.mtml 
    3983  
    3984 ## addons/Community.pack/templates/blog/dynamic_error.mtml 
    3985  
    3986 ## addons/Community.pack/templates/blog/tags.mtml 
    3987  
    3988 ## addons/Community.pack/templates/blog/entry_metadata.mtml 
    3989  
    3990 ## addons/Community.pack/templates/blog/entry.mtml 
    3991  
    3992 ## addons/Community.pack/templates/blog/comment_preview.mtml 
    3993  
    3994 ## addons/Community.pack/templates/blog/javascript.mtml 
    3995  
    3996 ## addons/Community.pack/templates/forum/main_index.mtml 
    3997         'Forum Home' => 'Accueil du forum', 
    3998         'Content Header' => 'Entête du contenu', 
    3999         'Popular Entry' => 'Note populaire', 
    4000         'Entry Table' => 'Tableau de note', 
    4001  
    4002 ## addons/Community.pack/templates/forum/page.mtml 
    4003  
    4004 ## addons/Community.pack/templates/forum/entry_summary.mtml 
    4005  
    4006 ## addons/Community.pack/templates/forum/content_nav.mtml 
    4007         'Start Topic' => 'Débuter un sujet', 
    4008  
    4009 ## addons/Community.pack/templates/forum/entry_response.mtml 
    4010         'Thank you for posting a new topic to the forums.' => 'Merci d\'avoir créé un nouveau sujet dans le forum.', 
    4011         'Topic Pending' => 'Sujet en attente', 
    4012         'The topic you posted has been received and held for approval by the forum administrators.' => 'Le sujet que vous avez créé a bien été reçu et il est en attente de validation par les administrateurs du forum.', 
    4013         'Topic Posted' => 'Sujet posté', 
    4014         'The topic you posted has been received and published. Thank you for your submission.' => 'Le sujet que vous avez créé a bien été reçu et publié. Merci.', 
    4015         'Return to the <a href="[_1]">forum\'s homepage</a>.' => 'Retour à la <a href="[_1]">page d\'accueil du forum</a>.', 
    4016  
    4017 ## addons/Community.pack/templates/forum/comment_response.mtml 
    4018         'Reply Submitted' => 'Réponse envoyée', 
    4019         'Your reply has been accepted' => 'Votre réponse a été acceptée', 
    4020         'Thank you for your reply. It has been accepted and should appear momentarily.' => 'Merci pour votre réponse. Elle a été acceptée et devrait apparaître dans un instant.', 
    4021         'Reply Pending' => 'Réponse en attente', 
    4022         'Your reply has been received' => 'Votre réponse a été reçue', 
    4023         'Thank you for your reply. However, your reply is currently being held for approval by the forum\'s administrator.' => 'Merci pour votre réponse. Cependant, votre réponse est actuellement en attente de validation par l\'administrateur du forum.', 
    4024         'Reply Submission Error' => 'Erreur lors de l\'envoi de la réponse', 
    4025         'Your reply submission failed for the following reasons:' => 'L\'envoi de votre réponse a échoué pour les raisons suivantes:', 
    4026         'Return to the <a href="[_1]">original topic</a>.' => 'Retour au <a href="[_1]">sujet d\'origine</a>.', 
    4027  
    4028 ## addons/Community.pack/templates/forum/content_header.mtml 
    4029  
    4030 ## addons/Community.pack/templates/forum/entry_detail.mtml 
    4031  
    4032 ## addons/Community.pack/templates/forum/entry_form.mtml 
    4033         '<a href="[_1]">Sign in</a> to create a topic.' => '<a href="[_1]">Identifiez-vous</a> pour créer un sujet.', 
    4034         'Topic' => 'Sujet', 
    4035         'Select Forum...' => 'Sélectionner un forum...', 
    4036         'Forum' => 'Forum', 
    4037  
    4038 ## addons/Community.pack/templates/forum/comment_detail.mtml 
    4039  
    4040 ## addons/Community.pack/templates/forum/entry_create.mtml 
    4041         'Start a Topic' => 'Créer un nouveau sujet', 
    4042  
    4043 ## addons/Community.pack/templates/forum/comment_form.mtml 
    4044  
    4045 ## addons/Community.pack/templates/forum/entry_listing.mtml 
    4046  
    4047 ## addons/Community.pack/templates/forum/entry_metadata.mtml 
    4048         'Replies ([_1])' => 'Réponses ([_1])', 
    4049  
    4050 ## addons/Community.pack/templates/forum/entry.mtml 
    4051  
    4052 ## addons/Community.pack/templates/forum/javascript.mtml 
    4053         '. Now you can reply to this topic.' => '. Maintenant vous pouvez répondre à ce sujet.', 
    4054         ' to comment on this topic.' => ' pour commenter sur ce sujet.', 
    4055         ' to comment on this topic,' => ' pour commenter sur ce sujet,', 
    4056  
    4057 ## addons/Community.pack/templates/forum/rss.mtml 
    4058  
    4059 ## addons/Community.pack/templates/forum/entry_table.mtml 
    4060         'Recent Topics' => 'Sujets récents', 
    4061         'Replies' => 'Réponses', 
    4062         'Last Reply' => 'DerniÚre réponse', 
    4063         'Permalink to this Reply' => 'Lien permanent vers cette réponse', 
    4064         'By [_1]' => 'Par [_1]', 
    4065         'Closed' => 'Fermé', 
    4066         'Post the first topic in this forum.' => 'Créez le premier sujet de ce forum.', 
    4067  
    4068 ## addons/Community.pack/templates/forum/archive_index.mtml 
    4069  
    4070 ## addons/Community.pack/templates/forum/sidebar.mtml 
    4071         'Category Groups' => 'Groupes de catégorie', 
    4072         'All Forums' => 'Tous les forums', 
    4073         '[_1] Forum' => '[_1] forum', 
    4074  
    4075 ## addons/Community.pack/templates/forum/category_groups.mtml 
    4076         'Forum Groups' => 'Groupes de forums', 
    4077         'Last Topic: [_1] by [_2] on [_3]' => 'Dernier sujet: [_1] par [_2] sur [_3]', 
    4078  
    4079 ## addons/Community.pack/templates/forum/comments.mtml 
    4080         '[_1] Replies' => '[_1] réponses', 
    4081         '_NUM_FAVORITES' => 'Marquer comme favori', 
    4082         'Favorite This' => 'Marquer comme favori', 
    4083  
    4084 ## addons/Community.pack/templates/forum/search_results.mtml 
    4085  
    4086 ## addons/Community.pack/templates/forum/dynamic_error.mtml 
    4087  
    4088 ## addons/Community.pack/templates/forum/entry_popular.mtml 
    4089         'Popular topics' => 'Sujets populaires', 
    4090         'No Reply' => 'Aucune réponse', 
    4091  
    4092 ## addons/Community.pack/templates/forum/comment_preview.mtml 
    4093         'Reply on [_1]' => 'Réponse sur [_1]', 
    4094         'Previewing your Reply' => 'Prévisualiser votre réponse', 
    4095  
    4096 ## addons/Community.pack/config.yaml 
    4097         'Login Form' => 'Formulaire d\'identification', 
    4098         'Password Reset Form' => 'Formulaire de réinitialisation du mot de passe', 
    4099         'Registration Form' => 'Formulaire d\'enregistrement', 
    4100         'Registration Confirmation' => 'Confirmation d\'enregistrement', 
    4101         'Profile View' => 'Vue du profil', 
    4102         'Profile Edit Form' => 'Formulaire de modification du profil', 
    4103         'Profile Feed (Atom)' => 'Flux de profil (Atom)', 
    4104         'Profile Feed (RSS)' => 'Flux de profil (RSS)', 
    4105         'Email verification' => 'Vérification email', 
    4106         'Registration notification' => 'Notification enregistrement', 
    4107         'New entry notification' => 'Notification de nouvelle note', 
    4108         'Community Blog' => 'Blog de la communauté', 
    4109         'Entry Response' => 'Réponse à la note', 
    4110         'Displays error, pending or confirmation message when submitting an entry.' => 'Afficher les erreurs et les messages de confirmation quand une note est écrite.', 
    4111         'Community Forum' => 'Forum de la communauté', 
    4112         'Entry Feed (Atom)' => 'Flux de note (Atom)', 
    4113         'Entry Feed (RSS)' => 'Flux de note (RSS)', 
    4114         'Displays error, pending or confirmation message when submitting a entry.' => 'Affiche les messages d\'erreur, de validation et de confirmation quand une nouvelle note est créée.', 
    4115  
    4116 ## addons/Enterprise.pack/lib/MT/Enterprise/Upgrade.pm 
    4117         'Fixing binary data for Microsoft SQL Server storage...' => 'Correction des données binaires pour le stockage Microsoft SQL Server...', 
    4118  
    4119 ## addons/Enterprise.pack/lib/MT/Enterprise/Wizard.pm 
    4120         'PLAIN' => 'PLAIN', 
    4121         'CRAM-MD5' => 'CRAM-MD5', 
    4122         'Digest-MD5' => 'Digest-MD5', 
    4123         'Login' => 'Identifiant', 
    4124         'Found' => 'Trouvé', 
    4125         'Not Found' => 'Non trouvé', 
    4126  
    4127 ## addons/Enterprise.pack/lib/MT/Enterprise/BulkCreation.pm 
    4128         'Format error at line [_1]: [_2]' => 'Erreur de format à la ligne [_1]: [_2]', 
    4129         'Invalid command: [_1]' => 'Commande invalide: [_1]', 
    4130         'Invalid number of columns for [_1]' => 'Nombre de colonnes invalide pour [_1]', 
    4131         'Invalid user name: [_1]' => 'Identifiant invalide: [_1]', 
    4132         'Invalid display name: [_1]' => 'Nom d\'affichage invalide: [_1]', 
    4133         'Invalid email address: [_1]' => 'Adresse email invalide: [_1]', 
    4134         'Invalid language: [_1]' => 'Langue invalide: [_1]', 
    4135         'Invalid password: [_1]' => 'Mot de passe invalide: [_1]', 
    4136         'Invalid password recovery phrase: [_1]' => 'Phrase de récupération de mot de passe invalide: [_1]', 
    4137         'Invalid weblog name: [_1]' => 'Nom de weblog invalide: [_1]', 
    4138         'Invalid weblog description: [_1]' => 'Description de weblog invalide: [_1]', 
    4139         'Invalid site url: [_1]' => 'URL du site invalide: [_1]', 
    4140         'Invalid site root: [_1]' => 'Racine du site invalide: [_1]', 
    4141         'Invalid timezone: [_1]' => 'Fuseau horaire invalide: [_1]', 
    4142         'Invalid new user name: [_1]' => 'Nouvel identifiant invalide: [_1]', 
    4143         'A user with the same name was found.  Register was not processed: [_1]' => 'Un utilisateur avec le même nom a été trouvé. L\'enregistrement n\'a pas été effectué: [_1]', 
    4144         'Blog for user \'[_1]\' can not be created.' => 'Le blog pour l\'utilisateur \'[_1]\' ne peut être créé.', 
    4145         'Blog \'[_1]\' for user \'[_2]\' has been created.' => 'Le blog \'[_1]\' pour l\'utilisateur \'[_2]\' a été créé.', 
    4146         'Error assigning weblog administration rights to user \'[_1] (ID: [_2])\' for weblog \'[_3] (ID: [_4])\'. No suitable weblog administrator role was found.' => 'Erreur en tentant d\'assigner les droits d\'administration du blog à l\'utilisateur \'[_1] (ID: [_2])\' pour le weblog \'[_3] (ID: [_4])\'. Aucun rÃŽle d\'administrateur de weblog adéquat n\'a été trouvé.', 
    4147         'Permission granted to user \'[_1]\'' => 'Permission accordée à l\'utilisateur \'[_1]\'', 
    4148         'User \'[_1]\' already exists. Update was not processed: [_2]' => 'L\'utilisateur \'[_1]\' existe déjà. La mise a jour n\'a pas eu lieu: [_2]', 
    4149         'User cannot be updated: [_1].' => 'Utilisateur ne peut être mis à jour: [_1].', 
    4150         'User \'[_1]\' not found.  Update was not processed.' => 'L\'utilisateur \'[_1]\' n\'a pas été trouvé. La mise à jour n\'a pas eu lieu.', 
    4151         'User \'[_1]\' has been updated.' => 'L\'utilisateur \'[_1]\' a été mis à jour.', 
    4152         'User \'[_1]\' was found, but delete was not processed' => 'L\'utilisateur \'[_1]\' a été trouvé, mais la suppression n\'a pas eu lieu.', 
    4153         'User \'[_1]\' not found.  Delete was not processed.' => 'L\'utilisateur \'[_1]\' n\'a pas été trouvé. La suppression n\'a pas eu lieu.', 
    4154         'User \'[_1]\' has been deleted.' => 'L\'utilisateur \'[_1]\' a été supprimé.', 
    4155  
    4156 ## addons/Enterprise.pack/lib/MT/Enterprise/CMS.pm 
    4157         'Add [_1] to a blog' => 'Ajouter [_1] à un blog', 
    4158         'You can not create associations for disabled groups.' => 'Vous ne pouvez pas créer d\'association pour les groupes désactivés.', 
    4159         'Assign Role to Group' => 'Ajouter le rÃŽle au groupe', 
    4160         'Add a group to this blog' => 'Ajouter un groupe à ce blog', 
    4161         'Grant permission to a group' => 'Ajouter une autorisation à un groupe', 
    4162         'Movable Type Enterprise has just attempted to disable your account during synchronization with the external directory. Some of the external user management settings must be wrong. Please correct your configuration before proceeding.' => 'Movable Type Enterprise vient de tenter de désactiver votre compte pendant la synchronisation avec l\'annuaire externe. Certains des paramÚtres du systÚme de gestion externe des utilisateurs doivent être erronés. Merci de corriger avant de poursuivre.', 
    4163         'Group requires name' => 'Le groupe nécessite un nom.', 
    4164         'Invalid group' => 'Groupe invalide.', 
    4165         'Add Users to Group [_1]' => 'Ajouter les utilisateurs au groupe [_1]', 
    4166         'Users & Groups' => 'Utilisateurs et Groupes', 
    4167         'Group Members' => 'Membres du groupe', 
    4168         'Groups' => 'Groupes', 
    4169         'User Groups' => 'Groupes de l\'utilisateur', 
    4170         'Group load failed: [_1]' => 'Chargement du groupe échoué: [_1]', 
    4171         'User load failed: [_1]' => 'Chargement de l\'utilisateur échoué: [_1]', 
    4172         'User \'[_1]\' (ID:[_2]) removed from group \'[_3]\' (ID:[_4]) by \'[_5]\'' => 'Utilisateur \'[_1]\' (ID:[_2]) supprimé du groupe \'[_3]\' (ID:[_4]) par \'[_5]\'', 
    4173         'User \'[_1]\' (ID:[_2]) was added to group \'[_3]\' (ID:[_4]) by \'[_5]\'' => 'Utilisateur \'[_1]\' (ID:[_2]) a été ajouté au groupe \'[_3]\' (ID:[_4]) par \'[_5]\'', 
    4174         'Group Profile' => 'Profil du Groupe', 
    4175         'Author load failed: [_1]' => 'Chargement de l\'auteur échoué: [_1]', 
    4176         'Invalid user' => 'Utilisateur invalide', 
    4177         'Assign User [_1] to Groups' => 'Assigner l\'utilisateur [_1] aux groupes.', 
    4178         'Select Groups' => 'Sélectionner les groupes', 
    4179         'Group' => 'Groupe', 
    4180         'Groups Selected' => 'Groupes sélectionnés', 
    4181         'Type a group name to filter the choices below.' => 'Tapez un nom de groupe pour filtrer les choix ci-dessous.', 
    4182         'Group Name' => 'Nom du groupe', 
    4183         'Search Groups' => 'Rechercher des groupes', 
    4184         'Bulk import cannot be used under external user management.' => 'L\'import en masse ne peut être utilisé avec la gestion externe des utilisateurs.', 
    4185         'Bulk management' => 'Gestion en masse', 
    4186         'The group' => 'Le groupe', 
    4187         'User/Group' => 'Utilisateur/Groupe', 
    4188         'A user can\'t change his/her own username in this environment.' => 'Un utilisateur ne peut pas changer son nom d\'utilisateur dans cet environnement', 
    4189         'An error occurred when enabling this user.' => 'Une erreur s\'est produite pendant l\'activation de cet utilisateur.', 
    4190  
    4191 ## addons/Enterprise.pack/lib/MT/Auth/LDAP.pm 
    4192         'User [_1]([_2]) not found.' => 'Utilisateur [_1]([_2]) non trouvé.', 
    4193         'User \'[_1]\' cannot be updated.' => 'Utilisateur \'[_1]\' ne peut être mis à jour.', 
    4194         'User \'[_1]\' updated with LDAP login ID.' => 'Utilisateur \'[_1]\' mis à jour avec l\'ID de login LDAP.', 
    4195         'LDAP user [_1] not found.' => 'Utilisateur LDAP [_1] non trouvé.', 
    4196         'User [_1] cannot be updated.' => 'Utilisateur [_1] ne peut être mis à jour.', 
    4197         'Failed login attempt by user \'[_1]\' deleted from LDAP.' => 'Tentative de login échouée par utilisateur \'[_1]\' supprimé de LDAP.', 
    4198         'User \'[_1]\' updated with LDAP login name \'[_2]\'.' => 'Utilisateur \'[_1]\' mis à jour avec l\'identifiant LDAP \'[_2]\'.', 
    4199         "Failed login attempt by user \'[_1]\'. A user with that\nusername already exists in the system with a different UUID." => "Tentative de login échouée par utilisateur \'[_1]\'. Un utilisateur avec cet 
    4200 identifiant existe déjà dans le systÚme avec un UUID différent.", 
    4201         'User \'[_1]\' account is disabled.' => 'Le compte de l\'utilisateur \'[_1]\' est désactivé.', 
    4202         'LDAP users synchronization interrupted.' => 'Synchronisation des utilisateurs LDAP interrompue.', 
    4203         'Loading MT::LDAP failed: [_1]' => 'Chargement de MT::LDAP échoué: [_1]', 
    4204         'External user synchronization failed.' => 'Synchronisation utilisateur externe échouée.', 
    4205         'An attempt to disable all system administrators in the system was made.  Synchronization of users was interrupted.' => 'Une tentative de désactivation de tous les administrateurs systÚme a été réalisée. La synchronisation des utilisateurs a été interrompue.', 
    4206         'The following users\' information were modified:' => 'Les informations suivantes des utilisateurs ont été modifiées:', 
    4207         'The following users were disabled:' => 'Les utilisateurs suivants ont été désactivés:', 
    4208         'LDAP users synchronized.' => 'Utilisateurs LDAP synchronisés.', 
    4209         'Synchronization of groups can not be performed without LDAPGroupIdAttribute and/or LDAPGroupNameAttribute is set.' => 'La synchronisation des groupes ne peut avoir lieu sans LDAPGroupIdAttribute et/ou LDAPGroupNameAttribute paramétré.', 
    4210         'LDAP groups synchronized with existing groups.' => 'Groupes LDAP synchronisés avec les groupes existants.', 
    4211         'The following groups\' information were modified:' => 'Les informations suivantes des groupes ont été modifiées:', 
    4212         'No LDAP group was found using given filter.' => 'Aucun groupe LDAP n\'a été trouvé avec le filtre fourni.', 
    4213         "Filter used to search for groups: [_1]\nSearch base: [_2]" => "Filtre utilisé pour rechercher les groupes: [_1] 
    4214 Base de recherche: [_2]", 
    4215         '(none)' => '(Aucun)', 
    4216         'The following groups were deleted:' => 'Les groupes suivants ont été effacés:', 
    4217         'Failed to create a new group: [_1]' => 'Impossible de créer un nouveau groupe: [_1]', 
    4218         '[_1] directive must be set to synchronize members of LDAP groups to Movable Type Enterprise.' => 'La directive [_1] doit être configurée pour synchroniser les membres des groupes LDAP avec Movable Type Enterprise.', 
    4219         'Members removed: ' => 'Membres supprimés:', 
    4220         'Members added: ' => 'Membres ajoutés:', 
    4221         'Memberships of the group \'[_2]\' (#[_3]) has been changed in synchronizing with external directory.' => 'Les membres du groupe \'[_2]\' (#[_3]) ont été changé en synchronisant avec l\'annuaire externe.', 
    4222         'LDAPUserGroupMemberAttribute must be set to enable synchronize members of groups.' => 'LDAPUserGroupMemberAttribute doit être configuré pour activer la synchronisation des membres des groupes.', 
    4223  
    4224 ## addons/Enterprise.pack/lib/MT/ObjectDriver/Driver/DBD/MSSQLServer.pm 
    4225         'PublishCharset [_1] is not supported in this version of MS SQL Server Driver.' => 'PublishCharset [_1] n\'est pas supporté dans cette version de driver MS SQL Server.', 
    4226  
    4227 ## addons/Enterprise.pack/lib/MT/ObjectDriver/Driver/DBD/UMSSQLServer.pm 
    4228         'This version of UMSSQLServer driver requires DBD::ODBC version 1.14.' => 'Cette version du driver UMSSQLServer nécessite DBD::ODBC version 1.14.', 
    4229         'This version of UMSSQLServer driver requires DBD::ODBC compiled with Unicode support.' => 'Cette version du driver UMSSQLServer nécessite DBD::ODBC compilé avec le support de Unicode.', 
    4230  
    4231 ## addons/Enterprise.pack/lib/MT/Group.pm 
    4232  
    4233 ## addons/Enterprise.pack/lib/MT/LDAP.pm 
    4234         'Invalid LDAPAuthURL scheme: [_1].' => 'LDAPAuthURL invalide : [_1].', 
    4235         'Error connecting to LDAP server [_1]: [_2]' => 'Erreur de connection au serveur LDAP [_1]: [_2]', 
    4236         'User not found on LDAP: [_1]' => 'Utilisateur non trouvé dans LDAP : [_1]', 
    4237         'Binding to LDAP server failed: [_1]' => 'Rattachement au serveur LDAP échoué: [_1]', 
    4238         'More than one user with the same name found on LDAP: [_1]' => 'Plus d\'un utilisateur avec le même nom trouvé dans LDAP: [_1]', 
    4239  
    4240 ## addons/Enterprise.pack/tmpl/dialog/select_groups.tmpl 
    4241         'You need to create some groups.' => 'Vous devez créer des groupes', 
    4242         'Before you can do this, you need to create some groups. <a href="javascript:void(0);" onclick="closeDialog(\'[_1]\');">Click here</a> to create a group.' => 'Avant de pouvoir faire ceci, vous devez créer des groupes. <a href="javascript:void(0);" onclick="closeDialog(\'[_1]\');">Cliquez ici</a> pour créer un groupe.', 
    4243  
    4244 ## addons/Enterprise.pack/tmpl/include/list_associations/page_title.group.tmpl 
    4245         'Users &amp; Groups for [_1]' => 'Utilisateurs &amp; groupes pour [_1]', 
    4246         'Group Associations for [_1]' => 'Associations de groupe pour [_1]', 
    4247  
    4248 ## addons/Enterprise.pack/tmpl/include/users_content_nav.tmpl 
    4249  
    4250 ## addons/Enterprise.pack/tmpl/include/group_table.tmpl 
    4251         'group' => 'groupe', 
    4252         'groups' => 'Groupes', 
    4253         'Enable selected group (e)' => 'Activer les groupes sélectionnés (e)', 
    4254         'Disable selected group (d)' => 'Désactiver les groupes sélectionnés (d)', 
    4255         'Remove selected group (d)' => 'Retirer les groupes sélectionnés (d)', 
    4256         'Only show enabled groups' => 'Afficher uniquement les groupes activés', 
    4257         'Only show disabled groups' => 'Afficher uniquement les groupes désactivés', 
    4258  
    4259 ## addons/Enterprise.pack/tmpl/list_group.tmpl 
    4260         '[_1]: User&rsquo;s Groups' => '[_1]: Groupes de l\'utilisateur', 
    4261         'Groups: System Wide' => 'Groupes: Sur tout le systÚme', 
    4262         'The user <em>[_1]</em> is currently disabled.' => 'L\'utilisateur <em>[_1]</em> est actuellement désactivé', 
    4263         'Synchronize groups now' => 'Synchroniser les groupes maintenant', 
    4264         'You have successfully disabled the selected group(s).' => 'Vous avez désactivé les groupes sélectionnés avec succÚs.', 
    4265         'You have successfully enabled the selected group(s).' => 'Vous avez activé les groupes sélectionnés avec succÚs.', 
    4266         'You have successfully deleted the groups from the Movable Type system.' => 'Vous avez supprimé les groupes du systÚme Movable Type avec succÚs.', 
    4267         'You have successfully synchronized groups\' information with the external directory.' => 'Vous avez synchronisé avec succÚs les informations des groupes avec le répertoire externe.', 
    4268         'You can not add disabled users to groups.' => 'Vous ne pouvez pas ajouter dans les groupes des utilisateurs désactivés.', 
    4269         'Add [_1] to another group' => 'Ajouter [_1] à un autre groupe', 
    4270         'Create Group' => 'Créer un groupe', 
    4271         'You did not select any [_1] to remove.' => 'Vous n\'avez sélectionné aucun [_1] à supprimer.', 
    4272         'Are you sure you want to remove this [_1]?' => 'Etes-vous sûr de vouloir supprimer ce [_1]?', 
    4273         'Are you sure you want to remove the [_1] selected [_2]?' => 'Etes-vous sûr de vouloir supprimer le [_1] sélectionné [_2]?', 
    4274         'to remove' => 'à supprimer', 
    4275  
    4276 ## addons/Enterprise.pack/tmpl/create_author_bulk_end.tmpl 
    4277         'All users updated successfully!' => 'Tous les utilisateurs ont été mis à jour avec succÚs!', 
    4278         'An error occurred during the updating process. Please check your CSV file.' => 'Une erreur s\'est produite pendant la mise à jour. Merci de vérifier votre fichier CSV.', 
    4279  
    4280 ## addons/Enterprise.pack/tmpl/list_group_member.tmpl 
    4281         '[_1]: Group Members' => '[_1]: Membres du groupe', 
    4282         '<em>[_1]</em>: Group Members' => '<em>[_1]</em>: Membres du groupe', 
    4283         'Group Disabled' => 'Groupe désactivé', 
    4284         'You have successfully deleted the users.' => 'Vous avez supprimé les utilisateurs avec succÚs.', 
    4285         'You have successfully added new users to this group.' => 'Vous avez ajouté les nouveaux utilisateurs dans ce groupe avec succÚs.', 
    4286         'You have successfully synchronized users\' information with external directory.' => 'Vous avez synchronisé avec succÚs les informations des utilisateurs avec l\'annuaire externe.', 
    4287         'Some ([_1]) of the selected users could not be re-enabled because they were no longer found in LDAP.' => 'Certains ([_1]) utilisateurs sélectionnés n\'ont pu être réactivés car ils ne sont plus dans LDAP.', 
    4288         'You have successfully removed the users from this group.' => 'Vous avez retirés avec succÚs les utilisateurs de ce groupe.', 
    4289         'member' => 'membre', 
    4290         'Show Enabled Members' => 'Afficher les membres actifs', 
    4291         'Show Disabled Members' => 'Afficher les membres désactivés', 
    4292         'Show All Members' => 'Afficher tous les membres', 
    4293         'You can not add users to a disabled group.' => 'Vous ne pouvez pas ajouter des utilisateurs à un groupe désactivé.', 
    4294         'Add user to [_1]' => 'Ajouter utilisateur à [_1]', 
    4295         'None.' => 'Aucun.', 
    4296         '(Showing all users.)' => '(Afficher tous les utilisateurs.)', 
    4297         'Showing only users whose [_1] is [_2].' => 'Afficher seulement les utilisateurs dont [_1] est [_2].', 
    4298         'all' => 'Toutes', 
    4299         'only' => 'seulement', 
    4300         'users where' => 'utilisateurs où', 
    4301         'No members in group' => 'Aucun membre dans ce groupe', 
    4302         'Only show enabled users' => 'Afficher seulement les utilisateurs actifs', 
    4303         'Only show disabled users' => 'Afficher seulement les utilisateurs désactivés.', 
    4304         'Are you sure you want to remove this [_1] from this group?' => 'Etes-vous sûr des vouloir supprimer ce [_1] de ce groupe?', 
    4305         'Are you sure you want to remove the [_1] selected [_2] from this group?' => 'Etes-vous sûr des vouloir supprimer le [_1] sélectionné [_2] de ce groupe?', 
    4306  
    4307 ## addons/Enterprise.pack/tmpl/author_bulk.tmpl 
    4308         'Manage Users in bulk' => 'Gérer les utilisateurs en masse', 
    4309         '_USAGE_AUTHORS_2' => 'Vous pouvez créer, modifier et effacer des utilisateurs en masse en chargeant un fichier CSV contenant ces commandes et les données associées.', 
    4310         'Upload source file' => 'Charger le fichier source', 
    4311         'Specify the CSV-formatted source file for upload' => 'Spécifier le fichier source CSV à charger', 
    4312         'Source File Encoding' => 'Encodage du fichier source', 
    4313         'Upload (u)' => 'Charger (u)', 
    4314  
    4315 ## addons/Enterprise.pack/tmpl/cfg_ldap.tmpl 
    4316         'Authentication Configuration' => 'Configuration de l\'identification', 
    4317         'You must set your Authentication URL.' => 'Vous devez configurer votre URL d\'identification.', 
    4318         'You must set your Group search base.' => 'Vous devez configurer votre base de recherche de groupes.', 
    4319         'You must set your UserID attribute.' => 'Vous devez configurer votre attribut UserID.', 
    4320         'You must set your email attribute.' => 'Vous devez configurer votre attribut email.', 
    4321         'You must set your user fullname attribute.' => 'Vous devez configurer votre attribut nom complet de l\'utilisateur.', 
    4322         'You must set your user member attribute.' => 'Vous devez configurer votre attribut de membre de l\'utilisateur.', 
    4323         'You must set your GroupID attribute.' => 'Vous devez configurer votre attribut GroupID.', 
    4324         'You must set your group name attribute.' => 'Vous devez configurer votre attribut nom de groupe.', 
    4325         'You must set your group fullname attribute.' => 'Vous devez configurer votre attribut nom complet du groupe.', 
    4326         'You must set your group member attribute.' => 'Vous devez configurer votre attribut member du groupe.', 
    4327         'You can configure your LDAP settings from here if you would like to use LDAP-based authentication.' => 'Vous devez configurer vos réglages LDAP ici si vous souhaitez utiliser l\'identification LDAP.', 
    4328         'Your configuration was successful.' => 'Votre configuration est correcte.', 
    4329         'Click \'Continue\' below to configure the External User Management settings.' => 'Cliquez sur \'Continuer\' ci-dessous pour configurer les réglages de la gestion externe des utilisateurs.', 
    4330         'Click \'Continue\' below to configure your LDAP attribute mappings.' => 'Cliquez sur \'Continuer\' ci-dessous pour configurer vos rattachements des attributs LDAP.', 
    4331         'Your LDAP configuration is complete.' => 'Votre configuration LDAP est terminée.', 
    4332         'To finish with the configuration wizard, press \'Continue\' below.' => 'Pour finir l\'assistant de configuration, cliquez sur \'Continuer\' ci-dessous.', 
    4333         'An error occurred while attempting to connect to the LDAP server: ' => 'Une erreur s\'est produite en essayant de se connecter au serveur LDAP:', 
    4334         'Use LDAP' => 'Utiliser LDAP', 
    4335         'Authentication URL' => 'URL d\'identification', 
    4336         'The URL to access for LDAP authentication.' => 'L\'URL pour accéder à l\'identification LDAP.', 
    4337         'Authentication DN' => 'Identificatiin DN', 
    4338         'An optional DN used to bind to the LDAP directory when searching for a user.' => 'Un DN optionnel utilisé pour rattacher à l\'annuaire LDAP lors d\'une recherche d\'utilisateur.', 
    4339         'Authentication password' => 'Mot de passe de l\'identification', 
    4340         'Used for setting the password of the LDAP DN.' => 'Utilisé pour régler le mot de passe du DN LDAP.', 
    4341         'SASL Mechanism' => 'Mécanisme SASL', 
    4342         'The name of SASL Mechanism to use for both binding and authentication.' => 'Nom du mécanisme SASL à utiliser pour le rattachement et l\'identification.', 
    4343         'Test Username' => 'Identifiant de test', 
    4344         'Test Password' => 'Mot de passe de test', 
    4345         'Enable External User Management' => 'Activer les gestion externe des utilisateurs', 
    4346         'Synchronization Frequency' => 'Fréquence de synchronisation', 
    4347         'Frequency of synchronization in minutes. (Default is 60 minutes)' => 'Fréquence de synchronisation en minutes. (60 minutes par défaut)', 
    4348         '15 Minutes' => '15 Minutes', 
    4349         '30 Minutes' => '30 Minutes', 
    4350         '60 Minutes' => '60 Minutes', 
    4351         '90 Minutes' => '90 Minutes', 
    4352         'Group search base attribute' => 'Attribut de base de recherche du groupe', 
    4353         'Group filter attribute' => 'Attribut de filtre du groupe', 
    4354         'Search Results (max 10 entries)' => 'Résultats de recherche (maxi 10 entrées)', 
    4355         'CN' => 'CN', 
    4356         'No groups were found with these settings.' => 'Aucun groupe n\'a été trouvé avec ces réglages.', 
    4357         'Attribute mapping' => 'Rattachement d\'attribut', 
    4358         'LDAP Server' => 'Serveur LDAP', 
    4359         'Other' => 'Autre', 
    4360         'User ID attribute' => 'Attribut ID utilisateur', 
    4361         'Email Attribute' => 'Attribut email', 
    4362         'User fullname attribute' => 'Attribut nom complet utilisateur', 
    4363         'User member attribute' => 'Attribut membre utilisateur', 
    4364         'GroupID attribute' => 'Attribut GroupID', 
    4365         'Group name attribute' => 'Attribut nom du groupe', 
    4366         'Group fullname attribute' => 'Attribut nom complet du groupe', 
    4367         'Group member attribute' => 'Attribut membre du groupe', 
    4368         'Search result (max 10 entries)' => 'Résultat de recherche (maxi 10 entrées)', 
    4369         'Group Fullname' => 'Nom complet du groupe', 
    4370         'Group Member' => 'Membre du groupe', 
    4371         'No groups could be found.' => 'Aucun groupe n\'a été trouvé.', 
    4372         'User Fullname' => 'Nom complet utilisateur', 
    4373         'No users could be found.' => 'Aucun utilisateur n\'a été trouvé.', 
    4374         'Test connection to LDAP' => 'Tester la connection à LDAP', 
    4375         'Test search' => 'Tester la recherche', 
    4376  
    4377 ## addons/Enterprise.pack/tmpl/create_author_bulk_start.tmpl 
    4378         'Bulk Author Import' => 'Importer les auteurs en masse', 
    4379         'Updating...' => 'Mise à jour...', 
    4380  
    4381 ## addons/Enterprise.pack/tmpl/edit_group.tmpl 
    4382         'Edit Group' => 'Modifier le groupe', 
    4383         'Group profile has been updated.' => 'Le profil du groupe a été modifié.', 
    4384         'LDAP Group ID' => 'Group ID LDAP', 
    4385         'The LDAP directory ID for this group.' => 'L\'ID de l\'annuaire LDAP pour ce groupe.', 
    4386         'Status of group in the system. Disabling a group removes its members&rsquo; access to the system but preserves their content and history.' => 'Statut du groupe dans le systÚme. Désactiver un groupe supprime l\'accÚs de ses membres au systÚme mais préserve leur contenu et historique.', 
    4387         'The name used for identifying this group.' => 'Le nom utilisé pour identifier ce groupe.', 
    4388         'The display name for this group.' => 'Le nom d\'affichage de ce groupe.', 
    4389         'Enter a description for your group.' => 'Saisir une description pour votre groupe.', 
    4390         'Created on' => 'Créé le', 
    4391         'Save changes to this field (s)' => 'Enregistrer les modifications de ce champs (s)', 
    4392  
    4393 ## addons/Enterprise.pack/app-wizard.yaml 
    4394         'This module is required in order to use the LDAP Authentication.' => 'Ce module est nécessaire pour utiliser l\'identification LDAP.', 
    4395         'This module is required in order to use SSL/TLS connection with the LDAP Authentication.' => 'Ce module est nécessaire pour utiliser les connections SSL/TLS avec l\'identification LDAP.', 
    4396  
    4397 ## addons/Enterprise.pack/app-cms.yaml 
    4398         'Are you sure you want to delete the selected group(s)?' => 'Etes-vous sûr de vouloir effacer les groupes sélectionnés?', 
    4399         'Bulk Author Export' => 'Export auteurs en masse', 
    4400         'Synchronize Users' => 'Synchroniser les utilisateurs', 
    4401  
    4402 ## addons/Enterprise.pack/config.yaml 
    4403         'Enterprise Pack' => 'Enterprise Pack', 
    4404         'Oracle Database' => 'Base de données Oracle', 
    4405         'Microsoft SQL Server Database' => 'Base de données Microsoft SQL Server', 
    4406         'Microsoft SQL Server Database (UTF-8 support)' => 'Base de données Microsoft SQL Server (support UTF-8)', 
    4407         'External Directory Synchronization' => 'Synchronization répertoire externe', 
    4408         'Populating author\'s external ID to have lower case user name...' => 'Création de l\'ID externe de l\'auteur pour avoir un identifiant en minuscules...', 
     3921        'Universal Website' => 'Site Universel', # Translate - New 
     3922        'Blog Index' => 'Index du Blog', # Translate - New 
     3923        'Blog Entry Listing' => 'Liste des Notes du Blog', # Translate - New 
    44093924 
    44103925## plugins/Cloner/cloner.pl 
     
    46844199## plugins/WidgetManager/default_widgets/archive_meta_widget.mtml 
    46854200        '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]', 
     4201        'Current Category Monthly Archives' => 'Archives Mensuelles de la Catégorie Courante', 
    46864202 
    46874203## plugins/WidgetManager/default_widgets/date_based_category_archives.mtml 
     
    46944210        'Current Author Monthly Archives' => 'Archives Mensuelles de l\'Auteur Courant', 
    46954211        'Calendar' => 'Calendrier', 
    4696         'Category Archives' => 'Archives par Catégories', 
    4697         'Current Category Monthly Archives' => 'Archives Mensuelles de la Catégorie Courante', 
    46984212        'Creative Commons' => 'Creative Commons', 
    46994213        'Home Page Widgets' => 'Widgets de Page d\'Accueil', 
    47004214        'Monthly Archives Dropdown' => 'Liste déroulante des Archives Mensuelles', 
    4701         'Recent Assets' => 'Éléments récents', 
     4215        'Page Listing' => 'Liste des Pages', # Translate - New 
    47024216        'Powered By' => 'Animé Par', 
    47034217        'Syndication' => 'Syndication', 
     
    47304244        'Drag and drop the widgets you want into the Installed column.' => 'Glissez-déposez les widgets que vous voulez dans la colonne de gauche.', 
    47314245        'Installed Widgets' => 'Widgets installés', 
    4732         'edit' => 'Editer', 
    47334246        'Available Widgets' => 'Widgets disponibles', 
    47344247        'Save changes to this widget set (s)' => 'Enregistrer les modifications de ce groupe de widgets', 
     
    47514264        'Widgets' => 'Widgets', 
    47524265 
     4266## plugins/CustomFields/customfields.pl 
     4267        'Moving Custom Fields storage...' => 'Déplacement de l\'emplacement des champs personnalisés...', # Translate - New 
     4268        'Moving metadata storage for [lc,_1]...' => 'Déplacement de l\'emplacement des métadonnées pour les [lc,_1]...', # Translate - New 
     4269        'Moving metadata storage for users...' => 'Déplacement de l\'emplacement des métadonnées pour les utilisateurs...', # Translate - New 
     4270        'Moving metadata storage for entries...' => 'Déplacement de l\'emplacement des métadonnées pour les entrées...', # Translate - New 
     4271 
     4272## plugins/feeds-app-lite/lib/MT/Feeds/Lite.pm 
     4273        'An error occurred processing [_1]. The previous version of the feed was used. A HTTP status of [_2] was returned.' => 'Une erreur s\'est produite en traitant [_1]. La version précédente du flux a été utilisée. Un statut HTTP de [_2] a été retourné.', 
     4274        'An error occurred processing [_1]. A previous version of the feed was not available.A HTTP status of [_2] was returned.' => 'Une erreur s\'est produite en traitant [_1]. Une version précédente du flux n\'est pas disponible. Un statut HTTP de [_2] a été renvoyé.', 
     4275 
     4276## plugins/feeds-app-lite/lib/MT/Feeds/Tags.pm 
     4277        '\'[_1]\' is a required argument of [_2]' => '\'[_1]\' est un argument nécessaire de [_2]', 
     4278        'MT[_1] was not used in the proper context.' => 'Le [_1] MT n\'a pas été utilisé dans le bon contexte.', 
     4279 
     4280## plugins/feeds-app-lite/tmpl/config.tmpl 
     4281        'Feeds.App Lite Widget Creator' => 'Créateur de widget de flux', 
     4282        'Configure feed widget settings' => 'Configurer les paramÚtres du widget de flux', 
     4283        'Enter a title for your widget.  This will also be displayed as the title of the feed when used on your published blog.' => 'Saisissez un titre pour votre widget. Il sera aussi utilisé comme titre pour le flux qui sera utilisé sur votre blog.', 
     4284        '[_1] Feed Widget' => 'Widget de flux [_1]', 
     4285        'Select the maximum number of entries to display.' => 'Sélectionnez le nombre maximum de notes que vous voulez afficher.', 
     4286        '3' => '3', 
     4287        '5' => '5', 
     4288        '10' => '10', 
     4289        'All' => 'Toutes', 
     4290 
     4291## plugins/feeds-app-lite/tmpl/msg.tmpl 
     4292        'No feeds could be discovered using [_1]' => 'Aucun flux n\'a pu être trouvé en utilisant [_1]', 
     4293        'An error occurred processing [_1]. Check <a href="javascript:void(0)" onclick="closeDialog(\'http://www.feedvalidator.org/check.cgi?url=[_2]\')">here</a> for more detail and please try again.' => 'Une erreur s\'est produite en traitant [_1]. Vérifiez <a href="javascript:void(0)" onclick="closeDialog(\'http://www.feedvalidator.org/check.cgi?url=[_2]\')">ici</a> pour plus de détails et essayez à nouveau.', 
     4294        'A widget named <strong>[_1]</strong> has been created.' => 'Un widget nommé <strong>[_1]</strong> a été créé.', 
     4295        'You may now <a href="javascript:void(0)" onclick="closeDialog(\'[_2]\')">edit &ldquo;[_1]&rdquo;</a> or include the widget in your blog using <a href="javascript:void(0)" onclick="closeDialog(\'[_3]\')">WidgetManager</a> or the following MTInclude tag:' => 'Vous pouvez maintenant <a href="javascript:void(0)" onclick="closeDialog(\'[_2]\')">modifier &ldquo;[_1]&rdquo;</a> ou inclure le widget dans votre blog en utilisant <a href="javascript:void(0)" onclick="closeDialog(\'[_3]\')">WidgetManager</a> ou la balise MTInclude suivante :', 
     4296        'You may now <a href="javascript:void(0)" onclick="closeDialog(\'[_2]\')">edit &ldquo;[_1]&rdquo;</a> or include the widget in your blog using the following MTInclude tag:' => 'Vous pouvez maintenant <a href="javascript:void(0)" onclick="closeDialog(\'[_2]\')">modifier &ldquo;[_1]&rdquo;</a> ou inclure le widget dans votre blog en utilisant la balise  MTInclude suivante :', 
     4297        'Create Another' => 'En créer un autre', 
     4298 
     4299## plugins/feeds-app-lite/tmpl/start.tmpl 
     4300        'You must enter a feed or site URL to proceed' => 'Vous devez saisir l\'URL d\'un flux ou d\'un site pour poursuivre', 
     4301        'Create a widget from a feed' => 'Créer un widget à partir d\'un flux', 
     4302        'Feed or Site URL' => 'URL du site ou du flux', 
     4303        'Enter the URL of a feed, or the URL of a site that has a feed.' => 'Saisissez l\'adresse d\'un flux ou l\'adresse d\'un site possédant un flux.', 
     4304 
     4305## plugins/feeds-app-lite/tmpl/select.tmpl 
     4306        'Multiple feeds were found' => 'Plusieurs flux ont été trouvés', 
     4307        'Select the feed you wish to use. <em>Feeds.App Lite supports text-only RSS 1.0, 2.0 and Atom feeds.</em>' => 'Sélectionnez le flux que vous voulez utiliser. <em>Feeds.App Lite supporte les flux texte uniquement en RSS 1.0, 2.0 et Atom.</em>', 
     4308        'URI' => 'URI', 
     4309 
     4310## plugins/feeds-app-lite/mt-feeds.pl 
     4311        'Feeds.App Lite helps you republish feeds on your blogs. Want to do more with feeds in Movable Type?' => 'Feeds.App Lite vous permet de republier des flux sur vos blogs. Vous voulez en faire plus avec les flux de Movable Type?', 
     4312        'Upgrade to Feeds.App' => 'Mise à jour Feeds.App', 
     4313        'Create a Feed Widget' => 'Créer un widget à partir d\'un flux', 
     4314 
    47534315); 
    47544316 
    4755 ## New words: 91 
     4317## New words: 193 
    47564318 
    475743191; 
  • branches/release-29/lib/MT/L10N/ja.pm

    r1263 r1308  
    289289## default_templates/footer.mtml 
    290290        'Sidebar' => 'サむドバヌ', 
    291         '_POWERED_BY' => 'Powered by<br /><a href="http://www.sixapart.jp/movabletype/"><$MTProductName$></a>', 
     291        '_POWERED_BY' => 'Powered by <a href="http://www.sixapart.jp/movabletype/"><$MTProductName$></a>', 
    292292        'This blog is licensed under a <a href="[_1]">Creative Commons License</a>.' => 'このブログは<a href="[_1]">クリ゚むティブ・コモンズ</a>でラむセンスされおいたす。', 
    293293 
     
    301301§ã—おいるブログ䞀èЧ: <a href="[_1]">[_2]</a>', 
    302302        'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'このブログ蚘事に察するトラックバックURL: <span id="trackbacks-link">[_1]</span>', 
    303         '&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a>([_3])~のトラックバック', 
     303        '<a href="[_1]">[_2]</a> from [_3] on <a href="[_4]">[_5]</a>' => '[_3] - <a href="[_1]">[_2]</a> (<a href="[_4]">[_5]</a>)', # Translate - New 
    304304        '[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">続きを読む</a>', 
    305         'Tracked on <a href="[_1]">[_2]</a>' => '<a href="[_1]">[_2]</a>', 
    306305 
    307306## default_templates/entry_detail.mtml 
     
    338337 
    339338## default_templates/entry_metadata.mtml 
    340         'By [_1] on [_2]' => '[_2] [_1]', 
     339        'By [_1] on [_2]' => '[_1] ([_2])', 
    341340        'Permalink' => '個別ペヌゞ', 
    342341        'Comments ([_1])' => 'コメント([_1])', 
     
    448447        'Sign in' => 'サむンむン', 
    449448        ' to comment on this entry.' => 'しおからコメントしおください。', 
    450         ' to comment on this entry,' => 'しおからコメントしおください。', 
     449        ' to comment on this entry,' => 'しおください。', 
    451450        'or ' => '', # Translate - New 
    452         'comment anonymously.' => '匿名でコメントするこずもできたす。', 
     451        'comment anonymously.' => '(匿名でコメントする)', 
    453452 
    454453## default_templates/dynamic_error.mtml 
     
    456455 
    457456## default_templates/comment_detail.mtml 
    458         '[_1] [_2] said:' => '[_1] [_2]:', 
    459         '<a href="[_1]" title="Permalink to this comment">[_2]</a>' => '<a href="[_1]" title="コメントのURL">[_2]</a>', 
     457        'default userpic' => '既定のナヌザヌ画像', # Translate - New 
    460458 
    461459## lib/MT.pm 
     
    13451343        'You can\'t reply to unpublished comment.' => 'å 
    13461344¬é–‹ã•れおいないコメントには返信できたせん。', 
    1347         ' (Backup from [_1])' => '[_1]時点でのバックアップ', # Translate - New 
     1345        ' (Backup from [_1])' => ' - バックアップ ([_1])', 
    13481346        'Error creating new template: ' => 'テンプレヌトの䜜成゚ラヌ:', 
    13491347        'Skipping template \'[_1]\' since it appears to be a custom template.' => 'カスタムテンプレヌトず思われるため、\'[_1]\'をスキップしたす。', 
     
    20472045        'Moving OpenID usernames to external_id fields...' => '既存のOpenIDナヌザヌ名を移動しおいたす...', 
    20482046        'Assigning blog template set...' => 'ブログにテンプレヌトセットを蚭定しおいたす...', 
    2049         'Assigning blog page layout...' => 'ブログにペヌゞレむアりトを蚭定しおいたす...', # Translate - New 
     2047        'Assigning blog page layout...' => 'ブログにペヌゞレむアりトを蚭定しおいたす...', 
    20502048 
    20512049## lib/MT/XMLRPCServer.pm 
     
    24862484        'Save this entry' => 'ブログ蚘事を保存', 
    24872485        'Save this entry (s)' => 'ブログ蚘事を保存する (s)', 
    2488         'Re-Edit this entry' => 'ブログ蚘事を再線集', # Translate - New 
    2489         'Re-Edit this entry (e)' => 'ブログ蚘事を再線集する (e)', # Translate - New 
     2486        'Re-Edit this entry' => 'ブログ蚘事を再線集', 
     2487        'Re-Edit this entry (e)' => 'ブログ蚘事を再線集する (e)', 
    24902488        'Save this page' => 'りェブペヌゞを保存', 
    24912489        'Save this page (s)' => 'りェブペヌゞを保存する (s)', 
    2492         'Re-Edit this page' => 'りェブペヌゞを再線集', # Translate - New 
    2493         'Re-Edit this page (e)' => 'りェブペヌゞを再線集する', # Translate - New 
     2490        'Re-Edit this page' => 'りェブペヌゞを再線集', 
     2491        'Re-Edit this page (e)' => 'りェブペヌゞを再線集する', 
    24942492        'You are previewing the entry titled &ldquo;[_1]&rdquo;' => 'ブログ蚘事 &ldquo;[_1]&rdquo;のプレビュヌ', 
    24952493        'You are previewing the page titled &ldquo;[_1]&rdquo;' => 'りェブペヌゞ &ldquo;[_1]&rdquo;のプレビュヌ', 
     
    28392837        'View entry' => 'ブログ蚘事を芋る', 
    28402838        'View page' => 'りェブペヌゞを衚瀺', 
    2841         'No entries could be found. <a href="[_1]">Create an entry</a> now.' => 'ブログ蚘事が芋぀かりたせんでした。<a href="[_1]">ブログ蚘事の䜜成</a>', # Translate - New 
    2842         'No page could be found. <a href="[_1]">Create a page</a> now.' => 'りェブペヌゞが芋぀かりたせんでした。<a href="[_1]">りェブペヌゞの䜜成</a>', # Translate - New 
     2839        'No entries could be found. <a href="[_1]">Create an entry</a> now.' => 'ブログ蚘事が芋぀かりたせんでした。<a href="[_1]">ブログ蚘事の䜜成</a>', 
     2840        'No page could be found. <a href="[_1]">Create a page</a> now.' => 'りェブペヌゞが芋぀かりたせんでした。<a href="[_1]">りェブペヌゞの䜜成</a>', 
    28432841 
    28442842## tmpl/cms/include/archive_maps.tmpl 
     
    30723070## tmpl/cms/list_blog.tmpl 
    30733071        'You have successfully deleted the blogs from the Movable Type system.' => 'システムからブログを削陀したした。', 
     3072        'You have successfully refreshed your templates.' => 'テンプレヌトの初期化を完了したした。', 
    30743073        'Create Blog' => 'ブログを䜜成する', 
    3075         'Are you sure you want to delete this blog?' => 'このブログを削陀しおよろしいですか', 
    30763074 
    30773075## tmpl/cms/edit_commenter.tmpl 
     
    32013199        'All Templates' => 'すべおのテンプレヌト', 
    32023200        'You have successfully deleted the checked template(s).' => '遞択したテンプレヌトを削陀したした。', 
    3203         'You have successfully refreshed your templates.' => 'テンプレヌトの初期化を完了したした。', 
    32043201        'Your templates have been published.' => 'テンプレヌトを再構築したした。', 
    32053202        'Create Archive Template:' => 'アヌカむブテンプレヌトを䜜成:', 
     
    32113208        'Transfer weblog entries into Movable Type from other Movable Type installations or even other blogging tools or export your entries to create a backup or copy.' => '他のMovable Typeやブログツヌルからブログ蚘事を移行したり、ブログ蚘事のコピヌを䜜成したす。', 
    32123209        'Import data into' => 'むンポヌトå 
    3213 ˆ', # Translate - New 
     3210ˆ', 
    32143211        'Select a blog to import.' => 'むンポヌトå 
    32153212ˆã®ãƒ–ログを遞択しおください。', 
     
    32823279        'You have successfully deleted the checked comment(s).' => '遞択したコメントを削陀したした。', 
    32833280        'You have successfully deleted the checked TrackBack(s).' => '遞択したトラックバックを削陀したした。', 
    3284         'Change Folder' => 'フォルダの倉曎', # Translate - New 
     3281        'Change Folder' => 'フォルダの倉曎', 
    32853282        'Stats' => '惠
    32863283å ±', 
     
    33063303        'Warning: Changing this entry\'s basename may break inbound links.' => '譊告: このブログ蚘事の出力ファむル名の倉曎は、冠
    33073304郚のリンク切れの原因ずなりたす。', 
    3308         'edit' => '線集', # Translate - Case 
    3309         'close' => '閉じる', # Translate - Case 
     3305        'edit' => '線集', 
     3306        'close' => '閉じる', 
    33103307        'Accept' => '受信蚭定', 
    33113308        'Outbound TrackBack URLs' => 'トラックバック送信å 
     
    39663963        'Collapse' => '折りたたむ', 
    39673964        'Expand' => '展開する', 
    3968         'Create Subcategory' => 'サブカテゎリの䜜成', # Translate - New 
     3965        'Create Subcategory' => 'サブカテゎリの䜜成', 
    39693966        'Move Category' => 'カテゎリの移動', 
    39703967        '[quant,_1,TrackBack,TrackBacks]' => '[quant,_1,トラックバック,トラックバック]', 
     
    44004397        'Updates current templates while retaining any user-created or user-modified templates.' => 'テンプレヌトを初期化したす。ナヌザヌが䜜成たたはカスタマむズしたテンプレヌトは初期化したせん。', 
    44014398        'Apply a new template set' => '新しいテンプレヌトセットを適甚', 
    4402         'Deletes all existing templates and install the selected template set.' => '既存のテンプレヌトをすべお削陀しお、遞択された新しいテンプレヌトセットを適甚したす。', # Translate - New 
    4403         'Reset to factory defaults' => 'リセットしお初期状æ 
    4404 ‹ã«æˆ»ã—たす。', # Translate - New 
     4399        'Deletes all existing templates and install the selected template set.' => '既存のテンプレヌトをすべお削陀しお、遞択された新しいテンプレヌトセットを適甚したす。', 
     4400        'Reset to factory defaults' => '初期状æ 
     4401‹ã«ãƒªã‚»ãƒƒãƒˆ', 
    44054402        'Deletes all existing templates and installs factory default template set.' => '既存のテンプレヌトをすべお削陀しお、補品既定のテンプレヌトセットをむンストヌルしたす。', 
    44064403        'Make backups of existing templates first' => '既存のテンプレヌトのバックアップを䜜成する', 
  • branches/release-29/lib/MT/L10N/nl.pm

    <
    r1247 r1308  
    22# permission from www.sixapart.com. 
    33# 
    4 # $Id:$ 
     4# $Id$ 
    55 
    66package MT::L10N::nl; 
     
    150150 
    151151## default_templates/comment_detail.mtml 
    152         '[_1] [_2] said:' => '[_1] [_2] zei:', 
    153         '<a href="[_1]" title="Permalink to this comment">[_2]</a>' => '<a href="[_1]" title="Permalink naar deze reactie">[_2]</a>', 
     152        'default userpic' => 'standaardfoto gebruiker', 
     153        'By [_1] on [_2]' => 'Door [_1] op [_2]', 
    154154 
    155155## default_templates/comment_form.mtml 
     
    194194 
    195195## default_templates/entry_metadata.mtml 
    196         'By [_1] on [_2]' => 'Door [_1] op [_2]', 
    197196        'Permalink' => 'Permalink', 
    198197        'Comments ([_1])' => 'Reacties ([_1])', 
     
    231230        'Listed below are links to blogs that reference this entry: <a href="[_1]">[_2]</a>.' => 'Hieronder ziet u links naar blogs die verwijzen naar het bericht: <a href="[_1]">[_2]</a>.', 
    232231        'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'TrackBack URL voor dit bericht: <span id="trackbacks-link">[_1]</span>', 
    233         '&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a> van [_3]', 
     232        '<a href="[_1]">[_2]</a> from [_3] on <a href="[_4]">[_5]</a>' => '<a href="[_1]">[_2]</a> van [_3] op <a href="[_4]">[_5]</a>', 
    234233        '[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">Meer lezen</a>', 
    235         'Tracked on <a href="[_1]">[_2]</a>' => 'Getracked op <a href="[_1]">[_2]</a>', 
    236234 
    237235## default_templates/sidebar.mtml 
     
    683681        'User' => 'Gebruiker', 
    684682        'Invalid type' => 'Ongeldig type', 
     683        'Entries' => 'Berichten', 
    685684        'New name of the tag must be specified.' => 'Nieuwe naam van de tag moet opgegeven worden', 
    686685        'No such tag' => 'Onbekende tag', 
     
    697696        'Blog Activity Feed' => 'Blogactiviteitsfeed', 
    698697        '*User deleted*' => '*Gebruiker verwijderd*', 
     698        '<a href="[_1]">QuickPost to [_2]</a> - Drag this link to your browser\'s toolbar then click it when you are on a site you want to blog about.' => '<a href="[_1]">QuickPost op [_2]</a> - Sleep deze link naar de gereedschapsbalk van uw browser en klik er vervolgens op wanneer u op een site bent waar u over wenst te bloggen.', 
    699699        'All Feedback' => 'Alle feedback', 
    700700        'Publishing' => 'Publicatie', 
     
    711711        'Load failed: [_1]' => 'Laden mislukt: [_1]', 
    712712        '(no reason given)' => '(geen reden vermeld)', 
    713         'Entries' => 'Berichten', 
    714713        'Pages' => 'Pagina\'s', 
    715714        '(untitled)' => '(geen titel)', 
     
    988987        'You can\'t reply to unapproved comment.' => 'U kunt niet antwoorden op een niet-gekeurde reactie.', 
    989988        'You can\'t reply to unpublished comment.' => 'U kunt niet reageren op een niet gepubliceerde reactie.', 
    990         ' (Backup from [_1])' => ' (Backup van [_1])', # Translate - New 
     989        ' (Backup from [_1])' => ' (Backup van [_1])', 
    991990        'Error creating new template: ' => 'Fout bij aanmaken nieuw sjabloon: ', 
    992991        'Skipping template \'[_1]\' since it appears to be a custom template.' => 'Sjabloon \'[_1]\' wordt overgeslagen, omdat het blijkbaar een gepersonaliseerd sjabloon is.', 
     
    12331232        'Moving OpenID usernames to external_id fields...' => 'OpenID gebruikersnamen aan het verplaatsen naar external_id velden...', 
    12341233        'Assigning blog template set...' => 'Blog sjabloonset aan het toekennen...', 
    1235         'Assigning blog page layout...' => 'Blog pagina layout aan het toekennen...', # Translate - New 
     1234        'Assigning blog page layout...' => 'Blog pagina layout aan het toekennen...', 
    12361235 
    12371236## lib/MT/Core.pm 
     
    16921691        'Plugin error: [_1] [_2]' => 'Plugin fout: [_1] [_2]', 
    16931692        'Loading template \'[_1]\' failed.' => 'Laden van sjabloon \'[_1]\' mislukt.', 
    1694         '__PORTAL_URL__' => '', # Translate - New 
     1693        '__PORTAL_URL__' => 'http://www.movabletype.org', 
    16951694        'http://www.movabletype.org/documentation/' => 'http://www.movabletype.org/documentation/', 
    16961695        'OpenID' => 'OpenID', 
     
    20892088        'View entry' => 'Bericht bekijken', 
    20902089        'View page' => 'Pagina bekijken', 
    2091         'No entries could be found. <a href="[_1]">Create an entry</a> now.' => 'Er werden geen berichten gevonden. Nu <a href="[_1]">een bericht aanmaken</a>.', # Translate - New 
    2092         'No page could be found. <a href="[_1]">Create a page</a> now.' => 'Er werden geen pagina\'s gevonden. Nu <a href="[_1]">een pagina aanmaken</a>.', # Translate - New 
     2090        'No entries could be found. <a href="[_1]">Create an entry</a> now.' => 'Er werden geen berichten gevonden. Nu <a href="[_1]">een bericht aanmaken</a>.', 
     2091        'No page could be found. <a href="[_1]">Create a page</a> now.' => 'Er werden geen pagina\'s gevonden. Nu <a href="[_1]">een pagina aanmaken</a>.', 
    20932092 
    20942093## tmpl/cms/include/login_mt.tmpl 
     
    23152314        'Updates current templates while retaining any user-created or user-modified templates.' => 'Werkt huidige sjablonen bij behalve die door gebruiker(s) zijn aangemaakt of aangepast.', 
    23162315        'Apply a new template set' => 'Nieuwe sjabloonset toepassen', 
     2316        'Deletes all existing templates and install the selected template set.' => 'Verwijdert alle bestaande sjablonen en installeert de geselecteerde set sjablonen.', 
     2317        'Reset to factory defaults' => 'Terug naar fabrieksinstellingen', 
    23172318        'Deletes all existing templates and installs factory default template set.' => 'Verwijdert alle bestaande sjablonen en installeert de standaard sjabloonset uit de \'fabrieksinstellingen\'.', 
    23182319        'Make backups of existing templates first' => 'Eerst backups nemen van bestaande sjablonen', 
     
    25762577## tmpl/cms/list_blog.tmpl 
    25772578        'You have successfully deleted the blogs from the Movable Type system.' => 'U heeft met succes de blogs verwijderd uit het Movable Type systeem.', 
     2579        'You have successfully refreshed your templates.' => 'U heeft met succes uw sjablonen ververst.', 
    25782580        'Create Blog' => 'Blog aanmaken', 
    2579         'Are you sure you want to delete this blog?' => 'Bent u zeker dat u deze weblog wenst te verwijderen?', 
    25802581 
    25812582## tmpl/cms/edit_template.tmpl 
     
    27902791        'Preview this page (v)' => 'Voorbeeld pagina bekijken (v)', 
    27912792        'Delete this page (x)' => 'Pagina verwijderen (x)', 
    2792         'View Page' => 'Pagina bekijken', # Translate - Case 
     2793        'View Page' => 'Pagina bekijken', 
    27932794        'Add category' => 'Categorie toevoegen', 
    27942795        'Add category name' => 'Categorienaam toevoegen', 
     
    27982799        'Delete this entry (x)' => 'Bericht verwijderen (x)', 
    27992800        'View Entry' => 'Bericht bekijken', 
    2800         'A saved version of this entry was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Een veiligheidskopie van dit bericht werd automatisch opgeslagen [_2]. <a href="[_1]">Automatisch opgeslagen inhoud terughalen</a>', # Translate - New 
    2801         'A saved version of this page was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Een veiligheidskopie van deze pagina werd automatisch opgeslagen [_2]. <a href="[_1]">Automatisch opgeslagen inhoud terughalen</a>', # Translate - New 
    2802         'This entry has been saved.' => 'Dit bericht werd opgeslagen', # Translate - New 
    2803         'This page has been saved.' => 'Deze pagina werd opgeslagen', # Translate - New 
     2801        'A saved version of this entry was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Een veiligheidskopie van dit bericht werd automatisch opgeslagen [_2]. <a href="[_1]">Automatisch opgeslagen inhoud terughalen</a>', 
     2802        'A saved version of this page was auto-saved [_2]. <a href="[_1]">Recover auto-saved content</a>' => 'Een veiligheidskopie van deze pagina werd automatisch opgeslagen [_2]. <a href="[_1]">Automatisch opgeslagen inhoud terughalen</a>', 
     2803        'This entry has been saved.' => 'Dit bericht werd opgeslagen', 
     2804        'This page has been saved.' => 'Deze pagina werd opgeslagen', 
    28042805        'One or more errors occurred when sending update pings or TrackBacks.' => 'Eén of meer problemen deden zich voor bij het versturen van update pings of TrackBacks.', 
    28052806        '_USAGE_VIEW_LOG' => 'Controleer het <a href=\"[_1]\">Activiteitenlog</a> op deze fout.', 
     
    28072808        'Your changes to the comment have been saved.' => 'Uw wijzigingen aan de reactie zijn opgeslagen.', 
    28082809        'Your notification has been sent.' => 'Uw notificatie is verzonden.', 
    2809         'You have successfully recovered your saved entry.' => 'Veiligheidskopie van opgeslagen bericht met succes teruggehaald.', # Translate - New 
    2810         'You have successfully recovered your saved page.' => 'Veiligheidskopie van opgeslagen pagina met succes teruggehaald.', # Translate - New 
    2811         'An error occurred while trying to recover your saved entry.' => 'Er deed zich een fout voor bij het terughalen van uw opgeslagen bericht.', # Translate - New 
    2812         'An error occurred while trying to recover your saved page.' => 'Er deed zich een fout voor bij het terughalen van uw opgeslagen pagina.', # Translate - New 
     2810        'You have successfully recovered your saved entry.' => 'Veiligheidskopie van opgeslagen bericht met succes teruggehaald.', 
     2811        'You have successfully recovered your saved page.' => 'Veiligheidskopie van opgeslagen pagina met succes teruggehaald.', 
     2812        'An error occurred while trying to recover your saved entry.' => 'Er deed zich een fout voor bij het terughalen van uw opgeslagen bericht.', 
     2813        'An error occurred while trying to recover your saved page.' => 'Er deed zich een fout voor bij het terughalen van uw opgeslagen pagina.', 
    28132814        'You have successfully deleted the checked comment(s).' => 'Verwijdering van de geselecteerde reactie(s) is geslaagd.', 
    28142815        'You have successfully deleted the checked TrackBack(s).' => 'U heeft de geselecteerde TrackBack(s) met succes verwijderd.', 
    2815         'Change Folder' => 'Map wijzigen', # Translate - New 
    2816         'Stats' => 'Statistieken', # Translate - New 
    2817         'Share' => 'Delen', # Translate - New 
    2818         '<a href="[_2]">[quant,_1,comment,comments]</a>' => '<a href="[_2]">[quant,_1,reactie,reacties]</a>', # Translate - New 
    2819         '<a href="[_2]">[quant,_1,trackback,trackbacks]</a>' => '<a href="[_2]">[quant,_1,trackback,trackbacks]</a>', # Translate - New 
     2816        'Change Folder' => 'Map wijzigen', 
     2817        'Stats' => 'Statistieken', 
     2818        'Share' => 'Delen', 
     2819        '<a href="[_2]">[quant,_1,comment,comments]</a>' => '<a href="[_2]">[quant,_1,reactie,reacties]</a>', 
     2820        '<a href="[_2]">[quant,_1,trackback,trackbacks]</a>' => '<a href="[_2]">[quant,_1,trackback,trackbacks]</a>', 
    28202821        'Unpublished' => 'Ongepubliceerd', 
    2821         'You must configure this blog before you can publish this entry.' => 'U moet deze weblog configureren voor u dit bericht kunt publiceren.', # Translate - New 
    2822         'You must configure this blog before you can publish this page.' => 'U moet deze weblog configureren voor u deze pagina kunt publiceren.', # Translate - New 
    2823         '[_1] - Created by [_2]' => '[_1] - aangemaakt door [_2]', # Translate - New 
    2824         '[_1] - Published by [_2]' => '[_1] - gepubliceerd door [_2]', # Translate - New 
    2825         '[_1] - Edited by [_2]' => '[_1] - bewerkt door [_2]', # Translate - New 
     2822        'You must configure this blog before you can publish this entry.' => 'U moet deze weblog configureren voor u dit bericht kunt publiceren.', 
     2823        'You must configure this blog before you can publish this page.' => 'U moet deze weblog configureren voor u deze pagina kunt publiceren.', 
     2824        '[_1] - Created by [_2]' => '[_1] - aangemaakt door [_2]', 
     2825        '[_1] - Published by [_2]' => '[_1] - gepubliceerd door [_2]', 
     2826        '[_1] - Edited by [_2]' => '[_1] - bewerkt door [_2]', 
    28262827        'Publish On' => 'Publiceren op', 
    28272828        'Publish Date' => 'Datum publicatie', 
     
    28352836        'Outbound TrackBack URLs' => 'Uitgaande TrackBack URLs', 
    28362837        'View Previously Sent TrackBacks' => 'Eerder verzonden TrackBacks bekijken', 
    2837         'You have unsaved changes to this entry that will be lost.' => 'U heeft niet opgeslagen wijzigingen aan dit bericht die verloren zullen gaan.', # Translate - New 
    2838         'You have unsaved changes to this page that will be lost.' => 'U heeft niet opgeslagen wijzigingen aan deze pagina die verloren zullen gaan.', # Translate - New 
     2838        'You have unsaved changes to this entry that will be lost.' => 'U heeft niet opgeslagen wijzigingen aan dit bericht die verloren zullen gaan.', 
     2839        'You have unsaved changes to this page that will be lost.' => 'U heeft niet opgeslagen wijzigingen aan deze pagina die verloren zullen gaan.', 
    28392840        'Enter the link address:' => 'Vul het adres van de link in:', 
    28402841        'Enter the text to link to:' => 'Vul de tekst van de link in:', 
     
    28552856        '(space-delimited list)' => '(lijst gescheiden met spaties)', 
    28562857        '(delimited by \'[_1]\')' => '(gescheiden door \'[_1]\')', 
    2857         '<a href="<mt:var name="quickpost_js" escape="html">' => '<a href="<mt:var name="quickpost_js" escape="html">', # Translate - New 
    28582858        'None selected' => 'Geen geselecteerd', 
    28592859 
     
    29302930 
    29312931## tmpl/cms/refresh_results.tmpl 
    2932         'Template Refresh' => 'Sjabloonverversing', # Translate - New 
     2932        'Template Refresh' => 'Sjabloonverversing', 
    29332933        'No templates were selected to process.' => 'Er werden geen sjablonen geselecteerd om te bewerken.', 
    29342934        'Return to templates' => 'Terugkeren naar sjablonen', 
     
    29532953        'Your folder changes have been made.' => 'De wijzigingen aan de map zijn uitgevoerd.', 
    29542954        'You must specify a label for the folder.' => 'U moet een naam opgeven voor de map', 
    2955         'Save changes to this folder (s)' => 'Wijzigingen aan deze map opslaan (s)', # Translate - New 
     2955        'Save changes to this folder (s)' => 'Wijzigingen aan deze map opslaan (s)', 
    29562956 
    29572957## tmpl/cms/list_notification.tmpl 
     
    29932993        'Trackback URLs' => 'TrackBack URL\'s', 
    29942994        'Enter the URL(s) of the websites that you would like to send a TrackBack to each time you create an entry in this category. (Separate URLs with a carriage return.)' => 'Vul de URL(s) in van de websites waar u een TrackBack naartoe wenst te sturen elke keer u een bericht aanmaakt in deze categorie.  (Splits URL\'s van elkaar met een carriage return.)', 
    2995         'Save changes to this category (s)' => 'Wijzigingen aan deze categorie opslaan (s)', # Translate - New 
     2995        'Save changes to this category (s)' => 'Wijzigingen aan deze categorie opslaan (s)', 
    29962996 
    29972997## tmpl/cms/list_banlist.tmpl 
     
    30133013        'The selected TrackBack(s) has been deleted from the database.' => 'De geselecteerde TrackBack(s) zijn uit de database verwijderd.', 
    30143014        'No TrackBacks appeared to be spam.' => 'Geen enkele TrackBack leek spam te zijn.', 
    3015         'Show only [_1] where' => 'Enkel [_1] tonen waar', # Translate - New 
     3015        'Show only [_1] where' => 'Enkel [_1] tonen waar', 
    30163016        'approved' => 'goedgekeurd', 
    30173017        'unapproved' => 'niet goedgekeurd', 
     
    30683068        'Blog Templates' => 'Blogsjablonen', 
    30693069        'Blog Publishing Settings' => 'Blogpublicatie-instellingen', 
    3070         'All Templates' => 'Alle sjablonen', # Translate - New 
     3070        'All Templates' => 'Alle sjablonen', 
    30713071        'You have successfully deleted the checked template(s).' => 'Verwijdering van geselecteerde sjabloon/sjablonen is geslaagd.', 
    3072         'You have successfully refreshed your templates.' => 'U heeft met succes uw sjablonen ververst.', # Translate - New 
    3073         'Your templates have been published.' => 'Uw sjablonen werden gepubliceerd.', # Translate - New 
     3072        'Your templates have been published.' => 'Uw sjablonen werden gepubliceerd.', 
    30743073        'Create Archive Template:' => 'Archiefsjabloon aanmaken:', 
    30753074        'Create [_1] template' => 'Nieuw [_1] sjabloon aanmaken', 
     
    30863085        'Rename' => 'Naam wijzigen', 
    30873086        'Show all [_1] with this tag' => 'Alle [_1] tonen met deze tag', 
    3088         '[quant,_1,_2,_3]' => '[quant,_1,_2,_3]', # Translate - New 
     3087        '[quant,_1,_2,_3]' => '[quant,_1,_2,_3]', 
    30893088        '[quant,_1,entry,entries]' => '[quant,_1,bericht,berichten]', 
    30903089        'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\' across all blogs?' => 'De tag \'[_2]\' bestaat al.  Zeker dat u \'[_1]\' en \'[_2]\' wenst samen te voegen over alle blogs?', 
     
    31363135        'Your Web services password is currently' => 'Uw huidig webservices wachtwoord is', 
    31373136        '_WARNING_PASSWORD_RESET_SINGLE' => 'U staat op het punt het wachtwoord voor \"[_1]\" opnieuw in te stellen.  Een nieuw wachtwoord zal willekeurig worden aangemaakt en zal rechtstreeks naar het e-mail adres van deze gebruiker ([_2]) worden gestuurd.\n\nWenst u verder te gaan?', 
    3138         'Error occurred while removing userpic.' => 'Er deed zich een fout voor bij het verwijderen van de gebruikersafbeelding', # Translate - New 
     3137        'Error occurred while removing userpic.' => 'Er deed zich een fout voor bij het verwijderen van de gebruikersafbeelding', 
    31393138        'Status of user in the system. Disabling a user removes their access to the system but preserves their content and history.' => 'Status van de gebruiker in het systeem.  Een gebruiker uitschakelen ontzegt hem/haar toegang tot het systeem maar bewaart content en geschiedenis.', 
    31403139        '_USER_PENDING' => 'Te keuren', 
     
    31703169        'Options' => 'Opties', 
    31713170        'Create personal blog for user' => 'Persoonlijke blog aanmaken voor gebruiker', 
    3172         'Create User (s)' => 'Gebruiker aanmaken (s)', # Translate - New 
    3173         'Save changes to this author (s)' => 'Wijzigingen aan deze auteur opslaan (s)', # Translate - New 
     3171        'Create User (s)' => 'Gebruiker aanmaken (s)', 
     3172        'Save changes to this author (s)' => 'Wijzigingen aan deze auteur opslaan (s)', 
    31743173        '_USAGE_PASSWORD_RESET' => 'Hieronder kunt u een nieuw wachtwoord laten instellen voor deze gebruiker.  Als u ervoor kiest om dit te doen, zal een willekeurig gegenereerd wachtwoord worden aangemaakt en rechtstreeks naar volgend e-mail adres worden verstuurd: [_1].', 
    31753174        'Initiate Password Recovery' => 'Procedure starten om wachtwoord terug te halen', 
     
    31773176## tmpl/cms/edit_comment.tmpl 
    31783177        'The comment has been approved.' => 'De reactie is goedgekeurd.', 
    3179         'Save changes to this comment (s)' => 'Wijzigingen aan deze reactie opslaan (s)', # Translate - New 
    3180         'Delete this comment (x)' => 'Deze reactie verwijderen (x)', # Translate - New 
     3178        'Save changes to this comment (s)' => 'Wijzigingen aan deze reactie opslaan (s)', 
     3179        'Delete this comment (x)' => 'Deze reactie verwijderen (x)', 
    31813180        'Previous Comment' => 'Vorige reactie', 
    31823181        'Next Comment' => 'Volgende reactie', 
     
    32203219## tmpl/cms/list_asset.tmpl 
    32213220        'You have successfully deleted the asset(s).' => 'U heeft met suuces de mediabestand(en) verwijderd.', 
    3222         'Show only assets where' => 'Enkel mediabestanden tonen waar', # Translate - New 
     3221        'Show only assets where' => 'Enkel mediabestanden tonen waar', 
    32233222        'type' => 'type', 
    32243223 
     
    32263225        'You must select a blog to import.' => 'U moet een blog selecteren om te importeren.', 
    32273226        'Transfer weblog entries into Movable Type from other Movable Type installations or even other blogging tools or export your entries to create a backup or copy.' => 'Importeer weblogberichten in Movable Type uit andere Movable Type installaties of zelfs andere blogsystemen, of exporteer uw berichten om een backup of kopie te maken.', 
    3228         'Blog to Import' => 'Blog om in te importeren', 
     3227        'Import data into' => 'Importeer data naar', 
    32293228        'Select a blog to import.' => 'Kies een blog om te importeren', 
    32303229        'Importing from' => 'Aan het importeren uit', 
     
    33333332 
    33343333## tmpl/cms/edit_asset.tmpl 
    3335         'Edit Asset' => 'Mediabestand bewerken', # Translate - New 
    3336         'Your asset changes have been made.' => 'De wijzigingen aan uw mediabestanden zijn aangebracht.', # Translate - New 
    3337         '[_1] - Modified by [_2]' => '[_1] - aangepast door [_2]', # Translate - New 
    3338         'Appears in...' => 'Komt voor in...', # Translate - New 
    3339         'Published on [_1]' => 'Gepubliceerd op [_1]', # Translate - New 
    3340         'Show all entries' => 'Alle berichten tonen', # Translate - New 
    3341         'Show all pages' => 'Alle pagina\'s tonen', # Translate - New 
    3342         'This asset has not been used.' => 'Dit mediabestand wordt nergens gebruikt.', # Translate - New 
    3343         'Related Assets' => 'Gerelateerde mediabestanden', # Translate - New 
    3344         'You must specify a label for the asset.' => 'U moet een label opgeven voor dit mediabestand.', # Translate - New 
    3345         'Embed Asset' => 'Mediabestand inbedden', # Translate - New 
    3346         'Save changes to this asset (s)' => 'Wijzigingen aan dit mediabestand opslaan (s)', # Translate - New 
     3334        'Edit Asset' => 'Mediabestand bewerken', 
     3335        'Your asset changes have been made.' => 'De wijzigingen aan uw mediabestanden zijn aangebracht.', 
     3336        '[_1] - Modified by [_2]' => '[_1] - aangepast door [_2]', 
     3337        'Appears in...' => 'Komt voor in...', 
     3338        'Published on [_1]' => 'Gepubliceerd op [_1]', 
     3339        'Show all entries' => 'Alle berichten tonen', 
     3340        'Show all pages' => 'Alle pagina\'s tonen', 
     3341        'This asset has not been used.' => 'Dit mediabestand wordt nergens gebruikt.', 
     3342        'Related Assets' => 'Gerelateerde mediabestanden', 
     3343        'You must specify a label for the asset.' => 'U moet een label opgeven voor dit mediabestand.', 
     3344        'Embed Asset' => 'Mediabestand inbedden', 
     3345        'Save changes to this asset (s)' => 'Wijzigingen aan dit mediabestand opslaan (s)', 
    33473346 
    33483347## tmpl/cms/upgrade.tmpl 
     
    33673366        'You can not have spaces in your Local Site Path.' => 'Er mogen geen spaties in het locale pad van uw site.', 
    33683367        'Your Local Site Path is not valid.' => 'Het lokale pad van uw site is niet geldig.', 
    3369         'Blog Details' => 'Blog details', # Translate - New 
     3368        'Blog Details' => 'Blog details', 
    33703369        'Name your blog. The blog name can be changed at any time.' => 'Geef uw blog een naam.  De blognaam kan op elk moment aangepast worden.', 
    33713370        'Enter the URL of your public website. Do not include a filename (i.e. exclude index.html). Example: http://www.example.com/weblog/' => 'Vul de URL in van uw publieke website.  Laat de bestandsnaam weg (m.a.w. laat index.html weg).  Voorbeeld: http://www.voorbeeld.com/blog/', 
    33723371        'Enter the path where your main index file will be located. An absolute path (starting with \'/\') is preferred, but you can also use a path relative to the Movable Type directory. Example: /home/melody/public_html/weblog' => 'Vul het pad in waar uw hoofdindexbestand zich zal bevingen.  Een absoluut pad (dat begint met \'/\') verdient de voorkeur, maar u kunt ook een pad gebruiken relatief aan de Movable Type map.  Voorbeeld: /home/melody/public_html/weblog', 
    3373         'Create Blog (s)' => 'Blog aanmaken (s)', # Translate - New 
     3372        'Create Blog (s)' => 'Blog aanmaken (s)', 
    33743373 
    33753374## tmpl/cms/pinging.tmpl 
     
    33943393        'Re-Edit this [_1] (e)' => '[_1] opnieuw bewerken (e)', 
    33953394        'Save this [_1]' => '[_1] bewaren', 
    3396         'Save this [_1] (s)' => 'Deze [_1] opslaan (s)', # Translate - New 
     3395        'Save this [_1] (s)' => 'Deze [_1] opslaan (s)', 
    33973396        'Cancel (c)' => 'Annuleer (c)', 
    33983397 
    33993398## tmpl/cms/list_folder.tmpl 
    3400         'Manage Folders' => 'Mappen beheren', # Translate - New 
    3401         'Your folder changes and additions have been made.' => 'De wijzigingen en toevoegingen aan uw mappen zijn aangebracht.', # Translate - New 
    3402         'You have successfully deleted the selected folder.' => 'De geselecteerde map werden met succes verwijderd.', # Translate - New 
    3403         'Delete selected folders (x)' => 'Geselecteerde mappen verwijderen (x)', # Translate - New 
    3404         'Create top level folder' => 'Nieuwe map op topniveau aanmaken', # Translate - New 
     3399        'Manage Folders' => 'Mappen beheren', 
     3400        'Your folder changes and additions have been made.' => 'De wijzigingen en toevoegingen aan uw mappen zijn aangebracht.', 
     3401        'You have successfully deleted the selected folder.' => 'De geselecteerde map werden met succes verwijderd.', 
     3402        'Delete selected folders (x)' => 'Geselecteerde mappen verwijderen (x)', 
     3403        'Create top level folder' => 'Nieuwe map op topniveau aanmaken', 
    34053404        'New Parent [_1]' => 'Nieuwe ouder-[_1]', 
    3406         'Create Folder' => 'Map aanmaken', # Translate - New 
     3405        'Create Folder' => 'Map aanmaken', 
    34073406        'Top Level' => 'Topniveau', 
    3408         'Create Subfolder' => 'Submap aanmaken', # Translate - New 
    3409         'Move Folder' => 'Map verplaatsen', # Translate - New 
     3407        'Create Subfolder' => 'Submap aanmaken', 
     3408        'Move Folder' => 'Map verplaatsen', 
    34103409        'Move' => 'Verplaatsen', 
    34113410        '[quant,_1,page,pages]' => '[quant,_1,pagina,pagina\'s]', 
    3412         'No folders could be found.' => 'Er werden geen mappen gevonden.', # Translate - New 
     3411        'No folders could be found.' => 'Er werden geen mappen gevonden.', 
    34133412 
    34143413## tmpl/cms/list_association.tmpl 
    34153414        'permission' => 'permissie', 
    34163415        'permissions' => 'permissies', 
    3417         'Remove selected permissions (x)' => 'Geselecteerde permissies verwijderen (x)', # Translate - New 
     3416        'Remove selected permissions (x)' => 'Geselecteerde permissies verwijderen (x)', 
    34183417        'Revoke Permission' => 'Permissie intrekken', 
    34193418        '[_1] <em>[_2]</em> is currently disabled.' => '[_1] <em>[_2]</em> is momenteel uitgeschakeld.', 
    34203419        'Grant Permission' => 'Permissie toekennen', 
    3421         'You can not create permissions for disabled users.' => 'U kunt geen permissies aanmaken voor non-actieve gebruikers.', # Translate - New 
     3420        'You can not create permissions for disabled users.' => 'U kunt geen permissies aanmaken voor non-actieve gebruikers.', 
    34223421        'Assign Role to User' => 'Ken rol toe aan gebruiker', 
    34233422        'Grant permission to a user' => 'Ken permissie toe aan gebruiker', 
    34243423        'You have successfully revoked the given permission(s).' => 'De gekozen permissie(s) zijn met succes ingetrokken.', 
    34253424        'You have successfully granted the given permission(s).' => 'De gekozen permissie(s) zijn met succes toegekend.', 
    3426         'No permissions could be found.' => 'Er werden geen permissies gevonden.', # Translate - New 
     3425        'No permissions could be found.' => 'Er werden geen permissies gevonden.', 
    34273426 
    34283427## tmpl/cms/login.tmpl 
     
    34343433 
    34353434## tmpl/cms/list_category.tmpl 
    3436         'Your category changes and additions have been made.' => 'Uw wijzigingen en toevoegingen aan de categorieën zijn uitgevoerd.', # Translate - New 
    3437         'You have successfully deleted the selected category.' => 'De geselecteerde categorie werd met succes verwijderd.', # Translate - New 
     3435        'Your category changes and additions have been made.' => 'Uw wijzigingen en toevoegingen aan de categorieën zijn uitgevoerd.', 
     3436        'You have successfully deleted the selected category.' => 'De geselecteerde categorie werd met succes verwijderd.', 
    34383437        'categories' => 'categorieën', 
    3439         'Delete selected category (x)' => 'Geselecteerde categorie verwijderen (x)', # Translate - New 
    3440         'Create top level category' => 'Hoofdcategorie aanmaken', # Translate - New 
    3441         'Create Category' => 'Categorie aanmaken', # Translate - New 
     3438        'Delete selected category (x)' => 'Geselecteerde categorie verwijderen (x)', 
     3439        'Create top level category' => 'Hoofdcategorie aanmaken', 
     3440        'Create Category' => 'Categorie aanmaken', 
    34423441        'Collapse' => 'Inklappen', 
    34433442        'Expand' => 'Uitklappen', 
    3444         'Move Category' => 'Categorie verplaatsen', # Translate - New 
     3443        'Create Subcategory' => 'Subcategorie aanmaken', 
     3444        'Move Category' => 'Categorie verplaatsen', 
    34453445        '[quant,_1,TrackBack,TrackBacks]' => '[quant,_1,TrackBack,TrackBacks]', 
    3446         'No categories could be found.' => 'Er werden categorieën gevonden.', # Translate - New 
     3446        'No categories could be found.' => 'Er werden categorieën gevonden.', 
    34473447 
    34483448## tmpl/cms/cfg_entry.tmpl 
     
    35903590 
    35913591## tmpl/cms/preview_strip.tmpl 
    3592         'Save this entry' => 'Dit bericht opslaan', # Translate - New 
    3593         'Re-Edit this entry' => 'Dit bericht opnieuw bewerken', # Translate - New 
    3594         'Re-Edit this entry (e)' => 'Dit bericht opnieuw bewerken (e)', # Translate - New 
    3595         'Save this page' => 'Deze pagina opslaan', # Translate - New 
    3596         'Re-Edit this page' => 'Deze pagina opnieuw bewerken', # Translate - New 
    3597         'Re-Edit this page (e)' => 'Deze pagina opnieuw bewerken (e)', # Translate - New 
    3598         'You are previewing the entry titled &ldquo;[_1]&rdquo;' => 'U bekijkt een voorbeeld van het bericht met de titel &ldquo;[_1]&rdquo;', # Translate - New 
    3599         'You are previewing the page titled &ldquo;[_1]&rdquo;' => 'U bekijkt een voorbeeld van de pagina met de titel &ldquo;[_1]&rdquo;', # Translate - New 
     3592        'Save this entry' => 'Dit bericht opslaan', 
     3593        'Re-Edit this entry' => 'Dit bericht opnieuw bewerken', 
     3594        'Re-Edit this entry (e)' => 'Dit bericht opnieuw bewerken (e)', 
     3595        'Save this page' => 'Deze pagina opslaan', 
     3596        'Re-Edit this page' => 'Deze pagina opnieuw bewerken', 
     3597        'Re-Edit this page (e)' => 'Deze pagina opnieuw bewerken (e)', 
     3598        'You are previewing the entry titled &ldquo;[_1]&rdquo;' => 'U bekijkt een voorbeeld van het bericht met de titel &ldquo;[_1]&rdquo;', 
     3599        'You are previewing the page titled &ldquo;[_1]&rdquo;' => 'U bekijkt een voorbeeld van de pagina met de titel &ldquo;[_1]&rdquo;', 
    36003600 
    36013601## tmpl/cms/edit_ping.tmpl 
     
    36033603        'The TrackBack has been approved.' => 'De TrackBack is goedgekeurd.', 
    36043604        'List &amp; Edit TrackBacks' => 'TrackBacks tonen &amp; bewerken', 
    3605         'Save changes to this TrackBack (s)' => 'Wijzigingen aan deze TrackBack opslaan (s)', # Translate - New 
    3606         'Delete this TrackBack (x)' => 'Deze TrackBack verwijderen (x)', # Translate - New 
     3605        'Save changes to this TrackBack (s)' => 'Wijzigingen aan deze TrackBack opslaan (s)', 
     3606        'Delete this TrackBack (x)' => 'Deze TrackBack verwijderen (x)', 
    36073607        'Update the status of this TrackBack' => 'Status van deze TrackBack bijwerken', 
    36083608        'Junk' => 'Spam',