Index: /branches/athena/php/lib/archive_lib.php
===================================================================
--- /branches/athena/php/lib/archive_lib.php (revision 1090)
+++ /branches/athena/php/lib/archive_lib.php (revision 1092)
@@ -915,10 +915,16 @@
             }
         #}
-        $ts = $ctx->stash('current_timestamp');
-        $tsend = $ctx->stash('current_timestamp_end');
-        if ($ts && $tsend) {
-            $ts = $mt->db->ts2db($ts);
-            $tsend = $mt->db->ts2db($tsend);
-            $date_filter = "and (entry_authored_on between '$ts' and '$tsend')";
+        $inside = $ctx->stash('inside_archive_list');
+        if (!isset($inside)) {
+          $inside = false;
+        }
+        if ($inside) {
+            $ts = $ctx->stash('current_timestamp');
+            $tsend = $ctx->stash('current_timestamp_end');
+            if ($ts && $tsend) {
+                $ts = $mt->db->ts2db($ts);
+                $tsend = $mt->db->ts2db($tsend);
+                $date_filter = "and (entry_authored_on between '$ts' and '$tsend')";
+            }
         }
 
@@ -1015,10 +1021,16 @@
             }
         #}
-        $ts = $ctx->stash('current_timestamp');
-        $tsend = $ctx->stash('current_timestamp_end');
-        if ($ts && $tsend) {
-            $ts = $mt->db->ts2db($ts);
-            $tsend = $mt->db->ts2db($tsend);
-            $date_filter = "and (entry_authored_on between '$ts' and '$tsend')";
+        $inside = $ctx->stash('inside_archive_list');
+        if (!isset($inside)) {
+          $inside = false;
+        }
+        if ($inside) {
+            $ts = $ctx->stash('current_timestamp');
+            $tsend = $ctx->stash('current_timestamp_end');
+            if ($ts && $tsend) {
+                $ts = $mt->db->ts2db($ts);
+                $tsend = $mt->db->ts2db($tsend);
+                $date_filter = "and (entry_authored_on between '$ts' and '$tsend')";
+            }
         }
 
@@ -1120,10 +1132,16 @@
             }
         #}
-        $ts = $ctx->stash('current_timestamp');
-        $tsend = $ctx->stash('current_timestamp_end');
-        if ($ts && $tsend) {
-            $ts = $mt->db->ts2db($ts);
-            $tsend = $mt->db->ts2db($tsend);
-            $date_filter = "and (entry_authored_on between '$ts' and '$tsend')";
+        $inside = $ctx->stash('inside_archive_list');
+        if (!isset($inside)) {
+          $inside = false;
+        }
+        if ($inside) {
+            $ts = $ctx->stash('current_timestamp');
+            $tsend = $ctx->stash('current_timestamp_end');
+            if ($ts && $tsend) {
+                $ts = $mt->db->ts2db($ts);
+                $tsend = $mt->db->ts2db($tsend);
+                $date_filter = "and (entry_authored_on between '$ts' and '$tsend')";
+            }
         }
 
Index: /branches/athena/php/lib/mtdb_base.php
===================================================================
--- /branches/athena/php/lib/mtdb_base.php (revision 1091)
+++ /branches/athena/php/lib/mtdb_base.php (revision 1092)
@@ -236,4 +236,6 @@
             } elseif (preg_match('/Yearly$/', $at)) {
                 $ts = substr($ts, 0, 4) . '0101000000';
+            } elseif ($at == 'Individual') {
+                $filter .= "and fileinfo_entry_id = $eid";
             }
             if ($ts != $entry['entry_authored_on']) {
Index: /branches/athena/php/lib/block.mtarchivelist.php
===================================================================
--- /branches/athena/php/lib/block.mtarchivelist.php (revision 1090)
+++ /branches/athena/php/lib/block.mtarchivelist.php (revision 1092)
@@ -2,5 +2,5 @@
 require_once "archive_lib.php";
 function smarty_block_mtarchivelist($args, $content, &$ctx, &$repeat) {
-    $localvars = array('current_archive_type', 'current_timestamp', 'current_timestamp_end', 'entries', 'archive_count', '_archive_list_num', '_archive_list_results','entry','ArchiveListHeader', 'ArchiveListFooter');
+  $localvars = array('current_archive_type', 'current_timestamp', 'current_timestamp_end', 'entries', 'archive_count', '_archive_list_num', '_archive_list_results','entry','ArchiveListHeader', 'ArchiveListFooter', 'inside_archive_list');
     global $_archivers;
     if (!isset($content)) {
@@ -43,5 +43,5 @@
         # allow <MTEntries> to load them
         $ctx->stash('entries', null);
-        $ctx->stash('inside_archive_list', true);
+        $ctx->stash('inside_archive_list',true);
         $i = 0;
     } else {
Index: /branches/athena/php/mt.php.pre
===================================================================
--- /branches/athena/php/mt.php.pre (revision 1090)
+++ /branches/athena/php/mt.php.pre (revision 1092)
@@ -292,5 +292,5 @@
             $cfg['staticwebpath'] = $cfg['cgipath'] . 'mt-static/';
         isset($cfg['publishcharset']) or
-            $cfg['publishcharset'] = 'utf-8';
+            $cfg['publishcharset'] = '__PUBLISH_CHARSET__';
         isset($cfg['trackbackscript']) or
             $cfg['trackbackscript'] = 'mt-tb.cgi';
@@ -306,5 +306,5 @@
             $cfg['searchscript'] = 'mt-search.cgi';
         isset($cfg['defaultlanguage']) or
-            $cfg['defaultlanguage'] = 'en_US';
+            $cfg['defaultlanguage'] = '__BUILD_LANGUAGE__';
         isset($cfg['globalsanitizespec']) or
             $cfg['globalsanitizespec'] = 'a href,b,i,br/,p,strong,em,ul,ol,li,blockquote,pre';
Index: /anches/athena/tools/list-index
===================================================================
--- /branches/athena/tools/list-index (revision 1083)
+++  (revision )
@@ -1,17 +1,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-use DB_File;
-
-for my $idx_file (@ARGV) {
-    print "Listing '$idx_file':\n";
-    my $db = tie my %new_idx, 'DB_File', $idx_file, 0, 0666, $DB_BTREE;
-    die "Can't tie $idx_file: $!" unless $db;
-
-    for my $k (keys %new_idx) {
-        print "\t$k => ", join(' ', split /$;/, $new_idx{$k}), "\n";
-    }
-    print "\n";
-
-    untie %new_idx;
-}
Index: /anches/athena/tools/rebuild-indexes
===================================================================
--- /branches/athena/tools/rebuild-indexes (revision 1083)
+++  (revision )
@@ -1,56 +1,0 @@
-#!/usr/bin/perl -w
-use strict;
-
-use lib 'lib';
-
-my($cfg_file, $class) = @ARGV or die "usage: $0 <config> <object-class>";
-
-use MT;
-use DB_File;
-use File::Spec;
-use MT::ConfigMgr;
-use MT::Object;
-
-my $mt = new MT(Config => $cfg_file);
-
-my $cfg = MT::ConfigMgr->instance;
-
-eval "use $class;";
-die "Loading '$class' failed: $@" if $@;
-
-my $props = $class->properties;
-my $indexes = $props->{indexes};
-unless ($indexes && keys %$indexes) {
-    print "No indexes to rebuild... exiting.\n";
-    exit;
-}
-
-print "Indexes:\n";
-my %idx;
-for my $idx_col (keys %$indexes) {
-    my $idx_file = File::Spec->catfile($cfg->DataSource,
-        $class->datasource . '.' . $idx_col . '.idx');
-    print "\t$idx_col => $idx_file\n";
-    tie %{ $idx{$idx_col} }, 'DB_File', $idx_file, O_RDWR|O_CREAT,
-        0666, $DB_BTREE or die "Tie to '$idx_file' failed: $!";
-    %{ $idx{$idx_col} } = ();
-}
-print "\n";
-
-my $iter = $class->load_iter;
-while (my $obj = $iter->()) {
-    my $id = $obj->id;
-    for my $idx_col (keys %$indexes) {
-        my $idx = $idx{$idx_col};
-        my $col_value = $obj->$idx_col() || '';
-        my @cur = split /$;/, $idx->{$col_value} || '';
-        my %ids = map { $_ => 1 } @cur;
-        next if exists $ids{$id};
-        $col_value ||= 0 if ($idx_col =~ m/(id|status|number)$/ || $idx_col =~ m/_is_/);
-        $idx->{$col_value} = join $;, keys %ids, $id;
-    }
-}
-
-for my $idx_col (keys %$indexes) {
-    untie %{ $idx{$idx_col} };
-}
Index: /branches/athena/default_templates/entry_summary.mtml
===================================================================
--- /branches/athena/default_templates/entry_summary.mtml (revision 1088)
+++ /branches/athena/default_templates/entry_summary.mtml (revision 1092)
@@ -19,3 +19,4 @@
 </MTIfNonEmpty>
     </div>
+    <div class="asset-footer"></div>
 </div>
Index: /branches/athena/default_templates/comment_response.mtml
===================================================================
--- /branches/athena/default_templates/comment_response.mtml (revision 1090)
+++ /branches/athena/default_templates/comment_response.mtml (revision 1092)
@@ -20,4 +20,5 @@
     <p><__trans phrase="Your comment has been received and held for approval by the blog owner."></p>
     </MTSetVarBlock>
+
 </MTIf>
 
Index: /branches/athena/default_templates/entry_detail.mtml
===================================================================
--- /branches/athena/default_templates/entry_detail.mtml (revision 1088)
+++ /branches/athena/default_templates/entry_detail.mtml (revision 1092)
@@ -2,4 +2,5 @@
     <div class="asset-header">
         <h1 class="asset-name"><$MTEntryTitle$></h1>
+        <$MTInclude module="<__trans phrase="Entry Metadata">"$>
     </div>
     <div class="asset-content">
@@ -19,6 +20,4 @@
         <$MTInclude module="<__trans phrase="Tags">"$>
     </div>
-    <div class="asset-footer">
-        <$MTInclude module="<__trans phrase="Entry Metadata">"$>
-    </div>
+    <div class="asset-footer"></div>
 </div>
Index: /branches/athena/default_templates/comment_form.mtml
===================================================================
--- /branches/athena/default_templates/comment_form.mtml (revision 1091)
+++ /branches/athena/default_templates/comment_form.mtml (revision 1092)
@@ -13,9 +13,4 @@
             </div>
     </MTIfRegistrationAllowed>
-    <MTIfCommentsModerated>
-            <div class="comments-open-moderated">
-                <__trans phrase="(If you haven't left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won't appear on the entry. Thanks for waiting.)">
-            </div>
-    </MTIfCommentsModerated>
         <form method="post" action="<$MTCGIPath$><$MTCommentScript$>" name="comments_form" id="comments-form" onsubmit="if (this.bakecookie.checked) rememberMe(this)">
             <input type="hidden" name="static" value="1" />
Index: /branches/athena/default_templates/base_theme.mtml
===================================================================
--- /branches/athena/default_templates/base_theme.mtml (revision 1091)
+++ /branches/athena/default_templates/base_theme.mtml (revision 1092)
@@ -31,5 +31,5 @@
     border:0;
 } 
-/* reset strict by uncommenting lines below */
+/* strict reset by uncommenting lines below */
 address,caption,cite,code,dfn,em,strong,b,u,s,i,th,var {
     /* font-style:normal; */
@@ -224,8 +224,6 @@
 
 .asset-header,
-.asset-meta,
 .asset-content,
 .asset-body,
-.asset-footer,
 .entry-categories,
 .entry-tags,
@@ -259,4 +257,8 @@
 }
 
+.asset-meta {
+    font-size: 11px;
+}
+
 .content-nav {
     text-align: center;
@@ -283,5 +285,4 @@
 .asset-more,
 .asset-more-link,
-.asset-footer,
 .asset-excerpt,
 .comment-content,
Index: /branches/athena/default_templates/javascript.mtml
===================================================================
--- /branches/athena/default_templates/javascript.mtml (revision 1090)
+++ /branches/athena/default_templates/javascript.mtml (revision 1092)
@@ -183,7 +183,7 @@
     } else {
 <MTIfRegistrationRequired>
-        document.write('<a href="<$MTCGIPath$><$MTCommentScript$>?__mode=login&entry_id=' + entry_id + '&blog_id=' + blog_id + '&static=1"><__trans phrase="Sign in</a> to comment on this entry." escape="js">');
+        document.write('<a href="<$MTCGIPath$><$MTCommentScript$>?__mode=login&entry_id=' + entry_id + '&blog_id=' + blog_id + '&static=1"><__trans phrase="Sign in" escape="js">' + '</a>' + '<__trans phrase=" to comment on this entry." escape="js">');
 <MTElse>
-        document.write('<a href="<$MTCGIPath$><$MTCommentScript$>?__mode=login&entry_id=' + entry_id + '&blog_id=' + blog_id + '&static=1"><__trans phrase="Sign in</a> to comment on this entry," escape="js"> <__trans phrase="or " escape="js"><a href="javascript:void(0);" onclick="showAnonymousForm();"><__trans phrase="comment anonymously." escape="js"></a>');
+        document.write('<a href="<$MTCGIPath$><$MTCommentScript$>?__mode=login&entry_id=' + entry_id + '&blog_id=' + blog_id + '&static=1"><__trans phrase="Sign in" escape="js">' + '</a>' + '<__trans phrase=" to comment on this entry," escape="js"> <__trans phrase="or " escape="js"><a href="javascript:void(0);" onclick="showAnonymousForm();"><__trans phrase="comment anonymously." escape="js"></a>');
 </MTIfRegistrationRequired>
     }
Index: /branches/athena/lib/MT/Image.pm
===================================================================
--- /branches/athena/lib/MT/Image.pm (revision 1083)
+++ /branches/athena/lib/MT/Image.pm (revision 1092)
@@ -120,5 +120,5 @@
         $image->{data} = $blob;
     }
-    my %Types = (jpg => 'jpeg', gif => 'gif');
+    my %Types = (jpg => 'jpeg', gif => 'gif', 'png' => 'png');
     my $type = $image->{type} = $Types{ lc $param{Type} };
     my($out, $err);
Index: /branches/athena/lib/MT/Upgrade.pm
===================================================================
--- /branches/athena/lib/MT/Upgrade.pm (revision 1091)
+++ /branches/athena/lib/MT/Upgrade.pm (revision 1092)
@@ -789,4 +789,18 @@
             blog_id => $blog_id, id => $blogs{$blog_id} }, {
             not => { id => 1 } });
+        $tmpl->remove if $tmpl;
+    }
+
+    my %terms;
+    my %args;
+    if (my @blog_ids = keys %blogs) {
+        $terms{id} = \@blog_ids;
+        $args{not} = { id => 1 };
+    }
+    my $blog_iter = MT::Blog->load_iter(\%terms, \%args);
+    # These blogs does not have search results - upgrades from 3.2 or before.
+    while (my $blog = $blog_iter->()) {
+        my $tmpl = MT::Template->load(
+          { type => 'search_results', blog_id => $blog->id,});
         $tmpl->remove if $tmpl;
     }
Index: /branches/athena/lib/MT/BackupRestore.pm
===================================================================
--- /branches/athena/lib/MT/BackupRestore.pm (revision 1088)
+++ /branches/athena/lib/MT/BackupRestore.pm (revision 1092)
@@ -120,8 +120,8 @@
             MT->model('config') => 1, 
             MT->model('session') => 1,
-            MT->model('schwartz_job') => 1,
-            MT->model('schwartz_error') => 1,
-            MT->model('schwartz_exitstatus') => 1,
-            MT->model('schwartz_funcmap') => 1,
+            MT->model('ts_job') => 1,
+            MT->model('ts_error') => 1,
+            MT->model('ts_exitstatus') => 1,
+            MT->model('ts_funcmap') => 1,
         },
         {
Index: /branches/athena/lib/MT/L10N/es.pm
===================================================================
--- /branches/athena/lib/MT/L10N/es.pm (revision 1091)
+++ /branches/athena/lib/MT/L10N/es.pm (revision 1092)
@@ -58,20 +58,20 @@
 	'Page' => 'PÃ¡gina',
 	'Individual' => 'Inidivual',
-	'Yearly' => 'Anual',
-	'Monthly' => 'Mensual',
-	'Daily' => 'Diario',
-	'Weekly' => 'Semanal',
-	'Author' => 'Autor',
-	'Author Yearly' => 'Autor anual',
-	'Author Monthly' => 'Autor mensual',
-	'Author Daily' => 'Autor diario',
-	'Author Weekly' => 'Autor semanal',
-	'Category Yearly' => 'CategorÃ­a anual',
-	'Category Monthly' => 'CategorÃ­a mensual',
-	'Category Daily' => 'CategorÃ­a diaria',
-	'Category Weekly' => 'CategorÃ­a semanal',
+	'Yearly' => 'Anuales',
+	'Monthly' => 'Mensuales',
+	'Daily' => 'Diarias',
+	'Weekly' => 'Semanales',
+	'Author' => 'Por Autor',
+	'Author Yearly' => 'Anuales del autor',
+	'Author Monthly' => 'Mensuales del autor',
+	'Author Daily' => 'Diarios del autor',
+	'Author Weekly' => 'Semanales del autor',
+	'Category Yearly' => 'CategorÃ­as anuales',
+	'Category Monthly' => 'CategorÃ­as mensuales',
+	'Category Daily' => 'CategorÃ­as diarias',
+	'Category Weekly' => 'CategorÃ­as semanales',
 
 ## default_templates/entry_metadata.mtml
-	'By [_1] on [_2]' => 'Por [_1] en [_2]',
+	'By [_1] on [_2]' => 'Por [_1] el [_2]',
 	'Permalink' => 'Enlace permanente',
 	'Comments ([_1])' => 'Comentarios ([_1])',
@@ -134,5 +134,5 @@
 
 ## default_templates/entry_listing.mtml
-	'[_1] Archives' => '[_1] Archivos',
+	'[_1] Archives' => 'Archivos [_1]',
 	'Recently in <em>[_1]</em> Category' => 'Novedades en la categorÃ­a <em>[_1]</em>',
 	'Recently by <em>[_1]</em>' => 'Novedades por <em>[_1]</em>',
@@ -148,5 +148,5 @@
 	'Comment Submission Error' => 'Error en el envÃ­o de comentarios',
 	'Your comment submission failed for the following reasons:' => 'El envÃ­o de su comentario fallÃ³ por las siguientes razones:',
-	'Return to the <a href="[_1]">original entry</a>.' => 'Regresar a la <a href="[_1]">entrada original</a>.',
+	'Return to the <a href="[_1]">original entry</a>.' => 'Volver a la <a href="[_1]">entrada original</a>.',
 
 ## default_templates/sidebar_3col.mtml
@@ -186,6 +186,6 @@
 ## default_templates/javascript.mtml
 	'You do not have permission to comment on this blog.' => 'No tiene permisos para comentar en este blog.',
-	'Sign in</a> to comment on this entry.' => 'IdentifÃ­quese</a> para comentar en esta entrada.',
-	'Sign in</a> to comment on this entry,' => 'IdentifÃ­quese</a> para comentar en esta entrada.',
+	' to comment on this entry.' => ' para comentar en esta entrada.', # Translate - New
+	' to comment on this entry,' => ' para comentar en esta entrada,', # Translate - New
 	'or ' => 'o ',
 	'comment anonymously.' => 'comentar anÃ³nimamente',
@@ -365,5 +365,5 @@
 	'Manage Plugins' => 'Administrar extensiones',
 	'View System Activity Log' => 'Ver registro de actividad del sistema',
-	'Blog Administrator' => 'Administrador de blogs',
+	'Blog Administrator' => 'Administrador del blog',
 	'Configure Blog' => 'Configurar blog',
 	'Set Publishing Paths' => 'Configurar rutas de publicaciÃ³n',
@@ -434,8 +434,8 @@
 	'View image' => 'Ver imagen',
 	'Permission denied setting image defaults for blog #[_1]' => 'Se denegÃ³ el permiso para cambiar las opciones predefinidos de imÃ¡genes del blog nÂº[_1]',
-	'Thumbnail image for [_1]' => 'Imagen Thumbnail para [_1]', # Translate - New
+	'Thumbnail image for [_1]' => 'Imagen Thumbnail para [_1]',
 	'Invalid basename \'[_1]\'' => 'Nombre base no vÃ¡lido \'[_1]\'',
 	'Error writing to \'[_1]\': [_2]' => 'Error escribiendo en \'[_1]\': [_2]',
-	'Popup Page for [_1]' => 'PÃ¡gina Popup para [_1]', # Translate - New
+	'Popup Page for [_1]' => 'PÃ¡gina Popup para [_1]',
 
 ## lib/MT/BackupRestore.pm
@@ -469,4 +469,5 @@
 	'[_1] records restored.' => '[_1] registros restaurados.',
 	'Restoring [_1] records:' => 'Restaurando [_1] registros:',
+	'User with the same name as the name of the currently logged in ([_1]) found.  Skipped the record.' => 'Se encontrÃ³ un usuario con el mismo nombre que la persona identificada ([_1]). Saltar la identificaciÃ³n.', # Translate - New
 	'User with the same name \'[_1]\' found (ID:[_2]).  Restore replaced this user with the data backed up.' => 'Se encontrÃ³ un usuario con el mismo nombre \'[_1]\' (ID:[_2]). La restauraciÃ³n reemplazÃ³ este usuario con los datos de la copia de seguridad.',
 	'Tag \'[_1]\' exists in the system.' => 'La etiqueta \'[_1]\' existe en el sistema.',
@@ -798,5 +799,5 @@
 	'Commenter \'[_1]\' (ID:[_2]) has been successfully registered.' => 'El comentarista \'[_1]\' (ID:[_2]) se inscribiÃ³ con Ã©xito.',
 	'Thanks for the confirmation.  Please sign in to comment.' => 'Gracias por la confirmaciÃ³n. Por favor, identifÃ­quese para comentar.',
-	'[_1] registered to the blog \'[_2]\'' => '[_1] registrado en el blog \'[_2]\'', # Translate - New
+	'[_1] registered to the blog \'[_2]\'' => '[_1] registrado en el blog \'[_2]\'',
 	'No id' => 'Sin id',
 	'No such comment' => 'No existe dicho comentario',
@@ -869,5 +870,5 @@
 	'You failed to supply a password.' => 'No introdujo una contraseÃ±a.',
 	'The e-mail address is required.' => 'La direcciÃ³n de correo electrÃ³nico es necesaria.',
-	'The path provided below is not writable.' => 'El camino aquÃ­ abajo no estÃ¡ abierto en escritura',
+	'The path provided below is not writable.' => 'La ruta aquÃ­ abajo no estÃ¡ abierta en escritura',
 	'Invalid session.' => 'SesiÃ³n no vÃ¡lida.',
 	'No permissions. Please contact your administrator for upgrading Movable Type.' => 'Sin permisos. Por favor, contacte con su administrador para la actualizaciÃ³n de Movable Type.',
@@ -1223,5 +1224,5 @@
 	'Recover Password(s)' => 'Recuperar contraseÃ±a/s',
 	'Delete' => 'Eliminar',
-	'Non-spam TrackBacks' => 'Trackback No-Spam', # Translate - New
+	'Non-spam TrackBacks' => 'Trackback No-Spam',
 	'TrackBacks on my entries' => 'Trackback en mis entradas',
 	'Published TrackBacks' => 'Publicar Trackback',
@@ -1547,10 +1548,10 @@
 	'enable' => 'habilitar',
 	'disable' => 'deshabilitar',
-	'You did not select any [_1] to [_2].' => 'No seleccionÃ³ ningÃºn [_1] para [_2].',
-	'Are you sure you want to [_2] this [_1]?' => 'Â¿EstÃ¡ seguro de que desea [_2] este [_1]?',
+	'You did not select any [_1] to [_2].' => 'No seleccionÃ³ ninguna [_1] sobre la que [_2].',
+	'Are you sure you want to [_2] this [_1]?' => 'Â¿EstÃ¡ seguro de que desea [_2] esta [_1]?',
 	'Are you sure you want to [_3] the [_1] selected [_2]?' => 'Â¿EstÃ¡ seguro de que desea [_3] el/los [_1] seleccionado/s [_2]?',
 	'Are you certain you want to remove this role? By doing so you will be taking away the permissions currently assigned to any users and groups associated with this role.' => 'Â¿EstÃ¡ seguro de que desea borrar este rol? Al hacerlo, eliminarÃ¡ los permisos actualmente asignados a cualquier usuario o grupo relacionados con este rol.',
 	'Are you certain you want to remove these [_1] roles? By doing so you will be taking away the permissions currently assigned to any users and groups associated with these roles.' => 'Â¿EstÃ¡ seguro de que desea borrar estos [_1] roles? Al hacerlo, eliminarÃ¡ los permisos actualmente asignados a cualquier usuario o grupo relacionados con estos roles.',
-	'You did not select any [_1] [_2].' => 'No seleccionÃ³ ningÃºn [_1] [_2].',
+	'You did not select any [_1] [_2].' => 'No seleccionÃ³ ninguna [_1] [_2].',
 	'You can only act upon a minimum of [_1] [_2].' => 'Solo puede actuar sobre un mÃ­nimo de [_1] [_2].',
 	'You can only act upon a maximum of [_1] [_2].' => 'Solo puede actuar sobre un mÃ¡ximo de [_1] [_2].',
@@ -1659,6 +1660,6 @@
 	'To complete the registration process you must first confirm your account. An email has been sent to [_1].' => 'Para completar el proceso de registro, primeramente debe confirmar su cuenta. Se le ha enviado un correo a [_1].',
 	'To confirm and activate your account please check your inbox and click on the link found in the email we just sent you.' => 'Para confirmar y activar su cuenta, por favor, compruebe su correo y haga clic en el correo que le acabamos de enviar.',
-	'Return to the original entry.' => 'Regresar a la entrada original.',
-	'Return to the original page.' => 'Regresar a la pÃ¡gina original.',
+	'Return to the original entry.' => 'Volver a la entrada original.',
+	'Return to the original page.' => 'Volver a la pÃ¡gina original.',
 
 ## tmpl/comment/register.tmpl
@@ -1714,5 +1715,5 @@
 	'Create Role' => 'Crear rol',
 	'_USER_STATUS_CAPTION' => 'estado',
-	'In Blog' => 'En el Blog', # Translate - New
+	'In Blog' => 'En el Blog',
 	'Via Group' => 'Via grupo',
 	'Members' => 'Miembros',
@@ -1755,5 +1756,5 @@
 	'Edit [_1]' => 'Editar [_1]',
 	'A saved version of this [_1] was auto-saved [_3]. <a href="[_2]">Recover auto-saved content</a>' => 'Se auto-guardÃ³ [_2] una versiÃ³n guardada de [_1]. <a href="[_2]">Recuperar contenido auto-guardado</a>',
-	'Your [_1] has been saved.' => 'Su [_1] ha sido guardado.',
+	'Your [_1] has been saved.' => 'Su [_1] ha sido guardada.',
 	'One or more errors occurred when sending update pings or TrackBacks.' => 'Ocurrieron uno o mÃ¡s errores durante el envÃ­o de pings o TrackBacks.',
 	'_USAGE_VIEW_LOG' => 'Compruebe el error en el <a href="[_1]">Registro de actividad</a>.',
@@ -1768,5 +1769,5 @@
 	'Created [_1] by [_2].' => 'Creado [_1] por [_2].',
 	'Last edited [_1] by [_2].' => 'Ãltima ediciÃ³n [_1] por [_2].',
-	'Published [_1].' => 'Publicado [_1].',
+	'Published [_1].' => 'Publicadas [_1].',
 	'This [_1] has received <a href="[_4]">[quant,_2,comment,comments]</a> and <a href="[_5]">[quant,_3,trackback,trackbacks]</a>.' => 'Esta [_1] ha recibido <a href="[_4]">[quant,_2,comentario,comentarios]</a> y <a href="[_5]">[quant,_3,trackback,trackbacks]</a>.',
 	'Display Options' => 'Opciones de visualizaciÃ³n',
@@ -1775,5 +1776,5 @@
 	'Body' => 'Cuerpo',
 	'Excerpt' => 'Resumen',
-	'Keywords' => 'Palabras clave',
+	'Keywords' => 'Palabras claves',
 	'Publishing' => 'PublicaciÃ³n',
 	'Top' => 'Arriba',
@@ -1800,5 +1801,5 @@
 	'Share this [_1]' => 'Compartir [_1]',
 	'_external_link_target' => '_new',
-	'View published [_1]' => 'Ver [_1] publicado',
+	'View published [_1]' => 'Ver [_1] publicada',
 	'&laquo; Previous' => '&laquo; Anterior',
 	'Manage [_1]' => 'Administrar [_1]',
@@ -1845,8 +1846,8 @@
 	'Outbound TrackBack URLs' => 'URLs de TrackBacks salientes',
 	'View Previously Sent TrackBacks' => 'Ver TrackBacks enviados anteriormente',
-	'<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 para [_2]</a> - Arrastre este enlace a la barra de herramientas de su navegador, y luego haga clic en Ã©l cuando estÃ© en una pÃ¡gina sobre la que desea escribir una entrada.',
+	'[_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.' => '[_1] Entrada rÃ¡pida a [_2] </a> - Arrastre este enlace a su barra de navegaciÃ³n y haga clic en ella cuando encuentre un sitio al cual quiera bloguear a propÃ³sito de esto.', # Translate - New
 	'Auto-saving...' => 'Autoguardado...',
 	'Last auto-save at [_1]:[_2]:[_3]' => 'Ãltimo autoguardado a las [_1]:[_2]:[_3]',
-	'None selected' => 'Ninguno seleccionado',
+	'None selected' => 'Ninguna seleccionada',
 
 ## tmpl/cms/system_check.tmpl
@@ -1980,7 +1981,7 @@
 	'URL of commenter' => 'URL del comentarista',
 	'View all comments with this URL' => 'Ver todos los comentarios con esta URL',
-	'Entry this comment was made on' => 'Entrada donde se hizo el comentario',
-	'Entry no longer exists' => 'La entrada ya no existe.',
-	'View all comments on this entry' => 'Ver todos los comentarios de esta entrada',
+	'[_1] this comment was made on' => '[_1] este comentario fue hecho en', # Translate - New
+	'[_1] no longer exists' => '[_1] no existe mÃ¡s largo', # Translate - New
+	'View all comments on this [_1]' => 'Ver todos los comentario en este [_1]', # Translate - New
 	'Date' => 'Fecha',
 	'Date this comment was made' => 'Fecha de cuando se hizo el comentario',
@@ -2142,5 +2143,5 @@
 ## tmpl/cms/install.tmpl
 	'Welcome to Movable Type' => 'Bienvenido a Movable Type',
-	'Create Your First User' => 'Cree al primer usuario',
+	'Create Your First User' => 'Cree el primer usuario',
 	'The initial account name is required.' => 'Se necesita el nombre de la cuenta inicial.',
 	'Password recovery word/phrase is required.' => 'Se necesita la palabra/frase de recuperaciÃ³n de contraseÃ±a.',
@@ -2149,5 +2150,5 @@
 	'Do you want to proceed with the installation anyway?' => 'Â¿AÃºn asÃ­ desea proceder con la instalaciÃ³n?',
 	'View MT-Check (x)' => 'Ver MT-Check (x)',
-	'Before you can begin blogging, you must create an administrator account for your system. When you are done, Movable Type will then initialize your database.' => 'Antes de pueda comenzar a publicar, debe crear una cuenta de administrador para el sistema. Cuando lo haya hecho, Movable Type inicializarÃ¡ la base de datos.',
+	'Before you can begin blogging, you must create an administrator account for your system. When you are done, Movable Type will then initialize your database.' => 'Antes de poder comenzar a publicar, debe crear una cuenta de administrador para el sistema. Cuando lo haya hecho, Movable Type inicializarÃ¡ la base de datos.',
 	'To proceed, you must authenticate properly with your LDAP server.' => 'Para proceder, debe autentificarse correctamente en su servidor LDAP.',
 	'The name used by this user to login.' => 'El nombre utilizado por este usario para iniciar su sesiÃ³n.',
@@ -2299,10 +2300,10 @@
 	'Automatically create a new blog for each new user' => 'Crear automÃ¡ticamente un nuevo blog por cada nuevo usuario',
 	'Personal blog clone source' => 'Fuente del blog personal a clonar',
-	'Select a blog you wish to use as the source for new personal blogs. The new blog will be identical to the source except for the name, publishing paths and permissions.' => 'Seleccionar el blog que usted desee utilizar como fuente para los nuevos blogs personales. El nuevo blog serÃ¡ asÃ­ idÃ©ntificado a la fuente, a excepciÃ³n del nombre, los caminos de publicaciÃ³n y las permisiones.',
+	'Select a blog you wish to use as the source for new personal blogs. The new blog will be identical to the source except for the name, publishing paths and permissions.' => 'Seleccionar el blog que usted desee utilizar como fuente para los nuevos blogs personales. El nuevo blog serÃ¡ asÃ­ idÃ©ntificado a la fuente, a excepciÃ³n del nombre, las rutas de publicaciÃ³n y las permisiones.',
 	'Change blog' => 'Cambiar blog',
 	'Default Site URL' => 'URL del sitio',
 	'Define the default site URL for new blogs. This URL will be appended with a unique identifier for the blog.' => 'Defina por defecto la URL del sitio para los nuevos blogs.  Esta URL ',
 	'Default Site Root' => 'RaÃ­z del sitio',
-	'Define the default site root for new blogs. This path will be appended with a unique identifier for the blog.' => 'Defina por defecto el camino de publicaciÃ³n para los nuevos blogs. Este camino serÃ¡ completado con un identificador Ãºnico para el blog',
+	'Define the default site root for new blogs. This path will be appended with a unique identifier for the blog.' => 'Defina por defecto la ruta de publicaciÃ³n para los nuevos blogs. Esta ruta serÃ¡ completada con un identificador Ãºnico para el blog',
 	'Default User Language' => 'Idioma del usuario',
 	'Define the default language to apply to all new users.' => 'Establezca el idioma predefinido a aplicar a los nuevos usuarios.',
@@ -2576,5 +2577,4 @@
 
 ## tmpl/cms/include/backup_start.tmpl
-	'Tools: Backup' => 'Herramientas: Copias de seguridad',
 	'Backing up Movable Type' => 'Haciendo copia de seguridad de Movable Type',
 
@@ -2615,6 +2615,6 @@
 	'Confirm (s)' => 'Confirmar (s)',
 	'Confirm' => 'Confirmar',
-	'Back (b)' => 'Regresar (b)',
-	'Back' => 'Regresar',
+	'Back (b)' => 'Volver (b)',
+	'Back' => 'Volver',
 
 ## tmpl/cms/list_blog.tmpl
@@ -2634,5 +2634,5 @@
 	'Begin Upgrade' => 'Comenzar actualizaciÃ³n',
 	'Your Movable Type installation is already up to date.' => 'Su instalaciÃ³n de Movable Type ya estÃ¡ actualizada.',
-	'Return to Movable Type' => 'Regresar a Movable Type',
+	'Return to Movable Type' => 'Volver a Movable Type',
 
 ## tmpl/cms/list_author.tmpl
@@ -2651,5 +2651,5 @@
 	'Disable selected users (d)' => 'Deshabilitar usuarios seleccionados (d)',
 	'_USER_DISABLE' => 'Deshabilitar',
-	'Showing All Users' => 'Mostrar Todos los Usuarios', # Translate - New
+	'Showing All Users' => 'Mostrar Todos los Usuarios',
 
 ## tmpl/cms/popup/rebuilt.tmpl
@@ -2664,5 +2664,5 @@
 
 ## tmpl/cms/popup/rebuild_confirm.tmpl
-	'Publish [_1]' => 'Publicar [_1]', # Translate - New
+	'Publish [_1]' => 'Publicar [_1]',
 	'Publish <em>[_1]</em>' => 'Publicar <em>[_1]</em>',
 	'_REBUILD_PUBLISH' => 'Publicar',
@@ -2679,5 +2679,5 @@
 
 ## tmpl/cms/list_entry.tmpl
-	'Your [_1] has been deleted from the database.' => 'Su [_1] ha sido borrado de la base de datos.',
+	'Your [_1] has been deleted from the database.' => 'Su [_1] ha sido borrada de la base de datos.',
 	'Go back' => 'Ir atrÃ¡s',
 	'tag (exact match)' => 'etiqueta (coincidencia exacta)',
@@ -2752,5 +2752,5 @@
 ## tmpl/cms/list_category.tmpl
 	'Your [_1] changes and additions have been made.' => 'Se han realizado los cambios y aÃ±adidos a la [_1].',
-	'You have successfully deleted the selected [_1].' => 'Se ha borrado con Ã©xito las [_1] seleccionadas.',
+	'You have successfully deleted the selected [_1].' => 'Se han borrado con Ã©xito las [_1] seleccionadas.',
 	'Create new top level [_1]' => 'Crear nueva [_1] de primer nivel',
 	'New Parent [_1]' => 'Nueva [_1] padre',
@@ -2837,7 +2837,8 @@
 	'Search for other TrackBacks with this status' => 'Buscar otros TrackBacks con este estado',
 	'Target Entry' => 'Entrada destinataria',
+	'Entry no longer exists' => 'La entrada ya no existe.',
 	'No title' => 'Sin tÃ­tulo',
 	'View all TrackBacks on this entry' => 'Mostrar todos los TrackBacks de esta entrada',
-	'Target Category' => 'CategorÃ­a destinataria',
+	'Target Category' => 'CategorÃ­a de destinaciÃ³n ', # Translate - New
 	'Category no longer exists' => 'Ya no existe la categorÃ­a',
 	'View all TrackBacks on this category' => 'Mostrar todos los TrackBacks de esta categorÃ­a',
@@ -2848,12 +2849,12 @@
 
 ## tmpl/cms/cfg_plugin.tmpl
-	'System Plugin Settings' => 'Sistema de configuraciÃ³n de la extensiÃ³n', # Translate - New
+	'System Plugin Settings' => 'Sistema de configuraciÃ³n de la extensiÃ³n',
 	'http://www.sixapart.com/pronet/plugins/' => 'http://www.sixapart.com/pronet/plugins/',
 	'Find Plugins' => 'Buscar extensiones',
-	'Plugin System' => 'Sistema de extensiones', # Translate - New
-	'Manually enable or disable plugin-system functionality. Re-enabling plugin-system functionality, will return all plugins to their original state.' => 'Activar o desactivar manualmente el sistema de extensiones funcionales.  Re-activar el sistema de extensiones funcionales, volver todas las extensiones a su estado original.', # Translate - New
-	'Disable plugin functionality' => 'Desactivar las funciones de las extensiones', # Translate - New
+	'Plugin System' => 'Sistema de extensiones',
+	'Manually enable or disable plugin-system functionality. Re-enabling plugin-system functionality, will return all plugins to their original state.' => 'Activar o desactivar manualmente el sistema de extensiones funcionales.  Re-activar el sistema de extensiones funcionales, volver todas las extensiones a su estado original.',
+	'Disable plugin functionality' => 'Desactivar las funciones de las extensiones',
 	'Disable Plugins' => 'Desactivar extensiones',
-	'Enable plugin functionality' => 'Activar las funciones de las extensiones', # Translate - New
+	'Enable plugin functionality' => 'Activar las funciones de las extensiones',
 	'Enable Plugins' => 'Activar extensiones',
 	'Your plugin settings have been saved.' => 'Se guardÃ³ la configuraciÃ³n de la extensiÃ³n.',
@@ -2862,7 +2863,7 @@
 	'Your plugins have been reconfigured.' => 'Se reconfiguraron las extensiones.',
 	'Are you sure you want to reset the settings for this plugin?' => 'Â¿EstÃ¡ seguro de que desea reiniciar la configuraciÃ³n de esta extensiÃ³n?',
-	'Are you sure you want to disable plugin functionality?' => 'Â¿EstÃ¡ seguro de querer desactivar la funcinalidad de las extensiones?', # Translate - New
+	'Are you sure you want to disable plugin functionality?' => 'Â¿EstÃ¡ seguro de querer desactivar la funcinalidad de las extensiones?',
 	'Disable this plugin?' => 'Â¿Desactivar esta extensiÃ³n?',
-	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that have were not individually disabled.)' => 'Â¿EstÃ¡ seguro de querer activar la funcionalidad de las extensiones? (Esta re-activarÃ¡ cada extensiÃ³n que no haya sido individualmente desactivada.)', # Translate - New
+	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that were not individually disabled.)' => 'Â¿EstÃ¡ seguro de querer artivar la funcionalidad de las extensiones?  (Esto reactivarÃ¡ cada extensiÃ³n que no haya sido desactivada individualmente.)', # Translate - New
 	'Enable this plugin?' => 'Â¿Activar esta extensiÃ³n?',
 	'Failed to Load' => 'FallÃ³ al cargar',
@@ -3130,6 +3131,6 @@
 	'Output Filename' => 'Fichero salida',
 	'Linked Filename' => 'Fichero enlazado',
-	'_DATE_FROM' => '_FECHA_DESDE EL', # Translate - New
-	'_DATE_TO' => '_FECHA_AL', # Translate - New
+	'_DATE_FROM' => '_FECHA_DESDE EL',
+	'_DATE_TO' => '_FECHA_AL',
 	'Successfully replaced [quant,_1,record,records].' => '[quanta,_1,registro reemplazado,registros reemplazados] con Ã©xito.',
 	'Showing first [_1] results.' => 'Primeros [_1] resultados.',
@@ -3188,9 +3189,7 @@
 ## tmpl/cms/widget/new_install.tmpl
 	'Thank you for installing Movable Type' => 'Gracias por instalar Movable Type',
-	'Congratulations on installing Movable Type, the world\'s most powerful blogging, publishing and social media platform. To help you get started we have provided you with links to some of the more common tasks new users like to perform:' => 'Felicidades por la instalaciÃ³n de Movable Type, la plataforma mÃ¡s potente del mundo de blogs y publicaciÃ³n. P
-ara ayudarle a comenzar, le proveemos algunos enlaces a las tareas mÃ¡s comunes que los nuevos usuarios suelen realizar:',
+	'Congratulations on installing Movable Type, the world\'s most powerful blogging, publishing and social media platform. To help you get started we have provided you with links to some of the more common tasks new users like to perform:' => 'Felicidades por la instalaciÃ³n de Movable Type, la plataforma mÃ¡s potente del mundo de blogs y publicaciÃ³n. Para ayudarle a comenzar, le proveemos algunos enlaces a las tareas mÃ¡s comunes que los nuevos usuarios suelen realizar:',
 	'Add more users to your blog' => 'AÃ±adir mÃ¡s usuarios al blog',
-	'Start building your network of blogs and your community now. Invite users to join your blog and promote them to authors.' => 'Comience ahora a construir su red de blogs y
- su comunidad. Invite a otros usuarios a unirse a su blog y hÃ¡galos autores.',
+	'Start building your network of blogs and your community now. Invite users to join your blog and promote them to authors.' => 'Comience ahora a construir su red de blogs y su comunidad. Invite a otros usuarios a unirse a su blog y hÃ¡galos autores.',
 
 ## tmpl/cms/widget/mt_news.tmpl
@@ -3250,5 +3249,5 @@
 	'You have successfully deleted the checked template(s).' => 'Se eliminaron correctamente las plantillas marcadas.',
 	'Create Archive Template:' => 'Crear plantilla de archivos',
-	'Create new [_1] template' => 'Crear nueva plantilla de [_1]',
+	'Create new [_1] template' => 'Crear nuevo mÃ³dulo de [_1]',
 	'Create Template...' => 'Crear plantilla...',
 	'Blank Template' => 'Plantilla vacÃ­a',
@@ -3270,7 +3269,7 @@
 	'Movable Type requires that you enable JavaScript in your browser. Please enable it and refresh this page to proceed.' => 'Movable Type necesita que JavaScript estÃ© disponible en el navegador. Por favor, active JavaScript y recargue esta pÃ¡gina para continuar.',
 	'This wizard will help you configure the basic settings needed to run Movable Type.' => 'Este asistente le ayudarÃ¡ a configurar las opciones bÃ¡sicas necesarias para ejecutar Movable Type.',
-	'<strong>Error: \'[_1]\' could not be found.</strong>  Please move your static files to the directory first or correct the setting if it is incorrect.' => '<strong>Error: \'[_1]\' no ha sido encontrado.</strong> Por favor,mueva sus archivos estÃ¡ticos al primer directorio o corrija la configuraciÃ³n si no es correcta.', # Translate - New
+	'<strong>Error: \'[_1]\' could not be found.</strong>  Please move your static files to the directory first or correct the setting if it is incorrect.' => '<strong>Error: \'[_1]\' no ha sido encontrado.</strong> Por favor,mueva sus archivos estÃ¡ticos al primer directorio o corrija la configuraciÃ³n si no es correcta.',
 	'Configure Static Web Path' => 'Configurar ruta del web estÃ¡tico',
-	'Movable Type ships with directory named [_1] which contains a number of important files such as images, javascript files and stylesheets.' => 'Movable Type viene con un directorio nombrado [_1] el cual contiene un nÃºmero de archivos importantes tales como imÃ¡genes, archivos javascript y hojas de estilo en cascadas.', # Translate - New
+	'Movable Type ships with directory named [_1] which contains a number of important files such as images, javascript files and stylesheets.' => 'Movable Type viene con un directorio nombrado [_1] el cual contiene un nÃºmero de archivos importantes tales como imÃ¡genes, archivos javascript y hojas de estilo en cascadas.',
 	'The [_1] directory is in the main Movable Type directory which this wizard script resides, but due to your web server\'s configuration, the [_1] directory is not accessible in this location and must be moved to a web-accessible location (e.g., your web document root directory).' => 'El directorio [_1] estÃ¡ en el directorio principal de Movable Type que recide en el script de instalaciÃ³n, pero depende de la configuraciÃ³n de su web server, el directorio [_1] no es accesible en este lugar y debe ser removido a un lugar de web accesible (e.g., su documento de raÃ­z del directorio web)',
 	'This directory has either been renamed or moved to a location outside of the Movable Type directory.' => 'Este directorio o se ha renombrado o movido a un lugar fuera del directorio de Movable Type.',
@@ -3308,5 +3307,5 @@
 	'Publish Charset' => 'CÃ³digo de caracteres',
 	'MS SQL Server driver must use either Shift_JIS or ISO-8859-1.  MS SQL Server driver does not support UTF-8 or any other character set.' => 'El controlador de MS SQL Server debe usar Shift_JIS o ISO-8859-1. El controlador de MS SQL Server no soporta ni UTF-8 ni ningÃºn otro cÃ³digo de caracteres.',
-	'Test Connection' => 'Comprobar conexiÃ³n',
+	'Test Connection' => 'Probar la ConexiÃ³n',
 
 ## tmpl/wizard/optional.tmpl
@@ -3385,40 +3384,40 @@
 	'A new TrackBack has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Se publicÃ³ un nuevo TrackBack en su blog [_1], en la entrada nÂº[_2] ([_3]).',
 	'A new TrackBack has been posted on your blog [_1], on category #[_2] ([_3]).' => 'Se publicÃ³ un nuevo TrackBack en su blog [_1], en la categorÃ­a nÂº[_2] ([_3]).',
-	'Excerpt: ' => 'Extracto:', # Translate - New
-	'URL: [_1]' => 'URL: [_1]', # Translate - New
-	'Title: [_1]' => 'TÃ­tulo: [_1]', # Translate - New
-	'Blog: [_1]' => 'Blog: [_1]', # Translate - New
-	'IP address: [_1]' => 'DirecciÃ³n IP: [_1]', # Translate - New
-	'Approve TrackBack: ' => 'Trackback Acceptado', # Translate - New
-	'View TrackBack: ' => 'Ver Trackback', # Translate - New
-	'Report TrackBack as spam: ' => 'Reportar el Trackback como spam', # Translate - New
-	'Edit TrackBack: ' => 'Editar Trackback', # Translate - New
+	'Excerpt: ' => 'Extracto:',
+	'URL: [_1]' => 'URL: [_1]',
+	'Title: [_1]' => 'TÃ­tulo: [_1]',
+	'Blog: [_1]' => 'Blog: [_1]',
+	'IP address: [_1]' => 'DirecciÃ³n IP: [_1]',
+	'Approve TrackBack: ' => 'Trackback Acceptado',
+	'View TrackBack: ' => 'Ver Trackback',
+	'Report TrackBack as spam: ' => 'Reportar el Trackback como spam',
+	'Edit TrackBack: ' => 'Editar Trackback',
 
 ## tmpl/email/new-comment.tmpl
 	'An unapproved comment has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site.' => 'Se recibiÃ³ un comentario en su blog [_1], en la entrada nÂº[_2] ([_3]). Debe aprobar este comentario para que aparezca en su sitio.',
 	'A new comment has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Se publicÃ³ un nuevo comentario en su weblog [_1], en la entrada nÂº [_2] ([_3]).',
-	'Comment name: [_1]' => 'Nombre del comentario: [_1]', # Translate - New
-	'Commenter email address: [_1]' => 'Correo electrÃ³nico del comentarista: [_1]', # Translate - New
-	'Commenter URL: [_1]' => 'URL del comentarista: [_1]', # Translate - New
-	'Commenter IP address: [_1]' => 'DirecciÃ³n IP del comentarista: [_1]', # Translate - New
-	'Approve comment:' => 'Comentario aceptado:', # Translate - New
-	'View comment:' => 'Ver comentario:', # Translate - New
-	'Edit comment:' => 'Editar comentario:', # Translate - New
-	'Report comment as spam:' => 'Reportar el comentario como spam:', # Translate - New
+	'Commenter name: [_1]' => 'Nombre del comentarista', # Translate - New
+	'Commenter email address: [_1]' => 'Correo electrÃ³nico del comentarista: [_1]',
+	'Commenter URL: [_1]' => 'URL del comentarista: [_1]',
+	'Commenter IP address: [_1]' => 'DirecciÃ³n IP del comentarista: [_1]',
+	'Approve comment:' => 'Comentario aceptado:',
+	'View comment:' => 'Ver comentario:',
+	'Edit comment:' => 'Editar comentario:',
+	'Report comment as spam:' => 'Reportar el comentario como spam:',
 
 ## tmpl/email/notify-entry.tmpl
 	'A new [_3] entitled \'[_1]\' has been published to [_2].' => 'Un nuevo [_3] titulado \'[_1]\' ha sido publicado en [_2].',
-	'View post:' => 'Ver entrada:', # Translate - New
-	'Entry Title: [_1]' => 'Entrar un TÃ­tulo: [_1]', # Translate - New
-	'Publish Date: [_1]' => 'Fecha de publicaciÃ³n: [_1]', # Translate - New
-	'Message from Sender:' => 'Mensaje del expeditor', # Translate - New
+	'View [_1]:' => 'Ver [_1]', # Translate - New
+	'[_1] Title: [_2]' => '[_1] TÃ­tulo: [_2]', # Translate - New
+	'Publish Date: [_1]' => 'Fecha de publicaciÃ³n: [_1]',
+	'Message from Sender:' => 'Mensaje del expeditor',
 	'You are receiving this email either because you have elected to receive notifications about new content on [_1], or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:' => 'Ha recibido este correo porque seleccionÃ³ recibir avisos sobre la publicaciÃ³n de nuevos contenidos en [_1] o porque el autor de la entrada pensÃ³ que podrÃ­a serle de interÃ©s. Si no quiere recibir mÃ¡s avisos, por favor, contacte con esta persona:',
 
 ## tmpl/email/commenter_notify.tmpl
-	'This email is to notify you that a new user has successfully registered on the blog \'[_1]\'. Listed below you will find some useful information about this new user.' => 'Este correo electrÃ³nico es una notificaiÃ³n  para informarle que un nuevo usuario ha sido enregistrado con succeso en el blog \'[_1]\'. Abajo usted encontratÃ¡ enumeradas algunas informaciones Ãºtiles sobre este nuevo usuario.', # Translate - New
-	'New User Information:' => 'Informaciones sobre el nuevo usuario:', # Translate - New
-	'Username: [_1]' => 'Nombre de usuario: [_1]', # Translate - New
-	'Full Name: [_1]' => 'Nombre Completo: [_1]', # Translate - New
-	'Email: [_1]' => 'Correo ElectrÃ³nico: [_1]', # Translate - New
+	'This email is to notify you that a new user has successfully registered on the blog \'[_1]\'. Listed below you will find some useful information about this new user.' => 'Este correo electrÃ³nico es una notificaiÃ³n  para informarle que un nuevo usuario ha sido enregistrado con succeso en el blog \'[_1]\'. Abajo usted encontratÃ¡ enumeradas algunas informaciones Ãºtiles sobre este nuevo usuario.',
+	'New User Information:' => 'Informaciones sobre el nuevo usuario:',
+	'Username: [_1]' => 'Nombre de usuario: [_1]',
+	'Full Name: [_1]' => 'Nombre Completo: [_1]',
+	'Email: [_1]' => 'Correo ElectrÃ³nico: [_1]',
 	'To view or edit this user, please click on or cut and paste the following URL into a web browser:' => 'Para ver o editar este usuario, por favor, haga clic en (o copie y pegue) la siguiente URL en un navegador:',
 
@@ -3500,5 +3499,5 @@
 
 ## plugins/Markdown/SmartyPants.pl
-	'Easily translates plain punctuation characters into \'smart\' typographic punctuation.' => 'Traduce fÃ¡cilmente los carÃ¡cteres de puntuaciÃ³n clÃ¡sicos dentro de \'inteligente\' tipografÃ­a de puntuaciÃ³n.', # Translate - New
+	'Easily translates plain punctuation characters into \'smart\' typographic punctuation.' => 'Traduce fÃ¡cilmente los carÃ¡cteres de puntuaciÃ³n clÃ¡sicos dentro de \'inteligente\' tipografÃ­a de puntuaciÃ³n.',
 	'Markdown With SmartyPants' => 'Markdown con SmartyPants',
 
@@ -3525,5 +3524,4 @@
 
 ## plugins/TemplateRefresh/tmpl/results.tmpl
-	'Backup and Refresh Templates' => 'Copiar y refrescar plantillas',
 	'No templates were selected to process.' => 'No se han seleccionado plantillas para procesar.',
 	'Return to templates' => 'Volver a las plantillas',
@@ -3545,5 +3543,5 @@
 	'Clones a weblog and all of its contents.' => 'Clonar un blog y todo su contenido',
 	'Cloning blog \'[_1]\'...' => 'Clonando un blog',
-	'Finished! You can <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_1]\');\">return to the blog listing</a> or <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_2]\');\">configure the Site root and URL of the new blog</a>.' => 'Â¡Finalisado! Usted puede <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_1]\');\">volver a la lista de blogs</a> ou <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_2]\');\">configurar la URL y el camino de publicaciÃ³n del nuevo blog</a>.',
+	'Finished! You can <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_1]\');\">return to the blog listing</a> or <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_2]\');\">configure the Site root and URL of the new blog</a>.' => 'Â¡Finalisado! Usted puede <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_1]\');\">volver a la lista de blogs</a> ou <a href=\"javascript:void(0);\" onclick=\"closeDialog(\'[_2]\');\">configurar la URL y la ruta de publicaciÃ³n del nuevo blog</a>.',
 	'No blog was selected to clone.' => 'NingÃºn blog ha sido seleccionado para ser clonado.',
 	'This action can only be run for a single blog at a time.' => 'Esta acciÃ³n solo puede ser ejecutada para un blog a la vez.',
@@ -3554,8 +3552,8 @@
 	'Edit Widget Set' => 'Editar conjunto de widgets',
 	'Please use a unique name for this widget set.' => 'Por favor, utilice un nombre Ãºnico para este conjunto de widgets.',
-	'You already have a widget set named \'[_1].\' Please use a unique name for this widget set.' => 'Ya tiene un conjunto de widgets llamado \'[_1]\'. Por favor, utilice un nombre Ãºnico para este conjunto de widgets.',
+	'You already have a widget set named \'[_1].\' Please use a unique name for this widget set.' => 'Ya tiene un conjunto de widgets llamado \'[_1].\'',
 	'Your changes to the Widget Set have been saved.' => 'Se han guardado los cambios al conjunto de widgets.',
 	'Set Name' => 'Nombre del conjunto',
-	'Drag and drop the widgets you want into the Installed column.' => 'Mueva y deje los widgets de su elecciÃ³n en la columna Instalada',
+	'Drag and drop the widgets you want into the Installed column.' => 'Arrastre y deje los widgets de su elecciÃ³n en la columna Instalada',
 	'Installed Widgets' => 'Widgets instalados',
 	'edit' => 'Editar',
@@ -3577,5 +3575,5 @@
 
 ## plugins/WidgetManager/WidgetManager.pl
-	'Maintain your blog\'s widget content using a handy drag and drop interface.' => 'Mantenga el contenido widget de su blog usando la interfaz prÃ¡ctica mover y dejar.', # Translate - New
+	'Maintain your blog\'s widget content using a handy drag and drop interface.' => 'Mantenga el contenido widget de su blog usando la interfaz prÃ¡ctica arrastrar y dejar.',
 	'Widgets' => 'Widgets',
 
@@ -3636,5 +3634,4 @@
 
 ## plugins/WidgetManager/default_widgets/tag_cloud_module.tmpl
-	'Tag cloud' => 'Nube de etiquetas',
 
 ## plugins/WidgetManager/default_widgets/powered_by.tmpl
@@ -3738,6 +3735,6 @@
 ## plugins/spamlookup/tmpl/word_config.tmpl
 	'Incomming feedback can be monitored for specific keywords, domain names, and patterns. Matches can be held for moderation or scored as junk. Additionally, junk scores for these matches can be customized.' => 'Se puede monitorizar las respuestas entrantes por palabras claves, dominios y patrones concretos. Las coincidencias serÃ¡n retenidas para su moderaciÃ³n o se puntuarÃ¡n como basura. AdemÃ¡s, se puede personalizar las puntuaciones de basura de estas coincidencias.',
-	'Keywords to Moderate' => 'Palabras clave para moderar',
-	'Keywords to Junk' => 'Palabras clave para marcar como basura',
+	'Keywords to Moderate' => 'Palabras claves para moderar',
+	'Keywords to Junk' => 'Palabras claves para marcar como basura',
 
 ## plugins/spamlookup/tmpl/url_config.tmpl
@@ -3751,5 +3748,5 @@
 	'Credit feedback rating when &quot;URL&quot; element of feedback has been published before' => 'Puntuar positivamente cuando un hiperenlace se ha publicado anteriormente',
 	'Only applied when no other links are present in message of feedback.' => 'Solo se aplica si no hay otros enlaces presentes en el mensaje de la respuesta.',
-	'Exclude URLs from comments published within last [_1] days.' => 'Excluir URLs de loscomentarios publicados en los Ãºltimos [_1] dÃ­as.',
+	'Exclude URLs from comments published within last [_1] days.' => 'Excluir URLs de los comentarios publicados en los Ãºltimos [_1] dÃ­as.',
 	'Email Memory' => 'Memoria de correos',
 	'Credit feedback rating when previously published comments are found matching on the &quot;Email&quot; address' => 'Puntuar positivamente si se encuentran comentarios con la direcciÃ³n de correo publicados anteriormente',
@@ -3788,6 +3785,6 @@
 
 ## plugins/spamlookup/spamlookup_words.pl
-	'SpamLookup module for moderating and junking feedback using keyword filters.' => 'MÃ³dulo SpamLookup para la moderaciÃ³n y marcado como spam de respuestas mediante filtros de palabras clave.',
-	'SpamLookup Keyword Filter' => 'Filtro de palabras clave de SpamLookup',
+	'SpamLookup module for moderating and junking feedback using keyword filters.' => 'MÃ³dulo SpamLookup para la moderaciÃ³n y marcado como spam de respuestas mediante filtros de palabras claves.',
+	'SpamLookup Keyword Filter' => 'Filtro de palabras claves de SpamLookup',
 
 ## plugins/StyleCatcher/stylecatcher.pl
@@ -3833,5 +3830,5 @@
 );
 
-## New words: 250
+## New words: 100
 
 1;
Index: /branches/athena/lib/MT/L10N/fr.pm
===================================================================
--- /branches/athena/lib/MT/L10N/fr.pm (revision 1091)
+++ /branches/athena/lib/MT/L10N/fr.pm (revision 1092)
@@ -22,5 +22,5 @@
 
 ## php/lib/function.mtcommentfields.php
-	'Thanks for signing in,' => 'Merci de vous Ãªtre enregistrÃ©,',
+	'Thanks for signing in,' => 'Merci de vous Ãªtre identifiÃ©,',
 	'Now you can comment.' => 'Vous pouvez maintenant commenter.',
 	'sign out' => 'dÃ©connexion',
@@ -62,16 +62,16 @@
 	'Daily' => 'JournaliÃšres',
 	'Weekly' => 'Hebdomadaires',
-	'Author' => 'Par auteur',
-	'Author Yearly' => 'Annuelles de l\'auteur',
-	'Author Monthly' => 'Mensuelles de l\'auteur',
-	'Author Daily' => 'JournaliÃšres de l\'auteur',
-	'Author Weekly' => 'Hebdomadaires de l\'auteur',
-	'Category Yearly' => 'Annuelles de la catÃ©gorie',
-	'Category Monthly' => 'Mensuelles de la catÃ©gorie',
-	'Category Daily' => 'JournaliÃšres de l\'auteur',
-	'Category Weekly' => 'Hebdomadaires de l\'auteur',
+	'Author' => 'Par auteurs',
+	'Author Yearly' => 'Par auteurs et annÃ©es',
+	'Author Monthly' => 'Par auteurs et mois',
+	'Author Daily' => 'Par auteurs et jours',
+	'Author Weekly' => 'Par auteurs et semaines',
+	'Category Yearly' => 'Par catÃ©gories et annÃ©es',
+	'Category Monthly' => 'Par catÃ©gories et mois',
+	'Category Daily' => 'Par catÃ©gories et jours',
+	'Category Weekly' => 'Par catÃ©gories et semaines',
 
 ## default_templates/entry_metadata.mtml
-	'By [_1] on [_2]' => 'Par [_1] sur [_2]',
+	'By [_1] on [_2]' => 'Par [_1] le [_2]',
 	'Permalink' => 'Lien permanent',
 	'Comments ([_1])' => 'Commentaires ([_1])',
@@ -119,7 +119,7 @@
 	'Monthly Archives' => 'Archives mensuelles',
 	'Categories' => 'CatÃ©gories',
-	'Author Archives' => 'Archives Auteur',
-	'Category Monthly Archives' => 'Archives mensuelles de catÃ©gories',
-	'Author Monthly Archives' => 'Archives mensuelles de l\'auteur',
+	'Author Archives' => 'Archives par auteurs',
+	'Category Monthly Archives' => 'Archives par catÃ©gories et mois',
+	'Author Monthly Archives' => 'Archives par auteurs et mois',
 
 ## default_templates/comment_form.mtml
@@ -167,9 +167,9 @@
 	'This page is a archive of recent entries written by <strong>[_1]</strong>.' => 'Cette page est une archive des notes rÃ©centes Ã©crites par <strong>[_1]</strong>.',
 	'This page is an archive of entries from <strong>[_2]</strong> listed from newest to oldest.' => 'Cette page est une archive des notes de <strong>[_2]</strong> listÃ©es de la plus rÃ©cente Ã  la plus ancienne.',
-	'Find recent content on the <a href="[_1]">main index</a>.' => 'Trouver le contenu rÃ©cent sur <a href="[_1]">l\'index principal</a>.',
-	'Find recent content on the <a href="[_1]">main index</a> or look in the <a href="[_2]">archives</a> to find all content.' => 'Trouvez du contenu rÃ©cent sur <a href="[_1]">l\'index principal</a> ou allez dans les <a href="[_2]">archives</a> pour trouver tout le contenu.',
-	'Tag Cloud' => 'Nuage de Tag',
+	'Find recent content on the <a href="[_1]">main index</a>.' => 'Retrouvez le contenu rÃ©cent sur <a href="[_1]">l\'index principal</a>.',
+	'Find recent content on the <a href="[_1]">main index</a> or look in the <a href="[_2]">archives</a> to find all content.' => 'Retrouvez le contenu rÃ©cent sur <a href="[_1]">l\'index principal</a> ou allez dans les <a href="[_2]">archives</a> pour retrouver tout le contenu.',
+	'Tag Cloud' => 'Nuage de tags',
 	'[_1] ([_2])' => '[_1] ([_2])',
-	'[_1] <a href="[_2]">Archives</a>' => '[_1] <a href="[_2]">Archives</a>',
+	'[_1] <a href="[_2]">Archives</a>' => '<a href="[_2]">Archives</a> [_1]',
 	'[_1]: Monthly Archives' => '[_1]: Archives Mensuelles',
 	'Subscribe to feed' => 'S\'abonner au flux',
@@ -186,6 +186,6 @@
 ## default_templates/javascript.mtml
 	'You do not have permission to comment on this blog.' => 'Vous n\'avez pas la permission de commenter sur ce blog.',
-	'Sign in</a> to comment on this entry.' => 'Identifiez-vous</a> pour commenter cette note.',
-	'Sign in</a> to comment on this entry,' => 'Identifiez-vous</a> pour commenter cette note,',
+	' to comment on this entry.' => ' pour commenter cette note.', # Translate - New
+	' to comment on this entry,' => ' pour commenter cette note,',
 	'or ' => 'ou ',
 	'comment anonymously.' => 'commentez anonymement.',
@@ -207,5 +207,5 @@
 	'Sidebar - 2 Column Layout' => 'Colonne latÃ©rale - Mise en page 2 colonnes',
 	'Sidebar - 3 Column Layout' => 'Colonne latÃ©rale - Mise en page 3 colonnes',
-	'_POWERED_BY' => 'Powered by<br /><a href="http://www.movabletype.org/sitefr/"><$MTProductName$></a>',
+	'_POWERED_BY' => 'Powered by<br /><a href="http://www.movabletype.org/"><$MTProductName$></a>',
 	'This blog is licensed under a <a href="[_1]">Creative Commons License</a>.' => 'Ce blog possÃšde une licence <a href="[_1]">Creative Commons</a>.',
 
@@ -224,5 +224,5 @@
 ## default_templates/comments.mtml
 	'Comment Form' => 'Formulaire de commentaire',
-	'[_1] Comments' => '[_1] Commentaires',
+	'[_1] Comments' => '[_1] commentaires',
 
 ## lib/MT/Session.pm
@@ -325,5 +325,5 @@
 	'Error assigning blog administration rights to user \'[_1] (ID: [_2])\' for blog \'[_3] (ID: [_4])\'. No suitable blog administrator role was found.' => 'Erreur d\'assignation des droits pour l\'utilisateur \'[_1] (ID: [_2])\' pour le blog \'[_3] (ID: [_4])\'. Aucun rÃŽle d\'administrateur adÃ©quat n\'a Ã©tÃ© trouvÃ©.',
 	'The login could not be confirmed because of a database error ([_1])' => 'L\'identifiant ne peut pas Ãªtre confirmÃ© en raison d\'une erreur de base de donnÃ©es ([_1])',
-	'Permission denied.' => 'Permission refusÃ©e.',
+	'Permission denied.' => 'Autorisation refusÃ©e.',
 	'Invalid login.' => 'Identifiant invalide.',
 	'Failed login attempt by unknown user \'[_1]\'' => 'Ãchec de tentative d\'identification par utilisateur inconnu\'[_1]\'',
@@ -433,9 +433,9 @@
 	'Can\'t load image #[_1]' => 'Impossible de charger l\'image #[_1]',
 	'View image' => 'Voir l\'image',
-	'Permission denied setting image defaults for blog #[_1]' => 'Permission interdite de configurer les paramÃštres par dÃ©faut des images pour le blog #[_1]',
-	'Thumbnail image for [_1]' => 'Miniature de l\'image pour [_1]', # Translate - New
+	'Permission denied setting image defaults for blog #[_1]' => 'Autorisation interdite de configurer les paramÃštres par dÃ©faut des images pour le blog #[_1]',
+	'Thumbnail image for [_1]' => 'Miniature de l\'image pour [_1]',
 	'Invalid basename \'[_1]\'' => 'Nom de base invalide \'[_1]\'',
 	'Error writing to \'[_1]\': [_2]' => 'Erreur \'[_1]\' lors de l\'Ã©criture de : [_2]',
-	'Popup Page for [_1]' => 'FenÃªtre popup pour [_1]', # Translate - New
+	'Popup Page for [_1]' => 'FenÃªtre popup pour [_1]',
 
 ## lib/MT/BackupRestore.pm
@@ -469,4 +469,5 @@
 	'[_1] records restored.' => '[_1] enregistrements restaurÃ©s.',
 	'Restoring [_1] records:' => 'Restauration de [_1] enregistrements:',
+	'User with the same name as the name of the currently logged in ([_1]) found.  Skipped the record.' => 'Utilisateur avec le mÃªme nom que l\'utilisateur actuellement connectÃ© ([_1]) trouvÃ©', # Translate - New
 	'User with the same name \'[_1]\' found (ID:[_2]).  Restore replaced this user with the data backed up.' => 'Utilisateur avec le mÃªme nom \'[_1]\' trouvÃ© (ID:[_2]). La restauration a remplacÃ© cet utilisateur par les donnÃ©es prÃ©sentes dans la sauvegardes.',
 	'Tag \'[_1]\' exists in the system.' => 'Le tag \'[_1]\' existe dans le systÃšme.',
@@ -781,5 +782,5 @@
 	'Error assigning commenting rights to user \'[_1] (ID: [_2])\' for weblog \'[_3] (ID: [_4])\'. No suitable commenting role was found.' => 'Erreur en assignant les droits de commenter Ã  l\'utilisateur \'[_1] (ID: [_2])\' pour le blog \'[_3] (ID: [_4])\'. Aucun rÃŽle de commentaire adÃ©quat n\'a Ã©tÃ© trouvÃ©.',
 	'Invalid commenter login attempt from [_1] to blog [_2](ID: [_3]) which does not allow Movable Type native authentication.' => 'Tentative d\'identification Ã©chouÃ©e pour l\'auteur de commentaires [_1] sur le blog [_2](ID: [_3]) qui n\'autorise pas l\'authentification native de Movable Type.',
-	'Login failed: permission denied for user \'[_1]\'' => 'Identification Ã©chouÃ©e: permission interdite pour l\'utilisateur \'[_1]\'',
+	'Login failed: permission denied for user \'[_1]\'' => 'Identification Ã©chouÃ©e: autorisation interdite pour l\'utilisateur \'[_1]\'',
 	'Login failed: password was wrong for user \'[_1]\'' => 'Identification Ã©chouÃ©e: mot de passe incorrect pour l\'utilisateur \'[_1]\'',
 	'Signing up is not allowed.' => 'Enregistrement non autorisÃ©e.',
@@ -798,5 +799,5 @@
 	'Commenter \'[_1]\' (ID:[_2]) has been successfully registered.' => 'L\'auteur de commentaires \'[_1]\' (ID:[_2]) a Ã©tÃ© enregistrÃ© avec succÃšs.',
 	'Thanks for the confirmation.  Please sign in to comment.' => 'Merci pour la confirmation. Merci de vous identifier pour commenter.',
-	'[_1] registered to the blog \'[_2]\'' => '[_1] est enregistrÃ© sur le blog \'[_2]\'', # Translate - New
+	'[_1] registered to the blog \'[_2]\'' => '[_1] est enregistrÃ© sur le blog \'[_2]\'',
 	'No id' => 'pas d\'id',
 	'No such comment' => 'Pas de commentaire de la sorte',
@@ -858,5 +859,5 @@
 	'This module is required in order to decompress files in backup/restore operation.' => 'Ce module est nÃ©cessaire pour dÃ©compresser les fichiers lors d\'une opÃ©ration de sauvegarde/restauration.',
 	'This module and its dependencies are required in order to restore from a backup.' => 'Ce module et ses dÃ©pendances sont nÃ©cessaires pour restaurer les fichiers Ã  partir d\'une sauvegarde.',
-	'This module and its dependencies are required in order to allow commenters to be authenticated by OpenID providers including Vox and LiveJournal.' => 'Ce module et ses dÃ©pendances sont obligatoires pour permettre aux commentateurs d\'Ãªtre authentifiÃ©s par des fournisseurs OpenID comme Vox et LiveJournal.',
+	'This module and its dependencies are required in order to allow commenters to be authenticated by OpenID providers including Vox and LiveJournal.' => 'Ce module et ses dÃ©pendances sont obligatoires pour permettre aux auteurs de commentaires d\'Ãªtre authentifiÃ©s par des fournisseurs OpenID comme Vox et LiveJournal.',
 	'This module is required for sending mail via SMTP Server.' => 'Ce module est nÃ©cessaire pour envoyer des emails via un serveur SMTP.',
 	'This module is required for file uploads (to determine the size of uploaded images in many different formats).' => 'Ce module est nÃ©cessaire pour les envois de fichiers (pour dÃ©terminer la taille des images dans diffÃ©rents formats).',
@@ -885,6 +886,6 @@
 ## lib/MT/App/CMS.pm
 	'_WARNING_PASSWORD_RESET_MULTI' => 'Vous Ãªtes sur le point de rÃ©-initialiser le mot de passe des utilisateurs sÃ©lectionnÃ©s. Les nouveaux mots de passe sont gÃ©nÃ©rÃ©s automatiquement et seront envoyÃ©s directement aux utilisateurs par e-mail. Ãtes-vous sÃ»r de vouloir continuer ?',
-	'_WARNING_DELETE_USER_EUM' => 'Supprimer un utilisateur est une action dÃ©finitive qui va rendre des notes orphelines. Si vous voulez retirer un utilisateur ou lui supprimer ses accÃšs nous vous recommandons de dÃ©sactiver son compte. Ãtes-vous sur de vouloir supprimer cet utilisateur ? Attention, il pourra se crÃ©er un nouvel accÃšs s\'il existe encore dans le rÃ©pertoire externe',
-	'_WARNING_DELETE_USER' => 'Supprimer un utilisateur est une action dÃ©finitive qui va rendre des notes orphelines. Si vous souhaitez retirer un utilisateur ou lui supprimer ses accÃšs nous vous recommandons de dÃ©sactiver son compte. Ãtes-vous sur de vouloir supprimer cet utilisateur ?',
+	'_WARNING_DELETE_USER_EUM' => 'Supprimer un utilisateur est une action dÃ©finitive qui va rendre des notes orphelines. Si vous voulez retirer un utilisateur ou lui supprimer ses accÃšs nous vous recommandons de dÃ©sactiver son compte. Ãtes-vous sÃ»r(e) de vouloir supprimer cet utilisateur ? Attention, il pourra se crÃ©er un nouvel accÃšs s\'il existe encore dans le rÃ©pertoire externe',
+	'_WARNING_DELETE_USER' => 'Supprimer un utilisateur est une action dÃ©finitive qui va rendre des notes orphelines. Si vous souhaitez retirer un utilisateur ou lui supprimer ses accÃšs nous vous recommandons de dÃ©sactiver son compte. Ãtes-vous sÃ»r(e) de vouloir supprimer cet utilisateur ?',
 	'All Assets' => 'Tous les ÃlÃ©ments',
 	'Published [_1]' => '[_1] publiÃ©es',
@@ -928,5 +929,5 @@
 	'Invalid type' => 'Type incorrect',
 	'New name of the tag must be specified.' => 'Le nouveau nom de ce tag doit Ãªtre spÃ©cifiÃ©.',
-	'No such tag' => 'Pas de Tag de ce type',
+	'No such tag' => 'Pas de tag de ce type',
 	'None' => 'Aucune',
 	'You are not authorized to log in to this blog.' => 'Vous n\'Ãªtes pas autorisÃ© Ã  vous connecter sur ce blog.',
@@ -1016,5 +1017,5 @@
 	'File \'[_1]\' uploaded by \'[_2]\'' => 'Fichier \'[_1]\' envoyÃ© par \'[_2]\'',
 	'File \'[_1]\' (ID:[_2]) deleted by \'[_3]\'' => 'Fichier \'[_1]\' (ID:[_2]) supprimÃ© par \'[_3]\'',
-	'Permisison denied.' => 'Permission refusÃ©e.',
+	'Permisison denied.' => 'Autorisation refusÃ©e.',
 	'The Template Name and Output File fields are required.' => 'Le nom du gabarit et les champs du fichier de sortie sont obligatoires.',
 	'Invalid type [_1]' => 'Type invalide [_1]',
@@ -1040,5 +1041,5 @@
 	'One of the entries ([_1]) did not actually exist' => 'Une des notes ([_1]) n\'existait pas',
 	'[_1] \'[_2]\' (ID:[_3]) status changed from [_4] to [_5]' => '[_1] \'[_2]\' (ID:[_3]) statut changÃ© de [_4] Ã  [_5]',
-	'You don\'t have permission to approve this comment.' => 'Vous n\'avez pas la permission d\'approuver ce commentaire.',
+	'You don\'t have permission to approve this comment.' => 'Vous n\'avez pas l\'autorisation d\'approuver ce commentaire.',
 	'Comment on missing entry!' => 'Commentaire sur une note manquante !',
 	'Orphaned comment' => 'Commentaire orphelin',
@@ -1088,6 +1089,6 @@
 	'Role name cannot be blank.' => 'Le rÃŽle de peu pas Ãªtre laissÃ© vierge.',
 	'Another role already exists by that name.' => 'Un autre rÃŽle existe dÃ©jÃ  avec ce nom.',
-	'You cannot define a role without permissions.' => 'Vous ne pouvez pas dÃ©finir un rÃŽle sans permissions.',
-	'No permissions.' => 'Pas de permissions.',
+	'You cannot define a role without permissions.' => 'Vous ne pouvez pas dÃ©finir un rÃŽle sans autorisations.',
+	'No permissions.' => 'Pas d\'autorisations.',
 	'No such entry \'[_1]\'' => 'Aucune note du type \'[_1]\'',
 	'No email address for user \'[_1]\'' => 'L\'utilisateur \'[_1]\' ne possÃšde pas d\'adresse e-mail',
@@ -1117,5 +1118,5 @@
 	'You do not have export permissions' => 'Vous n\'avez pas les droits d\'exportation',
 	'You do not have import permissions' => 'Vous n\'avez pas les droits d\'importation',
-	'You do not have permission to create users' => 'Vous n\'avez pas la permission de crÃ©er des utilisateurs',
+	'You do not have permission to create users' => 'Vous n\'avez pas l\'autorisation de crÃ©er des utilisateurs',
 	'Importer type [_1] was not found.' => 'Type d\'importeur [_1] non trouvÃ©.',
 	'Saving map failed: [_1]' => 'Ãchec lors du rattachement: [_1]',
@@ -1125,5 +1126,5 @@
 	'Populating blog with default templates failed: [_1]' => 'L\'activation sur le blog des gabarits par dÃ©faut a Ã©chouÃ© : [_1]',
 	'Setting up mappings failed: [_1]' => 'La mise en oeuvre des mappings a Ã©chouÃ© : [_1]',
-	'Error: Movable Type cannot write to the template cache directory. Please check the permissions for the directory called <code>[_1]</code> underneath your blog directory.' => 'Erreur: Movable Type ne peut pas Ã©crire dans le rÃ©pertoire de cache de gabarits. Merci de vÃ©rifier les permissions du rÃ©pertoire <code>[_1]</code> situÃ© dans le rÃ©pertoire du blog.',
+	'Error: Movable Type cannot write to the template cache directory. Please check the permissions for the directory called <code>[_1]</code> underneath your blog directory.' => 'Erreur: Movable Type ne peut pas Ã©crire dans le rÃ©pertoire de cache de gabarits. Merci de vÃ©rifier les autorisations du rÃ©pertoire <code>[_1]</code> situÃ© dans le rÃ©pertoire du blog.',
 	'Error: Movable Type was not able to create a directory to cache your dynamic templates. You should create a directory called <code>[_1]</code> underneath your blog directory.' => 'Erreur: Movable Type n\'a pas pu crÃ©er un rÃ©pertoire pour cacher vos gabarits dynamiques. Vous devez crÃ©er un rÃ©pertoire nommÃ© <code>[_1]</code> dans le rÃ©pertoire de votre blog.',
 	'That action ([_1]) is apparently not implemented!' => 'Cette action ([_1]) n\'est visiblement pas implÃ©mentÃ©e!',
@@ -1152,5 +1153,5 @@
 	'Roles Selected' => 'RÃŽles sÃ©lectionnÃ©s',
 	'' => '', # Translate - New
-	'Grant Permissions' => 'Assigner des permissions',
+	'Grant Permissions' => 'Ajouter des autorisations',
 	'Backup' => 'Sauvegarder',
 	'Backup & Restore' => 'Sauvegarder & Restaurer',
@@ -1201,7 +1202,7 @@
 	'Blog Stats' => 'Statistiques du blog',
 	'Unpublish Entries' => 'Annuler publication',
-	'Add Tags...' => 'Ajouter des Tags...',
+	'Add Tags...' => 'Ajouter des tags...',
 	'Tags to add to selected entries' => 'Tags Ã  ajouter aux notes sÃ©lectionnÃ©es',
-	'Remove Tags...' => 'Enlever les Tags...',
+	'Remove Tags...' => 'Enlever les tags...',
 	'Tags to remove from selected entries' => 'Tags Ã  enlever des notes sÃ©lectionnÃ©es',
 	'Batch Edit Entries' => 'Modifier des notes par lot',
@@ -1221,5 +1222,5 @@
 	'Recover Password(s)' => 'RÃ©cupÃ©rer le(s) mot(s) de passe',
 	'Delete' => 'Supprimer',
-	'Non-spam TrackBacks' => 'Trackbacks marquÃ©s comme n\'Ã©tant pas du spam', # Translate - New
+	'Non-spam TrackBacks' => 'Trackbacks marquÃ©s comme n\'Ã©tant pas du spam',
 	'TrackBacks on my entries' => 'Trackbacks sur mes entrÃ©es',
 	'Published TrackBacks' => 'Trackbacks publiÃ©s',
@@ -1237,5 +1238,5 @@
 	'Index Templates' => 'Gabarits d\'index',
 	'Archive Templates' => 'Gabarits d\'archives',
-	'Template Modules' => 'Gabarits de modules',
+	'Template Modules' => 'Modules de gabarits',
 	'System Templates' => 'Gabarits systÃšme',
 	'Tags with entries' => 'Tags avec les notes',
@@ -1339,5 +1340,5 @@
 	'No default templates were found.' => 'Aucun gabarit par dÃ©faut trouvÃ©.',
 	'Cloned blog... new id is [_1].' => 'Le nouvel identifiant du blog clonÃ© est [_1]',
-	'Cloning permissions for blog:' => 'Clonage des permissions du blog:',
+	'Cloning permissions for blog:' => 'Clonage des autorisations du blog:',
 	'[_1] records processed...' => '[_1] enregistrements effectuÃ©s...',
 	'[_1] records processed.' => '[_1] enregistrements effectuÃ©s.',
@@ -1362,7 +1363,7 @@
 	'Custom ([_1])' => '([_1]) personnalisÃ© ',
 	'This role was generated by Movable Type upon upgrade.' => 'Ce rÃŽle a Ã©tÃ© gÃ©nÃ©rÃ© par Movable Type lors d\'une mise Ã  jour.',
-	'Migrating permission records to new structure...' => 'Migration des donnÃ©es de permission vers une nouvelle structure...',
+	'Migrating permission records to new structure...' => 'Migration des donnÃ©es d\'autorisation vers une nouvelle structure...',
 	'Migrating role records to new structure...' => 'Migration des donnÃ©es de rÃŽle vers la nouvelle structure...',
-	'Migrating system level permissions to new structure...' => 'Migration des permissions pour tout le systÃšme vers la nouvelle structure...',
+	'Migrating system level permissions to new structure...' => 'Migration des autorisations pour tout le systÃšme vers la nouvelle structure...',
 	'Invalid upgrade function: [_1].' => 'Fonction de mise Ã  jour invalide : [_1].',
 	'Error loading class [_1].' => 'Erreur en chargeant la classe [_1].',
@@ -1402,5 +1403,5 @@
 	'Plugin \'[_1]\' installed successfully.' => 'Le Plugin \'[_1]\' a Ã©tÃ© installÃ© correctement.',
 	'User \'[_1]\' installed plugin \'[_2]\', version [_3] (schema version [_4]).' => 'Utilisateur \'[_1]\' a installÃ© le plugin \'[_2]\', version [_3] (schÃ©ma version [_4]).',
-	'Setting your permissions to administrator.' => 'ParamÃštre des permissions pour l\'administrateur.',
+	'Setting your permissions to administrator.' => 'ParamÃštre des autorisations pour l\'administrateur.',
 	'Creating configuration record.' => 'CrÃ©ation des infos de configuration.',
 	'Creating template maps...' => 'CrÃ©ation des mappages de gabarits...',
@@ -1415,5 +1416,5 @@
 	'Updating comment status flags...' => 'Modification des statuts des commentaires...',
 	'Updating commenter records...' => 'Modification des donnÃ©es des auteurs de commentaires...',
-	'Assigning blog administration permissions...' => 'Ajout des permissions d\'administration du blog...',
+	'Assigning blog administration permissions...' => 'Ajout des autorisations d\'administration du blog...',
 	'Setting blog allow pings status...' => 'Mise en place du statut d\'autorisation des pings...',
 	'Updating blog comment email requirements...' => 'Mise Ã  jour des prÃ©requis des emails pour les commentaires du blog...',
@@ -1422,5 +1423,5 @@
 	'Updating blog old archive link status...' => 'Modification de l\'ancien statut d\'archive du blog...',
 	'Updating entry week numbers...' => 'Mise Ã  jour des numÃ©ros des semaines de la note...',
-	'Updating user permissions for editing tags...' => 'Modification des permissions des utilisateurs pour modifier les balises...',
+	'Updating user permissions for editing tags...' => 'Modification des autorisations des utilisateurs pour modifier les balises...',
 	'Setting new entry defaults for blogs...' => 'RÃ©glage des valeurs par dÃ©faut des nouvelles notes pour les blogs...',
 	'Migrating any "tag" categories to new tags...' => 'Migration des catÃ©gories de "tag" vers de nouveaux tags...',
@@ -1495,9 +1496,9 @@
 	'Powered by [_1]' => 'Powered by [_1]',
 	'Version [_1]' => 'Version [_1]',
-	'http://www.sixapart.com/movabletype/' => 'http://www.movabletype.fr',
+	'http://www.sixapart.com/movabletype/' => 'http://www.movabletype.org',
 	'OpenID URL' => 'URL OpenID',
 	'Sign in using your LiveJournal username.' => 'Identifiez-vous en utilisant votre identifiant LiveJournal.',
 	'OpenID is an open and decentralized single sign-on identity system.' => 'OpenID est un systÃšme de gestion d\'identitÃ© ouvert et dÃ©centralisÃ© pour s\'identifiant une seule fois seulement.',
-	'Sign In' => 'Inscription',
+	'Sign In' => 'Connexion',
 	'Learn more about OpenID.' => 'En savoir plus sur OpenID.',
 	'Your LiveJournal Username' => 'Votre identifiant LiveJournal',
@@ -1541,13 +1542,13 @@
 
 ## mt-static/mt.js
-	'delete' => 'supprimer',
+	'delete' => 'supprimer', 
 	'remove' => 'retirer',
 	'enable' => 'activer',
 	'disable' => 'dÃ©sactiver',
 	'You did not select any [_1] to [_2].' => 'Vous n\'avez pas sÃ©lectionnÃ© de [_1] Ã  [_2].',
-	'Are you sure you want to [_2] this [_1]?' => 'Ãtes-vous certain de vouloir [_2] : [_1]?',
-	'Are you sure you want to [_3] the [_1] selected [_2]?' => 'Ãtes-vous sur de vouloir [_3] les [_1] selectionnÃ©s [_2]?',
-	'Are you certain you want to remove this role? By doing so you will be taking away the permissions currently assigned to any users and groups associated with this role.' => 'Ãtes-vous certain de vouloir supprimer ce rÃŽle. En faisant cela vous allez supprimer les autorisations de tous les utilisateurs et groupes associÃ©s Ã  ce rÃŽle.',
-	'Are you certain you want to remove these [_1] roles? By doing so you will be taking away the permissions currently assigned to any users and groups associated with these roles.' => 'Ãtes vous certain de vouloir supprimer les rÃŽles [_1] ? Avec cette actions vous allez supprimer les permissions associÃ©es Ã  tous les utilisateurs et groupes liÃ©s Ã  ce rÃŽle.',
+	'Are you sure you want to [_2] this [_1]?' => 'Ãtes-vous sÃ»r(e) de vouloir [_2] : [_1]?',
+	'Are you sure you want to [_3] the [_1] selected [_2]?' => 'Ãtes-vous sÃ»r(e) de vouloir [_3] les [_1] [_2] sÃ©lectionnÃ©(e)s?',
+	'Are you certain you want to remove this role? By doing so you will be taking away the permissions currently assigned to any users and groups associated with this role.' => 'Ãtes-vous sÃ»r(e) de vouloir supprimer ce rÃŽle. En faisant cela vous allez supprimer les autorisations de tous les utilisateurs et groupes associÃ©s Ã  ce rÃŽle.',
+	'Are you certain you want to remove these [_1] roles? By doing so you will be taking away the permissions currently assigned to any users and groups associated with these roles.' => 'Ãtes-vous sÃ»r(e) de vouloir supprimer les rÃŽles [_1] ? Avec cette actions vous allez supprimer les autorisations associÃ©es Ã  tous les utilisateurs et groupes liÃ©s Ã  ce rÃŽle.',
 	'You did not select any [_1] [_2].' => 'Vous n\'avez pas sÃ©lectionnÃ© de [_1] [_2].',
 	'You can only act upon a minimum of [_1] [_2].' => 'Vous ne pouvez agir que sur un minimum de [_1] [_2].',
@@ -1557,6 +1558,6 @@
 	'to remove spam status' => 'pour retirer le statut de spam',
 	'Enter URL:' => 'Saisissez l\'URL :',
-	'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\'?' => 'Le tag \'[_2]\' existe dÃ©jÃ . Ãtes-vous sÃ»r de vouloir fusionner \'[_1]\' avec \'[_2]\'?',
-	'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\' across all weblogs?' => 'Le tag \'[_2]\' existe dÃ©jÃ . Ãtes-vous sÃ»r de vouloir fusionner \'[_1]\' avec \'[_2]\' sur tous les blogs?',
+	'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\'?' => 'Le tag \'[_2]\' existe dÃ©jÃ . Ãtes-vous sÃ»r(e) de vouloir fusionner \'[_1]\' avec \'[_2]\'?',
+	'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\' across all weblogs?' => 'Le tag \'[_2]\' existe dÃ©jÃ . Ãtes-vous sÃ»r(e) de vouloir fusionner \'[_1]\' avec \'[_2]\' sur tous les blogs?',
 	'Loading...' => 'Chargement...',
 	'[_1] &ndash; [_2] of [_3]' => '[_1] &ndash; [_2] de [_3]',
@@ -1578,9 +1579,9 @@
 	'six months back' => 'six mois',
 	'one year back' => 'un an',
-	'Find new comments' => 'Trouver les nouveaux commentaires',
+	'Find new comments' => 'Voir les nouveaux commentaires',
 	'Posted in [_1] on [_2]' => 'PubliÃ© dans [_1] le [_2]',
 	'No results found' => 'Aucun rÃ©sultat n\'a Ã©tÃ© trouvÃ©',
 	'No new comments were found in the specified interval.' => 'Aucun nouveau commentaire n\'a Ã©tÃ© trouvÃ© dans la pÃ©riode spÃ©cifiÃ©e.',
-	'Select the time interval that you\'d like to search in, then click \'Find new comments\'' => 'SÃ©lectionner l\'intervalle de temps dÃ©sirÃ© pour la recherche, puis cliquez sur \'Trouver les nouveaux commentaires\'',
+	'Select the time interval that you\'d like to search in, then click \'Find new comments\'' => 'SÃ©lectionner l\'intervalle de temps dÃ©sirÃ© pour la recherche, puis cliquez sur \'Voir les nouveaux commentaires\'',
 
 ## search_templates/results_feed_rss2.tmpl
@@ -1611,5 +1612,5 @@
 	'What is this?' => 'De quoi s\'agit-il?',
 	'TAG LISTING FOR TAG SEARCH ONLY' => 'LISTE DES TAGS UNIQUEMENT POUR LA RECHERCHE DE TAG',
-	'Other Tags' => 'Autres Tags',
+	'Other Tags' => 'Autres tags',
 	'END OF PAGE BODY' => 'FIN DU CORPS DE LA PAGE',
 	'END OF CONTAINER' => 'FIN DU CONTENU',
@@ -1625,5 +1626,5 @@
 	'Password Confirm' => 'Mot de passe (confirmation)',
 	'Repeat the password for confirmation.' => 'RÃ©pÃ©tez votre mot de passe pour confirmer.',
-	'Password recovery word/phrase' => 'Indice du mot de passe',
+	'Password recovery word/phrase' => 'Indice de rÃ©cupÃ©ration du mot de passe',
 	'This word or phrase will be required to recover the password if you forget it.' => 'Ce mot ou cette expression vous seront demandÃ©s pour retrouver le mot de passe si vous l\'oubliez.',
 	'Website URL' => 'URL du site',
@@ -1680,5 +1681,5 @@
 	'Manage Users' => 'GÃ©rer les Utilisateurs',
 	'Quickfilters' => 'Filtres rapides',
-	'Are you sure you want to remove this role?' => 'Ãtes-vous certain de vouloir supprimer ce rÃŽle?',
+	'Are you sure you want to remove this role?' => 'Ãtes-vous sÃ»r(e) de vouloir supprimer ce rÃŽle?',
 	'Your changes have been saved.' => 'Les modifications ont Ã©tÃ© enregistrÃ©es.',
 	'Add a user to this blog' => 'Ajouter un utilisateur Ã  ce blog',
@@ -1698,6 +1699,6 @@
 	'user' => 'utilisateur',
 	'users' => 'utilisateurs',
-	'Are you sure you want to remove the selected user from this blog?' => 'Ãtes-vous certain de vouloir retirer l\'utilisateur sÃ©lectionnÃ© de ce blog?',
-	'Are you sure you want to remove the [_1] selected users from this blog?' => 'Ãtes-vous certain de vouloir retirer les [_1] utilisateurs sÃ©lectionnÃ©s de ce blog?',
+	'Are you sure you want to remove the selected user from this blog?' => 'Ãtes-vous sÃ»r(e) de vouloir retirer l\'utilisateur sÃ©lectionnÃ© de ce blog?',
+	'Are you sure you want to remove the [_1] selected users from this blog?' => 'Ãtes-vous sÃ»r(e) de vouloir retirer les [_1] utilisateurs sÃ©lectionnÃ©s de ce blog?',
 	'Remove selected user(s) (r)' => 'Retirer l\'(es) utilisateur(s) sÃ©lectionnÃ©(s) (r)',
 	'Remove' => 'Retirer',
@@ -1705,12 +1706,12 @@
 ## tmpl/cms/list_role.tmpl
 	'Roles for [_1] in' => 'RÃŽles pour [_1] dans',
-	'Roles: System-wide' => 'RÃŽles : Pour tout le systÃšme',
+	'Roles: System-wide' => 'RÃŽles : configuration globale',
 	'You have successfully deleted the role(s).' => 'Vous avez supprimÃ© avec succÃšs le(s) rÃŽle(s).',
 	'roles' => 'rÃŽles',
 	'Delete selected [_1] (x)' => 'Effacer [_1] sÃ©lectionnÃ© (x)',
-	'Grant another role to [_1]' => 'Attribuer un autre rÃŽle Ã  [_1]',
+	'Grant another role to [_1]' => 'Ajouter un autre rÃŽle Ã  [_1]',
 	'Create Role' => 'CrÃ©er un rÃŽle',
 	'_USER_STATUS_CAPTION' => 'Statut',
-	'In Blog' => 'Dans le blog', # Translate - New
+	'In Blog' => 'Dans le blog',
 	'Via Group' => 'Via le Groupe',
 	'Members' => 'Membres',
@@ -1843,5 +1844,5 @@
 	'Outbound TrackBack URLs' => 'URLs trackbacks sortants',
 	'View Previously Sent TrackBacks' => 'Afficher les trackbacks envoyÃ©s prÃ©cÃ©demment',
-	'<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.',
+	'[_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.' => '[_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.',
 	'Auto-saving...' => 'Sauvegarde automatique...',
 	'Last auto-save at [_1]:[_2]:[_3]' => 'DerniÃšre sauvegarde automatique Ã  [_1]:[_2]:[_3]',
@@ -1978,7 +1979,7 @@
 	'URL of commenter' => 'URL de l\'auteur de commentaires',
 	'View all comments with this URL' => 'Afficher tous les commentaires associÃ©s Ã  cette URL',
-	'Entry this comment was made on' => 'Note sur laquelle ce commentaire a Ã©tÃ© dÃ©posÃ©',
-	'Entry no longer exists' => 'Cette note n\'existe plus',
-	'View all comments on this entry' => 'Afficher tous les commentaires associÃ©s Ã  cette note',
+	'[_1] this comment was made on' => '[_1] ce commentaire a Ã©tÃ© postÃ©', # Translate - New
+	'[_1] no longer exists' => '[_1] n\'existe plus', # Translate - New
+	'View all comments on this [_1]' => 'Voir tous les commentaires sur cette [_1]', # Translate - New
 	'Date' => 'Date',
 	'Date this comment was made' => 'Date du commentaire',
@@ -1993,5 +1994,5 @@
 ## tmpl/cms/edit_role.tmpl
 	'Role Details' => 'DÃ©tails du rÃŽle',
-	'_USAGE_ROLE_PROFILE' => 'Sur cet Ã©cran vous pouvez crÃ©er un rÃŽle et les permissions associÃ©es.',
+	'_USAGE_ROLE_PROFILE' => 'Sur cet Ã©cran vous pouvez crÃ©er un rÃŽle et les autorisations associÃ©es.',
 	'List Roles' => 'Lister les rÃŽles',
 	'[quant,_1,User,Users] with this role' => '[quant,_1,Utilisateur,Utilisateurs] avec ce rÃŽle',
@@ -2045,6 +2046,6 @@
 ## tmpl/cms/dialog/recover.tmpl
 	'Your password has been changed, and the new password has been sent to your email address ([_1]).' => 'Votre mot de passe a Ã©tÃ© modifiÃ© et a Ã©tÃ© envoyÃ© Ã  votre adresse e-mail([_1]).',
-	'Sign in to Movable Type (s)' => 'Authentifiez-vous sur Movable Type (s)',
-	'Sign in to Movable Type' => 'Authentifiez-vous sur Movable Type',
+	'Sign in to Movable Type (s)' => 'Connectez-vous sur Movable Type (s)',
+	'Sign in to Movable Type' => 'Connectez-vous sur Movable Type',
 	'Recover (s)' => 'RÃ©cupÃ©rer (s)',
 	'Recover' => 'RÃ©cupÃ©rer',
@@ -2231,8 +2232,8 @@
 	'Your Movable Type session has ended. If you wish to sign in again, you can do so below.' => 'Votre session Movable Type est terminÃ©e. Si vous souhaitez vous identifier Ã  nouveau, vous pouvez le faire ci-dessous.',
 	'Your Movable Type session has ended. Please sign in again to continue this action.' => 'Votre session Movable Type est terminÃ©e. Merci de vous identifier Ã  nouveau pour continuer cette action.',
-	'Sign In (s)' => 'Authentification (s)',
+	'Sign In (s)' => 'Connexion (s)',
 
 ## tmpl/cms/cfg_archives.tmpl
-	'Error: Movable Type was not able to create a directory for publishing your blog. If you create this directory yourself, assign sufficient permissions that allow Movable Type to create files within it.' => 'Erreur : Movable Type n\'a pas Ã©tÃ© capable de crÃ©er un rÃ©pertoire pour publier votre blog. Si vous crÃ©ez ce rÃ©pertoire vous-mÃªme, assignez-lui des permissions suffisantes pour que Movable Type puisse crÃ©er des fichiers dedans.',
+	'Error: Movable Type was not able to create a directory for publishing your blog. If you create this directory yourself, assign sufficient permissions that allow Movable Type to create files within it.' => 'Erreur : Movable Type n\'a pas Ã©tÃ© capable de crÃ©er un rÃ©pertoire pour publier votre blog. Si vous crÃ©ez ce rÃ©pertoire vous-mÃªme, assignez-lui des autorisations suffisantes pour que Movable Type puisse crÃ©er des fichiers dedans.',
 	'Your blog\'s archive configuration has been saved.' => 'La configuration des archives de votre blog a Ã©tÃ© sauvegardÃ©e.',
 	'You have successfully added a new archive-template association.' => 'L\'association gabarit/archive a rÃ©ussi.',
@@ -2297,5 +2298,5 @@
 	'Automatically create a new blog for each new user' => 'CrÃ©er automatiquement un nouveau blog pour chaque nouvel utilisateur',
 	'Personal blog clone source' => 'Source du blog personnel Ã  cloner',
-	'Select a blog you wish to use as the source for new personal blogs. The new blog will be identical to the source except for the name, publishing paths and permissions.' => 'SÃ©lectionner le blog que vous souhaitez utiliser comme source pour les nouveau blogs personnels. Le nouveau blog sera ainsi identique Ã  la source, exceptÃ© le nom, les chemins de publication et les permissions.',
+	'Select a blog you wish to use as the source for new personal blogs. The new blog will be identical to the source except for the name, publishing paths and permissions.' => 'SÃ©lectionner le blog que vous souhaitez utiliser comme source pour les nouveau blogs personnels. Le nouveau blog sera ainsi identique Ã  la source, exceptÃ© le nom, les chemins de publication et les autorisations.',
 	'Change blog' => 'Changer de blog',
 	'Default Site URL' => 'URL par dÃ©faut du site',
@@ -2358,7 +2359,7 @@
 
 ## tmpl/cms/list_association.tmpl
-	'Permissions for [_1]' => 'Permissions pour [_1]',
+	'Permissions for [_1]' => 'Autorisations pour [_1]',
 	'Group Associations for [_1]' => 'Associations de groupe pour [_1]',
-	'Permissions: System-wide' => 'Permissions : pour tout le systÃšme',
+	'Permissions: System-wide' => 'Autorisations : configuration globale',
 	'Users &amp; Groups for [_1]' => 'Utilisateurs &amp; groupes pour [_1]',
 	'Users for [_1]' => 'Utilisateurs pour [_1]',
@@ -2366,18 +2367,18 @@
 	'permissions' => 'Autorisations',
 	'Remove selected assocations (x)' => 'Supprimer les associations sÃ©lectionnÃ©es (x)',
-	'Revoke Permission' => 'RÃ©voquer la permission',
+	'Revoke Permission' => 'Retirer l\'autorisation',
 	'The user <em>[_1]</em> is currently disabled.' => 'L\'utilisateur <em>[_1]</em> est actuellement dÃ©sactivÃ©',
 	'The group <em>[_1]</em> is currently disabled.' => 'Le groupe <em>[_1]</em> est actuellement dÃ©sactivÃ©',
-	'You have successfully revoked the given permission(s).' => 'Vous avez rÃ©voquÃ© avec succÃšs les permissions sÃ©lectionnÃ©es.',
-	'You have successfully granted the given permission(s).' => 'Vous avez attribuÃ© avec succÃšs les permissions sÃ©lectionnÃ©es.',
-	'Grant Permission' => 'Attribuer une permission',
+	'You have successfully revoked the given permission(s).' => 'Vous avez rÃ©voquÃ© avec succÃšs les autorisations sÃ©lectionnÃ©es.',
+	'You have successfully granted the given permission(s).' => 'Vous avez attribuÃ© avec succÃšs les autorisations sÃ©lectionnÃ©es.',
+	'Grant Permission' => 'Ajouter une autorisation',
 	'You can not create associations for disabled users.' => 'Vous ne pouvez pas crÃ©er d\'association pour les utilisateurs dÃ©sactivÃ©s.',
 	'Add [_1] to a blog' => 'Ajouter [_1] Ã  un blog',
 	'You can not create associations for disabled groups.' => 'Vous ne pouvez pas crÃ©er d\'association pour les groupes dÃ©sactivÃ©s.',
-	'Assign Role to Group' => 'Assigner le rÃŽle au groupe',
-	'Assign Role to User' => 'Assigner le rÃŽle Ã  l\'utilisateur',
+	'Assign Role to Group' => 'Ajouter le rÃŽle au groupe',
+	'Assign Role to User' => 'Ajouter le rÃŽle Ã  l\'utilisateur',
 	'Add a group to this blog' => 'Ajouter un groupe Ã  ce blog',
-	'Grant permission to a group' => 'Assigner une permission Ã  un groupe',
-	'Grant permission to a user' => 'Assigner une permission Ã  un utilisateur',
+	'Grant permission to a group' => 'Ajouter une autorisation Ã  un groupe',
+	'Grant permission to a user' => 'Ajouter une autorisation Ã  un utilisateur',
 	'User/Group' => 'Utilisateur/Groupe',
 	'Created On' => 'CrÃ©Ã© le',
@@ -2396,5 +2397,5 @@
 	'[_1] where [_2] [_3]' => '[_1] oÃ¹ [_2] [_3]',
 	'Publish selected [_1] (a)' => 'Publier le [_1] sÃ©lectionnÃ© (a)',
-	'Are you sure you want to remove all comments reported as spam?' => 'Ãtes-vous certain de vouloir supprimer tous les commentaires notifiÃ©s comme spam ?',
+	'Are you sure you want to remove all comments reported as spam?' => 'Ãtes-vous sÃ»r(e) de vouloir supprimer tous les commentaires notifiÃ©s comme spam ?',
 
 ## tmpl/cms/rebuilding.tmpl
@@ -2482,5 +2483,5 @@
 	'List &amp; Edit Templates' => 'Lister &amp; Editer les gabarits',
 	'Edit Categories' => 'Modifier les catÃ©gories',
-	'Edit Tags' => 'Editer les Tags',
+	'Edit Tags' => 'Editer les tags',
 	'Edit Weblog Configuration' => 'Modifier la configuration du blog',
 	'Utilities' => 'Utilitaires',
@@ -2552,5 +2553,5 @@
 	'List Plugins' => 'Liste des Plugins',
 	'Aggregate' => 'Multi-Blogs',
-	'List Tags' => 'Liste de Tags',
+	'List Tags' => 'Liste de tags',
 	'Edit System Settings' => 'Editer les ParamÃštres SystÃšme',
 	'Show Activity Log' => 'Afficher le journal (logs)',
@@ -2574,5 +2575,4 @@
 
 ## tmpl/cms/include/backup_start.tmpl
-	'Tools: Backup' => 'Outils : Sauvegarde',
 	'Backing up Movable Type' => 'Sauvegarder Movable Type',
 
@@ -2635,5 +2635,5 @@
 
 ## tmpl/cms/list_author.tmpl
-	'Users: System-wide' => 'Utilisateurs : Dans tout le systÃšme',
+	'Users: System-wide' => 'Utilisateurs : configuration globale',
 	'_USAGE_AUTHORS_LDAP' => 'Voici la liste de tous les utilisateurs de Movable Type dans le systÃšme. Vous pouvez modifier les autorisations accordÃ©es Ã  un utilisateur en cliquant sur son nom. Vous pouvez dÃ©sactiver un utilisateur en cochant la case Ã  cotÃ© de son nom, puis en cliquant sur DÃSACTIVER. L\'utilisateur ne pourra plus s\'identifier sur Movable Type.',
 	'You have successfully disabled the selected user(s).' => 'Vous avez dÃ©sactivÃ© avec succÃšs les utilisateurs sÃ©lectionnÃ©s.',
@@ -2649,11 +2649,11 @@
 	'Disable selected users (d)' => 'DÃ©sactiver les utilisateurs sÃ©lectionnÃ©s (d)',
 	'_USER_DISABLE' => 'DÃ©sactiver',
-	'Showing All Users' => 'Afficher tous les utilisateurs', # Translate - New
+	'Showing All Users' => 'Afficher tous les utilisateurs',
 
 ## tmpl/cms/popup/rebuilt.tmpl
 	'Success' => 'SuccÃšs',
 	'All of your files have been published.' => 'Tous vos fichiers ont Ã©tÃ© publiÃ©s.',
-	'Your [_1] archives have been published.' => 'Vos [_1] archives ont Ã©tÃ© publiÃ©es.',
-	'Your [_1] templates have been published.' => 'Vos [_1] templates ont Ã©tÃ© publiÃ©es.',
+	'Your [_1] archives have been published.' => 'Vos archives [_1]  ont Ã©tÃ© publiÃ©es.',
+	'Your [_1] templates have been published.' => 'Vos gabarites [_1] ont Ã©tÃ© publiÃ©es.',
 	'View your site.' => 'Voir votre site.',
 	'View this page.' => 'Voir cette page.',
@@ -2662,5 +2662,5 @@
 
 ## tmpl/cms/popup/rebuild_confirm.tmpl
-	'Publish [_1]' => 'Publier [_1]', # Translate - New
+	'Publish [_1]' => 'Publier [_1]',
 	'Publish <em>[_1]</em>' => 'Publier <em>[_1]</em>',
 	'_REBUILD_PUBLISH' => 'Publier',
@@ -2668,5 +2668,5 @@
 	'Index Template: [_1]' => 'Gabarit d\'index: [_1]',
 	'Only Indexes' => 'Uniquement les Index',
-	'Only [_1] Archives' => 'Uniquement [_1] Archives',
+	'Only [_1] Archives' => 'Uniquement les archives [_1]',
 	'Publish (s)' => 'Publier',
 
@@ -2709,5 +2709,5 @@
 	'Download Log (CSV)' => 'TÃ©lÃ©charger le journal (CSV)',
 	'Clear Activity Log' => 'Effacer le journal (logs)',
-	'Are you sure you want to reset the activity log?' => 'Ãtes-vous certain de vouloir rÃ©-initialiser le journal (logs) ?',
+	'Are you sure you want to reset the activity log?' => 'Ãtes-vous sÃ»r(e) de vouloir rÃ©-initialiser le journal (logs) ?',
 	'Showing all log records' => 'Affichage de toutes les donnÃ©es du journal',
 	'Showing log records where' => 'Affichage des donnÃ©es du journal oÃ¹',
@@ -2730,5 +2730,5 @@
 	'tags' => 'tags',
 	'Specify new name of the tag.' => 'SpÃ©cifier le nouveau nom du tag',
-	'Tag Name' => 'Nom du Tag',
+	'Tag Name' => 'Nom du tag',
 	'Click to edit tag name' => 'Cliquez pour modifier le nom du tag',
 	'Rename [_1]' => 'Renommer',
@@ -2835,4 +2835,5 @@
 	'Search for other TrackBacks with this status' => 'Rechercher d\'autres trackbacks avec ce statut',
 	'Target Entry' => 'Note cible',
+	'Entry no longer exists' => 'Cette note n\'existe plus',
 	'No title' => 'Sans titre',
 	'View all TrackBacks on this entry' => 'Voir tous les trackbacks pour cette note',
@@ -2846,12 +2847,12 @@
 
 ## tmpl/cms/cfg_plugin.tmpl
-	'System Plugin Settings' => 'ParamÃštres du systÃšme de plugins', # Translate - New
+	'System Plugin Settings' => 'ParamÃštres du systÃšme de plugins',
 	'http://www.sixapart.com/pronet/plugins/' => 'http://www.sixapart.com/pronet/plugins/',
 	'Find Plugins' => 'Trouver des plugins',
-	'Plugin System' => 'SystÃšme de plugins', # Translate - New
-	'Manually enable or disable plugin-system functionality. Re-enabling plugin-system functionality, will return all plugins to their original state.' => 'Activer ou dÃ©sactiver la prise en charge des plugins manuellement. La rÃ©activation de cette prise en charge rendra Ã  tous les plugins leur Ã©tat original', # Translate - New
-	'Disable plugin functionality' => 'DÃ©sactiver la prise en charge des plugins', # Translate - New
+	'Plugin System' => 'SystÃšme de plugins',
+	'Manually enable or disable plugin-system functionality. Re-enabling plugin-system functionality, will return all plugins to their original state.' => 'Activer ou dÃ©sactiver la prise en charge des plugins manuellement. La rÃ©activation de cette prise en charge rendra Ã  tous les plugins leur Ã©tat original',
+	'Disable plugin functionality' => 'DÃ©sactiver la prise en charge des plugins',
 	'Disable Plugins' => 'DÃ©sactiver les plugins',
-	'Enable plugin functionality' => 'Activer la prise en charge des plugins', # Translate - New
+	'Enable plugin functionality' => 'Activer la prise en charge des plugins',
 	'Enable Plugins' => 'Activer les plugins',
 	'Your plugin settings have been saved.' => 'Les paramÃštres de votre plugin ont Ã©tÃ© enregistrÃ©s.',
@@ -2860,7 +2861,7 @@
 	'Your plugins have been reconfigured.' => 'Votre plugin a Ã©tÃ© reconfigurÃ©.',
 	'Are you sure you want to reset the settings for this plugin?' => 'Ãtes-vous sÃ»r de vouloir rÃ©-initialiser les paramÃštres pour ce plugin ?',
-	'Are you sure you want to disable plugin functionality?' => 'Ãtes-vous sÃ»r de vouloir dÃ©sactiver la prise en charge des plugins ?', # Translate - New
+	'Are you sure you want to disable plugin functionality?' => 'Ãtes-vous sÃ»r de vouloir dÃ©sactiver la prise en charge des plugins ?',
 	'Disable this plugin?' => 'DÃ©sactiver ce plugin ?',
-	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that have were not individually disabled.)' => 'Ãtes vous sÃ»r de vouloir activer la prise en charge des plugins ? (Cela rÃ©activera tous les plugins qui n\'ont pas Ã©tÃ© dÃ©sactivÃ©s individuellement.)', # Translate - New
+	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that were not individually disabled.)' => 'Ãtes-vous sÃ»r de vouloir activer les plugins ? (Cela rÃ©-activera tous les plugins qui n\'ont pas Ã©tÃ© dÃ©sactivÃ©s manuellement)', # Translate - New
 	'Enable this plugin?' => 'Activer ce plugin ?',
 	'Failed to Load' => 'Erreur de chargement',
@@ -3058,5 +3059,5 @@
 	'Entry Settings' => 'ParamÃštres des notes',
 	'Display Settings' => 'PrÃ©fÃ©rences d\'affichage',
-	'Entry Listing Default' => 'Liste des notes par dÃ©faut',
+	'Entry Listing Default' => 'Listage des notes par dÃ©faut',
 	'Select the number of days of entries or the exact number of entries you would like displayed on your blog.' => 'SÃ©lectionner le nombre de jours de notes ou le nombre exact de notes que vous voulez afficher sur votre blog.',
 	'Days' => 'Jours',
@@ -3128,7 +3129,7 @@
 	'Output Filename' => 'Nom du fichier de sortie',
 	'Linked Filename' => 'Lien du fichier liÃ©',
-	'_DATE_FROM' => 'Depuis le', # Translate - New
-	'_DATE_TO' => 'jusqu\'au', # Translate - New
-	'Successfully replaced [quant,_1,record,records].' => '[quant,_1,enregistrement,enregistrements] remplacÃ©s avec succÃšs.',
+	'_DATE_FROM' => 'Depuis le',
+	'_DATE_TO' => 'jusqu\'au',
+	'Successfully replaced [quant,_1,record,records].' => 'Remplacements effectuÃ©s avec succÃšs dans [quant,_1,enregistrement,enregistrements].',
 	'Showing first [_1] results.' => 'Afficher d\'abord [_1] rÃ©sultats.',
 	'Show all matches' => 'Afficher tous les rÃ©sultats',
@@ -3148,5 +3149,5 @@
 	'What would a blog be without content? Start your Movable Type experience by creating your very first post.' => 'Que serait un blog sans contenu ? DÃ©butez votre expÃ©rience Movable Type en crÃ©ant votre toute premiÃšre note.',
 	'Design your blog' => 'Choisissez l\'habillage de votre blog',
-	'Customize the look and feel of your blog quickly by selecting a design from one of our professionally designed themes.' => 'Configurez rapidement l\'apparence de votre blog en sÃ©lectionnant un design parmi les habillages crÃ©Ã©s par des professionnels.',
+	'Customize the look and feel of your blog quickly by selecting a design from one of our professionally designed themes.' => 'Personnalisez votre blog en sÃ©lectionnant un habillage crÃ©Ã© par des professionnels.',
 	'Explore what\'s new in Movable Type 4' => 'DÃ©couvrez ce qui est nouveau dans Movable Type 4',
 	'Whether you\'re new to Movable Type or using it for the first time, learn more about what this tool can do for you.' => 'Que vous dÃ©couvriez Movable Type ou que vous l\'utilisiez pour la premiÃšre fois, dÃ©couvrez ce que cet outil peut faire pour vous.',
@@ -3168,6 +3169,6 @@
 	'Dec.' => 'DÃ©c.',
 	'Movable Type was unable to locate your \'mt-static\' directory. Please configure the \'StaticFilePath\' configuration setting in your mt-config.cgi file, and create a writable \'support\' directory underneath your \'mt-static\' directory.' => 'Movable Type n\'a pas pu localiser votre rÃ©pertoire \'mt-static\'. Merci de configurer la variable de configuration \'StaticFilePath\' dans votre fichier mt-config.cgi, et crÃ©ez un rÃ©pertoire \'support\' accessible en Ã©criture dans le rÃ©pertoire \'mt-static\'.',
-	'Movable Type was unable to write to its \'support\' directory. Please create a directory at this location: [_1], and assign permissions that will allow the web server write access to it.' => 'Movable Type n\'a pas pu Ã©crire dans son rÃ©pertoire \'support\'. Merci de crÃ©er un rÃ©pertoire Ã  cet endroit : [_1], et de lui assigner des droits qui permettent au serveur web d\'Ã©crire dedans.',
-	'Most Recent Comments' => 'Commentaires les plus rÃ©cents',
+	'Movable Type was unable to write to its \'support\' directory. Please create a directory at this location: [_1], and assign permissions that will allow the web server write access to it.' => 'Movable Type n\'a pas pu Ã©crire dans son rÃ©pertoire \'support\'. Merci de crÃ©er un rÃ©pertoire Ã  cet endroit : [_1], et de lui ajouter des droits qui permettent au serveur web d\'Ã©crire dedans.',
+	'Most Recent Comments' => 'Commentaires rÃ©cents',
 	'[_1] [_2], [_3] on [_4]' => '[_1] [_2], [_3] sur [_4]',
 	'View all comments' => 'Voir tous les commentaires',
@@ -3185,6 +3186,6 @@
 
 ## tmpl/cms/widget/new_install.tmpl
-	'Thank you for installing Movable Type' => 'Merci pour votre installation de Movable Type',
-	'Congratulations on installing Movable Type, the world\'s most powerful blogging, publishing and social media platform. To help you get started we have provided you with links to some of the more common tasks new users like to perform:' => 'FÃ©licitations pour avoir installÃ© Movable Type, la plateforme de blogs, de publication et de mÃ©dia social la plus puissante. Pour vous aider Ã  dÃ©marrer nous vous proposons une liste des tÃ¢ches les plus courantes que les nouveaux utilisateurs souhaitent rÃ©aliser:',
+	'Thank you for installing Movable Type' => 'Merci d\'avoir installÃ© Movable Type',
+	'Congratulations on installing Movable Type, the world\'s most powerful blogging, publishing and social media platform. To help you get started we have provided you with links to some of the more common tasks new users like to perform:' => 'FÃ©licitations, vous avez installÃ© avec succÃšs Movable Type, la plateforme de blogs, de publication et de mÃ©dia social la plus puissante au monde. Afin de vous aider Ã  dÃ©marrer avec Movable Type, nous vous proposons quelques liens vers les tÃ¢ches les plus courantes que les nouveaux utilisateurs souhaitent rÃ©aliser :',
 	'Add more users to your blog' => 'Ajouter plus d\'utilisateurs Ã  votre blog',
 	'Start building your network of blogs and your community now. Invite users to join your blog and promote them to authors.' => 'Commencez Ã  crÃ©er votre rÃ©seau de blogs et votre communautÃ© dÃšs maintenant. Invitez des utilisateurs Ã  joindre votre blog et donnez-leur le statut d\'auteurs.',
@@ -3222,5 +3223,5 @@
 
 ## tmpl/cms/widget/this_is_you.tmpl
-	'Your <a href="[_1]">last entry</a> was [_2].' => 'Votre <a href="[_1]">derniÃšre entrÃ©e</a> est [_2].',
+	'Your <a href="[_1]">last entry</a> was [_2].' => 'Votre <a href="[_1]">derniÃšre note</a> a Ã©tÃ© publiÃ©e [_2].',
 	'You have <a href="[_1]">[quant,_2,draft,drafts]</a>.' => 'Vous avez <a href="[_1]">[quant,_2,brouillon,brouillons]</a>.',
 	'You\'ve written <a href="[_1]">[quant,_2,entry,entries]</a> with <a href="[_3]">[quant,_4,comment,comments]</a>.' => 'Vous avez Ã©crit <a href="[_1]">[quant,_2,note,notes]</a> avec <a href="[_3]">[quant,_4,commentaire,commentaires]</a>.',
@@ -3265,11 +3266,11 @@
 	'Your Movable Type configuration file already exists. The Wizard cannot continue with this file present.' => 'Votre fichier de configuration Movable Type existe dÃ©jÃ . L\'Assistant de Configuration ne peut continuer avec ce fichier installÃ©',
 	'Movable Type requires that you enable JavaScript in your browser. Please enable it and refresh this page to proceed.' => 'Pour utiliser Movable Type, vous devez activer les JavaScript sur votre navigateur. Merci de les activer et de relancer le navigateur pour commencer.',
-	'This wizard will help you configure the basic settings needed to run Movable Type.' => 'L\'Assistant de Configuration vous permettra de mettre en place les paramÃštres de base pour assurer le fonctionnement de Movable Type.',
-	'<strong>Error: \'[_1]\' could not be found.</strong>  Please move your static files to the directory first or correct the setting if it is incorrect.' => '<strong>Erreur: \'[_1]\' n\'a pas pu Ãªtre trouvÃ©(e).</strong>  Veuillez dÃ©placer vos fichiers statiques vers le rÃ©pertoire premier ou mettre Ã  jour les paramÃštres si nÃ©cessaire.', # Translate - New
+	'This wizard will help you configure the basic settings needed to run Movable Type.' => 'Vous allez maintenant, grÃ¢ce Ã  cet assistant de configuration, mettre en place les paramÃštres de base afin d\'assurer le fonctionnement de Movable Type.',
+	'<strong>Error: \'[_1]\' could not be found.</strong>  Please move your static files to the directory first or correct the setting if it is incorrect.' => '<strong>Erreur: \'[_1]\' n\'a pas pu Ãªtre trouvÃ©(e).</strong>  Veuillez dÃ©placer vos fichiers statiques vers le rÃ©pertoire premier ou mettre Ã  jour les paramÃštres si nÃ©cessaire.',
 	'Configure Static Web Path' => 'Configurer le chemin web statique',
 	'Movable Type ships with directory named [_1] which contains a number of important files such as images, javascript files and stylesheets.' => 'Movable Type est fourni avec un rÃ©pertoire nommÃ© [_1] contenant un nombre important de fichiers comme des images, fichiers javascripts et feuilles de style.',
 	'The [_1] directory is in the main Movable Type directory which this wizard script resides, but due to your web server\'s configuration, the [_1] directory is not accessible in this location and must be moved to a web-accessible location (e.g., your web document root directory).' => 'Le rÃ©pertoire [_1] est le rÃ©pertoire principal de Movable Type contenant les scripts de cet assistant, mais Ã  cause de la configuration de votre serveur web, le rÃ©pertoire [_1] n\'est pas accessible Ã  cette adresse et doit Ãªtre dÃ©placÃ© vers un serveur web (par exemple, le rÃ©pertoire document Ã  la racine). ',
 	'This directory has either been renamed or moved to a location outside of the Movable Type directory.' => 'Ce rÃ©pertoire a Ã©tÃ© renommÃ© ou dÃ©placÃ© en dehors du rÃ©pertoire Movable Type.',
-	'Once the [_1] directory is in a web-accessible location, specify the location below.' => 'Une fois que le rÃ©pertoire [_1] se trouve dans un endroit accessible via le web, spÃ©cifiez l\'endroit ci-dessous.',
+	'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.',
 	'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]',
 	'Static web path' => 'Chemin Web statique',
@@ -3311,5 +3312,5 @@
 	'Check your email to confirm receipt of a test email from Movable Type and then proceed to the next step.' => 'VÃ©rifiez votre adresse email pour confirmer la rÃ©ception d\'un email de test de Movable Type et ensuite passez Ã  l\'Ã©tape suivante.',
 	'Show current mail settings' => 'Montrer les paramÃštres d\'email actuels',
-	'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.' => 'PÃ©riodiquement Movable Type va envoyer des emails pour informer les utilisateurs de nouveaux commentaires et autre Ã©vÃ©nements. Pour que ces emails puissent Ãªtre envoyÃ©s correctement, vous devez dire Ã  Movable Type comment les envoyer.',
+	'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.',
 	'An error occurred while attempting to send mail: ' => 'Une erreur s\'est produite en essayant d\'envoyer un email: ',
 	'Send email via:' => 'Envoyer email via :',
@@ -3329,5 +3330,5 @@
 	'Congratulations! You\'ve successfully configured [_1].' => 'FÃ©licitations ! Vous avez configurÃ© [_1] avec succÃšs.',
 	'Your configuration settings have been written to the following file:' => 'Vos paramÃštres de configuration ont Ã©tÃ© Ã©crit dans le fichier suivant:',
-	'To reconfigure the settings, click the \'Back\' button below.' => 'Pour reconfigurer vos paramÃštres, cliquez sur le bouton \'Retour\' ci-dessous. ',
+	'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.',
 	'Show the mt-config.cgi file generated by the wizard' => 'Afficher le fichier mt-config.cgi gÃ©nÃ©rÃ© par l\'assistant',
 	'I will create the mt-config.cgi file manually.' => 'Je vais crÃ©er le fichier mt-config.cgi manuellement.',
@@ -3381,41 +3382,40 @@
 	'A new TrackBack has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Un nouveau trackback a Ã©tÃ© envoyÃ© sur votre blog [_1], sur la note #[_2] ([_3]).',
 	'A new TrackBack has been posted on your blog [_1], on category #[_2] ([_3]).' => 'Un nouveau trackback a Ã©tÃ© envoyÃ© sur votre blog [_1], sur la catÃ©gorie #[_2] ([_3]).',
-	'Excerpt: ' => 'Extrait :', # Translate - New
-	'URL: [_1]' => 'URL : [_1]', # Translate - New
-	'Title: [_1]' => 'Titre : [_1]', # Translate - New
-	'Blog: [_1]' => 'Blog : [_1]', # Translate - New
-	'IP address: [_1]' => 'Adresse IP : [_1]', # Translate - New
-	'Approve TrackBack: ' => 'Accepter le trackback :', # Translate - New
-	'View TrackBack: ' => 'Voir le trackback :', # Translate - New
-	'Report TrackBack as spam: ' => 'Marquer le trackback comme Ã©tant du spam :', # Translate - New
-	'Edit TrackBack: ' => 'Ãditer le trackback :', # Translate - New
+	'Excerpt: ' => 'Extrait :',
+	'URL: [_1]' => 'URL : [_1]',
+	'Title: [_1]' => 'Titre : [_1]',
+	'Blog: [_1]' => 'Blog : [_1]',
+	'IP address: [_1]' => 'Adresse IP : [_1]',
+	'Approve TrackBack: ' => 'Accepter le trackback :',
+	'View TrackBack: ' => 'Voir le trackback :',
+	'Report TrackBack as spam: ' => 'Marquer le trackback comme Ã©tant du spam :',
+	'Edit TrackBack: ' => 'Ãditer le trackback :',
 
 ## tmpl/email/new-comment.tmpl
 	'An unapproved comment has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site.' => 'Un commentaire non approuvÃ© a Ã©tÃ© envoyÃ© sur votre blog [_1], pour la note #[_2] ([_3]). Vous devez l\'approuver pour qu\'il apparaisse sur votre blog.',
 	'A new comment has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Un nouveau commentaire a Ã©tÃ© publiÃ© sur votre blog [_1], au sujet de la note [_2] ([_3]). ',
-	'Comment name: [_1]' => 'Nom du commentaire : [_1]', # Translate - New
-	'Commenter email address: [_1]' => 'Adresse email de l\'auteur de commentaires :  [_1]', # Translate - New
-	'Commenter URL: [_1]' => 'URL de l\'auteur de commentaires : [_1]', # Translate - New
-	'Commenter IP address: [_1]' => 'Adresse IP de l\'auteur de commentaires : [_1]', # Translate - New
-	'Approve comment:' => 'Accepter le commentaire :', # Translate - New
-	'View comment:' => 'Voir le commentaire :', # Translate - New
-	'Edit comment:' => 'Ãditer le commentaire :', # Translate - New
-	'Report comment as spam:' => 'Marquer le commentaire comme Ã©tant du spam :', # Translate - New
+	'Commenter name: [_1]' => 'Nom de l\'auteur de commentaires', # Translate - New
+	'Commenter email address: [_1]' => 'Adresse email de l\'auteur de commentaires :  [_1]',
+	'Commenter URL: [_1]' => 'URL de l\'auteur de commentaires : [_1]',
+	'Commenter IP address: [_1]' => 'Adresse IP de l\'auteur de commentaires : [_1]',
+	'Approve comment:' => 'Accepter le commentaire :',
+	'View comment:' => 'Voir le commentaire :',
+	'Edit comment:' => 'Ãditer le commentaire :',
+	'Report comment as spam:' => 'Marquer le commentaire comme Ã©tant du spam :',
 
 ## tmpl/email/notify-entry.tmpl
 	'A new [_3] entitled \'[_1]\' has been published to [_2].' => 'Une nouvelle [_3] intitulÃ©e \'[_1]\' a Ã©tÃ© publiÃ©e sur [_2].',
-	'View post:' => 'Voir la note :', # Translate - New
-	'Entry Title: [_1]' => 'Titre de la note : [_1]', # Translate - New
-	'Publish Date: [_1]' => 'Date de publication : [_1]', # Translate - New
-	'Message from Sender:' => 'Message de l\'expÃ©diteur :', # Translate - New
+	'View [_1]:' => 'Voir  [_1]', # Translate - New
+	'[_1] Title: [_2]' => 'Titre du [_1] : [_2]', # Translate - New
+	'Publish Date: [_1]' => 'Date de publication : [_1]',
+	'Message from Sender:' => 'Message de l\'expÃ©diteur :',
 	'You are receiving this email either because you have elected to receive notifications about new content on [_1], or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:' => 'Vous recevez cet email car vous avez demandÃ© Ã  recevoir les notifications de nouveau contenu sur [_1], ou l\'auteur de la note a pensÃ© que vous seriez intÃ©ressÃ©. Si vous ne souhaitez plus recevoir ces emails, merci de contacter la personne suivante:',
 
 ## tmpl/email/commenter_notify.tmpl
-	'This email is to notify you that a new user has successfully registered on the blog \'[_1]\'. Listed below you will find some useful information about this new user.' => '
-	Un nouvel utilisateur s\'est enregistrÃ© sur le blog \'[_1]\'. Vous trouverez ci-dessous quelques informations utiles Ã  propos de ce nouvel utilisateur.', # Translate - New
-	'New User Information:' => 'Informations concernant ce nouvel utilisateur :', # Translate - New
-	'Username: [_1]' => 'Identifiant : [_1]', # Translate - New
-	'Full Name: [_1]' => 'Nom complet : [_1]', # Translate - New
-	'Email: [_1]' => 'Email : [_1]', # Translate - New
+	'This email is to notify you that a new user has successfully registered on the blog \'[_1]\'. Listed below you will find some useful information about this new user.' => 'Un nouvel utilisateur s\'est enregistrÃ© sur le blog \'[_1]\'. Vous trouverez ci-dessous quelques informations utiles Ã  propos de ce nouvel utilisateur.',
+	'New User Information:' => 'Informations concernant ce nouvel utilisateur :',
+	'Username: [_1]' => 'Identifiant : [_1]',
+	'Full Name: [_1]' => 'Nom complet : [_1]',
+	'Email: [_1]' => 'Email : [_1]',
 	'To view or edit this user, please click on or cut and paste the following URL into a web browser:' => 'Pour voir ou modifier cet utilisateur, merci de cliquer ou copier-coller l\'adresse suivante dans votre navigateur web:',
 
@@ -3497,5 +3497,5 @@
 
 ## plugins/Markdown/SmartyPants.pl
-	'Easily translates plain punctuation characters into \'smart\' typographic punctuation.' => 'Permet de convertir facilement des caractÃšres de ponctuation basiques vers une ponctuation plus complexe (comme les guillemets, tirets, etc...)', # Translate - New
+	'Easily translates plain punctuation characters into \'smart\' typographic punctuation.' => 'Permet de convertir facilement des caractÃšres de ponctuation basiques vers une ponctuation plus complexe (comme les guillemets, tirets, etc...)',
 	'Markdown With SmartyPants' => 'Markdown avec SmartyPants',
 
@@ -3522,5 +3522,4 @@
 
 ## plugins/TemplateRefresh/tmpl/results.tmpl
-	'Backup and Refresh Templates' => 'Sauvegarder et rafraÃ®chir les gabarits',
 	'No templates were selected to process.' => 'Aucun gabarit sÃ©lectionnÃ© pour cette action.',
 	'Return to templates' => 'Retourner aux gabarits',
@@ -3535,5 +3534,5 @@
 	'Error creating new template: ' => 'Erreur pendant la crÃ©ation du nouveau gabarit : ',
 	'Created template \'[_1]\'.' => 'A crÃ©Ã© le gabarit \'[_1]\'.',
-	'Insufficient permissions for modifying templates for this weblog.' => 'Permissions insuffisantes pour modifier les gabarits de ce blog.',
+	'Insufficient permissions for modifying templates for this weblog.' => 'Autorisations insuffisantes pour modifier les gabarits de ce blog.',
 	'Skipping template \'[_1]\' since it appears to be a custom template.' => 'Saut du gabarit \'[_1]\' car c\'est un gabarit personnalisÃ©.',
 	'Refresh Template(s)' => 'Actualiser le(s) Gabarits(s)',
@@ -3574,5 +3573,5 @@
 
 ## plugins/WidgetManager/WidgetManager.pl
-	'Maintain your blog\'s widget content using a handy drag and drop interface.' => 'Organisez les widgets de votre blog via une interface de type glissez-dÃ©posez.', # Translate - New
+	'Maintain your blog\'s widget content using a handy drag and drop interface.' => 'Organisez les widgets de votre blog via une interface de type glissez-dÃ©posez.',
 	'Widgets' => 'Widgets',
 
@@ -3580,5 +3579,5 @@
 	'Technorati Search' => 'Recherche Technorati',
 	'Calendar' => 'Calendrier',
-	'Category list (nested)' => 'List des CatÃ©gories',
+	'Category list (nested)' => 'Liste des CatÃ©gories',
 	'Date-based Category Archives' => 'Archives des CatÃ©gories par date',
 	'Date-based Author Archives' => 'Archives des auteurs par date',
@@ -3622,5 +3621,5 @@
 ## plugins/WidgetManager/default_widgets/signin.tmpl
 	'You are signed in as ' => 'Vous Ãªtes identifiÃ© en tant que ',
-	'You do not have permission to sign in to this blog.' => 'Vous n\'avez pas la permission de vous identifier sur ce blog.',
+	'You do not have permission to sign in to this blog.' => 'Vous n\'avez pas l\'autorisation de vous identifier sur ce blog.',
 
 ## plugins/WidgetManager/default_widgets/category_archive_list.tmpl
@@ -3633,5 +3632,4 @@
 
 ## plugins/WidgetManager/default_widgets/tag_cloud_module.tmpl
-	'Tag cloud' => 'Nuage de Tags',
 
 ## plugins/WidgetManager/default_widgets/powered_by.tmpl
@@ -3828,7 +3826,649 @@
 	'Invalid URL: [_1]' => 'URL inaccessible : [_1]',
 
+## php/lib/function.mtauthordisplayname.php
+
+## php/lib/function.mtproductname.php
+
+## php/lib/function.mtcommentfields.php
+
+## php/lib/block.mtentries.php
+
+## php/lib/function.mtremotesigninlink.php
+
+## php/lib/block.mtassets.php
+
+## php/lib/captcha_lib.php
+
+## php/lib/archive_lib.php
+
+## default_templates/entry_metadata.mtml
+
+## default_templates/comment_preview.mtml
+
+## default_templates/header.mtml
+
+## default_templates/dynamic_error.mtml
+
+## default_templates/entry.mtml
+
+## default_templates/search_results.mtml
+
+## default_templates/archive_index.mtml
+
+## default_templates/comment_form.mtml
+
+## default_templates/tags.mtml
+
+## default_templates/main_index.mtml
+
+## default_templates/entry_listing.mtml
+
+## default_templates/comment_response.mtml
+
+## default_templates/sidebar_3col.mtml
+
+## default_templates/rss.mtml
+
+## default_templates/javascript.mtml
+
+## default_templates/entry_detail.mtml
+
+## default_templates/categories.mtml
+
+## default_templates/trackbacks.mtml
+
+## default_templates/footer.mtml
+
+## default_templates/comment_detail.mtml
+
+## default_templates/entry_summary.mtml
+
+## default_templates/page.mtml
+
+## default_templates/sidebar_2col.mtml
+
+## default_templates/comments.mtml
+
+## lib/MT/Session.pm
+
+## lib/MT/Component.pm
+
+## lib/MT/XMLRPCServer.pm
+
+## lib/MT/ObjectDriver/Driver/DBD/SQLite.pm
+
+## lib/MT/ImportExport.pm
+
+## lib/MT/Util/Captcha.pm
+
+## lib/MT/Import.pm
+
+## lib/MT/TemplateMap.pm
+
+## lib/MT/Comment.pm
+
+## lib/MT/App.pm
+
+## lib/MT/ObjectScore.pm
+
+## lib/MT/Page.pm
+
+## lib/MT/XMLRPC.pm
+
+## lib/MT/Core.pm
+
+## lib/MT/Asset/Audio.pm
+
+## lib/MT/Asset/Video.pm
+
+## lib/MT/Asset/Image.pm
+
+## lib/MT/BackupRestore.pm
+
+## lib/MT/IPBanList.pm
+
+## lib/MT/BackupRestore/ManifestFileHandler.pm
+
+## lib/MT/BackupRestore/BackupFileHandler.pm
+
+## lib/MT/Folder.pm
+
+## lib/MT/DefaultTemplates.pm
+
+## lib/MT/Plugin/JunkFilter.pm
+
+## lib/MT/TaskMgr.pm
+
+## lib/MT/AtomServer.pm
+
+## lib/MT/Scorable.pm
+
+## lib/MT/Permission.pm
+
+## lib/MT/Association.pm
+
+## lib/MT/Notification.pm
+
+## lib/MT/Config.pm
+
+## lib/MT/Compat/v3.pm
+
+## lib/MT/Author.pm
+
+## lib/MT/Template/Context.pm
+
+## lib/MT/Template/ContextHandlers.pm
+
+## lib/MT/Image.pm
+
+## lib/MT/ConfigMgr.pm
+
+## lib/MT/Log.pm
+
+## lib/MT/TheSchwartz/ExitStatus.pm
+
+## lib/MT/TheSchwartz/Job.pm
+
+## lib/MT/TheSchwartz/FuncMap.pm
+
+## lib/MT/TheSchwartz/Error.pm
+
+## lib/MT/Auth/OpenID.pm
+
+## lib/MT/Auth/MT.pm
+
+## lib/MT/Auth/TypeKey.pm
+
+## lib/MT/ObjectAsset.pm
+
+## lib/MT/Mail.pm
+
+## lib/MT/JunkFilter.pm
+
+## lib/MT/TBPing.pm
+
+## lib/MT/Util.pm
+
+## lib/MT/Placement.pm
+
+## lib/MT/WeblogPublisher.pm
+
+## lib/MT/ObjectTag.pm
+
+## lib/MT/Asset.pm
+
+## lib/MT/Role.pm
+
+## lib/MT/BasicAuthor.pm
+
+## lib/MT/PluginData.pm
+
+## lib/MT/App/Comments.pm
+	'_THROTTLED_COMMENT_EMAIL' => 'Un visiteur de votre blog [_1] a Ã©tÃ© automatiquement banni aprÃšs avoir publiÃ© une quantitÃ© de commentaires supÃ©rieure Ã  la limite Ã©tablie au cours des [_2] secondes. Cette opÃ©ration est destinÃ©e Ã  empÃªcher la publication automatisÃ©e de commentaires par des scripts. L\'adresse IP bannie est
+
+    [_3]
+
+S\'il s\'agit d\'une erreur, vous pouvez annuler le bannissement de l\'adresse IP dans Movable Type, dans Configuration du weblog > Bannissement d\'adresses IP, et en supprimant l\'adresse IP [_4] de la liste des addresses bannies.',
+
+## lib/MT/App/Wizard.pm
+
+## lib/MT/App/Upgrader.pm
+
+## lib/MT/App/NotifyList.pm
+
+## lib/MT/App/CMS.pm
+	'' => '', # Translate - New
+
+## lib/MT/App/Viewer.pm
+
+## lib/MT/App/ActivityFeeds.pm
+
+## lib/MT/App/Search.pm
+
+## lib/MT/App/Trackback.pm
+
+## lib/MT/FileMgr/Local.pm
+
+## lib/MT/FileMgr/SFTP.pm
+
+## lib/MT/FileMgr/DAV.pm
+
+## lib/MT/FileMgr/FTP.pm
+
+## lib/MT/Bootstrap.pm
+
+## lib/MT/Blog.pm
+
+## lib/MT/Upgrade.pm
+
+## lib/MT/Plugin.pm
+
+## lib/MT/Auth.pm
+
+## lib/MT/Tag.pm
+
+## lib/MT/Builder.pm
+
+## lib/MT/Category.pm
+
+## lib/MT/Template.pm
+
+## lib/MT/Trackback.pm
+
+## lib/MT/Entry.pm
+
+## lib/MT.pm.pre
+
+## mt-static/js/edit.js
+
+## mt-static/js/dialog.js
+
+## mt-static/js/assetdetail.js
+
+## mt-static/mt.js
+
+## search_templates/results_feed.tmpl
+
+## search_templates/comments.tmpl
+
+## search_templates/results_feed_rss2.tmpl
+
+## search_templates/default.tmpl
+
+## tmpl/comment/signup.tmpl
+
+## tmpl/comment/login.tmpl
+
+## tmpl/comment/profile.tmpl
+
+## tmpl/comment/error.tmpl
+
+## tmpl/comment/signup_thanks.tmpl
+
+## tmpl/comment/register.tmpl
+
+## tmpl/cms/restore_end.tmpl
+
+## tmpl/cms/import_others.tmpl
+
+## tmpl/cms/list_member.tmpl
+
+## tmpl/cms/list_role.tmpl
+
+## tmpl/cms/cfg_spam.tmpl
+
+## tmpl/cms/preview_entry.tmpl
+
+## tmpl/cms/edit_entry.tmpl
+
+## tmpl/cms/system_check.tmpl
+
+## tmpl/cms/import.tmpl
+
+## tmpl/cms/cfg_system_feedback.tmpl
+
+## tmpl/cms/edit_template.tmpl
+
+## tmpl/cms/edit_comment.tmpl
+
+## tmpl/cms/edit_role.tmpl
+
+## tmpl/cms/cfg_registration.tmpl
+
+## tmpl/cms/dialog/restore_end.tmpl
+
+## tmpl/cms/dialog/comment_reply.tmpl
+
+## tmpl/cms/dialog/recover.tmpl
+
+## tmpl/cms/dialog/restore_upload.tmpl
+
+## tmpl/cms/dialog/asset_list.tmpl
+
+## tmpl/cms/dialog/asset_options_image.tmpl
+
+## tmpl/cms/dialog/asset_options.tmpl
+
+## tmpl/cms/dialog/entry_notify.tmpl
+
+## tmpl/cms/dialog/asset_upload.tmpl
+
+## tmpl/cms/dialog/asset_replace.tmpl
+
+## tmpl/cms/dialog/adjust_sitepath.tmpl
+
+## tmpl/cms/dialog/restore_start.tmpl
+
+## tmpl/cms/dialog/create_association.tmpl
+
+## tmpl/cms/install.tmpl
+
+## tmpl/cms/pinging.tmpl
+
+## tmpl/cms/edit_author.tmpl
+
+## tmpl/cms/list_ping.tmpl
+
+## tmpl/cms/login.tmpl
+
+## tmpl/cms/cfg_archives.tmpl
+
+## tmpl/cms/cfg_system_users.tmpl
+
+## tmpl/cms/cfg_prefs.tmpl
+
+## tmpl/cms/error.tmpl
+
+## tmpl/cms/list_association.tmpl
+
+## tmpl/cms/list_comment.tmpl
+
+## tmpl/cms/rebuilding.tmpl
+
+## tmpl/cms/include/template_table.tmpl
+
+## tmpl/cms/include/archive_maps.tmpl
+
+## tmpl/cms/include/pagination.tmpl
+
+## tmpl/cms/include/footer.tmpl
+
+## tmpl/cms/include/login_mt.tmpl
+
+## tmpl/cms/include/itemset_action_widget.tmpl
+
+## tmpl/cms/include/ping_table.tmpl
+
+## tmpl/cms/include/anonymous_comment.tmpl
+
+## tmpl/cms/include/header.tmpl
+
+## tmpl/cms/include/cfg_system_content_nav.tmpl
+
+## tmpl/cms/include/tools_content_nav.tmpl
+
+## tmpl/cms/include/blog-left-nav.tmpl
+
+## tmpl/cms/include/member_table.tmpl
+
+## tmpl/cms/include/entry_table.tmpl
+
+## tmpl/cms/include/notification_table.tmpl
+
+## tmpl/cms/include/display_options.tmpl
+
+## tmpl/cms/include/cfg_content_nav.tmpl
+
+## tmpl/cms/include/blog_table.tmpl
+
+## tmpl/cms/include/backup_end.tmpl
+
+## tmpl/cms/include/import_start.tmpl
+
+## tmpl/cms/include/users_content_nav.tmpl
+
+## tmpl/cms/include/calendar.tmpl
+
+## tmpl/cms/include/overview-left-nav.tmpl
+
+## tmpl/cms/include/comment_table.tmpl
+
+## tmpl/cms/include/chromeless_footer.tmpl
+
+## tmpl/cms/include/backup_start.tmpl
+
+## tmpl/cms/include/commenter_table.tmpl
+
+## tmpl/cms/include/author_table.tmpl
+
+## tmpl/cms/include/feed_link.tmpl
+
+## tmpl/cms/include/import_end.tmpl
+
+## tmpl/cms/include/copyright.tmpl
+
+## tmpl/cms/include/log_table.tmpl
+
+## tmpl/cms/include/listing_panel.tmpl
+
+## tmpl/cms/list_blog.tmpl
+
+## tmpl/cms/upgrade.tmpl
+
+## tmpl/cms/list_author.tmpl
+
+## tmpl/cms/popup/rebuilt.tmpl
+
+## tmpl/cms/popup/rebuild_confirm.tmpl
+
+## tmpl/cms/popup/pinged_urls.tmpl
+
+## tmpl/cms/list_entry.tmpl
+
+## tmpl/cms/recover_password_result.tmpl
+
+## tmpl/cms/view_log.tmpl
+
+## tmpl/cms/list_tag.tmpl
+
+## tmpl/cms/restore.tmpl
+
+## tmpl/cms/list_category.tmpl
+
+## tmpl/cms/setup_initial_blog.tmpl
+
+## tmpl/cms/list_asset.tmpl
+
+## tmpl/cms/preview_strip.tmpl
+
+## tmpl/cms/list_banlist.tmpl
+
+## tmpl/cms/cfg_trackbacks.tmpl
+
+## tmpl/cms/edit_ping.tmpl
+
+## tmpl/cms/cfg_plugin.tmpl
+
+## tmpl/cms/edit_folder.tmpl
+
+## tmpl/cms/backup.tmpl
+
+## tmpl/cms/cfg_web_services.tmpl
+
+## tmpl/cms/restore_start.tmpl
+
+## tmpl/cms/edit_category.tmpl
+
+## tmpl/cms/list_notification.tmpl
+
+## tmpl/cms/cfg_system_general.tmpl
+
+## tmpl/cms/dashboard.tmpl
+
+## tmpl/cms/cfg_comments.tmpl
+
+## tmpl/cms/edit_blog.tmpl
+
+## tmpl/cms/upgrade_runner.tmpl
+
+## tmpl/cms/edit_commenter.tmpl
+
+## tmpl/cms/cfg_entry.tmpl
+
+## tmpl/cms/search_replace.tmpl
+
+## tmpl/cms/widget/new_user.tmpl
+
+## tmpl/cms/widget/blog_stats.tmpl
+
+## tmpl/cms/widget/new_install.tmpl
+
+## tmpl/cms/widget/mt_news.tmpl
+
+## tmpl/cms/widget/custom_message.tmpl
+
+## tmpl/cms/widget/mt_shortcuts.tmpl
+
+## tmpl/cms/widget/blog_stats_recent_entries.tmpl
+
+## tmpl/cms/widget/this_is_you.tmpl
+
+## tmpl/cms/export.tmpl
+
+## tmpl/cms/list_folder.tmpl
+
+## tmpl/cms/list_template.tmpl
+
+## tmpl/wizard/cfg_dir.tmpl
+
+## tmpl/wizard/blog.tmpl
+
+## tmpl/wizard/start.tmpl
+
+## tmpl/wizard/configure.tmpl
+
+## tmpl/wizard/optional.tmpl
+
+## tmpl/wizard/complete.tmpl
+
+## tmpl/wizard/packages.tmpl
+
+## tmpl/error.tmpl
+
+## tmpl/email/footer-email.tmpl
+
+## tmpl/email/commenter_confirm.tmpl
+
+## tmpl/email/verify-subscribe.tmpl
+
+## tmpl/email/recover-password.tmpl
+
+## tmpl/email/new-ping.tmpl
+
+## tmpl/email/new-comment.tmpl
+
+## tmpl/email/notify-entry.tmpl
+
+## tmpl/email/commenter_notify.tmpl
+
+## tmpl/feeds/feed_page.tmpl
+
+## tmpl/feeds/login.tmpl
+
+## tmpl/feeds/error.tmpl
+
+## tmpl/feeds/feed_entry.tmpl
+
+## tmpl/feeds/feed_ping.tmpl
+
+## tmpl/feeds/feed_comment.tmpl
+
+## plugins/feeds-app-lite/tmpl/config.tmpl
+
+## plugins/feeds-app-lite/tmpl/select.tmpl
+
+## plugins/feeds-app-lite/tmpl/start.tmpl
+
+## plugins/feeds-app-lite/tmpl/msg.tmpl
+
+## plugins/feeds-app-lite/mt-feeds.pl
+
+## plugins/feeds-app-lite/lib/MT/Feeds/Tags.pm
+
+## plugins/feeds-app-lite/lib/MT/Feeds/Lite.pm
+
+## plugins/Textile/textile2.pl
+
+## plugins/Markdown/SmartyPants.pl
+
+## plugins/Markdown/Markdown.pl
+
+## plugins/WXRImporter/tmpl/options.tmpl
+
+## plugins/WXRImporter/WXRImporter.pl
+
+## plugins/WXRImporter/lib/WXRImporter/Import.pm
+
+## plugins/WXRImporter/lib/WXRImporter/WXRHandler.pm
+
+## plugins/TemplateRefresh/tmpl/results.tmpl
+
+## plugins/TemplateRefresh/TemplateRefresh.pl
+
+## plugins/Cloner/cloner.pl
+
+## plugins/WidgetManager/tmpl/edit.tmpl
+
+## plugins/WidgetManager/tmpl/list.tmpl
+
+## plugins/WidgetManager/WidgetManager.pl
+
+## plugins/WidgetManager/default_widgets/widgets.cfg
+
+## plugins/WidgetManager/default_widgets/monthly_archive_list.tmpl
+
+## plugins/WidgetManager/default_widgets/technorati_search.tmpl
+
+## plugins/WidgetManager/default_widgets/calendar.tmpl
+
+## plugins/WidgetManager/default_widgets/signin.tmpl
+
+## plugins/WidgetManager/default_widgets/category_archive_list.tmpl
+
+## plugins/WidgetManager/default_widgets/recent_comments.tmpl
+
+## plugins/WidgetManager/default_widgets/monthly_archive_dropdown.tmpl
+
+## plugins/WidgetManager/default_widgets/tag_cloud_module.tmpl
+
+## plugins/WidgetManager/default_widgets/powered_by.tmpl
+
+## plugins/WidgetManager/default_widgets/creative_commons.tmpl
+
+## plugins/WidgetManager/default_widgets/search.tmpl
+
+## plugins/WidgetManager/default_widgets/recent_posts.tmpl
+
+## plugins/WidgetManager/default_widgets/subscribe_to_feed.tmpl
+
+## plugins/WidgetManager/lib/WidgetManager/CMS.pm
+
+## plugins/WidgetManager/lib/WidgetManager/Plugin.pm
+
+## plugins/MultiBlog/tmpl/system_config.tmpl
+
+## plugins/MultiBlog/tmpl/dialog_create_trigger.tmpl
+
+## plugins/MultiBlog/tmpl/blog_config.tmpl
+
+## plugins/MultiBlog/multiblog.pl
+
+## plugins/MultiBlog/lib/MultiBlog.pm
+
+## plugins/MultiBlog/lib/MultiBlog/Tags.pm
+
+## plugins/spamlookup/tmpl/lookup_config.tmpl
+
+## plugins/spamlookup/tmpl/word_config.tmpl
+
+## plugins/spamlookup/tmpl/url_config.tmpl
+
+## plugins/spamlookup/spamlookup.pl
+
+## plugins/spamlookup/spamlookup_urls.pl
+
+## plugins/spamlookup/lib/spamlookup.pm
+
+## plugins/spamlookup/spamlookup_words.pl
+
+## plugins/StyleCatcher/stylecatcher.pl
+
+## plugins/StyleCatcher/tmpl/view.tmpl
+
+## plugins/StyleCatcher/lib/StyleCatcher/CMS.pm
+
 );
 
-## New words: 229
+## New words: 70
 
 1;
Index: /branches/athena/lib/MT/L10N/de.pm
===================================================================
--- /branches/athena/lib/MT/L10N/de.pm (revision 1091)
+++ /branches/athena/lib/MT/L10N/de.pm (revision 1092)
@@ -22,8 +22,8 @@
 
 ## php/lib/function.mtcommentfields.php
-	'Thanks for signing in,' => 'Danke fÃŒr Ihre Anmeldung',
+	'Thanks for signing in,' => 'Danke fÃŒr Ihre Anmeldung, ',
 	'Now you can comment.' => 'Sie kÃ¶nnen jetzt Ihren Kommentar verfassen.',
 	'sign out' => 'abmelden',
-	'(If you haven\'t left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won\'t appear on the entry. Thanks for waiting.)' => '(Wenn Sie hier noch nicht kommentiert haben, wird Ihr Kommentar eventuell erst zeitverzÃ¶gert freigeschaltet werden. Vielen Dank fÃŒr Ihre Geduld.)',
+	'(If you haven\'t left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won\'t appear on the entry. Thanks for waiting.)' => '(Wenn Sie hier noch nicht kommentiert haben, muss Ihr Kommentar mÃ¶glicherweise erst vom Betreiber dieses Blogs freigeschaltet werden, bevor er angezeigt wird. Vielen Dank fÃŒr Ihre Geduld.)',
 	'Remember me?' => 'Benutzername speichern?',
 	'Yes' => 'Ja',
@@ -35,10 +35,10 @@
 	'Sign in' => 'Anmelden',
 	'. Now you can comment.' => '. Sie kÃ¶nnen jetzt Ihren Kommentar verfassen.',
-	'If you have a TypeKey identity, you can ' => 'Wenn Sie eine TypeKey-IdentitÃ€t besitzen, ',
+	'If you have a TypeKey identity, you can ' => 'Wenn Sie ein TypeKey-Konto besitzen, ',
 	'sign in' => 'melden Sie sich an',
-	'to use it here.' => ', um sie hier zu verwenden.',
+	'to use it here.' => ', um es hier zu verwenden.',
 	'Name' => 'Name',
 	'Email Address' => 'E-Mail-Adresse',
-	'URL' => 'Web-Adresse (URL)',
+	'URL' => 'URL',
 	'(You may use HTML tags for style)' => '(HTML-Tags zur Textformatierung erlaubt)',
 
@@ -69,5 +69,5 @@
 	'Category Yearly' => 'Kategorie jÃ€hrlich',
 	'Category Monthly' => 'Kategorie monatlich',
-	'Category Daily' => 'Kategorie Ã€tglich',
+	'Category Daily' => 'Kategorie tÃ€glich',
 	'Category Weekly' => 'Kategorie wÃ¶chentlich',
 
@@ -99,7 +99,7 @@
 	'Search Results' => 'Suchergebnisse',
 	'Search this site' => 'Diese Site durchsuchen',
-	'Search' => 'Suchen',
-	'Match case' => 'GroÃ-/Kleinschreibung',
-	'Regex search' => 'RegulÃ€re AusdrÃŒcke',
+	'Search' => 'Suchen:',
+	'Match case' => 'GroÃ-/Kleinschreibung beachten',
+	'Regex search' => 'RegulÃ€re AusdrÃŒcke verwenden',
 	'Matching entries matching &ldquo;[_1]&rdquo; from [_2]' => 'EintrÃ€ge mit &ldquo;[_1]&rdquo; von [_2]',
 	'Entries tagged with &ldquo;[_1]&rdquo; from [_2]' => 'Mit &ldquo;[_1]&rdquo; getaggte EintrÃ€ge von [_2]',
@@ -134,5 +134,5 @@
 
 ## default_templates/entry_listing.mtml
-	'[_1] Archives' => '[_1]-Archive',
+	'[_1] Archives' => '[_1] Archive',
 	'Recently in <em>[_1]</em> Category' => 'Neues in der Kategorie <em>[_1]</em>',
 	'Recently by <em>[_1]</em>' => 'Neues von <em>[_1]</em>',
@@ -141,19 +141,19 @@
 ## default_templates/comment_response.mtml
 	'Comment Submitted' => 'Kommentar abgeschickt',
-	'Confirmation...' => 'BestÃ€tigung...',
+	'Confirmation...' => 'BestÃ€tigung',
 	'Your comment has been submitted!' => 'Ihr Kommentar wurde abgeschickt!',
 	'Comment Pending' => 'Kommentar noch nicht freigegeben',
 	'Thank you for commenting.' => 'Vielen Dank fÃŒr Ihren Kommentar',
-	'Your comment has been received and held for approval by the blog owner.' => 'Ihr Kommentar wurde gespeichert und muÃ nun vom Weblog-Betreiber freigegeben werden.',
-	'Comment Submission Error' => 'Kommentar-Fehler',
-	'Your comment submission failed for the following reasons:' => 'Beim Kommentieren ist folgender Fehler aufgetreten:',
-	'Return to the <a href="[_1]">original entry</a>.' => '<a href="[_1]">ZurÃŒck zum Eintrag</a>.',
+	'Your comment has been received and held for approval by the blog owner.' => 'Ihr Kommentar wurde abgeschickt. Er erscheint auf der Seite, sobald der Blogbetreiber ihn freigeschaltet hat.',
+	'Comment Submission Error' => 'Fehler beim Kommentieren',
+	'Your comment submission failed for the following reasons:' => 'Ihr Kommentar konnte aus folgenden GrÃŒnden nicht abgeschickt werden:',
+	'Return to the <a href="[_1]">original entry</a>.' => '<a href="[_1]">ZurÃŒck zum Eintrag</a>',
 
 ## default_templates/sidebar_3col.mtml
-	'About this Entry' => 'Ãber diesen Eintrag',
+	'About this Entry' => 'Ãber diese Seite',
 	'About this Archive' => 'Ãber dieses Archiv',
 	'About Archives' => 'Ãber die Archive',
 	'This page contains links to all the archived content.' => 'Diese Seite enthÃ€lt Links zu allen archivierten EintrÃ€gen.',
-	'This page contains a single entry by [_1] published on <em>[_2]</em>.' => 'Diese Seite enthÃ€lt einen einen einzelnen Eintrag von [_1] von <em>[_2]</em>.',
+	'This page contains a single entry by [_1] published on <em>[_2]</em>.' => 'Diese Seite enthÃ€lt einen einen einzelnen Eintrag von [_1] vom <em>[_2]</em>.',
 	'<a href="[_1]">[_2]</a> was the previous entry in this blog.' => '<a href="[_1]">[_2]</a> ist der vorherige Eintrag in diesem Blog.',
 	'<a href="[_1]">[_2]</a> is the next entry in this blog.' => '<a href="[_1]">[_2]</a> ist der nÃ€chste Eintrag in diesem Blog.',
@@ -169,10 +169,10 @@
 	'Find recent content on the <a href="[_1]">main index</a>.' => 'Aktuelle EintrÃ€ge finden Sie auf der <a href="[_1]">Startseite</a>.',
 	'Find recent content on the <a href="[_1]">main index</a> or look in the <a href="[_2]">archives</a> to find all content.' => 'Aktuelle EintrÃ€ge finden Sie auf der <a href="[_1]">Startseite</a>, alle EintrÃ€ge in den <a href="[_2]">Archiven</a>.',
-	'Tag Cloud' => 'Tag-Wolke',
+	'Tag Cloud' => 'Tags',
 	'[_1] ([_2])' => '[_1] ([_2])',
-	'[_1] <a href="[_2]">Archives</a>' => '[_1]-<a href="[_2]">Archive</a>',
+	'[_1] <a href="[_2]">Archives</a>' => '<a href="[_2]">[_1]</a>',
 	'[_1]: Monthly Archives' => '[_1]: Monatsarchive',
 	'Subscribe to feed' => 'Feed abonnieren',
-	'Subscribe to this blog\'s feed' => 'Feed dieses Weblogs abonnieren',
+	'Subscribe to this blog\'s feed' => 'Feed dieses Blogs abonnieren',
 	'Powered by Movable Type [_1]' => 'Powered by Movable Type [_1]',
 	'If you use an RSS reader, you can subscribe to a feed of all future entries tagged &ldquo;<$MTSearchString$>&rdquo;.' => 'Wenn Sie einen Feedreader verwenden, kÃ¶nnen Sie einen Feed aller neuen mit &ldquo;<$MTSearchString$>&ldquo; getaggten EintrÃ€ge abonnieren.',
@@ -185,9 +185,9 @@
 
 ## default_templates/javascript.mtml
-	'You do not have permission to comment on this blog.' => 'Sie haben nicht die notwendigen Zugriffsrechte, um in diesem Blog Kommentare zu schreiben.',
-	'Sign in</a> to comment on this entry.' => 'Anmelden</a>, um diesen Eintrag zu kommentieren.',
-	'Sign in</a> to comment on this entry,' => 'Anmelden</a>, um diesen Eintrag zu kommentieren',
-	'or ' => 'oder',
-	'comment anonymously.' => 'anonym kommentieren.',
+	'You do not have permission to comment on this blog.' => 'Sie haben nicht die notwendige Berechtigung, um in diesem Blog Kommentare zu schreiben.',
+	' to comment on this entry.' => ' um diesen Eintrag zu kommentieren.',
+	' to comment on this entry,' => ' um diesen Eintrag zu kommentieren,',
+	'or ' => 'oder ',
+	'comment anonymously.' => 'ohne Anmeldung kommentieren',
 
 ## default_templates/entry_detail.mtml
@@ -197,9 +197,9 @@
 
 ## default_templates/trackbacks.mtml
-	'[_1] TrackBacks' => '[_1]-TrackBacks',
-	'Listed below are links to blogs that reference this entry: <a href="[_1]">[_2]</a>.' => 'Folgende EintrÃ€ge anderer Blogs beziehen sich auf diesen Eintrag: <a href="[_1]">[_2]</a>',
+	'[_1] TrackBacks' => '[_1] TrackBacks',
+	'Listed below are links to blogs that reference this entry: <a href="[_1]">[_2]</a>.' => 'Folgende EintrÃ€ge anderer Blogs beziehen sich auf den Eintrag <a href="[_1]">[_2]</a>',
 	'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'TrackBack-URL dieses Eintrags: <span id="trackbacks-link">[_1]</span>',
-	'&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a> von [_3]', # Translate - New # OK
-	'[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">Mehr</a>', # Translate - New # OK
+	'&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a> von [_3]',
+	'[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">Mehr</a>',
 	'Tracked on <a href="[_1]">[_2]</a>' => 'Gesehen auf <a href="[_1]">[_2]</a>',
 
@@ -250,5 +250,5 @@
 	'Entry \'[_1]\' (entry #[_2]) deleted by \'[_3]\' (user #[_4]) from xml-rpc' => 'Eintrag \'[_1]\' (Eintrag #[_2]) von \'[_3]\' (Benutzer #[_4]) via XML-RPC gelÃ¶scht',
 	'Not privileged to get entry' => 'Keine Leserechte',
-	'User does not have privileges' => 'Benutzer hat keine Zugriffsrechte',
+	'User does not have privileges' => 'Benutzer hat keine Berechtigungen',
 	'Not privileged to set entry categories' => 'Keine Rechte zur Vergabe von Kategorien',
 	'Saving placement failed: [_1]' => 'Die Platzierung konnte nicht geladen werden: [_1]',
@@ -274,6 +274,6 @@
 	'failed' => 'Fehlgeschlagen',
 	'Saving user failed: [_1]' => 'Das Benutzerkonto konnte nicht gespeichert werden: [_1]',
-	'Assigning permissions for new user...' => 'Weise neuem Benutzer Zugriffsrechte zu...',
-	'Saving permission failed: [_1]' => 'Die Zugriffsrechte konnten nicht gespeichert werden: [_1]',
+	'Assigning permissions for new user...' => 'Weise neuem Benutzer Berechigungen zu...',
+	'Saving permission failed: [_1]' => 'Die Berechtigungen konnten nicht gespeichert werden: [_1]',
 	'Creating new category (\'[_1]\')...' => 'Lege neue Kategorie an (\'[_1]\')...',
 	'Saving category failed: [_1]' => 'Die Kategorie konnte nicht gespeichert werden: [_1]',
@@ -325,6 +325,6 @@
 	'Error assigning blog administration rights to user \'[_1] (ID: [_2])\' for blog \'[_3] (ID: [_4])\'. No suitable blog administrator role was found.' => 'Fehler bei Zuweisung von Administratorensrechten fÃŒr Blog \'[_3] (ID: [_4])\') an Benutzer \'[_1] (ID: [_2])\'. Keine passende Administratorenrolle gefunden.',
 	'The login could not be confirmed because of a database error ([_1])' => 'Anmeldung konnte aufgrund eines Datenbankfehlers nicht durchgefÃŒhrt werden ([_1])',
-	'Permission denied.' => 'Keine Zugriffsrechte.',
-	'Invalid login.' => 'Login ungÃŒltig',
+	'Permission denied.' => 'Keine Berechtigung.',
+	'Invalid login.' => 'Benutzername oder Passwort ungÃŒltig',
 	'Failed login attempt by unknown user \'[_1]\'' => 'Fehlgeschlagener Anmeldeversuch von unbekanntem Benutzer \'[_1]\'',
 	'This account has been disabled. Please see your system administrator for access.' => 'Dieses Benutzerkonto wurde gesperrt. Bitte wenden Sie sich an den Administrator.',
@@ -335,5 +335,5 @@
 	'Invalid login attempt from user \'[_1]\'' => 'UngÃŒltiger Anmeldeversuch von Benutzer \'[_1]\'',
 	'User \'[_1]\' (ID:[_2]) logged out' => 'Benutzer \'[_1]\' (ID:[_2]) abgemeldet',
-	'New Comment Added to \'[_1]\'' => 'Neuer Kommentar zu \'[_1]\' hinzugefÃŒgt',
+	'New Comment Added to \'[_1]\'' => 'Neuer Kommentar zu \'[_1]\' eingegangen',
 	'Close' => 'SchlieÃen',
 	'Go Back' => 'ZurÃŒck',
@@ -361,5 +361,5 @@
 
 ## lib/MT/Core.pm
-	'System Administrator' => 'Systemadministrator',
+	'System Administrator' => 'System verwalten',
 	'Create Blogs' => 'Blogs anlegen',
 	'Manage Plugins' => 'Plugins verwalten',
@@ -389,5 +389,5 @@
 	'SQLite Database (v2)' => 'SQLite-Datenbank (v2)',
 	'Convert Line Breaks' => 'ZeilenumbrÃŒche konvertieren',
-	'Rich Text' => 'Rich Text',
+	'Rich Text' => 'Grafischer Editor',
 	'weblogs.com' => 'weblogs.com',
 	'technorati.com' => 'technorati.com',
@@ -398,5 +398,5 @@
 	'Blog URL' => 'Blog-URL',
 	'Blog ID' => 'Blog-ID',
-	'Blog Name' => 'Weblogname',
+	'Blog Name' => 'Name des Blogs',
 	'Entry Body' => 'Eintragstext',
 	'Entry Excerpt' => 'Eintragsauszug',
@@ -434,14 +434,14 @@
 	'View image' => 'Bild ansehen',
 	'Permission denied setting image defaults for blog #[_1]' => 'Keine Benutzerrechte zur Ãnderung der Bild-Voreinstellungen fÃŒr Weblog #[_1]',
-	'Thumbnail image for [_1]' => 'Vorschaubild fÃŒr [_1]', # Translate - New # OK
+	'Thumbnail image for [_1]' => 'Vorschaubild fÃŒr [_1]',
 	'Invalid basename \'[_1]\'' => 'UngÃŒltiger Basename \'[_1]\'',
 	'Error writing to \'[_1]\': [_2]' => 'Fehler beim Speichern unter\'[_1]\': [_2]',
-	'Popup Page for [_1]' => 'Popup-Seite fÃŒr [_1]', # Translate - New # OK
+	'Popup Page for [_1]' => 'Popup-Seite fÃŒr [_1]',
 
 ## lib/MT/BackupRestore.pm
 	'Backing up [_1] records:' => 'Sichere [_1]-EintrÃ€ge:',
-	'[_1] records backed up...' => '[_1]-EintrÃ€ge gesichert...',
-	'[_1] records backed up.' => '[_1]-EintrÃ€ge gesichert.',
-	'There were no [_1] records to be backed up.' => 'Keine [_1]-EintrÃ€ge zu speichern.',
+	'[_1] records backed up...' => '[_1] EintrÃ€ge gesichert...',
+	'[_1] records backed up.' => '[_1] EintrÃ€ge gesichert',
+	'There were no [_1] records to be backed up.' => 'Keine [_1]-EintrÃ€ge zu sichern',
 	'No manifest file could be found in your import directory [_1].' => 'Keine Manifest-Datei im Importverzeichnis [_1] gefunden.',
 	'Can\'t open [_1].' => 'Kann [_1] nicht Ã¶ffnen.',
@@ -469,4 +469,5 @@
 	'[_1] records restored.' => '[_1] EintrÃ€ge wiederhergestellt.',
 	'Restoring [_1] records:' => 'Stelle [_1]-EintrÃ€ge wieder her:',
+	'User with the same name as the name of the currently logged in ([_1]) found.  Skipped the record.' => 'Benutzer mit dem Namen des derzeit angemeldeten Benutzers ([_1]) gefunden. Eintrag ÃŒbersprungen.', # Translate - New # OK
 	'User with the same name \'[_1]\' found (ID:[_2]).  Restore replaced this user with the data backed up.' => 'Benutzer mit gleichem Namen \'[_1]\' gefunden (ID:[_2]).  Die Benutzerdaten wurden entsprechend ersetzt.',
 	'Tag \'[_1]\' exists in the system.' => 'Tag \'[_1]\' bereits im System vorhanden.',
@@ -485,5 +486,5 @@
 	'RSS' => 'RSS',
 	'Entry' => 'Eintrag',
-	'Entry Listing' => 'Eintragsverzeichnis',
+	'Entry Listing' => 'Eintragsliste',
 	'Comment Response' => 'Kommentarantworten',
 	'Shown for a comment error, pending or confirmation message.' => 'Wird bei Fehler-, Moderations- und BestÃ€tigungsmeldungen fÃŒr Kommentarautoren angezeigt.',
@@ -549,5 +550,5 @@
 	'Actions' => 'Aktionen',
 	'Warning' => 'Warnung',
-	'No [_1] could be found.' => 'Kein [_1] gefunden.',
+	'No [_1] could be found.' => 'Keine [_1] vorhanden',
 	'Recursion attempt on [_1]: [_2]' => 'Rekursionsversuch bei [_1]: [_2]',
 	'Can\'t find included template [_1] \'[_2]\'' => 'Kann verwendete Vorlage [_1] \'[_2]\' nicht finden',
@@ -654,5 +655,5 @@
 ## lib/MT/Mail.pm
 	'Unknown MailTransfer method \'[_1]\'' => 'Unbekannte MailTransfer-Methode \'[_1]\'',
-	'Sending mail via SMTP requires that your server have Mail::Sendmail installed: [_1]' => 'FÃŒr das Versenden von Email mittels SMTP ist Mail::Sendmail erforderlich: [_1]',
+	'Sending mail via SMTP requires that your server have Mail::Sendmail installed: [_1]' => 'FÃŒr das Versenden von E-Mail mittels SMTP ist Mail::Sendmail erforderlich: [_1]',
 	'Error sending mail: [_1]' => 'Fehler beim Versenden von Mail: [_1]',
 	'You do not have a valid path to sendmail on your machine. Perhaps you should try using SMTP?' => 'Kein gÃŒltiger sendmail-Pfad gefunden. Versuchen Sie stattdessen SMTP zu verwenden.',
@@ -670,18 +671,18 @@
 
 ## lib/MT/Util.pm
-	'moments from now' => 'In einem Augenblick',
-	'moments ago' => 'Vor einem Augenblick',
-	'[quant,_1,hour,hours] from now' => 'In [quant,_1,Stunde,Stunden]',
-	'[quant,_1,hour,hours] ago' => 'Vor [quant,_1,Stunde,Stunden]',
-	'[quant,_1,minute,minutes] from now' => 'In [quant,_1,Minute,Minuten]',
-	'[quant,_1,minute,minutes] ago' => 'Vor [quant,_1,Minute,Minuten]',
-	'[quant,_1,day,days] from now' => 'In [quant,_1,Tag,Tagen]',
-	'[quant,_1,day,days] ago' => 'Vor [quant,_1,Tag,Tagen]',
-	'less than 1 minute from now' => 'In weniger als 1 Minute',
-	'less than 1 minute ago' => 'Vor weniger als 1 Minute',
-	'[quant,_1,hour,hours], [quant,_2,minute,minutes] from now' => 'In [quant,_1,Stunde,Stunden] [quant,_1,Minute,Minuten]',
-	'[quant,_1,hour,hours], [quant,_2,minute,minutes] ago' => 'Vor [quant,_1,Stunde,Stunden] [quant,_1,Minute,Minuten]',
-	'[quant,_1,day,days], [quant,_2,hour,hours] from now' => 'In [quant,_1,Tag,Tagen] [quant,_1,Stunde,Stunden]',
-	'[quant,_1,day,days], [quant,_2,hour,hours] ago' => 'Vor [quant,_1,Tag,Tagen] [quant,_1,Stunde,Stunden]',
+	'moments from now' => 'in einem Augenblick',
+	'moments ago' => 'vor einem Augenblick',
+	'[quant,_1,hour,hours] from now' => 'in [quant,_1,Stunde,Stunden]',
+	'[quant,_1,hour,hours] ago' => 'vor [quant,_1,Stunde,Stunden]',
+	'[quant,_1,minute,minutes] from now' => 'in [quant,_1,Minute,Minuten]',
+	'[quant,_1,minute,minutes] ago' => 'vor [quant,_1,Minute,Minuten]',
+	'[quant,_1,day,days] from now' => 'in [quant,_1,Tag,Tagen]',
+	'[quant,_1,day,days] ago' => 'vor [quant,_1,Tag,Tagen]',
+	'less than 1 minute from now' => 'in weniger als 1 Minute',
+	'less than 1 minute ago' => 'vor weniger als 1 Minute',
+	'[quant,_1,hour,hours], [quant,_2,minute,minutes] from now' => 'in [quant,_1,Stunde,Stunden] [quant,_1,Minute,Minuten]',
+	'[quant,_1,hour,hours], [quant,_2,minute,minutes] ago' => 'vor [quant,_1,Stunde,Stunden] [quant,_1,Minute,Minuten]',
+	'[quant,_1,day,days], [quant,_2,hour,hours] from now' => 'in [quant,_1,Tag,Tagen] [quant,_1,Stunde,Stunden]',
+	'[quant,_1,day,days], [quant,_2,hour,hours] ago' => 'vor [quant,_1,Tag,Tagen] [quant,_1,Stunde,Stunden]',
 
 ## lib/MT/Placement.pm
@@ -723,20 +724,20 @@
 	'Template \'[_1]\' does not have an Output File.' => 'Vorlage \'[_1]\' hat keine Ausgabedatei.',
 	'An error occurred while publishing scheduled entries: [_1]' => 'Fehler bei der VerÃ¶ffentlichung zeitgeplanter EintrÃ€ge: [_1]',
-	'YEARLY_ADV' => 'JÃ€hrlich',
-	'MONTHLY_ADV' => 'Monatlich',
-	'CATEGORY_ADV' => 'Kategorie',
-	'PAGE_ADV' => 'Seite',
-	'INDIVIDUAL_ADV' => 'Einzeln',
-	'DAILY_ADV' => 'TÃ€glich',
-	'WEEKLY_ADV' => 'WÃ¶chentlich',
-	'AUTHOR_ADV' => 'Autor',
-	'AUTHOR-YEARLY_ADV' => 'Autor jÃ€hrlich',
-	'AUTHOR-MONTHLY_ADV' => 'Autor monatlich',
-	'AUTHOR-WEEKLY_ADV' => 'Autor wÃ¶chentlich',
-	'AUTHOR-DAILY_ADV' => 'Autor tÃ€glich',
-	'CATEGORY-YEARLY_ADV' => 'Kategorie jÃ€hrlich',
-	'CATEGORY-MONTHLY_ADV' => 'Kategorie monatlich',
-	'CATEGORY-DAILY_ADV' => 'Kategorie tÃ€glich',
-	'CATEGORY-WEEKLY_ADV' => 'Kategorie wÃ¶chentlich',
+	'YEARLY_ADV' => 'Jahresarchive',
+	'MONTHLY_ADV' => 'Monatsarchive',
+	'CATEGORY_ADV' => 'Kategoriearchive',
+	'PAGE_ADV' => 'Seitenarchive',
+	'INDIVIDUAL_ADV' => 'Einzelarchive',
+	'DAILY_ADV' => 'Tagesarchive',
+	'WEEKLY_ADV' => 'Wochenarchive',
+	'AUTHOR_ADV' => 'Autorenarchive',
+	'AUTHOR-YEARLY_ADV' => 'jÃ€hrliche Autorenarchive',
+	'AUTHOR-MONTHLY_ADV' => 'monatliche Autorenarchive',
+	'AUTHOR-WEEKLY_ADV' => 'wÃ¶chentliche Autorenarchive',
+	'AUTHOR-DAILY_ADV' => 'tÃ€gliche Autorenarchive',
+	'CATEGORY-YEARLY_ADV' => 'jÃ€hrliche Kategoriearchive',
+	'CATEGORY-MONTHLY_ADV' => 'monatliche Kategoriearchive',
+	'CATEGORY-DAILY_ADV' => 'tÃ€gliche Kategoriearchive',
+	'CATEGORY-WEEKLY_ADV' => 'wÃ¶chentliche Kategoriearchive',
 	'author-display-name/index.html' => 'benutzer-name/index.html',
 	'author_display_name/index.html' => 'benutzer_name/index.html',
@@ -783,13 +784,13 @@
 	'Login failed: permission denied for user \'[_1]\'' => 'Login fehlgeschlagen: Zugriff verweigert fÃŒr Benutzer \'[_1]\'',
 	'Login failed: password was wrong for user \'[_1]\'' => 'Login fehlgeschlagen: Passwort fÃŒr Benutzer \'[_1]\' falsch',
-	'Signing up is not allowed.' => 'Anmelden nicht erlaubt.',
-	'User requires username.' => 'Benutzername fÃŒr Benutzer erforderlich.',
-	'User requires display name.' => 'Anzeigename fÃŒr Benutzer erforderlich.',
-	'A user with the same name already exists.' => 'Ein Benutzer mit diesem Namen existiert bereits.',
-	'User requires password.' => 'Passwort fÃŒr Benutzer erforderlich.',
-	'User requires password recovery word/phrase.' => 'Passwort-Erinnerungsfrage fÃŒr Benutzer erforderlich.',
-	'Email Address is invalid.' => 'E-Mail-Adresse ungÃŒltig.',
-	'Email Address is required for password recovery.' => 'E-Mail-Addresse zur Erzeugung eines neuen Passworts erforderlich .',
-	'URL is invalid.' => 'URL ist ungÃŒltig.',
+	'Signing up is not allowed.' => 'Anmelden nicht erlaubt',
+	'User requires username.' => 'Benutzername erforderlich',
+	'User requires display name.' => 'Anzeigename erforderlich',
+	'A user with the same name already exists.' => 'Ein Benutzer mit diesem Namen existiert bereits',
+	'User requires password.' => 'Passwort erforderlich',
+	'User requires password recovery word/phrase.' => 'Passwort-Erinnerungssatz erforderlich',
+	'Email Address is invalid.' => 'E-Mail-Adresse ungÃŒltig',
+	'Email Address is required for password recovery.' => 'E-Mail-Adresse erforderlich (fÃŒr Passwort-Anforderungen)',
+	'URL is invalid.' => 'URL ist ungÃŒltig',
 	'Text entered was wrong.  Try again.' => 'Der eingegebene Text ist falsch. Bitte versuchen Sie es erneut.',
 	'Something wrong happened when trying to process signup: [_1]' => 'Bei der Bearbeitung der Registrierung ist ein Fehler aufgetreten: [_1]',
@@ -798,5 +799,5 @@
 	'Commenter \'[_1]\' (ID:[_2]) has been successfully registered.' => 'Kommentarautor \'[_1]\' (ID:[_2]) erfolgreich registriert.',
 	'Thanks for the confirmation.  Please sign in to comment.' => 'Vielen Dank fÃŒr Ihre BestÃ€tigung. Sie kÃ¶nnen sich jetzt anmelden und kommentieren.',
-	'[_1] registered to the blog \'[_2]\'' => '[_1] hat sich fÃŒr das Blog \'[_2]\' registriert.', # Translate - New # OK
+	'[_1] registered to the blog \'[_2]\'' => '[_1] hat sich fÃŒr das Blog \'[_2]\' registriert.',
 	'No id' => 'Keine ID',
 	'No such comment' => 'Kein entsprechender Kommentar',
@@ -815,6 +816,6 @@
 	'Comment text is required.' => 'Kommentartext ist Pflichtfeld.',
 	'An error occurred: [_1]' => 'Es ist ein Fehler aufgetreten: [_1]',
-	'Registration is required.' => 'Registrierung ist erforderlich.',
-	'Name and email address are required.' => 'Name und Email sind Pflichtfelder.',
+	'Registration is required.' => 'Registrierung erforderlich',
+	'Name and email address are required.' => 'Name und E-Mail-Adresse sind Pflichtfelder',
 	'Invalid email address \'[_1]\'' => 'UngÃŒltige E-Mail-Adresse \'[_1]\'',
 	'Invalid URL \'[_1]\'' => 'UngÃŒltige Web-Adresse (URL) \'[_1]\'',
@@ -839,5 +840,5 @@
 	'The [_1] database driver is required to use [_2].' => 'Ein [_1]-Datenbanktreiber ist erforderlich, um [_2] zu nutzen.',
 	'The [_1] driver is required to use [_2].' => 'Ein [_1]-Treiber ist erforderlich, um [_2] zu nutzen.',
-	'An error occurred while attempting to connect to the database.  Check the settings and try again.' => 'Bei dem Versuch, eine Verbindung zur Datenbank aufzubauen, ist ein Fehler aufgetreten. Bitte ÃŒberprÃŒfen Sie Einstellungen und versuchen es erneut.',
+	'An error occurred while attempting to connect to the database.  Check the settings and try again.' => 'Es konnte keine Verbindung zur Datenbank aufgebaut werden. Bitte ÃŒberprÃŒfen Sie die Einstellungen und versuchen Sie es erneut.',
 	'SMTP Server' => 'SMTP-Server',
 	'Sendmail' => 'Sendmail',
@@ -866,7 +867,7 @@
 ## lib/MT/App/Upgrader.pm
 	'Failed to authenticate using given credentials: [_1].' => 'Authentifizierung fehlgeschlagen: [_1].',
-	'You failed to validate your password.' => 'Passwort und Wiederholung des Passworts stimmen nicht ÃŒberein',
-	'You failed to supply a password.' => 'Passwort erforderlich',
-	'The e-mail address is required.' => 'E-Mail-Adresse erforderlich',
+	'You failed to validate your password.' => 'Die PasswÃ¶rter sind nicht identisch.',
+	'You failed to supply a password.' => 'Bitte geben Sie Ihr Passwort an.',
+	'The e-mail address is required.' => 'Bitte geben Sie Ihre E-Mail-Adresse an.',
 	'The path provided below is not writable.' => 'Der unten angegebene Pfad ist nicht beschreibbar.',
 	'Invalid session.' => 'UngÃŒltige Session',
@@ -885,15 +886,15 @@
 ## lib/MT/App/CMS.pm
 	'_WARNING_PASSWORD_RESET_MULTI' => 'Sie sind dabei, die PasswÃ¶rter mehrerer Benutzer zurÃŒcksetzen. Den Benutzern werden dazu zufÃ€llig erzeugte neue PasswÃ¶rter per E-Mail zugeschickt werden.\n\nForsetzen?',
-	'_WARNING_DELETE_USER_EUM' => 'LÃ¶schen eines Benutzerkontos kann nicht rÃŒckgÃ€ngig gemacht werden und fÃŒhrt zu verwaisten EintrÃ€gen. Es wird daher empfohlen, das Benutzerkonto zu belassen und stattdessen dem Benutzer alle Zugriffsrechte zu entziehen. MÃ¶chten Sie das Konto dennoch lÃ¶schen?\nGelÃ¶schte Benutzer kÃ¶nnen ihre Benutzerkonten selbst solange wiederherstellen, wie sie noch im externen Verzeichnis aufgefÃŒhrt sind.',
-	'_WARNING_DELETE_USER' => 'LÃ¶schen eines Benutzerkontos kann nicht rÃŒckgÃ€ngig gemacht werden und fÃŒhrt zu verwaisten EintrÃ€gen. Es wird daher empfohlen, das Benutzerkonto zu belassen und stattdessen dem Benutzer alle Zugriffsrechte zu entziehen. MÃ¶chten Sie das Konto dennoch lÃ¶schen?',
+	'_WARNING_DELETE_USER_EUM' => 'LÃ¶schen eines Benutzerkontos kann nicht rÃŒckgÃ€ngig gemacht werden und fÃŒhrt zu verwaisten EintrÃ€gen. Es wird daher empfohlen, das Benutzerkonto zu belassen und stattdessen dem Benutzer alle Berechtigungen zu entziehen. MÃ¶chten Sie das Konto dennoch lÃ¶schen?\nGelÃ¶schte Benutzer kÃ¶nnen ihre Benutzerkonten selbst solange wiederherstellen, wie sie noch im externen Verzeichnis aufgefÃŒhrt sind.',
+	'_WARNING_DELETE_USER' => 'LÃ¶schen eines Benutzerkontos kann nicht rÃŒckgÃ€ngig gemacht werden und fÃŒhrt zu verwaisten EintrÃ€gen. Es wird daher empfohlen, das Benutzerkonto zu belassen und stattdessen dem Benutzer alle Berechtigungen zu entziehen. MÃ¶chten Sie das Konto dennoch lÃ¶schen?',
 	'All Assets' => 'Alle Assets',
-	'Published [_1]' => '[_1] verÃ¶ffentlicht',
-	'Unpublished [_1]' => '[_1] nicht mehr verÃ¶ffentlicht',
-	'Scheduled [_1]' => '[_1] zeitgeplant',
-	'My [_1]' => 'Mein [_1]',
+	'Published [_1]' => 'VerÃ¶ffentlichte [_1]',
+	'Unpublished [_1]' => 'Nicht verÃ¶ffentlichte [_1]',
+	'Scheduled [_1]' => 'Zeitgeplante [_1]',
+	'My [_1]' => 'Meine [_1]',
 	'[_1] with comments in the last 7 days' => '[_1] mit Kommentaren in den letzten 7 Tagen',
-	'[_1] posted between [_2] and [_3]' => '[_1] verÃ¶ffentlicht zwischen dem [_2] und dem [_3]',
-	'[_1] posted since [_2]' => '[_1] verÃ¶ffentlicht seit [_2]',
-	'[_1] posted on or before [_2]' => '[_1] verÃ¶ffentlicht am oder vor dem [_2]',
+	'[_1] posted between [_2] and [_3]' => 'Zwischen dem [_2] und dem [_3] verÃ¶ffentlichte [_1]',
+	'[_1] posted since [_2]' => 'Seit dem [_2] verÃ¶ffentlichte [_1]',
+	'[_1] posted on or before [_2]' => 'Am oder vor dem [_2] verÃ¶ffentlichte [_1]',
 	'All comments by [_1] \'[_2]\'' => 'Alle Kommentare von [_1] \'[_2]\'',
 	'Commenter' => 'Kommentarautor',
@@ -903,13 +904,13 @@
 	'Comments posted on or before [_1]' => 'Bis [_1] verÃ¶ffentlichte Kommentare',
 	'Invalid blog' => 'UngÃŒltiges Blog',
-	'Password Recovery' => 'Passwort verschicken',
+	'Password Recovery' => 'Neues Passwort anfordern',
 	'Invalid password recovery attempt; can\'t recover password in this configuration' => 'UngÃŒltiger Versuch der Passwortanforderung. PasswÃ¶rter kÃ¶nnen in dieser Konfiguration nicht angefordert werden.',
 	'Invalid author_id' => 'UngÃŒltige Autoren-ID',
 	'Can\'t recover password in this configuration' => 'PasswÃ¶rter kÃ¶nnen in dieser Konfiguration nicht angefordert werden',
 	'Invalid user name \'[_1]\' in password recovery attempt' => 'UngÃŒltiger Benutzername \'[_1]\' zur Passwortanforderung verwendet',
-	'User name or birthplace is incorrect.' => 'Benutzername oder Geburtsort ungÃŒltig.',
-	'User has not set birthplace; cannot recover password' => 'Geburtsort nicht angegeben; Passwort kann nicht angefordert werden',
-	'Invalid attempt to recover password (used birthplace \'[_1]\')' => 'UngÃŒltiger Versuch der Passwortanforderung (angegebener Geburtsort: \'[_1]\')',
-	'User does not have email address' => 'Benutzer hat keine Email-Adresse',
+	'User name or birthplace is incorrect.' => 'Der angegebene Benutzername ist unbekannt oder der Erinnerungssatz falsch',
+	'User has not set birthplace; cannot recover password' => 'Erinnerungssatz nicht definiert; Passwort kann nicht angefordert werden',
+	'Invalid attempt to recover password (used birthplace \'[_1]\')' => 'UngÃŒltiger Versuch der Passwortanforderung (angegebener Erinnerungssatz: \'[_1]\')',
+	'User does not have email address' => 'Benutzer hat keine E-Mail-Adresse',
 	'Password was reset for user \'[_1]\' (user #[_2]). Password was sent to the following address: [_3]' => 'Passwort von Benutzer \'[_1]\' (#[_2]) zurÃŒckgesetzt und an [_3] verschickt',
 	'Error sending mail ([_1]); please fix the problem, then try again to recover your password.' => 'Beim Mailversand ist ein Fehler aufgetreten ([_1]). ÃberprÃŒfen Sie die entsprechenden Einstellungen und versuchen Sie dann erneut, ein neues Passwort anzufordern.',
@@ -935,10 +936,10 @@
 	'Blog Activity Feed' => 'AktivitÃ€tsfeed',
 	'*User deleted*' => 'Benutzer gelÃ¶scht',
-	'All Feedback' => 'Jedes Feedback',
+	'All Feedback' => 'Feedback',
 	'Activity Log' => 'AktivitÃ€ten',
-	'System Activity Feed' => 'System-AktivitÃ€tsfeed',
+	'System Activity Feed' => 'Systemfeed',
 	'Activity log for blog \'[_1]\' (ID:[_2]) reset by \'[_3]\'' => 'AktivitÃ€tsprotokoll von \'[_1]\' (ID:[_2]) on \'[_3]\' zurÃŒckgesetzt',
 	'Activity log reset by \'[_1]\'' => 'AktivitÃ€tsprotokoll zurÃŒckgesetzt von \'[_1]\'',
-	'Please select a blog.' => 'Bitte wÃ€hlen Sie ein Blog aus.',
+	'Please select a blog.' => 'Bitte wÃ€hlen Sie ein Blog',
 	'Import/Export' => 'Import/Export',
 	'Invalid parameter' => 'UngÃŒltiges Parameter',
@@ -955,5 +956,5 @@
 	'One or more errors were found in this template.' => 'Die Vorlage enthÃ€lt einen oder mehrere Fehler',
 	'General Settings' => 'Allgemeine Einstellungen',
-	'Publishing Settings' => 'Grundeinstellungen',
+	'Publishing Settings' => 'VerÃ¶ffentlichungs-Einstellungen',
 	'Plugin Settings' => 'Plugin-Einstellungen',
 	'Settings' => 'Einstellungen',
@@ -961,5 +962,5 @@
 	'Edit Comment' => 'Kommentar bearbeiten',
 	'Authenticated Commenters' => 'Authentifizierte Kommentarautoren',
-	'Commenter Details' => 'Details zu Kommentarautor',
+	'Commenter Details' => 'Kommentarautor-Details',
 	'Commenters' => 'Kommentarautoren',
 	'New Entry' => 'Neuer Eintrag',
@@ -972,8 +973,8 @@
 	'pages' => 'Seiten',
 	'Create New User' => 'Neues Benutzerkonto anlegen',
-	'User requires username' => 'Benutzer erfordert Benutzername',
-	'User requires password' => 'Benutzer erfodert Benutzername',
-	'User requires password recovery word/phrase' => 'Author erfordert Passwort-Erinnerungssatz',
-	'Email Address is required for password recovery' => 'E-Mail-Adresse bei Passwort-Anfrage erforderlich',
+	'User requires username' => 'Benutzername erforderlich',
+	'User requires password' => 'Passwort erforderlich',
+	'User requires password recovery word/phrase' => 'Passwort-Erinnerungssatz erforderlich',
+	'Email Address is required for password recovery' => 'E-Mail-Adresse erforderlich (fÃŒr Passwort-Anforderungen)',
 	'Website URL is imperfect' => 'Website-URL ungÃŒltig',
 	'The value you entered was not a valid email address' => 'E-Mail-Adresse ungÃŒltig',
@@ -1040,19 +1041,19 @@
 	'One of the entries ([_1]) did not actually exist' => 'Einer der EintrÃ€ge ([_1]) ist nicht vorhanden',
 	'[_1] \'[_2]\' (ID:[_3]) status changed from [_4] to [_5]' => 'Status von [_1] \'[_2]\' (ID:[_3]) von [_4] in [_5] geÃ€ndert.',
-	'You don\'t have permission to approve this comment.' => 'Sie haben keine Zugriffsrechte zur Freischaltung dieses Kommentars.',
+	'You don\'t have permission to approve this comment.' => 'Sie haben keine Berechtigung zur Freischaltung dieses Kommentars.',
 	'Comment on missing entry!' => 'Kommentar gehÃ¶rt zu fehlendem Eintrag',
 	'Orphaned comment' => 'Verwaister Kommentar',
-	'Comments Activity Feed' => 'Kommentar-AktivitÃ€tsfeed',
+	'Comments Activity Feed' => 'Kommentarfeed',
 	'Orphaned' => 'Verwaist',
-	'Plugin Set: [_1]' => 'Plugin-Set: [_1]',
+	'Plugin Set: [_1]' => 'Plugin-Gruppe: [_1]',
 	'Plugins' => 'Plugins',
 	'Junk TrackBacks' => 'TrackBacks als Spam behandeln',
-	'TrackBacks where <strong>[_1]</strong> is &quot;[_2]&quot;.' => 'TrackBacks, bei denen <strong>[_1]</strong> &quot;[_2]&quot; ist.',
-	'TrackBack Activity Feed' => 'TrackBack-AktivitÃ€tsfeed',
+	'TrackBacks where <strong>[_1]</strong> is &quot;[_2]&quot;.' => 'TrackBacks, mit <strong>[_1]</strong> &quot;[_2]&quot;',
+	'TrackBack Activity Feed' => 'TrackBackfeed',
 	'No Excerpt' => 'Kein Auszug',
 	'No Title' => 'Keine Ãberschrift',
 	'Orphaned TrackBack' => 'Verwaistes TrackBack',
-	'category' => 'Kategorie',
-	'Category' => 'Kategorie',
+	'category' => 'Kategorien',
+	'Category' => 'Kategorien',
 	'Tag' => 'Tag',
 	'Entry Status' => 'Eintragsstatus',
@@ -1088,14 +1089,14 @@
 	'Role name cannot be blank.' => 'Rollenname erforderlich',
 	'Another role already exists by that name.' => 'Rolle mit diesem Namen bereits vorhanden',
-	'You cannot define a role without permissions.' => 'Rollen ohne Zugriffsrechte nicht mÃ¶glich',
-	'No permissions.' => 'Keine Zugriffsrechte.',
+	'You cannot define a role without permissions.' => 'Rollen ohne Berechtigungen nicht mÃ¶glich',
+	'No permissions.' => 'Keine Berechtigung..',
 	'No such entry \'[_1]\'' => 'Kein Eintrag \'[_1]\'',
-	'No email address for user \'[_1]\'' => 'Keine Email-Addresse fÃŒr Benutzer \'[_1]\'',
+	'No email address for user \'[_1]\'' => 'Keine E-Mail-Addresse fÃŒr Benutzer \'[_1]\'',
 	'entry' => 'Eintrag',
 	'No valid recipients found for the entry notification.' => 'Keine gÃŒltigen EmpfÃ€nger fÃŒr Benachrichtigungen gefunden.',
 	'[_1] Update: [_2]' => '[_1] Update: [_2]',
 	'Error sending mail ([_1]); try another MailTransfer setting?' => 'Mailversand fehlgeschlagen([_1]). ÃberprÃŒfen Sie die MailTransfer-Einstellungen.',
-	'Archive Root' => 'Archiv-Root',
-	'Site Root' => 'Site-Root',
+	'Archive Root' => 'Archiv-Wurzel',
+	'Site Root' => 'Wurzelverzeichnis',
 	'Can\'t load blog #[_1].' => 'Kann Blog #[_1] nicht laden.',
 	'Please select a file to upload.' => 'Bitte wÃ€hlen Sie die hochzuladende Datei aus',
@@ -1138,5 +1139,5 @@
 	'represents a user who will be created afterwards' => 'steht fÃŒr ein Benutzerkonto, das spÃ€ter angelegt werden wird',
 	'Select Blogs' => 'Weblogs auswÃ€hlen',
-	'Blogs Selected' => 'AusgewÃ€hlte Weblogs',
+	'Blogs Selected' => 'GewÃ€hlte Weblogs',
 	'Search Blogs' => 'Blogs suchen',
 	'Select Users' => 'GewÃ€hlte Benutzer',
@@ -1153,5 +1154,5 @@
 	'' => '', # Translate - New # OK
 	'Grant Permissions' => 'Rechte zuweisen',
-	'Backup' => 'Backup',
+	'Backup' => 'Sichern',
 	'Backup & Restore' => 'Sichern & Wiederherstellen',
 	'Temporary directory needs to be writable for backup to work correctly.  Please check TempDir configuration directive.' => 'Das temporÃ€re Verzeichnis muss zur DurchfÃŒhrung der Sicherung beschreibbar sein. Bitte ÃŒberprÃŒfen Sie Ihre TempDir-Einstellung.',
@@ -1199,5 +1200,5 @@
 	'Handy Shortcuts' => 'NÃŒtzliche AbkÃŒrzungen',
 	'Movable Type News' => 'News von Movable Type',
-	'Blog Stats' => 'Blog-Statistik',
+	'Blog Stats' => 'Statistik',
 	'Unpublish Entries' => 'EintrÃ€ge nicht mehr verÃ¶ffentlichen',
 	'Add Tags...' => 'Tags hinzufÃŒgen...',
@@ -1213,13 +1214,13 @@
 	'Tags to add to selected assets' => 'Zu gewÃ€hlten Assets hinzuzufÃŒgende Tags',
 	'Tags to remove from selected assets' => 'Von gewÃ€hlten Assets zu entfernende Tags',
-	'Unpublish TrackBack(s)' => 'TrackBacks nicht mehr verÃ¶ffentlichen',
-	'Unpublish Comment(s)' => 'Kommentare nicht mehr verÃ¶ffentlichen',
-	'Trust Commenter(s)' => 'Kommentarautoren vertrauen',
-	'Untrust Commenter(s)' => 'Kommentarautoren nicht mehr vertrauen',
-	'Ban Commenter(s)' => 'Kommentarautoren sperren',
-	'Unban Commenter(s)' => 'Kommentatorsperre aufheben',
+	'Unpublish TrackBack(s)' => 'TrackBack(s) nicht mehr verÃ¶ffentlichen',
+	'Unpublish Comment(s)' => 'Kommentar(e) nicht mehr verÃ¶ffentlichen',
+	'Trust Commenter(s)' => 'Kommentarautor(en) vertrauen',
+	'Untrust Commenter(s)' => 'Kommentarautor(en) nicht mehr vertrauen',
+	'Ban Commenter(s)' => 'Kommentarautor(en) sperren',
+	'Unban Commenter(s)' => 'Kommentator(en) nicht mehr sperren',
 	'Recover Password(s)' => 'Passwort anfordern',
 	'Delete' => 'LÃ¶schen',
-	'Non-spam TrackBacks' => 'TrackBacks, die nicht Spam sind', # Translate - New # OK
+	'Non-spam TrackBacks' => 'TrackBacks (auÃer Spam)',
 	'TrackBacks on my entries' => 'TrackBacks zu meinen EintrÃ€gen',
 	'Published TrackBacks' => 'VerÃ¶ffentlichte TrackBacks',
@@ -1227,5 +1228,5 @@
 	'TrackBacks marked as Spam' => 'Als Spam markierte TrackBacks',
 	'All TrackBacks in the last 7 days' => 'Alle TrackBacks der letzten 7 Tage',
-	'Non-spam Comments' => 'Kommentare, die nicht Spam sind',
+	'Non-spam Comments' => 'Kommentare (auÃer Spam)',
 	'Comments on my entries' => 'Kommentare zu meinen EintrÃ€gen',
 	'Pending comments' => 'Zu moderierende Kommentare',
@@ -1239,14 +1240,14 @@
 	'Template Modules' => 'Vorlagenmodule',
 	'System Templates' => 'System-Vorlagen',
-	'Tags with entries' => 'Tags von EintrÃ€gen',
-	'Tags with pages' => 'Tags von Seiten',
-	'Tags with assets' => 'Tags von Assets',
-	'Enabled Users' => 'Aktivierte Benutzerkonten:',
-	'Disabled Users' => 'Deaktivierte Benutzerkonten:',
+	'Tags with entries' => 'Eintrags-Tags',
+	'Tags with pages' => 'Seiten-Tags',
+	'Tags with assets' => 'Assets-Tags',
+	'Enabled Users' => 'Aktive Benutzerkonten',
+	'Disabled Users' => 'Deaktivierte Benutzerkonten',
 	'Authors' => 'Autoren',
 	'Create' => 'Neu',
 	'Manage' => 'Verwalten',
 	'Design' => 'Gestalten',
-	'Preferences' => 'Einstellungen',
+	'Preferences' => 'Konfigurieren',
 	'Tools' => 'Tools',
 	'Blog' => 'Blog',
@@ -1256,7 +1257,7 @@
 	'Address Book' => 'Adressbuch',
 	'System Information' => 'Systeminformation',
-	'Import' => 'Import',
+	'Import' => 'Importieren',
 	'Export' => 'Exportieren',
-	'System Overview' => 'Systemeinstellungen',
+	'System Overview' => 'SystemÃŒbersicht',
 	'/' => '/',
 	'<' => '<',
@@ -1311,6 +1312,6 @@
 	'TrackBack on category \'[_1]\' (ID:[_2]).' => 'TrackBack fÃŒr Kategorie \'[_1]\' (ID:[_2])',
 	'Can\'t create RSS feed \'[_1]\': ' => 'RSS-Feed kann nicht angelegt werden \'[_1]\': ',
-	'New TrackBack Ping to Entry [_1] ([_2])' => 'Neuer TrackBack-Ping bei Eintrag [_1] ([_2])',
-	'New TrackBack Ping to Category [_1] ([_2])' => 'Neuer TrackBack-Ping bei Kategorie [_1] ([_2])',
+	'New TrackBack Ping to Entry [_1] ([_2])' => 'Neuer TrackBack-Ping fÃŒr Eintrag [_2] (#[_1])',
+	'New TrackBack Ping to Category [_1] ([_2])' => 'Neuer TrackBack-Ping fÃŒr Kategorie [_2] (#[_1])',
 
 ## lib/MT/FileMgr/Local.pm
@@ -1372,17 +1373,17 @@
 	'Welcome to my new blog powered by Movable Type. This is the first post on my blog and was created for me automatically when I finished the installation process. But that is ok, because I will soon be creating posts of my own!' => 'Willkommen zu meinem neuen Movable Type-Blog. Dieser Eintrag hier ist nur ein automatisch erzeugter Platzhalter, damit hier etwas steht, bis ich meine ersten eigenen EintrÃ€ge geschrieben habe.',
 	'Movable Type also created a comment for me as well so that I could see what a comment will look like on my blog once people start submitting comments on all the posts I will write.' => 'Ein Beispielkommentar wurde auch gleich angelegt, so daÃ man sehen kann, wie die Kommentare von Lesern dargestellt werden werden.',
-	'Can administer the blog.' => 'Kann das Blog verwalten.',
+	'Can administer the blog.' => 'Kann das Blog verwalten',
 	'Editor' => 'Editor',
-	'Can upload files, edit all entries/categories/tags on a blog and publish the blog.' => 'Kann alle EintrÃ€ge, Kategorien und Tags bearbeiten, Dateien hochladen und das Blog verÃ¶ffentlichen.', # Translate - New # OK
-	'Can create entries, edit their own, upload files and publish.' => 'Kann EintrÃ€ge anlegen und verÃ¶ffentlichen, eigene EintrÃ€ge bearbeiten und Dateien hochladen., ',
+	'Can upload files, edit all entries/categories/tags on a blog and publish the blog.' => 'Kann alle EintrÃ€ge, Kategorien und Tags bearbeiten, Dateien hochladen und das Blog verÃ¶ffentlichen',
+	'Can create entries, edit their own, upload files and publish.' => 'Kann EintrÃ€ge anlegen und verÃ¶ffentlichen, eigene EintrÃ€ge bearbeiten und Dateien hochladen',
 	'Designer' => 'Designer',
-	'Can edit, manage and publish blog templates.' => 'Kann Vorlagen bearbeiten, verwalten und verÃ¶ffentlichen.', # Translate - New # OK
+	'Can edit, manage and publish blog templates.' => 'Kann Vorlagen bearbeiten, verwalten und verÃ¶ffentlichen',
 	'Webmaster' => 'Webmaster',
-	'Can manage pages and publish blog templates.' => 'Kann Seiten verwalten und Vorlagen verÃ¶ffentlichen.', # Translate - New # OK
-	'Contributor' => 'Autor',
-	'Can create entries, edit their own and comment.' => 'Kann EintrÃ€ge anlegen, kommentieren und eigene EintrÃ€ge bearbeiten.',
+	'Can manage pages and publish blog templates.' => 'Kann Seiten verwalten und Vorlagen verÃ¶ffentlichen',
+	'Contributor' => 'Gastautor',
+	'Can create entries, edit their own and comment.' => 'Kann EintrÃ€ge anlegen, kommentieren und eigene EintrÃ€ge bearbeiten',
 	'Moderator' => 'Moderator',
 	'Can comment and manage feedback.' => 'Kann kommentieren und Feedback verwalten',
-	'Can comment.' => 'Kann kommentieren.',
+	'Can comment.' => 'Kann kommentieren',
 	'Removing Dynamic Site Bootstrapper index template...' => 'Entferne Indexvorlage des Dynamic Site Bootstrappers...',
 	'Fixing binary data for Microsoft SQL Server storage...' => 'Bereite BinÃ€rdaten fÃŒr Speicherung in Microsoft SQL Server vor...',
@@ -1417,5 +1418,5 @@
 	'Assigning blog administration permissions...' => 'Weise Administrationsrechte zu...',
 	'Setting blog allow pings status...' => 'Weise Ping-Status zu...',
-	'Updating blog comment email requirements...' => 'Aktualisere Email-Einstellungen der Kommentarfunktion...',
+	'Updating blog comment email requirements...' => 'Aktualisiere E-Mail-Einstellungen der Kommentarfunktion...',
 	'Assigning entry basenames for old entries...' => 'Weise AlteintrÃ€gen Basenames zu...',
 	'Updating user web services passwords...' => 'Aktualisierte PasswÃ¶rter fÃŒr Webdienste...',
@@ -1432,8 +1433,8 @@
 	'Assigning junk status for comments...' => 'Setze Junkstatus der Kommentare...',
 	'Assigning visible status for TrackBacks...' => 'Setzte Sichtbarkeitsstatus fÃŒr TrackBacks...',
-	'Assigning junk status for TrackBacks...' => 'Setze JunksStatus der TrackBacks...',
+	'Assigning junk status for TrackBacks...' => 'Setze Junkstatus der TrackBacks...',
 	'Assigning basename for categories...' => 'Weise Kategorien Basenames zu...',
 	'Assigning user status...' => 'Weise Benuzerstatus zu...',
-	'Migrating permissions to roles...' => 'Migriere Zugriffsrechte auf Rollen...',
+	'Migrating permissions to roles...' => 'Migriere Berechtigung auf Rollen...',
 	'Populating authored and published dates for entries...' => 'Ãbernehme Zeitstempel fÃŒr EintrÃ€ge...',
 	'Classifying category records...' => 'Klassifiziere Kategoriedaten...',
@@ -1529,5 +1530,5 @@
 
 ## mt-static/js/edit.js
-	'Enter email address:' => 'Email-Adresse eingeben:',
+	'Enter email address:' => 'E-Mail-Adresse eingeben:',
 	'Enter the link address:' => 'Link-Adresse eingeben:',
 	'Enter the text to link to:' => 'Link-Text eingeben:',
@@ -1548,6 +1549,6 @@
 	'Are you sure you want to [_2] this [_1]?' => '[_1] wirklich [_2]?',
 	'Are you sure you want to [_3] the [_1] selected [_2]?' => 'Die [_1] ausgewÃ€hlten [_2] wirklich [_3]?',
-	'Are you certain you want to remove this role? By doing so you will be taking away the permissions currently assigned to any users and groups associated with this role.' => 'Rolle wirklich entfernen? Entfernen der Rolle enzieht allen derzeit damit verknÃŒpften Benutzern und Gruppen die entsprechenden Zugriffsrechte.',
-	'Are you certain you want to remove these [_1] roles? By doing so you will be taking away the permissions currently assigned to any users and groups associated with these roles.' => '[_1] Rolle(n) wirklich entfernen? Entfernen der Rollen enzieht allen derzeit damit verknÃŒpften Benutzern und Gruppen die entsprechenden Zugriffsrechte.',
+	'Are you certain you want to remove this role? By doing so you will be taking away the permissions currently assigned to any users and groups associated with this role.' => 'Rolle wirklich entfernen? Entfernen der Rolle entzieht allen derzeit damit verknÃŒpften Benutzern und Gruppen die entsprechenden Berechtigungen.',
+	'Are you certain you want to remove these [_1] roles? By doing so you will be taking away the permissions currently assigned to any users and groups associated with these roles.' => '[_1] Rolle(n) wirklich entfernen? Entfernen der Rollen entzieht allen derzeit damit verknÃŒpften Benutzern und Gruppen die entsprechenden Berechtigungen.',
 	'You did not select any [_1] [_2].' => 'Sie haben keine [_1] [_2] gewÃ€hlt',
 	'You can only act upon a minimum of [_1] [_2].' => 'Nur mÃ¶glich fÃŒr mindestens [_1] [_2].',
@@ -1617,5 +1618,5 @@
 ## tmpl/comment/signup.tmpl
 	'Create an account' => 'Konto anlegen',
-	'Your login name.' => 'Ihr Anmeldename',
+	'Your login name.' => 'Ihr Benutzername',
 	'Display Name' => 'Angezeigter Name',
 	'The name appears on your comment.' => 'Dieser Name wird unter Ihren Kommentaren angezeigt.',
@@ -1623,9 +1624,9 @@
 	'Initial Password' => 'Passwort',
 	'Select a password for yourself.' => 'Eigenes Passwort',
-	'Password Confirm' => 'PassowrtbestÃ€tigung',
+	'Password Confirm' => 'PasswortbestÃ€tigung',
 	'Repeat the password for confirmation.' => 'Passwort zur BestÃ€tigung wiederholen',
 	'Password recovery word/phrase' => 'Erinnerungssatz',
 	'This word or phrase will be required to recover the password if you forget it.' => 'Dieser Begriff oder Satz wird abgefragt, wenn Sie Ihr Passwort vergessen haben und daher ein neues Passwort anfordern mÃ¶chten.',
-	'Website URL' => 'Web-Adresse (URL)',
+	'Website URL' => 'Website',
 	'The URL of your website. (Optional)' => 'URL Ihrer Website (optional)',
 	'Enter your login name.' => 'Geben Sie Ihren Anmeldenamen ein.',
@@ -1638,5 +1639,5 @@
 	'Sign in using' => 'Anmelden mit',
 	'Forgot your password?' => 'Passwort vergessen?',
-	'Not a member?&nbsp;&nbsp;<a href="[_1]">Sign Up</a>!' => 'Noch nicht Mitglied?&nbsp;&nbsp;<a href="[_1]">Einfach anmelden</a>!',
+	'Not a member?&nbsp;&nbsp;<a href="[_1]">Sign Up</a>!' => 'Noch nicht registriert?&nbsp;&nbsp;<a href="[_1]">Einfach jetzt registrieren</a>!',
 
 ## tmpl/comment/profile.tmpl
@@ -1645,5 +1646,5 @@
 	'Confirm Password' => 'Passwort bestÃ€tigen',
 	'Password recovery' => 'Passwort anfordern',
-	'Save' => 'Speichern',
+	'Save' => 'OK',
 	'Return to the <a href="[_1]">original page</a>.' => 'ZurÃŒck zur <a href="[_1]">Ausgangsseite</a>.',
 
@@ -1656,7 +1657,7 @@
 	'Before you can leave a comment you must first complete the registration process by confirming your account. An email has been sent to [_1].' => 'Bevor Sie kommentieren kÃ¶nnen, mÃŒssen Sie noch Ihre Registrierung bestÃ€tigen. Dazu haben wir Ihnen eine E-Mail an [_1] geschickt.',
 	'To complete the registration process you must first confirm your account. An email has been sent to [_1].' => 'Um die Registrierung abzuschlieÃen, bestÃ€tigen Sie bitte Ihre Anmeldung. Dazu haben wir Ihnen eine E-Mail an [_1] geschickt.',
-	'To confirm and activate your account please check your inbox and click on the link found in the email we just sent you.' => 'Um Ihre Registrierung zu bestÃ€tigen und Ihr Konto zu aktivieren, klicken Sie bitte auf den Link in der E-Mail, die wir Ihnen soeben zugeschickt haben.',
-	'Return to the original entry.' => 'ZurÃŒck zum Ausgangseintrag',
-	'Return to the original page.' => 'ZurÃŒck zur Ausgangsseite',
+	'To confirm and activate your account please check your inbox and click on the link found in the email we just sent you.' => 'Um Ihre Registrierung zu bestÃ€tigen und Ihr Konto zu aktivieren, klicken Sie bitte auf den Link in dieser E-Mail.',
+	'Return to the original entry.' => 'ZurÃŒck zum ursprÃŒnglichen Eintrag',
+	'Return to the original page.' => 'ZurÃŒck zur ursprÃŒnglichen Seite',
 
 ## tmpl/comment/register.tmpl
@@ -1681,19 +1682,19 @@
 	'Quickfilters' => 'Schnellfilter',
 	'Are you sure you want to remove this role?' => 'Rolle wirklich entfernen?',
-	'Your changes have been saved.' => 'Die Ãnderungen wurden gespeichert.',
+	'Your changes have been saved.' => 'Ãnderungen gespeichert',
 	'Add a user to this blog' => 'Benutzer zu diesem Blog hinzufÃŒgen',
 	'Showing only: [_1]' => 'Zeige nur: [_1]',
-	'Remove filter' => 'Filter lÃ¶schen',
+	'Remove filter' => 'aufheben',
 	'All [_1]' => 'Alle [_1]',
 	'change' => 'Ã€ndern',
-	'[_1] where [_2] is [_3]' => '[_1] bei denen [_2] [_3] ist.',
-	'Show only [_1] where' => 'Zeige nur [_1] bei denen',
+	'[_1] where [_2] is [_3]' => '[_1] mit [_2] [_3]',
+	'Show only [_1] where' => 'Zeige nur [_1] mit ',
 	'role' => 'Rolle',
 	'status' => 'Status',
-	'is' => 'ist',
+	'is' => '',
 	'enabled' => 'aktiviert',
 	'disabled' => 'deaktiviert',
 	'pending' => 'Nicht verÃ¶ffentlicht',
-	'Filter' => 'Filter',
+	'Filter' => 'Zeigen',
 	'user' => 'Benutzer',
 	'users' => 'Benutzer',
@@ -1705,5 +1706,5 @@
 ## tmpl/cms/list_role.tmpl
 	'Roles for [_1] in' => 'Rollen fÃŒr [_1] in',
-	'Roles: System-wide' => 'Systemweite Rollen',
+	'Roles: System-wide' => 'System: Rollen',
 	'You have successfully deleted the role(s).' => 'Rolle(n) erfolgreich gelÃ¶scht.',
 	'roles' => 'Rollen',
@@ -1712,5 +1713,5 @@
 	'Create Role' => 'Rolle anlegen',
 	'_USER_STATUS_CAPTION' => 'Status',
-	'In Blog' => 'Im Blog', # Translate - New # OK
+	'In Blog' => 'Im Blog',
 	'Via Group' => 'Ãber Gruppe',
 	'Members' => 'Mitglieder',
@@ -1720,8 +1721,8 @@
 
 ## tmpl/cms/cfg_spam.tmpl
-	'Spam Settings' => 'Spam-Konfiguration',
+	'Spam Settings' => 'Spam-Einstellungen',
 	'Your spam preferences have been saved.' => 'Spam-Einstellungen gespeichert.',
 	'Auto-Delete Spam' => 'Spam automatisch lÃ¶schen',
-	'If enabled, feedback reported as spam will be automatically erased after a number of days.' => 'Falls aktiviert, wird als Spam markiertes Feedback nach einer Anzahl von Tagen automatisch gelÃ¶scht.',
+	'If enabled, feedback reported as spam will be automatically erased after a number of days.' => 'Falls aktiviert, wird als Spam markiertes Feedback nach einer wÃ€hlbaren Anzahl von Tagen automatisch gelÃ¶scht.',
 	'Delete Spam After' => 'Spam lÃ¶schen nach',
 	'When an item has been reported as spam for this many days, it is automatically deleted.' => 'Wenn ein Feedback fÃŒr lÃ€nger als angegeben als Spam markiert war, wird es automatisch gelÃ¶scht.',
@@ -1752,5 +1753,5 @@
 	'Create [_1]' => '[_1] anlegen',
 	'Edit [_1]' => '[_1] bearbeiten',
-	'A saved version of this [_1] was auto-saved [_3]. <a href="[_2]">Recover auto-saved content</a>' => 'Eine Version dieses [_1] wurde automatisch gespeichert [_3]. <a href="[_2]">Automatisch gespeicherten Inhalt wiederherstellen</a>.',
+	'A saved version of this [_1] was auto-saved [_3]. <a href="[_2]">Recover auto-saved content</a>' => '[_1] automatisch gespeichert [_3]. <a href="[_2]">Automatisch gespeicherte Version wiederherstellen</a>.',
 	'Your [_1] has been saved.' => '[_1] gespeichert.',
 	'One or more errors occurred when sending update pings or TrackBacks.' => 'Es sind ein oder mehrere Fehler beim Senden von TrackBacks aufgetreten.',
@@ -1763,20 +1764,20 @@
 	'You have successfully deleted the checked comment(s).' => 'Der bzw. die markierten Kommentare wurden erfolgreich gelÃ¶scht.',
 	'You have successfully deleted the checked TrackBack(s).' => 'TrackBack(s) gelÃ¶scht.',
-	'[_1] Summary' => '[_1]-Zusammenfassung',
-	'Created [_1] by [_2].' => '[_1] von [_2] angelegt.',
-	'Last edited [_1] by [_2].' => 'Von [_2] zuletzt bearbeiteter [_1].',
-	'Published [_1].' => '[_1] verÃ¶ffentlicht.',
-	'This [_1] has received <a href="[_4]">[quant,_2,comment,comments]</a> and <a href="[_5]">[quant,_3,trackback,trackbacks]</a>.' => 'Diese(r) [_1] hat <a href="[_4]">[quant,_2,Kommentar,Kommentare]</a> und <a
-	href="[_5]">[quant,_3,TrackBack,TrackBacks]</a>.',
+	'[_1] Summary' => 'Zusammenfassung',
+	'Created [_1] by [_2].' => 'Angelegt von [_2] [_1]',
+	'Last edited [_1] by [_2].' => 'Zuletzt bearbeitet von [_2] [_1]',
+	'Published [_1].' => 'VerÃ¶ffentlicht [_1]',
+	'This [_1] has received <a href="[_4]">[quant,_2,comment,comments]</a> and <a href="[_5]">[quant,_3,trackback,trackbacks]</a>.' => 'Bisher <a href="[_4]">[quant,_2,Kommentar,Kommentare]</a> und <a
+	href="[_5]">[quant,_3,TrackBack,TrackBacks]</a>',
 	'Display Options' => 'Anzeigeoptionen',
 	'Fields' => 'Felder',
 	'Title' => 'Titel',
-	'Body' => 'TextkÃ¶rper',
-	'Excerpt' => 'Zusammenfassung',
-	'Keywords' => 'SchlÃŒsselwÃ¶rter',
-	'Publishing' => 'VerÃ¶ffentlichen',
-	'Top' => 'Anfang',
+	'Body' => 'Text',
+	'Excerpt' => 'Zusammen- fassung',
+	'Keywords' => 'SchlÃŒssel- wÃ¶rter',
+	'Publishing' => 'VerÃ¶ffentlichung',
+	'Top' => 'Oben',
 	'Both' => 'Sowohl als auch',
-	'Bottom' => 'Ende',
+	'Bottom' => 'Unten',
 	'Reset display options' => 'Anzeigeoptionen zurÃŒcksetzen',
 	'Reset display options to blog defaults' => 'Anzeigeoptionen auf Standardeinstellungen zurÃŒcksetzen',
@@ -1789,6 +1790,6 @@
 	'You have unsaved changes to your [_1] that will be lost.' => 'Es liegen nicht gespeicherte Ãnderungen vor, die verloren gehen werden.',
 	'Publish On' => 'VerÃ¶ffentlichen um',
-	'Publish Date' => 'Zeitpunkt der VerÃ¶ffentlichung',
-	'Make primary' => 'PrimÃ€r machen',
+	'Publish Date' => 'VerÃ¶ffent- lichungs- zeitpunkt',
+	'Make primary' => 'Als Hauptkategorie',
 	'Add sub category' => 'Unterkategorie hinzufÃŒgen',
 	'Add [_1] name' => '[_1]-Name hinzufÃŒgen',
@@ -1797,12 +1798,12 @@
 	'Preview this [_1] (v)' => 'Vorschau auf [_1]',
 	'Delete this [_1] (v)' => '[_1] lÃ¶schen (v)',
-	'Share this [_1]' => '[_1] teilen',
+	'Share this [_1]' => 'Benachrichtigung versenden',
 	'_external_link_target' => '_new',
-	'View published [_1]' => 'VerÃ¶ffentlichten [_1] ansehen',
+	'View published [_1]' => '[_1] ansehen',
 	'&laquo; Previous' => '&laquo; Vorheriger',
 	'Manage [_1]' => '[_1] verwalten',
 	'Next &raquo;' => 'NÃ€chster &raquo;',
-	'Extended' => 'Erweitert',
-	'Format:' => 'Format:',
+	'Extended' => 'Erweiterter Text',
+	'Format:' => 'Formatierung:',
 	'Decrease Text Size' => 'TextgrÃ¶Ãe verkleinern',
 	'Increase Text Size' => 'TextgrÃ¶Ãe vergrÃ¶Ãern',
@@ -1833,8 +1834,8 @@
 	'(delimited by \'[_1]\')' => '(Trennung durch \'[_1]\')',
 	'Change [_1]' => '[_1] Ã€ndern',
-	'Add [_1]' => '[_1] einfÃŒgen',
+	'Add [_1]' => '[_1] wÃ€hlen',
 	'Status' => 'Status',
 	'You must configure blog before you can publish this [_1].' => 'Vor dem VerÃ¶ffentlichen mÃŒssen Sie das Blog konfigurieren.',
-	'Scheduled' => 'Zeitgeplant',
+	'Scheduled' => 'Zu bestimmtem Zeitpunkt',
 	'Select entry date' => 'Eintragsdatum wÃ€hlen',
 	'Unlock this entry&rsquo;s output filename for editing' => 'Dateinamen manuell bearbeiten',
@@ -1842,10 +1843,10 @@
 	'Warning: Changing this entry\'s basename may break inbound links.' => 'Warnung: Wenn Sie den Basename nachtrÃ€glich Ã€ndern, kÃ¶nnen externe Links zu diesem Eintrag ungÃŒltig werden.',
 	'Accept' => 'Annehmen',
-	'Outbound TrackBack URLs' => 'TrackBack-URLs',
+	'Outbound TrackBack URLs' => 'TrackBack- URLs',
 	'View Previously Sent TrackBacks' => 'TrackBacks anzeigen',
-	'<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 fÃŒr [_2]</a> - Ziehen Sie diesen Link in die Lesezeichenleiste Ihres Browsers und klicken Sie darauf, wenn Sie sich auf einer Website befinden, ÃŒber die Sie bloggen mÃ¶chten.',
+	'[_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.' => '[_1]QuickPost fÃŒr [_2]</a> - Ziehen Sie diesen Link in die Lesezeichenleiste Ihres Browsers und klicken Sie darauf, wenn Sie sich auf einer Website befinden, ÃŒber die Sie bloggen mÃ¶chten.',
 	'Auto-saving...' => 'Autospeichern...',
 	'Last auto-save at [_1]:[_2]:[_3]' => 'Zuletzt automatisch gespeichert um [_1]:[_2]:[_3]',
-	'None selected' => 'Keine ausgewÃ€hlt',
+	'None selected' => 'Keine',
 
 ## tmpl/cms/system_check.tmpl
@@ -1855,12 +1856,12 @@
 	'Active Users' => 'Aktive Benutzer',
 	'Users who have logged in within 90 days are considered <strong>active</strong> in Movable Type license agreement.' => 'Benutzer, die sich innerhalb der letzten 90 Tage eingeloggt haben, gelten nach den Movable Type-Lizenzbedingungen als <strong>aktiv</strong>.',
-	'Movable Type could not find the script named \'mt-check.cgi\'. To resolve this issue, please ensure that the mt-check.cgi script exists and/or the CheckScript configuration parameter references it properly.' => 'Movable Type konnte die Datei \'mt-check.cgi\' nicht finden. Stellen Sie sicher, daÃ die Datei vorhanden ist und MTCheckScript die richtigen Pfadangaben enthÃ€lt.', # Translate - New # OK
+	'Movable Type could not find the script named \'mt-check.cgi\'. To resolve this issue, please ensure that the mt-check.cgi script exists and/or the CheckScript configuration parameter references it properly.' => 'Movable Type konnte die Datei \'mt-check.cgi\' nicht finden. Stellen Sie sicher, daÃ die Datei vorhanden ist und MTCheckScript die richtigen Pfadangaben enthÃ€lt.',
 
 ## tmpl/cms/import.tmpl
-	'You must select a blog to import.' => 'WÃ€hlen Sie ein zu importierendes Blog.',
-	'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.' => 'Mit der Import/Export-Funktionen kÃ¶nnen EintrÃ€ge aus anderen Movable Type-Installationen oder aus anderen Weblog-Systemen ÃŒbernommen und bestehende EintrÃ€ge in einem Austauschformat gesichert werden.',
-	'Blog to Import' => 'Zu importierendes Blog',
-	'Select a blog to import.' => 'WÃ€hlen Sie das zu importierende Blog',
-	'Select blog' => 'Weblog wÃ€hlen',
+	'You must select a blog to import.' => 'WÃ€hlen Sie, in welches Blog importiert werden soll',
+	'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.' => 'Mit der Import/Export-Funktionen kÃ¶nnen EintrÃ€ge aus anderen Movable Type-Installationen oder aus anderen Weblog-Systemen ÃŒbernommen werden. Bestehende EintrÃ€ge kÃ¶nnen in einem Austauschformat gesichert werden.',
+	'Blog to Import' => 'Importziel',
+	'Select a blog to import.' => 'WÃ€hlen Sie, in welches Blog importiert werden soll',
+	'Select blog' => 'Blog wÃ€hlen',
 	'Importing from' => 'Importieren aus',
 	'Ownership of imported entries' => 'Besitzer importierter EintrÃ€ge',
@@ -1884,5 +1885,5 @@
 
 ## tmpl/cms/cfg_system_feedback.tmpl
-	'System: Feedback Settings' => 'Systemweite Feedback-Einstellungen',
+	'System: Feedback Settings' => 'System: Feedback-Einstellungen',
 	'Your feedback preferences have been saved.' => 'Ihre Feedback-Einstellungen wurden gespeichert.',
 	'Feedback: Master Switch' => 'Feedback-Hauptschalter',
@@ -1890,13 +1891,13 @@
 	'Disable comments for all blogs' => 'Kommentare fÃŒr alle Blogs deaktivieren',
 	'Disable TrackBacks for all blogs' => 'TrackBacks fÃŒr alle Blogs deaktivieren',
-	'Outbound Notifications' => 'Ausgehende Benachrichtigungen',
-	'Notification pings' => 'Benachrichtigungs-Pings',
+	'Outbound Notifications' => 'Benachrichtigungen',
+	'Notification pings' => 'Benachrichtigungs- Pings',
 	'This feature allows you to disable sending notification pings when a new entry is created.' => 'Mit dieser Funktion kÃ¶nnen Sie die automatische Versendung von Benachrichtigungs-Pings bei VerÃ¶ffentlichung eines neuen Eintrags unterbinden.',
-	'Disable notification pings for all blogs' => 'Benachrichtigungs-Pings fÃŒr alle Blogs deaktivieren',
-	'Outbound TrackBacks' => 'Ausgehende TrackBacks',
-	'Limit outbound TrackBacks and TrackBack auto-discovery for the purposes of keeping your installation private.' => 'SchrÃ€nken Sie ausgehende TrackBacks und TrackBack Auto-Discovery auf bestimmte Sites ein, um diese Movable Type-Installation nichtÃ¶ffentlich zu halten.',
+	'Disable notification pings for all blogs' => 'Versendung von Benachrichtigungs-Pings fÃŒr alle Blogs deaktivieren',
+	'Outbound TrackBacks' => 'TrackBack-Versand',
+	'Limit outbound TrackBacks and TrackBack auto-discovery for the purposes of keeping your installation private.' => 'SchrÃ€nken Sie den Versand von TrackBacks und TrackBack Auto-Discovery auf bestimmte Sites ein, um diese Movable Type-Installation nichtÃ¶ffentlich zu halten.',
 	'Allow to any site' => 'Zu allen Sites',
 	'Disabled' => 'Deaktiviert',
-	'(No outbound TrackBacks)' => '(Keine ausgehenden TrackBacks)',
+	'(No outbound TrackBacks)' => '(Kein TrackBack-Versand)',
 	'Only allow to blogs on this installation' => 'Nur zu Blogs dieser Installation',
 	'Only allow the sites on the following domains:' => 'Nur zu Sites auf folgenden Domains:',
@@ -1932,7 +1933,7 @@
 	'Custom Index Template' => 'Individuelle Indexvorlage',
 	'Output File' => 'Ausgabedatei',
-	'Publish Options' => 'VerÃ¶ffentlichungsoptionen',
+	'Publish Options' => 'VerÃ¶ffentlichungs- optionen',
 	'Enable dynamic publishing for this template' => 'Vorlage dynamisch verÃ¶ffentlichen',
-	'Publish this template automatically when rebuilding index templates' => 'Diese Vorlage bei NeuverÃ¶ffentlichung von Indexvorlagen automatisch verÃ¶ffentlichen',
+	'Publish this template automatically when rebuilding index templates' => 'Diese Vorlage bei Neuaufbau von Indexvorlagen automatisch verÃ¶ffentlichen',
 	'Link to File' => 'Mit Datei verlinken',
 	'Create New Archive Mapping' => 'Neue ArchivverknÃŒpfung einrichten',
@@ -1954,5 +1955,5 @@
 	'Update the status of this comment' => 'Kommentarstatus aktualisieren',
 	'Approved' => 'Freigeschaltet',
-	'Unapproved' => 'Noch nicht freigeschaltet',
+	'Unapproved' => 'Nicht freigeschaltet',
 	'Reported as Spam' => 'Als Spam gemeldet',
 	'View all comments with this status' => 'Alle Kommentare mit diesem Status anzeigen',
@@ -1961,5 +1962,5 @@
 	'Test' => 'Test',
 	'Score' => 'Bewertung',
-	'Results' => 'Ergebnis',
+	'Results' => 'Treffer',
 	'The name of the person who posted the comment' => 'Name des Kommentarautors',
 	'Trusted' => 'vertraut',
@@ -1979,7 +1980,7 @@
 	'URL of commenter' => 'URL des Kommentarautors',
 	'View all comments with this URL' => 'Alle Kommentare mit dieser URL anzeigen',
-	'Entry this comment was made on' => 'Eintrag zu diesem Kommentar',
-	'Entry no longer exists' => 'Eintrag nicht mehr vorhanden',
-	'View all comments on this entry' => 'Alle Kommentare zu diesem Eintrag anzeigen',
+	'[_1] this comment was made on' => '[_1] zum Kommentar', # Translate - New # OK
+	'[_1] no longer exists' => '[_1] existiert nicht mehr', # Translate - New
+	'View all comments on this [_1]' => 'Alle Kommentare zu diesem Eintrag oder dieser Seite', # Translate - New # OK
 	'Date' => 'Datum',
 	'Date this comment was made' => 'Datum, an dem dieser Kommentar abgegeben wurde',
@@ -2010,6 +2011,6 @@
 
 ## tmpl/cms/cfg_registration.tmpl
-	'Registration Settings' => 'Registrierungseinstellungen',
-	'Your blog preferences have been saved.' => 'Ihre Voreinstellungen wurden gespeichert.',
+	'Registration Settings' => 'Registrierungs-Einstellungen',
+	'Your blog preferences have been saved.' => 'Einstellungen ÃŒbernommen.',
 	'User Registration' => 'Benutzerregistrierung',
 	'Allow registration for Movable Type.' => 'Registrierungen bei Movable Type erlauben',
@@ -2017,7 +2018,7 @@
 	'Note: Registration is currently disabled at the system level.' => 'Hinweis: Registrierung derzeit systemweit deaktiviert.',
 	'Allow Registration' => 'Registrierung erlauben',
-	'Authentication Methods' => 'Authentifizierungsmethoden',
+	'Authentication Methods' => 'Authentifizierungs- methoden',
 	'Note: You have selected to accept comments from authenticated commenters only but authentication is not enabled. In order to receive authenticated comments, you must enable authentication.' => 'Hinweis: Sie mÃ¶chten Kommentare nur von authentifizierten Kommentarautoren zulassen. Allerdings haben Sie die Authentifizierung nicht aktiviert.',
-	'Native' => 'Nativ',
+	'Native' => 'nativ',
 	'Require E-mail Address for Comments via TypeKey' => 'E-Mail-Adresse fÃŒr Kommentare via TypeKey erfordern',
 	'If enabled, visitors must allow their TypeKey account to share e-mail address when commenting.' => 'Falls aktiviert, mÃŒssen Leser, die sich zum Kommentieren mit TypeKey anmelden, von TypeKey ihre E-Mail-Adresse ÃŒbermitteln lassen. ',
@@ -2063,5 +2064,5 @@
 	'Upload New File' => 'Neue Datei hochladen',
 	'Upload New Image' => 'Neues Bild hochladen',
-	'Reset' => 'ZurÃŒcksetzen',
+	'Reset' => 'zurÃŒcksetzen',
 	'Asset Name' => 'Assetname',
 	'Size' => 'GrÃ¶Ãe',
@@ -2094,5 +2095,5 @@
 
 ## tmpl/cms/dialog/entry_notify.tmpl
-	'Send a Notification' => 'Benachrichtigung verschicken',
+	'Send a Notification' => 'Benachrichtigung versenden',
 	'You must specify at least one recipient.' => 'Bitte geben Sie mindestens einen EmpfÃ€nger an.',
 	'Your blog\'s name, this entry\'s title and a link to view it will be sent in the notification.  Additionally, you can add a  message, include an excerpt of the entry and/or send the entire entry.' => 'Benachrichtigungen enthalten den Names Ihres Blogs, den Namen des Eintrags und einen Link zum Eintrag. ZusÃ€tzlich kÃ¶nnen Sie eine persÃ¶nliche Nachricht eingeben und  den Text des Eintrags oder einen Auszug daraus anhÃ€ngen.',
@@ -2169,5 +2170,5 @@
 	'Your Web services password is currently' => 'Ihr Passwort fÃŒr Webdienste lautet derzeit',
 	'_WARNING_PASSWORD_RESET_SINGLE' => 'Sie sind dabei, das Passwort von [_1] zurÃŒckzusetzen. Dazu wird ein zufÃ€llig erzeugtes neues Passwort per E-Mail an [_2] verschickt werden.\n\nForsetzen?',
-	'This profile has been updated.' => 'Profil aktualisiert.',
+	'This profile has been updated.' => 'Profil aktualisiert',
 	'A new password has been generated and sent to the email address [_1].' => 'Ein neues Passwort wurde erzeugt und an [_1] verschickt.',
 	'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 hat wÃ€hrend der Synchronisation versucht, Ihr Benutzerkonto zu deaktivieren. Das deutet auf einen Fehler in der externen Benutzerverwaltung hin. ÃberprÃŒfen Sie daher die dortigen Einstellungen, bevor Sie Ihre Arbeit in Movable Type forsetzen.',
@@ -2188,5 +2189,5 @@
 	'This word or phrase will be required to recover a forgotten password.' => 'Dieser Ausdruck wird abgefragt, wenn das Passwort vergessen und daher ein neues Passwort angefordert wurde.',
 	'Preferred language of this user.' => 'Bevorzugte Sprache des Benutzers',
-	'Text Format' => 'Textformat',
+	'Text Format' => 'Textformatierung',
 	'Preferred text format option.' => 'Bevorzugte Formatierungsoption',
 	'(Use Blog Default)' => '(Standard verwenden)',
@@ -2198,7 +2199,7 @@
 	'For use by Activity feeds and with XML-RPC and Atom-enabled clients.' => 'Erforderlich fÃŒr AktivitÃ€tsfeeds und fÃŒr externe Software, die ÃŒber XML-RPC oder ATOM-API auf das Weblog zugreift',
 	'Reveal' => 'Anzeigen',
-	'System Permissions' => 'Zugriffsrechte',
+	'System Permissions' => 'Berechtigungen',
 	'Options' => 'Optionen',
-	'Create personal blog for user' => 'PersÃ¶nliches Blog anlegen fÃŒr Benutzer',
+	'Create personal blog for user' => 'PersÃ¶nliches Blog fÃŒr den Benutzer anlegen',
 	'Create [_1] (s)' => '[_1] anlegen (s)',
 	'_USAGE_PASSWORD_RESET' => 'Hier kÃ¶nnen Sie das Passwort dieses Benutzers zurÃŒcksetzen. Dazu wird ein zufÃ€lliges neues Passwort erzeugt und an <strong>[_1]</strong> verschickt werden.',
@@ -2229,5 +2230,5 @@
 
 ## tmpl/cms/login.tmpl
-	'Your Movable Type session has ended.' => 'Ihre Movable Type-Sitzung ist abgelaufen.',
+	'Your Movable Type session has ended.' => 'Ihre Movable Type-Sitzung ist abgelaufen oder Sie haben sich abgemeldet.',
 	'Your Movable Type session has ended. If you wish to sign in again, you can do so below.' => 'Ihre Movable Type-Sitzung ist abgelaufen. Unten kÃ¶nnen Sie sich erneut anmelden.',
 	'Your Movable Type session has ended. Please sign in again to continue this action.' => 'Ihre Movable Type-Sitzung ist abgelaufen. Bitte melden Sie sich erneut an, um den Vorgang fortzusetzen.',
@@ -2236,11 +2237,11 @@
 ## tmpl/cms/cfg_archives.tmpl
 	'Error: Movable Type was not able to create a directory for publishing your blog. If you create this directory yourself, assign sufficient permissions that allow Movable Type to create files within it.' => 'Fehler: Movable Type konnte kein Verzeichnis zur VerÃ¶ffentlichung Ihres Blogs anlegen. Wenn Sie das Verzeichnis manuell angelegt haben, stellen Sie bitte sicher, daÃ der Webserver Schreibrechte fÃŒr das Verzeichnis hat.',
-	'Your blog\'s archive configuration has been saved.' => 'Archivkonfiguration gespeichert.',
+	'Your blog\'s archive configuration has been saved.' => 'Einstellungen ÃŒbernommen',
 	'You have successfully added a new archive-template association.' => 'Sie haben erfolgreich eine neue VerknÃŒpfung zwischen Archiven und Vorlagen hinzugefÃŒgt.',
 	'You may need to update your \'Master Archive Index\' template to account for your new archive configuration.' => 'Eventuell mÃŒssen Sie Ihre Vorlage fÃŒr das Archiv-Index aktualisieren, um die neue Archiv-Konfiguration zu ÃŒbernehmen.',
-	'The selected archive-template associations have been deleted.' => 'Die ausgewÃ€hlten VerknÃŒpfungen zwischen Archiven und Vorlagen wurden gelÃ¶scht.',
-	'You must set your Local Site Path.' => 'Sie mÃŒssen den Pfad Ihres lokalen Verzeichnis festlegen.',
-	'You must set a valid Site URL.' => 'Bitte geben Sie eine gÃŒltige Adresse (URL) an.',
-	'You must set a valid Local Site Path.' => 'Bitte geben Sie ein gÃŒltiges lokales Verzeichnis an.',
+	'The selected archive-template associations have been deleted.' => 'Die gewÃ€hlten VerknÃŒpfungen zwischen Archiven und Vorlagen wurden gelÃ¶scht.',
+	'You must set your Local Site Path.' => 'Bitte wÃ€hlen Sie ein Wurzelverzeichnis',
+	'You must set a valid Site URL.' => 'Bitte geben Sie eine gÃŒltige Adresse (URL) an',
+	'You must set a valid Local Site Path.' => 'Bitte geben Sie ein gÃŒltiges lokales Verzeichnis an',
 	'Publishing Paths' => 'System-Pfade',
 	'Site URL' => 'Webadresse (URL)',
@@ -2261,7 +2262,7 @@
 	'Publishing Options' => 'VerÃ¶ffentlichungsoptionen',
 	'Preferred Archive Type' => 'Bevorzugter Archivtyp',
-	'Used for creating links to an archived entry (permalink). Select from the archive types used in this blogs archive templates.' => 'Zur Erzeugung von Links zu archivierten EintrÃ€gen (Permalinks). WÃ€hlen Sie aus den in den Archivvorlagen dieses Blogs aufgefÃŒhrten Archivarten.',
+	'Used for creating links to an archived entry (permalink). Select from the archive types used in this blogs archive templates.' => 'Bestimmt, mit welcher Art Archivseite Permalinks verlinkt werden. Welche Archivarten zur VerfÃŒgung stehen, hÃ€ngt von den verwendeten Vorlagen ab.',
 	'No archives are active' => 'Archive nicht aktiviert',
-	'Publishing Method' => 'VerÃ¶ffentlichungsmethode',
+	'Publishing Method' => 'VerÃ¶ffentlichungs- methode',
 	'Publish all templates statically' => 'Alle Vorlagen statisch verÃ¶ffentlichen',
 	'Publish only Archive Templates dynamically' => 'Nur Archivvorlagen dynamisch verÃ¶ffentlichen',
@@ -2281,5 +2282,5 @@
 
 ## tmpl/cms/cfg_system_users.tmpl
-	'System: User Settings' => 'Systemweite Benutzereinstellungen',
+	'System: User Settings' => 'System: Benutzereinstellungen',
 	'Your settings have been saved.' => 'Die Einstellungen wurden gespeichert.',
 	'(No blog selected)' => '(Kein Blog gewÃ€hlt)',
@@ -2288,8 +2289,8 @@
 	'(None selected)' => '(Kein Blog gewÃ€hlt)',
 	'Select a system administrator you wish to notify when commenters successfully registered themselves.' => 'Bestimmen Sie, welcher Systemadministrator benachrichtigt werden soll, wenn ein Kommentarautor sich erfolgreich selbst registriert hat.',
-	'Allow commenters to register to Movable Type' => 'Kommentarautoren bei Movable Type registrieren lassen',
+	'Allow commenters to register to Movable Type' => 'Falls aktiv, kÃ¶nnen sich Benutzer bei dieser Movable Type-Installation als Kommentarautor selbst registrieren',
 	'Notify the following administrators upon registration:' => 'Bei Registrierungen folgende Administratoren benachrichtigen:',
 	'Select Administrators' => 'Administratoren wÃ€hlen',
-	'Clear' => 'ZurÃŒcksetzen',
+	'Clear' => 'zurÃŒcksetzen',
 	'Note: System Email Address is not set. Emails will not be sent.' => 'Hinweis: System-E-Mail-Adresse nicht konfiguriert. E-Mails kÃ¶nnen daher nicht verschickt werden.',
 	'New User Defaults' => 'Voreinstellungen fÃŒr neue Benutzer',
@@ -2299,8 +2300,8 @@
 	'Personal blog clone source' => 'Klonvorlage fÃŒr persÃ¶nliche Blogs',
 	'Select a blog you wish to use as the source for new personal blogs. The new blog will be identical to the source except for the name, publishing paths and permissions.' => 'WÃ€hlen Sie, welches Blog Vorlage fÃŒr persÃ¶nliche Blogs sein soll. Neue Blogs sind mit den Ausnahmen Name, Pfade und Berechtigungen mit der Vorlage identisch.',
-	'Change blog' => 'Blog wechseln',
-	'Default Site URL' => 'Standard-Siteadresse (URL)',
+	'Change blog' => 'Anderes Blog wÃ€hlen',
+	'Default Site URL' => 'Standard- Webadresse (URL)',
 	'Define the default site URL for new blogs. This URL will be appended with a unique identifier for the blog.' => 'WÃ€hlen Sie die Standard-URL fÃŒr neue Weblogs. Dieser URL wird ein individueller Bezeichner fÃŒr jedes Weblog angehÃ€ngt.',
-	'Default Site Root' => 'Standard-Wurzelverzeichnis',
+	'Default Site Root' => 'Standard- Wurzelverzeichnis',
 	'Define the default site root for new blogs. This path will be appended with a unique identifier for the blog.' => 'WÃ€hlen Sie das Standard-Wurzelverzeichnis fÃŒr neue Weblogs. Dem Pfad wird ein individueller Bezeichner fÃŒr jedes Weblog angehÃ€ngt.',
 	'Default User Language' => 'Standard-Sprache',
@@ -2339,11 +2340,11 @@
 	'UTC-10 (Aleutians-Hawaii Time)' => 'UTC-10 (Aleuten-Hawaii-Zeit)',
 	'UTC-11 (Nome Time)' => 'UTC-11 (Alaska, Nome-Zeit)',
-	'Default Tag Delimiter' => 'Standard-Tag-Trennzeichen',
+	'Default Tag Delimiter' => 'Standard- Tag-Trennzeichen',
 	'Define the default delimiter for entering tags.' => 'WÃ€hlen Sie das Standard-Trennzeichen fÃŒr die Eingabe von Tags',
 
 ## tmpl/cms/cfg_prefs.tmpl
 	'Your preferences have been saved.' => 'Die Einstellungen wurden gespeichert.',
-	'You must set your Blog Name.' => 'Sie haben keinen Blognamen gewÃ€hlt',
-	'You did not select a timezone.' => 'Sie haben keine Zeitzone ausgewÃ€hlt.',
+	'You must set your Blog Name.' => 'Bitte geben Sie einen Blognamen an',
+	'You did not select a timezone.' => 'Bitte wÃ€hlen Sie einen Zeitzone',
 	'Name your blog. The blog name can be changed at any time.' => 'Geben Sie Ihrem Blog einen Namen. Der Name kann jederzeit geÃ€ndert werden.',
 	'Enter a description for your blog.' => 'Geben Sie eine Beschreibung Ihres Blogs ein.',
@@ -2354,5 +2355,5 @@
 	'Remove license' => 'Lizenz entfernen',
 	'Your blog does not have an explicit Creative Commons license.' => 'FÃŒr dieses Blog liegt keine Creative Commons-Lizenz vor.',
-	'Select a license' => 'Lizenz wÃ€hlen',
+	'Select a license' => 'Creative Commons-Lizenz wÃ€hlen',
 
 ## tmpl/cms/error.tmpl
@@ -2361,5 +2362,5 @@
 	'Permissions for [_1]' => 'Berechtigungen fÃŒr [_1]',
 	'Group Associations for [_1]' => 'Gruppenzuweisungen fÃŒr [_1]',
-	'Permissions: System-wide' => 'Systemweite Zugriffsrechte',
+	'Permissions: System-wide' => 'System: Berechtigungen',
 	'Users &amp; Groups for [_1]' => 'Benutzer und Gruppen fÃŒr [_1]',
 	'Users for [_1]' => 'Benutzer fÃŒr [_1]',
@@ -2367,10 +2368,10 @@
 	'permissions' => 'Berechtigungen',
 	'Remove selected assocations (x)' => 'GewÃ€hlte Zuweisungen lÃ¶schen',
-	'Revoke Permission' => 'Zugriffsrecht enziehen',
+	'Revoke Permission' => 'Berechtigung entziehen',
 	'The user <em>[_1]</em> is currently disabled.' => 'Das Benutzerkonto von <em>[_1]</em> ist derzeit deaktiviert.',
 	'The group <em>[_1]</em> is currently disabled.' => 'Die Gruppe <em>[_1]</em> ist derzeit deaktiviert.',
-	'You have successfully revoked the given permission(s).' => 'Zugriffsrechte erfolgreich entzogen.',
-	'You have successfully granted the given permission(s).' => 'Zugriffsrechte erfolgreich vergeben.',
-	'Grant Permission' => 'Zugriffsrechte vergeben',
+	'You have successfully revoked the given permission(s).' => 'Berechtigungen erfolgreich entzogen',
+	'You have successfully granted the given permission(s).' => 'Berechtigungen erfolgreich vergeben',
+	'Grant Permission' => 'Berechtigungen vergeben',
 	'You can not create associations for disabled users.' => 'Deaktivierte Benutzerkonten kÃ¶nnen nicht zugewiesen werden.',
 	'Add [_1] to a blog' => '[_1] zu Blog hinzufÃŒgen',
@@ -2379,8 +2380,8 @@
 	'Assign Role to User' => 'Rolle an Benutzer zuweisen',
 	'Add a group to this blog' => 'Diesem Blog Gruppe hinzufÃŒgen',
-	'Grant permission to a group' => 'Zugriffsrecht an Gruppe vergeben',
-	'Grant permission to a user' => 'Zugriffsrecht an Benutzer vergeben',
+	'Grant permission to a group' => 'Berechtigung an Gruppe vergeben',
+	'Grant permission to a user' => 'Berechtigung an Benutzer vergeben',
 	'User/Group' => 'Benutzer/Gruppe',
-	'Created On' => 'Angelegt am/um',
+	'Created On' => 'Angelegt',
 
 ## tmpl/cms/list_comment.tmpl
@@ -2395,5 +2396,5 @@
 	'[_1] on entries created within the last [_2] days' => '[_1] zu EintrÃ€gen, die in den letzten [_2] Tagen angelegt wurden',
 	'[_1] on entries created more than [_2] days ago' => '[_1] zu EintrÃ€gen, die vor mehr als [_2] Tagen angelegt wurden',
-	'[_1] where [_2] [_3]' => '[_1] bei denen [_2] [_3]',
+	'[_1] where [_2] [_3]' => '[_1] mit [_2] [_3]',
 	'Publish selected [_1] (a)' => 'GewÃ€hlte [_1] verÃ¶ffentlichen',
 	'Are you sure you want to remove all comments reported as spam?' => 'Wirklich alle als Spam gemeldeten Kommentare lÃ¶schen?',
@@ -2401,9 +2402,9 @@
 ## tmpl/cms/rebuilding.tmpl
 	'Publishing...' => 'VerÃ¶ffentliche...',
-	'Publishing [_1]...' => 'VerÃ¶ffentliche [_1] ...',
-	'Publishing [_1] [_2]...' => 'VerÃ¶ffentliche [_1]-[_2]',
-	'Publishing [_1] dynamic links...' => 'VerÃ¶ffentliche [_1] dynamische Links',
-	'Publishing [_1] archives...' => 'VerÃ¶ffentliche [_1]-Archive',
-	'Publishing [_1] templates...' => 'VerÃ¶ffentliche [_1]-Vorlagen',
+	'Publishing [_1]...' => 'VerÃ¶ffentliche [_1]...',
+	'Publishing [_1] [_2]...' => 'VerÃ¶ffentliche [_1] [_2]',
+	'Publishing [_1] dynamic links...' => 'VerÃ¶ffentliche [_1] (dynamisch)',
+	'Publishing [_1] archives...' => 'VerÃ¶ffentliche [_1]...',
+	'Publishing [_1] templates...' => 'VerÃ¶ffentliche [_1]...',
 
 ## tmpl/cms/include/template_table.tmpl
@@ -2424,5 +2425,5 @@
 
 ## tmpl/cms/include/footer.tmpl
-	'Dashboard' => 'Dashboard',
+	'Dashboard' => 'Ãbersichtsseite',
 	'Compose Entry' => 'Eintrag schreiben',
 	'System Settings' => 'Systemeinstellungen',
@@ -2450,7 +2451,7 @@
 
 ## tmpl/cms/include/anonymous_comment.tmpl
-	'Anonymous Comments' => 'Anonyme Kommentare',
-	'Require E-mail Address for Anonymous Comments' => 'E-Mail-Adresse von anonymen Kommentarautoren verlangen',
-	'If enabled, visitors must provide a valid e-mail address when commenting.' => 'Wenn diese Option aktiv ist, mÃŒssen Kommentarautoren eine gÃŒltige Email-Adresse angeben.',
+	'Anonymous Comments' => 'Kommentarabgabe ohne Registrierung zulassen',
+	'Require E-mail Address for Anonymous Comments' => 'E-Mail-Adresse von nicht registrierten Kommentarautoren verlangen',
+	'If enabled, visitors must provide a valid e-mail address when commenting.' => 'Wenn diese Option aktiv ist, mÃŒssen Kommentarautoren eine gÃŒltige E-Mail-Adresse angeben.',
 
 ## tmpl/cms/include/header.tmpl
@@ -2460,5 +2461,5 @@
 	'Create a new blog' => 'Neues Blog anlegen',
 	'Write Entry' => 'Eintrag schreiben',
-	'Blog Dashboard' => 'Blog-Dashboard',
+	'Blog Dashboard' => 'Ãbersichtsseite',
 	'View Site' => 'Ansehen',
 	'Search (q)' => 'Suche (q)',
@@ -2515,12 +2516,12 @@
 	'Compact' => 'Kompakt',
 	'Expanded' => 'Erweitert',
-	'Action Bar' => 'MenÃŒleiste',
-	'Date Format' => 'Datumsformat',
-	'Relative' => 'Relativ (z.B. "Vor 20 Minuten")',
+	'Action Bar' => 'MenÃŒ- leiste',
+	'Date Format' => 'Zeit- angaben',
+	'Relative' => 'Relativ',
 	'Full' => 'Absolut',
 
 ## tmpl/cms/include/cfg_content_nav.tmpl
 	'Registration' => 'Registrierung',
-	'Web Services' => 'Web-Dienste',
+	'Web Services' => 'Webdienste',
 
 ## tmpl/cms/include/blog_table.tmpl
@@ -2575,6 +2576,5 @@
 
 ## tmpl/cms/include/backup_start.tmpl
-	'Tools: Backup' => 'Tools: Sicherung',
-	'Backing up Movable Type' => 'Eine Sicherungskopie von Movable Type erstellen',
+	'Backing up Movable Type' => 'Erstelle Sicherung',
 
 ## tmpl/cms/include/commenter_table.tmpl
@@ -2602,6 +2602,6 @@
 ## tmpl/cms/include/log_table.tmpl
 	'No log records could be found.' => 'Keine ProtokolleintrÃ€ge gefunden',
-	'Log Message' => 'Protokolleintrag',
-	'_LOG_TABLE_BY' => 'Nach',
+	'Log Message' => 'Eintrag',
+	'_LOG_TABLE_BY' => 'Von',
 	'IP: [_1]' => 'IP: [_1]',
 	'[_1]' => '[_1]',
@@ -2618,5 +2618,5 @@
 
 ## tmpl/cms/list_blog.tmpl
-	'You have successfully deleted the blogs from the Movable Type system.' => 'Die Weblogs wurden erfolgreich aus dem System gelÃ¶scht.',
+	'You have successfully deleted the blogs from the Movable Type system.' => 'Blog(s) erfolgreich gelÃ¶scht',
 	'Create Blog' => 'Blog anlegen',
 	'Delete selected blogs (x)' => 'GewÃ€hlte Blogs lÃ¶schen (x)',
@@ -2636,6 +2636,6 @@
 
 ## tmpl/cms/list_author.tmpl
-	'Users: System-wide' => 'Systemweite Benutzerkonten',
-	'_USAGE_AUTHORS_LDAP' => 'Eine Liste aller Benutzerkonten dieser Movable Type-Installation. Durch Anklicken eines Namens kÃ¶nnen Sie die Zugriffsrechte des jeweiligen Benutzers festlegen. Um ein Benutzerkonto zu sperren, wÃ€hlen Sie das KontrollkÃ€stchen neben dem entsprechenden Namen an und klicken Sie auf DEAKTIVIEREN. Der jeweilige Benutzer kann sich dann nicht mehr an Movable Type anmelden.',
+	'Users: System-wide' => 'System: Benutzerkonten',
+	'_USAGE_AUTHORS_LDAP' => 'Eine Liste aller Benutzerkonten dieser Movable Type-Installation. Durch Anklicken eines Namens kÃ¶nnen Sie die Berechtigungen des jeweiligen Benutzers festlegen. Um ein Benutzerkonto zu sperren, wÃ€hlen Sie das KontrollkÃ€stchen neben dem entsprechenden Namen an und klicken Sie auf DEAKTIVIEREN. Der jeweilige Benutzer kann sich dann nicht mehr an Movable Type anmelden.',
 	'You have successfully disabled the selected user(s).' => 'GewÃ€hlte Benutzerkonten erfolgreich deaktiviert',
 	'You have successfully enabled the selected user(s).' => 'GewÃ€hlte Benutzerkonten erfolgreich aktiviert',
@@ -2647,13 +2647,13 @@
 	'Enable selected users (e)' => 'GewÃ€hlte Benutzerkonten aktivieren (e)',
 	'_USER_ENABLE' => 'Aktivieren',
-	'_NO_SUPERUSER_DISABLE' => 'Sie sind Verwalter dieser Movable Type-Installation. Sie kÃ¶nnen daher nicht Ihr eigenes Benutzerkonto deaktivieren.',
+	'_NO_SUPERUSER_DISABLE' => 'Sie kÃ¶nnen Ihr eigenes Benutzerkonto nicht deaktivieren, da Sie Verwalter dieser Movable Type-Installation sind.',
 	'Disable selected users (d)' => 'GewÃ€hlte Benutzerkonten deaktivieren (d)',
 	'_USER_DISABLE' => 'Deaktivieren',
-	'Showing All Users' => 'Zeige alle Benutzer', # Translate - New # OK
+	'Showing All Users' => 'Zeige alle Benutzer',
 
 ## tmpl/cms/popup/rebuilt.tmpl
 	'Success' => 'Erfolg',
 	'All of your files have been published.' => 'Alle Dateien verÃ¶ffentlicht.',
-	'Your [_1] archives have been published.' => '[_1]-Archive verÃ¶ffentlicht',
+	'Your [_1] archives have been published.' => '[_1] verÃ¶ffentlicht',
 	'Your [_1] templates have been published.' => '[_1]-Vorlagen verÃ¶ffentlicht',
 	'View your site.' => 'Site ansehen',
@@ -2663,5 +2663,5 @@
 
 ## tmpl/cms/popup/rebuild_confirm.tmpl
-	'Publish [_1]' => 'VerÃ¶ffentliche [_1]', # Translate - New # OK
+	'Publish [_1]' => 'VerÃ¶ffentliche [_1]',
 	'Publish <em>[_1]</em>' => '<em>[_1]</em> verÃ¶ffentlichen',
 	'_REBUILD_PUBLISH' => 'VerÃ¶ffentlichen',
@@ -2669,5 +2669,5 @@
 	'Index Template: [_1]' => 'Index-Vorlagen: [_1]',
 	'Only Indexes' => 'Nur Indizes',
-	'Only [_1] Archives' => 'Nur [_1]-Archive',
+	'Only [_1] Archives' => 'Nur Archive: [_1]',
 	'Publish (s)' => 'VerÃ¶ffentlichen (s)',
 
@@ -2680,10 +2680,10 @@
 	'Your [_1] has been deleted from the database.' => '[_1] aus Datenbank gelÃ¶scht.',
 	'Go back' => 'ZurÃŒck',
-	'tag (exact match)' => 'Tag (genauer Treffer)',
-	'tag (fuzzy match)' => 'Tag (unscharfer Treffer)',
+	'tag (exact match)' => 'Tag (genau)',
+	'tag (fuzzy match)' => 'Tag (unscharf)',
 	'published' => 'verÃ¶ffentlicht',
 	'unpublished' => 'nicht verÃ¶ffentlicht',
 	'scheduled' => 'zeitgeplant',
-	'Select A User:' => 'Benutzerkonto auswÃ€hlen: ',
+	'Select A User:' => 'Benutzerkonto wÃ€hlen... ',
 	'User Search...' => 'Benutzer suchen...',
 	'Recent Users...' => 'Letzte Benutzer...',
@@ -2700,5 +2700,5 @@
 
 ## tmpl/cms/view_log.tmpl
-	'The activity log has been reset.' => 'Das AktivitÃ€tsprotokoll wurde zurÃŒckgesetzt.',
+	'The activity log has been reset.' => 'AktivitÃ€tsprotokoll zurÃŒckgesetzt',
 	'All times are displayed in GMT[_1].' => 'Alle Zeiten in GMT[_1]',
 	'All times are displayed in GMT.' => 'Alle Zeiten in GMT',
@@ -2712,7 +2712,7 @@
 	'Are you sure you want to reset the activity log?' => 'AktivitÃ€tsprotokoll wirklich zurÃŒcksetzen?',
 	'Showing all log records' => 'Alle EintrÃ€ge',
-	'Showing log records where' => 'EintrÃ€ge bei denen',
-	'Show log records where' => 'Zeige EintrÃ€ge bei denen',
-	'level' => 'Level',
+	'Showing log records where' => 'EintrÃ€ge mit',
+	'Show log records where' => 'Zeige EintrÃ€ge mit',
+	'level' => 'Art',
 	'classification' => 'Thema',
 	'Security' => 'Sicherheit',
@@ -2726,10 +2726,10 @@
 
 ## tmpl/cms/list_tag.tmpl
-	'Your tag changes and additions have been made.' => 'Tag-Ãnderungen ÃŒbernommen.',
-	'You have successfully deleted the selected tags.' => 'Markierte Tags erfolgreich gelÃ¶scht.',
+	'Your tag changes and additions have been made.' => 'Tag-Ãnderungen ÃŒbernommen',
+	'You have successfully deleted the selected tags.' => 'Markierte Tags erfolgreich gelÃ¶scht',
 	'tag' => 'Tag',
 	'tags' => 'Tags',
-	'Specify new name of the tag.' => 'Geben Sie den neuen Tagnamen an.',
-	'Tag Name' => 'Tagname',
+	'Specify new name of the tag.' => 'Geben Sie den neuen Tagnamen an',
+	'Tag Name' => 'Name des Tags',
 	'Click to edit tag name' => 'Klicken, um Tagname zu bearbeiten',
 	'Rename [_1]' => '[_1] umbenennen',
@@ -2750,8 +2750,8 @@
 
 ## tmpl/cms/list_category.tmpl
-	'Your [_1] changes and additions have been made.' => '[_1]-Ãnderungen erfolgreich durchgefÃŒhrt.',
-	'You have successfully deleted the selected [_1].' => 'GewÃ€hlte [_1] erfolgreich gelÃ¶scht.',
-	'Create new top level [_1]' => 'Neue Haupt-[_1] anlegen',
-	'New Parent [_1]' => 'Neue Mutter-[_1]',
+	'Your [_1] changes and additions have been made.' => 'Ãnderungen ÃŒbernommen.',
+	'You have successfully deleted the selected [_1].' => 'Ãnderungen ÃŒbernommen.',
+	'Create new top level [_1]' => 'Neue Haupt[_1] anlegen',
+	'New Parent [_1]' => 'Neue Mutter[_1]',
 	'Top Level' => 'Hauptebene',
 	'Collapse' => 'Einklappen',
@@ -2762,13 +2762,13 @@
 
 ## tmpl/cms/setup_initial_blog.tmpl
-	'Create Your First Blog' => 'Legen Sie Ihr erstes Blog an',
+	'Create Your First Blog' => 'Das erste Blog anlegen',
 	'The blog name is required.' => 'Blog-Name erforderlich.',
 	'The blog URL is required.' => 'Blog-URL erforderlich.',
 	'The publishing path is required.' => 'Pfadangabe erforderlich.',
 	'The timezone is required.' => 'Zeitzone erforderlich.',
-	'In order to properly publish your blog, you must provide Movable Type with your blog\'s URL and the path on the filesystem where its files should be published.' => 'Damit Ihr Blog ordnungsgemÃ€Ãg verÃ¶ffentlicht werden kann, geben Sie bitte die Webadresse (URL) und den Dateisystempfad an, in denen Movable Type die erforderlich Dateien ablegen soll.',
+	'In order to properly publish your blog, you must provide Movable Type with your blog\'s URL and the path on the filesystem where its files should be published.' => 'Damit Ihr Blog verÃ¶ffentlicht werden kann, geben Sie bitte die Webadresse (URL), unter der der Blog erscheinen soll, und den Pfad im Dateisystem, unter dem Movable Type die Dateien dieses Blog ablegen soll, an.',
 	'My First Blog' => 'Mein erstes Blog',
 	'Publishing Path' => 'VerÃ¶ffentlichungspfad',
-	'Your \'Publishing Path\' is the path on your web server\'s file system where Movable Type will publish all the files for your blog. Your web server must have write access to this directory.' => 'Der VerÃ¶ffentlichungspfad ist der Pfad auf Ihrem Webserver, in dem Movable Type die fÃŒr Ihren Blog erforderlichen Dateien ablegt.',
+	'Your \'Publishing Path\' is the path on your web server\'s file system where Movable Type will publish all the files for your blog. Your web server must have write access to this directory.' => 'Der VerÃ¶ffentlichungspfad ist der Pfad auf Ihrem Webserver, in dem Movable Type die Dateien dieses Blogs ablegt.',
 	'Finish install (s)' => 'Installation abschlieÃen (s)',
 	'Finish install' => 'Installation abschlieÃen',
@@ -2800,5 +2800,5 @@
 	'Note: TrackBacks are currently disabled at the system level.' => 'Hinweis: TrackBacks sind derzeit im Gesamtsystem deaktiviert.',
 	'Accept TrackBacks' => 'TrackBacks zulassen',
-	'If enabled, TrackBacks will be accepted from any source.' => 'Legt fest, ob TrackBacks von allen Quellen zugelassen sind',
+	'If enabled, TrackBacks will be accepted from any source.' => 'Falls aktiviert, werden TrackBacks akzeptiert',
 	'TrackBack Policy' => 'TrackBack-Regeln',
 	'Moderation' => 'Moderation',
@@ -2810,5 +2810,5 @@
 	'Specify when Movable Type should notify you of new TrackBacks if at all.' => 'Legt fest, ob und wann Sie bei neuen TrackBacks benachrichtigt werden',
 	'On' => 'Immer',
-	'Only when attention is required' => 'Nur wenn ich etwas machen muss',
+	'Only when attention is required' => 'Nur wenn eine Entscheidung erforderlich ist',
 	'Off' => 'Nie',
 	'TrackBack Options' => 'TrackBack-Optionen',
@@ -2836,7 +2836,8 @@
 	'Search for other TrackBacks with this status' => 'Weitere TrackBacks mit diesem Status suchen',
 	'Target Entry' => 'Zieleintrag',
+	'Entry no longer exists' => 'Eintrag nicht mehr vorhanden',
 	'No title' => 'Kein Name',
 	'View all TrackBacks on this entry' => 'Alle TrackBacks bei diesem Eintrag anzeigen',
-	'Target Category' => 'Zielkategorie', # Translate - New # OK
+	'Target Category' => 'Zielkategorie',
 	'Category no longer exists' => 'Kategorie nicht mehr vorhanden',
 	'View all TrackBacks on this category' => 'Alle TrackBacks in dieser Kategorie anzeigen',
@@ -2847,22 +2848,22 @@
 
 ## tmpl/cms/cfg_plugin.tmpl
-	'System Plugin Settings' => 'Systemweite Plugin-Einstellungen', # Translate - New # OK
+	'System Plugin Settings' => 'System: Plugin-Einstellungen',
 	'http://www.sixapart.com/pronet/plugins/' => 'http://www.sixapart.com/pronet/plugins/',
 	'Find Plugins' => 'Weitere Plugins',
-	'Plugin System' => 'Plugin-System', # Translate - New # OK
-	'Manually enable or disable plugin-system functionality. Re-enabling plugin-system functionality, will return all plugins to their original state.' => 'Das Plugin-System kann manuell aktiviert oder deaktiviert werden. Reaktivierung der Plugin-Funktion setzt alle Plugins in ihren Ausgangszustand zurÃŒck.', # Translate - New # OK
-	'Disable plugin functionality' => 'Plugin-Funktion deaktivieren', # Translate - New # OK
+	'Plugin System' => 'Plugin-System',
+	'Manually enable or disable plugin-system functionality. Re-enabling plugin-system functionality, will return all plugins to their original state.' => 'Das Plugin-System kann manuell aktiviert oder deaktiviert werden. Reaktivierung der Plugin-Funktion setzt alle Plugins in ihren Ausgangszustand zurÃŒck.',
+	'Disable plugin functionality' => 'Plugin-Funktion deaktivieren',
 	'Disable Plugins' => 'Plugins deaktivieren',
-	'Enable plugin functionality' => 'Plugin-Funktion aktivieren', # Translate - New # OK
+	'Enable plugin functionality' => 'Plugin-Funktion aktivieren',
 	'Enable Plugins' => 'Plugins aktivieren',
-	'Your plugin settings have been saved.' => 'Ihre Plugins-Einstellungen wurden gespeichert.',
-	'Your plugin settings have been reset.' => 'Ihre Plugin-Einstellungen wurden zurÃŒckgesetzt.',
-	'Your plugins have been reconfigured. Since you\'re running mod_perl, you will need to restart your web server for these changes to take effect.' => 'Ihre Plugins wurden neu konfiguriert. Da Sie mod_perl verwenden, mÃŒssen Sie Ihren Webserver neu starten, damit die Ãnderungen wirksam werden.',
-	'Your plugins have been reconfigured.' => 'Ihre Plugins wurden neu konfiguriert.',
+	'Your plugin settings have been saved.' => 'Plugin-Einstellungen ÃŒbernommen',
+	'Your plugin settings have been reset.' => 'Plugin-Einstellungen zurÃŒckgesetzt',
+	'Your plugins have been reconfigured. Since you\'re running mod_perl, you will need to restart your web server for these changes to take effect.' => 'Einstellungen ÃŒbernommen. Da Sie mod_perl verwenden, mÃŒssen Sie Ihren Webserver neu starten, damit die Ãnderungen wirksam werden.',
+	'Your plugins have been reconfigured.' => 'Einstellungen ÃŒbernommen',
 	'Are you sure you want to reset the settings for this plugin?' => 'Wollen Sie die Plugin-Einstellungen wirklich zurÃŒcksezten?',
-	'Are you sure you want to disable plugin functionality?' => 'Plugin-Funktion wirklich deaktivieren?', # Translate - New # OK
-	'Disable this plugin?' => 'Dieses Plugin deaktivieren?',
-	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that have were not individually disabled.)' => 'Plugin-Funktion wirklich aktivieren? (Plugins, die nicht individuell deaktiviert wurden, werden dabei wieder aktiviert.)', # Translate - New # OK
-	'Enable this plugin?' => 'Dieses Plugin aktivieren?',
+	'Are you sure you want to disable plugin functionality?' => 'Plugin-Funktion wirklich deaktivieren?',
+	'Disable this plugin?' => 'Plugin deaktivieren?',
+	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that were not individually disabled.)' => 'Plugin-Funktion wirklich aktivieren? (Reaktiviert alle Plugins, die nicht separat deaktiviert worden sind.)', # Translate - New # OK
+	'Enable this plugin?' => 'Plugin aktivieren?',
 	'Failed to Load' => 'Fehler beim Laden',
 	'(Disable)' => '(Deaktivieren)',
@@ -2873,29 +2874,29 @@
 	'Plugin error:' => 'Plugin-Fehler:',
 	'Info' => 'Info',
-	'Resources' => 'Resourcen',
+	'Resources' => 'Ressourcen',
 	'Run [_1]' => '[_1] ausfÃŒhren',
 	'Documentation for [_1]' => 'Dokumentation zu [_1]',
 	'Documentation' => 'Dokumentation',
 	'More about [_1]' => 'Mehr ÃŒber [_1]',
-	'Plugin Home' => 'Plugin-Hauptseite',
+	'Plugin Home' => 'Plugin-Website',
 	'Author of [_1]' => 'Autor von [_1]',
 	'Tags:' => 'Tags:',
 	'Tag Attributes:' => 'Tag-Attribute:',
-	'Text Filters' => 'Text-Filter',
-	'Junk Filters:' => 'Junk-Filter',
-	'Reset to Defaults' => 'Standardwerte setzen',
-	'No plugins with blog-level configuration settings are installed.' => 'Es sind keine Plugins installiert, die Einstellungen auf Blogebene erfordern.', # Translate - New # OK
+	'Text Filters' => 'Textfilter',
+	'Junk Filters:' => 'Junkfilter',
+	'Reset to Defaults' => 'Voreinstellungen',
+	'No plugins with blog-level configuration settings are installed.' => 'Es sind keine Plugins installiert, die Einstellungen auf Blogebene erfordern.',
 	'No plugins with configuration settings are installed.' => 'Es sind keine Plugins installiert, die Einstellungen erfordern.',
 
 ## tmpl/cms/edit_folder.tmpl
 	'Edit Folder' => 'Ordner bearbeiten',
-	'Your folder changes have been made.' => 'Die Ãnderungen wurden gespeichert.',
+	'Your folder changes have been made.' => 'Ãnderungen gespeichert',
 	'You must specify a label for the folder.' => 'Sie mÃŒssen diesem Ordner eine Bezeichnung geben',
 	'Label' => 'Bezeichnung',
 
 ## tmpl/cms/backup.tmpl
-	'What to backup' => 'Was sichern?',
+	'What to backup' => 'Umfang der Sicherung',
 	'This option will backup Users, Roles, Associations, Blogs, Entries, Categories, Templates and Tags.' => 'Hier kÃ¶nnen Sie eine Sicherungskopie Ihrer Blogs erstellen. Sicherungen umfassen Benutzerkonten, Rollen, VerknÃŒpfungen, Blogs, EintrÃ€ge, Kategoriedefinitionen, Vorlagen und Tags.',
-	'Everything' => 'Alles',
+	'Everything' => 'Mit allen Blogs',
 	'Choose blogs...' => 'Blogs wÃ€hlen...',
 	'Archive Format' => 'Archivformat',
@@ -2904,7 +2905,7 @@
 	'zip' => 'ZIP',
 	'Don\'t compress' => 'Nicht komprimieren',
-	'Target File Size' => 'ZielgrÃ¶Ãe',
+	'Target File Size' => 'GewÃŒnschte DateigrÃ¶Ãe ',
 	'Approximate file size per backup file.' => 'UngefÃ€hre GrÃ¶Ãe pro Backupdatei (MB)',
-	'Don\'t Divide' => 'Nicht aufteilen',
+	'Don\'t Divide' => 'Sicherungsdatei nicht aufteilen',
 	'Make Backup (b)' => 'Sicherung erstellen (b)',
 	'Make Backup' => 'Sicherung erstellen',
@@ -2913,5 +2914,5 @@
 	'Web Services Settings' => 'Webdienste-Einstellungen',
 	'Six Apart Services' => 'Six Apart-Dienste',
-	'Your TypeKey token is used to access Six Apart services like its free Authentication service.' => 'Ihr TypeKey-Token ermÃ¶glicht Ihnen Zugriff auf von Six Apart angebotene Dienste. Dazu gehÃ¶ren der kostenlose Authentifierzungsdienst TypeKey.',
+	'Your TypeKey token is used to access Six Apart services like its free Authentication service.' => 'Ihr TypeKey-Token ermÃ¶glicht Ihnen Zugriff auf von Six Apart angebotene Webdienste. Dazu gehÃ¶ren der kostenlose Authentifierzungsdienst TypeKey.',
 	'TypeKey is enabled.' => 'TypeKey wird verwendet.',
 	'TypeKey token:' => 'TypeKey-Token:',
@@ -2928,5 +2929,5 @@
 	'Others:' => 'Andere:',
 	'(Separate URLs with a carriage return.)' => '(Pro Zeile eine URL)',
-	'Recently Updated Key' => '"KÃŒrzlich aktualisiert"-SchlÃŒssel',
+	'Recently Updated Key' => '"KÃŒrzlich aktualisiert"- SchlÃŒssel',
 	'If you have received a recently updated key (by virtue of your purchase), enter it here.' => 'Wenn Sie einen "KÃŒrzlich aktualisiert"-SchlÃŒssel erhalten haben, tragen Sie ihn hier ein.',
 
@@ -2941,5 +2942,5 @@
 	'Unlock this category&rsquo;s output filename for editing' => 'Dateinamen manuell bearbeiten',
 	'Warning: Changing this category\'s basename may break inbound links.' => 'Achtung: Ãnderungen des Basenames kÃ¶nnen bestehende externe Links auf diese Kategorieseite ungÃŒltig machen',
-	'Inbound TrackBacks' => 'TrackBacks (inbound)',
+	'Inbound TrackBacks' => 'TrackBack-Empfang',
 	'Accept Trackbacks' => 'TrackBacks zulassen',
 	'If enabled, TrackBacks will be accepted for this category from any source.' => 'Wenn die Option aktiv ist, sind Kategorie-TrackBacks aus allen Quellen zugelassen',
@@ -2962,13 +2963,13 @@
 
 ## tmpl/cms/cfg_system_general.tmpl
-	'System: General Settings' => 'Systemweite Grundeinstellungen',
-	'System Email' => 'System-E-Mail-Adresse',
-	'The email address used in the From: header of each email sent from the system.  The address is used in password recovery, commenter registration, comment, trackback notification, entry notification and a few other minor events.' => 'Die E-Mail-Adresse, die als Absenderadresse der vom System verschickten E-Mails verwendet werden soll. E-Mails werden vom System verschickt bei Passwortanforderungen, Registrierungen von Kommentarautoren, fÃŒr Benachrichtigungen ÃŒber neue Kommentare, TrackBacks und EintrÃ€ge und in einigen weiteren FÃ€llen.',
+	'System: General Settings' => 'System: Grundeinstellungen',
+	'System Email' => 'System- E-Mail-Adresse',
+	'The email address used in the From: header of each email sent from the system.  The address is used in password recovery, commenter registration, comment, trackback notification, entry notification and a few other minor events.' => 'Geben Sie die E-Mail-Adresse an, die als Absenderadresse der vom System verschickten E-Mails verwendet werden soll. E-Mails werden vom System verschickt bei Passwortanforderungen, Registrierungen von Kommentarautoren, fÃŒr Benachrichtigungen ÃŒber neue Kommentare, TrackBacks und EintrÃ€ge und einigen weiteren FÃ€llen.',
 
 ## tmpl/cms/dashboard.tmpl
 	'Select a Widget...' => 'Widget wÃ€hlen...',
-	'Your Dashboard has been updated.' => 'Dashboard aktualisiert.',
-	'You have attempted to use a feature that you do not have permission to access. If you believe you are seeing this message in error contact your system administrator.' => 'Sie haben fÃŒr die gewÃŒnschte Funktion keine Zugriffsrechte. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.',
-	'Your dashboard is empty!' => 'Ihr Dashboard ist leer!',
+	'Your Dashboard has been updated.' => 'Ãbersichtsseite aktualisiert.',
+	'You have attempted to use a feature that you do not have permission to access. If you believe you are seeing this message in error contact your system administrator.' => 'Sie haben fÃŒr die gewÃŒnschte Funktion keine Berechtigung. Bei Fragen wenden Sie sich bitte an Ihren Systemadministrator.',
+	'Your dashboard is empty!' => 'Ihre Ãbersichtsseite ist leer!',
 
 ## tmpl/cms/cfg_comments.tmpl
@@ -2977,12 +2978,12 @@
 	'Comment authentication is not available because one of the needed modules, MIME::Base64 or LWP::UserAgent is not installed. Talk to your host about getting this module installed.' => 'Kommentarauthentifizierung ist derzeit nicht mÃ¶glich, da ein erforderliches Modul nicht installiert ist (MIME::Base64 oder LWP::UserAgent). Bitte wenden Sie sich an Ihren Administrator.',
 	'Accept Comments' => 'Kommentare zulassen',
-	'If enabled, comments will be accepted.' => 'Falls aktiviert, werden Kommentare zugelassen.',
-	'Commenting Policy' => 'Kommentierungs-Regeln',
+	'If enabled, comments will be accepted.' => 'Falls aktiviert, werden Kommentare zugelassen',
+	'Commenting Policy' => 'Kommentierungsregeln',
 	'Immediately approve comments from' => 'Kommentare automatisch freischalten von',
 	'Specify what should happen to comments after submission. Unapproved comments are held for moderation.' => 'Geben Sie an, was mit neuen Kommentaren geschehen soll. UngeprÃŒfte Kommentare werden zur Moderierung zurÃŒckgehalten.',
-	'No one' => 'Niemand',
-	'Trusted commenters only' => 'Nur von vertrauten Kommentarautoren',
-	'Any authenticated commenters' => 'Von allen authentifizierten Kommentarautoren',
-	'Anyone' => 'Jeder',
+	'No one' => 'niemandem',
+	'Trusted commenters only' => 'von vertrauten Kommentarautoren',
+	'Any authenticated commenters' => 'von allen authentifizierten Kommentarautoren',
+	'Anyone' => 'jedem',
 	'Allow HTML' => 'HTML zulassen',
 	'If enabled, users will be able to enter a limited set of HTML in their comments. If not, all HTML will be stripped out.' => 'Wenn die Option aktiv ist, darf HTML in Kommentaren verwendet werden. Andernfalls wird HTML aus Kommentaren automatisch herausgefiltert.',
@@ -2996,5 +2997,5 @@
 	'Specify when Movable Type should notify you of new comments if at all.' => 'Legt fest, ob und wann Movable Type Email-Benachrichtigungen ÃŒber neue Kommentare versendet.',
 	'Comment Display Options' => 'Anzeigeoptionen',
-	'Comment Order' => 'Kommentar-Reihenfolge',
+	'Comment Order' => 'Kommentar- reihenfolge',
 	'Select whether you want visitor comments displayed in ascending (oldest at top) or descending (newest at top) order.' => 'WÃ€hlen Sie aus, ob Kommentare von Besuchern in aufsteigender (Ã€ltester zuerst) oder absteigender (neuester zuerst) Reihenfolge angezeigt werden sollen.',
 	'Ascending' => 'Aufsteigend',
@@ -3007,10 +3008,10 @@
 	'No CAPTCHA provider available' => 'Keine CAPTCHA-Quelle verfÃŒgbar',
 	'No CAPTCHA provider is available in this system.  Please check to see if Image::Magick is installed, and CaptchaImageSourceBase directive points to captcha-source directory under mt-static/images.' => 'Keine CAPTCHA-Quelle verfÃŒgbar. Bitte ÃŒberprÃŒfen Sie, ob Image::Magick installiert ist und die CaptchaImageSourceBase-Direktive auf das Captcha-Quellverzeichnis im Ordner mt-static/images verweist.',
-	'Use Comment Confirmation Page' => 'KommentarbestÃ€tigungs-Seite verwenden',
-	'Use comment confirmation page' => 'KommentarbestÃ€tigungsseite',
+	'Use Comment Confirmation Page' => 'Bei Abgabe von Kommentaren BestÃ€tigungsseite anzeigen',
+	'Use comment confirmation page' => 'Bei Abgabe von Kommentaren BestÃ€tigungsseite anzeigen',
 
 ## tmpl/cms/edit_blog.tmpl
 	'Your blog configuration has been saved.' => 'Ihre Blog-Konfiguration wurde gespeichert.',
-	'You must set your Site URL.' => 'Sie mÃŒssen Ihre Webadresse (URL) festlegen.',
+	'You must set your Site URL.' => 'Bitte wÃ€hlen Sie einen Webadresse (URL)',
 	'Your Site URL is not valid.' => 'Die gewÃ€hlte Webadresse (URL) ist ungÃŒltig.',
 	'You can not have spaces in your Site URL.' => 'Die Adresse (URL) darf keine Leerzeichen enthalten.',
@@ -3057,10 +3058,10 @@
 
 ## tmpl/cms/cfg_entry.tmpl
-	'Entry Settings' => 'Eintrags-Einstellungen',
+	'Entry Settings' => 'Eintragsanezeige',
 	'Display Settings' => 'Anzeige-Einstellungen',
-	'Entry Listing Default' => 'Reihenfolgen-Einstellungen',
+	'Entry Listing Default' => 'Anzahl',
 	'Select the number of days of entries or the exact number of entries you would like displayed on your blog.' => 'Geben Sie entweder die grÃ¶Ãte Zahl EintrÃ€ge an, die auf der Startseite hÃ¶chstens angezeigt werden sollen, oder die grÃ¶Ãte Zahl Tage, aus denen dort EintrÃ€ge erscheinen sollen.',
 	'Days' => 'Tage',
-	'Entry Order' => 'Eintragsreihenfolge',
+	'Entry Order' => 'Rreihenfolge',
 	'Select whether you want your entries displayed in ascending (oldest at top) or descending (newest at top) order.' => 'Geben Sie an, ob EintrÃ€ge in chronologischer (Ã€lteste zuerst) oder umgekehrt chronologischer Reihenfolge (neueste zuerst) angezeigt werden sollen.',
 	'Excerpt Length' => 'AuszugslÃ€nge',
@@ -3086,5 +3087,5 @@
 	'Suomi' => 'Finnisch',
 	'Swedish' => 'Schwedisch',
-	'Basename Length' => 'Basename-LÃ€nge',
+	'Basename Length' => 'BasenamelÃ€nge',
 	'Specifies the default length of an auto-generated basename. The range for this setting is 15 to 250.' => 'Setzt den Wert fÃŒr den automatisch generierten Basename des Eintrags. MÃ¶gliche LÃ€nge: 15 bis 250.',
 	'New Entry Defaults' => 'Standardwerte',
@@ -3097,11 +3098,11 @@
 	'Replace Word Chars' => 'Word-Zeichen ersetzen',
 	'Smart Replace' => 'Smart Replace',
-	'Replace UTF-8 characters frequently used by word processors with their more common web equivalents.' => 'Von Textverarbeitungen erzeugte UTF-8-Sonderzeichen durch gebrÃ€uchlichere Ãquivalente ersetzen.',
-	'No substitution' => 'Kein Ersetzung',
+	'Replace UTF-8 characters frequently used by word processors with their more common web equivalents.' => 'Mit dieser Option kÃ¶nnen von Textverarbeitungen erzeugte UTF-8-Sonderzeichen automatisch durch gebrÃ€uchlichere Ãquivalente ersetzt werden.',
+	'No substitution' => 'Keine Zeichen ersetzen',
 	'Character entities (&amp#8221;, &amp#8220;, etc.)' => 'EntitÃ€ten (&amp#8221;, &amp#8220; usw.)',
-	'ASCII equivalents (&quot;, \', ..., -, --)' => 'ASCII-Ãquivalente (&quot;, \', ..., -, --)',
+	'ASCII equivalents (&quot;, \', ..., -, --)' => 'ASCII-Ãquivalente  (&quot;, \', ..., -, --)',
 	'Replace Fields' => 'Felder ersetzen',
 	'Extended entry' => 'Erweiterter Eintrag',
-	'Default Editor Fields' => 'Standard-Editorfelder',
+	'Default Editor Fields' => 'Standard-Eingabefelder',
 	'Editor Fields' => 'Eingabefelder',
 	'_USAGE_ENTRYPREFS' => 'WÃ€hlen Sie aus, welche Formularfelder in der Eingabemaske angezeigt werden sollen.',
@@ -3118,9 +3119,9 @@
 	'Regex Match' => 'RegulÃ€re AusdrÃŒcke verwenden',
 	'Limited Fields' => 'Felder eingrenzen',
-	'Date Range' => 'Zeitspanne',
-	'Reported as Spam?' => 'Als Spam melden?',
-	'Search Fields:' => 'Felder durchsuchen:',
+	'Date Range' => 'Zeitraum eingrenzen',
+	'Reported as Spam?' => 'Als Spam gemeldet?',
+	'Search Fields:' => 'Felder eingrenzen:',
 	'Extended Entry' => 'Erweiterter Eintrag',
-	'E-mail Address' => 'Email-Addresse',
+	'E-mail Address' => 'E-Mail-Addresse',
 	'Source URL' => 'Quell-URL',
 	'Page Body' => 'SeitenkÃ¶rper',
@@ -3129,10 +3130,10 @@
 	'Output Filename' => 'Ausgabe-Dateiname',
 	'Linked Filename' => 'Verlinkter Dateiname',
-	'_DATE_FROM' => 'Von', # Translate - New # OK
-	'_DATE_TO' => 'Bis', # Translate - New # OK
+	'_DATE_FROM' => 'Von',
+	'_DATE_TO' => 'Bis',
 	'Successfully replaced [quant,_1,record,records].' => '[quant,_1,Element,Elemente] erfolgreich ersetzt.',
 	'Showing first [_1] results.' => 'Zeige die ersten [_1] Treffer.',
 	'Show all matches' => 'Zeige alle Treffer',
-	'[quant,_1,result,results] found' => '[quant,_1,Ergebnis,Ergebnisse] gefunden',
+	'[quant,_1,result,results] found' => '[quant,_1,Treffer,Treffer] gefunden',
 	'No entries were found that match the given criteria.' => 'Keine den Kritierien entsprechenden EintrÃ€ge gefunden.',
 	'No comments were found that match the given criteria.' => 'Keine den Kritierien entsprechenden Kommentare gefunden.',
@@ -3156,6 +3157,6 @@
 	'Error retrieving recent entries.' => 'Fehler beim Einlesen der aktuellen EintrÃ€ge.',
 	'Loading recent entries...' => 'Lade aktuelle EintrÃ€ge...',
-	'Jan.' => 'Jan.',
-	'Feb.' => 'Feb.',
+	'Jan.' => 'Januar',
+	'Feb.' => 'Februar',
 	'March' => 'MÃ€rz',
 	'April' => 'April',
@@ -3163,9 +3164,9 @@
 	'June' => 'Juni',
 	'July.' => 'Juli',
-	'Aug.' => 'Aug.',
-	'Sept.' => 'Sep.',
-	'Oct.' => 'Okt.',
-	'Nov.' => 'Nov.',
-	'Dec.' => 'Dez.',
+	'Aug.' => 'August',
+	'Sept.' => 'September',
+	'Oct.' => 'Oktober',
+	'Nov.' => 'November',
+	'Dec.' => 'Dezember',
 	'Movable Type was unable to locate your \'mt-static\' directory. Please configure the \'StaticFilePath\' configuration setting in your mt-config.cgi file, and create a writable \'support\' directory underneath your \'mt-static\' directory.' => 'Movable Type konnte Ihr \'mt-static\'-Verzeichnis nicht finden. Bitte ÃŒberprÃŒfen Sie die \'StaticFilePath\'-Direktive in der Konfigurationsdatei mt-config.cgi und legen Sie ein vom Webserver beschreibbares Verzeichnis \'support\' im \'mt-static\'-Verzeichnis an.',
 	'Movable Type was unable to write to its \'support\' directory. Please create a directory at this location: [_1], and assign permissions that will allow the web server write access to it.' => 'Movable Type kann auf den Ordner \'support\' nicht schreibend zugreifen. Legen Sie hier: [_1] ein solches Verzeichnis an und stellen Sie sicher, daÃ der Webserver Schreibrechte fÃŒr diesen Ordner besitzt.',
@@ -3202,5 +3203,5 @@
 ## tmpl/cms/widget/custom_message.tmpl
 	'This is you' => 'Das sind Sie',
-	'Welcome to [_1].' => 'Willkommen bei [_1].',
+	'Welcome to [_1].' => 'Willkommen zu [_1].',
 	'You can manage your blog by selecting an option from the menu located to the left of this message.' => 'Sie kÃ¶nnen Ihr Blog von dem links befindlichen MenÃŒ aus verwalten.',
 	'If you need assistance, try:' => 'Falls Sie Hilfe benÃ¶tigen, stehen folgende MÃ¶glichkeiten zur VerfÃŒgung:',
@@ -3267,5 +3268,5 @@
 	'Movable Type requires that you enable JavaScript in your browser. Please enable it and refresh this page to proceed.' => 'Movable Type erfordert JavaScript. Bitte aktivieren Sie es in Ihren Browsereinstellungen und laden diese Seite dann neu.',
 	'This wizard will help you configure the basic settings needed to run Movable Type.' => 'Dieser Konfigurationshelfer hilft Ihnen, die zum Betrieb von Movable Type erforderlichen Grundeinstellungen vorzunehmen.',
-	'<strong>Error: \'[_1]\' could not be found.</strong>  Please move your static files to the directory first or correct the setting if it is incorrect.' => '<strong>Fehler: \'[_1]\' konnte nicht gefunden werden.</strong> Bitte kopieren Sie erst die statischen Dateien in den Ordner oder ÃŒberprÃŒfen Sie, falls das bereits geschehen ist, die Einstellungen.', # Translate - New # OK
+	'<strong>Error: \'[_1]\' could not be found.</strong>  Please move your static files to the directory first or correct the setting if it is incorrect.' => '<strong>Fehler: \'[_1]\' konnte nicht gefunden werden.</strong> Bitte kopieren Sie erst die statischen Dateien in den Ordner oder ÃŒberprÃŒfen Sie, falls das bereits geschehen ist, die Einstellungen.',
 	'Configure Static Web Path' => 'Statischen Web-Pfad konfigurieren',
 	'Movable Type ships with directory named [_1] which contains a number of important files such as images, javascript files and stylesheets.' => 'Movable Type wird mit einem Verzeichnis namens [_1] ausgeliefert, das einige wichtige Bild-, JavaScript- und Stylesheet-Dateien enthÃ€lt.',
@@ -3283,11 +3284,11 @@
 	'You must set your Username.' => 'Geben Sie Ihren Benutzernamen an.',
 	'You must set your Database Server.' => 'Geben Sie Ihren Datenbankserver an.',
-	'Your database configuration is complete.' => 'Ihre Datenbank-Konfiguration ist abgeschlossen.',
+	'Your database configuration is complete.' => 'Ihre Datenbankkonfiguration ist abgeschlossen.',
 	'You may proceed to the next step.' => 'Sie kÃ¶nnen mit dem nÃ€chsten Schritt fortfahren.',
-	'Please enter the parameters necessary for connecting to your database.' => 'Bitte geben Sie die Paramter fÃŒr Ihre Datenbankverbindung ein.',
-	'Show Current Settings' => 'Derzeitige Einstellungen anzeigen',
+	'Please enter the parameters necessary for connecting to your database.' => 'Bitte geben Sie zur Herstellung der Datenkbankverbindung notwendigen Daten ein.',
+	'Show Current Settings' => 'Einstellungen anzeigen',
 	'Database Type' => 'Datenbanktyp',
 	'Select One...' => 'AuswÃ€hlen...',
-	'If your database type is not listed in the menu above, then you need to <a target="help" href="[_1]">install the Perl module necessary to connect to your database</a>.  If this is the case, please check your installation and <a href="javascript:void(0)" onclick="[_2]">re-test your installation</a>.' => 'Erscheint Ihr Datenbanktyp nicht in obigem MenÃŒ, <a target="help" href="[_1]">installieren Sie bitte die fÃŒr Ihren Datenbanktyp notwendigen Perl-Module</a>. Sollte das bereits geschehen sein, ÃŒberprÃŒfen Sie die Installation und <a href="#" onclick="[_2]">fÃŒhren den Systemtest erneut aus</a>.',
+	'If your database type is not listed in the menu above, then you need to <a target="help" href="[_1]">install the Perl module necessary to connect to your database</a>.  If this is the case, please check your installation and <a href="javascript:void(0)" onclick="[_2]">re-test your installation</a>.' => 'Erscheint Ihr Datenbanktyp nicht in obigem MenÃŒ, <a target="help" href="[_1]">installieren Sie bitte die fÃŒr Ihren Datenbanktyp notwendigen Perl-Module</a>. Sollte das bereits geschehen sein, ÃŒberprÃŒfen Sie die Installation und <a href="#" onclick="[_2]">fÃŒhren Sie den Systemtest erneut aus</a>.',
 	'Database Path' => 'Datenbankpfad',
 	'The physical file path for your SQLite database. ' => 'Physischer Pfad zur SQLite-Datenbank',
@@ -3310,7 +3311,7 @@
 	'Mail Configuration' => 'Mailkonfiguration',
 	'Your mail configuration is complete.' => 'Ihre Mail-Konfiguration ist abgeschlossen.',
-	'Check your email to confirm receipt of a test email from Movable Type and then proceed to the next step.' => 'ÃberprÃŒfen Sie den Eingang der Testmail in Ihrem Postfach und fahren dann mit dem nÃ€chsten Schritt fort.',
-	'Show current mail settings' => 'Derzeitige Mail-Einstellungen anzeigen',
-	'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 verschickt E-Mails zur Benachrichtigung ÃŒber neue Kommentare und zu einigen anderen AnlÃ€ssen. Geben Sie daher an, wie diese Mails verschickt werden sollen.',
+	'Check your email to confirm receipt of a test email from Movable Type and then proceed to the next step.' => 'ÃberprÃŒfen Sie den Eingang der Testmail in Ihrem Postfach und fahren Sie dann mit dem nÃ€chsten Schritt fort.',
+	'Show current mail settings' => 'Mail-Einstellungen anzeigen',
+	'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.' => 'Geben Sie an, auf welchem Wege Movable Type E-Mails verschicken soll. E-Mails werden beispielsweise zur Benachrichtigung ÃŒber neue Kommentare verschickt.',
 	'An error occurred while attempting to send mail: ' => 'Mailversand fehlgeschlagen: ',
 	'Send email via:' => 'E-Mails versenden per:',
@@ -3320,5 +3321,5 @@
 	'Address of your SMTP Server.' => 'Adresse Ihres SMTP-Servers',
 	'Mail address for test sending' => 'EmpfÃ€ngeradresse fÃŒr Testmail',
-	'Send Test Email' => 'Test-Email verschicken',
+	'Send Test Email' => 'Testmail verschicken',
 
 ## tmpl/wizard/complete.tmpl
@@ -3327,16 +3328,16 @@
 	'Please use the configuration text below to create a file named \'mt-config.cgi\' in the root directory of [_1] (the same directory in which mt.cgi is found).' => 'Kopieren Sie folgenden Text in eine Datei namens \'mt-config.cgi\' und legen diese im Movable Type-Hauptverzeichnis ab (das Verzeichnis, in dem sich auch die Datei mt.cgi befindet)',
 	'The wizard was unable to save the [_1] configuration file.' => 'Die [_1]-Konfigurationsdatei konnte nicht gespeichert werden.',
-	'Confirm your [_1] home directory (the directory that contains mt.cgi) is writable by your web server and then click \'Retry\'.' => 'Bitte ÃŒberprÃŒfen Sie, ob der Webserver Schreibrechte fÃŒr Ihr [_1]-Hauptverzeichnis hat und klicken dann auf "Erneut versuchen"',
-	'Congratulations! You\'ve successfully configured [_1].' => 'Herzlichen GlÃŒckwunsch! Sie haben [_1] erfolgreich konfiguriert.',
-	'Your configuration settings have been written to the following file:' => 'Ihre Konfigurationsparamenter wurden in folgender Datei gespeichert:',
+	'Confirm your [_1] home directory (the directory that contains mt.cgi) is writable by your web server and then click \'Retry\'.' => 'Bitte ÃŒberprÃŒfen Sie, ob der Webserver Schreibrechte fÃŒr Ihr [_1]-Hauptverzeichnis hat und klicken Sie dann auf "Erneut versuchen".',
+	'Congratulations! You\'ve successfully configured [_1].' => 'Herzlichen GlÃŒckwunsch! Sie haben die [_1] erfolgreich konfiguriert.',
+	'Your configuration settings have been written to the following file:' => 'Ihre Einstellungen wurden in folgender Datei gespeichert:',
 	'To reconfigure the settings, click the \'Back\' button below.' => 'Um Ãnderungen an den Einstellungen vorzunehmen, klicken Sie auf \'ZurÃŒck\'.',
 	'Show the mt-config.cgi file generated by the wizard' => 'Vom Konfigurationshelfer erzeugte mt-config.cgi-Datei anzeigen',
-	'I will create the mt-config.cgi file manually.' => 'Ich werde mt-config.cgi manuell anlegen.',
+	'I will create the mt-config.cgi file manually.' => 'Ich werde mt-config.cgi manuell anlegen',
 	'Retry' => 'Erneut versuchen',
 
 ## tmpl/wizard/packages.tmpl
 	'Requirements Check' => 'ÃberprÃŒfung der Systemvoraussetzungen',
-	'The following Perl modules are required in order to make a database connection.  Movable Type requires a database in order to store your blog\'s data.  Please install one of the packages listed here in order to proceed.  When you are ready, click the \'Retry\' button.' => 'Die folgenden Perl-Module sind zur Herstellung einer Datenbankverbindung notwendig (Movable Type speichert Ihre Daten in einer Datenbank). Bitte installieren Sie die hier genannten Pakete und klicken danach auf \'Erneut versuchen\'.',
-	'All required Perl modules were found.' => 'Alle notwendigen Perl-Module sind vorhanden.',
+	'The following Perl modules are required in order to make a database connection.  Movable Type requires a database in order to store your blog\'s data.  Please install one of the packages listed here in order to proceed.  When you are ready, click the \'Retry\' button.' => 'Die folgenden Perl-Module sind zur Herstellung einer Datenbankverbindung erforderlich (Movable Type speichert Ihre Daten in einer Datenbank). Bitte installieren Sie die hier genannten Pakete und klicken Sie danach auf \'Erneut versuchen\'.',
+	'All required Perl modules were found.' => 'Alle erforderlichen Perl-Module sind vorhanden.',
 	'You are ready to proceed with the installation of Movable Type.' => 'Sie kÃ¶nnen die Installation von Movable Type fortsetzen.',
 	'Some optional Perl modules could not be found. <a href="javascript:void(0)" onclick="[_1]">Display list of optional modules</a>' => 'Einige optionale Perl-Module wurden nicht gefunden. <a href="javascript:void(0)" onclick="[_1]">Optionale Module anzeigen</a>',
@@ -3345,5 +3346,5 @@
 	'Some optional Perl modules could not be found. You may continue without installing these optional Perl modules. They may be installed at any time if they are needed. Click \'Retry\' to test for the modules again.' => 'Einige optionale Perl-Module wurden nicht gefunden. Die Installation kann ohne diese Module fortgesetzt werden. Sie kÃ¶nnen jederzeit bei Bedarf nachinstalliert werden. \'Erneut versuchen\' wiederholt die Modulsuche.',
 	'Missing Database Modules' => 'Fehlende Datenbank-Module',
-	'Missing Optional Modules' => 'Fehlende optionale Module',
+	'Missing Optional Modules' => 'Nicht vorhandene optionale Module',
 	'Missing Required Modules' => 'Fehlende erforderliche Module',
 	'Minimal version requirement: [_1]' => 'Mindestens erforderliche Version: [_1]',
@@ -3363,12 +3364,12 @@
 ## tmpl/email/commenter_confirm.tmpl
 	'Thank you registering for an account to comment on [_1].' => 'Danke, daÃ Sie sich zum Kommentieren von [_1] registriert haben.',
-	'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 comment on [_1].' => 'Zu Ihrer eigenen Sicherheit und zur Vermeidung von MiÃbrauch bitten wie Sie, daÃ Sie zuerst Ihre E-Mail-Adresse und Ihre Anmeldung bestÃ€tigen.',
-	'To confirm your account, please click on or cut and paste the following URL into a web browser:' => 'Um Ihre Anmeldung zu bestÃ€tigen, klicken Sie bitte auf folgende Adresse (oder kopieren Sie sie und fÃŒgen Sie sie in Adresszeile Ihres Web-Browsers ein):',
-	'If you did not make this request, or you don\'t want to register for an account to comment on [_1], then no further action is required.' => 'Sollten Sie sich nicht selbst angemeldet haben oder sollten Sie doch kein Konto anlegen wollen, um [_1] kommentieren zu kÃ¶nnen, brauchen Sie nichts zu tun.',
-	'Thank you very much for your understanding.' => 'Vielen Dank fÃŒr Ihr VerstÃ€ndnis.',
-	'Sincerely,' => 'Ihr',
+	'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 comment on [_1].' => 'Zu Ihrer eigenen Sicherheit und zur Vermeidung von MiÃbrauch bestÃ€tigen Sie bitte Ihre Anmeldung und Ihre E-Mail-Adresse.',
+	'To confirm your account, please click on or cut and paste the following URL into a web browser:' => 'Klicken Sie dazu auf folgenden Link (oder kopieren Sie Adresse und fÃŒgen Sie sie in Adresszeile Ihres Web-Browsers ein):',
+	'If you did not make this request, or you don\'t want to register for an account to comment on [_1], then no further action is required.' => 'Sollten Sie sich nicht angemeldet haben oder sollten Sie sich doch nicht registrieren wollen, brauchen Sie nichts weiter zu tun.',
+	'Thank you very much for your understanding.' => 'Vielen Dank',
+	'Sincerely,' => '',
 
 ## tmpl/email/verify-subscribe.tmpl
-	'Thanks for subscribing to notifications about updates to [_1]. Follow the link below to confirm your subscription:' => 'Vielen Dank, daÃ Sie die Aktualisierungsbenachrichtungen von [_1] abonniert haben. Bitte folgen Sie zur BestÃ€tigung diesem Link:',
+	'Thanks for subscribing to notifications about updates to [_1]. Follow the link below to confirm your subscription:' => 'Vielen Dank, daÃ Sie die die Benachrichtungen ÃŒber Aktualisierungen von [_1] abonniert haben. Bitte klicken Sie zur BestÃ€tigung auf folgenden Link:',
 	'If the link is not clickable, just copy and paste it into your browser.' => 'Wenn der Link nicht anklickbar ist, kopieren Sie ihn einfach und fÃŒgen ihn in der Adresszeile Ihres Browers ein.',
 
@@ -3380,42 +3381,42 @@
 	'An unapproved TrackBack has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this TrackBack before it will appear on your site.' => 'Ein noch nicht freigeschalteter TrackBack ist in Ihrem Blog [_1] zum Eintrag #[_2] ("[_3]") eingegangen. Schalten Sie den TrackBack frei, damit es auf Ihrem Weblog erscheint.',
 	'An unapproved TrackBack has been posted on your blog [_1], for category #[_2], ([_3]). You need to approve this TrackBack before it will appear on your site.' => 'Ein noch nicht freigeschalteter TrackBack ist in Ihrem Blog [_1] fÃŒr die Kategorie #[_1] ([_3]) eingegangen. Schalten Sie den TrackBack frei, damit es auf Ihrem Weblog erscheint.',
-	'A new TrackBack has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Ein neuer TrackBack ist in Ihrem Weblog [_1] zum Eintrag #[_2] ([_3]) eingegangen.',
-	'A new TrackBack has been posted on your blog [_1], on category #[_2] ([_3]).' => 'Ein neuer TrackBack ist in Ihrem Weblog [_1] fÃŒr die Kategorie #[_2] ([_3]) eingegangen.',
-	'Excerpt: ' => 'Auszug:', # Translate - New # OK
-	'URL: [_1]' => 'URL: [_1]', # Translate - New # OK
-	'Title: [_1]' => 'Name: [_1]', # Translate - New # OK
-	'Blog: [_1]' => 'Blog: [_1]', # Translate - New # OK
-	'IP address: [_1]' => 'IP-Adresse: [_1]', # Translate - New # OK
-	'Approve TrackBack: ' => 'TrackBack freischalten:', # Translate - New # OK
-	'View TrackBack: ' => 'TrackBack ansehen:', # Translate - New # OK
-	'Report TrackBack as spam: ' => 'TrackBack als Spam melden:', # Translate - New # OK
-	'Edit TrackBack: ' => 'TrackBack bearbeiten:', # Translate - New # OK
+	'A new TrackBack has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Ein neuer TrackBack ist in Ihrem Weblog [_1] zum Eintrag #[_2] ([_3]) eingegangen:',
+	'A new TrackBack has been posted on your blog [_1], on category #[_2] ([_3]).' => 'Ein neuer TrackBack ist in Ihrem Weblog [_1] fÃŒr die Kategorie #[_2] ([_3]) eingegangen:',
+	'Excerpt: ' => 'Auszug:',
+	'URL: [_1]' => 'URL: [_1]',
+	'Title: [_1]' => 'Name: [_1]',
+	'Blog: [_1]' => 'Blog: [_1]',
+	'IP address: [_1]' => 'IP-Adresse: [_1]',
+	'Approve TrackBack: ' => 'TrackBack freischalten:',
+	'View TrackBack: ' => 'TrackBack ansehen:',
+	'Report TrackBack as spam: ' => 'TrackBack als Spam melden:',
+	'Edit TrackBack: ' => 'TrackBack bearbeiten:',
 
 ## tmpl/email/new-comment.tmpl
 	'An unapproved comment has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site.' => 'Ein noch nicht freigeschalteter Kommentar ist in Ihrem Weblog [_1] zum Eintrag #[_2] ("[_3]") eingegangen. Schalten Sie den Kommentar frei, damit er auf Ihrem Weblog erscheint.',
-	'A new comment has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Ein neuer Kommentar ist in Ihrem Weblog [_1] zum Eintrag #[_2] ("[_3]") eingegangen.',
-	'Comment name: [_1]' => 'Name des Kommentarautors: [_1]', # Translate - New # OK
-	'Commenter email address: [_1]' => 'E-Mail-Adresse des Kommentarautors: [_1]', # Translate - New # OK
-	'Commenter URL: [_1]' => 'Web-Adresse (URL) des Kommentarautors:', # Translate - New # OK
-	'Commenter IP address: [_1]' => 'IP-Adresse des Kommentarautors:', # Translate - New # OK
-	'Approve comment:' => 'Kommentar freischalten:', # Translate - New # OK
-	'View comment:' => 'Kommentar ansehen:', # Translate - New # OK
-	'Edit comment:' => 'Kommentar bearbeiten:', # Translate - New # OK
-	'Report comment as spam:' => 'Kommentar als Spam melden:', # Translate - New # OK
+	'A new comment has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Ein neuer Kommentar ist in Ihrem Weblog [_1] zum Eintrag #[_2] ("[_3]") eingegangen:',
+	'Commenter name: [_1]' => 'Name des Kommentarautors: [_1]', # Translate - New
+	'Commenter email address: [_1]' => 'E-Mail-Adresse des Kommentarautors: [_1]',
+	'Commenter URL: [_1]' => 'Web-Adresse (URL) des Kommentarautors:',
+	'Commenter IP address: [_1]' => 'IP-Adresse des Kommentarautors:',
+	'Approve comment:' => 'Kommentar freischalten:',
+	'View comment:' => 'Kommentar ansehen:',
+	'Edit comment:' => 'Kommentar bearbeiten:',
+	'Report comment as spam:' => 'Kommentar als Spam melden:',
 
 ## tmpl/email/notify-entry.tmpl
 	'A new [_3] entitled \'[_1]\' has been published to [_2].' => 'Ein neuer Eintrag namens \'[_1]\' wurde in [_2] verÃ¶ffentlicht.',
-	'View post:' => 'Eintrag ansehen:', # Translate - New # OK
-	'Entry Title: [_1]' => 'Titel des Eintrags: [_1]', # Translate - New # OK
-	'Publish Date: [_1]' => 'VerÃ¶ffentlichungsdatum:', # Translate - New # OK
-	'Message from Sender:' => 'Nachricht des Absenders:', # Translate - New # OK
+	'View [_1]:' => '[_1] ansehen:', # Translate - New # OK
+	'[_1] Title: [_2]' => 'Titel: [_2]', # Translate - New # OK
+	'Publish Date: [_1]' => 'VerÃ¶ffentlichungsdatum:',
+	'Message from Sender:' => 'Nachricht des Absenders:',
 	'You are receiving this email either because you have elected to receive notifications about new content on [_1], or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:' => 'Sie erhalten diese E-Mail, da Sie entweder Nachrichten ÃŒber Aktualisierungen von [_1] bestellt haben oder da der Autor dachte, daÃ dieser Eintrag fÃŒr Sie von Interesse sein kÃ¶nnte. Wenn Sie solche Mitteilungen nicht lÃ€nger erhalten wollen, wenden Sie sich bitte an ',
 
 ## tmpl/email/commenter_notify.tmpl
-	'This email is to notify you that a new user has successfully registered on the blog \'[_1]\'. Listed below you will find some useful information about this new user.' => 'Ein neuer Benutzer hat sich erfolgreich fÃŒr das Blog \'[_1]\' registriert. Unten finden Sie nÃ€here Informationen ÃŒber diesen Benutzer.', # Translate - New # OK
-	'New User Information:' => 'Informationen ÃŒber den neuen Benutzer:', # Translate - New # OK
-	'Username: [_1]' => 'Benutzername: [_1]', # Translate - New # OK
-	'Full Name: [_1]' => 'Voller Name: [_1]', # Translate - New # OK
-	'Email: [_1]' => 'E-Mail-Adresse:', # Translate - New # OK
+	'This email is to notify you that a new user has successfully registered on the blog \'[_1]\'. Listed below you will find some useful information about this new user.' => 'Ein neuer Benutzer hat sich erfolgreich fÃŒr das Blog \'[_1]\' registriert. Unten finden Sie nÃ€here Informationen ÃŒber diesen Benutzer.',
+	'New User Information:' => 'Informationen ÃŒber den neuen Benutzer:',
+	'Username: [_1]' => 'Benutzername: [_1]',
+	'Full Name: [_1]' => 'Voller Name: [_1]',
+	'Email: [_1]' => 'E-Mail-Adresse:',
 	'To view or edit this user, please click on or cut and paste the following URL into a web browser:' => 'Um alle Benutzerdaten zu sehen oder zu bearbeiten, klicken Sie bitte auf folgende Adresse (oder kopieren Sie sie und fÃŒgen Sie sie in Adresszeile Ihres Web-Browsers ein):',
 
@@ -3480,5 +3481,5 @@
 
 ## plugins/feeds-app-lite/mt-feeds.pl
-	'Feeds.App Lite helps you republish feeds on your blogs. Want to do more with feeds in Movable Type?' => 'Mit Feeds.App Lite kÃ¶nnen Sie Feeds in Ihre Blogs integrieren. Noch mehr MÃ¶glichkeiten erhalten Sie durch ein',
+	'Feeds.App Lite helps you republish feeds on your blogs. Want to do more with feeds in Movable Type?' => 'Mit Feeds.App Lite kÃ¶nnen Sie Feedinhalte in Ihre Blogs integrieren. Noch mehr MÃ¶glichkeiten erhalten Sie durch ein',
 	'Upgrade to Feeds.App' => 'Upgrade auf Feeds.App',
 	'Create a Feed Widget' => 'Feed-Widget anlegen',
@@ -3497,5 +3498,5 @@
 
 ## plugins/Markdown/SmartyPants.pl
-	'Easily translates plain punctuation characters into \'smart\' typographic punctuation.' => 'Wandelt einfache Interpunktionszeichen in typographisch korrekte Zecichen um.', # Translate - New # OK
+	'Easily translates plain punctuation characters into \'smart\' typographic punctuation.' => 'Wandelt einfache Interpunktionszeichen in typographisch korrekte Zecichen um.',
 	'Markdown With SmartyPants' => 'Markdown mit SmartyPants',
 
@@ -3522,5 +3523,4 @@
 
 ## plugins/TemplateRefresh/tmpl/results.tmpl
-	'Backup and Refresh Templates' => 'Vorlagen sichern und wiederherstellen',
 	'No templates were selected to process.' => 'Keine Vorlagen ausgewÃ€hlt.',
 	'Return to templates' => 'ZurÃŒck zu den Vorlagen',
@@ -3553,6 +3553,6 @@
 	'You already have a widget set named \'[_1].\' Please use a unique name for this widget set.' => 'Eine Widgetgruppe namens \'[_1]\' ist bereits vorhanden. Bitte wÃ€hlen Sie Namen, der noch nicht verwendet wurde.',
 	'Your changes to the Widget Set have been saved.' => 'Ãnderungen gespeichert.',
-	'Set Name' => 'Name vergeben',
-	'Drag and drop the widgets you want into the Installed column.' => 'Ziehen Sie die gewÃŒnschten Widgets mit der Maus in die Spalte \'Installierte Widgets\'.',
+	'Set Name' => 'Gruppenname',
+	'Drag and drop the widgets you want into the Installed column.' => 'Ziehen Sie die Widgets, die angezeigt werden sollen, in die Spalte \'Installierte Widgets\'. Soll ein Widget nicht mehr angezeigt werden, schieben Sie es zurÃŒck in die Spalte \'VerfÃŒgbare Widgets\'.',
 	'Installed Widgets' => 'Installierte Widgets',
 	'edit' => 'Bearbeiten',
@@ -3574,5 +3574,5 @@
 
 ## plugins/WidgetManager/WidgetManager.pl
-	'Maintain your blog\'s widget content using a handy drag and drop interface.' => 'Widgets einfach mit der Maus zusammenstellen', # Translate - New # OK
+	'Maintain your blog\'s widget content using a handy drag and drop interface.' => 'Widgets einfach mit der Maus zusammenstellen',
 	'Widgets' => 'Widgets',
 
@@ -3622,5 +3622,5 @@
 ## plugins/WidgetManager/default_widgets/signin.tmpl
 	'You are signed in as ' => 'Sie sind angemeldet als',
-	'You do not have permission to sign in to this blog.' => 'Sie haben keine Zugriffsrechte zur Anmeldung an diesem Blog.',
+	'You do not have permission to sign in to this blog.' => 'Sie haben keine Berechtigung zur Anmeldung an diesem Blog.',
 
 ## plugins/WidgetManager/default_widgets/category_archive_list.tmpl
@@ -3633,5 +3633,4 @@
 
 ## plugins/WidgetManager/default_widgets/tag_cloud_module.tmpl
-	'Tag cloud' => 'Tag-Wolke',
 
 ## plugins/WidgetManager/default_widgets/powered_by.tmpl
@@ -3660,7 +3659,7 @@
 
 ## plugins/MultiBlog/tmpl/system_config.tmpl
-	'Default system aggregation policy' => 'Systemweite Voreinstellungen fÃŒr Aggregation',
-	'Allow' => 'Zulassen',
-	'Disallow' => 'Nicht zulassen',
+	'Default system aggregation policy' => 'Systemwite Aggregations- Voreinstellung',
+	'Allow' => 'Aggregation zulassen',
+	'Disallow' => 'Aggregation nicht zulassen',
 	'Cross-blog aggregation will be allowed by default.  Individual blogs can be configured through the blog-level MultiBlog settings to restrict access to their content by other blogs.' => 'Verwendung von Bloginhalten in anderen Blogs dieser Installation systemweit erlauben. Auf Blog-Ebene gemachte Einstellungen sind vorranging, so daÃ diese Voreinstellung fÃŒr einzelne Blogs auÃer Kraft gesetzt werden kann.',
 	'Cross-blog aggregation will be disallowed by default.  Individual blogs can be configured through the blog-level MultiBlog settings to allow access to their content by other blogs.' => 'Verwendung von Bloginhalten in anderen Blogs dieser Installation systemweit nicht erlauben. Auf Blog-Ebene gemachte Einstellungen sind vorranging, so daÃ diese Voreinstellung fÃŒr einzelne Blogs auÃer Kraft gesetzt werden kann.',
@@ -3670,6 +3669,6 @@
 
 ## plugins/MultiBlog/tmpl/blog_config.tmpl
-	'When' => 'Wenn',
-	'Any Weblog' => 'Jedes Blog',
+	'When' => 'Wenn in',
+	'Any Weblog' => 'einem beliebigen Blog',
 	'Weblog' => 'Weblog',
 	'Trigger' => 'AuslÃ¶ser',
@@ -3678,17 +3677,17 @@
 	'Specify whether other blogs in the installation may publish content from this blog. This setting takes precedence over the default system aggregation policy found in the system-level MultiBlog configuration.' => 'Hier kÃ¶nnen Sie festlegen, ob andere Blogs dieser Movable Type-Installation die Inhalte dieses Blogs verwenden dÃŒrfen oder nicht. Diese Einstellung hat Vorrang vor der globalen MultiBlog-Konfiguration.',
 	'Use system default' => 'System-Voreinstellung verwenden',
-	'MTMultiBlog tag default arguments' => 'MultiBlog-Standardargumente',
+	'MTMultiBlog tag default arguments' => 'MultiBlog- Standardargumente',
 	'Enables use of the MTMultiBlog tag without include_blogs/exclude_blogs attributes. Comma-separated BlogIDs or \'all\' (include_blogs only) are acceptable values.' => 'ErmÃ¶glicht die Verwendung von MTMultiBlog ohne include_blogs- und exclude_blogs-Attribute. Erlaubte Werte sind \'all\' oder per Kommata getrennte BlogIDs.',
 	'Include blogs' => 'EinzuschlieÃende Blogs',
 	'Exclude blogs' => 'AuszuschlieÃende Blogs',
 	'Rebuild Triggers' => 'AuslÃ¶ser fÃŒr Neuaufbau',
-	'Create Rebuild Trigger' => 'AuslÃ¶ser fÃŒr Neuaufbau anlegen',
-	'You have not defined any rebuild triggers.' => 'Es sind keine AuslÃ¶ser fÃŒr erneute VerÃ¶ffentlichung definiert.',
+	'Create Rebuild Trigger' => 'AuslÃ¶ser fÃŒr Neuaufbau definieren',
+	'You have not defined any rebuild triggers.' => 'Es sind keine AuslÃ¶ser definiert.',
 
 ## plugins/MultiBlog/multiblog.pl
-	'MultiBlog allows you to publish templated or raw content from other blogs and define rebuild dependencies and access controls between them.' => 'Mit MultiBlog kÃ¶nnen Sie Inhalte anderer Blogs dieser Installation per Vorlage formatiert oder in Rohform ÃŒbernehmen, AbhÃ€ngigkeiten zur automatischen NeuverÃ¶ffentlichung bei Erscheinen neuer Inhalte definieren und Zugriffsrechte der Blogs untereinander festlegen.',
+	'MultiBlog allows you to publish templated or raw content from other blogs and define rebuild dependencies and access controls between them.' => 'Mit MultiBlog kÃ¶nnen Sie Inhalte anderer Blogs dieser Installation formatiert oder in Rohform ÃŒbernehmen, AbhÃ€ngigkeiten zur automatischen NeuverÃ¶ffentlichung bei Erscheinen neuer Inhalte definieren und Zugriffsrechte der Blogs untereinander festlegen.',
 	'MultiBlog' => 'MultiBlog',
 	'Create New Trigger' => 'Neuen AuslÃ¶ser anlegen',
-	'Weblog Name' => 'Weblogname',
+	'Weblog Name' => 'Name des Blogs',
 	'Search Weblogs' => 'Weblogs suchen',
 	'When this' => 'Wenn',
@@ -3722,5 +3721,5 @@
 	'More' => 'grÃ¶Ãer',
 	'block' => 'sperren',
-	'IP Blacklist Services' => 'IP-Sperrdienste',
+	'IP Blacklist Services' => 'IP-Schwarzlisten',
 	'Domain Name Lookups' => 'Nachschlagen von Domain-Namen',
 	'Moderate feedback containing blacklisted domains' => 'Feedback von schwarzgelisteten Domains moderieren',
@@ -3731,5 +3730,5 @@
 	'Junk TrackBacks from suspicious sources' => 'TrackBacks aus dubiosen Quellen als Spam ansehen',
 	'Lookup Whitelist' => 'WeiÃliste',
-	'To prevent lookups for some IP addresses or domains, list them below. Place each entry on a line by itself.' => 'IP-Adressen und Domains, die nicht nachgeschlagen werden sollen, kÃ¶nnen Sie hier auffÃŒhren. Verwenden Sie fÃŒr jeden Eintrag eine eigene Zeile.',
+	'To prevent lookups for some IP addresses or domains, list them below. Place each entry on a line by itself.' => 'Hier kÃ¶nnen Sie IP-Adressen und Domains eintragen, die nicht nachgeschlagen werden sollen. Verwenden Sie fÃŒr jeden Eintrag eine neue Zeile.',
 
 ## plugins/spamlookup/tmpl/word_config.tmpl
@@ -3741,5 +3740,5 @@
 	'Link filters monitor the number of hyperlinks in incoming feedback. Feedback with many links can be held for moderation or scored as junk. Conversely, feedback that does not contain links or only refers to previously published URLs can be positively rated. (Only enable this option if you are sure your site is already spam-free.)' => 'Die Anzahl der in eingehendem Feedback enthaltenen Hyperlinks kann kontrolliert werden. Feedback mit sehr vielen Links kann automatisch zur Moderation zurÃŒckgehalten oder als Spam angesehen werden. Umgekehrt kann Feedback, das gar keine Links enthÃ€lt oder nur solche, die zuvor bereits freigegeben wurden, automatisch positiv bewertet werden.',
 	'Link Limits' => 'Link-Schwellenwert',
-	'Credit feedback rating when no hyperlinks are present' => 'Feedback ohne enthaltene Hyperlinks positiv bewerten',
+	'Credit feedback rating when no hyperlinks are present' => 'Feedback ohne Hyperlinks positiv bewerten',
 	'Moderate when more than' => 'Moderieren bei mehr als',
 	'link(s) are given' => 'Link(s)',
@@ -3754,5 +3753,5 @@
 
 ## plugins/spamlookup/spamlookup.pl
-	'SpamLookup module for using blacklist lookup services to filter feedback.' => 'SpamLookup-Modul zur Nutzung von Schwarzlisten zur Feedback-Filterung',
+	'SpamLookup module for using blacklist lookup services to filter feedback.' => 'SpamLookup-Modul zur Nutzung von Sperrlisten zur Feedback-ÃberprÃŒfung',
 	'SpamLookup IP Lookup' => 'SpamLookup fÃŒr IP-Adressen',
 	'SpamLookup Domain Lookup' => 'SpamLookup fÃŒr Domains',
@@ -3764,5 +3763,5 @@
 ## plugins/spamlookup/spamlookup_urls.pl
 	'SpamLookup - Link' => 'SpamLookup fÃŒr Links',
-	'SpamLookup module for junking and moderating feedback based on link filters.' => 'SpamLookup-Modul zur ÃberprÃŒfung von Links zur Feedback-Filterung',
+	'SpamLookup module for junking and moderating feedback based on link filters.' => 'SpamLookup-Modul zur ÃberprÃŒfung von Links in Feedback',
 	'SpamLookup Link Filter' => 'SpamLookup zur Linkfilterung',
 	'SpamLookup Link Memory' => 'SpamLookup zur Betrachtung bereits verÃ¶ffentlichter Links',
@@ -3785,17 +3784,17 @@
 
 ## plugins/spamlookup/spamlookup_words.pl
-	'SpamLookup module for moderating and junking feedback using keyword filters.' => 'SpamLookup-Modul fÃŒr automatische Einordnung von Feedback zur Moderation oder als Spam nach SchlÃŒsselbegriffen',
+	'SpamLookup module for moderating and junking feedback using keyword filters.' => 'SpamLookup-Modul zur automatischen Einordnung von Feedback nach SchlÃŒsselbegriffen zur Moderation oder als Spam.',
 	'SpamLookup Keyword Filter' => 'SpamLookup SchlÃŒsselbegriff-Filter',
 
 ## plugins/StyleCatcher/stylecatcher.pl
-	'StyleCatcher lets you easily browse through styles and then apply them to your blog in just a few clicks. To find out more about Movable Type styles, or for new sources for styles, visit the <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type styles</a> page.' => 'Mit StyleCatcher kÃ¶nnen Sie Stilvorlagen bequem durchblÃ€ttern und mit wenigen Klicks auf Ihr Blog ÃŒbertragen. Auf der <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type Styles</a>-Website kÃ¶nnen Sie mehr ÃŒber Stilvorlagen erfahren.',
-	'MT 4 Style Library' => 'MT 4-Stilvorlagensammlung',
-	'A collection of styles compatible with Movable Type 4 default templates.' => 'Eine Sammlung von Stilvorlagen, die mit den Standardvorlagen von Movable Type 4 kompatibel sind.',
-	'MT 3 Style Library' => 'MT 3-Stilvorlagensammlung',
-	'A collection of styles compatible with Movable Type 3.3+ default templates.' => 'Eine Sammlung von Stilvorlagen, die mit den Standardvorlagen von Movable Type 3.3+ kompatibel sind.',
-	'Styles' => 'Stilvorlagen',
+	'StyleCatcher lets you easily browse through styles and then apply them to your blog in just a few clicks. To find out more about Movable Type styles, or for new sources for styles, visit the <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type styles</a> page.' => 'Mit StyleCatcher kÃ¶nnen Sie  bequem Designvorlagen durchblÃ€ttern und mit wenigen Klicks auf Ihr Blog ÃŒbertragen. Auf der <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type Styles</a>-Website kÃ¶nnen Sie mehr ÃŒber Designvorlagen erfahren.',
+	'MT 4 Style Library' => 'MT 4-Designs',
+	'A collection of styles compatible with Movable Type 4 default templates.' => 'Mit den Standardvorlagen von MT 3.3+  kompatible Designvorlagen',
+	'MT 3 Style Library' => 'MT 3-Design',
+	'A collection of styles compatible with Movable Type 3.3+ default templates.' => 'Mit den Standardvorlagen von MT 3.3+  kompatible Designvorlagen',
+	'Styles' => 'Designs',
 
 ## plugins/StyleCatcher/tmpl/view.tmpl
-	'Select a Style' => 'Stilvorlage auswÃ€hlen',
+	'Select a Style' => 'Design wÃ€hlen',
 	'3-Columns, Wide, Thin, Thin' => 'Dreispaltig: breit - schmal - schmal',
 	'3-Columns, Thin, Wide, Thin' => 'Dreispaltig: schmal - breit - schmal',
@@ -3803,20 +3802,20 @@
 	'2-Columns, Wide, Thin' => 'Zweispaltig: breit - schmal',
 	'None available' => 'Keine verfÃŒgbar',
-	'Applying...' => 'Ãbertrage...',
-	'Apply Design' => 'Design ÃŒbertragen',
-	'Error applying theme: ' => 'Fehler bei Ãbertragung des Themas:',
-	'The selected theme has been applied, but as you have changed the layout, you will need to republish your blog to apply the new layout.' => 'Das gewÃ€hlte Thema wurde ÃŒbertragen. Da das Layout geÃ€ndert wurde, verÃ¶ffentlichen Sie das Blog bitte erneut, um die Ãnderungen wirksam werden zu lassen.',
-	'The selected theme has been applied!' => 'Das gewÃ€hlte Thema wurde ÃŒbertragen!',
-	'Error loading themes! -- [_1]' => 'Fehler beim Laden von Themen -- [_1]',
+	'Applying...' => 'Ãbernehme...',
+	'Apply Design' => 'Design ÃŒbernehmen',
+	'Error applying theme: ' => 'Fehler bei der Ãbernahme des Themas:',
+	'The selected theme has been applied, but as you have changed the layout, you will need to republish your blog to apply the new layout.' => 'Das gewÃ€hlte Thema wurde ÃŒbernommen. Da das Layout geÃ€ndert wurde, verÃ¶ffentlichen Sie das Blog bitte erneut, um die Ãnderungen wirksam werden zu lassen.',
+	'The selected theme has been applied!' => 'Das Thema wurde ÃŒbernommen!',
+	'Error loading themes! -- [_1]' => 'Fehler beim Laden der Themen -- [_1]',
 	'Stylesheet or Repository URL' => 'URL des Stylesheets oder der Sammlung',
 	'Stylesheet or Repository URL:' => 'URL des Stylesheets oder der Sammlung:',
-	'Download Styles' => 'Stilvorlagen herunterladen',
+	'Download Styles' => 'Designs herunterladen',
 	'Current theme for your weblog' => 'Derzeitiges Thema Ihres Weblogs',
-	'Current Style' => 'Derzeitige Stilvorlage',
+	'Current Style' => 'Derzeitige Design',
 	'Locally saved themes' => 'Lokal gespeicherte Themen',
-	'Saved Styles' => 'Gespeicherte Stilvorlagen',
-	'Default Styles' => 'Standard-Stilvorlagen',
+	'Saved Styles' => 'Gespeicherte Designs',
+	'Default Styles' => 'Standarddesigns',
 	'Single themes from the web' => 'Einzelne Themen aus dem Internet',
-	'More Styles' => 'Weitere Stilvorlagen',
+	'More Styles' => 'Weitere Designs',
 	'Selected Design' => 'GewÃ€hltes Design',
 	'Layout' => 'Layout',
@@ -3830,5 +3829,5 @@
 );
 
-## New words: 316
+## New words: 70
 
 1;
Index: /branches/athena/lib/MT/L10N/nl.pm
===================================================================
--- /branches/athena/lib/MT/L10N/nl.pm (revision 1091)
+++ /branches/athena/lib/MT/L10N/nl.pm (revision 1092)
@@ -22,6 +22,6 @@
 
 ## php/lib/function.mtcommentfields.php
-	'Thanks for signing in,' => 'Bedankt om uzelf aan te melden,',
-	'Now you can comment.' => 'Nu kunt u reageren.',
+	'Thanks for signing in,' => 'Bedankt om u aan te melden,',
+	'Now you can comment.' => 'U kunt nu reageren.',
 	'sign out' => 'afmelden',
 	'(If you haven\'t left a comment here before, you may need to be approved by the site owner before your comment will appear. Until then, it won\'t appear on the entry. Thanks for waiting.)' => '(Als u hier nog nooit gereageerd heeft, kan het zijn dat de eigenaar van deze site eerst goedkeuring moet geven voordat uw reactie verschijnt. Eerder zal uw reactie niet zichtbaar zijn onder het bericht. Bedankt voor uw geduld.)',
@@ -34,5 +34,5 @@
 	'You are not signed in. You need to be registered to comment on this site.' => 'U bent niet aangemeld.  U moet geregistreerd zijn om te kunnen reageren op deze website.',
 	'Sign in' => 'Aanmelden',
-	'. Now you can comment.' => '. Nu kunt u reageren.',
+	'. Now you can comment.' => '. U kunt hieronder reageren.',
 	'If you have a TypeKey identity, you can ' => 'Als u een TypeKey identiteit heeft, kunt u ',
 	'sign in' => 'zich aanmelden',
@@ -41,5 +41,5 @@
 	'Email Address' => 'E-mailadres',
 	'URL' => 'URL',
-	'(You may use HTML tags for style)' => '(U mag HTML tags gebruiken voor de stijl)',
+	'(You may use HTML tags for style)' => '(u kunt HTML tags gebruiken voor de lay-out)',
 
 ## php/lib/block.mtentries.php
@@ -47,5 +47,5 @@
 
 ## php/lib/function.mtremotesigninlink.php
-	'TypeKey authentication is not enabled in this blog.  MTRemoteSignInLink can\'t be used.' => 'TypeKey authentication is not enabled in this blog.  MTRemoteSignInLink can\'t be used.',
+	'TypeKey authentication is not enabled in this blog.  MTRemoteSignInLink can\'t be used.' => 'TypeKey authenticatie is niet ingeschakeld op deze blog.  MTRemoteSignInLink kan niet worden gebruikt.',
 
 ## php/lib/block.mtassets.php
@@ -56,5 +56,5 @@
 
 ## php/lib/archive_lib.php
-	'Page' => 'per pagina',
+	'Page' => 'Pagina',
 	'Individual' => 'per bericht',
 	'Yearly' => 'per jaar',
@@ -62,5 +62,5 @@
 	'Daily' => 'per dag',
 	'Weekly' => 'per week',
-	'Author' => 'per auteur',
+	'Author' => 'Auteur',
 	'Author Yearly' => 'per auteur per jaar',
 	'Author Monthly' => 'per auteur per maand',
@@ -141,7 +141,7 @@
 ## default_templates/comment_response.mtml
 	'Comment Submitted' => 'Reactie achtergelaten',
-	'Confirmation...' => 'Bevestiging',
-	'Your comment has been submitted!' => 'Uw reactie is ingediend!',
-	'Comment Pending' => 'Reactie in behandeling',
+	'Confirmation...' => 'Bevestiging...',
+	'Your comment has been submitted!' => 'Uw reactie werd ontvangen!',
+	'Comment Pending' => 'Reactie wordt behandeld',
 	'Thank you for commenting.' => 'Bedankt voor uw reactie.',
 	'Your comment has been received and held for approval by the blog owner.' => 'Uw reactie is ontvangen en zal worden opgeslagen tot de eigenaar van deze weblog goedkeuring geeft voor publicatie.',
@@ -167,6 +167,6 @@
 	'This page is a archive of recent entries written by <strong>[_1]</strong>.' => 'Deze pagina is een archief van recente berichten geschreven door <strong>[_1]</strong>.',
 	'This page is an archive of entries from <strong>[_2]</strong> listed from newest to oldest.' => 'Deze pagina is een archief van berichten op <strong>[_2]</strong> gerangschikt van nieuw naar oud',
-	'Find recent content on the <a href="[_1]">main index</a>.' => 'Ontdek recentere inhoud op de <a href="[_1]">hoofdindexpagina</a>.',
-	'Find recent content on the <a href="[_1]">main index</a> or look in the <a href="[_2]">archives</a> to find all content.' => 'Ontdek recentere inhoud op de <a href="[_1]">hoofdindexpagina</a of kijk in de <a href="[_2]">archievens</a> om alle inhoud te vinden.',
+	'Find recent content on the <a href="[_1]">main index</a>.' => 'De nieuwste berichten zijn te vinden op de <a href="[_1]">hoofdpagina</a>.',
+	'Find recent content on the <a href="[_1]">main index</a> or look in the <a href="[_2]">archives</a> to find all content.' => 'De nieuwste berichten zijn te vinden op de <a href="[_1]">hoofdpagina</a> of kijk in de <a href="[_2]">archieven</a> om alle berichten te zien.',
 	'Tag Cloud' => 'Tagwolk',
 	'[_1] ([_2])' => '[_1] ([_2])',
@@ -185,8 +185,8 @@
 
 ## default_templates/javascript.mtml
-	'You do not have permission to comment on this blog.' => 'U heeft geen permissie om reacties achter te laten op deze weblog',
-	'Sign in</a> to comment on this entry.' => 'Meld u aan</a> om op dit bericht te reageren.',
-	'Sign in</a> to comment on this entry,' => 'Meld u aan</a> om op dit bericht te reageren,',
-	'or ' => 'of',
+	'You do not have permission to comment on this blog.' => 'U heeft geen toestemming om reacties achter te laten op deze weblog',
+	' to comment on this entry,' => ' om te reageren op dit bericht,', # Translate - New
+	' to comment on this entry.' => ' om te reageren op dit bericht.', # Translate - New
+	'or ' => 'of ',
 	'comment anonymously.' => 'reageer anoniem',
 
@@ -198,5 +198,5 @@
 ## default_templates/trackbacks.mtml
 	'[_1] TrackBacks' => '[_1] TrackBacks',
-	'Listed below are links to blogs that reference this entry: <a href="[_1]">[_2]</a>.' => 'Hieronder ziet u links naar blogs die verwijzen naar dit bericht: <a href="[_1]">[_2]</a>.',
+	'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>.',
 	'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'TrackBack URL voor dit bericht: <span id="trackbacks-link">[_1]</span>',
 	'&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a> van [_3]',
@@ -377,5 +377,5 @@
 	'Manage Entries' => 'Berichten beheren',
 	'Manage Pages' => 'Pagina\'s beheren',
-	'Publish Blog' => 'Publiceer blog',
+	'Publish Blog' => 'Blog publiceren',
 	'Manage Templates' => 'Sjablonen beheren',
 	'Upload File' => 'Opladen',
@@ -421,5 +421,5 @@
 ## lib/MT/Asset/Video.pm
 	'Video' => 'Video',
-	'Videos' => 'Foto\'s',
+	'Videos' => 'Video\'s',
 
 ## lib/MT/Asset/Image.pm
@@ -469,4 +469,5 @@
 	'[_1] records restored.' => '[_1] records teruggezet.',
 	'Restoring [_1] records:' => '[_1] records aan het terugzetten:',
+	'User with the same name as the name of the currently logged in ([_1]) found.  Skipped the record.' => 'Gebruiker met dezelfde naam gevonden als die van de momenteel ingelogde ([_1]).  Record overgeslagen.', # Translate - New
 	'User with the same name \'[_1]\' found (ID:[_2]).  Restore replaced this user with the data backed up.' => 'Een gebruiker met dezelfde naam \'[_1]\' werd gevonden (ID:[_2]).  Restore verving deze gebruiker door de data uit de backup.',
 	'Tag \'[_1]\' exists in the system.' => 'Tag \'[_1]\' bestaat in het systeem.',
@@ -549,5 +550,5 @@
 	'Actions' => 'Acties',
 	'Warning' => 'Waarschuwing',
-	'No [_1] could be found.' => 'Er werden geen [_1] gevonden',
+	'No [_1] could be found.' => '[_1] werden niet gevonden',
 	'Recursion attempt on [_1]: [_2]' => 'Recursiepoging op [_1]: [_2]',
 	'Can\'t find included template [_1] \'[_2]\'' => 'Kan geincludeerd sjabloon niet vinden: [_1] \'[_2]\'',
@@ -728,5 +729,5 @@
 	'PAGE_ADV' => 'per pagina',
 	'INDIVIDUAL_ADV' => 'per bericht',
-	'DAILY_ADV' => 'per',
+	'DAILY_ADV' => 'per dag',
 	'WEEKLY_ADV' => 'per week',
 	'AUTHOR_ADV' => 'per auteur',
@@ -899,5 +900,5 @@
 	'[_1] posted on or before [_2]' => '[_1] gepubliceerd op of voor [_2]',
 	'All comments by [_1] \'[_2]\'' => 'Alle reacties van [_1] \'[_2]\'',
-	'Commenter' => 'Bezoeker',
+	'Commenter' => 'Reageerder',
 	'All comments for [_1] \'[_2]\'' => 'Alle reacties op [_1] \'[_2]\'',
 	'Comments posted between [_1] and [_2]' => 'Reacties gepubliceerd tussen [_1] en [_2]',
@@ -910,5 +911,5 @@
 	'Can\'t recover password in this configuration' => 'Kan geen wachtwoorden terugvinden in deze configuratie',
 	'Invalid user name \'[_1]\' in password recovery attempt' => 'Ongeldige gebruikersnaam \'[_1]\' bij poging tot terugvinden wachtwoord',
-	'User name or birthplace is incorrect.' => 'Naam van de gebruiker of geboorteplaats is niet correct.',
+	'User name or birthplace is incorrect.' => 'Naam van de gebruiker of wachtwoordhint is niet correct.',
 	'User has not set birthplace; cannot recover password' => 'Gebruiker heeft geen geboorteplaats ingesteld; kan het wachtwoord niet terugvinden',
 	'Invalid attempt to recover password (used birthplace \'[_1]\')' => 'Ongeldige poging om wachtwoord terug te vinden (gebruikte geboorteplaats \'[_1]\')',
@@ -964,5 +965,5 @@
 	'Authenticated Commenters' => 'Geauthenticeerde reageerders',
 	'Commenter Details' => 'Details reageerder',
-	'Commenters' => 'Registratie',
+	'Commenters' => 'Reageerders',
 	'New Entry' => 'Nieuw bericht',
 	'New Page' => 'Nieuwe pagina',
@@ -1210,6 +1211,6 @@
 	'Publish Pages' => 'Pagina\'s publiceren',
 	'Unpublish Pages' => 'Pagina\'s off-line halen',
-	'Tags to add to selected pages' => 'Tags om toe te voegen aan geselecteerde \'s',
-	'Tags to remove from selected pages' => 'Tags om te verwijderen van geselecteerde \'s',
+	'Tags to add to selected pages' => 'Tags om toe te voegen aan geselecteerde pagina\'s',
+	'Tags to remove from selected pages' => 'Tags om te verwijderen van geselecteerde pagina\'s',
 	'Batch Edit Pages' => 'Pagina\'s bewerken in bulk',
 	'Tags to add to selected assets' => 'Tags om toe te voegen aan de geselecteerde mediabestanden',
@@ -1237,15 +1238,15 @@
 	'Comments in the last 7 days' => 'Reacties in de afgelopen 7 dagen',
 	'All comments in the last 24 hours' => 'Alle reacties in de laatste 24 uur',
-	'Index Templates' => 'Index van sjablonen',
+	'Index Templates' => 'Indexsjablonen',
 	'Archive Templates' => 'Archiefsjablonen',
 	'Template Modules' => 'Sjabloonmodules',
 	'System Templates' => 'Systeemsjablonen',
 	'Tags with entries' => 'Tags met berichten',
-	'Tags with pages' => 'Tags met \'s',
+	'Tags with pages' => 'Tags met pagina\'s',
 	'Tags with assets' => 'Tags met mediabestanden',
 	'Enabled Users' => 'Ingeschakelde gebruikers',
 	'Disabled Users' => 'Uitgeschakelde gebruikers',
 	'Authors' => 'Auteurs',
-	'Create' => 'Aanmaken',
+	'Create' => 'Nieuw',
 	'Manage' => 'Beheren',
 	'Design' => 'Design',
@@ -1381,5 +1382,5 @@
 	'Can edit, manage and publish blog templates.' => 'Kan blogsjablonen bewerken, beheren en opnieuw opbouwen.',
 	'Webmaster' => 'Webmaster',
-	'Can manage pages and publish blog templates.' => 'Kan painga\'s beheren en blogsjablonen opnieuw opbouwen.',
+	'Can manage pages and publish blog templates.' => 'Kan pagina\'s beheren en blogsjablonen opnieuw opbouwen.',
 	'Contributor' => 'Redactielid',
 	'Can create entries, edit their own and comment.' => 'Kan berichten aanmaken, eigen berichten bewerken en reageren.',
@@ -1548,5 +1549,5 @@
 	'disable' => 'desactiveren',
 	'You did not select any [_1] to [_2].' => 'U selecteerde geen [_1] om te [_2].',
-	'Are you sure you want to [_2] this [_1]?' => 'Bent u zeker dat u deze [_1] wenst te [_2]?',
+	'Are you sure you want to [_2] this [_1]?' => 'Opgelet: [_1] echt [_2]?',
 	'Are you sure you want to [_3] the [_1] selected [_2]?' => 'Bent u zeker dat u deze [_1] geselecteerde [_2] wenst te [_3]?',
 	'Are you certain you want to remove this role? By doing so you will be taking away the permissions currently assigned to any users and groups associated with this role.' => 'Bent u zeker dat u deze rol wenst te verwijderen?  Door dit te doen worden de permissies weggenomen van gebruikers en groepen die momenteel met deze rol geassocieerd zijn.',
@@ -1556,6 +1557,6 @@
 	'You can only act upon a maximum of [_1] [_2].' => 'U kunt enkel een handeling uitvoeren op maximum [_1] [_2].',
 	'You must select an action.' => 'U moet een handeling selecteren',
-	'to mark as spam' => 'om dit als spam aan te merken',
-	'to remove spam status' => 'om spamstatus te verwijderen',
+	'to mark as spam' => 'om als spam aan te merken',
+	'to remove spam status' => 'om spamstatus van te verwijderen',
 	'Enter URL:' => 'Voer URL in:',
 	'The tag \'[_2]\' already exists. Are you sure you want to merge \'[_1]\' with \'[_2]\'?' => 'De tag \'[_2]\' bestaat al.  Bent u zeker dat u \'[_1]\' met \'[_2]\' wenst samen te voegen?',
@@ -1739,9 +1740,9 @@
 
 ## tmpl/cms/preview_entry.tmpl
-	'Preview [_1]' => 'Voorbeeld [_1]',
-	'Re-Edit this [_1]' => 'Bewerkt dit opnieuw [_1]',
-	'Re-Edit this [_1] (e)' => 'Bewerk dit opnieuw [_1] (e)',
-	'Save this [_1]' => 'Bewaar dit [_1]',
-	'Save this [_1] (s)' => 'Bewaar dit [_1] (s)',
+	'Preview [_1]' => '[_1]voorbeeld',
+	'Re-Edit this [_1]' => '[_1] opnieuw bewerken',
+	'Re-Edit this [_1] (e)' => '[_1] opnieuw bewerken (e)',
+	'Save this [_1]' => '[_1] bewaren',
+	'Save this [_1] (s)' => '[_1] bewaren (s)',
 	'Cancel (c)' => 'Annuleer (c)',
 
@@ -1752,7 +1753,7 @@
 	'folders' => 'mappen',
 	'categories' => 'categorieÃ«n',
-	'Create [_1]' => 'Nieuwe [_1]',
-	'Edit [_1]' => 'Bewerk [_1]',
-	'A saved version of this [_1] was auto-saved [_3]. <a href="[_2]">Recover auto-saved content</a>' => 'Een bewaarde versie van [_1] werd automatisch opgeslagen [_3]. <a href="[_2]">automatisch opgeslagen inhoud terughalen</a>',
+	'Create [_1]' => '[_1] aanmaken',
+	'Edit [_1]' => '[_1] bewerken',
+	'A saved version of this [_1] was auto-saved [_3]. <a href="[_2]">Recover auto-saved content</a>' => '[_1] werd automatisch opgeslagen [_3]. <a href="[_2]">Automatisch opgeslagen versie terughalen</a>',
 	'Your [_1] has been saved.' => 'Uw [_1] is opgeslagen.',
 	'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.',
@@ -1761,11 +1762,11 @@
 	'Your changes to the comment have been saved.' => 'Uw wijzigingen aan de reactie zijn opgeslagen.',
 	'Your notification has been sent.' => 'Uw notificatie is verzonden.',
-	'You have successfully recovered your saved [_1].' => 'U heeft met succes uw opgeslagen [_1] teruggehaald',
+	'You have successfully recovered your saved [_1].' => '[_1] met succes teruggehaald.',
 	'An error occurred while trying to recover your saved [_1].' => 'Er deed zich een fout voor bij het terughalen van uw opgeslagen [_1]',
 	'You have successfully deleted the checked comment(s).' => 'Verwijdering van de geselecteerde reactie(s) is geslaagd.',
 	'You have successfully deleted the checked TrackBack(s).' => 'U heeft de geselecteerde TrackBack(s) met succes verwijderd.',
 	'[_1] Summary' => '[_1] samenvatting',
-	'Created [_1] by [_2].' => '[_1] aangemaakt dooor [_2]',
-	'Last edited [_1] by [_2].' => 'Laatst bewerkte [_1] door [_2]',
+	'Created [_1] by [_2].' => '[_1] aangemaakt door [_2]',
+	'Last edited [_1] by [_2].' => 'Laatst bewerkt [_1] door [_2]',
 	'Published [_1].' => '[_1] gepubliceerd',
 	'This [_1] has received <a href="[_4]">[quant,_2,comment,comments]</a> and <a href="[_5]">[quant,_3,trackback,trackbacks]</a>.' => '[_1] heeft <a href="[_4]">[quant,_2,reactie,reacties]</a> en <a href="[_5]">[quant,_3,trackback,trackbacks]</a> ontvangen.',
@@ -1790,15 +1791,15 @@
 	'You have unsaved changes to your [_1] that will be lost.' => 'Er zijn niet opgeslagen wijzigingen aan uw [_1] die verloren zullen gaan',
 	'Publish On' => 'Publiceren op',
-	'Publish Date' => 'Publicatiedatum',
+	'Publish Date' => 'Datum publicatie',
 	'Make primary' => 'Maak dit een hoofdcategorie',
 	'Add sub category' => 'Subcategorie toevoegen',
-	'Add [_1] name' => 'Voeg [_1]naam toe',
-	'Add new parent [_1]' => 'Voeg nieuwe ouder[_1] toe',
+	'Add [_1] name' => 'Voeg [_1] naam toe',
+	'Add new parent [_1]' => 'Voeg nieuwe hoofd[_1] toe',
 	'Add new' => 'Nieuw toevogen',
-	'Preview this [_1] (v)' => 'Voorbeeld van [_1] (v)',
-	'Delete this [_1] (v)' => 'Verwijder [_1] (v)',
-	'Share this [_1]' => 'Deel [_1] ',
+	'Preview this [_1] (v)' => '[_1] voorbeeld (v)',
+	'Delete this [_1] (v)' => '[_1] verwijderen (v)',
+	'Share this [_1]' => '[_1] delen',
 	'_external_link_target' => '_new',
-	'View published [_1]' => 'Bekijk gepubliceerde [_1]',
+	'View published [_1]' => '[_1] bekijken',
 	'&laquo; Previous' => '&laquo; Vorige',
 	'Manage [_1]' => '[_1] beheren',
@@ -1845,8 +1846,8 @@
 	'Outbound TrackBack URLs' => 'Uitgaande TrackBack URLs',
 	'View Previously Sent TrackBacks' => 'Eerder verzonden TrackBacks bekijken',
-	'<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 to [_2]</a> - Sleep deze link naar de toolbar van uw browser en klik er op wanneer u op een site bent waar u over wil bloggen.',
+	'[_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.' => '[_1]QuickPost op [_2]</a> - Sleep deze link naar de toolbar van uw browser en klik er op wanneer u op een site bent waar u over wil bloggen.',
 	'Auto-saving...' => 'Auto-opslaan...',
 	'Last auto-save at [_1]:[_2]:[_3]' => 'Laatste auto-opslag om [_1]:[_2]:[_3]',
-	'None selected' => 'Niets geselecteerd',
+	'None selected' => 'Geen geselecteerd',
 
 ## tmpl/cms/system_check.tmpl
@@ -1964,5 +1965,5 @@
 	'Results' => 'Resultaten',
 	'The name of the person who posted the comment' => 'De naam van de persoon die deze reactie',
-	'Trusted' => 'Vertrouwd',
+	'Trusted' => 'Vertrouwde',
 	'(Trusted)' => '(Vertrouwd)',
 	'Ban Commenter' => 'Verban reageerder',
@@ -1980,7 +1981,7 @@
 	'URL of commenter' => 'URL van de reageerder',
 	'View all comments with this URL' => 'Alle reacties met deze URL bekijken',
-	'Entry this comment was made on' => 'Bericht waar dit een reactie op was',
-	'Entry no longer exists' => 'Bericht bestaat niet meer',
-	'View all comments on this entry' => 'Bekijk alle reacties op dit bericht',
+	'[_1] this comment was made on' => '[_1] waarop deze reactie werd achtergelaten', # Translate - New
+	'[_1] no longer exists' => '[_1] bestaat niet meer', # Translate - New
+	'View all comments on this [_1]' => 'Alle reacties bekijken op [_1]', # Translate - New
 	'Date' => 'Datum',
 	'Date this comment was made' => 'Datum van deze reactie',
@@ -2018,5 +2019,5 @@
 	'Note: Registration is currently disabled at the system level.' => 'Opmerking: Registratie is momenteel uitgeschakeld op systeemniveau',
 	'Allow Registration' => 'Registratie toestaan',
-	'Authentication Methods' => 'Authenticatiemethodes',
+	'Authentication Methods' => 'Methodes voor authenticatie',
 	'Note: You have selected to accept comments from authenticated commenters only but authentication is not enabled. In order to receive authenticated comments, you must enable authentication.' => 'Opmerking: u heeft ervoor gekozen om enkel reacties te aanvaarden van geauthenticeerde reageerders, maar authenticatie is niet ingeschakeld.  Om geauthenticeerde reacties te kunnen ontvangen, moet u authenticatie inschakelen.',
 	'Native' => 'Ingebouwd',
@@ -2083,5 +2084,5 @@
 	'width:' => 'breedte:',
 	'pixels' => 'pixels',
-	'Link image to full-size version in a popup window.' => 'Afbeelding koppelen aan afbeelding op ware grootte in een popup venster.',
+	'Link image to full-size version in a popup window.' => 'Link naar oorspronkelijke afbeelding in popup venster.',
 	'Remember these settings' => 'Deze instellingen onthouden',
 
@@ -2097,5 +2098,6 @@
 	'Send a Notification' => 'Notificatie versturen',
 	'You must specify at least one recipient.' => 'U moet minstens Ã©Ã©n ontvanger opgeven.',
-	'Your blog\'s name, this entry\'s title and a link to view it will be sent in the notification.  Additionally, you can add a  message, include an excerpt of the entry and/or send the entire entry.' => 'De naam van uw blog, de titel van dit bericht en een link om het te bekijken zullen in de notificatie verzonden worden.  Bijkomend kunt u een boodschap toevoegen, een uittreksel van het bericht meesturen en/of de hele inhoud van het bericht.',
+	'Your blog\'s name, this entry\'s title and a link to view it will be sent in the notification.  Additionally, you can add a  message, include an excerpt of the entry and/or send the entire entry.' => '
+	De naam van uw blog, de berichttitel en een link naar het bericht zullen per mail verzonden worden.  Bijkomend kunt u een boodschap toevoegen, een uittreksel en/of de hele inhoud van het bericht.',
 	'Recipients' => 'Ontvangers',
 	'Enter email addresses on separate lines, or comma separated.' => 'Vul e-mail adressen in op aparte regels of gescheiden door komma\'s.',
@@ -2202,5 +2204,5 @@
 	'Options' => 'Opties',
 	'Create personal blog for user' => 'Persoonlijke blog aanmaken voor gebruiker',
-	'Create [_1] (s)' => 'Maak [_1] aan (s)',
+	'Create [_1] (s)' => '[_1] aanmaken (s)',
 	'_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].',
 	'Initiate Password Recovery' => 'Procedure starten om wachtwoord terug te halen',
@@ -2267,5 +2269,5 @@
 	'Publish all templates statically' => 'Alle sjablonen statisch publiceren',
 	'Publish only Archive Templates dynamically' => 'Enkel archiefsjablonen dynamisch publiceren',
-	'Set each template\'s Publish Options separately' => 'Publicatieinstellingen voor elk sjabloon apart instellen',
+	'Set each template\'s Publish Options separately' => 'Publicatie-instellingen voor elk sjabloon apart instellen',
 	'Publish all templates dynamically' => 'Alle sjablonen dynamisch publiceren',
 	'Use Publishing Queue' => 'Publicatiewachtrij gebruiken',
@@ -2402,6 +2404,6 @@
 ## tmpl/cms/rebuilding.tmpl
 	'Publishing...' => 'Publiceren...',
-	'Publishing [_1]...' => 'Bezig [_1] te publiceren...',
-	'Publishing [_1] [_2]...' => 'Bezig [_1] [_2] te publiceren...',
+	'Publishing [_1]...' => '[_1] wordt gepubliceerd...',
+	'Publishing [_1] [_2]...' => '[_1] [_2] wordt gepubliceerd...',
 	'Publishing [_1] dynamic links...' => 'Bezig [_1] dynamische links te publiceren...',
 	'Publishing [_1] archives...' => 'Bezig archieven [_1] te publiceren...',
@@ -2507,5 +2509,5 @@
 
 ## tmpl/cms/include/notification_table.tmpl
-	'Date Added' => 'Toegevoegd op',
+	'Date Added' => 'Toegevoegd',
 	'Click to edit contact' => 'Klik om contact te bewerken',
 	'Save changes' => 'Wijzigingen opslaan',
@@ -2565,16 +2567,15 @@
 	'(1 reply)' => '(1 antwoord)',
 	'([_1] replies)' => '([_1] antwoorden)',
-	'Reply' => 'Antwoord',
+	'Reply' => 'Antwoorden',
 	'Blocked' => 'Geblokkeerd',
 	'Authenticated' => 'Bevestigd',
-	'Edit this [_1] commenter' => 'Bewerk deze [_1] reageerder',
+	'Edit this [_1] commenter' => '[_1] reageerder bewerken',
 	'Search for comments by this commenter' => 'Zoek naar reacties door deze reageerder',
-	'Anonymous' => 'Anoniem',
-	'View this [_1]' => 'Bekijk deze [_1]',
+	'Anonymous' => 'Anonieme',
+	'View this [_1]' => '[_1] bekijken',
 
 ## tmpl/cms/include/chromeless_footer.tmpl
 
 ## tmpl/cms/include/backup_start.tmpl
-	'Tools: Backup' => 'Gereedschappen: Backup',
 	'Backing up Movable Type' => 'Backup maken van Movable Type',
 
@@ -2751,12 +2752,12 @@
 
 ## tmpl/cms/list_category.tmpl
-	'Your [_1] changes and additions have been made.' => 'Uw [_1] wijzigingen en toevoegingen zijn gemaakt.',
-	'You have successfully deleted the selected [_1].' => 'U heeft met succes de geselecteerde [_1] verwijderd',
-	'Create new top level [_1]' => 'Maak een nieuwe [_1] van topniveau',
+	'Your [_1] changes and additions have been made.' => 'De wijzigingen en toevoegingen aan uw [_1] zijn uitgevoerd.',
+	'You have successfully deleted the selected [_1].' => 'U heeft met succes de geselecteerde [_1] verwijderd.',
+	'Create new top level [_1]' => 'Maak een nieuwe [_1] aan op topniveau',
 	'New Parent [_1]' => 'Nieuwe ouder-[_1]',
 	'Top Level' => 'Topniveau',
 	'Collapse' => 'Inklappen',
 	'Expand' => 'Uitklappen',
-	'Move [_1]' => 'Verplaats [_1]',
+	'Move [_1]' => '[_1] verplaatsen',
 	'Move' => 'Verplaatsen',
 	'[quant,_1,TrackBack,TrackBacks]' => '[quant,_1,TrackBack,TrackBacks]',
@@ -2783,5 +2784,5 @@
 
 ## tmpl/cms/preview_strip.tmpl
-	'You are previewing the [_1] titled &ldquo;[_2]&rdquo;' => 'U bekijkt een voorbeeld van de [_1] met de titel &ldquo;[_2]&rdquo;',
+	'You are previewing the [_1] titled &ldquo;[_2]&rdquo;' => 'U bekijkt een voorbeeld van een [_1] met de titel &ldquo;[_2]&rdquo;',
 
 ## tmpl/cms/list_banlist.tmpl
@@ -2804,5 +2805,5 @@
 	'TrackBack Policy' => 'TrackBack beleid',
 	'Moderation' => 'Moderatie',
-	'Hold all TrackBacks for approval before they\'re published.' => 'Alle TrackBacks tegenhouden om goedgekeurd te worden voor ze worden gepubliceerd.',
+	'Hold all TrackBacks for approval before they\'re published.' => 'Alle TrackBacks moeten eerst goedgekeurd worden voor ze worden gepubliceerd.',
 	'Apply \'nofollow\' to URLs' => '\'nofollow\' toepassen op URL\'s',
 	'This preference affects both comments and TrackBacks.' => 'Deze instelling heeft effect op reacties en TrackBacks',
@@ -2837,7 +2838,8 @@
 	'Search for other TrackBacks with this status' => 'Andere TrackBacks met deze status zoeken',
 	'Target Entry' => 'Doelbericht',
+	'Entry no longer exists' => 'Bericht bestaat niet meer',
 	'No title' => 'Geen titel',
 	'View all TrackBacks on this entry' => 'Alle TrackBacks op dit bericht bekijken',
-	'Target Category' => 'Doelcategorie', # Translate - New
+	'Target Category' => 'Doelcategorie',
 	'Category no longer exists' => 'Categorie bestaat niet meer',
 	'View all TrackBacks on this category' => 'Alle TrackBacks op deze categorie bekijken',
@@ -2864,5 +2866,5 @@
 	'Are you sure you want to disable plugin functionality?' => 'Bent u zeker dat u plugin functionaliteit wenst uit te schakelen?',
 	'Disable this plugin?' => 'Deze plugin uitschakelen?',
-	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that have were not individually disabled.)' => 'Bent u zeker dat u plugin functionaliteit wenst in te schakelen? (Dit zal alle plugins opnieuw inschakelen die niet individueel werden uitgeschakeld.)',
+	'Are you sure you want to enable plugin functionality? (This will re-enable any plugins that were not individually disabled.)' => 'Bent u zeker dat u plugin-functies weer wenst in te schakelen? (Hierdoor zullen alle plugins opnieuw actief worden die niet individueel uitgeschakeld waren.)', # Translate - New
 	'Enable this plugin?' => 'Deze plugin activeren?',
 	'Failed to Load' => 'Laden mislukt',
@@ -3004,10 +3006,10 @@
 	'If enabled, all non-linked URLs will be transformed into links to that URL.' => 'Indien ingeschakeld zullen alle URLs die nog geen link zijn automatisch omgezet worden in links naar die URL.',
 	'Specifies the Text Formatting option to use for formatting visitor comments.' => 'Geeft weer welke tekstopmaakoptie moet worden gebruikt voor de opmaak van reacties van bezoekers.',
-	'CAPTCHA Provider' => 'CAPTCHA leverencier',
+	'CAPTCHA Provider' => 'CAPTCHA dienstverlener',
 	'none' => 'geen',
 	'No CAPTCHA provider available' => 'Geen CAPTCHA provider beschikbaar',
 	'No CAPTCHA provider is available in this system.  Please check to see if Image::Magick is installed, and CaptchaImageSourceBase directive points to captcha-source directory under mt-static/images.' => 'Er is geen CAPTCHA provider beschikbaar in dit systeem.  Gelieve te controleren of Image::Magick is geÃ¯nstalleerd en of de CaptchaImageSourceBase directief verwijst naar de captcha-source map onder mt-static/images.',
-	'Use Comment Confirmation Page' => 'Reactiebevestigingspagina gebruiken',
-	'Use comment confirmation page' => 'Reactiebevestigingspagina gebruiken',
+	'Use Comment Confirmation Page' => 'Pagina voor bevestigen reacties gebruiken',
+	'Use comment confirmation page' => 'Pagina voor bevestigen reacties gebruiken',
 
 ## tmpl/cms/edit_blog.tmpl
@@ -3098,5 +3100,5 @@
 	'Replace Word Chars' => 'Karakters uit Word vervangen',
 	'Smart Replace' => 'Slim vervangen',
-	'Replace UTF-8 characters frequently used by word processors with their more common web equivalents.' => 'Vervang UTF-8 karakters die vaak worden gebruikt door tekstverwerkers met hun meer gestandaardiseerde web-equivalenten.',
+	'Replace UTF-8 characters frequently used by word processors with their more common web equivalents.' => 'Vervang UTF-8 karakters die vaak worden gebruikt door tekstverwerkers door hun meer gestandaardiseerde web-equivalenten.',
 	'No substitution' => 'Geen vervanging',
 	'Character entities (&amp#8221;, &amp#8220;, etc.)' => 'Karakter entiteiten (&amp#8221;, &amp#8220;, etc.)',
@@ -3191,5 +3193,5 @@
 	Gelukwensen met de installatie van Movable Type, het krachtigste blog-, publicatie- en social mediaplatform ter wereld.  Om u te helpen van start te gaan hebben we enkele links verzameld naar de meest voorkomende dingen die nieuwe gebruikers willen doen:',
 	'Add more users to your blog' => 'Voeg meer gebruikers toe aan uw weblog',
-	'Start building your network of blogs and your community now. Invite users to join your blog and promote them to authors.' => 'Begin met het opbouwen van uw blognetwerk en uw gemeenschap.  Nodig gebruikers aan om lid te worden van uw blog en promoveer hen tot auteur.',
+	'Start building your network of blogs and your community now. Invite users to join your blog and promote them to authors.' => 'Begin met het opbouwen van uw blognetwerk en uw gemeenschap.  Nodig gebruikers uit om lid te worden van uw blog en promoveer hen tot auteur.',
 
 ## tmpl/cms/widget/mt_news.tmpl
@@ -3366,6 +3368,6 @@
 	'Thank you registering for an account to comment on [_1].' => 'Bedankt om een account aan te maken om te kunnen reageren op [_1].',
 	'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 comment on [_1].' => 'Voor uw eigen veiligheid en om fraude te vermijden vragen we dat u deze account eerst bevestigt samen met uw e-mail adres.  Eens bevestigd kunt u meteen reageren op [_1].',
-	'To confirm your account, please click on or cut and paste the following URL into a web browser:' => 'Om uw account te bevestigen, moet u op deze link klikken of de URL in uw webbrowser plakken:',
-	'If you did not make this request, or you don\'t want to register for an account to comment on [_1], then no further action is required.' => 'Als u deze account niet heeft aangevraagd, of als u niet wenste te registreren om te kunnen reageren op [_1] dan hoeft u verder niets te doen.',
+	'To confirm your account, please click on or cut and paste the following URL into a web browser:' => 'Om uw account te bevestigen moet u op deze link klikken of de URL in uw webbrowser plakken:',
+	'If you did not make this request, or you don\'t want to register for an account to comment on [_1], then no further action is required.' => 'Als u deze account niet heeft aangevraagd, of als u niet de bedoeling had te registreren om te kunnen reageren op [_1] dan hoeft u verder niets te doen.',
 	'Thank you very much for your understanding.' => 'Wij danken u voor uw begrip.',
 	'Sincerely,' => 'Hoogachtend,',
@@ -3397,5 +3399,5 @@
 	'An unapproved comment has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site.' => 'Een niet gekeurde reactie is binnengekomen op uw weblog [_1], op bericht #[_2] ([_3]). U moet deze reactie eerst goedkeuren voor ze op uw site verschijnt.',
 	'A new comment has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'Een nieuwe reactie is gepubliceerd op uw blog [_1], op bericht #[_2] ([_3]).',
-	'Comment name: [_1]' => 'Naam reactie: [_1]',
+	'Commenter name: [_1]' => 'Naam reageerder: [_1]', # Translate - New
 	'Commenter email address: [_1]' => 'E-mail adres reageerder: [_1]',
 	'Commenter URL: [_1]' => 'URL reageerder: [_1]',
@@ -3408,6 +3410,6 @@
 ## tmpl/email/notify-entry.tmpl
 	'A new [_3] entitled \'[_1]\' has been published to [_2].' => 'Een [_3] getiteld \'[_1]\' is gepubliceerd op [_2].',
-	'View post:' => 'Bericht bekijken:',
-	'Entry Title: [_1]' => 'Titel bericht:',
+	'View [_1]:' => '[_1] bekijken:', # Translate - New
+	'[_1] Title: [_2]' => '[_1] titel: [_2]', # Translate - New
 	'Publish Date: [_1]' => 'Publicatiedatum: [_1]',
 	'Message from Sender:' => 'Boodschap van afzender:',
@@ -3525,5 +3527,4 @@
 
 ## plugins/TemplateRefresh/tmpl/results.tmpl
-	'Backup and Refresh Templates' => 'Backup nemen en sjablonen herstellen',
 	'No templates were selected to process.' => 'Er werden geen sjablonen geselecteerd om te bewerken.',
 	'Return to templates' => 'Terugkeren naar sjablonen',
@@ -3595,5 +3596,5 @@
 	'Monthly archive dropdown' => 'Uitklapmenu maandarchieven',
 	'Pages list (nested)' => 'Paginalijst (genest)',
-	'Photos' => 'Fo\'s',
+	'Photos' => 'Foto\'s',
 
 ## plugins/WidgetManager/default_widgets/monthly_archive_list.tmpl
@@ -3636,5 +3637,4 @@
 
 ## plugins/WidgetManager/default_widgets/tag_cloud_module.tmpl
-	'Tag cloud' => 'Tagcloud',
 
 ## plugins/WidgetManager/default_widgets/powered_by.tmpl
@@ -3833,5 +3833,5 @@
 );
 
-## New words: 2
+## New words: 70
 
 1;
Index: /branches/athena/lib/MT/L10N/ja.pm
===================================================================
--- /branches/athena/lib/MT/L10N/ja.pm (revision 1091)
+++ /branches/athena/lib/MT/L10N/ja.pm (revision 1092)
@@ -15,9 +15,27 @@
 %Lexicon = (
 
+## php/lib/archive_lib.php
+	'Page' => 'ãŠã§ãããŒãž',
+	'Individual' => 'ãã­ã°èšäº',
+	'Yearly' => 'å¹Žå¥',
+	'Monthly' => 'æå¥',
+	'Daily' => 'æ¥å¥',
+	'Weekly' => 'é±å¥',
+	'Author' => 'ãŠãŒã¶ãŒ',
+	'Author (#' => 'ãŠãŒã¶ãŒ (#',
+	'Author Yearly' => 'ãŠãŒã¶ãŒ å¹Žå¥',
+	'Author Monthly' => 'ãŠãŒã¶ãŒ æå¥',
+	'Author Daily' => 'ãŠãŒã¶ãŒ æ¥å¥',
+	'Author Weekly' => 'ãŠãŒã¶ãŒ é±å¥',
+	'Category Yearly' => 'ã«ããŽãª å¹Žå¥',
+	'Category Monthly' => 'ã«ããŽãª æå¥',
+	'Category Daily' => 'ã«ããŽãª æ¥å¥',
+	'Category Weekly' => 'ã«ããŽãª é±å¥',
+
 ## php/lib/function.mtremotesigninlink.php
 	'TypeKey authentication is not enabled in this blog.  MTRemoteSignInLink can\'t be used.' => 'ãã­ã°ã§TypeKeyèªèšŒãæå¹ã«ãªã£ãŠããªãã®ã§ãMTRemoteSignInLinkã¯å©çšã§ããŸããã',
 
-## php/lib/block.mtentries.php
-	'sort_by="score" must be used in combination with namespace.' => 'sort_by="score"ãæå®ãããšãã¯namespaceãæå®ããªããã°ãªããŸããã',
+## php/lib/function.mtproductname.php
+	'$short_name [_1]' => '$short_name [_1]',
 
 ## php/lib/captcha_lib.php
@@ -25,4 +43,7 @@
 	'Type the characters you see in the picture above.' => 'ç»åã®äž­ã«èŠããæå­ãå
 ¥åããŠãã ããã',
+
+## php/lib/block.mtassets.php
+	'sort_by="score" must be used in combination with namespace.' => 'sort_by="score"ãæå®ãããšãã¯namespaceãæå®ããªããã°ãªããŸããã',
 
 ## php/lib/function.mtcommentfields.php
@@ -50,28 +71,7 @@
 	'(You may use HTML tags for style)' => '(ã¹ã¿ã€ã«çšã®HTMLã¿ã°ãäœ¿ãããšãã§ããŸã)',
 
-## php/lib/archive_lib.php
-	'Page' => 'ãŠã§ãããŒãž',
-	'Individual' => 'ãã­ã°èšäº',
-	'Yearly' => 'å¹Žå¥',
-	'Monthly' => 'æå¥',
-	'Daily' => 'æ¥å¥',
-	'Weekly' => 'é±å¥',
-	'Author' => 'ãŠãŒã¶ãŒ',
-	'Author (#' => 'ãŠãŒã¶ãŒ (#',
-	'Author Yearly' => 'ãŠãŒã¶ãŒ å¹Žå¥',
-	'Author Monthly' => 'ãŠãŒã¶ãŒ æå¥',
-	'Author Daily' => 'ãŠãŒã¶ãŒ æ¥å¥',
-	'Author Weekly' => 'ãŠãŒã¶ãŒ é±å¥',
-	'Category Yearly' => 'ã«ããŽãª å¹Žå¥',
-	'Category Monthly' => 'ã«ããŽãª æå¥',
-	'Category Daily' => 'ã«ããŽãª æ¥å¥',
-	'Category Weekly' => 'ã«ããŽãª é±å¥',
+## php/lib/block.mtentries.php
 
 ## php/lib/function.mtauthordisplayname.php
-
-## php/lib/function.mtproductname.php
-	'$short_name [_1]' => '$short_name [_1]',
-
-## php/lib/block.mtassets.php
 
 ## mt-check.cgi
@@ -198,37 +198,11 @@
 	'Optional' => 'ãªãã·ã§ã³',
 
-## default_templates/entry.mtml
+## default_templates/page.mtml
 	'Header' => 'ããããŒ',
-	'Entry Detail' => 'ãã­ã°èšäºã®è©³çŽ°',
+	'Page Detail' => 'ãŠã§ãããŒãžã®è©³çŽ°',
 	'TrackBacks' => 'ãã©ãã¯ããã¯',
 
-## default_templates/footer.mtml
-	'Sidebar - 2 Column Layout' => 'ãµã€ãããŒ (2ã«ã©ã )',
-	'Sidebar - 3 Column Layout' => 'ãµã€ãããŒ (3ã«ã©ã )',
-	'_POWERED_BY' => 'Powered by<br /><a href="http://www.sixapart.jp/movabletype/"><$MTProductName$></a>',
-	'This blog is licensed under a <a href="[_1]">Creative Commons License</a>.' => 'ãã®ãã­ã°ã¯<a href="[_1]">ã¯ãªãšã€ãã£ãã»ã³ã¢ã³ãº</a>ã§ã©ã€ã»ã³ã¹ãããŠããŸãã',
-
-## default_templates/comment_preview.mtml
-	'Comment on [_1]' => '[_1]ãžã®ã³ã¡ã³ã',
-	'Previewing your Comment' => 'ã³ã¡ã³ãã®ç¢ºèª',
-	'Comment Detail' => 'ã³ã¡ã³ãè©³çŽ°',
-
-## default_templates/trackbacks.mtml
-	'[_1] TrackBacks' => 'ãã©ãã¯ããã¯([_1])',
-	'Listed below are links to blogs that reference this entry: <a href="[_1]">[_2]</a>.' => 'ãã®ãã­ã°èšäºãåç
-§ããŠãããã­ã°äžèŠ§: <a href="[_1]">[_2]</a>',
-	'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'ãã®ãã­ã°èšäºã«å¯Ÿãããã©ãã¯ããã¯URL: <span id="trackbacks-link">[_1]</span>',
-	'&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a>([_3])~ã®ãã©ãã¯ããã¯',
-	'[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">ç¶ããèª­ã</a>',
-	'Tracked on <a href="[_1]">[_2]</a>' => '<a href="[_1]">[_2]</a>',
-
-## default_templates/entry_summary.mtml
-	'Entry Metadata' => 'ãã­ã°èšäºã®ã¡ã¿ããŒã¿',
-	'Tags' => 'ã¿ã°',
-	'Continue reading <a href="[_1]">[_2]</a>.' => '<a href="[_1]">[_2]</a>ã®ç¶ããèª­ã',
-
-## default_templates/comment_detail.mtml
-	'[_1] [_2] said:' => '[_1] [_2]:',
-	'<a href="[_1]" title="Permalink to this comment">[_2]</a>' => '<a href="[_1]" title="ã³ã¡ã³ãã®URL">[_2]</a>',
+## default_templates/rss.mtml
+	'Copyright [_1]' => 'Copyright [_1]',
 
 ## default_templates/comment_response.mtml
@@ -245,8 +219,34 @@
 ã®ãã­ã°èšäº</a>ã«æ»ã',
 
-## default_templates/tags.mtml
-
-## default_templates/rss.mtml
-	'Copyright [_1]' => 'Copyright [_1]',
+## default_templates/archive_index.mtml
+	'Archives' => 'ã¢ãŒã«ã€ã',
+	'Monthly Archives' => 'æå¥ã¢ãŒã«ã€ã',
+	'Categories' => 'ã«ããŽãª',
+	'Author Archives' => 'ãŠãŒã¶ãŒã¢ãŒã«ã€ã',
+	'Category Monthly Archives' => 'æå¥ã«ããŽãªã¢ãŒã«ã€ã',
+	'Author Monthly Archives' => 'æå¥ãŠãŒã¶ãŒã¢ãŒã«ã€ã',
+
+## default_templates/trackbacks.mtml
+	'[_1] TrackBacks' => 'ãã©ãã¯ããã¯([_1])',
+	'Listed below are links to blogs that reference this entry: <a href="[_1]">[_2]</a>.' => 'ãã®ãã­ã°èšäºãåç
+§ããŠãããã­ã°äžèŠ§: <a href="[_1]">[_2]</a>',
+	'TrackBack URL for this entry: <span id="trackbacks-link">[_1]</span>' => 'ãã®ãã­ã°èšäºã«å¯Ÿãããã©ãã¯ããã¯URL: <span id="trackbacks-link">[_1]</span>',
+	'&raquo; <a href="[_1]">[_2]</a> from [_3]' => '&raquo; <a href="[_1]">[_2]</a>([_3])~ã®ãã©ãã¯ããã¯',
+	'[_1] <a href="[_2]">Read More</a>' => '[_1] <a href="[_2]">ç¶ããèª­ã</a>',
+	'Tracked on <a href="[_1]">[_2]</a>' => '<a href="[_1]">[_2]</a>',
+
+## default_templates/main_index.mtml
+	'Entry Summary' => 'ãã­ã°èšäºã®æŠèŠ',
+
+## default_templates/entry_summary.mtml
+	'Entry Metadata' => 'ãã­ã°èšäºã®ã¡ã¿ããŒã¿',
+	'Tags' => 'ã¿ã°',
+	'Continue reading <a href="[_1]">[_2]</a>.' => '<a href="[_1]">[_2]</a>ã®ç¶ããèª­ã',
+
+## default_templates/entry_detail.mtml
+
+## default_templates/comment_detail.mtml
+	'[_1] [_2] said:' => '[_1] [_2]:',
+	'<a href="[_1]" title="Permalink to this comment">[_2]</a>' => '<a href="[_1]" title="ã³ã¡ã³ãã®URL">[_2]</a>',
 
 ## default_templates/comments.mtml
@@ -254,21 +254,5 @@
 ¥åãã©ãŒã ',
 	'[_1] Comments' => 'ã³ã¡ã³ã([_1])',
-
-## default_templates/entry_metadata.mtml
-	'By [_1] on [_2]' => '[_2] [_1]',
-	'Permalink' => 'åå¥ããŒãž',
-	'Comments ([_1])' => 'ã³ã¡ã³ã([_1])',
-	'TrackBacks ([_1])' => 'ãã©ãã¯ããã¯([_1])',
-
-## default_templates/header.mtml
-	'[_1]: Search Results' => '[_1]: æ€çŽ¢çµæ',
-	'[_1] - [_2]' => '[_1] - [_2]',
-	'[_1]: [_2]' => '[_1]: [_2]',
-
-## default_templates/entry_detail.mtml
-	'Categories' => 'ã«ããŽãª',
-
-## default_templates/dynamic_error.mtml
-	'Page Not Found' => 'ããŒãžãèŠã€ãããŸããã',
+	'Comment Detail' => 'ã³ã¡ã³ãè©³çŽ°',
 
 ## default_templates/comment_form.mtml
@@ -277,4 +261,30 @@
 å ±ãèšæ¶',
 	'Cancel' => 'ã­ã£ã³ã»ã«',
+
+## default_templates/categories.mtml
+
+## default_templates/search_results.mtml
+	'Search Results' => 'æ€çŽ¢çµæ',
+	'Search this site' => 'ãã®ãã­ã°ãæ€çŽ¢',
+	'Search' => 'æ€çŽ¢',
+	'Match case' => 'å€§æå­å°æå­ãåºå¥ãã',
+	'Regex search' => 'æ­£èŠè¡šçŸ',
+	'Matching entries matching &ldquo;[_1]&rdquo; from [_2]' => '[_2]ã§&ldquo;[_1]&rdquo;ãå«ãŸãããã­ã°èšäº',
+	'Entries tagged with &ldquo;[_1]&rdquo; from [_2]' => '[_2]ã§&ldquo;[_1]&rdquo;ã¿ã°ã®ä»ããŠãããã­ã°èšäº',
+	'Entries matching &ldquo;[_1]&rdquo;' => '&ldquo;[_1]&rdquo;ãå«ãŸãããã­ã°èšäº',
+	'Entries tagged with &ldquo;[_1]&rdquo;' => '&ldquo;[_1]&rdquo;ã¿ã°ã®ä»ããŠãããã­ã°èšäº',
+	'No pages were found containing &ldquo;[_1]&rdquo;.' => '&ldquo;[_1]&rdquo;ãå«ãã³ã³ãã³ããèŠã€ãããŸããã§ããã',
+	'Instructions' => 'äŸ',
+	'By default, this search engine looks for all words in any order. To search for an exact phrase, enclose the phrase in quotes:' => 'ãã¹ãŠã®åèªãé åºã«é¢ä¿ãªãæ€çŽ¢ãããŸãããã¬ãŒãºã§æ€çŽ¢ããããšãã¯åŒçšç¬Šã§å²ãã§ãã ããã',
+	'movable type' => 'movable type',
+	'The search engine also supports AND, OR, and NOT keywords to specify boolean expressions:' => 'ANDãORãNOTãå
+¥ããããšã§è«çæ€çŽ¢ãè¡ãããšãã§ããŸãã',
+	'personal OR publishing' => 'åäºº OR åºç',
+	'publishing NOT personal' => 'åäºº NOT åºç',
+
+## default_templates/header.mtml
+	'[_1]: Search Results' => '[_1]: æ€çŽ¢çµæ',
+	'[_1] - [_2]' => '[_1] - [_2]',
+	'[_1]: [_2]' => '[_1]: [_2]',
 
 ## default_templates/sidebar_2col.mtml
@@ -286,5 +296,4 @@
 	'Subscribe to feed' => 'è³Œèª­ãã',
 	'[_1] ([_2])' => '[_1] ([_2])',
-	'Search' => 'æ€çŽ¢',
 	'About this Entry' => 'ãã®ãã­ã°èšäºã«ã€ããŠ',
 	'About this Archive' => 'ãã®ã¢ãŒã«ã€ãã«ã€ããŠ',
@@ -308,5 +317,4 @@
 	'Recent Entries' => 'æè¿ã®ãã­ã°èšäº',
 	'Tag Cloud' => 'ã¿ã°ã¯ã©ãŠã',
-	'Author Archives' => 'ãŠãŒã¶ãŒã¢ãŒã«ã€ã',
 	'[_1] <a href="[_2]">Archives</a>' => '[_1] <a href="[_2]">ã¢ãŒã«ã€ã</a>',
 	'[_1]: Monthly Archives' => '[_1]: æå¥ã¢ãŒã«ã€ã',
@@ -314,42 +322,5 @@
 	'Powered by Movable Type [_1]' => 'Powered by Movable Type [_1]',
 
-## default_templates/categories.mtml
-
-## default_templates/search_results.mtml
-	'Search Results' => 'æ€çŽ¢çµæ',
-	'Search this site' => 'ãã®ãã­ã°ãæ€çŽ¢',
-	'Match case' => 'å€§æå­å°æå­ãåºå¥ãã',
-	'Regex search' => 'æ­£èŠè¡šçŸ',
-	'Matching entries matching &ldquo;[_1]&rdquo; from [_2]' => '[_2]ã§&ldquo;[_1]&rdquo;ãå«ãŸãããã­ã°èšäº',
-	'Entries tagged with &ldquo;[_1]&rdquo; from [_2]' => '[_2]ã§&ldquo;[_1]&rdquo;ã¿ã°ã®ä»ããŠãããã­ã°èšäº',
-	'Entry Summary' => 'ãã­ã°èšäºã®æŠèŠ',
-	'Entries matching &ldquo;[_1]&rdquo;' => '&ldquo;[_1]&rdquo;ãå«ãŸãããã­ã°èšäº',
-	'Entries tagged with &ldquo;[_1]&rdquo;' => '&ldquo;[_1]&rdquo;ã¿ã°ã®ä»ããŠãããã­ã°èšäº',
-	'No pages were found containing &ldquo;[_1]&rdquo;.' => '&ldquo;[_1]&rdquo;ãå«ãã³ã³ãã³ããèŠã€ãããŸããã§ããã',
-	'Instructions' => 'äŸ',
-	'By default, this search engine looks for all words in any order. To search for an exact phrase, enclose the phrase in quotes:' => 'ãã¹ãŠã®åèªãé åºã«é¢ä¿ãªãæ€çŽ¢ãããŸãããã¬ãŒãºã§æ€çŽ¢ããããšãã¯åŒçšç¬Šã§å²ãã§ãã ããã',
-	'movable type' => 'movable type',
-	'The search engine also supports AND, OR, and NOT keywords to specify boolean expressions:' => 'ANDãORãNOTãå
-¥ããããšã§è«çæ€çŽ¢ãè¡ãããšãã§ããŸãã',
-	'personal OR publishing' => 'åäºº OR åºç',
-	'publishing NOT personal' => 'åäºº NOT åºç',
-
-## default_templates/page.mtml
-	'Page Detail' => 'ãŠã§ãããŒãžã®è©³çŽ°',
-
-## default_templates/archive_index.mtml
-	'Archives' => 'ã¢ãŒã«ã€ã',
-	'Monthly Archives' => 'æå¥ã¢ãŒã«ã€ã',
-	'Category Monthly Archives' => 'æå¥ã«ããŽãªã¢ãŒã«ã€ã',
-	'Author Monthly Archives' => 'æå¥ãŠãŒã¶ãŒã¢ãŒã«ã€ã',
-
-## default_templates/javascript.mtml
-	'You do not have permission to comment on this blog.' => 'ãã®ãã­ã°ã«ã¯ã³ã¡ã³ãããæš©éãæã£ãŠããŸããã',
-	'Sign in</a> to comment on this entry.' => 'ãµã€ã³ã€ã³</a>ããŠããã³ã¡ã³ãããŠãã ããã',
-	'Sign in</a> to comment on this entry,' => 'ãµã€ã³ã€ã³</a>ããŠããã³ã¡ã³ãããŠãã ããã',
-	'or ' => '', # Translate - New
-	'comment anonymously.' => 'å¿åã§ã³ã¡ã³ãããããšãã§ããŸãã',
-
-## default_templates/main_index.mtml
+## default_templates/sidebar_3col.mtml
 
 ## default_templates/entry_listing.mtml
@@ -357,244 +328,36 @@
 	'Recently in <em>[_1]</em> Category' => '<em>[_1]</em>ã®æè¿ã®ãã­ã°èšäº',
 	'Recently by <em>[_1]</em>' => '<em>[_1]</em>ã«ããæè¿ã®ãã­ã°èšäº',
-	'Main Index' => 'ã€ã³ããã¯ã¹ããŒãž',
-
-## default_templates/sidebar_3col.mtml
-
-## lib/MT/Trackback.pm
-	'TrackBack' => 'ãã©ãã¯ããã¯',
-
-## lib/MT/TaskMgr.pm
-	'Unable to secure lock for executing system tasks. Make sure your TempDir location ([_1]) is writable.' => 'ã¿ã¹ã¯ãå®è¡ããããã«å¿
-èŠãªã­ãã¯ãç²åŸã§ããŸããã§ãããTempDir([_1])ã«æžãèŸŒã¿ã§ãããã©ããç¢ºèªããŠãã ããã',
-	'Error during task \'[_1]\': [_2]' => '\'[_1]\'ã®å®è¡äž­ã«ãšã©ãŒãçºçããŸãã: [_2]',
-	'Scheduled Tasks Update' => 'ã¹ã±ãžã¥ãŒã«ãããã¿ã¹ã¯',
-	'The following tasks were run:' => 'ä»¥äžã®ã¿ã¹ã¯ãå®è¡ããŸãã:',
-
-## lib/MT/ImportExport.pm
-	'No Blog' => 'ãã­ã°ããããŸããã',
-	'You need to provide a password if you are going to create new users for each user listed in your blog.' => 'ãã­ã°ã«ãŠãŒã¶ãŒãè¿œå ããããã«ã¯ããã¹ã¯ãŒããæå®ããå¿
-èŠããããŸãã',
-	'Need either ImportAs or ParentAuthor' => 'ãèªåã®ãã­ã°èšäºãšããŠã€ã³ããŒãããããããã­ã°èšäºã®èè
-ãå€æŽããªããã®ã©ã¡ãããéžæããŠãã ããã',
-	'Importing entries from file \'[_1]\'' => 'ãã¡ã€ã«\'[_1]\'ããã€ã³ããŒãããŠããŸãã',
-	'Creating new user (\'[_1]\')...' => 'ãŠãŒã¶ãŒ([_1])ãäœæããŠããŸã...',
-	'ok' => 'OK',
-	'failed' => 'å€±æ',
-	'Saving user failed: [_1]' => 'ãŠãŒã¶ãŒãäœæã§ããŸããã§ãã: [_1]',
-	'Assigning permissions for new user...' => 'äœæããããŠãŒã¶ãŒã«æš©éãèš­å®ããŠããŸã...',
-	'Saving permission failed: [_1]' => 'æš©éãèš­å®ã§ããŸããã§ãã: [_1]',
-	'Creating new category (\'[_1]\')...' => 'ã«ããŽãª([_1])ãäœæããŠããŸã...',
-	'Saving category failed: [_1]' => 'ã«ããŽãªãä¿å­ã§ããŸããã§ãã: [_1]',
-	'Invalid status value \'[_1]\'' => 'ç¶æ
-[_1]ã¯æ­£ãããããŸããã',
-	'Invalid allow pings value \'[_1]\'' => 'ãã©ãã¯ããã¯ã®åä¿¡èš­å®ãäžæ­£ã§ãã',
-	'Can\'t find existing entry with timestamp \'[_1]\'... skipping comments, and moving on to next entry.' => 'ã¿ã€ã ã¹ã¿ã³ã\'[_1]\'ã«åèŽãããã­ã°èšäºãèŠã€ãããŸãããã³ã¡ã³ãã®åŠçãäž­æ­¢ããŠæ¬¡ã®ãã­ã°èšäºãžé²ã¿ãŸãã',
-	'Importing into existing entry [_1] (\'[_2]\')' => 'æ¢å­ã®ãã­ã°èšäº[_1]([_2])ã«ã€ã³ããŒãããŠããŸãã',
-	'Saving entry (\'[_1]\')...' => 'ãã­ã°èšäº([_1])ãä¿å­ããŠããŸã...',
-	'ok (ID [_1])' => 'å®äº (ID [_1])',
-	'Saving entry failed: [_1]' => 'ãã­ã°èšäºãä¿å­ã§ããŸããã§ãã: [_1]',
-	'Saving placement failed: [_1]' => 'ãã­ã°èšäºãšã«ããŽãªã®é¢é£ä»ããèš­å®ã§ããŸããã§ãã: [_1]',
-	'Creating new comment (from \'[_1]\')...' => '\'[_1]\'ããã®ã³ã¡ã³ããã€ã³ããŒãããŠããŸã...',
-	'Saving comment failed: [_1]' => 'ã³ã¡ã³ããä¿å­ã§ããŸããã§ãã: [_1]',
-	'Entry has no MT::Trackback object!' => 'ãã­ã°èšäºã«ãã©ãã¯ããã¯ã®èš­å®ããããŸããã',
-	'Creating new ping (\'[_1]\')...' => '\'[_1]\'ã®ãã©ãã¯ããã¯ãã€ã³ããŒãããŠããŸã...',
-	'Saving ping failed: [_1]' => 'ãã©ãã¯ããã¯ãä¿å­ã§ããŸããã§ãã: [_1]',
-	'Export failed on entry \'[_1]\': [_2]' => 'ãšã¯ã¹ããŒãã«å€±æããŸããããã­ã°èšäº\'[_1]\': [_2]',
-	'Invalid date format \'[_1]\'; must be \'MM/DD/YYYY HH:MM:SS AM|PM\' (AM|PM is optional)' => 'æ¥ä»ã®åœ¢åŒãæ­£ãããããŸããã\'MM/DD/YYYY HH:MM:SS AM|PM\' (AM|PMã¯ä»»æ)ã§ãªããã°ãªããŸããã',
-
-## lib/MT/ObjectAsset.pm
-	'Asset Placement' => 'ã¢ã€ãã ã®é¢é£ä»ã',
-
-## lib/MT/Plugin/JunkFilter.pm
-	'[_1]: [_2][_3] from rule [_4][_5]' => '[_1]: ã«ãŒã«[_4][_5]ã«ããå€å®ã¹ã³ã¢ - [_2][_3]',
-	'[_1]: [_2][_3] from test [_4]' => '[_1]: æ€æ»[_4]ã«ããå€å®ã¹ã³ã¢ - [_2][_3]',
-
-## lib/MT/FileMgr/FTP.pm
-	'Creating path \'[_1]\' failed: [_2]' => 'ãã¹\'[_1]\'ã®äœæã«å€±æããŸãã: [_2]',
-	'Renaming \'[_1]\' to \'[_2]\' failed: [_3]' => '\'[_1]\'ã\'[_2]\'ã«å€æŽã§ããŸããã§ãã: [_3]',
-	'Deleting \'[_1]\' failed: [_2]' => '\'[_1]\'ãåé€ã§ããŸããã§ãã: [_2]',
-
-## lib/MT/FileMgr/Local.pm
-	'Opening local file \'[_1]\' failed: [_2]' => '\'[_1]\'ãéããŸããã§ãã: [_2]',
-
-## lib/MT/FileMgr/SFTP.pm
-	'SFTP connection failed: [_1]' => 'SFTPã®æ¥ç¶ã«å€±æããŸãã: [_1]',
-	'SFTP get failed: [_1]' => 'SFTPã§GETã«å€±æããŸãã: [_1]',
-	'SFTP put failed: [_1]' => 'SFTPã§PUTã«å€±æããŸãã: [_1]',
-
-## lib/MT/FileMgr/DAV.pm
-	'DAV connection failed: [_1]' => 'DAV connectionã«å€±æããŸãã: [_1]',
-	'DAV open failed: [_1]' => 'DAV openã«å€±æããŸãã: [_1]',
-	'DAV get failed: [_1]' => 'DAV getã«å€±æããŸãã: [_1]',
-	'DAV put failed: [_1]' => 'DAV putã«å€±æããŸãã: [_1]',
-
-## lib/MT/App.pm
-	'First Weblog' => 'First Weblog',
-	'Error loading blog #[_1] for user provisioning. Check your NewUserTemplateBlogId setting.' => 'æ°èŠãŠãŒã¶ãŒçšã®ãã­ã°(ID:[_1])ãã­ãŒãã§ããŸããã§ãããNewUserTemplateBlogIdã®èš­å®ãç¢ºèªããŠãã ããã',
-	'Error provisioning blog for new user \'[_1]\' using template blog #[_2].' => 'æ°èŠãŠãŒã¶ãŒ\'[_1]\'çšã®ãã­ã°ãè€è£œå
-ã®ãã­ã°(ID:[_2])ããäœæã§ããŸããã§ããã',
-	'Error creating directory [_1] for blog #[_2].' => 'ãã­ã°(ID:[_2])ã®ãã£ã¬ã¯ããª[_1]ãäœæã§ããŸããã§ããã',
-	'Error provisioning blog for new user \'[_1] (ID: [_2])\'.' => 'æ°èŠãŠãŒã¶ãŒ\'[_1]\'çšã®ãã­ã°ãäœæã§ããŸããã§ããã',
-	'Blog \'[_1] (ID: [_2])\' for user \'[_3] (ID: [_4])\' has been created.' => '\'[_3]\'(ID:[_4])ã®ãã­ã°\'[_1]\'(ID:[_2])ãäœæããŸããã',
-	'Error assigning blog administration rights to user \'[_1] (ID: [_2])\' for blog \'[_3] (ID: [_4])\'. No suitable blog administrator role was found.' => '\'[_1]\'(ID:[_2])ããã­ã°\'[_3]\'(ID:[_4])ã®ç®¡çè
-ã«ã§ããŸããã§ããããã­ã°ã®ç®¡çæš©éãæã€ã­ãŒã«ãèŠã€ãããŸããã§ããã',
-	'The login could not be confirmed because of a database error ([_1])' => 'ããŒã¿ããŒã¹ã®ãšã©ãŒã§ã­ã°ã€ã³ãç¢ºèªã§ããŸããã§ãã: [_1]',
-	'Permission denied.' => 'æš©éããããŸããã',
-	'Invalid login.' => 'ã­ã°ã€ã³ãäžæ­£ã§ãã',
-	'Failed login attempt by unknown user \'[_1]\'' => '[_1]ãšãããŠãŒã¶ãŒã¯å­åšããªãã®ã§ã­ã°ã€ã³ã§ããŸããã§ããã',
-	'Failed login attempt by disabled user \'[_1]\'' => '[_1]ã¯ç¡å¹ãªãŠãŒã¶ãŒãªã®ã§ã­ã°ã€ã³ã§ããŸããã§ããã',
-	'This account has been disabled. Please see your system administrator for access.' => 'ãã®ã¢ã«ãŠã³ãã¯ç¡å¹ã«ãããŠããŸããã·ã¹ãã ç®¡çè
-ã«åãåãããŠãã ããã',
-	'This account has been deleted. Please see your system administrator for access.' => 'ãã®ã¢ã«ãŠã³ãã¯åé€ãããŸãããã·ã¹ãã ç®¡çè
-ã«åãåãããŠãã ããã',
-	'User cannot be created: [_1].' => 'ãŠãŒã¶ãŒãäœæã§ããŸããã§ãã: [_1]',
-	'User \'[_1]\' has been created.' => 'ãŠãŒã¶ãŒ\'[_1]\'ãäœæããŸããã',
-	'User \'[_1]\' (ID:[_2]) logged in successfully' => 'ãŠãŒã¶ãŒ\'[_1]\'(ID[_2])ãã­ã°ã€ã³ããŸããã',
-	'Invalid login attempt from user \'[_1]\'' => '\'[_1]\'ãã­ã°ã€ã³ã«å€±æããŸããã',
-	'User \'[_1]\' (ID:[_2]) logged out' => 'ãŠãŒã¶ãŒ\'[_1]\'(ID[_2])ãã­ã°ã¢ãŠãããŸããã',
-	'New Comment Added to \'[_1]\'' => '\'[_1]\'ã«ã³ã¡ã³ãããããŸããã',
-	'Close' => 'éãã',
-	'Go Back' => 'æ»ã',
-	'The file you uploaded is too large.' => 'ã¢ããã­ãŒããããã¡ã€ã«ã¯å€§ããããŸãã',
-	'Unknown action [_1]' => '[_1]ã¯ã§ããŸããã',
-	'Warnings and Log Messages' => 'è­Šåãšã¡ãã»ãŒãž',
-	'Removed [_1].' => '[_1]ãåé€ããŸããã',
-	'Loading template \'[_1]\' failed.' => 'ãã³ãã¬ãŒãã[_1]ãã®ã­ãŒãã«å€±æããŸããã',
-	'http://www.movabletype.com/' => 'http://www.sixapart.jp/movabletype/',
-
-## lib/MT/Util/Captcha.pm
-	'Movable Type default CAPTCHA provider requires Image::Magick.' => 'Movable Type æ¢å®ã®CAPTCHAãã­ãã€ãã¯Image::Magickãã€ã³ã¹ããŒã«ãããŠããªããšäœ¿ããŸããã',
-	'You need to configure CaptchaSourceImageBase.' => 'æ§æãã¡ã€ã«ã§CaptchaSourceImageBaseãèš­å®ããŠãã ããã',
-	'Image creation failed.' => 'ç»åãäœæã§ããŸããã§ããã',
-	'Image error: [_1]' => 'ç»åã§ãšã©ãŒãçºçããŸãã: [_1]',
-
-## lib/MT/Notification.pm
-	'Contact' => 'é£çµ¡å
-',
-	'Contacts' => 'é£çµ¡å
-',
-
-## lib/MT/Log.pm
-	'System' => 'ã·ã¹ãã ',
-	'Pages' => 'ãŠã§ãããŒãž',
-	'Page # [_1] not found.' => 'ID:[_1]ã®ãŠã§ãããŒãžãèŠã€ãããŸããã§ããã',
-	'Entries' => 'ãã­ã°èšäº',
-	'Entry # [_1] not found.' => 'ID:[_1]ã®ãã­ã°èšäºãèŠã€ãããŸããã§ããã',
-	'Comment # [_1] not found.' => 'ID:[_1]ã®ã³ã¡ã³ããèŠã€ãããŸããã§ããã',
-	'TrackBack # [_1] not found.' => 'ID:[_1]ã®ãã©ãã¯ããã¯ãèŠã€ãããŸããã§ããã',
-
-## lib/MT/Component.pm
-	'Loading template \'[_1]\' failed: [_2]' => 'ãã³ãã¬ãŒã\'[_1]\'ãã­ãŒãã§ããŸããã§ãã: [_2]',
-
-## lib/MT/ObjectTag.pm
-	'Tag Placement' => 'ã¿ã°ã®é¢é£ä»ã',
-	'Tag Placements' => 'ã¿ã°ã®é¢é£ä»ã',
-
-## lib/MT/BasicAuthor.pm
-	'authors' => 'ãŠãŒã¶ãŒ',
-
-## lib/MT/Auth.pm
-	'Bad AuthenticationModule config \'[_1]\': [_2]' => 'AuthenticationModule([_1])ã®èš­å®ãæ­£ãããããŸãã: [_2]',
-	'Bad AuthenticationModule config' => 'AuthenticationModuleã®èš­å®ãæ­£ãããããŸãã',
-
-## lib/MT/WeblogPublisher.pm
-	'yyyy/index.html' => 'yyyy/index.html',
-	'yyyy/mm/index.html' => 'yyyy/mm/index.html',
-	'yyyy/mm/day-week/index.html' => 'yyyy/mm/day-week/index.html',
-	'yyyy/mm/entry-basename.html' => 'yyyy/mm/entry-basename.html',
-	'yyyy/mm/entry_basename.html' => 'yyyy/mm/entry_basename.html',
-	'yyyy/mm/entry-basename/index.html' => 'yyyy/mm/entry-basename/index.html',
-	'yyyy/mm/entry_basename/index.html' => 'yyyy/mm/entry_basename/index.html',
-	'yyyy/mm/dd/entry-basename.html' => 'yyyy/mm/dd/entry-basename.html',
-	'yyyy/mm/dd/entry_basename.html' => 'yyyy/mm/dd/entry_basename.html',
-	'yyyy/mm/dd/entry-basename/index.html' => 'yyyy/mm/dd/entry-basename/index.html',
-	'yyyy/mm/dd/entry_basename/index.html' => 'yyyy/mm/dd/entry_basename/index.html',
-	'category/sub-category/entry-basename.html' => 'category/sub-category/entry-basename.html',
-	'category/sub-category/entry-basename/index.html' => 'category/sub-category/entry-basename/index.html',
-	'category/sub_category/entry_basename.html' => 'category/sub_category/entry_basename.html',
-	'category/sub_category/entry_basename/index.html' => 'category/sub_category/entry_basename/index.html',
-	'folder-path/page-basename.html' => 'folder-path/page-basename.html',
-	'folder-path/page-basename/index.html' => 'folder-path/page-basename/index.html',
-	'folder_path/page_basename.html' => 'folder_path/page_basename.html',
-	'folder_path/page_basename/index.html' => 'folder_path/page_basename/index.html',
-	'folder/sub_folder/index.html' => 'folder/sub_folder/index.html',
-	'folder/sub-folder/index.html' => 'folder/sub-folder/index.html',
-	'yyyy/mm/dd/index.html' => 'yyyy/mm/dd/index.html',
-	'category/sub-category/index.html' => 'category/sub-category/index.html',
-	'category/sub_category/index.html' => 'category/sub_category/index.html',
-	'Load of blog \'[_1]\' failed: [_2]' => 'ãã­ã°(ID:[_1])ãã­ãŒãã§ããŸããã§ãã: [_2]',
-	'Archive type \'[_1]\' is not a chosen archive type' => '\'[_1]\'ã¯ã¢ãŒã«ã€ãã¿ã€ããšããŠéžæãããŠããŸããã',
-	'Error making path \'[_1]\': [_2]' => 'ãã¹(\'[_1]\')ãäœæã§ããŸãã: [_2]',
-	'Parameter \'[_1]\' is required' => '\'[_1]\'ããã©ã¡ãŒã¿ã«æå®ããŠãã ããã',
-	'You did not set your blog publishing path' => 'ãã­ã°ã®å
-¬éãã¹ãèš­å®ãããŠããŸããã',
-	'The same archive file exists. You should change the basename or the archive path. ([_1])' => 'ååã®ãã¡ã€ã«ããã§ã«å­åšããŸãããã¡ã€ã«åãŸãã¯ã¢ãŒã«ã€ããã¹ãå€æŽããŠãã ãã([_1])ã',
-	'An error occurred publishing [_1] \'[_2]\': [_3]' => '[_1]ã[_2]ãã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_3]',
-	'An error occurred publishing date-based archive \'[_1]\': [_2]' => 'æ¥ä»ã¢ãŒã«ã€ãã[_1]ãã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_2]',
-	'Writing to \'[_1]\' failed: [_2]' => '\'[_1]\'ã«æžãèŸŒããŸããã§ãã: [_2]',
-	'Renaming tempfile \'[_1]\' failed: [_2]' => 'ãã³ãã©ãªãã¡ã€ã«\'[_1]\'ã®ååãå€æŽã§ããŸããã§ãã: [_2]',
-	'Template \'[_1]\' does not have an Output File.' => 'ãã³ãã¬ãŒã\'[_1]\'ã«ã¯åºåãã¡ã€ã«ã®èš­å®ããããŸããã',
-	'An error occurred while publishing scheduled entries: [_1]' => 'æ¥ææå®ããããã­ã°èšäºã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_1]',
-	'YEARLY_ADV' => 'å¹Žå¥',
-	'MONTHLY_ADV' => 'æå¥',
-	'CATEGORY_ADV' => 'ã«ããŽãª',
-	'PAGE_ADV' => 'ãŠã§ãããŒãž',
-	'INDIVIDUAL_ADV' => 'ãã­ã°èšäº',
-	'DAILY_ADV' => 'æ¥å¥',
-	'WEEKLY_ADV' => 'é±å¥',
-	'Author (#[_1])' => 'ãŠãŒã¶ãŒ (#[_1])',
-	'AUTHOR_ADV' => 'ãŠãŒã¶ãŒå¥',
-	'AUTHOR-YEARLY_ADV' => 'ãŠãŒã¶ãŒ-å¹Žå¥',
-	'AUTHOR-MONTHLY_ADV' => 'ãŠãŒã¶ãŒ-æå¥',
-	'AUTHOR-WEEKLY_ADV' => 'ãŠãŒã¶ãŒ-é±å¥',
-	'AUTHOR-DAILY_ADV' => 'ãŠãŒã¶ãŒ-æ¥å¥',
-	'CATEGORY-YEARLY_ADV' => 'ã«ããŽãª-å¹Žå¥',
-	'CATEGORY-MONTHLY_ADV' => 'ã«ããŽãª-æå¥',
-	'CATEGORY-DAILY_ADV' => 'ã«ããŽãª-æ¥å¥',
-	'CATEGORY-WEEKLY_ADV' => 'ã«ããŽãª-é±å¥',
-	'author-display-name/index.html' => 'author-display-name/index.html',
-	'author_display_name/index.html' => 'author_display_name/index.html',
-	'author-display-name/yyyy/index.html' => 'author-display-name/yyyy/index.html',
-	'author_display_name/yyyy/index.html' => 'author_display_name/yyyy/index.html',
-	'author-display-name/yyyy/mm/index.html' => 'author-display-name/yyyy/mm/index.html',
-	'author_display_name/yyyy/mm/index.html' => 'author_display_name/yyyy/mm/index.html',
-	'author-display-name/yyyy/mm/day-week/index.html' => 'author-display-name/yyyy/mm/day-week/index.html',
-	'author_display_name/yyyy/mm/day-week/index.html' => 'author_display_name/yyyy/mm/day-week/index.html',
-	'author-display-name/yyyy/mm/dd/index.html' => 'author-display-name/yyyy/mm/dd/index.html',
-	'author_display_name/yyyy/mm/dd/index.html' => 'author_display_name/yyyy/mm/dd/index.html',
-	'category/sub-category/yyyy/index.html' => 'category/sub-category/yyyy/index.html',
-	'category/sub_category/yyyy/index.html' => 'category/sub_category/yyyy/index.html',
-	'category/sub-category/yyyy/mm/index.html' => 'category/sub-category/yyyy/mm/index.html',
-	'category/sub_category/yyyy/mm/index.html' => 'category/sub_category/yyyy/mm/index.html',
-	'category/sub-category/yyyy/mm/dd/index.html' => 'category/sub-category/yyyy/mm/dd/index.html',
-	'category/sub_category/yyyy/mm/dd/index.html' => 'category/sub_category/yyyy/mm/dd/index.html',
-	'category/sub-category/yyyy/mm/day-week/index.html' => 'category/sub-category/yyyy/mm/day-week/index.html',
-	'category/sub_category/yyyy/mm/day-week/index.html' => 'category/sub_category/yyyy/mm/day-week/index.html',
-
-## lib/MT/DefaultTemplates.pm
-	'Archive Index' => 'ã¢ãŒã«ã€ãã€ã³ããã¯ã¹',
-	'Stylesheet - Main' => 'ã¹ã¿ã€ã«ã·ãŒã(ã¡ã€ã³)',
-	'Stylesheet - Base Theme' => 'ã¹ã¿ã€ã«ã·ãŒã(ããŒã¹ããŒã)',
-	'JavaScript' => 'JavaScript',
-	'RSD' => 'RSD',
-	'Atom' => 'Atom',
-	'RSS' => 'RSS',
-	'Entry' => 'ãã­ã°èšäº',
-	'Entry Listing' => 'ãã­ã°èšäºãªã¹ã',
-	'Comment Response' => 'ã³ã¡ã³ãå®äº',
-	'Shown for a comment error, pending or confirmation message.' => 'ã³ã¡ã³ãããšã©ãŒã«ãªã£ããšããå
-¬éãä¿çããããšãããŸãã¯å
-¬éãããããšãéç¥ãããšãã«è¡šç€ºãããŸãã',
-	'Comment Preview' => 'ã³ã¡ã³ããã¬ãã¥ãŒ',
-	'Shown when a commenter previews their comment.' => 'ã³ã¡ã³ããç¢ºèªãããšãã«è¡šç€ºãããŸãã',
-	'Dynamic Error' => 'ãã€ãããã¯ãããªãã·ã³ã°ãšã©ãŒ',
-	'Shown when an error is encountered on a dynamic blog page.' => 'ãã€ãããã¯ãããªãã·ã³ã°ã§ãšã©ãŒãèµ·ãããšãã«è¡šç€ºãããŸãã',
-	'Popup Image' => 'ãããã¢ããç»å',
-	'Shown when a visitor clicks a popup-linked image.' => 'ãããã¢ããæå®ãããŠããç»åã®ãªã³ã¯ãã¯ãªãã¯ãããšãã«è¡šç€ºãããŸãã',
-	'Shown when a visitor searches the weblog.' => 'ãã­ã°ãæ€çŽ¢ãããšãã«è¡šç€ºãããŸãã',
-	'Footer' => 'ããã¿ãŒ',
-
-## lib/MT/PluginData.pm
-	'Plugin Data' => 'ãã©ã°ã€ã³ããŒã¿',
+    'Main Index' => 'ã¡ã€ã³ããŒãž',
+
+## default_templates/dynamic_error.mtml
+	'Page Not Found' => 'ããŒãžãèŠã€ãããŸããã',
+
+## default_templates/footer.mtml
+	'Sidebar - 2 Column Layout' => 'ãµã€ãããŒ (2ã«ã©ã )',
+	'Sidebar - 3 Column Layout' => 'ãµã€ãããŒ (3ã«ã©ã )',
+	'_POWERED_BY' => 'Powered by<br /><a href="http://www.movabletype.jp/"><$MTProductName$></a>',
+	'This blog is licensed under a <a href="[_1]">Creative Commons License</a>.' => 'ãã®ãã­ã°ã¯<a href="[_1]">ã¯ãªãšã€ãã£ãã»ã³ã¢ã³ãº</a>ã§ã©ã€ã»ã³ã¹ãããŠããŸãã',
+
+## default_templates/tags.mtml
+
+## default_templates/entry_metadata.mtml
+	'By [_1] on [_2]' => '[_2] [_1]',
+	'Permalink' => 'åå¥ããŒãž',
+	'Comments ([_1])' => 'ã³ã¡ã³ã([_1])',
+	'TrackBacks ([_1])' => 'ãã©ãã¯ããã¯([_1])',
+
+## default_templates/entry.mtml
+	'Entry Detail' => 'ãã­ã°èšäºã®è©³çŽ°',
+
+## default_templates/comment_preview.mtml
+	'Comment on [_1]' => '[_1]ãžã®ã³ã¡ã³ã',
+	'Previewing your Comment' => 'ã³ã¡ã³ãã®ç¢ºèª',
+
+## default_templates/javascript.mtml
+	'You do not have permission to comment on this blog.' => 'ãã®ãã­ã°ã«ã¯ã³ã¡ã³ãããæš©éãæã£ãŠããŸããã',
+	' to comment on this entry.' => 'ããŠããã³ã¡ã³ãããŠãã ããã',
+	' to comment on this entry,' => 'ããŠããã³ã¡ã³ãããŠãã ããã',
+	'or ' => '', # Translate - New
+	'comment anonymously.' => 'å¿åã§ã³ã¡ã³ãããããšãã§ããŸãã',
 
 ## lib/MT/Asset/Video.pm
@@ -621,154 +384,162 @@
 	'Popup Page for [_1]' => '[_1]ã®ãããã¢ããããŒãž',
 
-## lib/MT/Plugin.pm
-	'Publish' => 'å
-¬é',
-	'Uppercase text' => 'Uppercase text',
-	'Lowercase text' => 'Lowercase text',
-	'My Text Format' => 'My Text Format',
-
-## lib/MT/Author.pm
-	'User' => 'ãŠãŒã¶ãŒ',
-	'Users' => 'ãŠãŒã¶ãŒ',
-	'The approval could not be committed: [_1]' => 'å
-¬éã§ããŸããã§ãã: [_1]',
-
-## lib/MT/Util.pm
-	'moments from now' => 'ä»ãã',
-	'moments ago' => 'çŽå',
-	'[quant,_1,hour,hours] from now' => '[quant,_1,æé,æé]åŸ',
-	'[quant,_1,hour,hours] ago' => '[quant,_1,æé,æé]å',
-	'[quant,_1,minute,minutes] from now' => '[quant,_1,å,å]åŸ',
-	'[quant,_1,minute,minutes] ago' => '[quant,_1,å,å]å',
-	'[quant,_1,day,days] from now' => '[quant,_1,æ¥,æ¥]åŸ',
-	'[quant,_1,day,days] ago' => '[quant,_1,æ¥,æ¥]å',
-	'less than 1 minute from now' => '1ååŸä»¥å
-',
-	'less than 1 minute ago' => '1åä»¥å
-',
-	'[quant,_1,hour,hours], [quant,_2,minute,minutes] from now' => '[quant,_1,æé,æé], [quant,_2,å,å]åŸ',
-	'[quant,_1,hour,hours], [quant,_2,minute,minutes] ago' => '[quant,_1,æé,æé], [quant,_2,å,å]å',
-	'[quant,_1,day,days], [quant,_2,hour,hours] from now' => '[quant,_1,æ¥,æ¥], [quant,_2,æé,æé]åŸ',
-	'[quant,_1,day,days], [quant,_2,hour,hours] ago' => '[quant,_1,æ¥,æ¥], [quant,_2,æé,æé]å',
-
-## lib/MT/Core.pm
-	'System Administrator' => 'ã·ã¹ãã ç®¡çè
-',
-	'Create Blogs' => 'ãã­ã°ã®äœæ',
-	'Manage Plugins' => 'ãã©ã°ã€ã³ã®ç®¡ç',
-	'View System Activity Log' => 'ã·ã¹ãã ã­ã°ã®é²èŠ§',
-	'Blog Administrator' => 'ãã­ã°ç®¡çè
-',
-	'Configure Blog' => 'ãã­ã°ã®èš­å®',
-	'Set Publishing Paths' => 'å
-¬éãã¹ã®èš­å®',
-	'Manage Categories' => 'ã«ããŽãªã®ç®¡ç',
-	'Manage Tags' => 'ã¿ã°ã®ç®¡ç',
-	'Manage Address Book' => 'ã¢ãã¬ã¹åž³ã®ç®¡ç',
-	'View Activity Log' => 'ã­ã°ã®é²èŠ§',
-	'Create Entries' => 'ãã­ã°èšäºã®äœæ',
-	'Publish Entries' => 'ãã­ã°èšäºã®å
-¬é',
-	'Send Notifications' => 'éç¥ã®éä¿¡',
-	'Manage Entries' => 'ãã­ã°èšäºã®äžèŠ§',
-	'Manage Pages' => 'ãŠã§ãããŒãžã®ç®¡ç',
-	'Publish Blog' => 'ãã­ã°ã®åæ§ç¯',
-	'Manage Templates' => 'ãã³ãã¬ãŒãã®ç®¡ç',
-	'Upload File' => 'ãã¡ã€ã«ã¢ããã­ãŒã',
-	'Save Image Defaults' => 'ç»åã«é¢ããæ¢å®å€ã®èš­å®',
-	'Manage Assets' => 'ã¢ã€ãã ã®ç®¡ç',
-	'Post Comments' => 'ã³ã¡ã³ãã®éä¿¡',
-	'Manage Feedback' => 'ã³ã¡ã³ã/ãã©ãã¯ããã¯ã®ç®¡ç',
-	'MySQL Database' => 'MySQLããŒã¿ããŒã¹',
-	'PostgreSQL Database' => 'PostgreSQLããŒã¿ããŒã¹',
-	'SQLite Database' => 'SQLiteããŒã¿ããŒã¹',
-	'SQLite Database (v2)' => 'SQLite (v2) ããŒã¿ããŒã¹',
-	'Convert Line Breaks' => 'æ¹è¡ãå€æ',
-	'Rich Text' => 'ãªãããã­ã¹ã',
-	'weblogs.com' => 'weblogs.com',
-	'technorati.com' => 'technorati.com',
-	'google.com' => 'google.com',
-	'Publishes content.' => 'ã³ã³ãã³ããå
-¬éããŸãã',
-	'Synchronizes content to other server(s).' => 'ã³ã³ãã³ããä»ã®ãµãŒããŒã«åæããŸãã',
-	'Entries List' => 'ãã­ã°èšäºã®äžèŠ§',
-	'Blog URL' => 'ãã­ã°URL',
-	'Blog ID' => 'ãã­ã°ID',
-	'Blog Name' => 'ãã­ã°å',
-	'Entry Body' => 'æ¬æ',
-	'Entry Excerpt' => 'æŠèŠ',
-	'Entry Link' => 'ãªã³ã¯',
-	'Entry Extended Text' => 'ç¶ã',
-	'Entry Title' => 'ã¿ã€ãã«',
-	'If Block' => 'Ifæ¡ä»¶ãã­ãã¯',
-	'If/Else Block' => 'If/Elseæ¡ä»¶ãã­ãã¯',
-	'Include Template Module' => 'ãã³ãã¬ãŒãã¢ãžã¥ãŒã«ã®ã€ã³ã¯ã«ãŒã',
-	'Include Template File' => 'ãã³ãã¬ãŒããã¡ã€ã«ã®ã€ã³ã¯ã«ãŒã',
-	'Get Variable' => 'å€æ°ã®Get',
-	'Set Variable' => 'å€æ°ã®Set',
-	'Set Variable Block' => 'å€æ°ãã­ãã¯ã®Set',
-	'Publish Scheduled Entries' => 'æ¥ææå®ããããã­ã°èšäºãåæ§ç¯',
-	'Junk Folder Expiration' => 'ã¹ãã ã³ã¡ã³ã/ãã©ãã¯ããã¯ã®å»æ£',
-	'Remove Temporary Files' => 'ãã³ãã©ãªãã¡ã€ã«ã®åé€',
-	'Remove Expired User Sessions' => 'æéåãã®ãŠãŒã¶ãŒã»ãã·ã§ã³ãåé€',
-
-## lib/MT/Builder.pm
-	'<[_1]> at line [_2] is unrecognized.' => '<[_1]>ã¯å­åšããŸãã([_2]è¡ç®)ã',
-	'<[_1]> with no </[_1]> on line #' => '<[_1]>ã«å¯Ÿå¿ãã</[_1]>ããããŸããã',
-	'<[_1]> with no </[_1]> on line [_2].' => '<[_1]>ã«å¯Ÿå¿ãã</[_1]>ããããŸãã([_2]è¡ç®)ã',
-	'<[_1]> with no </[_1]> on line [_2]' => '<[_1]>ã«å¯Ÿå¿ãã</[_1]>ããããŸãã([_2]è¡ç®)ã',
-	'Error in <mt:[_1]> tag: [_2]' => 'ãã³ãã¬ãŒãã¿ã°MT[_1]ã§ãšã©ãŒãçºçããŸãã: [_2]',
-	'No handler exists for tag [_1]' => 'ãã³ãã¬ãŒãã¿ã°MT[_1]ã«å¯Ÿå¿ãããã³ãã©ããããŸããã',
-
-## lib/MT/XMLRPCServer.pm
-	'Invalid timestamp format' => 'timestampã®åœ¢åŒãäžæ­£ã§ãã',
-	'No web services password assigned.  Please see your user profile to set it.' => 'WebãµãŒãã¹ãã¹ã¯ãŒããèš­å®ãããŠããŸããããã­ãã£ãŒã«ã®ç»é¢ã§èš­å®ããŠãã ããã',
-	'No blog_id' => 'No blog_id',
-	'Invalid blog ID \'[_1]\'' => 'ãã­ã°IDãäžæ­£ã§ã([_1])ã',
-	'Invalid login' => 'ã­ã°ã€ã³ãäžæ­£ã§ãã',
-	'No publishing privileges' => 'å
-¬éããæš©éããããŸããã',
-	'Value for \'mt_[_1]\' must be either 0 or 1 (was \'[_2]\')' => 'mt_[_1]ã®å€ã¯0ã1ã§ã([_2]ãèš­å®ããããšããŸãã)ã',
-	'PreSave failed [_1]' => 'PreSaveã§ãšã©ãŒããããŸãã: [_1]',
-	'User \'[_1]\' (user #[_2]) added entry #[_3]' => '\'[_1]\'(ID:[_2])ããã­ã°èšäºãäœæå­ããŸããã',
-	'No entry_id' => 'ãã­ã°èšäºã®IDããããŸããã',
-	'Invalid entry ID \'[_1]\'' => 'ãã­ã°èšäºã®IDãäžæ­£ã§ã: [_1]',
-	'Not privileged to edit entry' => 'ãã­ã°èšäºãç·šéããæš©éããããŸããã',
-	'User \'[_1]\' (user #[_2]) edited entry #[_3]' => '\'[_1]\'(ID:[_2])ããã­ã°èšäºãç·šéããŸããã',
-	'Not privileged to delete entry' => 'ãã­ã°èšäºãåé€ããæš©éããããŸããã',
-	'Entry \'[_1]\' (entry #[_2]) deleted by \'[_3]\' (user #[_4]) from xml-rpc' => '\'[_3]\'(ID:[_4])ãXMLRPCçµç±ã§ãã­ã°èšäº\'[_1]\'(ID:[_2])ãåé€ããŸããã',
-	'Not privileged to get entry' => 'ãã­ã°èšäºãååŸããæš©éããããŸããã',
-	'User does not have privileges' => 'æš©éããããŸããã',
-	'Not privileged to set entry categories' => 'ã«ããŽãªãèš­å®ããæš©éããããŸããã',
-	'Publish failed: [_1]' => 'å
-¬éã§ããŸããã§ãã: [_1]',
-	'Not privileged to upload files' => 'ãã¡ã€ã«ãã¢ããã­ãŒãããæš©éããããŸããã',
-	'No filename provided' => 'ãã¡ã€ã«åããããŸããã',
-	'Invalid filename \'[_1]\'' => 'ãã¡ã€ã«å\'[_1]\'ãäžæ­£ã§ãã',
-	'Error writing uploaded file: [_1]' => 'ã¢ããã­ãŒãããããã¡ã€ã«ãæžãèŸŒããŸããã§ãã: [_1]',
-	'Perl module Image::Size is required to determine width and height of uploaded images.' => 'Image::Sizeãã€ã³ã¹ããŒã«ããªããšãç»åã®å¹
-ãšé«ããæ€åºã§ããŸããã',
-	'Template methods are not implemented, due to differences between the Blogger API and the Movable Type API.' => 'Templateã¡ãœããã¯å®è£
-ãããŠããŸããã',
-
-## lib/MT/App/Trackback.pm
-	'You must define a Ping template in order to display pings.' => 'è¡šç€ºããã«ã¯ãã©ãã¯ããã¯ãã³ãã¬ãŒããå®çŸ©ããå¿
+## lib/MT/Util/Captcha.pm
+	'Movable Type default CAPTCHA provider requires Image::Magick.' => 'Movable Type æ¢å®ã®CAPTCHAãã­ãã€ãã¯Image::Magickãã€ã³ã¹ããŒã«ãããŠããªããšäœ¿ããŸããã',
+	'You need to configure CaptchaSourceImageBase.' => 'æ§æãã¡ã€ã«ã§CaptchaSourceImageBaseãèš­å®ããŠãã ããã',
+	'Image creation failed.' => 'ç»åãäœæã§ããŸããã§ããã',
+	'Image error: [_1]' => 'ç»åã§ãšã©ãŒãçºçããŸãã: [_1]',
+
+## lib/MT/Plugin/JunkFilter.pm
+	'[_1]: [_2][_3] from rule [_4][_5]' => '[_1]: ã«ãŒã«[_4][_5]ã«ããå€å®ã¹ã³ã¢ - [_2][_3]',
+	'[_1]: [_2][_3] from test [_4]' => '[_1]: æ€æ»[_4]ã«ããå€å®ã¹ã³ã¢ - [_2][_3]',
+
+## lib/MT/Auth/TypeKey.pm
+	'Sign in requires a secure signature.' => 'ãµã€ã³ã€ã³ã«ã¯ã»ã­ã¥ãªãã£ããŒã¯ã³ãå¿
+èŠã§ãã',
+	'The sign-in validation failed.' => 'ãµã€ã³ã€ã³ã®æ€èšŒã«å€±æããŸããã',
+	'This weblog requires commenters to pass an email address. If you\'d like to do so you may log in again, and give the authentication service permission to pass your email address.' => 'ãã®ãã­ã°ã¯ãã³ã¡ã³ãã®éã«ã¡ãŒã«ã¢ãã¬ã¹ãå¿
+ãéç¥ããããã«èŠæ±ããŠããŸããã¡ãŒã«ã¢ãã¬ã¹ãéç¥ããªãéããã³ã¡ã³ãã®æçš¿ãã§ããŸããã',
+	'Couldn\'t save the session' => 'ã»ãã·ã§ã³ãä¿å­ã§ããŸããã§ããã',
+	'This blog requires commenters to provide an email address' => 'ã³ã¡ã³ããæçš¿ããã«ã¯ã¡ãŒã«ã¢ãã¬ã¹ã®æå®ãå¿
+é ã§ãã',
+	'Couldn\'t get public key from url provided' => 'æå®ãããURLããå
+¬éã­ãŒãååŸã§ããŸããã§ããã',
+	'No public key could be found to validate registration.' => 'ç»é²ç¶æ³ãæ€æ»ããããã®å
+¬éã­ãŒãèŠã€ãããŸããã§ããã',
+	'TypeKey signature verif\'n returned [_1] in [_2] seconds verifying [_3] with [_4]' => 'TypeKey signature verif\'n returned [_1] in [_2] seconds verifying [_3] with [_4]',
+	'The TypeKey signature is out of date ([_1] seconds old). Ensure that your server\'s clock is correct' => 'TypeKeyã®çœ²åãå€ãããŸã([_1]ç§çµé)ããµãŒããŒã®æå»ãæ­£ããããšãç¢ºèªããŠãã ããã',
+
+## lib/MT/Auth/OpenID.pm
+	'Invalid request.' => 'äžæ­£ãªèŠæ±ã§ãã',
+	'Could not discover claimed identity: [_1]' => '[_1]ãšããOpenIDãçºèŠã§ããŸããã§ããã',
+
+## lib/MT/Auth/MT.pm
+	'Passwords do not match.' => 'ãã¹ã¯ãŒããèª€ã£ãŠããŸãã',
+	'Failed to verify current password.' => 'çŸåšã®ãã¹ã¯ãŒããèª€ã£ãŠããŸãã',
+	'Password hint is required.' => 'ãã¹ã¯ãŒãåèš­å®çšã®ãã¬ãŒãºã¯å¿
+é ã§ãã',
+
+## lib/MT/TheSchwartz/FuncMap.pm
+	'Job Function' => 'ãžã§ããã¡ã³ã¯ã·ã§ã³',
+
+## lib/MT/TheSchwartz/Error.pm
+	'Job Error' => 'ãžã§ããšã©ãŒ',
+
+## lib/MT/TheSchwartz/Job.pm
+	'Job' => 'ãžã§ã',
+
+## lib/MT/TheSchwartz/ExitStatus.pm
+	'Job Exit Status' => 'ãžã§ãçµäºç¶æ
+',
+
+## lib/MT/ObjectDriver/Driver/DBD/SQLite.pm
+	'Can\'t open \'[_1]\': [_2]' => '\'[_1]\'ãéããŸãã: [_2]',
+
+## lib/MT/Compat/v3.pm
+	'uses: [_1], should use: [_2]' => '[_1]ã¯[_2]ã«çŽããŠãã ããã',
+	'uses [_1]' => '[_1]ãäœ¿ã£ãŠããŸãã',
+	'No executable code' => 'å®è¡ã§ããã³ãŒãããããŸããã',
+	'Publish-option name must not contain special characters' => 'åæ§ç¯ã®ãªãã·ã§ã³åã«ã¯ç¹æ®èšå·ãå«ããããŸããã',
+
+## lib/MT/FileMgr/FTP.pm
+	'Creating path \'[_1]\' failed: [_2]' => 'ãã¹\'[_1]\'ã®äœæã«å€±æããŸãã: [_2]',
+	'Renaming \'[_1]\' to \'[_2]\' failed: [_3]' => '\'[_1]\'ã\'[_2]\'ã«å€æŽã§ããŸããã§ãã: [_3]',
+	'Deleting \'[_1]\' failed: [_2]' => '\'[_1]\'ãåé€ã§ããŸããã§ãã: [_2]',
+
+## lib/MT/FileMgr/DAV.pm
+	'DAV connection failed: [_1]' => 'DAV connectionã«å€±æããŸãã: [_1]',
+	'DAV open failed: [_1]' => 'DAV openã«å€±æããŸãã: [_1]',
+	'DAV get failed: [_1]' => 'DAV getã«å€±æããŸãã: [_1]',
+	'DAV put failed: [_1]' => 'DAV putã«å€±æããŸãã: [_1]',
+
+## lib/MT/FileMgr/Local.pm
+	'Opening local file \'[_1]\' failed: [_2]' => '\'[_1]\'ãéããŸããã§ãã: [_2]',
+
+## lib/MT/FileMgr/SFTP.pm
+	'SFTP connection failed: [_1]' => 'SFTPã®æ¥ç¶ã«å€±æããŸãã: [_1]',
+	'SFTP get failed: [_1]' => 'SFTPã§GETã«å€±æããŸãã: [_1]',
+	'SFTP put failed: [_1]' => 'SFTPã§PUTã«å€±æããŸãã: [_1]',
+
+## lib/MT/BackupRestore/ManifestFileHandler.pm
+	'Uploaded file was not a valid Movable Type backup manifest file.' => 'ã¢ããã­ãŒãããããã¡ã€ã«ã¯Movable Typeããã¯ã¢ããã§äœæããããããã§ã¹ããã¡ã€ã«ã§ã¯ãããŸããã',
+
+## lib/MT/BackupRestore/BackupFileHandler.pm
+	'Uploaded file was backed up from Movable Type with the newer schema version ([_1]) than the one in this system ([_2]).  It is not safe to restore the file to this version of Movable Type.' => 'ã¢ããã­ãŒãããããã¡ã€ã«ã¯ãã®ã·ã¹ãã ã®ããŒãžã§ã³([_2])ããæ°ããããŒãžã§ã³([_1])ã§ããã¯ã¢ãããããŠããŸãããã®ãã¡ã€ã«ãäœ¿ã£ãŠåŸ©å
+ããããšã¯æšå¥šãããŸããã',
+	'[_1] is not a subject to be restored by Movable Type.' => '[_1]ã¯Movable Typeã§åŸ©å
+ããå¯Ÿè±¡ã«ã¯å«ãŸããŠããŸããã',
+	'[_1] records restored.' => '[_1]ä»¶åŸ©å
+ãããŸããã',
+	'Restoring [_1] records:' => '[_1]ãåŸ©å
+ããŠããŸã:',
+	'User with the same name as the name of the currently logged in ([_1]) found.  Skipped the record.' => 'çŸåšã­ã°ã€ã³ããŠãããŠãŒã¶ãŒ([_1])ãèŠã€ãããŸããããã®ã¬ã³ãŒãã¯ã¹ã­ããããŸãã', # Translate - New
+	'User with the same name \'[_1]\' found (ID:[_2]).  Restore replaced this user with the data backed up.' => '\'[_1]\': ååã®ãŠãŒã¶ãŒãèŠã€ãããŸãã(ID: [_2])ãããã¯ã¢ããæã®ãŠãŒã¶ãŒããŒã¿ãæ¢å­ãŠãŒã¶ãŒã®ããŒã¿ã§çœ®ãæããŠãä»ã®ããŒã¿ãåŸ©å
+ããŸãã',
+	'Tag \'[_1]\' exists in the system.' => '\'[_1]\'ãšããã¿ã°ã¯ãã§ã«å­åšããŸãã',
+	'[_1] records restored...' => '[_1]ä»¶åŸ©å
+ãããŸãã...',
+
+## lib/MT/Template/Context.pm
+	'The attribute exclude_blogs cannot take \'all\' for a value.' => 'exclude_blogså±æ§ã«ã¯allãèš­å®ã§ããŸããã',
+
+## lib/MT/Template/ContextHandlers.pm
+	'Remove this widget' => 'ãã®ãŠã£ãžã§ãããåé€',
+	'[_1]Publish[_2] your site to see these changes take effect.' => 'èš­å®ãæå¹ã«ããããã«[_1]åæ§ç¯[_2]ããŠãã ããã',
+	'Actions' => 'ã¢ã¯ã·ã§ã³',
+	'Warning' => 'è­Šå',
+	'No [_1] could be found.' => '[_1]ãèŠã€ãããŸããã',
+	'Recursion attempt on [_1]: [_2]' => '[_1]ã§ãäºãããäºããåç
+§ããŠããç¶æ
+ã«ãªã£ãŠããŸã: [_2]',
+	'Can\'t find included template [_1] \'[_2]\'' => '[_1]ãšãããã³ãã¬ãŒããèŠã€ãããŸããã§ãã: [_2]',
+	'Can\'t find blog for id \'[_1]' => 'ID;[_1]ã®ãã­ã°ãèŠã€ãããŸããã§ããã',
+	'Can\'t find included file \'[_1]\'' => '[_1]ãšãããã¡ã€ã«ãèŠã€ãããŸããã§ããã',
+	'Error opening included file \'[_1]\': [_2]' => '[_1]ãéããŸããã§ãã: [_2]',
+	'Recursion attempt on file: [_1]' => '[_1]ã§ãäºãããäºããåç
+§ããŠããç¶æ
+ã«ãªã£ãŠããŸãã',
+	'Unspecified archive template' => 'ã¢ãŒã«ã€ããã³ãã¬ãŒããæå®ãããŠããŸããã',
+	'Error in file template: [_1]' => 'ãã¡ã€ã«ãã³ãã¬ãŒãã§ãšã©ãŒãçºçããŸãã: [_1]',
+	'Can\'t load template' => 'ãã³ãã¬ãŒããã­ãŒãã§ããŸããã§ããã',
+	'Can\'t find template \'[_1]\'' => '\'[_1]\'ãšãããã³ãã¬ãŒããèŠã€ãããŸããã§ããã',
+	'Can\'t find entry \'[_1]\'' => '\'[_1]\'ãšãããã­ã°èšäºãèŠã€ãããŸããã§ããã',
+	'[_1] [_2]' => '[_1] [_2]',
+	'You used a [_1] tag without any arguments.' => '[_1]ã¯åŒæ°ãªãã§å©çšã§ããŸããã',
+	'You used an \'[_1]\' tag outside of the context of a author; perhaps you mistakenly placed it outside of an \'MTAuthors\' container?' => '[_1]ãã³ã³ãã­ã¹ãå€ã§å©çšããããšããŠããŸããMTAuthorsã³ã³ããã¿ã°ã®å€éšã§äœ¿ã£ãŠããŸããã?',
+	'Author (#[_1])' => 'ãŠãŒã¶ãŒ (#[_1])',
+	'You have an error in your \'[_2]\' attribute: [_1]' => '[_2]å±æ§ã§ãšã©ãŒããããŸãã: [_1]',
+	'You have an error in your \'tag\' attribute: [_1]' => 'tagå±æ§ã§ãšã©ãŒããããŸãã: [_1]',
+	'No such user \'[_1]\'' => 'ãŠãŒã¶ãŒ([_1])ãèŠã€ãããŸããã',
+	'You used an \'[_1]\' tag outside of the context of an entry; perhaps you mistakenly placed it outside of an \'MTEntries\' container?' => '[_1]ãã³ã³ãã­ã¹ãå€ã§å©çšããããšããŠããŸããMTEntriesã³ã³ããã¿ã°ã®å€éšã§äœ¿ã£ãŠããŸããã?',
+	'You used <$MTEntryFlag$> without a flag.' => '<$MTEntryFlag$>ããã©ã°ãªãã§å©çšããããšããŸããã',
+	'You used an [_1] tag for linking into \'[_2]\' archives, but that archive type is not published.' => '[_2]ã¢ãŒã«ã€ãã«ãªã³ã¯ããããã«[_1]ã¿ã°ãäœ¿ã£ãŠããŸãããã¢ãŒã«ã€ããåºåãããŠããŸããã',
+	'Could not create atom id for entry [_1]' => 'ãã­ã°èšäºã®Atom IDãäœæã§ããŸããã§ããã',
+	'To enable comment registration, you need to add a TypeKey token in your weblog config or user profile.' => 'To enable comment registration, you need to add a TypeKey token in your weblog config or user profile.',
+	'You used an [_1] tag without a date context set up.' => '[_1]ãæ¥ä»ã³ã³ãã­ã¹ãã®å€éšã§å©çšããããšããŸããã',
+	'You used an \'[_1]\' tag outside of the context of a comment; perhaps you mistakenly placed it outside of an \'MTComments\' container?' => '[_1]ãã³ã¡ã³ãã®ã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTCommentsã³ã³ããã®å€éšã«é
+çœ®ããŠããŸããã?',
+	'[_1] can be used only with Daily, Weekly, or Monthly archives.' => '[_1]ã¯æ¥å¥ãé±å¥ãæå¥ã®åã¢ãŒã«ã€ãã§ã®ã¿å©çšã§ããŸãã',
+	'Group iterator failed.' => 'ã¢ãŒã«ã€ãã®ã­ãŒãã§ãšã©ãŒãçºçããŸããã',
+	'You used an [_1] tag outside of the proper context.' => '[_1]ã¿ã°ãäžæ­£ãªã³ã³ãã­ã¹ãã§å©çšããããšããŸããã',
+	'Could not determine entry' => 'ãã­ã°èšäºãååŸã§ããŸããã§ããã',
+	'Invalid month format: must be YYYYMM' => 'YYYYMMåœ¢åŒã§ãªããã°ãªããŸããã',
+	'No such category \'[_1]\'' => '[_1]ãšããã«ããŽãªã¯ãããŸããã',
+	'<\$MTCategoryTrackbackLink\$> must be used in the context of a category, or with the \'category\' attribute to the tag.' => '<\$MTCategoryTrackbackLink\$>ã¯ã«ããŽãªã®ã³ã³ãã­ã¹ãããŸãã¯categoryå±æ§ãšãšãã«å©çšããå¿
 èŠããããŸãã',
-	'Trackback pings must use HTTP POST' => 'Trackback pings must use HTTP POST',
-	'Need a TrackBack ID (tb_id).' => 'ãã©ãã¯ããã¯IDãå¿
-èŠã§ãã',
-	'Invalid TrackBack ID \'[_1]\'' => 'ãã©ãã¯ããã¯ID([_1])ãäžæ­£ã§ãã',
-	'You are not allowed to send TrackBack pings.' => 'ãã©ãã¯ããã¯éä¿¡ãèš±å¯ãããŠããŸããã',
-	'You are pinging trackbacks too quickly. Please try again later.' => 'ç­ãæéã«ãã©ãã¯ããã¯ãéä¿¡ãããã§ããå°ãéããããŠããäžåºŠéä¿¡ããŠãã ããã',
-	'Need a Source URL (url).' => 'URLãå¿
-èŠã§ãã',
-	'Invalid URL \'[_1]\'' => 'URL([_1])ã¯äžæ­£ã§ãã',
-	'This TrackBack item is disabled.' => 'ãã©ãã¯ããã¯ã¯ç¡å¹ã«èš­å®ãããŠããŸãã',
-	'This TrackBack item is protected by a passphrase.' => 'ãã©ãã¯ããã¯ã¯ãã¹ã¯ãŒãã§ä¿è­·ãããŠããŸãã',
-	'TrackBack on "[_1]" from "[_2]".' => '[_2]ãã\'[_1]\'ã«ãã©ãã¯ããã¯ããããŸããã',
-	'TrackBack on category \'[_1]\' (ID:[_2]).' => 'ã«ããŽãª\'[_1]\'ã«ãã©ãã¯ããã¯ããããŸããã',
-	'Can\'t create RSS feed \'[_1]\': ' => 'ãã£ãŒã([_1])ãäœæã§ããŸãã: ',
-	'New TrackBack Ping to Entry [_1] ([_2])' => 'ãã­ã°èšäº\'[_1]\'ãžã®æ°ãããã©ãã¯ããã¯',
-	'New TrackBack Ping to Category [_1] ([_2])' => 'ã«ããŽãª\'[_1]\'ãžã®æ°ãããã©ãã¯ããã¯',
+	'You failed to specify the label attribute for the [_1] tag.' => '[_1]ã¿ã°ã«labelå±æ§ãèš­å®ãããŠããŸããã',
+	'You used an \'[_1]\' tag outside of the context of a ping; perhaps you mistakenly placed it outside of an \'MTPings\' container?' => '[_1]ã¿ã°ããã©ãã¯ããã¯ã®ã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTPingsã³ã³ããã®å€éšã«é
+çœ®ããŠããŸããã?',
+	'[_1] used outside of [_2]' => '[_1]ã[_2]ã®å€éšã§å©çšããããšããŸããã',
+	'MT[_1] must be used in a [_2] context' => 'MT[_1]ã¯[_2]ã®ã³ã³ãã­ã¹ãå€éšã§ã¯å©çšã§ããŸããã',
+	'Cannot find package [_1]: [_2]' => '[_1]ãšããããã±ãŒãžãèŠã€ãããŸããã§ãã: [_2]',
+	'Error sorting [_2]: [_1]' => '[_2]ã®äžŠã¹æ¿ãã§ãšã©ãŒãçºçããŸãã: [_1]',
+	'Edit' => 'ç·šé',
+	'You used an \'[_1]\' tag outside of the context of an asset; perhaps you mistakenly placed it outside of an \'MTAssets\' container?' => '[_1]ãAssetã®ã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTAssetsã³ã³ããã®å€éšã«é
+çœ®ããŠããŸããã?',
+	'You used an \'[_1]\' tag outside of the context of an page; perhaps you mistakenly placed it outside of an \'MTPages\' container?' => '[_1]ãã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTPagesã³ã³ããã®å€éšã«é
+çœ®ããŠããŸããã?',
+	'You used an [_1] without a author context set up.' => '[_1]ããŠãŒã¶ãŒã®ã³ã³ãã­ã¹ãå€éšã§å©çšããããšããŸããã',
+	'Can\'t load blog.' => 'ãã­ã°ãã­ãŒãã§ããŸããã§ããã',
+	'Can\'t load user.' => 'ãŠãŒã¶ãŒãã­ãŒãã§ããŸããã§ããã',
 
 ## lib/MT/App/NotifyList.pm
@@ -786,6 +557,181 @@
 	'The address [_1] has been unsubscribed.' => '[_1]ã®ç»é²ãè§£é€ããŸããã',
 
+## lib/MT/App/Comments.pm
+	'Error assigning commenting rights to user \'[_1] (ID: [_2])\' for weblog \'[_3] (ID: [_4])\'. No suitable commenting role was found.' => '\'[_1]\' (ID:[_2])ã«ãã­ã°\'[_3]\'(ID:[_2])ãžã®ã³ã¡ã³ãæš©éãäžããããšãã§ããŸããã§ãããã³ã¡ã³ãæš©éãäžããããã®ã­ãŒã«ãèŠã€ãããŸããã',
+	'Invalid commenter login attempt from [_1] to blog [_2](ID: [_3]) which does not allow Movable Type native authentication.' => '[_1]ããã­ã°[_2](ID:[_3])ã«ã­ã°ã€ã³ããããšããŸãããããã®ãã­ã°ã§ã¯Movable TypeèªèšŒãæå¹ã«ãªã£ãŠããŸããã',
+	'Invalid login.' => 'ã­ã°ã€ã³ãäžæ­£ã§ãã',
+	'Invalid login' => 'ã­ã°ã€ã³ãäžæ­£ã§ãã',
+	'Login failed: permission denied for user \'[_1]\'' => 'ã­ã°ã€ã³ã«å€±æããŸããã[_1]ã«ã¯æš©éããããŸããã',
+	'Login failed: password was wrong for user \'[_1]\'' => 'ã­ã°ã€ã³ã«å€±æããŸããã[_1]ã®ãã¹ã¯ãŒããèª€ã£ãŠããŸãã',
+	'Failed login attempt by disabled user \'[_1]\'' => '[_1]ã¯ç¡å¹ãªãŠãŒã¶ãŒãªã®ã§ã­ã°ã€ã³ã§ããŸããã§ããã',
+	'Failed login attempt by unknown user \'[_1]\'' => '[_1]ãšãããŠãŒã¶ãŒã¯å­åšããªãã®ã§ã­ã°ã€ã³ã§ããŸããã§ããã',
+	'Signing up is not allowed.' => 'ç»é²ã¯ã§ããŸããã',
+	'User requires username.' => 'ãŠãŒã¶ãŒåã¯å¿
+é ã§ãã',
+	'User requires display name.' => 'è¡šç€ºåã¯å¿
+é ã§ãã',
+	'A user with the same name already exists.' => 'ååã®ãŠãŒã¶ãŒããã§ã«å­åšããŸãã',
+	'User requires password.' => 'ãã¹ã¯ãŒãã¯å¿
+é ã§ãã',
+	'User requires password recovery word/phrase.' => 'ãã¹ã¯ãŒãåèš­å®çšã®ãã¬ãŒãºã¯å¿
+é ã§ãã',
+	'Email Address is invalid.' => 'ã¡ãŒã«ã¢ãã¬ã¹ãäžæ­£ã§ãã',
+	'Email Address is required for password recovery.' => 'ã¡ãŒã«ã¢ãã¬ã¹ã¯å¿
+é ã§ãã',
+	'URL is invalid.' => 'URLãäžæ­£ã§ãã',
+	'Text entered was wrong.  Try again.' => 'å
+¥åãããæå­åãæ­£ãããããŸããã',
+	'Something wrong happened when trying to process signup: [_1]' => 'ç»é²ã«å€±æããŸãã: [_1]',
+	'Movable Type Account Confirmation' => 'Movable Type ã¢ã«ãŠã³ãç»é²ç¢ºèª',
+	'System Email Address is not configured.' => 'ã·ã¹ãã ã§å©çšããã¡ãŒã«ã¢ãã¬ã¹ãèš­å®ãããŠããŸããã',
+	'Commenter \'[_1]\' (ID:[_2]) has been successfully registered.' => 'ã³ã¡ã³ãæçš¿è
+\'[_1]\'(ID:[_2])ãç»é²ãããŸããã',
+	'Thanks for the confirmation.  Please sign in to comment.' => 'ç»é²ããããšãããããŸãããµã€ã³ã€ã³ããŠã³ã¡ã³ãããŠãã ããã',
+	'[_1] registered to the blog \'[_2]\'' => '[_1]ããã­ã°\'[_2]\'ã«ç»é²ãããŸããã',
+	'No id' => 'IDããããŸããã',
+	'No such comment' => 'ã³ã¡ã³ãããããŸããã',
+	'IP [_1] banned because comment rate exceeded 8 comments in [_2] seconds.' => '[_1]ããã®ã³ã¡ã³ãã[_2]ç§éã«8åç¶ããããããã®IPã¢ãã¬ã¹ãçŠæ­¢ãªã¹ãã«ç»é²ããŸããã',
+	'IP Banned Due to Excessive Comments' => 'å€§éã³ã¡ã³ãã«ããIPçŠæ­¢',
+	'_THROTTLED_COMMENT_EMAIL' => 'ãã­ã°[_1]ã«[_2]ç§ã®éã«èš±å¯ãããæ°ãè¶
+ããã³ã¡ã³ãããããŠãŒã¶ãŒãèªåçã«çŠæ­¢ãããŸãããããã¯ã¹ã¯ãªããã«ããå€§éã®ã³ã¡ã³ããé²ãããã®åŠçœ®ã§ããçŠæ­¢ãããIPã¢ãã¬ã¹ã¯[_3]ã§ãããããééãã§ããå Žåã¯ãMovable Typeã«ã­ã°ã€ã³ããŠããã­ã°ã®èš­å®ç»é¢ã«é²ã¿ãIPçŠæ­¢ãªã¹ãããIPã¢ãã¬ã¹ãåé€ããŠãã ããã',
+	'Invalid request' => 'äžæ­£ãªèŠæ±ã§ãã',
+	'No entry_id' => 'ãã­ã°èšäºã®IDããããŸããã',
+	'No such entry \'[_1]\'.' => 'ãã­ã°èšäº\'[_1]\'ããããŸããã',
+	'You are not allowed to add comments.' => 'ã³ã¡ã³ãã§ããŸããã',
+	'_THROTTLED_COMMENT' => 'ç­ãæéã«ã³ã¡ã³ããå€§éã«éãããã§ãããã°ãããã£ãŠããããçŽããŠãã ããã',
+	'Comments are not allowed on this entry.' => 'ãã®ãã­ã°èšäºã«ã¯ã³ã¡ã³ãã§ããŸããã',
+	'Comment text is required.' => 'ã³ã¡ã³ããå
+¥åããŠããŸããã',
+	'An error occurred: [_1]' => 'ãšã©ãŒãçºçããŸãã: [_1]',
+	'Registration is required.' => 'ç»é²ããªããã°ãªããŸããã',
+	'Name and email address are required.' => 'ååãšã¡ãŒã«ã¢ãã¬ã¹ã¯å¿
+é ã§ãã',
+	'Invalid email address \'[_1]\'' => 'ã¡ãŒã«ã¢ãã¬ã¹([_1])ã¯äžæ­£ã§ãã',
+	'Invalid URL \'[_1]\'' => 'URL([_1])ã¯äžæ­£ã§ãã',
+	'Comment save failed with [_1]' => 'ã³ã¡ã³ããä¿å­ã§ããŸããã§ãã: [_1]',
+	'Comment on "[_1]" by [_2].' => '[_2]ã\'[_1]\'ã«ã³ã¡ã³ãããŸããã',
+	'Commenter save failed with [_1]' => 'ã³ã¡ã³ãæçš¿è
+ãäœæã§ããŸããã§ãã: [_1]',
+	'Publish failed: [_1]' => 'å
+¬éã§ããŸããã§ãã: [_1]',
+	'Failed comment attempt by pending registrant \'[_1]\'' => 'ãŸã ç»é²ãå®äºããŠããªããŠãŒã¶ãŒ\'[_1]\'ãã³ã¡ã³ãããããšããŸããã',
+	'Permission denied.' => 'æš©éããããŸããã',
+	'Registered User' => 'ç»é²ãŠãŒã¶ãŒ',
+	'The sign-in attempt was not successful; please try again.' => 'ãµã€ã³ã€ã³ã§ããŸããã§ããã',
+	'The sign-in validation was not successful. Please make sure your weblog is properly configured and try again.' => 'ãµã€ã³ã€ã³ã®æ€èšŒã«å€±æããŸããããã­ã°ã®èš­å®ãç¢ºèªããŠãã ããã',
+	'No such entry ID \'[_1]\'' => '\'[_1]\'ãšããIDã¯ãããŸããã',
+	'No entry was specified; perhaps there is a template problem?' => 'ãã­ã°èšäºãæå®ãããŠããŸããããã³ãã¬ãŒãã«åé¡ããããããããŸããã',
+	'Somehow, the entry you tried to comment on does not exist' => 'ã³ã¡ã³ãããããšãããã­ã°èšäºããããŸããã',
+	'Invalid commenter ID' => 'ã³ã¡ã³ãæçš¿è
+ã®IDãäžæ­£ã§ãã',
+	'No entry ID provided' => 'ãã­ã°èšäºã®IDãæå®ãããŠããŸããã',
+	'Permission denied' => 'æš©éããããŸããã',
+	'All required fields must have valid values.' => 'å¿
+é ãã£ãŒã«ãã®ãã¹ãŠã«æ­£ããå€ãèš­å®ããŠãã ããã',
+	'Commenter profile has successfully been updated.' => 'ã³ã¡ã³ãæçš¿è
+ã®ãã­ãã£ãŒã«ãæŽæ°ããŸããã',
+	'Commenter profile could not be updated: [_1]' => 'ã³ã¡ã³ãæçš¿è
+ã®ãã­ãã£ãŒã«ãæŽæ°ã§ããŸããã§ãã: [_1]',
+
+## lib/MT/App/Search.pm
+	'You are currently performing a search. Please wait until your search is completed.' => 'You are currently performing a search. Please wait until your search is completed.',
+	'Search failed. Invalid pattern given: [_1]' => 'æ€çŽ¢ã«å€±æããŸããããã¿ãŒã³ãäžæ­£ã§ã: [_1]',
+	'Search failed: [_1]' => 'æ€çŽ¢ã«å€±æããŸãã: [_1]',
+	'No alternate template is specified for the Template \'[_1]\'' => '\'[_1]\'ã«å¯Ÿå¿ãããã³ãã¬ãŒãããããŸããã',
+	'Publishing results failed: [_1]' => 'æ€çŽ¢çµæã®äœæã«å€±æããŸããã',
+	'Search: query for \'[_1]\'' => 'æ€çŽ¢: [_1]',
+	'Search: new comment search' => 'æ°ããã³ã¡ã³ããæ€çŽ¢',
+
+## lib/MT/App/Trackback.pm
+	'Invalid entry ID \'[_1]\'' => 'ãã­ã°èšäºã®IDãäžæ­£ã§ã: [_1]',
+	'You must define a Ping template in order to display pings.' => 'è¡šç€ºããã«ã¯ãã©ãã¯ããã¯ãã³ãã¬ãŒããå®çŸ©ããå¿
+èŠããããŸãã',
+	'Trackback pings must use HTTP POST' => 'Trackback pings must use HTTP POST',
+	'Need a TrackBack ID (tb_id).' => 'ãã©ãã¯ããã¯IDãå¿
+èŠã§ãã',
+	'Invalid TrackBack ID \'[_1]\'' => 'ãã©ãã¯ããã¯ID([_1])ãäžæ­£ã§ãã',
+	'You are not allowed to send TrackBack pings.' => 'ãã©ãã¯ããã¯éä¿¡ãèš±å¯ãããŠããŸããã',
+	'You are pinging trackbacks too quickly. Please try again later.' => 'ç­ãæéã«ãã©ãã¯ããã¯ãéä¿¡ãããã§ããå°ãéããããŠããäžåºŠéä¿¡ããŠãã ããã',
+	'Need a Source URL (url).' => 'URLãå¿
+èŠã§ãã',
+	'This TrackBack item is disabled.' => 'ãã©ãã¯ããã¯ã¯ç¡å¹ã«èš­å®ãããŠããŸãã',
+	'This TrackBack item is protected by a passphrase.' => 'ãã©ãã¯ããã¯ã¯ãã¹ã¯ãŒãã§ä¿è­·ãããŠããŸãã',
+	'TrackBack on "[_1]" from "[_2]".' => '[_2]ãã\'[_1]\'ã«ãã©ãã¯ããã¯ããããŸããã',
+	'TrackBack on category \'[_1]\' (ID:[_2]).' => 'ã«ããŽãª\'[_1]\'ã«ãã©ãã¯ããã¯ããããŸããã',
+	'Can\'t create RSS feed \'[_1]\': ' => 'ãã£ãŒã([_1])ãäœæã§ããŸãã: ',
+	'New TrackBack Ping to Entry [_1] ([_2])' => 'ãã­ã°èšäº\'[_1]\'ãžã®æ°ãããã©ãã¯ããã¯',
+	'New TrackBack Ping to Category [_1] ([_2])' => 'ã«ããŽãª\'[_1]\'ãžã®æ°ãããã©ãã¯ããã¯',
+
+## lib/MT/App/Upgrader.pm
+	'Failed to authenticate using given credentials: [_1].' => 'èªèšŒãããŸããã§ãã: [_1]',
+	'You failed to validate your password.' => 'ãã¹ã¯ãŒããäžæ­£ã§ãã',
+	'You failed to supply a password.' => 'ãã¹ã¯ãŒããæå®ããŠãã ããã',
+	'The e-mail address is required.' => 'ã¡ãŒã«ã¢ãã¬ã¹ã¯å¿
+é ã§ãã',
+	'The path provided below is not writable.' => 'æå®ããããã¹ã«æžãèŸŒã¿ã§ããŸããã',
+	'Invalid session.' => 'ã»ãã·ã§ã³ãäžæ­£ã§ãã',
+	'No permissions. Please contact your administrator for upgrading Movable Type.' => 'æš©éããããŸãããMovable Typeã®ã¢ããã°ã¬ãŒããç®¡çè
+ã«äŸé ŒããŠãã ããã',
+
+## lib/MT/App/Wizard.pm
+	'The [_1] database driver is required to use [_2].' => '[_2]ãäœ¿ãã«ã¯[_1]ã®ããŒã¿ããŒã¹ãã©ã€ããå¿
+èŠã§ãã',
+	'The [_1] driver is required to use [_2].' => '[_2]ãäœ¿ãã«ã¯[_1]ã®ãã©ã€ããå¿
+èŠã§ãã',
+	'An error occurred while attempting to connect to the database.  Check the settings and try again.' => 'ããŒã¿ããŒã¹ã«æ¥ç¶ã§ããŸããã§ãããèš­å®ãèŠçŽããŠããäžåºŠæ¥ç¶ããŠãã ããã',
+	'SMTP Server' => 'SMTPãµãŒããŒ',
+	'Sendmail' => 'Sendmail',
+	'Test email from Movable Type Configuration Wizard' => 'Movable Typeæ§æãŠã£ã¶ãŒãããã®ãã¹ãéä¿¡',
+	'This is the test email sent by your new installation of Movable Type.' => 'Movable Typeã®ã€ã³ã¹ããŒã«äž­ã«éä¿¡ããããã¹ãã¡ãŒã«ã§ãã',
+	'This module is needed to encode special characters, but this feature can be turned off using the NoHTMLEntities option in mt-config.cgi.' => 'ç¹æ®ãªæå­ããšã³ã³ãŒããããšãã«å¿
+èŠã«ãªããŸãããæ§æãã¡ã€ã«ã«NoHTMLEntitiesãèš­å®ããã°ãã®æ©èœãç¡å¹åã§ããŸãã',
+	'This module is needed if you wish to use the TrackBack system, the weblogs.com ping, or the MT Recently Updated ping.' => 'ãã©ãã¯ããã¯æ©èœãæŽæ°éç¥æ©èœãå©çšããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module is needed if you wish to use the MT XML-RPC server implementation.' => 'XML-RPC ã«ããäœæ¥­ãè¡ãå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module is needed if you would like to be able to overwrite existing files when you upload.' => 'ãã¡ã€ã«ã®ã¢ããã­ãŒããè¡ãéã«äžæžããè¡ãå Žåã¯å¿
+èŠãšãªããŸãã',
+	'This module is needed if you would like to be able to create thumbnails of uploaded images.' => 'ã¢ããã­ãŒãããç»åã®ãµã ãã€ã«ãäœæããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module is required by certain MT plugins available from third parties.' => 'å€éšãã©ã°ã€ã³ã®å©çšã®éã«å¿
+èŠãšãªãå ŽåããããŸãã',
+	'This module accelerates comment registration sign-ins.' => 'ã³ã¡ã³ãæçš¿æã®ãµã€ã³ã€ã³ãé«éã«ãªããŸãã',
+	'This module is needed to enable comment registration.' => 'ã³ã¡ã³ãã®èªèšŒæ©èœãå©çšããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module enables the use of the Atom API.' => 'Atom APIãå©çšããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module is required in order to archive files in backup/restore operation.' => 'ããã¯ã¢ãããšåŸ©å
+ã§å§çž®ã®æ©èœãå©çšããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module is required in order to compress files in backup/restore operation.' => 'ããã¯ã¢ãããšåŸ©å
+ã§å§çž®ã®æ©èœãå©çšããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module is required in order to decompress files in backup/restore operation.' => 'ããã¯ã¢ãããšåŸ©å
+ã§å§çž®ã®æ©èœãå©çšããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module and its dependencies are required in order to restore from a backup.' => 'åŸ©å
+ã®æ©èœãå©çšããå Žåã«å¿
+èŠãšãªããŸãã',
+	'This module and its dependencies are required in order to allow commenters to be authenticated by OpenID providers including Vox and LiveJournal.' => 'VoxãšLiveJournalããããã¯OpenIDã§ã³ã¡ã³ãæçš¿è
+ãèªèšŒããããã«å¿
+èŠã«ãªããŸãã',
+	'This module is required for sending mail via SMTP Server.' => 'SMTPãµãŒããŒãçµç±ããŠã¡ãŒã«ãéä¿¡ããå Žåã«å¿
+èŠã«ãªããŸãã',
+	'This module is required for file uploads (to determine the size of uploaded images in many different formats).' => 'ãã¡ã€ã«ã®ã¢ããã­ãŒããè¡ãããã«å¿
+èŠã§ããåçš®ã®ãã¡ã€ã«åœ¢åŒã«å¯Ÿå¿ããŠç»åã®ãµã€ãºãååŸããŸãã',
+	'This module is required for cookie authentication.' => 'cookie èªèšŒã®ããã«å¿
+èŠã§ãã',
+
+## lib/MT/App/Viewer.pm
+	'Loading blog with ID [_1] failed' => 'Loading blog with ID [_1] failed',
+	'Template publishing failed: [_1]' => 'Template publishing failed: [_1]',
+	'Invalid date spec' => 'Invalid date spec',
+	'Can\'t load template [_1]' => 'Can\'t load template [_1]',
+	'Archive publishing failed: [_1]' => 'Archive publishing failed: [_1]',
+	'Invalid entry ID [_1]' => 'Invalid entry ID [_1]',
+	'Entry [_1] is not published' => 'Entry [_1] is not published',
+	'Invalid category ID \'[_1]\'' => 'Invalid category ID \'[_1]\'',
+
 ## lib/MT/App/CMS.pm
-	'Invalid request.' => 'äžæ­£ãªèŠæ±ã§ãã',
 	'_WARNING_PASSWORD_RESET_MULTI' => 'éžæããããŠãŒã¶ãŒã®ãã¹ã¯ãŒããåèš­å®ããããšããŠããŸãããã¹ã¯ãŒãã¯ã©ã³ãã ã«çæãããçŽæ¥ããããã®ã¡ãŒã«ã¢ãã¬ã¹ã«éãããŸãã
 
@@ -829,4 +775,5 @@
 	'Users & Groups' => 'ãŠãŒã¶ãŒ/ã°ã«ãŒã',
 	'Group Roles' => 'ã°ã«ãŒãã®ã­ãŒã«',
+	'Users' => 'ãŠãŒã¶ãŒ',
 	'Invalid user id' => 'ãŠãŒã¶ãŒIDãäžæ­£ã§ãã',
 	'User Roles' => 'ãŠãŒã¶ãŒã®ã­ãŒã«',
@@ -853,4 +800,5 @@
 	'Activity log reset by \'[_1]\'' => '\'[_1]\'ãã­ã°ããªã»ããããŸããã',
 	'Please select a blog.' => 'ãã­ã°ãéžæããŠãã ããã',
+	'Go Back' => 'æ»ã',
 	'Import/Export' => 'ã€ã³ããŒã/ãšã¯ã¹ããŒã',
 	'Invalid parameter' => 'ãã©ã¡ãŒã¿ãäžæ­£ã§ãã',
@@ -858,4 +806,6 @@
 	'Load failed: [_1]' => 'ã­ãŒãã§ããŸããã§ãã: [_1]',
 	'(no reason given)' => '(åå ã¯äžæ)',
+	'Entries' => 'ãã­ã°èšäº',
+	'Pages' => 'ãŠã§ãããŒãž',
 	'(untitled)' => '(ã¿ã€ãã«ãªã)',
 	'index' => 'ã€ã³ããã¯ã¹',
@@ -890,5 +840,4 @@
 	'User requires username' => 'ãŠãŒã¶ãŒåã¯å¿
 é ã§ãã',
-	'A user with the same name already exists.' => 'ååã®ãŠãŒã¶ãŒããã§ã«å­åšããŸãã',
 	'User requires password' => 'ãã¹ã¯ãŒãã¯å¿
 é ã§ãã',
@@ -995,4 +944,5 @@
 	'Category' => 'ã«ããŽãª',
 	'Tag' => 'ã¿ã°',
+	'User' => 'ãŠãŒã¶ãŒ',
 	'Entry Status' => 'å
 ¬éç¶æ
@@ -1006,4 +956,5 @@
 	'Saving entry \'[_1]\' failed: [_2]' => 'ãã­ã°èšäºã[_1]ããä¿å­ã§ããŸããã§ãã: [_2]',
 	'Removing placement failed: [_1]' => 'ãã­ã°èšäºãšã«ããŽãªã®é¢é£ä»ããåé€ã§ããŸããã§ãã: [_1]',
+	'Saving placement failed: [_1]' => 'ãã­ã°èšäºãšã«ããŽãªã®é¢é£ä»ããèš­å®ã§ããŸããã§ãã: [_1]',
 	'[_1] \'[_2]\' (ID:[_3]) edited and its status changed from [_4] to [_5] by user \'[_6]\'' => '[_6]ã[_1]ã[_2]ã(ID:[_3])ãæŽæ°ããå
 ¬éã®ç¶æ
@@ -1018,4 +969,5 @@
 	'Subfolder' => 'ãµããã©ã«ã',
 	'Subcategory' => 'ãµãã«ããŽãª',
+	'Saving category failed: [_1]' => 'ã«ããŽãªãä¿å­ã§ããŸããã§ãã: [_1]',
 	'The [_1] must be given a name!' => '[_1]ã«ã¯ååãå¿
 èŠã§ãã',
@@ -1040,5 +992,4 @@
 	'You cannot define a role without permissions.' => 'æš©éã®ãªãã­ãŒã«ã¯äœæã§ããŸããã',
 	'No permissions.' => 'æš©éããããŸããã',
-	'No entry ID provided' => 'ãã­ã°èšäºã®IDãæå®ãããŠããŸããã',
 	'No such entry \'[_1]\'' => 'ã[_1]ããšãããã­ã°èšäºã¯å­åšããŸããã',
 	'No email address for user \'[_1]\'' => 'ã[_1]ãã«ã¯ã¡ãŒã«ã¢ãã¬ã¹ãèš­å®ãããŠããŸããã',
@@ -1047,8 +998,10 @@
 	'[_1] Update: [_2]' => 'æŽæ°éç¥: [_1] - [_2]',
 	'Error sending mail ([_1]); try another MailTransfer setting?' => 'ã¡ãŒã«ãéä¿¡ã§ããŸããã§ãããMailTransferã®èš­å®ãèŠçŽããŠãã ãã: [_1]',
+	'Upload File' => 'ãã¡ã€ã«ã¢ããã­ãŒã',
 	'Archive Root' => 'ã¢ãŒã«ã€ããã¹',
 	'Site Root' => 'ãµã€ããã¹',
 	'Can\'t load blog #[_1].' => 'ãã­ã°(ID:[_1])ãã­ãŒãã§ããŸããã',
 	'Please select a file to upload.' => 'ã¢ããã­ãŒããããã¡ã€ã«ãéžæããŠãã ããã',
+	'Invalid filename \'[_1]\'' => 'ãã¡ã€ã«å\'[_1]\'ãäžæ­£ã§ãã',
 	'Before you can upload a file, you need to publish your blog.' => 'ãã¡ã€ã«ãã¢ããã­ãŒãããåã«ãã­ã°ã®å
 ¬éèš­å®ãè¡ã£ãŠãã ããã',
@@ -1063,11 +1016,16 @@
 	'File with name \'[_1]\' already exists; Tried to write to tempfile, but open failed: [_2]' => '\'[_1]\'ãšããååã®ãã¡ã€ã«ãæ¢ã«å­åšããŸãããã³ãã©ãªãã¡ã€ã«ã«æžãèŸŒãããšãã§ããŸããã§ãã: [_2]',
 	'Error writing upload to \'[_1]\': [_2]' => 'ã¢ããã­ãŒãããããã¡ã€ã«ã[_1]ã«æžãèŸŒããŸããã§ãã: [_2]',
+	'Perl module Image::Size is required to determine width and height of uploaded images.' => 'Image::Sizeãã€ã³ã¹ããŒã«ããªããšãç»åã®å¹
+ãšé«ããæ€åºã§ããŸããã',
 	'Search & Replace' => 'æ€çŽ¢/çœ®æ',
 	'Invalid date(s) specified for date range.' => 'æ¥ä»ã®ç¯å²æå®ãäžæ­£ã§ãã',
 	'Error in search expression: [_1]' => 'æ€çŽ¢æ¡ä»¶ã«ãšã©ãŒããããŸã: [_1]',
 	'Saving object failed: [_2]' => 'ãªããžã§ã¯ããä¿å­ã§ããŸããã§ãã: [_2]',
+	'Load of blog \'[_1]\' failed: [_2]' => 'ãã­ã°(ID:[_1])ãã­ãŒãã§ããŸããã§ãã: [_2]',
 	'You do not have export permissions' => 'ãšã¯ã¹ããŒãããæš©éããããŸããã',
 	'You do not have import permissions' => 'ã€ã³ããŒãããæš©éããããŸããã',
 	'You do not have permission to create users' => 'ãŠãŒã¶ãŒãäœæããæš©éããããŸããã',
+	'You need to provide a password if you are going to create new users for each user listed in your blog.' => 'ãã­ã°ã«ãŠãŒã¶ãŒãè¿œå ããããã«ã¯ããã¹ã¯ãŒããæå®ããå¿
+èŠããããŸãã',
 	'Importer type [_1] was not found.' => '[_1]ãšããã€ã³ããŒãåœ¢åŒã¯å­åšããŸããã',
 	'Saving map failed: [_1]' => 'ãã³ãã¬ãŒãããããä¿å­ã§ããŸããã§ãã: [_1]',
@@ -1087,4 +1045,5 @@
 	'Type a blog name to filter the choices below.' => 'ãã­ã°åãå
 ¥åããŠçµãèŸŒã¿',
+	'Blog Name' => 'ãã­ã°å',
 	'Description' => 'èª¬æ',
 	'Select a System Administrator' => 'ã·ã¹ãã ç®¡çè
@@ -1094,4 +1053,6 @@
 	'Type a username to filter the choices below.' => 'ãŠãŒã¶ãŒåãå
 ¥åããŠçµãèŸŒã¿',
+	'System Administrator' => 'ã·ã¹ãã ç®¡çè
+',
 	'Error saving file: [_1]' => 'ãã¡ã€ã«ãä¿å­ã§ããŸããã§ãã: [_1]',
 	'represents a user who will be created afterwards' => 'ä»åŸæ°ããäœæããããŠãŒã¶ãŒ',
@@ -1151,5 +1112,4 @@
 	'Some of files could not be restored.' => 'åŸ©å
 ã§ããªãã£ããã¡ã€ã«ããããŸãã',
-	'Uploaded file was not a valid Movable Type backup manifest file.' => 'ã¢ããã­ãŒãããããã¡ã€ã«ã¯Movable Typeããã¯ã¢ããã§äœæããããããã§ã¹ããã¡ã€ã«ã§ã¯ãããŸããã',
 	'Please upload [_1] in this page.' => '[_1]ãã¢ããã­ãŒãããŠãã ããã',
 	'File was not uploaded.' => 'ãã¡ã€ã«ãã¢ããã­ãŒããããŸããã§ããã',
@@ -1168,4 +1128,6 @@
 	'Changing Archive Path for the blog \'[_1]\' (ID:[_2])...' => '\'[_1]\'(ID:[_2])ã®ã¢ãŒã«ã€ããã¹ãå€æŽããŠããŸã...',
 	'Removing Archive Path for the blog \'[_1]\' (ID:[_2])...' => '\'[_1]\'(ID:[_2])ã®ã¢ãŒã«ã€ããã¹ãæ¶å»ããŠããŸã...',
+	'failed' => 'å€±æ',
+	'ok' => 'OK',
 	'Changing file path for the asset \'[_1]\' (ID:[_2])...' => 'ã¢ã€ãã \'[_1]\'(ID:[_2])ã®ãã¹ãå€æŽããŠããŸã...',
 	'Some of the actual files for assets could not be restored.' => 'åŸ©å
@@ -1179,6 +1141,4 @@
 	'You can\'t reply to unpublished comment.' => 'å
 ¬éãããŠããªãã³ã¡ã³ãã«ã¯è¿ä¿¡ã§ããŸããã',
-	'Registered User' => 'ç»é²ãŠãŒã¶ãŒ',
-	'An error occurred: [_1]' => 'ãšã©ãŒãçºçããŸãã: [_1]',
 	'entries' => 'ãã­ã°èšäº',
 	'This is You' => 'This is You',
@@ -1186,4 +1146,6 @@
 	'Movable Type News' => 'Movable Typeãã¥ãŒã¹',
 	'Blog Stats' => 'Blog Stats',
+	'Publish Entries' => 'ãã­ã°èšäºã®å
+¬é',
 	'Unpublish Entries' => 'ãã­ã°èšäºã®å
 ¬éãåãæ¶ã',
@@ -1258,4 +1220,5 @@
 	'Tools' => 'ããŒã«',
 	'Blog' => 'ãã­ã°',
+	'Entry' => 'ãã­ã°èšäº',
 	'Assets' => 'ã¢ã€ãã ',
 	'Folders' => 'ãã©ã«ã',
@@ -1270,138 +1233,4 @@
 	'/' => '/',
 	'<' => '<',
-
-## lib/MT/App/Upgrader.pm
-	'Failed to authenticate using given credentials: [_1].' => 'èªèšŒãããŸããã§ãã: [_1]',
-	'You failed to validate your password.' => 'ãã¹ã¯ãŒããäžæ­£ã§ãã',
-	'You failed to supply a password.' => 'ãã¹ã¯ãŒããæå®ããŠãã ããã',
-	'The e-mail address is required.' => 'ã¡ãŒã«ã¢ãã¬ã¹ã¯å¿
-é ã§ãã',
-	'The path provided below is not writable.' => 'æå®ããããã¹ã«æžãèŸŒã¿ã§ããŸããã',
-	'Invalid session.' => 'ã»ãã·ã§ã³ãäžæ­£ã§ãã',
-	'No permissions. Please contact your administrator for upgrading Movable Type.' => 'æš©éããããŸãããMovable Typeã®ã¢ããã°ã¬ãŒããç®¡çè
-ã«äŸé ŒããŠãã ããã',
-
-## lib/MT/App/Search.pm
-	'You are currently performing a search. Please wait until your search is completed.' => 'You are currently performing a search. Please wait until your search is completed.',
-	'Search failed. Invalid pattern given: [_1]' => 'æ€çŽ¢ã«å€±æããŸããããã¿ãŒã³ãäžæ­£ã§ã: [_1]',
-	'Search failed: [_1]' => 'æ€çŽ¢ã«å€±æããŸãã: [_1]',
-	'No alternate template is specified for the Template \'[_1]\'' => '\'[_1]\'ã«å¯Ÿå¿ãããã³ãã¬ãŒãããããŸããã',
-	'Publishing results failed: [_1]' => 'æ€çŽ¢çµæã®äœæã«å€±æããŸããã',
-	'Search: query for \'[_1]\'' => 'æ€çŽ¢: [_1]',
-	'Search: new comment search' => 'æ°ããã³ã¡ã³ããæ€çŽ¢',
-
-## lib/MT/App/Comments.pm
-	'Error assigning commenting rights to user \'[_1] (ID: [_2])\' for weblog \'[_3] (ID: [_4])\'. No suitable commenting role was found.' => '\'[_1]\' (ID:[_2])ã«ãã­ã°\'[_3]\'(ID:[_2])ãžã®ã³ã¡ã³ãæš©éãäžããããšãã§ããŸããã§ãããã³ã¡ã³ãæš©éãäžããããã®ã­ãŒã«ãèŠã€ãããŸããã',
-	'Invalid commenter login attempt from [_1] to blog [_2](ID: [_3]) which does not allow Movable Type native authentication.' => '[_1]ããã­ã°[_2](ID:[_3])ã«ã­ã°ã€ã³ããããšããŸãããããã®ãã­ã°ã§ã¯Movable TypeèªèšŒãæå¹ã«ãªã£ãŠããŸããã',
-	'Login failed: permission denied for user \'[_1]\'' => 'ã­ã°ã€ã³ã«å€±æããŸããã[_1]ã«ã¯æš©éããããŸããã',
-	'Login failed: password was wrong for user \'[_1]\'' => 'ã­ã°ã€ã³ã«å€±æããŸããã[_1]ã®ãã¹ã¯ãŒããèª€ã£ãŠããŸãã',
-	'Signing up is not allowed.' => 'ç»é²ã¯ã§ããŸããã',
-	'Passwords do not match.' => 'ãã¹ã¯ãŒããèª€ã£ãŠããŸãã',
-	'User requires username.' => 'ãŠãŒã¶ãŒåã¯å¿
-é ã§ãã',
-	'User requires display name.' => 'è¡šç€ºåã¯å¿
-é ã§ãã',
-	'User requires password.' => 'ãã¹ã¯ãŒãã¯å¿
-é ã§ãã',
-	'User requires password recovery word/phrase.' => 'ãã¹ã¯ãŒãåèš­å®çšã®ãã¬ãŒãºã¯å¿
-é ã§ãã',
-	'Email Address is invalid.' => 'ã¡ãŒã«ã¢ãã¬ã¹ãäžæ­£ã§ãã',
-	'Email Address is required for password recovery.' => 'ã¡ãŒã«ã¢ãã¬ã¹ã¯å¿
-é ã§ãã',
-	'URL is invalid.' => 'URLãäžæ­£ã§ãã',
-	'Text entered was wrong.  Try again.' => 'å
-¥åãããæå­åãæ­£ãããããŸããã',
-	'Something wrong happened when trying to process signup: [_1]' => 'ç»é²ã«å€±æããŸãã: [_1]',
-	'Movable Type Account Confirmation' => 'Movable Type ã¢ã«ãŠã³ãç»é²ç¢ºèª',
-	'System Email Address is not configured.' => 'ã·ã¹ãã ã§å©çšããã¡ãŒã«ã¢ãã¬ã¹ãèš­å®ãããŠããŸããã',
-	'Commenter \'[_1]\' (ID:[_2]) has been successfully registered.' => 'ã³ã¡ã³ãæçš¿è
-\'[_1]\'(ID:[_2])ãç»é²ãããŸããã',
-	'Thanks for the confirmation.  Please sign in to comment.' => 'ç»é²ããããšãããããŸãããµã€ã³ã€ã³ããŠã³ã¡ã³ãããŠãã ããã',
-	'[_1] registered to the blog \'[_2]\'' => '[_1]ããã­ã°\'[_2]\'ã«ç»é²ãããŸããã',
-	'No id' => 'IDããããŸããã',
-	'No such comment' => 'ã³ã¡ã³ãããããŸããã',
-	'IP [_1] banned because comment rate exceeded 8 comments in [_2] seconds.' => '[_1]ããã®ã³ã¡ã³ãã[_2]ç§éã«8åç¶ããããããã®IPã¢ãã¬ã¹ãçŠæ­¢ãªã¹ãã«ç»é²ããŸããã',
-	'IP Banned Due to Excessive Comments' => 'å€§éã³ã¡ã³ãã«ããIPçŠæ­¢',
-	'_THROTTLED_COMMENT_EMAIL' => 'ãã­ã°[_1]ã«[_2]ç§ã®éã«èš±å¯ãããæ°ãè¶
-ããã³ã¡ã³ãããããŠãŒã¶ãŒãèªåçã«çŠæ­¢ãããŸãããããã¯ã¹ã¯ãªããã«ããå€§éã®ã³ã¡ã³ããé²ãããã®åŠçœ®ã§ããçŠæ­¢ãããIPã¢ãã¬ã¹ã¯[_3]ã§ãããããééãã§ããå Žåã¯ãMovable Typeã«ã­ã°ã€ã³ããŠããã­ã°ã®èš­å®ç»é¢ã«é²ã¿ãIPçŠæ­¢ãªã¹ãããIPã¢ãã¬ã¹ãåé€ããŠãã ããã',
-	'Invalid request' => 'äžæ­£ãªèŠæ±ã§ãã',
-	'No such entry \'[_1]\'.' => 'ãã­ã°èšäº\'[_1]\'ããããŸããã',
-	'You are not allowed to add comments.' => 'ã³ã¡ã³ãã§ããŸããã',
-	'_THROTTLED_COMMENT' => 'ç­ãæéã«ã³ã¡ã³ããå€§éã«éãããã§ãããã°ãããã£ãŠããããçŽããŠãã ããã',
-	'Comments are not allowed on this entry.' => 'ãã®ãã­ã°èšäºã«ã¯ã³ã¡ã³ãã§ããŸããã',
-	'Comment text is required.' => 'ã³ã¡ã³ããå
-¥åããŠããŸããã',
-	'Registration is required.' => 'ç»é²ããªããã°ãªããŸããã',
-	'Name and email address are required.' => 'ååãšã¡ãŒã«ã¢ãã¬ã¹ã¯å¿
-é ã§ãã',
-	'Invalid email address \'[_1]\'' => 'ã¡ãŒã«ã¢ãã¬ã¹([_1])ã¯äžæ­£ã§ãã',
-	'Comment save failed with [_1]' => 'ã³ã¡ã³ããä¿å­ã§ããŸããã§ãã: [_1]',
-	'Comment on "[_1]" by [_2].' => '[_2]ã\'[_1]\'ã«ã³ã¡ã³ãããŸããã',
-	'Commenter save failed with [_1]' => 'ã³ã¡ã³ãæçš¿è
-ãäœæã§ããŸããã§ãã: [_1]',
-	'Failed comment attempt by pending registrant \'[_1]\'' => 'ãŸã ç»é²ãå®äºããŠããªããŠãŒã¶ãŒ\'[_1]\'ãã³ã¡ã³ãããããšããŸããã',
-	'The sign-in attempt was not successful; please try again.' => 'ãµã€ã³ã€ã³ã§ããŸããã§ããã',
-	'The sign-in validation was not successful. Please make sure your weblog is properly configured and try again.' => 'ãµã€ã³ã€ã³ã®æ€èšŒã«å€±æããŸããããã­ã°ã®èš­å®ãç¢ºèªããŠãã ããã',
-	'No such entry ID \'[_1]\'' => '\'[_1]\'ãšããIDã¯ãããŸããã',
-	'No entry was specified; perhaps there is a template problem?' => 'ãã­ã°èšäºãæå®ãããŠããŸããããã³ãã¬ãŒãã«åé¡ããããããããŸããã',
-	'Somehow, the entry you tried to comment on does not exist' => 'ã³ã¡ã³ãããããšãããã­ã°èšäºããããŸããã',
-	'Invalid commenter ID' => 'ã³ã¡ã³ãæçš¿è
-ã®IDãäžæ­£ã§ãã',
-	'Permission denied' => 'æš©éããããŸããã',
-	'All required fields must have valid values.' => 'å¿
-é ãã£ãŒã«ãã®ãã¹ãŠã«æ­£ããå€ãèš­å®ããŠãã ããã',
-	'Commenter profile has successfully been updated.' => 'ã³ã¡ã³ãæçš¿è
-ã®ãã­ãã£ãŒã«ãæŽæ°ããŸããã',
-	'Commenter profile could not be updated: [_1]' => 'ã³ã¡ã³ãæçš¿è
-ã®ãã­ãã£ãŒã«ãæŽæ°ã§ããŸããã§ãã: [_1]',
-
-## lib/MT/App/Wizard.pm
-	'The [_1] database driver is required to use [_2].' => '[_2]ãäœ¿ãã«ã¯[_1]ã®ããŒã¿ããŒã¹ãã©ã€ããå¿
-èŠã§ãã',
-	'The [_1] driver is required to use [_2].' => '[_2]ãäœ¿ãã«ã¯[_1]ã®ãã©ã€ããå¿
-èŠã§ãã',
-	'An error occurred while attempting to connect to the database.  Check the settings and try again.' => 'ããŒã¿ããŒã¹ã«æ¥ç¶ã§ããŸããã§ãããèš­å®ãèŠçŽããŠããäžåºŠæ¥ç¶ããŠãã ããã',
-	'SMTP Server' => 'SMTPãµãŒããŒ',
-	'Sendmail' => 'Sendmail',
-	'Test email from Movable Type Configuration Wizard' => 'Movable Typeæ§æãŠã£ã¶ãŒãããã®ãã¹ãéä¿¡',
-	'This is the test email sent by your new installation of Movable Type.' => 'Movable Typeã®ã€ã³ã¹ããŒã«äž­ã«éä¿¡ããããã¹ãã¡ãŒã«ã§ãã',
-	'This module is needed to encode special characters, but this feature can be turned off using the NoHTMLEntities option in mt-config.cgi.' => 'ç¹æ®ãªæå­ããšã³ã³ãŒããããšãã«å¿
-èŠã«ãªããŸãããæ§æãã¡ã€ã«ã«NoHTMLEntitiesãèš­å®ããã°ãã®æ©èœãç¡å¹åã§ããŸãã',
-	'This module is needed if you wish to use the TrackBack system, the weblogs.com ping, or the MT Recently Updated ping.' => 'ãã©ãã¯ããã¯æ©èœãæŽæ°éç¥æ©èœãå©çšããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module is needed if you wish to use the MT XML-RPC server implementation.' => 'XML-RPC ã«ããäœæ¥­ãè¡ãå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module is needed if you would like to be able to overwrite existing files when you upload.' => 'ãã¡ã€ã«ã®ã¢ããã­ãŒããè¡ãéã«äžæžããè¡ãå Žåã¯å¿
-èŠãšãªããŸãã',
-	'This module is needed if you would like to be able to create thumbnails of uploaded images.' => 'ã¢ããã­ãŒãããç»åã®ãµã ãã€ã«ãäœæããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module is required by certain MT plugins available from third parties.' => 'å€éšãã©ã°ã€ã³ã®å©çšã®éã«å¿
-èŠãšãªãå ŽåããããŸãã',
-	'This module accelerates comment registration sign-ins.' => 'ã³ã¡ã³ãæçš¿æã®ãµã€ã³ã€ã³ãé«éã«ãªããŸãã',
-	'This module is needed to enable comment registration.' => 'ã³ã¡ã³ãã®èªèšŒæ©èœãå©çšããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module enables the use of the Atom API.' => 'Atom APIãå©çšããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module is required in order to archive files in backup/restore operation.' => 'ããã¯ã¢ãããšåŸ©å
-ã§å§çž®ã®æ©èœãå©çšããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module is required in order to compress files in backup/restore operation.' => 'ããã¯ã¢ãããšåŸ©å
-ã§å§çž®ã®æ©èœãå©çšããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module is required in order to decompress files in backup/restore operation.' => 'ããã¯ã¢ãããšåŸ©å
-ã§å§çž®ã®æ©èœãå©çšããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module and its dependencies are required in order to restore from a backup.' => 'åŸ©å
-ã®æ©èœãå©çšããå Žåã«å¿
-èŠãšãªããŸãã',
-	'This module and its dependencies are required in order to allow commenters to be authenticated by OpenID providers including Vox and LiveJournal.' => 'VoxãšLiveJournalããããã¯OpenIDã§ã³ã¡ã³ãæçš¿è
-ãèªèšŒããããã«å¿
-èŠã«ãªããŸãã',
-	'This module is required for sending mail via SMTP Server.' => 'SMTPãµãŒããŒãçµç±ããŠã¡ãŒã«ãéä¿¡ããå Žåã«å¿
-èŠã«ãªããŸãã',
-	'This module is required for file uploads (to determine the size of uploaded images in many different formats).' => 'ãã¡ã€ã«ã®ã¢ããã­ãŒããè¡ãããã«å¿
-èŠã§ããåçš®ã®ãã¡ã€ã«åœ¢åŒã«å¯Ÿå¿ããŠç»åã®ãµã€ãºãååŸããŸãã',
-	'This module is required for cookie authentication.' => 'cookie èªèšŒã®ããã«å¿
-èŠã§ãã',
 
 ## lib/MT/App/ActivityFeeds.pm
@@ -1421,32 +1250,16 @@
 	'All Weblog Pages' => 'ãã¹ãŠã®ãã­ã°ã®ãŠã§ãããŒãž',
 
-## lib/MT/App/Viewer.pm
-	'Loading blog with ID [_1] failed' => 'Loading blog with ID [_1] failed',
-	'Template publishing failed: [_1]' => 'Template publishing failed: [_1]',
-	'Invalid date spec' => 'Invalid date spec',
-	'Can\'t load template [_1]' => 'Can\'t load template [_1]',
-	'Archive publishing failed: [_1]' => 'Archive publishing failed: [_1]',
-	'Invalid entry ID [_1]' => 'Invalid entry ID [_1]',
-	'Entry [_1] is not published' => 'Entry [_1] is not published',
-	'Invalid category ID \'[_1]\'' => 'Invalid category ID \'[_1]\'',
-
-## lib/MT/Role.pm
-	'Role' => 'ã­ãŒã«',
-
-## lib/MT/Import.pm
-	'Can\'t rewind' => 'ãã€ã³ã¿ãå
-é ­ã«ç§»åã§ããŸãã',
-	'Can\'t open \'[_1]\': [_2]' => '\'[_1]\'ãéããŸãã: [_2]',
-	'Can\'t open directory \'[_1]\': [_2]' => 'ãã£ã¬ã¯ããª\'[_1]\'ãéããŸããã§ãã] [_2]',
-	'No readable files could be found in your import directory [_1].' => 'èª­ã¿åããªããã¡ã€ã«ããããŸãã: [_1]',
-	'Couldn\'t resolve import format [_1]' => 'ã€ã³ããŒãåœ¢åŒ[_1]ãåŠçã§ããŸããã§ããã',
-	'Movable Type' => 'Movable Type',
-	'Another system (Movable Type format)' => 'ä»ã®ã·ã¹ãã (Movable Typeåœ¢åŒ)',
-
-## lib/MT/TBPing.pm
-
-## lib/MT/Scorable.pm
-	'Already scored for this object.' => 'ãã§ã«1åºŠè©äŸ¡ããŠããŸãã',
-	'Can not set score to the object \'[_1]\'(ID: [_2])' => '\'[_1]\'(ID][_2])ã«ã¹ã³ã¢ãèš­å®ã§ããŸããã',
+## lib/MT/BasicAuthor.pm
+	'authors' => 'ãŠãŒã¶ãŒ',
+
+## lib/MT/Placement.pm
+	'Category Placement' => 'ã«ããŽãªã®é¢é£ä»ã',
+
+## lib/MT/TaskMgr.pm
+	'Unable to secure lock for executing system tasks. Make sure your TempDir location ([_1]) is writable.' => 'ã¿ã¹ã¯ãå®è¡ããããã«å¿
+èŠãªã­ãã¯ãç²åŸã§ããŸããã§ãããTempDir([_1])ã«æžãèŸŒã¿ã§ãããã©ããç¢ºèªããŠãã ããã',
+	'Error during task \'[_1]\': [_2]' => '\'[_1]\'ã®å®è¡äž­ã«ãšã©ãŒãçºçããŸãã: [_2]',
+	'Scheduled Tasks Update' => 'ã¹ã±ãžã¥ãŒã«ãããã¿ã¹ã¯',
+	'The following tasks were run:' => 'ä»¥äžã®ã¿ã¹ã¯ãå®è¡ããŸãã:',
 
 ## lib/MT/Page.pm
@@ -1454,84 +1267,37 @@
 	'Load of blog failed: [_1]' => 'ãã­ã°ãã­ãŒãã§ããŸããã§ãã: [_1]',
 
+## lib/MT/Bootstrap.pm
+	'Got an error: [_1]' => 'ãšã©ãŒãçºçããŸãã: [_1]',
+
+## lib/MT/Category.pm
+	'Categories must exist within the same blog' => 'ã«ããŽãªã¯èŠªãšãªãã«ããŽãªãšåããã­ã°ã«äœããªããã°ãªããŸããã',
+	'Category loop detected' => 'ã«ããŽãªããäºãã«èŠªãšå­ã®é¢ä¿ã«ãªã£ãŠããŸãã',
+
+## lib/MT/Asset.pm
+	'Asset' => 'ã¢ã€ãã ',
+	'Location' => 'å Žæ',
+
 ## lib/MT/Session.pm
 	'Session' => 'ã»ãã·ã§ã³',
 
-## lib/MT/Tag.pm
-	'Tag must have a valid name' => 'ã¿ã°ã®ååãäžæ­£ã§ãã',
-	'This tag is referenced by others.' => 'ãã®ã¿ã°ã¯ä»ã®ã¿ã°ããåç
-§ãããŠããŸãã',
-
-## lib/MT/Entry.pm
-	'Draft' => 'äžæžã',
-	'Review' => 'ã¬ãã¥ãŒ',
-	'Future' => 'æ¥ææå®',
-
-## lib/MT/XMLRPC.pm
-	'No WeblogsPingURL defined in the configuration file' => 'æ§æãã¡ã€ã«ã«WeblogsPingURLãèš­å®ãããŠããŸããã',
-	'No MTPingURL defined in the configuration file' => 'æ§æãã¡ã€ã«ã«MTPingURLãèš­å®ãããŠããŸããã',
-	'HTTP error: [_1]' => 'HTTPãšã©ãŒ: [_1]',
-	'Ping error: [_1]' => 'Pingãšã©ãŒ: [_1]',
-
-## lib/MT/Template/ContextHandlers.pm
-	'Remove this widget' => 'ãã®ãŠã£ãžã§ãããåé€',
-	'[_1]Publish[_2] your site to see these changes take effect.' => 'èš­å®ãæå¹ã«ããããã«[_1]åæ§ç¯[_2]ããŠãã ããã',
-	'Actions' => 'ã¢ã¯ã·ã§ã³',
-	'Warning' => 'è­Šå',
-	'No [_1] could be found.' => '[_1]ãèŠã€ãããŸããã',
-	'Recursion attempt on [_1]: [_2]' => '[_1]ã§ãäºãããäºããåç
-§ããŠããç¶æ
-ã«ãªã£ãŠããŸã: [_2]',
-	'Can\'t find included template [_1] \'[_2]\'' => '[_1]ãšãããã³ãã¬ãŒããèŠã€ãããŸããã§ãã: [_2]',
-	'Can\'t find blog for id \'[_1]' => 'ID;[_1]ã®ãã­ã°ãèŠã€ãããŸããã§ããã',
-	'Can\'t find included file \'[_1]\'' => '[_1]ãšãããã¡ã€ã«ãèŠã€ãããŸããã§ããã',
-	'Error opening included file \'[_1]\': [_2]' => '[_1]ãéããŸããã§ãã: [_2]',
-	'Recursion attempt on file: [_1]' => '[_1]ã§ãäºãããäºããåç
-§ããŠããç¶æ
-ã«ãªã£ãŠããŸãã',
-	'Unspecified archive template' => 'ã¢ãŒã«ã€ããã³ãã¬ãŒããæå®ãããŠããŸããã',
-	'Error in file template: [_1]' => 'ãã¡ã€ã«ãã³ãã¬ãŒãã§ãšã©ãŒãçºçããŸãã: [_1]',
-	'Can\'t load template' => 'ãã³ãã¬ãŒããã­ãŒãã§ããŸããã§ããã',
-	'Can\'t find template \'[_1]\'' => '\'[_1]\'ãšãããã³ãã¬ãŒããèŠã€ãããŸããã§ããã',
-	'Can\'t find entry \'[_1]\'' => '\'[_1]\'ãšãããã­ã°èšäºãèŠã€ãããŸããã§ããã',
-	'[_1] [_2]' => '[_1] [_2]',
-	'You used a [_1] tag without any arguments.' => '[_1]ã¯åŒæ°ãªãã§å©çšã§ããŸããã',
-	'You used an \'[_1]\' tag outside of the context of a author; perhaps you mistakenly placed it outside of an \'MTAuthors\' container?' => '[_1]ãã³ã³ãã­ã¹ãå€ã§å©çšããããšããŠããŸããMTAuthorsã³ã³ããã¿ã°ã®å€éšã§äœ¿ã£ãŠããŸããã?',
-	'You have an error in your \'[_2]\' attribute: [_1]' => '[_2]å±æ§ã§ãšã©ãŒããããŸãã: [_1]',
-	'You have an error in your \'tag\' attribute: [_1]' => 'tagå±æ§ã§ãšã©ãŒããããŸãã: [_1]',
-	'No such user \'[_1]\'' => 'ãŠãŒã¶ãŒ([_1])ãèŠã€ãããŸããã',
-	'You used an \'[_1]\' tag outside of the context of an entry; perhaps you mistakenly placed it outside of an \'MTEntries\' container?' => '[_1]ãã³ã³ãã­ã¹ãå€ã§å©çšããããšããŠããŸããMTEntriesã³ã³ããã¿ã°ã®å€éšã§äœ¿ã£ãŠããŸããã?',
-	'You used <$MTEntryFlag$> without a flag.' => '<$MTEntryFlag$>ããã©ã°ãªãã§å©çšããããšããŸããã',
-	'You used an [_1] tag for linking into \'[_2]\' archives, but that archive type is not published.' => '[_2]ã¢ãŒã«ã€ãã«ãªã³ã¯ããããã«[_1]ã¿ã°ãäœ¿ã£ãŠããŸãããã¢ãŒã«ã€ããåºåãããŠããŸããã',
-	'Could not create atom id for entry [_1]' => 'ãã­ã°èšäºã®Atom IDãäœæã§ããŸããã§ããã',
-	'To enable comment registration, you need to add a TypeKey token in your weblog config or user profile.' => 'To enable comment registration, you need to add a TypeKey token in your weblog config or user profile.',
-	'You used an [_1] tag without a date context set up.' => '[_1]ãæ¥ä»ã³ã³ãã­ã¹ãã®å€éšã§å©çšããããšããŸããã',
-	'You used an \'[_1]\' tag outside of the context of a comment; perhaps you mistakenly placed it outside of an \'MTComments\' container?' => '[_1]ãã³ã¡ã³ãã®ã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTCommentsã³ã³ããã®å€éšã«é
-çœ®ããŠããŸããã?',
-	'[_1] can be used only with Daily, Weekly, or Monthly archives.' => '[_1]ã¯æ¥å¥ãé±å¥ãæå¥ã®åã¢ãŒã«ã€ãã§ã®ã¿å©çšã§ããŸãã',
-	'Group iterator failed.' => 'ã¢ãŒã«ã€ãã®ã­ãŒãã§ãšã©ãŒãçºçããŸããã',
-	'You used an [_1] tag outside of the proper context.' => '[_1]ã¿ã°ãäžæ­£ãªã³ã³ãã­ã¹ãã§å©çšããããšããŸããã',
-	'Could not determine entry' => 'ãã­ã°èšäºãååŸã§ããŸããã§ããã',
-	'Invalid month format: must be YYYYMM' => 'YYYYMMåœ¢åŒã§ãªããã°ãªããŸããã',
-	'No such category \'[_1]\'' => '[_1]ãšããã«ããŽãªã¯ãããŸããã',
-	'<\$MTCategoryTrackbackLink\$> must be used in the context of a category, or with the \'category\' attribute to the tag.' => '<\$MTCategoryTrackbackLink\$>ã¯ã«ããŽãªã®ã³ã³ãã­ã¹ãããŸãã¯categoryå±æ§ãšãšãã«å©çšããå¿
-èŠããããŸãã',
-	'You failed to specify the label attribute for the [_1] tag.' => '[_1]ã¿ã°ã«labelå±æ§ãèš­å®ãããŠããŸããã',
-	'You used an \'[_1]\' tag outside of the context of a ping; perhaps you mistakenly placed it outside of an \'MTPings\' container?' => '[_1]ã¿ã°ããã©ãã¯ããã¯ã®ã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTPingsã³ã³ããã®å€éšã«é
-çœ®ããŠããŸããã?',
-	'[_1] used outside of [_2]' => '[_1]ã[_2]ã®å€éšã§å©çšããããšããŸããã',
-	'MT[_1] must be used in a [_2] context' => 'MT[_1]ã¯[_2]ã®ã³ã³ãã­ã¹ãå€éšã§ã¯å©çšã§ããŸããã',
-	'Cannot find package [_1]: [_2]' => '[_1]ãšããããã±ãŒãžãèŠã€ãããŸããã§ãã: [_2]',
-	'Error sorting [_2]: [_1]' => '[_2]ã®äžŠã¹æ¿ãã§ãšã©ãŒãçºçããŸãã: [_1]',
-	'Edit' => 'ç·šé',
-	'You used an \'[_1]\' tag outside of the context of an asset; perhaps you mistakenly placed it outside of an \'MTAssets\' container?' => '[_1]ãAssetã®ã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTAssetsã³ã³ããã®å€éšã«é
-çœ®ããŠããŸããã?',
-	'You used an \'[_1]\' tag outside of the context of an page; perhaps you mistakenly placed it outside of an \'MTPages\' container?' => '[_1]ãã³ã³ãã­ã¹ãå€ã§å©çšããããšããŸãããMTPagesã³ã³ããã®å€éšã«é
-çœ®ããŠããŸããã?',
-	'You used an [_1] without a author context set up.' => '[_1]ããŠãŒã¶ãŒã®ã³ã³ãã­ã¹ãå€éšã§å©çšããããšããŸããã',
-	'Can\'t load blog.' => 'ãã­ã°ãã­ãŒãã§ããŸããã§ããã',
-	'Can\'t load user.' => 'ãŠãŒã¶ãŒãã­ãŒãã§ããŸããã§ããã',
-
-## lib/MT/Template/Context.pm
-	'The attribute exclude_blogs cannot take \'all\' for a value.' => 'exclude_blogså±æ§ã«ã¯allãèš­å®ã§ããŸããã',
+## lib/MT/Image.pm
+	'Can\'t load Image::Magick: [_1]' => 'Image::Magickãã­ãŒãã§ããŸãã: [_1]',
+	'Reading file \'[_1]\' failed: [_2]' => 'ãã¡ã€ã« \'[_1]\' ãèª­ã¿åããŸããã§ãã: [_1]',
+	'Reading image failed: [_1]' => 'ç»åãèª­ã¿åããŸããã§ããã',
+	'Scaling to [_1]x[_2] failed: [_3]' => 'ãµã€ãºã[_1]x[_2]ã«å€æŽã§ããŸããã§ããã',
+	'Can\'t load IPC::Run: [_1]' => 'IPC::Runãã­ãŒãã§ããŸãã: [_1]',
+	'You do not have a valid path to the NetPBM tools on your machine.' => 'NetPBMããŒã«ãžã®ãã¹ãæ­£ããèš­å®ãããŠããŸããã',
+
+## lib/MT/Notification.pm
+	'Contact' => 'é£çµ¡å
+',
+	'Contacts' => 'é£çµ¡å
+',
+
+## lib/MT/Trackback.pm
+	'TrackBack' => 'ãã©ãã¯ããã¯',
+
+## lib/MT/ObjectAsset.pm
+	'Asset Placement' => 'ã¢ã€ãã ã®é¢é£ä»ã',
 
 ## lib/MT/Upgrade.pm
@@ -1553,4 +1319,6 @@
 	'Welcome to my new blog powered by Movable Type. This is the first post on my blog and was created for me automatically when I finished the installation process. But that is ok, because I will soon be creating posts of my own!' => 'ãã®ãã­ã°èšäºã¯ãMovable Type 4ã®ã€ã³ã¹ããŒã«å®äºæã«ãã·ã¹ãã ã«ãã£ãŠèªåçã«äœæããããã­ã°èšäºã§ãã æ°ãããªã£ãMT4ã®ç®¡çç»é¢ã§ãæ©éãã­ã°ãæŽæ°ããŠã¿ãŸãããã',
 	'Movable Type also created a comment for me as well so that I could see what a comment will look like on my blog once people start submitting comments on all the posts I will write.' => 'ãã®ã³ã¡ã³ãã¯ãMovable Type ã®ã€ã³ã¹ããŒã«å®äºæã«ãã·ã¹ãã ã«ãã£ãŠèªåçã«æçš¿ãããã³ã¡ã³ãã§ããMT ã®ãã­ã°ã«æçš¿ãããã³ã¡ã³ãããã©ã®ããã«è¡šç€ºãããã®ããããç¢ºèªããã ããŸãã',
+	'Blog Administrator' => 'ãã­ã°ç®¡çè
+',
 	'Can administer the blog.' => 'ãã­ã°ã®ç®¡çè
 ã§ãã',
@@ -1589,4 +1357,5 @@
 	'Setting your permissions to administrator.' => 'ç®¡çè
 ã«èš­å®ããŸããã',
+	'Comment Response' => 'ã³ã¡ã³ãå®äº',
 	'Creating configuration record.' => 'æ§æããŒã¿ãäœæããŠããŸãã',
 	'Creating template maps...' => 'ãã³ãã¬ãŒãããããäœæããŠããŸã...',
@@ -1639,31 +1408,178 @@
 	'Assigning user authentication type...' => 'ãŠãŒã¶ãŒã«èªèšŒã¿ã€ããèš­å®ããŠããŸã...',
 
-## lib/MT/JunkFilter.pm
-	'Action: Junked (score below threshold)' => 'çµæ: ã¹ãã (ã¹ã³ã¢ããããå€ä»¥äž)',
-	'Action: Published (default action)' => 'çµæ: å
-¬é(æ¢å®)',
-	'Junk Filter [_1] died with: [_2]' => 'ãã£ã«ã¿\'[_1]\'ã§ãšã©ãŒããããŸãã: [_2]',
-	'Unnamed Junk Filter' => '(ååãªã)',
-	'Composite score: [_1]' => 'åèšç¹: [_1]',
-
-## lib/MT/Template.pm
-	'Template' => 'ãã³ãã¬ãŒã',
-	'Error reading file \'[_1]\': [_2]' => 'ãã¡ã€ã«: [_1]ãèª­ã¿èŸŒããŸããã§ãã: [_2]',
-	'Publish error in template \'[_1]\': [_2]' => 'ãã³ãã¬ãŒãã[_1]ãã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_2]',
-	'Template with the same name already exists in this blog.' => 'ãã­ã°ã«ååã®ãã³ãã¬ãŒããå­åšããŸãã',
-	'You cannot use a [_1] extension for a linked file.' => '[_1]ããªã³ã¯ãã¡ã€ã«ã®æ¡åŒµå­ã«äœ¿ãããšã¯ã§ããŸããã',
-	'Opening linked file \'[_1]\' failed: [_2]' => 'ãªã³ã¯ãã¡ã€ã«\'[_1]\'ãéããŸããã§ãã: [_2]',
-	'Index' => 'ã€ã³ããã¯ã¹',
-	'Category Archive' => 'ã«ããŽãªã¢ãŒã«ã€ã',
-	'Comment Listing' => 'ã³ã¡ã³ãäžèŠ§',
-	'Ping Listing' => 'ãã©ãã¯ããã¯äžèŠ§',
-	'Comment Error' => 'ã³ã¡ã³ããšã©ãŒ',
-	'Uploaded Image' => 'ç»å',
-	'Module' => 'ã¢ãžã¥ãŒã«',
-	'Widget' => 'ãŠã£ãžã§ãã',
+## lib/MT/Core.pm
+	'Create Blogs' => 'ãã­ã°ã®äœæ',
+	'Manage Plugins' => 'ãã©ã°ã€ã³ã®ç®¡ç',
+	'View System Activity Log' => 'ã·ã¹ãã ã­ã°ã®é²èŠ§',
+	'Configure Blog' => 'ãã­ã°ã®èš­å®',
+	'Set Publishing Paths' => 'å
+¬éãã¹ã®èš­å®',
+	'Manage Categories' => 'ã«ããŽãªã®ç®¡ç',
+	'Manage Tags' => 'ã¿ã°ã®ç®¡ç',
+	'Manage Address Book' => 'ã¢ãã¬ã¹åž³ã®ç®¡ç',
+	'View Activity Log' => 'ã­ã°ã®é²èŠ§',
+	'Create Entries' => 'ãã­ã°èšäºã®äœæ',
+	'Send Notifications' => 'éç¥ã®éä¿¡',
+	'Manage Entries' => 'ãã­ã°èšäºã®äžèŠ§',
+	'Manage Pages' => 'ãŠã§ãããŒãžã®ç®¡ç',
+	'Publish Blog' => 'ãã­ã°ã®åæ§ç¯',
+	'Manage Templates' => 'ãã³ãã¬ãŒãã®ç®¡ç',
+	'Save Image Defaults' => 'ç»åã«é¢ããæ¢å®å€ã®èš­å®',
+	'Manage Assets' => 'ã¢ã€ãã ã®ç®¡ç',
+	'Post Comments' => 'ã³ã¡ã³ãã®éä¿¡',
+	'Manage Feedback' => 'ã³ã¡ã³ã/ãã©ãã¯ããã¯ã®ç®¡ç',
+	'MySQL Database' => 'MySQLããŒã¿ããŒã¹',
+	'PostgreSQL Database' => 'PostgreSQLããŒã¿ããŒã¹',
+	'SQLite Database' => 'SQLiteããŒã¿ããŒã¹',
+	'SQLite Database (v2)' => 'SQLite (v2) ããŒã¿ããŒã¹',
+	'Convert Line Breaks' => 'æ¹è¡ãå€æ',
+	'Rich Text' => 'ãªãããã­ã¹ã',
+	'weblogs.com' => 'weblogs.com',
+	'technorati.com' => 'technorati.com',
+	'google.com' => 'google.com',
+	'Publishes content.' => 'ã³ã³ãã³ããå
+¬éããŸãã',
+	'Synchronizes content to other server(s).' => 'ã³ã³ãã³ããä»ã®ãµãŒããŒã«åæããŸãã',
+	'Entries List' => 'ãã­ã°èšäºã®äžèŠ§',
+	'Blog URL' => 'ãã­ã°URL',
+	'Blog ID' => 'ãã­ã°ID',
+	'Entry Body' => 'æ¬æ',
+	'Entry Excerpt' => 'æŠèŠ',
+	'Entry Link' => 'ãªã³ã¯',
+	'Entry Extended Text' => 'ç¶ã',
+	'Entry Title' => 'ã¿ã€ãã«',
+	'If Block' => 'Ifæ¡ä»¶ãã­ãã¯',
+	'If/Else Block' => 'If/Elseæ¡ä»¶ãã­ãã¯',
+	'Include Template Module' => 'ãã³ãã¬ãŒãã¢ãžã¥ãŒã«ã®ã€ã³ã¯ã«ãŒã',
+	'Include Template File' => 'ãã³ãã¬ãŒããã¡ã€ã«ã®ã€ã³ã¯ã«ãŒã',
+	'Get Variable' => 'å€æ°ã®Get',
+	'Set Variable' => 'å€æ°ã®Set',
+	'Set Variable Block' => 'å€æ°ãã­ãã¯ã®Set',
+	'Publish Scheduled Entries' => 'æ¥ææå®ããããã­ã°èšäºãåæ§ç¯',
+	'Junk Folder Expiration' => 'ã¹ãã ã³ã¡ã³ã/ãã©ãã¯ããã¯ã®å»æ£',
+	'Remove Temporary Files' => 'ãã³ãã©ãªãã¡ã€ã«ã®åé€',
+	'Remove Expired User Sessions' => 'æéåãã®ãŠãŒã¶ãŒã»ãã·ã§ã³ãåé€',
+
+## lib/MT/ObjectTag.pm
+	'Tag Placement' => 'ã¿ã°ã®é¢é£ä»ã',
+	'Tag Placements' => 'ã¿ã°ã®é¢é£ä»ã',
+
+## lib/MT/Author.pm
+	'The approval could not be committed: [_1]' => 'å
+¬éã§ããŸããã§ãã: [_1]',
+
+## lib/MT/XMLRPC.pm
+	'No WeblogsPingURL defined in the configuration file' => 'æ§æãã¡ã€ã«ã«WeblogsPingURLãèš­å®ãããŠããŸããã',
+	'No MTPingURL defined in the configuration file' => 'æ§æãã¡ã€ã«ã«MTPingURLãèš­å®ãããŠããŸããã',
+	'HTTP error: [_1]' => 'HTTPãšã©ãŒ: [_1]',
+	'Ping error: [_1]' => 'Pingãšã©ãŒ: [_1]',
+
+## lib/MT/WeblogPublisher.pm
+	'yyyy/index.html' => 'yyyy/index.html',
+	'yyyy/mm/index.html' => 'yyyy/mm/index.html',
+	'yyyy/mm/day-week/index.html' => 'yyyy/mm/day-week/index.html',
+	'yyyy/mm/entry-basename.html' => 'yyyy/mm/entry-basename.html',
+	'yyyy/mm/entry_basename.html' => 'yyyy/mm/entry_basename.html',
+	'yyyy/mm/entry-basename/index.html' => 'yyyy/mm/entry-basename/index.html',
+	'yyyy/mm/entry_basename/index.html' => 'yyyy/mm/entry_basename/index.html',
+	'yyyy/mm/dd/entry-basename.html' => 'yyyy/mm/dd/entry-basename.html',
+	'yyyy/mm/dd/entry_basename.html' => 'yyyy/mm/dd/entry_basename.html',
+	'yyyy/mm/dd/entry-basename/index.html' => 'yyyy/mm/dd/entry-basename/index.html',
+	'yyyy/mm/dd/entry_basename/index.html' => 'yyyy/mm/dd/entry_basename/index.html',
+	'category/sub-category/entry-basename.html' => 'category/sub-category/entry-basename.html',
+	'category/sub-category/entry-basename/index.html' => 'category/sub-category/entry-basename/index.html',
+	'category/sub_category/entry_basename.html' => 'category/sub_category/entry_basename.html',
+	'category/sub_category/entry_basename/index.html' => 'category/sub_category/entry_basename/index.html',
+	'folder-path/page-basename.html' => 'folder-path/page-basename.html',
+	'folder-path/page-basename/index.html' => 'folder-path/page-basename/index.html',
+	'folder_path/page_basename.html' => 'folder_path/page_basename.html',
+	'folder_path/page_basename/index.html' => 'folder_path/page_basename/index.html',
+	'folder/sub_folder/index.html' => 'folder/sub_folder/index.html',
+	'folder/sub-folder/index.html' => 'folder/sub-folder/index.html',
+	'yyyy/mm/dd/index.html' => 'yyyy/mm/dd/index.html',
+	'category/sub-category/index.html' => 'category/sub-category/index.html',
+	'category/sub_category/index.html' => 'category/sub_category/index.html',
+	'Archive type \'[_1]\' is not a chosen archive type' => '\'[_1]\'ã¯ã¢ãŒã«ã€ãã¿ã€ããšããŠéžæãããŠããŸããã',
+	'Error making path \'[_1]\': [_2]' => 'ãã¹(\'[_1]\')ãäœæã§ããŸãã: [_2]',
+	'Parameter \'[_1]\' is required' => '\'[_1]\'ããã©ã¡ãŒã¿ã«æå®ããŠãã ããã',
+	'You did not set your blog publishing path' => 'ãã­ã°ã®å
+¬éãã¹ãèš­å®ãããŠããŸããã',
+	'The same archive file exists. You should change the basename or the archive path. ([_1])' => 'ååã®ãã¡ã€ã«ããã§ã«å­åšããŸãããã¡ã€ã«åãŸãã¯ã¢ãŒã«ã€ããã¹ãå€æŽããŠãã ãã([_1])ã',
+	'An error occurred publishing [_1] \'[_2]\': [_3]' => '[_1]ã[_2]ãã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_3]',
+	'An error occurred publishing date-based archive \'[_1]\': [_2]' => 'æ¥ä»ã¢ãŒã«ã€ãã[_1]ãã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_2]',
+	'Writing to \'[_1]\' failed: [_2]' => '\'[_1]\'ã«æžãèŸŒããŸããã§ãã: [_2]',
+	'Renaming tempfile \'[_1]\' failed: [_2]' => 'ãã³ãã©ãªãã¡ã€ã«\'[_1]\'ã®ååãå€æŽã§ããŸããã§ãã: [_2]',
+	'Template \'[_1]\' does not have an Output File.' => 'ãã³ãã¬ãŒã\'[_1]\'ã«ã¯åºåãã¡ã€ã«ã®èš­å®ããããŸããã',
+	'An error occurred while publishing scheduled entries: [_1]' => 'æ¥ææå®ããããã­ã°èšäºã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_1]',
+	'YEARLY_ADV' => 'å¹Žå¥',
+	'MONTHLY_ADV' => 'æå¥',
+	'CATEGORY_ADV' => 'ã«ããŽãª',
+	'PAGE_ADV' => 'ãŠã§ãããŒãž',
+	'INDIVIDUAL_ADV' => 'ãã­ã°èšäº',
+	'DAILY_ADV' => 'æ¥å¥',
+	'WEEKLY_ADV' => 'é±å¥',
+	'AUTHOR_ADV' => 'ãŠãŒã¶ãŒå¥',
+	'AUTHOR-YEARLY_ADV' => 'ãŠãŒã¶ãŒ-å¹Žå¥',
+	'AUTHOR-MONTHLY_ADV' => 'ãŠãŒã¶ãŒ-æå¥',
+	'AUTHOR-WEEKLY_ADV' => 'ãŠãŒã¶ãŒ-é±å¥',
+	'AUTHOR-DAILY_ADV' => 'ãŠãŒã¶ãŒ-æ¥å¥',
+	'CATEGORY-YEARLY_ADV' => 'ã«ããŽãª-å¹Žå¥',
+	'CATEGORY-MONTHLY_ADV' => 'ã«ããŽãª-æå¥',
+	'CATEGORY-DAILY_ADV' => 'ã«ããŽãª-æ¥å¥',
+	'CATEGORY-WEEKLY_ADV' => 'ã«ããŽãª-é±å¥',
+	'author-display-name/index.html' => 'author-display-name/index.html',
+	'author_display_name/index.html' => 'author_display_name/index.html',
+	'author-display-name/yyyy/index.html' => 'author-display-name/yyyy/index.html',
+	'author_display_name/yyyy/index.html' => 'author_display_name/yyyy/index.html',
+	'author-display-name/yyyy/mm/index.html' => 'author-display-name/yyyy/mm/index.html',
+	'author_display_name/yyyy/mm/index.html' => 'author_display_name/yyyy/mm/index.html',
+	'author-display-name/yyyy/mm/day-week/index.html' => 'author-display-name/yyyy/mm/day-week/index.html',
+	'author_display_name/yyyy/mm/day-week/index.html' => 'author_display_name/yyyy/mm/day-week/index.html',
+	'author-display-name/yyyy/mm/dd/index.html' => 'author-display-name/yyyy/mm/dd/index.html',
+	'author_display_name/yyyy/mm/dd/index.html' => 'author_display_name/yyyy/mm/dd/index.html',
+	'category/sub-category/yyyy/index.html' => 'category/sub-category/yyyy/index.html',
+	'category/sub_category/yyyy/index.html' => 'category/sub_category/yyyy/index.html',
+	'category/sub-category/yyyy/mm/index.html' => 'category/sub-category/yyyy/mm/index.html',
+	'category/sub_category/yyyy/mm/index.html' => 'category/sub_category/yyyy/mm/index.html',
+	'category/sub-category/yyyy/mm/dd/index.html' => 'category/sub-category/yyyy/mm/dd/index.html',
+	'category/sub_category/yyyy/mm/dd/index.html' => 'category/sub_category/yyyy/mm/dd/index.html',
+	'category/sub-category/yyyy/mm/day-week/index.html' => 'category/sub-category/yyyy/mm/day-week/index.html',
+	'category/sub_category/yyyy/mm/day-week/index.html' => 'category/sub_category/yyyy/mm/day-week/index.html',
+
+## lib/MT/BackupRestore.pm
+	'Backing up [_1] records:' => '[_1]ã¬ã³ãŒããããã¯ã¢ããããŠããŸã:',
+	'[_1] records backed up...' => '[_1]ã¬ã³ãŒããããã¯ã¢ããããŸãã...',
+	'[_1] records backed up.' => '[_1]ã¬ã³ãŒããããã¯ã¢ããããŸããã',
+	'There were no [_1] records to be backed up.' => 'ããã¯ã¢ããå¯Ÿè±¡ãšãªã[_1]ã®ã¬ã³ãŒãã¯ãããŸããã',
+	'Can\'t open directory \'[_1]\': [_2]' => 'ãã£ã¬ã¯ããª\'[_1]\'ãéããŸããã§ãã] [_2]',
+	'No manifest file could be found in your import directory [_1].' => 'importãã£ã¬ã¯ããªã«ãããã§ã¹ããã¡ã€ã«ããããŸããã',
+	'Can\'t open [_1].' => '[_1]ãéããŸããã',
+	'Manifest file [_1] was not a valid Movable Type backup manifest file.' => '[_1]ã¯Movable Typeããã¯ã¢ããã§äœæãããæ­£ãããããã§ã¹ããã¡ã€ã«ã§ã¯ãããŸããã',
+	'Manifest file: [_1]' => 'ãããã§ã¹ããã¡ã€ã«: [_1]',
+	'Path was not found for the file ([_1]).' => 'ãã¡ã€ã«([_1])ã®ãã¹ãèŠã€ãããŸããã§ããã',
+	'[_1] is not writable.' => '[_1]ã«ã¯æžãèŸŒããŸããã',
+	'Copying [_1] to [_2]...' => '[_1]ã[_2]ã«ã³ããŒããŠããŸã...',
+	'Failed: ' => 'å€±æ: ',
+	'Done.' => 'å®äº',
+	'ID for the file was not set.' => 'ãã¡ã€ã«ã«IDãèš­å®ãããŠããŸããã§ããã',
+	'The file ([_1]) was not restored.' => 'ãã¡ã€ã«([_1])ã¯åŸ©å
+ãããŸããã§ããã',
+	'Changing path for the file \'[_1]\' (ID:[_2])...' => 'ãã¡ã€ã«\'[_1]\' (ID:[_2])ã®ãã¹ãå€æŽããŠããŸã...',
 
 ## lib/MT/TemplateMap.pm
 	'Archive Mapping' => 'ã¢ãŒã«ã€ããããã³ã°',
 	'Archive Mappings' => 'ã¢ãŒã«ã€ããããã³ã°',
+
+## lib/MT/ConfigMgr.pm
+	'Alias for [_1] is looping in the configuration.' => '[_1]ã®Aliasæå®ã¯åŸªç°ããŠããŸãã',
+	'Error opening file \'[_1]\': [_2]' => '\'[_1]\'ãéããŸããã§ãã: [_2]',
+	'Config directive [_1] without value at [_2] line [_3]' => 'æ§æãã¡ã€ã«[_2]ã®èš­å®[_1]ã«å€ããããŸãã(è¡:[_3])',
+	'No such config variable \'[_1]\'' => '\'[_1]\'ã¯æ­£ããèš­å®é 
+ç®ã§ã¯ãããŸããã',
+
+## lib/MT/Association.pm
+	'Association' => 'é¢é£ä»ã',
+	'association' => 'é¢é£ä»ã',
+	'associations' => 'é¢é£ä»ã',
 
 ## lib/MT/Blog.pm
@@ -1686,49 +1602,69 @@
 	'blogs' => 'ãã­ã°',
 
-## lib/MT/AtomServer.pm
-
-## lib/MT/BackupRestore/ManifestFileHandler.pm
-
-## lib/MT/BackupRestore/BackupFileHandler.pm
-	'Uploaded file was backed up from Movable Type with the newer schema version ([_1]) than the one in this system ([_2]).  It is not safe to restore the file to this version of Movable Type.' => 'ã¢ããã­ãŒãããããã¡ã€ã«ã¯ãã®ã·ã¹ãã ã®ããŒãžã§ã³([_2])ããæ°ããããŒãžã§ã³([_1])ã§ããã¯ã¢ãããããŠããŸãããã®ãã¡ã€ã«ãäœ¿ã£ãŠåŸ©å
-ããããšã¯æšå¥šãããŸããã',
-	'[_1] is not a subject to be restored by Movable Type.' => '[_1]ã¯Movable Typeã§åŸ©å
-ããå¯Ÿè±¡ã«ã¯å«ãŸããŠããŸããã',
-	'[_1] records restored.' => '[_1]ä»¶åŸ©å
-ãããŸããã',
-	'Restoring [_1] records:' => '[_1]ãåŸ©å
-ããŠããŸã:',
-	'User with the same name \'[_1]\' found (ID:[_2]).  Restore replaced this user with the data backed up.' => '\'[_1]\': ååã®ãŠãŒã¶ãŒãèŠã€ãããŸãã(ID: [_2])ãããã¯ã¢ããæã®ãŠãŒã¶ãŒããŒã¿ãæ¢å­ãŠãŒã¶ãŒã®ããŒã¿ã§çœ®ãæããŠãä»ã®ããŒã¿ãåŸ©å
-ããŸãã',
-	'Tag \'[_1]\' exists in the system.' => '\'[_1]\'ãšããã¿ã°ã¯ãã§ã«å­åšããŸãã',
-	'[_1] records restored...' => '[_1]ä»¶åŸ©å
-ãããŸãã...',
-
-## lib/MT/Association.pm
-	'Association' => 'é¢é£ä»ã',
-	'association' => 'é¢é£ä»ã',
-	'associations' => 'é¢é£ä»ã',
-
-## lib/MT/Comment.pm
-	'Comment' => 'ã³ã¡ã³ã',
-	'Load of entry \'[_1]\' failed: [_2]' => 'ãã­ã°èšäº\'[_1]\'ãã­ãŒãã§ããŸããã§ãã: [_1]',
-
-## lib/MT/Category.pm
-	'Categories must exist within the same blog' => 'ã«ããŽãªã¯èŠªãšãªãã«ããŽãªãšåããã­ã°ã«äœããªããã°ãªããŸããã',
-	'Category loop detected' => 'ã«ããŽãªããäºãã«èŠªãšå­ã®é¢ä¿ã«ãªã£ãŠããŸãã',
+## lib/MT/TBPing.pm
+
+## lib/MT/Builder.pm
+	'<[_1]> at line [_2] is unrecognized.' => '<[_1]>ã¯å­åšããŸãã([_2]è¡ç®)ã',
+	'<[_1]> with no </[_1]> on line #' => '<[_1]>ã«å¯Ÿå¿ãã</[_1]>ããããŸããã',
+	'<[_1]> with no </[_1]> on line [_2].' => '<[_1]>ã«å¯Ÿå¿ãã</[_1]>ããããŸãã([_2]è¡ç®)ã',
+	'<[_1]> with no </[_1]> on line [_2]' => '<[_1]>ã«å¯Ÿå¿ãã</[_1]>ããããŸãã([_2]è¡ç®)ã',
+	'Error in <mt:[_1]> tag: [_2]' => 'ãã³ãã¬ãŒãã¿ã°MT[_1]ã§ãšã©ãŒãçºçããŸãã: [_2]',
+	'No handler exists for tag [_1]' => 'ãã³ãã¬ãŒãã¿ã°MT[_1]ã«å¯Ÿå¿ãããã³ãã©ããããŸããã',
+
+## lib/MT/ObjectScore.pm
+	'Object Score' => 'ãªããžã§ã¯ãã®ã¹ã³ã¢',
+	'Object Scores' => 'ãªããžã§ã¯ãã®ã¹ã³ã¢',
+
+## lib/MT/Import.pm
+	'Can\'t rewind' => 'ãã€ã³ã¿ãå
+é ­ã«ç§»åã§ããŸãã',
+	'No readable files could be found in your import directory [_1].' => 'èª­ã¿åããªããã¡ã€ã«ããããŸãã: [_1]',
+	'Importing entries from file \'[_1]\'' => 'ãã¡ã€ã«\'[_1]\'ããã€ã³ããŒãããŠããŸãã',
+	'Couldn\'t resolve import format [_1]' => 'ã€ã³ããŒãåœ¢åŒ[_1]ãåŠçã§ããŸããã§ããã',
+	'Movable Type' => 'Movable Type',
+	'Another system (Movable Type format)' => 'ä»ã®ã·ã¹ãã (Movable Typeåœ¢åŒ)',
 
 ## lib/MT/Folder.pm
 
-## lib/MT/Asset.pm
-	'Asset' => 'ã¢ã€ãã ',
-	'Location' => 'å Žæ',
-
-## lib/MT/Image.pm
-	'Can\'t load Image::Magick: [_1]' => 'Image::Magickãã­ãŒãã§ããŸãã: [_1]',
-	'Reading file \'[_1]\' failed: [_2]' => 'ãã¡ã€ã« \'[_1]\' ãèª­ã¿åããŸããã§ãã: [_1]',
-	'Reading image failed: [_1]' => 'ç»åãèª­ã¿åããŸããã§ããã',
-	'Scaling to [_1]x[_2] failed: [_3]' => 'ãµã€ãºã[_1]x[_2]ã«å€æŽã§ããŸããã§ããã',
-	'Can\'t load IPC::Run: [_1]' => 'IPC::Runãã­ãŒãã§ããŸãã: [_1]',
-	'You do not have a valid path to the NetPBM tools on your machine.' => 'NetPBMããŒã«ãžã®ãã¹ãæ­£ããèš­å®ãããŠããŸããã',
+## lib/MT/Tag.pm
+	'Tag must have a valid name' => 'ã¿ã°ã®ååãäžæ­£ã§ãã',
+	'This tag is referenced by others.' => 'ãã®ã¿ã°ã¯ä»ã®ã¿ã°ããåç
+§ãããŠããŸãã',
+
+## lib/MT/App.pm
+	'First Weblog' => 'First Weblog',
+	'Error loading blog #[_1] for user provisioning. Check your NewUserTemplateBlogId setting.' => 'æ°èŠãŠãŒã¶ãŒçšã®ãã­ã°(ID:[_1])ãã­ãŒãã§ããŸããã§ãããNewUserTemplateBlogIdã®èš­å®ãç¢ºèªããŠãã ããã',
+	'Error provisioning blog for new user \'[_1]\' using template blog #[_2].' => 'æ°èŠãŠãŒã¶ãŒ\'[_1]\'çšã®ãã­ã°ãè€è£œå
+ã®ãã­ã°(ID:[_2])ããäœæã§ããŸããã§ããã',
+	'Error creating directory [_1] for blog #[_2].' => 'ãã­ã°(ID:[_2])ã®ãã£ã¬ã¯ããª[_1]ãäœæã§ããŸããã§ããã',
+	'Error provisioning blog for new user \'[_1] (ID: [_2])\'.' => 'æ°èŠãŠãŒã¶ãŒ\'[_1]\'çšã®ãã­ã°ãäœæã§ããŸããã§ããã',
+	'Blog \'[_1] (ID: [_2])\' for user \'[_3] (ID: [_4])\' has been created.' => '\'[_3]\'(ID:[_4])ã®ãã­ã°\'[_1]\'(ID:[_2])ãäœæããŸããã',
+	'Error assigning blog administration rights to user \'[_1] (ID: [_2])\' for blog \'[_3] (ID: [_4])\'. No suitable blog administrator role was found.' => '\'[_1]\'(ID:[_2])ããã­ã°\'[_3]\'(ID:[_4])ã®ç®¡çè
+ã«ã§ããŸããã§ããããã­ã°ã®ç®¡çæš©éãæã€ã­ãŒã«ãèŠã€ãããŸããã§ããã',
+	'The login could not be confirmed because of a database error ([_1])' => 'ããŒã¿ããŒã¹ã®ãšã©ãŒã§ã­ã°ã€ã³ãç¢ºèªã§ããŸããã§ãã: [_1]',
+	'This account has been disabled. Please see your system administrator for access.' => 'ãã®ã¢ã«ãŠã³ãã¯ç¡å¹ã«ãããŠããŸããã·ã¹ãã ç®¡çè
+ã«åãåãããŠãã ããã',
+	'This account has been deleted. Please see your system administrator for access.' => 'ãã®ã¢ã«ãŠã³ãã¯åé€ãããŸãããã·ã¹ãã ç®¡çè
+ã«åãåãããŠãã ããã',
+	'User cannot be created: [_1].' => 'ãŠãŒã¶ãŒãäœæã§ããŸããã§ãã: [_1]',
+	'User \'[_1]\' has been created.' => 'ãŠãŒã¶ãŒ\'[_1]\'ãäœæããŸããã',
+	'User \'[_1]\' (ID:[_2]) logged in successfully' => 'ãŠãŒã¶ãŒ\'[_1]\'(ID[_2])ãã­ã°ã€ã³ããŸããã',
+	'Invalid login attempt from user \'[_1]\'' => '\'[_1]\'ãã­ã°ã€ã³ã«å€±æããŸããã',
+	'User \'[_1]\' (ID:[_2]) logged out' => 'ãŠãŒã¶ãŒ\'[_1]\'(ID[_2])ãã­ã°ã¢ãŠãããŸããã',
+	'New Comment Added to \'[_1]\'' => '\'[_1]\'ã«ã³ã¡ã³ãããããŸããã',
+	'Close' => 'éãã',
+	'The file you uploaded is too large.' => 'ã¢ããã­ãŒããããã¡ã€ã«ã¯å€§ããããŸãã',
+	'Unknown action [_1]' => '[_1]ã¯ã§ããŸããã',
+	'Warnings and Log Messages' => 'è­Šåãšã¡ãã»ãŒãž',
+	'Removed [_1].' => '[_1]ãåé€ããŸããã',
+	'Loading template \'[_1]\' failed.' => 'ãã³ãã¬ãŒãã[_1]ãã®ã­ãŒãã«å€±æããŸããã',
+	'http://www.movabletype.com/' => 'http://www.sixapart.jp/movabletype/',
+
+## lib/MT/Log.pm
+	'System' => 'ã·ã¹ãã ',
+	'Page # [_1] not found.' => 'ID:[_1]ã®ãŠã§ãããŒãžãèŠã€ãããŸããã§ããã',
+	'Entry # [_1] not found.' => 'ID:[_1]ã®ãã­ã°èšäºãèŠã€ãããŸããã§ããã',
+	'Comment # [_1] not found.' => 'ID:[_1]ã®ã³ã¡ã³ããèŠã€ãããŸããã§ããã',
+	'TrackBack # [_1] not found.' => 'ID:[_1]ã®ãã©ãã¯ããã¯ãèŠã€ãããŸããã§ããã',
 
 ## lib/MT/IPBanList.pm
@@ -1736,37 +1672,26 @@
 	'IP Bans' => 'IPçŠæ­¢ãªã¹ã',
 
-## lib/MT/Permission.pm
-	'Permission' => 'æš©é',
-	'Permissions' => 'æš©é',
-
-## lib/MT/BackupRestore.pm
-	'Backing up [_1] records:' => '[_1]ã¬ã³ãŒããããã¯ã¢ããããŠããŸã:',
-	'[_1] records backed up...' => '[_1]ã¬ã³ãŒããããã¯ã¢ããããŸãã...',
-	'[_1] records backed up.' => '[_1]ã¬ã³ãŒããããã¯ã¢ããããŸããã',
-	'There were no [_1] records to be backed up.' => 'ããã¯ã¢ããå¯Ÿè±¡ãšãªã[_1]ã®ã¬ã³ãŒãã¯ãããŸããã',
-	'No manifest file could be found in your import directory [_1].' => 'importãã£ã¬ã¯ããªã«ãããã§ã¹ããã¡ã€ã«ããããŸããã',
-	'Can\'t open [_1].' => '[_1]ãéããŸããã',
-	'Manifest file [_1] was not a valid Movable Type backup manifest file.' => '[_1]ã¯Movable Typeããã¯ã¢ããã§äœæãããæ­£ãããããã§ã¹ããã¡ã€ã«ã§ã¯ãããŸããã',
-	'Manifest file: [_1]' => 'ãããã§ã¹ããã¡ã€ã«: [_1]',
-	'Path was not found for the file ([_1]).' => 'ãã¡ã€ã«([_1])ã®ãã¹ãèŠã€ãããŸããã§ããã',
-	'[_1] is not writable.' => '[_1]ã«ã¯æžãèŸŒããŸããã',
-	'Copying [_1] to [_2]...' => '[_1]ã[_2]ã«ã³ããŒããŠããŸã...',
-	'Failed: ' => 'å€±æ: ',
-	'Done.' => 'å®äº',
-	'ID for the file was not set.' => 'ãã¡ã€ã«ã«IDãèš­å®ãããŠããŸããã§ããã',
-	'The file ([_1]) was not restored.' => 'ãã¡ã€ã«([_1])ã¯åŸ©å
-ãããŸããã§ããã',
-	'Changing path for the file \'[_1]\' (ID:[_2])...' => 'ãã¡ã€ã«\'[_1]\' (ID:[_2])ã®ãã¹ãå€æŽããŠããŸã...',
-
-## lib/MT/ObjectScore.pm
-	'Object Score' => 'ãªããžã§ã¯ãã®ã¹ã³ã¢',
-	'Object Scores' => 'ãªããžã§ã¯ãã®ã¹ã³ã¢',
-
-## lib/MT/ConfigMgr.pm
-	'Alias for [_1] is looping in the configuration.' => '[_1]ã®Aliasæå®ã¯åŸªç°ããŠããŸãã',
-	'Error opening file \'[_1]\': [_2]' => '\'[_1]\'ãéããŸããã§ãã: [_2]',
-	'Config directive [_1] without value at [_2] line [_3]' => 'æ§æãã¡ã€ã«[_2]ã®èš­å®[_1]ã«å€ããããŸãã(è¡:[_3])',
-	'No such config variable \'[_1]\'' => '\'[_1]\'ã¯æ­£ããèš­å®é 
-ç®ã§ã¯ãããŸããã',
+## lib/MT/AtomServer.pm
+	'PreSave failed [_1]' => 'PreSaveã§ãšã©ãŒããããŸãã: [_1]',
+	'User \'[_1]\' (user #[_2]) added entry #[_3]' => '\'[_1]\'(ID:[_2])ããã­ã°èšäºãäœæå­ããŸããã',
+	'User \'[_1]\' (user #[_2]) edited entry #[_3]' => '\'[_1]\'(ID:[_2])ããã­ã°èšäºãç·šéããŸããã',
+
+## lib/MT/PluginData.pm
+	'Plugin Data' => 'ãã©ã°ã€ã³ããŒã¿',
+
+## lib/MT/Plugin.pm
+	'Publish' => 'å
+¬é',
+	'Uppercase text' => 'Uppercase text',
+	'Lowercase text' => 'Lowercase text',
+	'My Text Format' => 'My Text Format',
+
+## lib/MT/Role.pm
+	'Role' => 'ã­ãŒã«',
+
+## lib/MT/Entry.pm
+	'Draft' => 'äžæžã',
+	'Review' => 'ã¬ãã¥ãŒ',
+	'Future' => 'æ¥ææå®',
 
 ## lib/MT/Config.pm
@@ -1774,33 +1699,72 @@
 å ±',
 
-## lib/MT/Auth/MT.pm
-	'Failed to verify current password.' => 'çŸåšã®ãã¹ã¯ãŒããèª€ã£ãŠããŸãã',
-	'Password hint is required.' => 'ãã¹ã¯ãŒãåèš­å®çšã®ãã¬ãŒãºã¯å¿
-é ã§ãã',
-
-## lib/MT/Auth/OpenID.pm
-	'Could not discover claimed identity: [_1]' => '[_1]ãšããOpenIDãçºèŠã§ããŸããã§ããã',
-	'Couldn\'t save the session' => 'ã»ãã·ã§ã³ãä¿å­ã§ããŸããã§ããã',
-
-## lib/MT/Auth/TypeKey.pm
-	'Sign in requires a secure signature.' => 'ãµã€ã³ã€ã³ã«ã¯ã»ã­ã¥ãªãã£ããŒã¯ã³ãå¿
-èŠã§ãã',
-	'The sign-in validation failed.' => 'ãµã€ã³ã€ã³ã®æ€èšŒã«å€±æããŸããã',
-	'This weblog requires commenters to pass an email address. If you\'d like to do so you may log in again, and give the authentication service permission to pass your email address.' => 'ãã®ãã­ã°ã¯ãã³ã¡ã³ãã®éã«ã¡ãŒã«ã¢ãã¬ã¹ãå¿
-ãéç¥ããããã«èŠæ±ããŠããŸããã¡ãŒã«ã¢ãã¬ã¹ãéç¥ããªãéããã³ã¡ã³ãã®æçš¿ãã§ããŸããã',
-	'This blog requires commenters to provide an email address' => 'ã³ã¡ã³ããæçš¿ããã«ã¯ã¡ãŒã«ã¢ãã¬ã¹ã®æå®ãå¿
-é ã§ãã',
-	'Couldn\'t get public key from url provided' => 'æå®ãããURLããå
-¬éã­ãŒãååŸã§ããŸããã§ããã',
-	'No public key could be found to validate registration.' => 'ç»é²ç¶æ³ãæ€æ»ããããã®å
-¬éã­ãŒãèŠã€ãããŸããã§ããã',
-	'TypeKey signature verif\'n returned [_1] in [_2] seconds verifying [_3] with [_4]' => 'TypeKey signature verif\'n returned [_1] in [_2] seconds verifying [_3] with [_4]',
-	'The TypeKey signature is out of date ([_1] seconds old). Ensure that your server\'s clock is correct' => 'TypeKeyã®çœ²åãå€ãããŸã([_1]ç§çµé)ããµãŒããŒã®æå»ãæ­£ããããšãç¢ºèªããŠãã ããã',
-
-## lib/MT/Bootstrap.pm
-	'Got an error: [_1]' => 'ãšã©ãŒãçºçããŸãã: [_1]',
-
-## lib/MT/Placement.pm
-	'Category Placement' => 'ã«ããŽãªã®é¢é£ä»ã',
+## lib/MT/Template.pm
+	'Template' => 'ãã³ãã¬ãŒã',
+	'Error reading file \'[_1]\': [_2]' => 'ãã¡ã€ã«: [_1]ãèª­ã¿èŸŒããŸããã§ãã: [_2]',
+	'Publish error in template \'[_1]\': [_2]' => 'ãã³ãã¬ãŒãã[_1]ãã®åæ§ç¯äž­ã«ãšã©ãŒãçºçããŸãã: [_2]',
+	'Template with the same name already exists in this blog.' => 'ãã­ã°ã«ååã®ãã³ãã¬ãŒããå­åšããŸãã',
+	'You cannot use a [_1] extension for a linked file.' => '[_1]ããªã³ã¯ãã¡ã€ã«ã®æ¡åŒµå­ã«äœ¿ãããšã¯ã§ããŸããã',
+	'Opening linked file \'[_1]\' failed: [_2]' => 'ãªã³ã¯ãã¡ã€ã«\'[_1]\'ãéããŸããã§ãã: [_2]',
+	'Index' => 'ã€ã³ããã¯ã¹',
+	'Category Archive' => 'ã«ããŽãªã¢ãŒã«ã€ã',
+	'Comment Listing' => 'ã³ã¡ã³ãäžèŠ§',
+	'Ping Listing' => 'ãã©ãã¯ããã¯äžèŠ§',
+	'Comment Preview' => 'ã³ã¡ã³ããã¬ãã¥ãŒ',
+	'Comment Error' => 'ã³ã¡ã³ããšã©ãŒ',
+	'Dynamic Error' => 'ãã€ãããã¯ãããªãã·ã³ã°ãšã©ãŒ',
+	'Uploaded Image' => 'ç»å',
+	'Module' => 'ã¢ãžã¥ãŒã«',
+	'Widget' => 'ãŠã£ãžã§ãã',
+
+## lib/MT/ImportExport.pm
+	'No Blog' => 'ãã­ã°ããããŸããã',
+	'Need either ImportAs or ParentAuthor' => 'ãèªåã®ãã­ã°èšäºãšããŠã€ã³ããŒãããããããã­ã°èšäºã®èè
+ãå€æŽããªããã®ã©ã¡ãããéžæããŠãã ããã',
+	'Creating new user (\'[_1]\')...' => 'ãŠãŒã¶ãŒ([_1])ãäœæããŠããŸã...',
+	'Saving user failed: [_1]' => 'ãŠãŒã¶ãŒãäœæã§ããŸããã§ãã: [_1]',
+	'Assigning permissions for new user...' => 'äœæããããŠãŒã¶ãŒã«æš©éãèš­å®ããŠããŸã...',
+	'Saving permission failed: [_1]' => 'æš©éãèš­å®ã§ããŸããã§ãã: [_1]',
+	'Creating new category (\'[_1]\')...' => 'ã«ããŽãª([_1])ãäœæããŠããŸã...',
+	'Invalid status value \'[_1]\'' => 'ç¶æ
+[_1]ã¯æ­£ãããããŸããã',
+	'Invalid allow pings value \'[_1]\'' => 'ãã©ãã¯ããã¯ã®åä¿¡èš­å®ãäžæ­£ã§ãã',
+	'Can\'t find existing entry with timestamp \'[_1]\'... skipping comments, and moving on to next entry.' => 'ã¿ã€ã ã¹ã¿ã³ã\'[_1]\'ã«åèŽãããã­ã°èšäºãèŠã€ãããŸãããã³ã¡ã³ãã®åŠçãäž­æ­¢ããŠæ¬¡ã®ãã­ã°èšäºãžé²ã¿ãŸãã',
+	'Importing into existing entry [_1] (\'[_2]\')' => 'æ¢å­ã®ãã­ã°èšäº[_1]([_2])ã«ã€ã³ããŒãããŠããŸãã',
+	'Saving entry (\'[_1]\')...' => 'ãã­ã°èšäº([_1])ãä¿å­ããŠããŸã...',
+	'ok (ID [_1])' => 'å®äº (ID [_1])',
+	'Saving entry failed: [_1]' => 'ãã­ã°èšäºãä¿å­ã§ããŸããã§ãã: [_1]',
+	'Creating new comment (from \'[_1]\')...' => '\'[_1]\'ããã®ã³ã¡ã³ããã€ã³ããŒãããŠããŸã...',
+	'Saving comment failed: [_1]' => 'ã³ã¡ã³ããä¿å­ã§ããŸããã§ãã: [_1]',
+	'Entry has no MT::Trackback object!' => 'ãã­ã°èšäºã«ãã©ãã¯ããã¯ã®èš­å®ããããŸããã',
+	'Creating new ping (\'[_1]\')...' => '\'[_1]\'ã®ãã©ãã¯ããã¯ãã€ã³ããŒãããŠããŸã...',
+	'Saving ping failed: [_1]' => 'ãã©ãã¯ããã¯ãä¿å­ã§ããŸããã§ãã: [_1]',
+	'Export failed on entry \'[_1]\': [_2]' => 'ãšã¯ã¹ããŒãã«å€±æããŸããããã­ã°èšäº\'[_1]\': [_2]',
+	'Invalid date format \'[_1]\'; must be \'MM/DD/YYYY HH:MM:SS AM|PM\' (AM|PM is optional)' => 'æ¥ä»ã®åœ¢åŒãæ­£ãããããŸããã\'MM/DD/YYYY HH:MM:SS AM|PM\' (AM|PMã¯ä»»æ)ã§ãªããã°ãªããŸããã',
+
+## lib/MT/JunkFilter.pm
+	'Action: Junked (score below threshold)' => 'çµæ: ã¹ãã (ã¹ã³ã¢ããããå€ä»¥äž)',
+	'Action: Published (default action)' => 'çµæ: å
+¬é(æ¢å®)',
+	'Junk Filter [_1] died with: [_2]' => 'ãã£ã«ã¿\'[_1]\'ã§ãšã©ãŒããããŸãã: [_2]',
+	'Unnamed Junk Filter' => '(ååãªã)',
+	'Composite score: [_1]' => 'åèšç¹: [_1]',
+
+## lib/MT/Util.pm
+	'moments from now' => 'ä»ãã',
+	'moments ago' => 'çŽå',
+	'[quant,_1,hour,hours] from now' => '[quant,_1,æé,æé]åŸ',
+	'[quant,_1,hour,hours] ago' => '[quant,_1,æé,æé]å',
+	'[quant,_1,minute,minutes] from now' => '[quant,_1,å,å]åŸ',
+	'[quant,_1,minute,minutes] ago' => '[quant,_1,å,å]å',
+	'[quant,_1,day,days] from now' => '[quant,_1,æ¥,æ¥]åŸ',
+	'[quant,_1,day,days] ago' => '[quant,_1,æ¥,æ¥]å',
+	'less than 1 minute from now' => '1ååŸä»¥å
+',
+	'less than 1 minute ago' => '1åä»¥å
+',
+	'[quant,_1,hour,hours], [quant,_2,minute,minutes] from now' => '[quant,_1,æé,æé], [quant,_2,å,å]åŸ',
+	'[quant,_1,hour,hours], [quant,_2,minute,minutes] ago' => '[quant,_1,æé,æé], [quant,_2,å,å]å',
+	'[quant,_1,day,days], [quant,_2,hour,hours] from now' => '[quant,_1,æ¥,æ¥], [quant,_2,æé,æé]åŸ',
+	'[quant,_1,day,days], [quant,_2,hour,hours] ago' => '[quant,_1,æ¥,æ¥], [quant,_2,æé,æé]å',
 
 ## lib/MT/Mail.pm
@@ -1812,24 +1776,61 @@
 	'Exec of sendmail failed: [_1]' => 'sendmailãå®è¡ã§ããŸããã§ãã: [_1]',
 
-## lib/MT/TheSchwartz/ExitStatus.pm
-	'Job Exit Status' => 'ãžã§ãçµäºç¶æ
-',
-
-## lib/MT/TheSchwartz/FuncMap.pm
-	'Job Function' => 'ãžã§ããã¡ã³ã¯ã·ã§ã³',
-
-## lib/MT/TheSchwartz/Job.pm
-	'Job' => 'ãžã§ã',
-
-## lib/MT/TheSchwartz/Error.pm
-	'Job Error' => 'ãžã§ããšã©ãŒ',
-
-## lib/MT/ObjectDriver/Driver/DBD/SQLite.pm
-
-## lib/MT/Compat/v3.pm
-	'uses: [_1], should use: [_2]' => '[_1]ã¯[_2]ã«çŽããŠãã ããã',
-	'uses [_1]' => '[_1]ãäœ¿ã£ãŠããŸãã',
-	'No executable code' => 'å®è¡ã§ããã³ãŒãããããŸããã',
-	'Publish-option name must not contain special characters' => 'åæ§ç¯ã®ãªãã·ã§ã³åã«ã¯ç¹æ®èšå·ãå«ããããŸããã',
+## lib/MT/Permission.pm
+	'Permission' => 'æš©é',
+	'Permissions' => 'æš©é',
+
+## lib/MT/Scorable.pm
+	'Already scored for this object.' => 'ãã§ã«1åºŠè©äŸ¡ããŠããŸãã',
+	'Can not set score to the object \'[_1]\'(ID: [_2])' => '\'[_1]\'(ID][_2])ã«ã¹ã³ã¢ãèš­å®ã§ããŸããã',
+
+## lib/MT/XMLRPCServer.pm
+	'Invalid timestamp format' => 'timestampã®åœ¢åŒãäžæ­£ã§ãã',
+	'No web services password assigned.  Please see your user profile to set it.' => 'WebãµãŒãã¹ãã¹ã¯ãŒããèš­å®ãããŠããŸããããã­ãã£ãŒã«ã®ç»é¢ã§èš­å®ããŠãã ããã',
+	'No blog_id' => 'No blog_id',
+	'Invalid blog ID \'[_1]\'' => 'ãã­ã°IDãäžæ­£ã§ã([_1])ã',
+	'No publishing privileges' => 'å
+¬éããæš©éããããŸããã',
+	'Value for \'mt_[_1]\' must be either 0 or 1 (was \'[_2]\')' => 'mt_[_1]ã®å€ã¯0ã1ã§ã([_2]ãèš­å®ããããšããŸãã)ã',
+	'Not privileged to edit entry' => 'ãã­ã°èšäºãç·šéããæš©éããããŸããã',
+	'Not privileged to delete entry' => 'ãã­ã°èšäºãåé€ããæš©éããããŸããã',
+	'Entry \'[_1]\' (entry #[_2]) deleted by \'[_3]\' (user #[_4]) from xml-rpc' => '\'[_3]\'(ID:[_4])ãXMLRPCçµç±ã§ãã­ã°èšäº\'[_1]\'(ID:[_2])ãåé€ããŸããã',
+	'Not privileged to get entry' => 'ãã­ã°èšäºãååŸããæš©éããããŸããã',
+	'User does not have privileges' => 'æš©éããããŸããã',
+	'Not privileged to set entry categories' => 'ã«ããŽãªãèš­å®ããæš©éããããŸããã',
+	'Not privileged to upload files' => 'ãã¡ã€ã«ãã¢ããã­ãŒãããæš©éããããŸããã',
+	'No filename provided' => 'ãã¡ã€ã«åããããŸããã',
+	'Error writing uploaded file: [_1]' => 'ã¢ããã­ãŒãããããã¡ã€ã«ãæžãèŸŒããŸããã§ãã: [_1]',
+	'Template methods are not implemented, due to differences between the Blogger API and the Movable Type API.' => 'Templateã¡ãœããã¯å®è£
+ãããŠããŸããã',
+
+## lib/MT/Comment.pm
+	'Comment' => 'ã³ã¡ã³ã',
+	'Load of entry \'[_1]\' failed: [_2]' => 'ãã­ã°èšäº\'[_1]\'ãã­ãŒãã§ããŸããã§ãã: [_1]',
+
+## lib/MT/Auth.pm
+	'Bad AuthenticationModule config \'[_1]\': [_2]' => 'AuthenticationModule([_1])ã®èš­å®ãæ­£ãããããŸãã: [_2]',
+	'Bad AuthenticationModule config' => 'AuthenticationModuleã®èš­å®ãæ­£ãããããŸãã',
+
+## lib/MT/Component.pm
+	'Loading template \'[_1]\' failed: [_2]' => 'ãã³ãã¬ãŒã\'[_1]\'ãã­ãŒãã§ããŸããã§ãã: [_2]',
+
+## lib/MT/DefaultTemplates.pm
+	'Archive Index' => 'ã¢ãŒã«ã€ãã€ã³ããã¯ã¹',
+	'Stylesheet - Main' => 'ã¹ã¿ã€ã«ã·ãŒã(ã¡ã€ã³)',
+	'Stylesheet - Base Theme' => 'ã¹ã¿ã€ã«ã·ãŒã(ããŒã¹ããŒã)',
+	'JavaScript' => 'JavaScript',
+	'RSD' => 'RSD',
+	'Atom' => 'Atom',
+	'RSS' => 'RSS',
+	'Entry Listing' => 'ãã­ã°èšäºãªã¹ã',
+	'Shown for a comment error, pending or confirmation message.' => 'ã³ã¡ã³ãããšã©ãŒã«ãªã£ããšããå
+¬éãä¿çããããšãããŸãã¯å
+¬éãããããšãéç¥ãããšãã«è¡šç€ºãããŸãã',
+	'Shown when a commenter previews their comment.' => 'ã³ã¡ã³ããç¢ºèªãããšãã«è¡šç€ºãããŸãã',
+	'Shown when an error is encountered on a dynamic blog page.' => 'ãã€ãããã¯ãããªãã·ã³ã°ã§ãšã©ãŒãèµ·ãããšãã«è¡šç€ºãããŸãã',
+	'Popup Image' => 'ãããã¢ããç»å',
+	'Shown when a visitor clicks a popup-linked image.' => 'ãããã¢ããæå®ãããŠããç»åã®ãªã³ã¯ãã¯ãªãã¯ãããšãã«è¡šç€ºãããŸãã',
+	'Shown when a visitor searches the weblog.' => 'ãã­ã°ãæ€çŽ¢ãããšãã«è¡šç€ºãããŸãã',
+	'Footer' => 'ããã¿ãŒ',
 
 ## lib/MT.pm
@@ -1873,4 +1874,19 @@
 ## lib/MT.pm.pre
 
+## mt-static/js/dialog.js
+	'(None)' => '(ãªã)',
+
+## mt-static/js/edit.js
+	'Enter email address:' => 'ã¡ãŒã«ã¢ãã¬ã¹ãå
+¥å:',
+	'Enter the link address:' => 'ãªã³ã¯ããURLãå
+¥å:',
+	'Enter the text to link to:' => 'ãªã³ã¯ã®ãã­ã¹ããå
+¥å:',
+
+## mt-static/js/assetdetail.js
+	'No Preview Available' => 'ãã¬ãã¥ãŒã§ããŸãã',
+	'View uploaded file' => 'ã¢ããã­ãŒãããããã¡ã€ã«ãè¡šç€º',
+
 ## mt-static/mt.js
 	'delete' => 'åé€',
@@ -1889,6 +1905,4 @@
 	'to mark as spam' => 'ã¹ãã ã«æå®',
 	'to remove spam status' => 'ã¹ãã æå®ãè§£é€',
-	'Enter email address:' => 'ã¡ãŒã«ã¢ãã¬ã¹ãå
-¥å:',
 	'Enter URL:' => 'URLãå
 ¥å:',
@@ -1898,20 +1912,4 @@
 	'[_1] &ndash; [_2] of [_3]' => '[_1] &ndash; [_2] / [_3]',
 	'[_1] &ndash; [_2]' => '[_1] &ndash; [_2]',
-
-## mt-static/js/edit.js
-	'Enter the link address:' => 'ãªã³ã¯ããURLãå
-¥å:',
-	'Enter the text to link to:' => 'ãªã³ã¯ã®ãã­ã¹ããå
-¥å:',
-
-## mt-static/js/assetdetail.js
-	'No Preview Available' => 'ãã¬ãã¥ãŒã§ããŸãã',
-	'View uploaded file' => 'ã¢ããã­ãŒãããããã¡ã€ã«ãè¡šç€º',
-
-## mt-static/js/dialog.js
-	'(None)' => '(ãªã)',
-
-## search_templates/results_feed.tmpl
-	'Search Results for [_1]' => '[_1]ã®æ€çŽ¢çµæ',
 
 ## search_templates/comments.tmpl
@@ -1967,77 +1965,25 @@
 
 ## search_templates/results_feed_rss2.tmpl
-
-## tmpl/email/footer-email.tmpl
-
-## tmpl/email/commenter_notify.tmpl
-	'This email is to notify you that a new user has successfully registered on the blog \'[_1]\'. Listed below you will find some useful information about this new user.' => 'ããã¯æ°ãããŠãŒã¶ãŒããã­ã°ã[_1]ãã«ç»é²ãå®äºããããšãéç¥ããã¡ãŒã«ã§ããæ°ãããŠãŒã¶ãŒã®æ
-å ±ã¯ä»¥äžã«èšèŒãããŠããŸãã',
-	'New User Information:' => 'æ°èŠç»é²ãŠãŒã¶ãŒ:',
-	'Username: [_1]' => 'ãŠãŒã¶ãŒå: [_1]',
-	'Full Name: [_1]' => 'åå: [_1]',
-	'Email: [_1]' => 'ã¡ãŒã«: [_1]',
-	'To view or edit this user, please click on or cut and paste the following URL into a web browser:' => 'ãã®ãŠãŒã¶ãŒã®æ
-å ±ãèŠããç·šéããå Žåã«ã¯ãäžèšã®URLãã¯ãªãã¯ããããURLãã³ããŒããŠãã©ãŠã¶ã®ã¢ãã¬ã¹æ¬ã«è²Œãä»ããŠãã ããã',
-
-## tmpl/email/notify-entry.tmpl
-	'A new [_3] entitled \'[_1]\' has been published to [_2].' => 'æ°ãã[_3]ã[_1]ãã[_2]ã§å
-¬éããŸããã',
-	'View [_1]:' => '[_1]ãèŠã',
-	'[_1] Title: [_2]' => 'ã¿ã€ãã«: [_2]',
-	'Publish Date: [_1]' => 'æ¥ä»: [_1]',
-	'Message from Sender:' => 'ã¡ãã»ãŒãž: ',
-	'You are receiving this email either because you have elected to receive notifications about new content on [_1], or the author of the post thought you would be interested. If you no longer wish to receive these emails, please contact the following person:' => 'ãã®ã¡ãŒã«ã¯[_1]ã§æ°èŠã«äœæãããã³ã³ãã³ãã«é¢ããéç¥ãéãããã«èš­å®ãããŠãããããŸãã¯ã³ã³ãã³ãã®èè
-ãéžæãããŠãŒã¶ãŒã«éä¿¡ãããŠããŸãããã®ã¡ãŒã«ãåä¿¡ããããªãå Žåã¯ãæ¬¡ã®ãŠãŒã¶ãŒã«é£çµ¡ããŠãã ãã:',
-
-## tmpl/email/new-comment.tmpl
-	'An unapproved comment has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this comment before it will appear on your site.' => 'æªå
-¬éã®ã³ã¡ã³ãããã­ã°[_1]ã®ãã­ã°èšäº\'[_3]\'(ID:[_2])ã«æçš¿ãããŸãããå
-¬éãããŸã§ãã®ã³ã¡ã³ãã¯ãã­ã°ã«è¡šç€ºãããŸããã',
-	'A new comment has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'ãã­ã°[_1]ã®ãã­ã°èšäº\'[_3]\'(ID:[_2])ã«æ°ããã³ã¡ã³ããæçš¿ãããŸããã',
-	'Commenter name: [_1]' => 'ã³ã¡ã³ãæçš¿è
-: [_1]', # Translate - New
-	'Commenter email address: [_1]' => 'ã¡ãŒã«ã¢ãã¬ã¹: [_1]',
-	'Commenter URL: [_1]' => 'URL: [_1]',
-	'Commenter IP address: [_1]' => 'IPã¢ãã¬ã¹: [_1]',
-	'Approve comment:' => 'ã³ã¡ã³ããæ¿èªãã:',
-	'View comment:' => 'ã³ã¡ã³ããèŠã:',
-	'Edit comment:' => 'ã³ã¡ã³ããç·šéãã:',
-	'Report comment as spam:' => 'ã³ã¡ã³ããã¹ãã ãšããŠå ±åãã:',
-
-## tmpl/email/commenter_confirm.tmpl
-	'Thank you registering for an account to comment on [_1].' => '[_1]ã«ã³ã¡ã³ãããããã«ç»é²ããŠããã ãããããšãããããŸãã',
-	'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 comment on [_1].' => 'ã»ã­ã¥ãªãã£äžã®çç±ãããç»é²ãå®äºããåã«ã¢ã«ãŠã³ããšã¡ãŒã«ã¢ãã¬ã¹ã®ç¢ºèªãè¡ã£ãŠããŸããç¢ºèªãå®äºæ¬¡ç¬¬ã[_1]ã«ã³ã¡ã³ãã§ããããã«ãªããŸãã',
-	'To confirm your account, please click on or cut and paste the following URL into a web browser:' => 'ã¢ã«ãŠã³ãã®ç¢ºèªã®ãããæ¬¡ã®URLãã¯ãªãã¯ããããã³ããŒããŠãã©ãŠã¶ã®ã¢ãã¬ã¹æ¬ã«è²Œãä»ããŠãã ããã',
-	'If you did not make this request, or you don\'t want to register for an account to comment on [_1], then no further action is required.' => 'ãã®ã¡ãŒã«ã«èŠãããªãå Žåãã[_1]ã«ç»é²ããã®ãããããå Žåã¯ãäœãããå¿
-èŠã¯ãããŸããã',
-	'Thank you very much for your understanding.' => 'ãååããããšãããããŸãã',
-	'Sincerely,' => '', # Translate - New
-
-## tmpl/email/recover-password.tmpl
-	'_USAGE_FORGOT_PASSWORD_1' => 'ãã¹ã¯ãŒããåèš­å®ããŸãããæ°ãããã¹ã¯ãŒããéç¥ããŸãã',
-	'_USAGE_FORGOT_PASSWORD_2' => 'æ°ãããã¹ã¯ãŒããäœ¿ã£ãŠMovable Typeã«ã­ã°ã€ã³ããããã«ãã¹ã¯ãŒããå€æŽããŠãã ããã',
-
-## tmpl/email/verify-subscribe.tmpl
-	'Thanks for subscribing to notifications about updates to [_1]. Follow the link below to confirm your subscription:' => '[_1]ã®ã¢ããããŒãéç¥ã«ãç»é²ããã ãããããšãããããŸãããä»¥äžã®ãªã³ã¯ããç»é²ãå®äºãããŠãã ããã',
-	'If the link is not clickable, just copy and paste it into your browser.' => 'ãªã³ã¯ãã¯ãªãã¯ã§ããªãå Žåã¯ããäœ¿ãã®ãŠã§ããã©ãŠã¶ã«è²Œãä»ããŠãã ããã',
-
-## tmpl/email/new-ping.tmpl
-	'An unapproved TrackBack has been posted on your blog [_1], for entry #[_2] ([_3]). You need to approve this TrackBack before it will appear on your site.' => 'ãã­ã°[_1]ã®ãã­ã°èšäº[_3] (ID:[_2])ã«æªå
-¬éã®ãã©ãã¯ããã¯ããããŸããå
-¬éãããŸã§ãã®ãã©ãã¯ããã¯ã¯ãã­ã°ã«è¡šç€ºãããŸããã',
-	'An unapproved TrackBack has been posted on your blog [_1], for category #[_2], ([_3]). You need to approve this TrackBack before it will appear on your site.' => 'ãã­ã°[_1]ã®ã«ããŽãª[_3](ID:[_2])ã«æªå
-¬éã®ãã©ãã¯ããã¯ããããŸããå
-¬éãããŸã§ãã®ãã©ãã¯ããã¯ã¯ãã­ã°ã«è¡šç€ºãããŸããã',
-	'A new TrackBack has been posted on your blog [_1], on entry #[_2] ([_3]).' => 'ãã­ã°[_1]ã®ãã­ã°èšäº[_3](ID:[_2])ã«æ°ãããã©ãã¯ããã¯ããããŸãã',
-	'A new TrackBack has been posted on your blog [_1], on category #[_2] ([_3]).' => 'ãã­ã°[_1]ã®ã«ããŽãª[_3](ID:[_2])ã«æ°ãããã©ãã¯ããã¯ããããŸãã',
-	'Excerpt: ' => 'æŠèŠ:',
-	'URL: [_1]' => 'URL: [_1]',
-	'Title: [_1]' => 'ã¿ã€ãã«: [_1]',
-	'Blog: [_1]' => 'ãã­ã°: [_1]',
-	'IP address: [_1]' => 'IPã¢ãã¬ã¹: [_1]',
-	'Approve TrackBack: ' => 'ãã©ãã¯ããã¯ãæ¿èªãã: ',
-	'View TrackBack: ' => 'ãã©ãã¯ããã¯ãèŠã: ',
-	'Report TrackBack as spam