Changeset 1308
- Timestamp:
- 01/22/08 00:15:49 (22 months ago)
- Location:
- branches/release-29
- Files:
-
- 1 removed
- 38 modified
-
MANIFEST.SKIP (modified) (6 diffs)
-
build/Build.pm (modified) (4 diffs)
-
build/exportmt.pl (modified) (1 diff)
-
build/l10n/wrap.pl (modified) (2 diffs)
-
default_templates/comment_detail.mtml (modified) (3 diffs)
-
index.html.de (modified) (1 diff)
-
index.html.en_US (modified) (1 diff)
-
index.html.es (modified) (1 diff)
-
index.html.fr (modified) (1 diff)
-
index.html.ja (modified) (1 diff)
-
index.html.nl (modified) (1 diff)
-
lib/MT.pm.pre (modified) (1 diff)
-
lib/MT/App/CMS.pm (modified) (8 diffs)
-
lib/MT/App/Search.pm (modified) (1 diff)
-
lib/MT/L10N/fr.pm (modified) (54 diffs)
-
lib/MT/L10N/ja.pm (modified) (16 diffs)
-
lib/MT/L10N/nl.pm (modified) (49 diffs)
-
lib/MT/Template/ContextHandlers.pm (modified) (1 diff)
-
mt-static/css/structure.css (modified) (4 diffs)
-
mt-static/mt.js (modified) (9 diffs)
-
mt-static/plugins/feeds-app-lite (deleted)
-
php/lib/block.mtarchivelist.php (modified) (1 diff)
-
php/lib/block.mtentries.php (modified) (1 diff)
-
php/lib/block.mtfolderfooter.php (modified) (1 diff)
-
php/lib/function.mtsubcatsrecurse.php (modified) (1 diff)
-
php/lib/l10n_fr.php (modified) (4 diffs)
-
php/lib/l10n_nl.php (modified) (4 diffs)
-
plugins/StyleCatcher/lib/StyleCatcher/L10N/fr.pm (modified) (1 diff)
-
plugins/StyleCatcher/lib/StyleCatcher/L10N/nl.pm (modified) (1 diff)
-
plugins/WidgetManager/lib/WidgetManager/L10N/fr.pm (modified) (1 diff)
-
plugins/WidgetManager/lib/WidgetManager/L10N/nl.pm (modified) (1 diff)
-
readme.html.de (modified) (1 diff)
-
readme.html.en_US (modified) (1 diff)
-
readme.html.es (modified) (1 diff)
-
readme.html.fr (modified) (1 diff)
-
readme.html.ja (modified) (1 diff)
-
readme.html.nl (modified) (1 diff)
-
tmpl/cms/include/blog_table.tmpl (modified) (2 diffs)
-
tmpl/cms/list_blog.tmpl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/release-29/MANIFEST.SKIP
r1244 r1308 49 49 #?package=MT ^mt-static/addons/Enterprise.pack 50 50 51 # Held from beta releases for now52 #?package=MT ^plugins/TypePadAntiSpam53 54 51 #?package=MTP ^addons 55 52 #?package=MTP ^COPYING … … 63 60 #?package=MTOS ^mt-static/addons 64 61 #?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 65 66 66 67 #?package=MTE ^COPYING … … 97 98 \bRCS\b 98 99 \.svn\b 100 \.gitignore 99 101 ,v$ 100 102 … … 108 110 ^\.DS_Store$ 109 111 110 # Doc files.111 ^mt-static/docs112 ^mt-static/docs/.*\.txt113 ^mt-static/docs/.*\.pod114 ^mt-static/docs/mtweblogs.*115 ^mt-static/docs/mtapi116 ^mt-static/docs/mttrackback117 ^mt-static/docs/mtmanual-full.html$118 ^docs-.*/119 120 112 # Packages 121 113 ^lib/MT/FileMgr/SFTP.pm$ … … 127 119 Tangent\.pm$ 128 120 /no\.pm$ 129 #/ja\.pm$130 121 /it\.pm$ 131 122 … … 178 169 index\.html\..* 179 170 build-language-stamp 180 .gitignore -
branches/release-29/build/Build.pm
r1174 r1308 62 62 'arch=s@' => undef, # Constructed below. 63 63 'beta=s' => 0, # Beta build number. 64 'rc=s' => 0, # Release candidate build number. 64 65 'cleanup!' => 1, # Remove the exported directory after deployment. 65 66 'date!' => 1, # Toggle date stamping. … … 156 157 157 158 # 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'} ) { 159 160 $self->{'symlink!'} = 0; 160 161 } … … 181 182 $self->{'license=s'} ||= $config->{LICENSE}; 182 183 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 } 187 193 # Add repo, date and ldap to the stamp if we are not production. 188 194 unless( $self->{'prod'} ) { … … 844 850 # version. 845 851 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'})); 847 853 $self->verbose( 'Entered inject_footer()' ); 848 854 return if $self->{'prod'} || $self->{'debug'} || $self->{'make'}; -
branches/release-29/build/exportmt.pl
r1174 r1308 25 25 26 26 foreach my $lang ( $build->languages() ) { 27 local $build->{'stamp=s'}; 27 28 $build->setup( language => $lang ); 28 29 -
branches/release-29/build/l10n/wrap.pl
r1174 r1308 32 32 33 33 my $tmpl; 34 my $plugin = q(); 35 my %conv; 36 my %pgconv; 34 37 35 38 while (<>) { 36 39 if (/^\s*##\s*(.*)$/) { 37 40 $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 } 38 51 my $l = $_; 39 52 last if eof(); … … 45 58 my $base = $1; 46 59 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); 51 64 } 52 $conv{$base} = 1; 65 if ( $plugin ) { 66 $pgconv{$base} = 1; 67 } 68 else { 69 $conv{$base} = 1; 70 } 53 71 } 54 72 else{ 55 print $_;73 print $_; 56 74 } 57 75 } -
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>> 2 2 <div class="inner"> 3 3 <div class="comment-header"> … … 5 5 <div class="user-pic"> 6 6 <mt:if tag="CommenterUserpic"> 7 < a href="<$MTCGIPath$><$MTCommunityScript$>?__mode=view&id=<$MTCommenterID$>"><img src="<$MTCommenterUserpicURL$>" width="50" height="50" alt="user-pic" /></a>7 <img src="<$MTCommenterUserpicURL$>" width="50" height="50" alt="user-pic" /> 8 8 <mt:else> 9 9 <mt:if tag="CommenterAuthIconURL"> … … 17 17 </mt:IfImageSupport> 18 18 <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> 20 20 </div> 21 21 </div> -
branches/release-29/index.html.de
r1258 r1308 93 93 <h2>Movable Type installieren?</h2> 94 94 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> 96 96 </div> 97 97 </div> -
branches/release-29/index.html.en_US
r1258 r1308 93 93 <h2>Installing?</h2> 94 94 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> 96 96 </div> 97 97 </div> -
branches/release-29/index.html.es
r1258 r1308 93 93 <h2>¿Instalando?</h2> 94 94 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> 96 96 </div> 97 97 </div> -
branches/release-29/index.html.fr
r1258 r1308 93 93 <h2>Installation?</h2> 94 94 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> 96 96 </div> 97 97 </div> -
branches/release-29/index.html.ja
r1258 r1308 90 90 <h2>ã¯ãããŠã䜿ãã«ãªãæ¹ãž</h2> 91 91 <p>Movable Typeããå©çšããã ãããã«ã¯ãã»ããã¢ãããå®äºããŠããå¿ 92 èŠããããŸãã<a href=" __HELP_URL__">ãªã³ã©ã€ã³ã»ããã¥ã¢ã«</a>ã®ã€ã³ã¹ããŒã«ã»ã»ããã¢ããã®ç« ãèªã¿ã皌åã«å¿92 èŠããããŸãã<a href="http://www.movabletype.jp/documentation/">ãªã³ã©ã€ã³ã»ããã¥ã¢ã«</a>ã®ã€ã³ã¹ããŒã«ã»ã»ããã¢ããã®ç« ãèªã¿ã皌åã«å¿ 93 93 èŠãªç°å¢ãæºåããŠãã ããããŸãã<a rel="nofollow" href="mt-check.cgi">Movable Type ã·ã¹ãã ã»ãã§ã㯠(mt-check.cgi)</a> ãå®è¡ããç°å¢ãæŽã£ãããšã確èªããŠãã ããã</p> 94 94 <p>å¿ -
branches/release-29/index.html.nl
r1258 r1308 93 93 <h2>Installatie?</h2> 94 94 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> 96 96 </div> 97 97 </div> -
branches/release-29/lib/MT.pm.pre
r1174 r1308 1878 1878 my $param = {}; 1879 1879 $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)/; 1881 1881 $param->{static_uri} = $mt->static_path; 1882 1882 $param->{mt_version} = MT->version_number; -
branches/release-29/lib/MT/App/CMS.pm
r1261 r1308 755 755 permission => 'manage_pages', 756 756 condition => sub { 757 return 0 if $app->mode eq'view';757 return $app->mode ne 'view'; 758 758 }, 759 759 }, … … 766 766 permission => 'manage_pages', 767 767 condition => sub { 768 return 0 if $app->mode eq'view';768 return $app->mode ne 'view'; 769 769 }, 770 770 }, … … 1562 1562 my @blogs = 1563 1563 map { $_->blog_id } 1564 grep { $_->can_create_post || $_->can_pub ish_post || $_->can_edit_all_posts }1564 grep { $_->can_create_post || $_->can_publish_post || $_->can_edit_all_posts } 1565 1565 MT::Permission->load( { author_id => $app->user->id } ); 1566 1566 return 1 if @blogs; … … 2912 2912 $arg{offset} = $offset = $total - $limit; 2913 2913 } 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; 2916 2916 } 2917 2917 else { … … 2973 2973 $param{object_label_plural} = $tag_class->class_label_plural; 2974 2974 $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 2975 2985 $param{list_start} = $offset + 1; 2976 2986 $param{list_end} = $offset + scalar @$data; … … 4413 4423 $param{can_create_blog} = $author->can_create_blog; 4414 4424 $param{saved_deleted} = $app->param('saved_deleted'); 4425 $param{refreshed} = $app->param('refreshed'); 4415 4426 $param{nav_blogs} = 1; 4416 4427 $param{list_noncron} = 1; … … 11895 11906 $arg{offset} = $offset = $total - $limit; 11896 11907 } 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; 11899 11910 } 11900 11911 elsif ($offset) { … … 12332 12343 $arg{offset} = $offset = $total - $limit; 12333 12344 } 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; 12336 12347 } 12337 12348 else { -
branches/release-29/lib/MT/App/Search.pm
r1174 r1308 318 318 $ctx->stash('template_id', $app->{searchparam}{Template}); 319 319 $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 } 320 333 321 334 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. 4 3 # 5 4 # $Id$ … … 151 150 152 151 ## 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]', 155 154 156 155 ## default_templates/comment_form.mtml … … 195 194 196 195 ## default_templates/entry_metadata.mtml 197 'By [_1] on [_2]' => 'Par [_1] le [_2]',198 196 'Permalink' => 'Lien permanent', 199 197 'Comments ([_1])' => 'Commentaires ([_1])', … … 232 230 '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>.', 233 231 'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'URL de trackback pour cette note : <span id="trackbacks-link">[_1]</span>', 234 ' » <a href="[_1]">[_2]</a> from [_3]' => '» <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 235 233 '[_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>',237 234 238 235 ## default_templates/sidebar.mtml … … 550 547 'Registered User' => 'Utilisateur enregistré', 551 548 '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]\'',554 549 '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?', 555 550 'Somehow, the entry you tried to comment on does not exist' => 'Il semble que la note que vous souhaitez commenter n\'existe pas', … … 673 668 '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]', 674 669 '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)', 676 671 'Untitled' => 'Sans nom', 677 672 'Files' => 'Fichiers', … … 700 695 'Blog Activity Feed' => 'Flux Activité du Blog', 701 696 '*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.', 702 698 'All Feedback' => 'Tous les retours lecteurs', 703 699 'Publishing' => 'Publication', … … 940 936 'System Administrator' => 'Administrateur SystÚme', 941 937 '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', 943 939 'Select Blogs' => 'Sélectionner des blogs', 944 940 'Blogs Selected' => 'Blogs sélectionnés', … … 991 987 'You can\'t reply to unapproved comment.' => 'Vous ne pouvez répondre à un commentaire non approuvé.', 992 988 '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 993 990 'Error creating new template: ' => 'Erreur pendant la création du nouveau gabarit : ', 994 991 'Skipping template \'[_1]\' since it appears to be a custom template.' => 'Saut du gabarit \'[_1]\' car c\'est un gabarit personnalisé.', … … 1175 1172 'Can comment.' => 'Peut commenter.', 1176 1173 'Removing Dynamic Site Bootstrapper index template...' => 'Suppression du gabarit index Dynamic Site Bootstrapper', 1177 'Creating new template: \'[_1]\'.' => 'Cr eation d\'un nouveau gabarit: \'[_1]\'.',1174 'Creating new template: \'[_1]\'.' => 'Création d\'un nouveau gabarit: \'[_1]\'.', 1178 1175 'Mapping templates to blog archive types...' => 'Mapping des gabarits vers les archives des blogs...', 1179 1176 'Renaming PHP plugin file names...' => 'Renommage des noms de fichier des plugins php...', … … 1235 1232 'Moving OpenID usernames to external_id fields...' => 'Déplacement des identifiants OpenID vers les champs external_id...', 1236 1233 '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 1237 1235 1238 1236 ## lib/MT/Core.pm … … 1280 1278 'If Block' => 'Bloc If', 1281 1279 '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', 1284 1282 'Get Variable' => 'Récupérer la variable', 1285 1283 'Set Variable' => 'Spécifier la variable', … … 1666 1664 'Powered by [_1]' => 'Powered by [_1]', 1667 1665 'Version [_1]' => 'Version [_1]', 1668 'http://www.sixapart.com/movabletype/' => 'http://www.movabletype. org',1666 'http://www.sixapart.com/movabletype/' => 'http://www.movabletype.com/', 1669 1667 'OpenID URL' => 'URL OpenID', 1670 1668 'Sign in using your OpenID identity.' => 'Identifiez-vous avec votre identité OpenID.', … … 1794 1792 'Continue' => 'Continuer', 1795 1793 '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.', 1797 1795 'An error occurred while attempting to send mail: ' => 'Une erreur s\'est produite en essayant d\'envoyer un email: ', 1798 1796 'Send email via:' => 'Envoyer email via :', … … 1812 1810 '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', 1813 1811 '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:', 1815 1813 '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.', 1816 1814 'Show the mt-config.cgi file generated by the wizard' => 'Afficher le fichier mt-config.cgi généré par l\'assistant', … … 1842 1840 '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.', 1843 1841 '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 - New1842 'This path must be in the form of [_1]' => 'Ce chemin doit être de la forme [_1]', 1845 1843 'Static web path' => 'Chemin web statique', 1846 1844 'Static file path' => 'Chemin fichier statique', … … 1869 1867 'You must set your Username.' => 'Vous devez définir votre nom d\'utilisateur.', 1870 1868 '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.', 1872 1870 'You may proceed to the next step.' => 'Vous pouvez passer à l\'étape suivante.', 1873 1871 '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.', … … 1906 1904 1907 1905 ## tmpl/cms/include/copyright.tmpl 1908 'Copyright © 2001-[_1] Six Apart. All Rights Reserved.' => ' ', # Translate - New1906 'Copyright © 2001-[_1] Six Apart. All Rights Reserved.' => 'Copyright © 2001-[_1] Six Apart. Tous droits réservés.', 1909 1907 1910 1908 ## tmpl/cms/include/comment_table.tmpl … … 2089 2087 'View entry' => 'Afficher une note', 2090 2088 'View page' => 'Afficher une page', 2091 'No entries could be found. <a href="[_1]">Create Entry</a>' => '', # Translate - New2092 'No page could be found. <a href="[_1]">Create Page</a>' => '', # Translate - New2089 '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 2093 2091 2094 2092 ## tmpl/cms/include/login_mt.tmpl … … 2147 2145 ## tmpl/cms/include/category_selector.tmpl 2148 2146 'Add sub category' => 'Ajouter une sous-catégorie', 2147 'Add new' => 'Créer', 2149 2148 2150 2149 ## tmpl/cms/include/display_options.tmpl … … 2198 2197 'Back (b)' => 'Retour (b)', 2199 2198 'Cancel (x)' => 'Annuler (x)', 2200 'Add [lc,_1] name' => 'Ajouter le nom [lc,_1]',2201 2199 2202 2200 ## tmpl/cms/include/header.tmpl … … 2311 2309 2312 2310 ## tmpl/cms/dialog/refresh_templates.tmpl 2313 'Refresh Template Set' => ' ', # Translate - New2314 'Refresh [_1] template set' => ' ', # Translate - New2311 'Refresh Template Set' => 'Réactualiser le Groupe de Gabartis', 2312 'Refresh [_1] template set' => 'Réactualiser le groupe de gabarits [_1]', 2315 2313 'Updates current templates while retaining any user-created or user-modified templates.' => ' 2316 2314 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 2318 2318 'Deletes all existing templates and installs factory default template set.' => 'Supprime tous les gabartis existants et installe les groupes de gabarits par défaut ', 2319 2319 '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 - New2320 '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 :', 2321 2321 'potentially install new templates' => 'peut-être installer de nouveaux gabarits', 2322 2322 'overwrite some existing templates with new template code' => 'remplacer le code de certains gabarits par un nouveau code', 2323 2323 '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 - New2324 '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 :', 2325 2325 'delete all of the templates in your blog' => 'supprimer tous les gabarits de votre blog', 2326 2326 'install new templates from the selected template set' => 'installer de nouveaux gabarits depuis le groupe de gabarits sélectionné', … … 2352 2352 'Recipients' => 'Destinataires', 2353 2353 '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 d ecarnet d\'adresses',2354 'All addresses from Address Book' => 'Toutes les adresses du carnet d\'adresses', 2355 2355 'Optional Message' => 'Message optionnel', 2356 2356 'Optional Content' => 'Contenu optionnel', … … 2407 2407 ## tmpl/cms/widget/blog_stats_recent_entries.tmpl 2408 2408 '[quant,_1,entry,entries] tagged “[_2]”' => '[quant,_1,note,notes] avec le tag “[_2]”', 2409 '...' => '...', 2409 2410 'Posted by [_1] [_2] in [_3]' => 'Postée par [_1] [_2] dans [_3]', 2410 2411 'Posted by [_1] [_2]' => 'Postée par [_1] [_2]', … … 2477 2478 ## tmpl/cms/widget/blog_stats_entry.tmpl 2478 2479 'Most Recent Entries' => 'Notes récentes', 2479 '...' => '...',2480 2480 'View all entries' => 'Voir toutes les notes', 2481 2481 … … 2577 2577 ## tmpl/cms/list_blog.tmpl 2578 2578 '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.', 2579 2580 '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 ?',2581 2581 2582 2582 ## tmpl/cms/edit_template.tmpl … … 2662 2662 'Quickfilters' => 'Filtres rapides', 2663 2663 '[_1] (Disabled)' => '[_1] (Désactivé)', 2664 'Go back' => 'Retour',2665 2664 'Showing only: [_1]' => 'Montrer seulement : [_1]', 2666 2665 'Remove filter' => 'Supprimer le filtre', … … 2764 2763 '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.', 2765 2764 'CAPTCHA Provider' => 'Fournisseur de CAPTCHA', 2766 'none' => ' aucune',2765 'none' => 'Aucun fournisseur', 2767 2766 'No CAPTCHA provider available' => 'Aucun fournisseur de CAPTCHA disponible', 2768 2767 '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.', … … 2792 2791 'Preview this page (v)' => 'Prévisualiser cette page (v)', 2793 2792 'Delete this page (x)' => 'Supprimer cette page (x)', 2793 'View Page' => 'Afficher une Page', # Translate - Case 2794 2794 'Add category' => 'Ajouter une catégorie', 2795 2795 'Add category name' => 'Ajouter un nom de catégorie', … … 2798 2798 'Preview this entry (v)' => 'Prévisualiser cette note (v)', 2799 2799 'Delete this entry (x)' => 'Supprimer cette note (x)', 2800 'View Entry' => 'Afficher la note', 2800 2801 '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>', 2801 2802 '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>', … … 2806 2807 '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.', 2807 2808 '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.', 2809 2810 'You have successfully recovered your saved entry.' => 'Vous avez récupéré le contenu sauvegardé de votre note avec succÚs.', 2810 2811 'You have successfully recovered your saved page.' => 'Vous avez récupéré le contenu sauvegardé de votre page avec succÚs.', … … 2813 2814 'You have successfully deleted the checked comment(s).' => 'Les commentaires sélectionnés ont été supprimés.', 2814 2815 '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 2815 2817 'Stats' => 'Stats', 2816 2818 'Share' => 'Partager', … … 2829 2831 '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.', 2830 2832 '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', 2831 2835 'Accept' => 'Accepter', 2832 2836 'Outbound TrackBack URLs' => 'URLs trackbacks sortants', … … 2840 2844 'Are you sure you want to use the Rich Text editor?' => 'Ãtes-vous sûr de vouloir utiliser l\'éditeur de texte enrichi ?', 2841 2845 'Make primary' => 'Rendre principal', 2842 'Add new' => 'Créer',2843 2846 'Fields' => 'Champs', 2844 2847 'Body' => 'Corps', … … 2853 2856 '(space-delimited list)' => '(liste délimitée par espace)', 2854 2857 '(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.',2856 2858 'None selected' => 'Aucune sélectionnée', 2857 2859 … … 3068 3070 'All Templates' => 'Tous les gabarits', 3069 3071 '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.',3071 3072 'Your templates have been published.' => 'Vos gabarits ont bien été publiés.', 3072 'Create Archive Template:' => 'Créer un e archive de gabarit',3073 'Create Archive Template:' => 'Créer un gabarit d\'archives', 3073 3074 'Create [_1] template' => 'Créer un nouveau gabarit de [_1]', 3074 3075 … … 3084 3085 'Rename' => 'Changer le nom', 3085 3086 '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]', 3087 3088 '[quant,_1,entry,entries]' => '[quant,_1,note,notes]', 3088 3089 '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 ?', … … 3122 3123 '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.', 3123 3124 '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.' => 'Limite r les trackbacks sortants et les trackbacks d\'autorecherche dans le butde 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. ', 3125 3126 'Allow to any site' => 'Autoriser sur tous les sites', 3126 3127 '(No outbound TrackBacks)' => '(Pas de trackbacks sortants)', … … 3224 3225 'You must select a blog to import.' => 'Vous devez sélectionner un blog à importer.', 3225 3226 '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 3227 3228 'Select a blog to import.' => 'Sélectionner un blog à importer.', 3228 3229 'Importing from' => 'Importation à partir de', … … 3290 3291 'Unlock this blog’s site URL for editing' => 'Déverrouillez l\'URL du site de ce blog pour le modifier', 3291 3292 '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ù votrefichiers 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', 3293 3294 'Unlock this blog’s site path for editing' => 'Déverrouiller le chemin du site de ce blog pour le modifier', 3294 3295 '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.', … … 3303 3304 'Publishing Options' => 'Options de publication', 3304 3305 '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\'archivedu 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.', 3306 3307 'No archives are active' => 'Aucune archive n\'est active', 3307 3308 'Publishing Method' => 'Méthode de publication', … … 3408 3409 'Move' => 'Déplacer', 3409 3410 '[quant,_1,page,pages]' => '[quant,_1,page,pages]', 3410 'No folders could be found.' => ' ', # Translate - New3411 'No folders could be found.' => 'Aucun dossier n\'a pu être trouvé.', 3411 3412 3412 3413 ## tmpl/cms/list_association.tmpl … … 3440 3441 'Collapse' => 'Réduire', 3441 3442 'Expand' => 'Développer', 3443 'Create Subcategory' => 'Créer une Sous-catégorie', # Translate - New 3442 3444 'Move Category' => 'Déplacer une Catégorie', 3443 3445 '[quant,_1,TrackBack,TrackBacks]' => '[quant,_1,trackback,trackbacks]', 3444 'No categories could be found.' => ' ', # Translate - New3446 'No categories could be found.' => 'Aucune catégorie n\'a pu être trouvée.', 3445 3447 3446 3448 ## tmpl/cms/cfg_entry.tmpl … … 3589 3591 ## tmpl/cms/preview_strip.tmpl 3590 3592 '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 3591 3595 '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 3592 3598 'You are previewing the entry titled “[_1]”' => 'Vous prévisualisez la note suivante : “[_1]”', 3593 3599 'You are previewing the page titled “[_1]”' => 'Vous prévisualisez la page suivante : “[_1]”', … … 3597 3603 'The TrackBack has been approved.' => 'Le trackback a été approuvé.', 3598 3604 'List & Edit TrackBacks' => 'Lister & éditer les trackbacks', 3599 'View Entry' => 'Afficher la note',3600 3605 'Save changes to this TrackBack (s)' => 'Enregistrer les modifications de ce Trackback (s)', 3601 3606 'Delete this TrackBack (x)' => 'Supprimer ce Trackback (x)', … … 3690 3695 '_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', 3691 3696 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 3692 3728 ## addons/Commercial.pack/lib/CustomFields/App/CMS.pm 3693 3729 'Show' => 'Afficher', … … 3701 3737 '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.', 3702 3738 '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 3703 3740 'Please enter some value for required \'[_1]\' field.' => 'Merci de saisir une valeur pour le champ obligatoire \'[_1]\'.', 3704 3741 'Please ensure all required fields have been filled in.' => 'Merci de vérifier que tous les champs obligatoires ont été remplis.', … … 3706 3743 'The template tag \'[_1]\' is already in use.' => 'Le tag de gabarit \'[_1]\' est déjà utilisé.', 3707 3744 '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 3708 3746 '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.', 3709 3747 ' ' => ' ', # Translate - Case … … 3765 3803 'Close field order widget' => 'Fermer le module de changement d\'ordre des champs', 3766 3804 'open' => 'ouvrir', 3767 'close' => 'fermer',3768 3805 'click-down and drag to move this field' => 'gardez le clic maintenu et glissez le curseur pour déplacer ce champs', 3769 3806 'click to %toggle% this box' => 'cliquez pour %toggle% cette boîte', … … 3781 3818 'Remove [_1]' => 'Supprimer [_1]', 3782 3819 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 '» <a href="[_1]">[_2]</a> from [_3]' => '» <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 3783 3920 ## 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 & Groups for [_1]' => 'Utilisateurs & 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’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’ 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 4409 3924 4410 3925 ## plugins/Cloner/cloner.pl … … 4684 4199 ## plugins/WidgetManager/default_widgets/archive_meta_widget.mtml 4685 4200 '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', 4686 4202 4687 4203 ## plugins/WidgetManager/default_widgets/date_based_category_archives.mtml … … 4694 4210 'Current Author Monthly Archives' => 'Archives Mensuelles de l\'Auteur Courant', 4695 4211 'Calendar' => 'Calendrier', 4696 'Category Archives' => 'Archives par Catégories',4697 'Current Category Monthly Archives' => 'Archives Mensuelles de la Catégorie Courante',4698 4212 'Creative Commons' => 'Creative Commons', 4699 4213 'Home Page Widgets' => 'Widgets de Page d\'Accueil', 4700 4214 'Monthly Archives Dropdown' => 'Liste déroulante des Archives Mensuelles', 4701 ' Recent Assets' => 'Ãléments récents',4215 'Page Listing' => 'Liste des Pages', # Translate - New 4702 4216 'Powered By' => 'Animé Par', 4703 4217 'Syndication' => 'Syndication', … … 4730 4244 'Drag and drop the widgets you want into the Installed column.' => 'Glissez-déposez les widgets que vous voulez dans la colonne de gauche.', 4731 4245 'Installed Widgets' => 'Widgets installés', 4732 'edit' => 'Editer',4733 4246 'Available Widgets' => 'Widgets disponibles', 4734 4247 'Save changes to this widget set (s)' => 'Enregistrer les modifications de ce groupe de widgets', … … 4751 4264 'Widgets' => 'Widgets', 4752 4265 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 “[_1]”</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 “[_1]”</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 “[_1]”</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 “[_1]”</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 4753 4315 ); 4754 4316 4755 ## New words: 914317 ## New words: 193 4756 4318 4757 4319 1; -
branches/release-29/lib/MT/L10N/ja.pm
r1263 r1308 289 289 ## default_templates/footer.mtml 290 290 '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>', 292 292 'This blog is licensed under a <a href="[_1]">Creative Commons License</a>.' => 'ãã®ããã°ã¯<a href="[_1]">ã¯ãªãšã€ãã£ãã»ã³ã¢ã³ãº</a>ã§ã©ã€ã»ã³ã¹ãããŠããŸãã', 293 293 … … 301 301 §ããŠããããã°äžèЧ: <a href="[_1]">[_2]</a>', 302 302 'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'ãã®ããã°èšäºã«å¯Ÿãããã©ãã¯ããã¯URL: <span id="trackbacks-link">[_1]</span>', 303 ' » <a href="[_1]">[_2]</a> from [_3]' => '» <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 304 304 '[_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>',306 305 307 306 ## default_templates/entry_detail.mtml … … 338 337 339 338 ## default_templates/entry_metadata.mtml 340 'By [_1] on [_2]' => '[_ 2] [_1]',339 'By [_1] on [_2]' => '[_1] ([_2])', 341 340 'Permalink' => 'åå¥ããŒãž', 342 341 'Comments ([_1])' => 'ã³ã¡ã³ã([_1])', … … 448 447 'Sign in' => 'ãµã€ã³ã€ã³', 449 448 ' to comment on this entry.' => 'ããŠããã³ã¡ã³ãããŠãã ããã', 450 ' to comment on this entry,' => 'ããŠã ãã³ã¡ã³ãããŠãã ããã',449 ' to comment on this entry,' => 'ããŠãã ããã', 451 450 'or ' => '', # Translate - New 452 'comment anonymously.' => ' å¿åã§ã³ã¡ã³ãããããšãã§ããŸãã',451 'comment anonymously.' => '(å¿åã§ã³ã¡ã³ããã)', 453 452 454 453 ## default_templates/dynamic_error.mtml … … 456 455 457 456 ## 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 460 458 461 459 ## lib/MT.pm … … 1345 1343 'You can\'t reply to unpublished comment.' => 'å 1346 1344 ¬éãããŠããªãã³ã¡ã³ãã«ã¯è¿ä¿¡ã§ããŸããã', 1347 ' (Backup from [_1])' => ' [_1]æç¹ã§ã®ããã¯ã¢ãã', # Translate - New1345 ' (Backup from [_1])' => ' - ããã¯ã¢ãã ([_1])', 1348 1346 'Error creating new template: ' => 'ãã³ãã¬ãŒãã®äœæãšã©ãŒ:', 1349 1347 'Skipping template \'[_1]\' since it appears to be a custom template.' => 'ã«ã¹ã¿ã ãã³ãã¬ãŒããšæãããããã\'[_1]\'ãã¹ãããããŸãã', … … 2047 2045 'Moving OpenID usernames to external_id fields...' => 'æ¢åã®OpenIDãŠãŒã¶ãŒåãç§»åããŠããŸã...', 2048 2046 'Assigning blog template set...' => 'ããã°ã«ãã³ãã¬ãŒãã»ãããèšå®ããŠããŸã...', 2049 'Assigning blog page layout...' => 'ããã°ã«ããŒãžã¬ã€ã¢ãŠããèšå®ããŠããŸã...', # Translate - New2047 'Assigning blog page layout...' => 'ããã°ã«ããŒãžã¬ã€ã¢ãŠããèšå®ããŠããŸã...', 2050 2048 2051 2049 ## lib/MT/XMLRPCServer.pm … … 2486 2484 'Save this entry' => 'ããã°èšäºãä¿å', 2487 2485 'Save this entry (s)' => 'ããã°èšäºãä¿åãã (s)', 2488 'Re-Edit this entry' => 'ããã°èšäºãåç·šé', # Translate - New2489 'Re-Edit this entry (e)' => 'ããã°èšäºãåç·šéãã (e)', # Translate - New2486 'Re-Edit this entry' => 'ããã°èšäºãåç·šé', 2487 'Re-Edit this entry (e)' => 'ããã°èšäºãåç·šéãã (e)', 2490 2488 'Save this page' => 'ãŠã§ãããŒãžãä¿å', 2491 2489 'Save this page (s)' => 'ãŠã§ãããŒãžãä¿åãã (s)', 2492 'Re-Edit this page' => 'ãŠã§ãããŒãžãåç·šé', # Translate - New2493 'Re-Edit this page (e)' => 'ãŠã§ãããŒãžãåç·šéãã', # Translate - New2490 'Re-Edit this page' => 'ãŠã§ãããŒãžãåç·šé', 2491 'Re-Edit this page (e)' => 'ãŠã§ãããŒãžãåç·šéãã', 2494 2492 'You are previewing the entry titled “[_1]”' => 'ããã°èšäº “[_1]”ã®ãã¬ãã¥ãŒ', 2495 2493 'You are previewing the page titled “[_1]”' => 'ãŠã§ãããŒãž “[_1]”ã®ãã¬ãã¥ãŒ', … … 2839 2837 'View entry' => 'ããã°èšäºãèŠã', 2840 2838 'View page' => 'ãŠã§ãããŒãžã衚瀺', 2841 'No entries could be found. <a href="[_1]">Create an entry</a> now.' => 'ããã°èšäºãèŠã€ãããŸããã§ããã<a href="[_1]">ããã°èšäºã®äœæ</a>', # Translate - New2842 'No page could be found. <a href="[_1]">Create a page</a> now.' => 'ãŠã§ãããŒãžãèŠã€ãããŸããã§ããã<a href="[_1]">ãŠã§ãããŒãžã®äœæ</a>', # Translate - New2839 '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>', 2843 2841 2844 2842 ## tmpl/cms/include/archive_maps.tmpl … … 3072 3070 ## tmpl/cms/list_blog.tmpl 3073 3071 'You have successfully deleted the blogs from the Movable Type system.' => 'ã·ã¹ãã ããããã°ãåé€ããŸããã', 3072 'You have successfully refreshed your templates.' => 'ãã³ãã¬ãŒãã®åæåãå®äºããŸããã', 3074 3073 'Create Blog' => 'ããã°ãäœæãã', 3075 'Are you sure you want to delete this blog?' => 'ãã®ããã°ãåé€ããŠããããã§ãã',3076 3074 3077 3075 ## tmpl/cms/edit_commenter.tmpl … … 3201 3199 'All Templates' => 'ãã¹ãŠã®ãã³ãã¬ãŒã', 3202 3200 'You have successfully deleted the checked template(s).' => 'éžæãããã³ãã¬ãŒããåé€ããŸããã', 3203 'You have successfully refreshed your templates.' => 'ãã³ãã¬ãŒãã®åæåãå®äºããŸããã',3204 3201 'Your templates have been published.' => 'ãã³ãã¬ãŒããåæ§ç¯ããŸããã', 3205 3202 'Create Archive Template:' => 'ã¢ãŒã«ã€ããã³ãã¬ãŒããäœæ:', … … 3211 3208 '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ãããã°ããŒã«ããããã°èšäºãç§»è¡ããããããã°èšäºã®ã³ããŒãäœæããŸãã', 3212 3209 'Import data into' => 'ã€ã³ããŒãå 3213 ', # Translate - New3210 ', 3214 3211 'Select a blog to import.' => 'ã€ã³ããŒãå 3215 3212 ã®ããã°ãéžæããŠãã ããã', … … 3282 3279 'You have successfully deleted the checked comment(s).' => 'éžæããã³ã¡ã³ããåé€ããŸããã', 3283 3280 'You have successfully deleted the checked TrackBack(s).' => 'éžæãããã©ãã¯ããã¯ãåé€ããŸããã', 3284 'Change Folder' => 'ãã©ã«ãã®å€æŽ', # Translate - New3281 'Change Folder' => 'ãã©ã«ãã®å€æŽ', 3285 3282 'Stats' => 'æ 3286 3283 å ±', … … 3306 3303 'Warning: Changing this entry\'s basename may break inbound links.' => 'èŠå: ãã®ããã°èšäºã®åºåãã¡ã€ã«åã®å€æŽã¯ãå 3307 3304 éšã®ãªã³ã¯åãã®åå ãšãªããŸãã', 3308 'edit' => 'ç·šé', # Translate - Case3309 'close' => 'éãã', # Translate - Case3305 'edit' => 'ç·šé', 3306 'close' => 'éãã', 3310 3307 'Accept' => 'åä¿¡èšå®', 3311 3308 'Outbound TrackBack URLs' => 'ãã©ãã¯ããã¯éä¿¡å … … 3966 3963 'Collapse' => 'æãããã', 3967 3964 'Expand' => 'å±éãã', 3968 'Create Subcategory' => 'ãµãã«ããŽãªã®äœæ', # Translate - New3965 'Create Subcategory' => 'ãµãã«ããŽãªã®äœæ', 3969 3966 'Move Category' => 'ã«ããŽãªã®ç§»å', 3970 3967 '[quant,_1,TrackBack,TrackBacks]' => '[quant,_1,ãã©ãã¯ããã¯,ãã©ãã¯ããã¯]', … … 4400 4397 'Updates current templates while retaining any user-created or user-modified templates.' => 'ãã³ãã¬ãŒããåæåããŸãããŠãŒã¶ãŒãäœæãŸãã¯ã«ã¹ã¿ãã€ãºãããã³ãã¬ãŒãã¯åæåããŸããã', 4401 4398 'Apply a new template set' => 'æ°ãããã³ãã¬ãŒãã»ãããé©çš', 4402 'Deletes all existing templates and install the selected template set.' => 'æ¢åã®ãã³ãã¬ãŒãããã¹ãŠåé€ããŠãéžæãããæ°ãããã³ãã¬ãŒãã»ãããé©çšããŸãã', # Translate - New4403 'Reset to factory defaults' => ' ãªã»ããããŠåæç¶æ4404 ã« æ»ããŸãã', # Translate - New4399 'Deletes all existing templates and install the selected template set.' => 'æ¢åã®ãã³ãã¬ãŒãããã¹ãŠåé€ããŠãéžæãããæ°ãããã³ãã¬ãŒãã»ãããé©çšããŸãã', 4400 'Reset to factory defaults' => 'åæç¶æ 4401 ã«ãªã»ãã', 4405 4402 'Deletes all existing templates and installs factory default template set.' => 'æ¢åã®ãã³ãã¬ãŒãããã¹ãŠåé€ããŠãè£œåæ¢å®ã®ãã³ãã¬ãŒãã»ãããã€ã³ã¹ããŒã«ããŸãã', 4406 4403 'Make backups of existing templates first' => 'æ¢åã®ãã³ãã¬ãŒãã®ããã¯ã¢ãããäœæãã', -
branches/release-29/lib/MT/L10N/nl.pm
r1247 r1308 2 2 # permission from www.sixapart.com. 3 3 # 4 # $Id :$4 # $Id$ 5 5 6 6 package MT::L10N::nl; … … 150 150 151 151 ## 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]', 154 154 155 155 ## default_templates/comment_form.mtml … … 194 194 195 195 ## default_templates/entry_metadata.mtml 196 'By [_1] on [_2]' => 'Door [_1] op [_2]',197 196 'Permalink' => 'Permalink', 198 197 'Comments ([_1])' => 'Reacties ([_1])', … … 231 230 '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>.', 232 231 'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'TrackBack URL voor dit bericht: <span id="trackbacks-link">[_1]</span>', 233 ' » <a href="[_1]">[_2]</a> from [_3]' => '» <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>', 234 233 '[_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>',236 234 237 235 ## default_templates/sidebar.mtml … … 683 681 'User' => 'Gebruiker', 684 682 'Invalid type' => 'Ongeldig type', 683 'Entries' => 'Berichten', 685 684 'New name of the tag must be specified.' => 'Nieuwe naam van de tag moet opgegeven worden', 686 685 'No such tag' => 'Onbekende tag', … … 697 696 'Blog Activity Feed' => 'Blogactiviteitsfeed', 698 697 '*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.', 699 699 'All Feedback' => 'Alle feedback', 700 700 'Publishing' => 'Publicatie', … … 711 711 'Load failed: [_1]' => 'Laden mislukt: [_1]', 712 712 '(no reason given)' => '(geen reden vermeld)', 713 'Entries' => 'Berichten',714 713 'Pages' => 'Pagina\'s', 715 714 '(untitled)' => '(geen titel)', … … 988 987 'You can\'t reply to unapproved comment.' => 'U kunt niet antwoorden op een niet-gekeurde reactie.', 989 988 'You can\'t reply to unpublished comment.' => 'U kunt niet reageren op een niet gepubliceerde reactie.', 990 ' (Backup from [_1])' => ' (Backup van [_1])', # Translate - New989 ' (Backup from [_1])' => ' (Backup van [_1])', 991 990 'Error creating new template: ' => 'Fout bij aanmaken nieuw sjabloon: ', 992 991 'Skipping template \'[_1]\' since it appears to be a custom template.' => 'Sjabloon \'[_1]\' wordt overgeslagen, omdat het blijkbaar een gepersonaliseerd sjabloon is.', … … 1233 1232 'Moving OpenID usernames to external_id fields...' => 'OpenID gebruikersnamen aan het verplaatsen naar external_id velden...', 1234 1233 'Assigning blog template set...' => 'Blog sjabloonset aan het toekennen...', 1235 'Assigning blog page layout...' => 'Blog pagina layout aan het toekennen...', # Translate - New1234 'Assigning blog page layout...' => 'Blog pagina layout aan het toekennen...', 1236 1235 1237 1236 ## lib/MT/Core.pm … … 1692 1691 'Plugin error: [_1] [_2]' => 'Plugin fout: [_1] [_2]', 1693 1692 'Loading template \'[_1]\' failed.' => 'Laden van sjabloon \'[_1]\' mislukt.', 1694 '__PORTAL_URL__' => ' ', # Translate - New1693 '__PORTAL_URL__' => 'http://www.movabletype.org', 1695 1694 'http://www.movabletype.org/documentation/' => 'http://www.movabletype.org/documentation/', 1696 1695 'OpenID' => 'OpenID', … … 2089 2088 'View entry' => 'Bericht bekijken', 2090 2089 '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 - New2092 '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 - New2090 '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>.', 2093 2092 2094 2093 ## tmpl/cms/include/login_mt.tmpl … … 2315 2314 '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.', 2316 2315 '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', 2317 2318 'Deletes all existing templates and installs factory default template set.' => 'Verwijdert alle bestaande sjablonen en installeert de standaard sjabloonset uit de \'fabrieksinstellingen\'.', 2318 2319 'Make backups of existing templates first' => 'Eerst backups nemen van bestaande sjablonen', … … 2576 2577 ## tmpl/cms/list_blog.tmpl 2577 2578 '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.', 2578 2580 'Create Blog' => 'Blog aanmaken', 2579 'Are you sure you want to delete this blog?' => 'Bent u zeker dat u deze weblog wenst te verwijderen?',2580 2581 2581 2582 ## tmpl/cms/edit_template.tmpl … … 2790 2791 'Preview this page (v)' => 'Voorbeeld pagina bekijken (v)', 2791 2792 'Delete this page (x)' => 'Pagina verwijderen (x)', 2792 'View Page' => 'Pagina bekijken', # Translate - Case2793 'View Page' => 'Pagina bekijken', 2793 2794 'Add category' => 'Categorie toevoegen', 2794 2795 'Add category name' => 'Categorienaam toevoegen', … … 2798 2799 'Delete this entry (x)' => 'Bericht verwijderen (x)', 2799 2800 '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 - New2801 '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 - New2802 'This entry has been saved.' => 'Dit bericht werd opgeslagen', # Translate - New2803 'This page has been saved.' => 'Deze pagina werd opgeslagen', # Translate - New2801 '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', 2804 2805 '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.', 2805 2806 '_USAGE_VIEW_LOG' => 'Controleer het <a href=\"[_1]\">Activiteitenlog</a> op deze fout.', … … 2807 2808 'Your changes to the comment have been saved.' => 'Uw wijzigingen aan de reactie zijn opgeslagen.', 2808 2809 '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 - New2810 'You have successfully recovered your saved page.' => 'Veiligheidskopie van opgeslagen pagina met succes teruggehaald.', # Translate - New2811 'An error occurred while trying to recover your saved entry.' => 'Er deed zich een fout voor bij het terughalen van uw opgeslagen bericht.', # Translate - New2812 'An error occurred while trying to recover your saved page.' => 'Er deed zich een fout voor bij het terughalen van uw opgeslagen pagina.', # Translate - New2810 '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.', 2813 2814 'You have successfully deleted the checked comment(s).' => 'Verwijdering van de geselecteerde reactie(s) is geslaagd.', 2814 2815 'You have successfully deleted the checked TrackBack(s).' => 'U heeft de geselecteerde TrackBack(s) met succes verwijderd.', 2815 'Change Folder' => 'Map wijzigen', # Translate - New2816 'Stats' => 'Statistieken', # Translate - New2817 'Share' => 'Delen', # Translate - New2818 '<a href="[_2]">[quant,_1,comment,comments]</a>' => '<a href="[_2]">[quant,_1,reactie,reacties]</a>', # Translate - New2819 '<a href="[_2]">[quant,_1,trackback,trackbacks]</a>' => '<a href="[_2]">[quant,_1,trackback,trackbacks]</a>', # Translate - New2816 '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>', 2820 2821 '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 - New2822 'You must configure this blog before you can publish this page.' => 'U moet deze weblog configureren voor u deze pagina kunt publiceren.', # Translate - New2823 '[_1] - Created by [_2]' => '[_1] - aangemaakt door [_2]', # Translate - New2824 '[_1] - Published by [_2]' => '[_1] - gepubliceerd door [_2]', # Translate - New2825 '[_1] - Edited by [_2]' => '[_1] - bewerkt door [_2]', # Translate - New2822 '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]', 2826 2827 'Publish On' => 'Publiceren op', 2827 2828 'Publish Date' => 'Datum publicatie', … … 2835 2836 'Outbound TrackBack URLs' => 'Uitgaande TrackBack URLs', 2836 2837 '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 - New2838 'You have unsaved changes to this page that will be lost.' => 'U heeft niet opgeslagen wijzigingen aan deze pagina die verloren zullen gaan.', # Translate - New2838 '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.', 2839 2840 'Enter the link address:' => 'Vul het adres van de link in:', 2840 2841 'Enter the text to link to:' => 'Vul de tekst van de link in:', … … 2855 2856 '(space-delimited list)' => '(lijst gescheiden met spaties)', 2856 2857 '(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 - New2858 2858 'None selected' => 'Geen geselecteerd', 2859 2859 … … 2930 2930 2931 2931 ## tmpl/cms/refresh_results.tmpl 2932 'Template Refresh' => 'Sjabloonverversing', # Translate - New2932 'Template Refresh' => 'Sjabloonverversing', 2933 2933 'No templates were selected to process.' => 'Er werden geen sjablonen geselecteerd om te bewerken.', 2934 2934 'Return to templates' => 'Terugkeren naar sjablonen', … … 2953 2953 'Your folder changes have been made.' => 'De wijzigingen aan de map zijn uitgevoerd.', 2954 2954 '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 - New2955 'Save changes to this folder (s)' => 'Wijzigingen aan deze map opslaan (s)', 2956 2956 2957 2957 ## tmpl/cms/list_notification.tmpl … … 2993 2993 'Trackback URLs' => 'TrackBack URL\'s', 2994 2994 '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 - New2995 'Save changes to this category (s)' => 'Wijzigingen aan deze categorie opslaan (s)', 2996 2996 2997 2997 ## tmpl/cms/list_banlist.tmpl … … 3013 3013 'The selected TrackBack(s) has been deleted from the database.' => 'De geselecteerde TrackBack(s) zijn uit de database verwijderd.', 3014 3014 'No TrackBacks appeared to be spam.' => 'Geen enkele TrackBack leek spam te zijn.', 3015 'Show only [_1] where' => 'Enkel [_1] tonen waar', # Translate - New3015 'Show only [_1] where' => 'Enkel [_1] tonen waar', 3016 3016 'approved' => 'goedgekeurd', 3017 3017 'unapproved' => 'niet goedgekeurd', … … 3068 3068 'Blog Templates' => 'Blogsjablonen', 3069 3069 'Blog Publishing Settings' => 'Blogpublicatie-instellingen', 3070 'All Templates' => 'Alle sjablonen', # Translate - New3070 'All Templates' => 'Alle sjablonen', 3071 3071 '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.', 3074 3073 'Create Archive Template:' => 'Archiefsjabloon aanmaken:', 3075 3074 'Create [_1] template' => 'Nieuw [_1] sjabloon aanmaken', … … 3086 3085 'Rename' => 'Naam wijzigen', 3087 3086 'Show all [_1] with this tag' => 'Alle [_1] tonen met deze tag', 3088 '[quant,_1,_2,_3]' => '[quant,_1,_2,_3]', # Translate - New3087 '[quant,_1,_2,_3]' => '[quant,_1,_2,_3]', 3089 3088 '[quant,_1,entry,entries]' => '[quant,_1,bericht,berichten]', 3090 3089 '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?', … … 3136 3135 'Your Web services password is currently' => 'Uw huidig webservices wachtwoord is', 3137 3136 '_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 - New3137 'Error occurred while removing userpic.' => 'Er deed zich een fout voor bij het verwijderen van de gebruikersafbeelding', 3139 3138 '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.', 3140 3139 '_USER_PENDING' => 'Te keuren', … … 3170 3169 'Options' => 'Opties', 3171 3170 'Create personal blog for user' => 'Persoonlijke blog aanmaken voor gebruiker', 3172 'Create User (s)' => 'Gebruiker aanmaken (s)', # Translate - New3173 'Save changes to this author (s)' => 'Wijzigingen aan deze auteur opslaan (s)', # Translate - New3171 'Create User (s)' => 'Gebruiker aanmaken (s)', 3172 'Save changes to this author (s)' => 'Wijzigingen aan deze auteur opslaan (s)', 3174 3173 '_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].', 3175 3174 'Initiate Password Recovery' => 'Procedure starten om wachtwoord terug te halen', … … 3177 3176 ## tmpl/cms/edit_comment.tmpl 3178 3177 'The comment has been approved.' => 'De reactie is goedgekeurd.', 3179 'Save changes to this comment (s)' => 'Wijzigingen aan deze reactie opslaan (s)', # Translate - New3180 'Delete this comment (x)' => 'Deze reactie verwijderen (x)', # Translate - New3178 'Save changes to this comment (s)' => 'Wijzigingen aan deze reactie opslaan (s)', 3179 'Delete this comment (x)' => 'Deze reactie verwijderen (x)', 3181 3180 'Previous Comment' => 'Vorige reactie', 3182 3181 'Next Comment' => 'Volgende reactie', … … 3220 3219 ## tmpl/cms/list_asset.tmpl 3221 3220 '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 - New3221 'Show only assets where' => 'Enkel mediabestanden tonen waar', 3223 3222 'type' => 'type', 3224 3223 … … 3226 3225 'You must select a blog to import.' => 'U moet een blog selecteren om te importeren.', 3227 3226 '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', 3229 3228 'Select a blog to import.' => 'Kies een blog om te importeren', 3230 3229 'Importing from' => 'Aan het importeren uit', … … 3333 3332 3334 3333 ## tmpl/cms/edit_asset.tmpl 3335 'Edit Asset' => 'Mediabestand bewerken', # Translate - New3336 'Your asset changes have been made.' => 'De wijzigingen aan uw mediabestanden zijn aangebracht.', # Translate - New3337 '[_1] - Modified by [_2]' => '[_1] - aangepast door [_2]', # Translate - New3338 'Appears in...' => 'Komt voor in...', # Translate - New3339 'Published on [_1]' => 'Gepubliceerd op [_1]', # Translate - New3340 'Show all entries' => 'Alle berichten tonen', # Translate - New3341 'Show all pages' => 'Alle pagina\'s tonen', # Translate - New3342 'This asset has not been used.' => 'Dit mediabestand wordt nergens gebruikt.', # Translate - New3343 'Related Assets' => 'Gerelateerde mediabestanden', # Translate - New3344 'You must specify a label for the asset.' => 'U moet een label opgeven voor dit mediabestand.', # Translate - New3345 'Embed Asset' => 'Mediabestand inbedden', # Translate - New3346 'Save changes to this asset (s)' => 'Wijzigingen aan dit mediabestand opslaan (s)', # Translate - New3334 '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)', 3347 3346 3348 3347 ## tmpl/cms/upgrade.tmpl … … 3367 3366 'You can not have spaces in your Local Site Path.' => 'Er mogen geen spaties in het locale pad van uw site.', 3368 3367 'Your Local Site Path is not valid.' => 'Het lokale pad van uw site is niet geldig.', 3369 'Blog Details' => 'Blog details', # Translate - New3368 'Blog Details' => 'Blog details', 3370 3369 '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.', 3371 3370 '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/', 3372 3371 '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 - New3372 'Create Blog (s)' => 'Blog aanmaken (s)', 3374 3373 3375 3374 ## tmpl/cms/pinging.tmpl … … 3394 3393 'Re-Edit this [_1] (e)' => '[_1] opnieuw bewerken (e)', 3395 3394 'Save this [_1]' => '[_1] bewaren', 3396 'Save this [_1] (s)' => 'Deze [_1] opslaan (s)', # Translate - New3395 'Save this [_1] (s)' => 'Deze [_1] opslaan (s)', 3397 3396 'Cancel (c)' => 'Annuleer (c)', 3398 3397 3399 3398 ## tmpl/cms/list_folder.tmpl 3400 'Manage Folders' => 'Mappen beheren', # Translate - New3401 'Your folder changes and additions have been made.' => 'De wijzigingen en toevoegingen aan uw mappen zijn aangebracht.', # Translate - New3402 'You have successfully deleted the selected folder.' => 'De geselecteerde map werden met succes verwijderd.', # Translate - New3403 'Delete selected folders (x)' => 'Geselecteerde mappen verwijderen (x)', # Translate - New3404 'Create top level folder' => 'Nieuwe map op topniveau aanmaken', # Translate - New3399 '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', 3405 3404 'New Parent [_1]' => 'Nieuwe ouder-[_1]', 3406 'Create Folder' => 'Map aanmaken', # Translate - New3405 'Create Folder' => 'Map aanmaken', 3407 3406 'Top Level' => 'Topniveau', 3408 'Create Subfolder' => 'Submap aanmaken', # Translate - New3409 'Move Folder' => 'Map verplaatsen', # Translate - New3407 'Create Subfolder' => 'Submap aanmaken', 3408 'Move Folder' => 'Map verplaatsen', 3410 3409 'Move' => 'Verplaatsen', 3411 3410 '[quant,_1,page,pages]' => '[quant,_1,pagina,pagina\'s]', 3412 'No folders could be found.' => 'Er werden geen mappen gevonden.', # Translate - New3411 'No folders could be found.' => 'Er werden geen mappen gevonden.', 3413 3412 3414 3413 ## tmpl/cms/list_association.tmpl 3415 3414 'permission' => 'permissie', 3416 3415 'permissions' => 'permissies', 3417 'Remove selected permissions (x)' => 'Geselecteerde permissies verwijderen (x)', # Translate - New3416 'Remove selected permissions (x)' => 'Geselecteerde permissies verwijderen (x)', 3418 3417 'Revoke Permission' => 'Permissie intrekken', 3419 3418 '[_1] <em>[_2]</em> is currently disabled.' => '[_1] <em>[_2]</em> is momenteel uitgeschakeld.', 3420 3419 'Grant Permission' => 'Permissie toekennen', 3421 'You can not create permissions for disabled users.' => 'U kunt geen permissies aanmaken voor non-actieve gebruikers.', # Translate - New3420 'You can not create permissions for disabled users.' => 'U kunt geen permissies aanmaken voor non-actieve gebruikers.', 3422 3421 'Assign Role to User' => 'Ken rol toe aan gebruiker', 3423 3422 'Grant permission to a user' => 'Ken permissie toe aan gebruiker', 3424 3423 'You have successfully revoked the given permission(s).' => 'De gekozen permissie(s) zijn met succes ingetrokken.', 3425 3424 '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 - New3425 'No permissions could be found.' => 'Er werden geen permissies gevonden.', 3427 3426 3428 3427 ## tmpl/cms/login.tmpl … … 3434 3433 3435 3434 ## 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 - New3437 'You have successfully deleted the selected category.' => 'De geselecteerde categorie werd met succes verwijderd.', # Translate - New3435 '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.', 3438 3437 'categories' => 'categorieën', 3439 'Delete selected category (x)' => 'Geselecteerde categorie verwijderen (x)', # Translate - New3440 'Create top level category' => 'Hoofdcategorie aanmaken', # Translate - New3441 'Create Category' => 'Categorie aanmaken', # Translate - New3438 'Delete selected category (x)' => 'Geselecteerde categorie verwijderen (x)', 3439 'Create top level category' => 'Hoofdcategorie aanmaken', 3440 'Create Category' => 'Categorie aanmaken', 3442 3441 'Collapse' => 'Inklappen', 3443 3442 'Expand' => 'Uitklappen', 3444 'Move Category' => 'Categorie verplaatsen', # Translate - New 3443 'Create Subcategory' => 'Subcategorie aanmaken', 3444 'Move Category' => 'Categorie verplaatsen', 3445 3445 '[quant,_1,TrackBack,TrackBacks]' => '[quant,_1,TrackBack,TrackBacks]', 3446 'No categories could be found.' => 'Er werden categorieën gevonden.', # Translate - New3446 'No categories could be found.' => 'Er werden categorieën gevonden.', 3447 3447 3448 3448 ## tmpl/cms/cfg_entry.tmpl … … 3590 3590 3591 3591 ## tmpl/cms/preview_strip.tmpl 3592 'Save this entry' => 'Dit bericht opslaan', # Translate - New3593 'Re-Edit this entry' => 'Dit bericht opnieuw bewerken', # Translate - New3594 'Re-Edit this entry (e)' => 'Dit bericht opnieuw bewerken (e)', # Translate - New3595 'Save this page' => 'Deze pagina opslaan', # Translate - New3596 'Re-Edit this page' => 'Deze pagina opnieuw bewerken', # Translate - New3597 'Re-Edit this page (e)' => 'Deze pagina opnieuw bewerken (e)', # Translate - New3598 'You are previewing the entry titled “[_1]”' => 'U bekijkt een voorbeeld van het bericht met de titel “[_1]”', # Translate - New3599 'You are previewing the page titled “[_1]”' => 'U bekijkt een voorbeeld van de pagina met de titel “[_1]”', # Translate - New3592 '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 “[_1]”' => 'U bekijkt een voorbeeld van het bericht met de titel “[_1]”', 3599 'You are previewing the page titled “[_1]”' => 'U bekijkt een voorbeeld van de pagina met de titel “[_1]”', 3600 3600 3601 3601 ## tmpl/cms/edit_ping.tmpl … … 3603 3603 'The TrackBack has been approved.' => 'De TrackBack is goedgekeurd.', 3604 3604 'List & Edit TrackBacks' => 'TrackBacks tonen & bewerken', 3605 'Save changes to this TrackBack (s)' => 'Wijzigingen aan deze TrackBack opslaan (s)', # Translate - New3606 'Delete this TrackBack (x)' => 'Deze TrackBack verwijderen (x)', # Translate - New3605 'Save changes to this TrackBack (s)' => 'Wijzigingen aan deze TrackBack opslaan (s)', 3606 'Delete this TrackBack (x)' => 'Deze TrackBack verwijderen (x)', 3607 3607 'Update the status of this TrackBack' => 'Status van deze TrackBack bijwerken', 3608 3608 'Junk' => 'Spam', <… …
