diff --git a/VERSIONS b/VERSIONS
index af240eab3c5308d721fe8f6d46c2be4db85b15f4..0c09c65244b6735a215994b74cb6e14a1ea65ef9 100644
--- a/VERSIONS
+++ b/VERSIONS
@@ -1,3 +1,37 @@
+11/09/2017 - v7.10.0
+
+ - ticket #51538 : Administration : Ajout de la possibilité de spécifier les jours de lancement des batchs
+ 
+ - ticket #63069 : Administration : Ajout d'un batch permettant de moissonner un calendrier externe automatiquement
+ 
+ - ticket #64073 : Administration : lien vers les informations de version et documentation de la nouvelle version stable en haut de page d'accueil de l'administration
+ 
+ - ticket #64069 : Administration : amélioration de la fonction d'ajout d'une boîte depuis l'interface publique.
+ 
+ - ticket #61993 : Administration : Les icones d'administration en front cachent moins les textes
+ 
+ - ticket #64071 : Administration : lien Accueil renommé en Accès Pro
+ 
+ - ticket #64150 : Administration : Dans l'assistance, les bibliothèques sélectionnables sont triées par ordre alphabétique
+ 
+ - ticket #59906 : Administration : amélioration du formulaire de configuration de la boite de recherche
+ 
+ - ticket #64143 : Administration : amélioration de la génération du cache des fichiers de CSS et JS
+ 
+ - ticket #59093 : Administration : correction de la suppression de boite dans la banniere depuis l'interface d'administration
+ 
+ - ticket #64183 : Administration : correction du paramétrage de l'action d'authentification
+ 
+ - ticket #64151 : Administration : le tri dans le tableau des utilsateurs porte sur tout le résultat 
+ 
+ - ticket #64072 : Rétrocompatibilité graphique 7.10
+
+ - ticket #64325 : Boite bibliothèque : correction de la sauvegarde des filtres par défaut
+
+ - ticket #64062 : Correction de la prolongation de documents impossible sur la version mobile
+ 
+
+
 25/08/2017 - v7.9.36
 
  - ticket #59836 : Moteur de recherche : amélioration de la recherche d'éditeur.
diff --git a/VERSIONS_HOTLINE/59093 b/VERSIONS_HOTLINE/59093
deleted file mode 100644
index 4155f40c1319e5a45f1c067583150268a8ea09a6..0000000000000000000000000000000000000000
--- a/VERSIONS_HOTLINE/59093
+++ /dev/null
@@ -1,2 +0,0 @@
- - ticket #59093 : Administration : correction de la suppression de boite dans la banniere depuis l'interface d'administration.
- 
\ No newline at end of file
diff --git a/application/modules/admin/controllers/BatchController.php b/application/modules/admin/controllers/BatchController.php
index d51f363ebfc604184d3383fe2aef0593283ae16f..fc774d80779c828e4f82c96667e3fa075a578e3d 100644
--- a/application/modules/admin/controllers/BatchController.php
+++ b/application/modules/admin/controllers/BatchController.php
@@ -23,20 +23,89 @@ class Admin_BatchController extends ZendAfi_Controller_Action {
 
   public function getPlugins() {
     return ['ZendAfi_Controller_Plugin_ResourceDefinition_Batch',
-            'ZendAfi_Controller_Plugin_Manager_Manager'];
+            'ZendAfi_Controller_Plugin_Manager_Batch'];
+  }
+
+
+  public function indexAction() {
+    parent::indexAction();
+    $this->view->definitions = Class_Batch::getAvailableBatchDefinitions();
+  }
+
+
+  public function activateAction() {
+    if ((!$type = $this->_getParam('id'))
+        || !Class_Batch::isAvailableType($type))
+      return $this->_redirectToIndex();
+
+    Class_Batch::newInstance(['type' => $type])
+      ->save();
+
+    $this->_helper->notify('Tâche activée');
+    $this->_redirectToIndex();
+  }
+
+
+  public function deleteAction() {
+    if ((!$type = $this->_getParam('id'))
+        || (!$batch = Class_Batch::findFirstBy(['type' => $type]))
+        || !$batch->isDeletable())
+      return $this->_redirectToIndex();
+
+    $batch->delete();
+
+    $this->_helper->notify('Tâche désactivée');
+    $this->_redirectToIndex();
+  }
+
+
+  public function planAction() {
+    if (!Class_Users::isCurrentUserSuperAdmin()
+        || (!$type = $this->_getParam('id'))
+        || !$batch = Class_Batch::findFirstBy(['type' => $type]))
+      return $this->_redirectToIndex();
+
+    $this->view->titre = $this->_('Planifier la tâche "%s"', $batch->getLibelle());
+    $form = (new ZendAfi_Form_Admin_Batch())
+      ->setAction($this->view->url(['module' => 'admin',
+                                    'controller' => 'batch',
+                                    'action' => 'plan',
+                                    'id' => $type],
+                                   null, true));
+    $form->populate($batch->getRawAttributes());
+    $this->view->form = $form;
+
+    if (!$this->_request->isPost()
+        || !$form->isValid($this->_request->getPost()))
+      return;
+
+    $batch->setPickDay($form->getValue('pick_day'))
+          ->save();
+
+    $this->_helper->notify('Planification de la tâche modifiée');
+    $this->_redirectClose('/admin/batch');
   }
 
 
   public function runAction() {
-    Class_Batch::find($this->_getParam('id'))->run();
+    if ((!$batch = Class_Batch::findFirstBy(['type' => $this->_getParam('id')]))
+        || !$batch->isManuallyRunnable())
+      return $this->_redirectToIndex();
+
+    $batch->run();
+
     $this->_helper->notify($this->_('Tâche executée'));
-    $this->_redirect('/admin/batch');
+    $this->_redirectToIndex();
   }
 
 
   public function runAjaxAction() {
-    $batch = Class_Batch::find($this->_getParam('id'));
-    $this->view->titre = $this->view->_('Exécution du traitement "%s"', $batch->getLibelle());
+    if ((!$batch = Class_Batch::findFirstBy(['type' => $this->_getParam('id')]))
+        || !$batch->isManuallyRunnable())
+      return $this->_redirectToIndex();
+
+    $this->view->titre = $this->view->_('Exécution du traitement "%s"',
+                                        $batch->getLibelle());
     $this->view->batch = $batch;
   }
 
@@ -47,5 +116,3 @@ class Admin_BatchController extends ZendAfi_Controller_Action {
       ->runStep($this->_request->getParams()));
   }
 }
-
-?>
\ No newline at end of file
diff --git a/application/modules/admin/controllers/BibController.php b/application/modules/admin/controllers/BibController.php
index 1e842e8bfdd17f1e5d3512c11c9a253c034d6a03..4847c4b71cd072e388bbc9a846a18730d26134e5 100644
--- a/application/modules/admin/controllers/BibController.php
+++ b/application/modules/admin/controllers/BibController.php
@@ -430,4 +430,31 @@ class Admin_BibController extends ZendAfi_Controller_Action {
 
     return $user->hasRightsForLibrary($id);
   }
+
+
+  public function saveDefaultsAction() {
+    if(!$id_module = (int)$this->_getParam('id_module'))
+      return $this->_redirectWithMessage($this->_('Configuration introuvable'));
+
+    $profil = Class_Profil::getCurrentProfil();
+    $settings = $profil
+      ->getLocalModuleAccueilConfig($id_module);
+
+    $settings['preferences']['default_filters'] = $this->_helper
+      ->selectedFilters((new Class_Systeme_ModulesAccueil_Library())
+                        ->getStaticFiltersKeys());
+
+    if($profil
+      ->updateModuleConfigAccueil($id_module, $settings)
+       ->save())
+      return $this->_redirectWithMessage($this->_('Les filtres par défaut ont été sauvegardés.'));
+
+    $this->_redirectWithMessage($this->_('Erreur de sauvegarde des filtres par défaut.'));
+  }
+
+
+  protected function _redirectWithMessage($message) {
+    $this->_helper->notify($message);
+    $this->_redirectToReferer();
+  }
 }
diff --git a/application/modules/admin/controllers/ExternalAgendasController.php b/application/modules/admin/controllers/ExternalAgendasController.php
index 2398e0110a99fc46a8957a2e43809b1ffb4a21f0..0c78b90ddca93cff18bed8e96406b38e20e30bb8 100644
--- a/application/modules/admin/controllers/ExternalAgendasController.php
+++ b/application/modules/admin/controllers/ExternalAgendasController.php
@@ -23,7 +23,7 @@
 class Admin_ExternalAgendasController extends ZendAfi_Controller_Action {
   public function getPlugins() {
     return ['ZendAfi_Controller_Plugin_ResourceDefinition_ExternalAgenda',
-            'ZendAfi_Controller_Plugin_Manager_Manager'];
+            'ZendAfi_Controller_Plugin_Manager_ExternalAgenda'];
   }
 
 
@@ -32,17 +32,9 @@ class Admin_ExternalAgendasController extends ZendAfi_Controller_Action {
       return $this->_redirectToIndex();
 
     $this->view->titre = $this->_('Moissonnage des évènements de l\'agenda "%s"', $agenda->getLibelle());
-    $agenda->import($this);
-  }
-
-
-  public function visitNewEvents($events) {
-    $this->view->new_events = $events;
-  }
-
-
-  public function visitUpdatedEvents($events) {
-    $this->view->updated_events = $events;
+    $results = $agenda->import();
+    $this->view->new_events = $results['new'];
+    $this->view->updated_events = $results['update'];
   }
 
 
diff --git a/application/modules/admin/controllers/IndexController.php b/application/modules/admin/controllers/IndexController.php
index 097e911876aa724308ad579c30e6cd7ea2830ad0..e1ff46101d805ceef360ecab3298cbee535cae8f 100644
--- a/application/modules/admin/controllers/IndexController.php
+++ b/application/modules/admin/controllers/IndexController.php
@@ -127,8 +127,9 @@ class Admin_IndexController extends ZendAfi_Controller_Action {
 
   public function clearcacheAction() {
     (new Storm_Cache())->clean();
-    Class_AdminVar::set('CACHE_DATE', (new Class_TimeSource())->dateFormat('Y-m-d H:i:s'));
-    Class_ScriptLoader::getInstance()->resetCacheHash();
+    $scriptloader = Class_ScriptLoader::getInstance();
+    Class_AdminVar::set('CACHE_DATE', $scriptloader->getDate());
+    $scriptloader->resetCacheHash();
     $this->_helper->notify($this->_('Le cache de Bokeh a été vidé'));
     $this->_redirectToReferer();
   }
diff --git a/application/modules/admin/controllers/ModulesController.php b/application/modules/admin/controllers/ModulesController.php
index 00d1fad5bc0c657f1333ab6be70d55945e6bb2a7..d5c5755113c3d5622fe417bd754d6c690ec2b25e 100644
--- a/application/modules/admin/controllers/ModulesController.php
+++ b/application/modules/admin/controllers/ModulesController.php
@@ -101,10 +101,9 @@ class Admin_ModulesController extends ZendAfi_Controller_Action {
 
 
   public function authLoginAction() {
-    $form = ZendAfi_Form_Configuration_Login::newWith($this->preferences);
+    $form = ZendAfi_Form_Configuration_Widget_Base::newWith($this->preferences);
     $form->setAction($this->view->url(['controller' => 'modules',
-                                       'action' => 'auth-login',
-                                       'render' => 'popup']));
+                                       'action' => 'auth-login']));
 
     if ($this->_request->isPost() && $form->isValid($this->_request->getPost())) {
       $datas = $form->getValues();
diff --git a/application/modules/admin/views/scripts/batch/add.phtml b/application/modules/admin/views/scripts/batch/add.phtml
deleted file mode 100644
index dc46f2831c7f803cf1fe92106a4a72f2e9d8c066..0000000000000000000000000000000000000000
--- a/application/modules/admin/views/scripts/batch/add.phtml
+++ /dev/null
@@ -1 +0,0 @@
-<?php echo $this->renderForm($this->form); ?>
\ No newline at end of file
diff --git a/application/modules/admin/views/scripts/batch/edit.phtml b/application/modules/admin/views/scripts/batch/edit.phtml
deleted file mode 100644
index dc46f2831c7f803cf1fe92106a4a72f2e9d8c066..0000000000000000000000000000000000000000
--- a/application/modules/admin/views/scripts/batch/edit.phtml
+++ /dev/null
@@ -1 +0,0 @@
-<?php echo $this->renderForm($this->form); ?>
\ No newline at end of file
diff --git a/application/modules/admin/views/scripts/batch/index.phtml b/application/modules/admin/views/scripts/batch/index.phtml
index 827623b90f929a01db9c0cb3cb413c1136d47289..6bc950081245e673621100acbb82f313c88f21b0 100644
--- a/application/modules/admin/views/scripts/batch/index.phtml
+++ b/application/modules/admin/views/scripts/batch/index.phtml
@@ -1,40 +1,17 @@
 <?php
-echo $this->Button_New((new Class_Entity())
-                       ->setText($this->_('Ajouter une tâche')));
-
-$id_placeholder = 'MODEL_ID';
-
-$delete_url = $this->url(['action' => 'delete',
-                          'id' => $id_placeholder]);
-
-$run_url = $this->url(['action' => 'run',
-                       'id' => $id_placeholder]);
-
-$run_ajax_url = $this->url(['action' => 'run-ajax',
-                            'id' => $id_placeholder]);
-
-echo $this->tagModelTable(
-  $this->batchs,
-  [$this->_('Libelle'), $this->_('Dernière exécution')],
-  ['Libelle', 'last_run'],
-  [
-    function($batch) use ($id_placeholder, $delete_url) {
-      if(!$batch->isDeletable())
-        return '';
-
-      return $this->tagAnchor(str_replace($id_placeholder, $batch->getId(), $delete_url),
-                              $this->boutonIco('type=del'));
-    },
-
-    function($batch) use ($id_placeholder, $run_url, $run_ajax_url) {
-      if(!$batch->isManuallyRunnable())
-        return '';
-
-      $url = $batch->isAjaxRunnable() ? $run_ajax_url : $run_url;
-
-      return $this->tagAnchor(str_replace($id_placeholder, $batch->getId(), $url),
-                              $this->boutonIco('type=test', 'bulle=Lancer'));
-    }
-  ],
-  'batchs');
-?>
+$description = (new Class_TableDescription('batchs'))
+  ->addColumn($this->_('Libellé'), function($model) { return $model->getLabel(); })
+  ->addColumn($this->_('Planification'),
+              function($model)
+              {
+                return (new Class_Repeat_WeekDays())->humanReadable($model->getPickDay());
+              })
+  ->addColumn($this->_('Dernière exécution'), function($model) { return $model->getLastRun(); })
+  ->addRowAction(function($batch)
+                 {
+                   return $this->renderPluginsActions($batch);
+                 })
+  ;
+
+echo $this->renderTable($description, $this->definitions, ['sorter' => true])
+  ;
diff --git a/application/modules/admin/views/scripts/batch/plan.phtml b/application/modules/admin/views/scripts/batch/plan.phtml
new file mode 100644
index 0000000000000000000000000000000000000000..c52ca489f905555642d9f8210fc3130ba4abfdcd
--- /dev/null
+++ b/application/modules/admin/views/scripts/batch/plan.phtml
@@ -0,0 +1 @@
+<?php echo $this->renderForm($this->form); ?>
diff --git a/application/modules/admin/views/scripts/external-agendas/index.phtml b/application/modules/admin/views/scripts/external-agendas/index.phtml
index e79537bceb9b075979f778070a7cccca1b942f59..be3fca0d36c35381ce3ac65ffd9a4351a5fecd9c 100644
--- a/application/modules/admin/views/scripts/external-agendas/index.phtml
+++ b/application/modules/admin/views/scripts/external-agendas/index.phtml
@@ -15,9 +15,15 @@ $number_of_events = function($model, $attrib)
 
 $ical_url = function($model, $attrib)
 {
+  $part = $model->getUrl();
+  if (strlen($model->getUrl()) >40) {
+    $parts = explode('/',$part);
+    $part=reset($parts).'//.../'.end($parts);
+  }
+
   return $this->tagAnchor($model->getUrl(),
-                          $model->getUrl(),
-                          ['target' => '_blank']);
+                          $part,
+                          ['title' => $model->getUrl(),'target' => '_blank']);
 };
 
 $category = function($model, $attribs) {
@@ -28,27 +34,15 @@ $category = function($model, $attribs) {
                           Class_ArticleCategorie::find($cat_id)->getLibelle());
 };
 
-echo $this->tagModelTable($this->agendas,
-
-                          [$this->_('Libellé'),
-                           $this->_('Nombre d\'événements'),
-                           $this->_('URL'),
-                           $this->_('Categorie')],
-
-                          ['label',
-                           'number-of-events',
-                           'url',
-                           'category'],
-
-                          [ ['action' => 'import', 'content' => $this->boutonIco('type=test',
-                                                                                 'bulle='. $this->_('Moissonner'))],
-                            ['action' => 'edit', 'content' => $this->boutonIco('type=edit')],
-                            ['action' => 'delete', 'content' => $this->boutonIco('type=del')],
-                            ],
-
-                          'agendas',
-                          null,
-
-                          ['number-of-events' => $number_of_events,
-                           'url' => $ical_url,
-                           'category' => $category]);
+$description = (new Class_TableDescription('agendas'))
+  ->addColumn($this->_('Libellé'), 'label')
+  ->addColumn($this->_('Nombre d\'événements'), $number_of_events)
+  ->addColumn($this->_('URL'), $ical_url)
+  ->addColumn($this->_('Categorie'), $category)
+  ->addColumn($this->_('MAJ auto.'), function($model)
+              {
+                return $model->autoharvest ? $this->_('Oui') : $this->_('Non');
+              })
+  ->addRowAction(function($model) { return $this->renderPluginsActions($model); });
+
+echo $this->renderTable($description, $this->agendas, ['sorter' => true]);
diff --git a/application/modules/admin/views/scripts/index/index.phtml b/application/modules/admin/views/scripts/index/index.phtml
index a421300cb6622fe1106f8893334deb2debe79403..37af2474069050a7c3a5db645c521ee990731952 100644
--- a/application/modules/admin/views/scripts/index/index.phtml
+++ b/application/modules/admin/views/scripts/index/index.phtml
@@ -1,3 +1,31 @@
+<?php
+$skin = Class_Admin_Skin::current();
+?>
+<h2 style="display:inline;border:none">
+  <?php
+  Class_ScriptLoader::getInstance()
+  ->addInlineStyle('
+#learn_more_7_10 {
+  background-color:var(--bokeh-event);
+  padding:10px;
+  text-transform:uppercase;
+}
+#learn_more_7_10:hover {
+  background-color:var(--bokeh-event-highlight);
+}
+');
+  echo $skin->renderMenuIconOn('tag', $this,
+                               ['style' => 'vertical-align:middle'])
+    . ' '
+    . $this->_('Nouvelle version');
+
+  $button = (new Class_Entity())->setText($this->_('Découvrir les nouveautés de la version 7.10'))
+                                ->setAttribs(['id' => 'learn_more_7_10',
+                                              'onclick' => 'window.open(\'http://wiki.bokeh-library-portal.org/index.php?title=7.10.0\'); return false']);
+  echo $this->Button($button);
+  ?>
+</h2>
+
 <h2 class="toggle_video">
   <?php
   Class_ScriptLoader::getInstance()->addJQueryReady('$(".toggle_video").click(function() {$(this).toggleClass("on");$(this).next().toggle();})');
diff --git a/application/modules/admin/views/scripts/modules/auth-login.phtml b/application/modules/admin/views/scripts/modules/auth-login.phtml
index a77ca805bea2b10e567e9f4184a61fd9b389811a..ac7363359759fdc81ec27a1c761cdf8d81e268d8 100644
--- a/application/modules/admin/views/scripts/modules/auth-login.phtml
+++ b/application/modules/admin/views/scripts/modules/auth-login.phtml
@@ -1,4 +1,2 @@
-<center>
-  <h1><?php echo $this->_('Propriétés du module : %s', $this->titre_module); ?></h1>
-  <?php echo $this->renderForm($this->form); ?>
-</center>
+<?php
+echo $this->renderForm($this->form);
diff --git a/application/modules/opac/controllers/AbonneController.php b/application/modules/opac/controllers/AbonneController.php
index 932e0363d4f9fc85e4215dd0cf44f471cb9bd346..615877a9482374c93fd3515d97d936b864a0553d 100644
--- a/application/modules/opac/controllers/AbonneController.php
+++ b/application/modules/opac/controllers/AbonneController.php
@@ -383,7 +383,7 @@ class AbonneController extends ZendAfi_Controller_Action {
     $id_pret = $this->_getParam('id_pret');
     $ids = array_filter(explode(';', $id_pret));
     if (!count($ids)) {
-      $this->_renderExtendPopup($this->_('Aucune prolongation éffectué.'));
+      $this->_renderExtendPopup([$this->_('Aucune prolongation éffectué.')]);
       return;
     }
 
@@ -409,9 +409,6 @@ class AbonneController extends ZendAfi_Controller_Action {
   protected function _renderExtendPopup($messages) {
     $this->getHelper('notify')->bePopup();
 
-    if (!is_array($messages))
-      $messages = [$messages];
-
     foreach($messages as $message)
       $this->_helper->notify($message);
     $this->_redirectToReferer();
@@ -438,7 +435,7 @@ class AbonneController extends ZendAfi_Controller_Action {
         ? $result['erreur']
         : $this->_('Votre réservation du document %s a bien été supprimée.', $title);
 
-      return $this->_renderExtendPopup($message);
+      return $this->_renderExtendPopup([$message]);
     }
 
     if ($delete = $this->_getParam('consultation_id_delete'))
diff --git a/application/modules/opac/controllers/BibController.php b/application/modules/opac/controllers/BibController.php
index 2214620b3c580e07e84ab7a5ed18dfd183f24df7..59c05a84a2bb92d19169778c6bc108fe5e5f8a4a 100644
--- a/application/modules/opac/controllers/BibController.php
+++ b/application/modules/opac/controllers/BibController.php
@@ -221,7 +221,8 @@ class BibController extends ZendAfi_Controller_Action {
     $page = (int)$this->_getParam('page');
 
     $helper = (new ZendAfi_View_Helper_Accueil_Library($id_module,
-                                                       $this->_getSettingsFor($id_division, $id_module)))
+                                                       Class_Profil::getCurrentProfil()
+                                                       ->getLocalModuleAccueilConfig($id_module)))
       ->setView($this->view)
       ->setPage($page)
       ->setSelectedFilters($this->_getSelectedFilters());
@@ -236,22 +237,6 @@ class BibController extends ZendAfi_Controller_Action {
   }
 
 
-  protected function _getSettingsFor($id_division, $id_module) {
-    $settings = Class_Profil::getCurrentProfil()
-      ->getBoitesDivision($id_division)[$id_module];
-
-    if(!Class_Users::isCurrentUserCanAccesBackend() || !$this->_getParam('default_filters'))
-      return $settings;
-
-    $settings['preferences']['default_filters'] = $this->_getSelectedFilters();
-    Class_Profil::getCurrentProfil()
-      ->updateModuleConfigAccueil($id_module, $settings)
-      ->save();
-
-    return $settings;
-  }
-
-
   public function mapAction() {
     $this->view->titre = $this->_('Carte des bibliothèques');
     $this->view->libraries = Class_Bib::findAllWithCoordinates();
diff --git a/application/modules/opac/views/scripts/head.phtml b/application/modules/opac/views/scripts/head.phtml
index af83377af4715b1ed92979c5a5b9ea17fd5a3fd6..701b2380ee1db6304708accf4919b8b5bee57061 100644
--- a/application/modules/opac/views/scripts/head.phtml
+++ b/application/modules/opac/views/scripts/head.phtml
@@ -36,7 +36,6 @@
                                           'division-five',
                                           'reload_module'])
                         ->addJQueryReady('
-                                         autoHideShowConfigurationModule();
                                          initializeNoticeMurAnimation();
                                          initializeImgHover();
                                          initializePopups();
diff --git a/application/modules/opac/views/scripts/site_down.phtml b/application/modules/opac/views/scripts/site_down.phtml
index da66509fdb9fa64cb2bb2761d3a663a8fbc5cf1f..390c6e825ef86cd9f43214ad398f37f0acec0def 100644
--- a/application/modules/opac/views/scripts/site_down.phtml
+++ b/application/modules/opac/views/scripts/site_down.phtml
@@ -1,6 +1,7 @@
 <?php
 ob_start();
 echo '<body '.$this->bodyParam.'>';
+echo $this->Admin_FrontNav();
 ?>
 
 <div id="site_web_wrapper" style="width:<?php echo $this->profil->getWidthSite(); ?>; margin-left:auto; margin-right:auto">
diff --git a/application/modules/telephone/controllers/AbonneController.php b/application/modules/telephone/controllers/AbonneController.php
index 88cb0d6c5e91c2f5fbd446f804b4dfc8e4e16830..acf8acd906aaa0990939518b43b3e97bd2f0346e 100644
--- a/application/modules/telephone/controllers/AbonneController.php
+++ b/application/modules/telephone/controllers/AbonneController.php
@@ -58,16 +58,15 @@ class Telephone_AbonneController extends AbonneController {
   }
 
 
-  public function prolongerpretAction() {
-    $sigb = new Class_CommSigb();
-    $result = $sigb->prolongerPret($this->_user, $this->_getParam('id_pret'));
-    $this->_messenger->addMessage((1 == $result['statut']) ?
-                                  $this->view->_('Prêt prolongé') :
-                                  $result['erreur']);
+  protected function _renderExtendPopup($messages) {
+    foreach($messages as $message)
+      $this->_messenger->addMessage($message);
+
     $this->_redirect('/abonne/fiche');
   }
 
 
+
   protected function _detectReservation($reservations) {
     foreach($reservations as $resa) {
       if ($resa->getId() == $this->_getParam('id')) {
diff --git a/cosmogramme/sql/patch/patch_334.php b/cosmogramme/sql/patch/patch_334.php
new file mode 100644
index 0000000000000000000000000000000000000000..8bd70b3464b6f10eb20e53ede87e273dd7626526
--- /dev/null
+++ b/cosmogramme/sql/patch/patch_334.php
@@ -0,0 +1,8 @@
+<?php
+try{
+  Zend_Db_Table_Abstract::getDefaultAdapter()
+    ->query('alter table external_agenda add column autoharvest tinyint not null default 0');
+  Zend_Db_Table_Abstract::getDefaultAdapter()
+    ->query('alter table external_agenda add key autoharvest(autoharvest)');
+} catch(Exception $e) {}
+?>
diff --git a/cosmogramme/sql/patch/patch_335.php b/cosmogramme/sql/patch/patch_335.php
new file mode 100644
index 0000000000000000000000000000000000000000..12fae2847321c1efe7d84f2e782a1b1fcb823f48
--- /dev/null
+++ b/cosmogramme/sql/patch/patch_335.php
@@ -0,0 +1,13 @@
+<?php
+$adapter = Zend_Db_Table_Abstract::getDefaultAdapter();
+$week_days = new Class_Repeat_WeekDays();
+
+try {
+  $adapter->query('select pick_day from batchs limit 1');
+} catch (Exception $e) {
+  $adapter->query('ALTER TABLE `batchs` ADD COLUMN `pick_day` VARCHAR(255) NOT NULL DEFAULT "' . $week_days->allDaysSerialized() . '";');
+  $adapter->query('update `batchs` set `pick_day`="' . $week_days->saturdaySerialized() . '" where type="' . Class_Batch_ArteVOD::TYPE . '";');
+  $adapter->query('update `batchs` set `pick_day`="' . $week_days->sundaySerialized() . '" where type="' . Class_Batch_Cyberlibris::TYPE . '";');
+  $adapter->query('update `batchs` set `pick_day`="' . $week_days->sundaySerialized() . '" where type="' . Class_Batch_Jamendo::TYPE . '";');
+}
+?>
\ No newline at end of file
diff --git a/library/Class/Batch.php b/library/Class/Batch.php
index c8469a79541add4601be117ac6e713acb645594c..71ebf92bd7d8ed36464f43457f589a0510b097a8 100644
--- a/library/Class/Batch.php
+++ b/library/Class/Batch.php
@@ -20,7 +20,6 @@
  */
 
 class Class_BatchLoader extends Storm_Model_Loader {
-
   public function findAllWithDefaults($params = []) {
     if(! Class_Batch::findFirstBy(['type' => Class_Batch_NoveltyFacet::TYPE]))
       Class_Batch::newInstance(['type' => Class_Batch_NoveltyFacet::TYPE])->save();
@@ -41,7 +40,8 @@ class Class_BatchLoader extends Storm_Model_Loader {
                         Class_Batch_AutocompleteRecordAuthor::TYPE => new Class_Batch_AutocompleteRecordAuthor(),
                         Class_Batch_BuildSiteMap::TYPE => new Class_Batch_BuildSiteMap(),
                         Class_Batch_PremierChapitre::TYPE => new Class_Batch_PremierChapitre(),
-                        Class_Batch_NoveltyFacet::TYPE => new Class_Batch_NoveltyFacet()]);
+                        Class_Batch_NoveltyFacet::TYPE => new Class_Batch_NoveltyFacet(),
+                        Class_Batch_ExternalAgenda::TYPE => new Class_Batch_ExternalAgenda]);
   }
 
 
@@ -64,7 +64,10 @@ class Class_BatchLoader extends Storm_Model_Loader {
 
 
   public function getKnownType($type) {
-    return Class_Batch::getKnownTypes()[$type];
+    $known_types = Class_Batch::getKnownTypes();
+    return array_key_exists($type, $known_types)
+      ? $known_types[$type]
+      : null;
   }
 
 
@@ -90,7 +93,9 @@ class Class_BatchLoader extends Storm_Model_Loader {
 
 
   public function getBatchLibelle($type) {
-    return Class_Batch::getKnownType($type)->getLabel();
+    return ($model = Class_Batch::getKnownType($type))
+      ? $model->getLabel()
+      : '';
   }
 
 
@@ -104,15 +109,65 @@ class Class_BatchLoader extends Storm_Model_Loader {
     return $result;
   }
 
+
+  public function isAvailableType($type) {
+    return array_key_exists($type, $this->getAvailableType());
+  }
+
+
+  public function getAvailableBatchDefinitions() {
+    $result = [];
+    $types = Class_Batch::getKnownTypes();
+    foreach($types as $type => $batch) {
+      if ($batch->isEnabled())
+        $result[$type] = new Class_Batch_Definition($batch);
+    }
+
+    return $result;
+  }
+
+
+  public function getDefaultPickDayFor($type) {
+    $week_days = new Class_Repeat_WeekDays();
+
+    if (Class_Batch_ArteVOD::TYPE == $type)
+      return $week_days->saturdaySerialized();
+
+    return in_array($type, [Class_Batch_Cyberlibris::TYPE,
+                            Class_Batch_Jamendo::TYPE])
+      ? $week_days->sundaySerialized()
+      : $week_days->allDaysSerialized();
+
+  }
 }
 
 
+
+
 class Class_Batch extends Storm_Model_Abstract {
+  use Trait_TimeSource;
+
   protected $_table_name = 'batchs';
   protected $_loader_class = 'Class_BatchLoader';
   protected $_default_attribute_values = ['type'=> '',
+                                          'pick_day' => '',
                                           'last_run' => ''];
 
+  public function beforeSave() {
+    $this->_ensureDefaultPickDay();
+  }
+
+
+  protected function _ensureDefaultPickDay() {
+    if (!$this->isNew())
+      return;
+
+    if (!$this->getPickDay()) {
+      $pick_day = $this->getLoader()->getDefaultPickDayFor($this->getType());
+      $this->setPickDay($pick_day);
+    }
+  }
+
 
   public function getLibelle() {
     return $this->withBatchDo(function($batch) { return $batch->getLabel(); },
@@ -165,7 +220,10 @@ class Class_Batch extends Storm_Model_Abstract {
 
 
   public function isManuallyRunnable() {
-    return $this->getType() != Class_Batch_Cyberlibris::TYPE;
+    return !in_array($this->getType(),
+                     [Class_Batch_Cyberlibris::TYPE,
+                      Class_Batch_ArteVOD::TYPE,
+                      Class_Batch_Jamendo::TYPE]);
   }
 
 
@@ -175,4 +233,21 @@ class Class_Batch extends Storm_Model_Abstract {
                      Class_Batch_AutocompleteRecordAuthor::TYPE,
                      Class_Batch_IndexRessourcesNumeriques::TYPE]);
   }
+
+
+  public function setPickDay($value) {
+    if (is_array($value))
+      $value = (new Class_Repeat_WeekDays())->serialize($value);
+
+    return parent::_set('pick_day', $value);
+  }
+
+
+  public function shouldRun() {
+    $now = $this->getCurrentTime();
+    $today = date('w', $now);
+
+    return in_array($today,
+                    (new Class_Repeat_WeekDays())->unserialize($this->getPickDay()));
+  }
 }
diff --git a/library/Class/Batch/Abstract.php b/library/Class/Batch/Abstract.php
index 32e6cb1f6f747a8065c47c1c6674fb999dd054ad..788a8d5ac15e35b4b835b261f36d3477e0ef2d03 100644
--- a/library/Class/Batch/Abstract.php
+++ b/library/Class/Batch/Abstract.php
@@ -45,6 +45,11 @@ class Class_Batch_Abstract {
 
 
   public function getModel() {
-    return Class_Batch::findFirstBy(['type' => static::TYPE]);
+    return Class_Batch::findFirstBy(['type' => $this->getType()]);
+  }
+
+
+  public function getType() {
+    return static::TYPE;
   }
 }
\ No newline at end of file
diff --git a/library/Class/Batch/Definition.php b/library/Class/Batch/Definition.php
new file mode 100644
index 0000000000000000000000000000000000000000..0a84103377e642a283d2b697949214e15eae9b34
--- /dev/null
+++ b/library/Class/Batch/Definition.php
@@ -0,0 +1,75 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class Class_Batch_Definition {
+  use Trait_Translator;
+
+  protected
+    $_type,
+    $_model;
+
+  public function __construct($type) {
+    $this->_type = $type;
+    $this->_model = $type->getModel();
+  }
+
+
+  public function __call($name, $params) {
+    $map = ['getPickDay' => '',
+            'isDeletable' => false,
+            'isManuallyRunnable' => false,
+            'isAjaxRunnable' => false];
+
+    if (array_key_exists($name, $map))
+      return $this->_model
+        ? call_user_func_array([$this->_model, $name], $params)
+        : $map[$name];
+
+    throw new RuntimeException('Call to undefined method '. get_class($this) . '::' . $name);
+  }
+
+
+  public function isActive() {
+    return null !== $this->_model;
+  }
+
+
+  public function getLabel() {
+    return $this->_type->getLabel();
+  }
+
+
+  public function getId() {
+    return $this->_type->getType();
+  }
+
+
+  public function getLastRun() {
+    if (!$this->isActive())
+      return $this->_('Aucune');
+
+    return ('0000-00-00 00:00:00' == ($last_run = $this->_model->getLastRun()))
+      ? $this->_('Aucune')
+      : $last_run;
+  }
+
+}
diff --git a/library/ZendAfi/Form/Configuration/LoginWidget.php b/library/Class/Batch/ExternalAgenda.php
similarity index 65%
rename from library/ZendAfi/Form/Configuration/LoginWidget.php
rename to library/Class/Batch/ExternalAgenda.php
index 6f552f8802a86e8e472dc26a9259f030cd4379c1..f69be445238fefb3c91fce7d23ad003fe11e7cae 100644
--- a/library/ZendAfi/Form/Configuration/LoginWidget.php
+++ b/library/Class/Batch/ExternalAgenda.php
@@ -1,6 +1,6 @@
 <?php
 /**
- * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved.
+ * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved.
  *
  * BOKEH is free software; you can redistribute it and/or modify
  * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
@@ -20,14 +20,15 @@
  */
 
 
+class Class_Batch_ExternalAgenda extends Class_Batch_Abstract {
+  const TYPE = 'EXTERNAL_AGENDA';
 
-class ZendAfi_Form_Configuration_LoginWidget extends ZendAfi_Form_Configuration_BaseLogin {
-  public function init() {
-    parent::init();
+  public function getLabel() {
+    return $this->_('Moissonner les agendas externes');
+  }
 
-    $this
-      ->setMethod('post')
-      ->addUniqDisplayGroup('login_widget_fieldset',
-                            ['legend' => $this->_('Propriétés de la boite de connexion')]);
-      }
-}
\ No newline at end of file
+  public function run() {
+    Class_ExternalAgenda::harvest($this->getLogger());
+  }
+}
+?>
\ No newline at end of file
diff --git a/library/Class/Batch/PremierChapitre.php b/library/Class/Batch/PremierChapitre.php
index c5b151595e7c80cedd275b403f26dd52c548b53e..14a54aba38d8c947c7ed8c50558c50556b1d8da0 100644
--- a/library/Class/Batch/PremierChapitre.php
+++ b/library/Class/Batch/PremierChapitre.php
@@ -40,7 +40,7 @@ class Class_Batch_PremierChapitre extends Class_Batch_Abstract {
 
     $contenu = date('H:i:s')." ".$this->_('Le référentiel a bien été mise à jour')."\n";
     if (!$data = $pc_ws->getDatafile()) {
-      $this->content = $contenu . 
+      $this->content = $contenu .
                           $this->_('Une erreur est survenue')."\n".
                           $this->_('le référentiel n\'a pas pu être téléchargé')."\n".
                           $this->_('Veuillez réessayer ultérieurement')."\n";
@@ -86,7 +86,12 @@ class Class_Batch_PremierChapitre extends Class_Batch_Abstract {
                     '* '.$this->_plural($data['total'],'aucune oeuvre n\'a été traitée','%d oeuvre a été traitée','%d oeuvres ont été traitées',$data['total'])."\n";
     if ($data['add']) $contenu .= '* '.$this->_plural($data['add'],'','%d a été ajoutée','%d ont été ajoutées',$data['add'])."\n";
     if ($data['del']) $contenu .= '* '.$this->_plural($data['del'],'','%d a été supprimée','%d ont été supprimées',$data['del'])."\n";
-       
+
     $this->content = $contenu;
   }
+
+
+  public function isEnabled() {
+    return Class_AdminVar::isPremierChapitreEnabled();
+  }
 }
\ No newline at end of file
diff --git a/library/Class/Bib.php b/library/Class/Bib.php
index ef6747d99b18cbaa3ae516a091ea175a79744f1c..e59d9aaeaf55b03cfe9a007b744f3a0f0f0b1c47 100644
--- a/library/Class/Bib.php
+++ b/library/Class/Bib.php
@@ -146,9 +146,9 @@ class BibLoader extends Storm_Model_Loader {
 
   public function byIdLabels($librairies) {
     $labels = [];
-    foreach ($librairies as $library) {
+    foreach ($librairies as $library)
       $labels[$library->getId()] = $library->getLibelle();
-    }
+
     return $labels;
   }
 
diff --git a/library/Class/Cosmogramme/Integration/PhaseBatchs.php b/library/Class/Cosmogramme/Integration/PhaseBatchs.php
index 4386ec6685d8d75be0ad75446de11625ed083e1f..e59cc2b5b251523c0b4df432cb7d04ee12120448 100644
--- a/library/Class/Cosmogramme/Integration/PhaseBatchs.php
+++ b/library/Class/Cosmogramme/Integration/PhaseBatchs.php
@@ -60,6 +60,13 @@ class Class_Cosmogramme_Integration_PhaseBatchs
 
 
   protected function _runOne($batch) {
+    if (!$batch->shouldRun()) {
+      $this->_log->success($this->_('La tâche %s n\'est pas plannifiée aujourd\'hui',
+                                    $batch->getLibelle()));
+      $this->_chrono->startOnFile();
+      return;
+    }
+
     $this->_log->success($batch->getLibelle());
     $this->_setData('pointeur_reprise', $batch->getId());
 
@@ -70,7 +77,7 @@ class Class_Cosmogramme_Integration_PhaseBatchs
 
     } catch (Exception $e) {
       $this->_log->error($this->_('Erreur lors de l\'execution du batch %s',
-                                     $batch->getLibelle()));
+                                  $batch->getLibelle()));
       $this->_log->error($e->getMessage());
       $this->_log->error($e->getTraceAsString());
     }
diff --git a/library/Class/DigitalResource/Batch.php b/library/Class/DigitalResource/Batch.php
index 698e5885f70f5f7d9e344d78725edc5f5bf91d1e..341777fb34e20789a335a3cddd2089cd3ca41a3b 100644
--- a/library/Class/DigitalResource/Batch.php
+++ b/library/Class/DigitalResource/Batch.php
@@ -37,4 +37,9 @@ class Class_DigitalResource_Batch extends Class_Batch_RessourceNumerique{
   public function isEnabled() {
     return $this->_config->isEnabled();
   }
-}
+
+
+  public function getType() {
+    return get_class($this);
+  }
+}
\ No newline at end of file
diff --git a/library/Class/ExternalAgenda.php b/library/Class/ExternalAgenda.php
index 9816b744e7e5507fd3651945c6d44327f55b8533..ada348c13beea5ca555dee3b77937e297cc2cefb 100644
--- a/library/Class/ExternalAgenda.php
+++ b/library/Class/ExternalAgenda.php
@@ -20,6 +20,19 @@
  */
 
 
+class Class_ExternalAgendaLoader extends Storm_Model_Loader {
+
+  public function harvest($logger) {
+    foreach (Class_ExternalAgenda::findAllBy(['autoharvest' => 1]) as $agenda) {
+      $results = $agenda->import();
+      $logger->log($agenda->getLabel().":\n");
+      $logger->log($agenda->_("Nombre d\'événements créés : %s\n",count($results['new'])));
+      $logger->log($agenda->_("Nombre d\'événements mis à jour : %s\n",count($results['update'])));
+    }
+  }
+}
+
+
 class Class_ExternalAgenda extends Storm_Model_Abstract {
   use Trait_Translator;
 
@@ -30,6 +43,7 @@ class Class_ExternalAgenda extends Storm_Model_Abstract {
                             'location' => ['model' => 'Class_Lieu',
                                            'referenced_in' => 'id_lieu']];
 
+  protected $_loader_class = 'Class_ExternalAgendaLoader';
 
   public function getLibelle() {
     return $this->getLabel();
@@ -43,16 +57,13 @@ class Class_ExternalAgenda extends Storm_Model_Abstract {
   }
 
 
-  public function import($logger) {
+  public function import() {
     $service = new Class_WebService_ICalendar();
     $events = $service->import($this);
-
-    $logger->visitNewEvents($events->select('isNew'));
-    $logger->visitUpdatedEvents($events->reject('isNew'));
-
+    $results['new'] = $events->select('isNew');
+    $results['update'] = $events->reject('isNew');
     $events->eachDo('save');
-
-    return $events;
+    return $results;
   }
 
 
diff --git a/library/Class/Repeat/WeekDays.php b/library/Class/Repeat/WeekDays.php
new file mode 100644
index 0000000000000000000000000000000000000000..db54e22796959f730a2ab2b615f42c003c7e67ad
--- /dev/null
+++ b/library/Class/Repeat/WeekDays.php
@@ -0,0 +1,94 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class Class_Repeat_WeekDays {
+  use Trait_Translator;
+
+  const SEPARATOR = ';';
+
+  protected $_days;
+
+  public function __construct() {
+    $this->_days = ['1' => $this->_('lundi'),
+                    '2' => $this->_('mardi'),
+                    '3' => $this->_('mercredi'),
+                    '4' => $this->_('jeudi'),
+                    '5' => $this->_('vendredi'),
+                    '6' => $this->_('samedi'),
+                    '0' => $this->_('dimanche')];
+  }
+
+
+  public function allDaysSerialized() {
+    return implode(static::SEPARATOR, array_keys($this->_days));
+  }
+
+
+  public function saturdaySerialized() {
+    return '6';
+  }
+
+
+  public function sundaySerialized() {
+    return '0';
+  }
+
+
+  public function allDays() {
+    return $this->_days;
+  }
+
+
+  public function unserialize($value) {
+    $values = explode(static::SEPARATOR, $value);
+    return array_filter($values,
+                        function($item)
+                        {
+                          return $item !== null && $item !== '';
+                        });
+  }
+
+
+  public function serialize($value) {
+    return implode(static::SEPARATOR, $value);
+  }
+
+
+  public function humanReadable($value) {
+    $values = $this->unserialize($value);
+
+    if (!$values)
+      return $this->_('Aucune');
+
+    if (count($values) == count($this->_days))
+      return $this->_('Tous les jours');
+
+    $days = [];
+    foreach($this->_days as $k => $v) {
+      if (in_array($k, $values))
+        $days[] = substr($v, 0, 3);
+      continue;
+    }
+
+    return implode(', ', $days);
+  }
+}
\ No newline at end of file
diff --git a/library/Class/ScriptLoader.php b/library/Class/ScriptLoader.php
index 2ce013d371acf4f33e3344c530a5ccb17fb065c9..92a1901fe6ded261762db6c079d979ba24111d42 100644
--- a/library/Class/ScriptLoader.php
+++ b/library/Class/ScriptLoader.php
@@ -21,7 +21,9 @@
 
 
 class Class_ScriptLoader {
-  use Trait_Translator;
+  use
+    Trait_Translator,
+    Trait_TimeSource;
 
   const
     MODE_JQUERY_READY = 0,
@@ -731,7 +733,7 @@ class Class_ScriptLoader {
 
 
   public function resetCacheHash() {
-    return $this->_version_pergame_hash = md5(BOKEH_MAJOR_VERSION . Class_AdminVar::get('CACHE_DATE'));
+    return $this->_version_pergame_hash = md5(BOKEH_MAJOR_VERSION . BOKEH_RELEASE_NUMBER . Class_AdminVar::get('CACHE_DATE'));
   }
 
 
@@ -846,4 +848,9 @@ class Class_ScriptLoader {
 
     return $this;
   }
+
+
+  public function getDate() {
+    return date('Y-m-d H:i:s', static::getTimeSource()->time());
+  }
 }
diff --git a/library/Class/User/SearchCriteria.php b/library/Class/User/SearchCriteria.php
index b842b2b980730b5b7b7b3c0dac032a56eaf37e2c..b389c1f1b4db157376b2985e39d70eb3a703e488 100644
--- a/library/Class/User/SearchCriteria.php
+++ b/library/Class/User/SearchCriteria.php
@@ -34,7 +34,8 @@ class Class_User_SearchCriteria {
                         new Class_User_SearchCriteriaValidSubscription($params),
                         new Class_User_SearchCriteria_NumberOfReviews($params),
                         new Class_User_SearchCriteria_NumberOfBaskets($params),
-                        new Class_User_SearchCriteriaSearchFor($params)];
+                        new Class_User_SearchCriteriaSearchFor($params),
+                        new Class_User_SearchCriteriaOrder($params)];
   }
 
 
@@ -234,3 +235,23 @@ class Class_User_SearchCriteriaSearchFor extends Class_User_SearchCriteria_Abstr
     $visitor->addWhereParam(implode(' OR ', $table_or));
   }
 }
+
+
+
+
+class Class_User_SearchCriteriaOrder extends Class_User_SearchCriteria_Abstract {
+  protected
+    $_name = 'order',
+    $_value = 'nom asc';
+
+
+  public function __construct($params) {
+    parent::__construct($params);
+    if(isset($params['search_order']) && $params['search_order'])
+      $this->_value = $params['search_order'];
+  }
+
+  public function acceptSearchVisitor($visitor) {
+    $visitor->addParam('order', $this->_value);
+  }
+}
\ No newline at end of file
diff --git a/library/Class/Users.php b/library/Class/Users.php
index 821852579cd2bb3c468a9f63d833ae1ba57fea3c..c5c17052a5216d40e2db294fbf960da88f0108cd 100644
--- a/library/Class/Users.php
+++ b/library/Class/Users.php
@@ -1810,7 +1810,7 @@ class Class_Users extends Storm_Model_Abstract {
 
   public function getRedmineLibraries() {
     if($this->getRoleLevel() >= ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL)
-      return Class_Bib::findAll();
+      return Class_Bib::findAllBy(['order' => 'libelle']);
 
     return [$this->getRedmineLibrary()];
   }
diff --git a/library/ZendAfi/Acl/AdminControllerRoles.php b/library/ZendAfi/Acl/AdminControllerRoles.php
index 6913a8aa1dda39ff7f898ab70e8cf11cd2697c9d..8b7b1921877fb6b33d2e03bb54938ead62c03a5e 100644
--- a/library/ZendAfi/Acl/AdminControllerRoles.php
+++ b/library/ZendAfi/Acl/AdminControllerRoles.php
@@ -90,6 +90,7 @@ class ZendAfi_Acl_AdminControllerRoles extends Zend_Acl {
     $this->add(new Zend_Acl_Resource('print'));
     $this->add(new Zend_Acl_Resource('external-agendas'));
     $this->add(new Zend_Acl_Resource('systeme'));
+    $this->add(new Zend_Acl_Resource('batch'));
 
     //Roles
     $this->addRole(new Zend_Acl_Role('invite'));
@@ -159,6 +160,7 @@ class ZendAfi_Acl_AdminControllerRoles extends Zend_Acl {
     $this->deny('modo_portail','users');
     $this->deny('modo_portail','usergroup');
     $this->deny('modo_portail','systeme');
+    $this->deny('modo_portail','batch');
 
     $this->allow('modo_portail');
     $this->allow('admin_portail');
diff --git a/library/ZendAfi/Controller/Action/Helper/UserSearch.php b/library/ZendAfi/Controller/Action/Helper/UserSearch.php
index 21a763384f7b7c8f19d1716607bee150b64b268f..3a53269d72f3a5c893573a0b9ecba36a0f3e5f56 100644
--- a/library/ZendAfi/Controller/Action/Helper/UserSearch.php
+++ b/library/ZendAfi/Controller/Action/Helper/UserSearch.php
@@ -31,7 +31,8 @@ class ZendAfi_Controller_Action_Helper_UserSearch extends Zend_Controller_Action
     $this->view->total = $criteria->count();
     $this->view->form = $this->_prepareForm($action_params, $criteria);
     $this->view->params = array_merge($this->view->form->getValues(),
-                                      ['page' => $this->view->page]);
+                                      ['page' => $this->view->page,
+                                       'search_order' => $this->_getParam('search_order', 'nom asc')]);
 
   }
 
diff --git a/library/ZendAfi/Controller/Plugin/Manager/Batch.php b/library/ZendAfi/Controller/Plugin/Manager/Batch.php
new file mode 100644
index 0000000000000000000000000000000000000000..801abe1a1db8946b9cb93e7bcf309bf0f17fc560
--- /dev/null
+++ b/library/ZendAfi/Controller/Plugin/Manager/Batch.php
@@ -0,0 +1,86 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class ZendAfi_Controller_Plugin_Manager_Batch extends ZendAfi_Controller_Plugin_Manager_Manager {
+  public function getActions($model) {
+    return [
+            ['url' => '#',
+             'icon' => 'help',
+             'label' => $this->_('Tâche système non désactivable'),
+             'condition' => function($model)
+              {
+                return !$model->isDeletable() && $model->isActive();
+              },
+             'anchorOptions' => ['onclick' => 'return false;']],
+
+            ['url' => '/admin/batch/activate/id/%s',
+             'icon' => 'hide',
+             'label' => $this->_('Activer la tâche'),
+             'condition' => function($model) {
+                return Class_Users::isCurrentUserSuperAdmin()
+                && !$model->isActive();
+             }],
+
+            ['url' => '/admin/batch/delete/id/%s',
+             'icon' => 'show',
+             'label' => $this->_('Désactiver la tâche'),
+             'condition' => function($model)
+              {
+                return $model->isDeletable();
+              },
+             'anchorOptions' => ['onclick' => 'return confirm(\''
+                                 . str_replace(['\'', '"'], '\\\'',
+                                               $this->_('Etes-vous sur de vouloir désactiver cette tâche ?'))
+                                 . '\')']],
+
+            ['url' => '/admin/batch/plan/id/%s',
+             'icon' => 'calendar',
+             'label' => $this->_('Plannifier la tâche'),
+             'condition' => function($model) {
+                return Class_Users::isCurrentUserSuperAdmin()
+                && $model->isActive();
+             },
+             'anchorOptions' => ['data-popup' => 'true']],
+
+
+            ['url' => '/admin/batch/run/id/%s',
+             'icon' => 'test',
+             'label' => $this->_('Lancer manuellement'),
+             'condition' => function($model)
+              {
+                return $model->isManuallyRunnable() && (!$model->isAjaxRunnable());
+              }],
+
+            ['url' => '/admin/batch/run-ajax/id/%s',
+             'icon' => 'test',
+             'label' => $this->_('Lancer'),
+             'condition' => function($model)
+              {
+                return $model->isManuallyRunnable() && $model->isAjaxRunnable();
+              }]];
+  }
+
+
+  protected function _canEdit($model) {
+    return Class_Users::isCurrentUserSuperAdmin();
+  }
+}
\ No newline at end of file
diff --git a/library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php b/library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php
new file mode 100644
index 0000000000000000000000000000000000000000..3a92d345d0fa282a0c7c9529b7b546b149396525
--- /dev/null
+++ b/library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php
@@ -0,0 +1,40 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class ZendAfi_Controller_Plugin_Manager_ExternalAgenda extends ZendAfi_Controller_Plugin_Manager_Manager {
+  public function getActions($model) {
+    return [
+            ['url' => '/admin/external-agendas/import/id/%s',
+             'icon' => 'test',
+             'label' => $this->_('Moissonner')
+            ],
+            ['url' => '/admin/external-agendas/edit/id/%s',
+             'icon' => 'edit',
+             'label' => $this->_('Modifier'),
+             'anchorOptions' => ['data-popup' => 'true']],
+            ['url' => '/admin/external-agendas/delete/id/%s',
+             'label' => $this->_('Supprimer'),
+             'icon' => 'delete',
+             'anchorOptions' => ['data-popup' => 'true']]
+            ];
+  }
+}
\ No newline at end of file
diff --git a/library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php b/library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php
index 319f2646d50bb3888a75ba8336a727637c02f1a7..e4e223efe849f3a45cdae4ac79be40f844369f5e 100644
--- a/library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php
+++ b/library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php
@@ -28,10 +28,12 @@ class ZendAfi_Controller_Plugin_ResourceDefinition_Batch extends ZendAfi_Control
                         'order' => 'type',
                         'findAll' => 'findAllWithDefaults'],
 
-            'messages' => ['successful_add' => $this->_('Tâche ajoutée'),
+            'messages' => ['successful_save' => $this->_('Tâche sauvegardée'),
+                           'successful_add' => $this->_('Tâche ajoutée'),
                            'successful_delete' => $this->_('Tâche supprimée')],
 
             'actions' => ['add' => ['title' => $this->_('Nouvelle Tâche')],
+                          'edit' => ['title' => $this->_('Modifier la tâche')],
                           'index' => ['title' => $this->_('Tâches')]],
 
             'after_add' => function() {$this->_redirect('/admin/batch');},
diff --git a/library/ZendAfi/Form/Admin/Batch.php b/library/ZendAfi/Form/Admin/Batch.php
index 8bc12c09edbb6dadcddaf34a93e8194343b96bc4..3c7d6d024bf14226a40063bb104b8ae68eb4d2bf 100644
--- a/library/ZendAfi/Form/Admin/Batch.php
+++ b/library/ZendAfi/Form/Admin/Batch.php
@@ -25,12 +25,11 @@ class ZendAfi_Form_Admin_Batch extends ZendAfi_Form {
     parent::init();
 
     $this
-      ->setAttrib('data-disable-onchange', 'true')
+      ->setAttrib('id', 'batch_plan')
+      ->addElement('weekDays',
+                   'pick_day',
+                   ['label' => $this->_('Lancer tous les')]);
 
-      ->addElement('select', 'type',
-                   ['multiOptions' => Class_Batch::getAvailableType(),
-                    'required' => true])
-
-      ->addDisplayGroup(['type'], 'ajout_tache', []);
+    $this->addUniqDisplayGroup('batch');
   }
 }
diff --git a/library/ZendAfi/Form/Admin/ExternalAgenda.php b/library/ZendAfi/Form/Admin/ExternalAgenda.php
index bef1b8f0ce6ba0f0ae432b0d0409b96e5f0251c3..295cf12deba7661f7a46cc610fd7cb4be7fba2a8 100644
--- a/library/ZendAfi/Form/Admin/ExternalAgenda.php
+++ b/library/ZendAfi/Form/Admin/ExternalAgenda.php
@@ -38,6 +38,10 @@ class ZendAfi_Form_Admin_ExternalAgenda extends ZendAfi_Form {
                     'required' => true,
                     'allowEmpty' => false,
                     'title' => $this->_('Le flux doit être au format iCalendar')])
+      ->addElement('checkbox',
+                   'autoharvest',
+                   ['label' => $this->_('Moissonnage automatique'),
+                    ])
 
       ->addElement('comboCategories',
                    'cat_id',
@@ -52,7 +56,7 @@ class ZendAfi_Form_Admin_ExternalAgenda extends ZendAfi_Form {
                    ['label' => $this->_('Lieu'),
                     'multiOptions' => ['0' => $this->_('Aucun')] + Class_Lieu::getAllLibelles()]);
 
-    $elements = ['label', 'url', 'cat_id', 'id_lieu'];
+    $elements = ['label', 'url','autoharvest', 'cat_id', 'id_lieu'];
 
     if (Class_AdminVar::isWorkFlowEnabled()) {
       $this->addElement('radio', 'status',
diff --git a/library/ZendAfi/Form/Configuration/Widget/Search.php b/library/ZendAfi/Form/Configuration/Widget/Search.php
index 830874234ef2b60710884214bee18e6da9b84bc0..497343fea0de0bf01dfb2d5a9ab647d3bd94faac 100644
--- a/library/ZendAfi/Form/Configuration/Widget/Search.php
+++ b/library/ZendAfi/Form/Configuration/Widget/Search.php
@@ -94,7 +94,7 @@ class ZendAfi_Form_Configuration_Widget_Search
 
       ->addElement('domainSelect',
                    'domain_ids',
-                   ['label' => $this->_('Domaines sélectionnables'),
+                   ['label' => $this->_('Proposer la sélection de domaines'),
                     'url' => Class_Url::assemble(['module' => 'opac',
                                                   'controller' => 'abonne',
                                                   'action' => 'viewable-domains-json'])])
@@ -111,21 +111,22 @@ class ZendAfi_Form_Configuration_Widget_Search
   public function populate($datas) {
     $this
       ->addToSelectionGroup(['type_doc',
-                             'tri'])
+                             'tri',
+                             'select_bib',
+                             'select_annexe',
+                             'select_doc',
+                             'domain_ids',
+                             'domain_select_style'])
+
       ->addToDisplaySettingsGroup(['search_button',
                                    'message',
                                    'placeholder',
                                    'exemple',
-                                   'recherche_avancee',
-                                   'select_bib',
-                                   'select_annexe',
-                                   'select_doc',
-                                   'domain_ids']);
+                                   'recherche_avancee']);
     parent::populate($datas);
 
     return $this
-      ->addToStyleGroup(['largeur',
-                         'domain_select_style'])
+      ->addToStyleGroup(['largeur'])
       ->addToHeadGroup(['profil_redirect']);
   }
 }
diff --git a/library/ZendAfi/Form/Element/WeekDays.php b/library/ZendAfi/Form/Element/WeekDays.php
new file mode 100644
index 0000000000000000000000000000000000000000..4fbe72d00d7cc0d701e1051047598af17d923aca
--- /dev/null
+++ b/library/ZendAfi/Form/Element/WeekDays.php
@@ -0,0 +1,37 @@
+<?php
+/**
+ * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+class ZendAfi_Form_Element_WeekDays extends Zend_Form_Element_MultiCheckbox {
+  public function __construct($spec, $options=null) {
+    parent::__construct($spec, $options);
+    $this
+      ->setMultiOptions((new Class_Repeat_WeekDays())->allDays())
+      ->setSeparator(' ');
+  }
+
+
+  public function setValue($value) {
+    return is_string($value)
+      ? parent::setValue((new Class_Repeat_WeekDays())->unserialize($value))
+      : parent::setValue($value);
+  }
+}
diff --git a/library/ZendAfi/View/Helper/Abonne/LoansExtension.php b/library/ZendAfi/View/Helper/Abonne/LoansExtension.php
index 4fe18cff037477d8236a94d5313db7fdee9684d1..9c7bd8763e2a4ce71af06790ad2110d917c46a97 100644
--- a/library/ZendAfi/View/Helper/Abonne/LoansExtension.php
+++ b/library/ZendAfi/View/Helper/Abonne/LoansExtension.php
@@ -30,7 +30,7 @@ class ZendAfi_View_Helper_Abonne_LoansExtension extends ZendAfi_View_Helper_Base
     $this->_results = $results;
 
     return count($ids) == 1
-      ? $this->_renderOneLoanExtension()
+      ? [$this->_renderOneLoanExtension()]
       : $this->_renderMultipleLoansExtension();
   }
 
diff --git a/library/ZendAfi/View/Helper/Accueil/Base.php b/library/ZendAfi/View/Helper/Accueil/Base.php
index 7d2cd429df43f94d1191b0eaf1e2bcbcf0de3624..f4ad99549b41471fd04704ac02f565e3f7d34775 100644
--- a/library/ZendAfi/View/Helper/Accueil/Base.php
+++ b/library/ZendAfi/View/Helper/Accueil/Base.php
@@ -49,6 +49,7 @@ class ZendAfi_View_Helper_Accueil_Base extends ZendAfi_View_Helper_ModuleAbstrac
 
     if (!$this->preferences)
       $this->preferences = $modules_accueil->getValeursParDefaut($this->type_module);
+
     $this->preferences = array_merge($modules_accueil->getValeursParDefaut($this->type_module),
                                      $this->preferences);
   }
diff --git a/library/ZendAfi/View/Helper/Accueil/Kiosque.php b/library/ZendAfi/View/Helper/Accueil/Kiosque.php
index 70e98f3a8cff8136fc153a5e636bbafad2c384e4..c59660584b3c19555026ba4cfa435d291d9c47dd 100644
--- a/library/ZendAfi/View/Helper/Accueil/Kiosque.php
+++ b/library/ZendAfi/View/Helper/Accueil/Kiosque.php
@@ -69,20 +69,17 @@ class ZendAfi_View_Helper_Accueil_Kiosque extends ZendAfi_View_Helper_Accueil_Ba
     $this->contenu =  (in_array($this->preferences['style_liste'], ['mur', 'vignettes', 'chrono']))
       ? $this->getKiosqueHtml()
       : $this->getKiosqueIFrame();
-    $this->contenu = $this->getChangeKiosqueData() . $this->contenu;
+    $this->contenu = $this->contenu;
 
     return $this->getHtmlArray();
   }
 
 
-  public function getAddEditLinks() {
-    if (!Class_Users::isCurrentUserCanAccesBackend())
-      return '';
-
+  public function getEditLink() {
     if (!($this->preferences['id_catalogue'] && ($catalogue = Class_Catalogue::find($this->preferences['id_catalogue']))))
       return '';
 
-    $edit_link =  $this->view->tagAnchor($this->view->url(['module' => 'admin',
+    return  $this->view->tagAnchor($this->view->url(['module' => 'admin',
                                                            'controller' => 'catalogue',
                                                            'action' => 'edit',
                                                            'id_catalogue' => $this->preferences['id_catalogue']]),
@@ -91,10 +88,17 @@ class ZendAfi_View_Helper_Accueil_Kiosque extends ZendAfi_View_Helper_Accueil_Ba
                                                               ['title' => $this->view->_('Modifier le domaine : %s', htmlspecialchars($catalogue->getLibelle()))]),
                                          ['data-popup' => 'true']);
 
+  }
+
+
+  public function getAddLink() {
+    if (!($this->preferences['id_catalogue'] && ($catalogue = Class_Catalogue::find($this->preferences['id_catalogue']))))
+      return null;
+
     if (!$domaine_parent = $catalogue->getDomaineParent())
-      return $edit_link;
+      return null;
 
-    $add_link = $this->view->tagAnchor($this->view->url(['module' => 'admin',
+    return $this->view->tagAnchor($this->view->url(['module' => 'admin',
                                                          'controller' => 'catalogue',
                                                          'action' => 'add',
                                                          'id_catalogue' => $domaine_parent->getId(),
@@ -102,15 +106,23 @@ class ZendAfi_View_Helper_Accueil_Kiosque extends ZendAfi_View_Helper_Accueil_Ba
                                        Class_Admin_Skin::current()
                                          ->renderActionIconOn('add', $this->view, ['title' => $this->view->_('Afficher un nouveau domaine')]),
                                        ['data-popup' => 'true']);
-
-    return $edit_link.$add_link;
   }
 
 
-  public function getChangeKiosqueData() {
+  protected function _extendedActions() {
     if (!Class_Users::isCurrentUserCanAccesBackend())
-      return '<div style="display:none"></div>';
+      return null;
+
+    return [
+            function() { return $this->getChangeKiosqueData(); },
+            function() { return $this->getAddLink(); },
+            function() { return $this->getEditLink(); }
+    ];
+  }
 
+
+
+  public function getChangeKiosqueData() {
     $id_panier = isset($this->preferences['id_panier'])
       ? $this->preferences['id_panier']
       : 0;
@@ -126,17 +138,12 @@ class ZendAfi_View_Helper_Accueil_Kiosque extends ZendAfi_View_Helper_Accueil_Ba
                         'id_module' => $this->id_module
                         ],null,true);
 
-    return
-      $this->_tag('div',
-                  $this->getAddEditLinks() .
-                  $this->view->tagAnchor($change_kiosque_selection_url,
-                                         $this->view->tagImg(Class_Admin_Skin::current()
-                                                             ->getIconUrl('icons',
-                                                                          'domains'),
-                                                             ['title' => $this->view->_('Choisir un autre domaine')]),
-                                         ['data-popup'=>'true']),
-                  ['class' => 'change_kiosque_data configuration_module']);
-
+    return $this->view->tagAnchor($change_kiosque_selection_url,
+                                  $this->view->tagImg(Class_Admin_Skin::current()
+                                                      ->getIconUrl('icons',
+                                                                   'domains'),
+                                                      ['title' => $this->view->_('Choisir un autre domaine')]),
+                                  ['data-popup'=>'true']);
   }
 
 
diff --git a/library/ZendAfi/View/Helper/Accueil/Library.php b/library/ZendAfi/View/Helper/Accueil/Library.php
index e60c77814d823b92032110944e44727af0a3f47e..e33d0ab06dc9e8805d3bde3805d5d55de1f5aaed 100644
--- a/library/ZendAfi/View/Helper/Accueil/Library.php
+++ b/library/ZendAfi/View/Helper/Accueil/Library.php
@@ -67,10 +67,10 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba
       return '';
 
     return $this->view
-      ->tagAnchor($this->view->url(array_merge(
-                                               $this->_getBaseUrl(),
-                                               ['default_filters' => 1,
-                                                'render' => null])),
+      ->tagAnchor($this->view->url(array_merge($this->_getBaseUrl(),
+                                               ['module' => 'admin',
+                                                'controller' => 'bib',
+                                                'action' => 'save-defaults'])),
                   Class_Admin_Skin::current()
                   ->renderMenuIconOn('moderation',
                                      $this->view,
@@ -261,7 +261,6 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba
 
     return array_merge(['controller' => 'bib',
                         'action' => 'widget-page',
-                        'default_filters' => null,
                         'id_module' => $this->getIdModule(),
                         'id_division' => $this->division],
                        $filters);
@@ -345,4 +344,4 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba
                                           ]);
   }
 
-}
+}
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/Accueil/MenuVertical.php b/library/ZendAfi/View/Helper/Accueil/MenuVertical.php
index 6f98639b9a02ae46f1c782abfad377768a6e970f..24c4dc6b2a2b7ac39650f0832aaf62e80a4b0edc 100644
--- a/library/ZendAfi/View/Helper/Accueil/MenuVertical.php
+++ b/library/ZendAfi/View/Helper/Accueil/MenuVertical.php
@@ -85,11 +85,16 @@ class ZendAfi_View_Helper_Accueil_MenuVertical extends ZendAfi_View_Helper_Accue
       : $this->_getContentAsOldHtml($config);
 
     $this->titre = $titre;
-    $this->contenu = $this->_editMenu() . $contenu;
+    $this->contenu =  $contenu;
     return $this->getHtmlArray();
   }
 
 
+  protected function _extendedActions() {
+    return [function() { return $this->_editMenu(); }];
+  }
+
+
   protected function _editMenu() {
     return $this->view->tagEditMenu($this->_menu_id, $this->_menu_id_profil);
   }
diff --git a/library/ZendAfi/View/Helper/Admin/ContentNav.php b/library/ZendAfi/View/Helper/Admin/ContentNav.php
index a3999e2a70ba6d0a6b32c73c42309fdd54a63af1..85a7bc95df7b73aacf5144ca28ebd3ae5a08c374 100644
--- a/library/ZendAfi/View/Helper/Admin/ContentNav.php
+++ b/library/ZendAfi/View/Helper/Admin/ContentNav.php
@@ -138,7 +138,7 @@ class ZendAfi_View_Helper_Admin_ContentNav extends ZendAfi_View_Helper_BaseHelpe
                    [['cosmogramme', $this->_('Accès à Cosmogramme'), '/cosmogramme',
                      ['target' => '_blank'], $is_admin],
 
-                    ['batches', $this->_('Batchs'), '/admin/batch', [], $is_admin],
+                    ['batches', $this->_('Batchs'), '/admin/batch'],
                     ['variables', $this->_('Variables'), '/admin/index/adminvar', [], $is_admin],
 
                     ['webservice_tests', $this->_('Test des web-services'), '/admin/systeme/webservices',
diff --git a/library/ZendAfi/View/Helper/Admin/FrontNav.php b/library/ZendAfi/View/Helper/Admin/FrontNav.php
index da9f0cac0bbb0a47b89cc71cd773864c83330560..04ef2e194d737375990e69e6965bc556e67dca11 100644
--- a/library/ZendAfi/View/Helper/Admin/FrontNav.php
+++ b/library/ZendAfi/View/Helper/Admin/FrontNav.php
@@ -221,7 +221,7 @@ class ZendAfi_View_Helper_Admin_FrontNav extends ZendAfi_View_Helper_BaseHelper
 
   protected function _adminLinks() {
     $links = [$this->view->tagAnchor(Class_Url::absolute('/admin'),
-                                     $this->_('Accueil') .
+                                     $this->_('Accès pro.') .
                                      $this->view->tagImg(Class_Admin_Skin::current()
                                                          ->getIconUrl('icons',
                                                                       'home')),
diff --git a/library/ZendAfi/View/Helper/Admin/SearchUsers.php b/library/ZendAfi/View/Helper/Admin/SearchUsers.php
index 3bcc022348a3d7ae0adbed1c6635c068860d0705..af5fe1de698a38e3fc73a04b800c33b7bcac5dd3 100644
--- a/library/ZendAfi/View/Helper/Admin/SearchUsers.php
+++ b/library/ZendAfi/View/Helper/Admin/SearchUsers.php
@@ -41,17 +41,17 @@ class ZendAfi_View_Helper_Admin_SearchUsers extends ZendAfi_View_Helper_BaseHelp
                                                    ->setText($this->_('Rechercher'))
                                                    ->setImage($this->view->tagImg(Class_Admin_Skin::current()
                                                                                   ->getIconUrl('actions',
-                                                                                                    'loupe'),
+                                                                                               'loupe'),
                                                                                   ['style' => 'filter: invert();']))
                                                    ->setAttribs(['onclick' => "var form=$(this).parents('form'); if (!form.size()) form=$(this).parents('.boutons, .admin-buttons').prevAll('form');if (!form.size()) form=$(this).parents('.boutons, .admin-buttons').nextAll('form');form.submit(); return false;",
                                                                  'type' => 'submit',
                                                                  'class' => 'search',
                                                                  'title' => $this->_('Lancer la recherche')]))]) .
-      $this->view->tag('p', $this->view->_plural($this->total,
-                                                 'Auncun utilisateur trouvé',
-                                                 '%d utilisateur trouvé',
-                                                 '%d utilisateurs trouvés',
-                                                 $this->total)) .
+      $this->_tag('p', $this->view->_plural($this->total,
+                                            'Auncun utilisateur trouvé',
+                                            '%d utilisateur trouvé',
+                                            '%d utilisateurs trouvés',
+                                            $this->total)) .
       $this->_getUsersTable();
   }
 
@@ -69,6 +69,17 @@ class ZendAfi_View_Helper_Admin_SearchUsers extends ZendAfi_View_Helper_BaseHelp
 
 
   protected function _getTable() {
+    $description = $this
+      ->_addColumnsTo(new Class_TableDescription('users_table'))
+      ->addRowAction($this->actions);
+    return $this->view->renderTable($description,
+                                    (new Class_TableDescription_Models($this->users)),
+                                    ['sorter' => false,
+                                     'pager' => false]);
+  }
+
+
+  protected function _addColumnsTo($description) {
     $acl = new ZendAfi_Acl_AdminControllerRoles();
 
     $role_renderer = function($model) use($acl){
@@ -79,22 +90,30 @@ class ZendAfi_View_Helper_Admin_SearchUsers extends ZendAfi_View_Helper_BaseHelp
       return $model->getLibelleBib();
     };
 
-    return $this->view->tagModelTable($this->users,
-                                      [$this->view->_('Identifiant'),
-                                       $this->view->_('Nom'),
-                                       $this->view->_('Prenom'),
-                                       $this->view->_('Role'),
-                                       $this->view->_('Bibliothèque')],
-                                      ['login',
-                                       'nom',
-                                       'prenom',
-                                       'role_level',
-                                       'library'],
-                                      [ $this->actions ],
-                                      null,
-                                      null,
-                                      ['role_level' => $role_renderer,
-                                       'library' => $library_renderer]);
+    return $description
+      ->addColumn($this->_orderAnchor('login', $this->_('Identifiant')), 'login')
+      ->addColumn($this->_orderAnchor('nom', $this->_('Nom')), 'nom')
+      ->addColumn($this->_orderAnchor('prenom', $this->_('Prenom')), 'prenom')
+      ->addColumn($this->_orderAnchor('role_level', $this->_('Role')), $role_renderer)
+      ->addColumn($this->_('Bibliothèque'), $library_renderer);
+  }
+
+
+  protected function _orderAnchor($key, $label) {
+    $order = $this->params['search_order'];
+    $order_param = $key;
+
+    if((0 === strpos($order, $key)) && (false === strpos($order, 'desc')))
+      $order_param .= ' desc';
+
+    $data_order = (0 === strpos($order, $key))
+      ? str_replace(' ', '_', 'order_' . $order_param)
+      : '';
+
+    return  $this->view->tagAnchor(array_merge(array_filter($this->params),
+                                               ['search_order' => $order_param,
+                                                'page' => null]),
+                                   $label,
+                                   ['data-order' => $data_order]);
   }
-}
-?>
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/AjaxRedirect.php b/library/ZendAfi/View/Helper/AjaxRedirect.php
index 4e130b5c3d337a164e794a046deed8182cebcecf..7f4dafcda9c3dd461db6b1e22ac72749d4cadb1b 100644
--- a/library/ZendAfi/View/Helper/AjaxRedirect.php
+++ b/library/ZendAfi/View/Helper/AjaxRedirect.php
@@ -22,11 +22,12 @@
 
 class ZendAfi_View_Helper_AjaxRedirect extends ZendAfi_View_Helper_BaseHelper {
   public function ajaxRedirect() {
-    Class_Admin_Skin::current()
-      ->renderJQueryCssOn(Class_ScriptLoader::getInstance());
+    $script_loader = Class_ScriptLoader::getInstance();
+    Class_Admin_Skin::current()->renderJQueryCssOn($script_loader);
 
     return
-      $this->_tag('div',
+      $script_loader->html()
+      . $this->_tag('div',
                   $this->_tag('p',
                               $this->_('Veuillez patienter ...'))
                   . $this->view->tagLoadingImg(),
diff --git a/library/ZendAfi/View/Helper/FonctionsAdmin.php b/library/ZendAfi/View/Helper/FonctionsAdmin.php
index b5fba366173c0ea7b41a8543e721515a0fb57d80..8edcbcd89944885cb3bf0cf54aae32c2f9be3c47 100644
--- a/library/ZendAfi/View/Helper/FonctionsAdmin.php
+++ b/library/ZendAfi/View/Helper/FonctionsAdmin.php
@@ -34,18 +34,22 @@ class ZendAfi_View_Helper_FonctionsAdmin extends ZendAfi_View_Helper_BaseHelper
     $this->division = $division;
     $this->_current_skin = Class_Admin_Skin::current();
 
-    if (!Class_Users::isCurrentUserCanConfigFront())
-      return '';
-
-    return ($actions = trim($this->_extended($extended_actions) . ' '
-                            . $this->_config() . ' '
-                            . $this->_versions() . ' '
-                            . $this->_add() . ' '
-                            . $this->_delete())) ?
-      $this->_tag('div', $actions,
-                  ['class' => 'configuration_module',
-                   'style' => 'text-align:right']) :
-      '';
+    $actions = [$this->_extended($extended_actions)];
+
+    if (Class_Users::isCurrentUserCanConfigFront())
+      $actions = array_merge($actions,
+                             [$this->_config(),
+                              $this->_versions(),
+                              $this->_add(),
+                              $this->_delete()]);
+
+    $html = trim(implode(' ', array_filter($actions)));
+
+    return $html
+      ? $this->_tag('div', $html,
+                    ['class' => 'configuration_module',
+                     'style' => 'text-align:right'])
+      : '';
   }
 
 
@@ -98,14 +102,14 @@ class ZendAfi_View_Helper_FonctionsAdmin extends ZendAfi_View_Helper_BaseHelper
     if (!(new Class_Systeme_ModulesAppli())->getModule($controller, $action))
       return [];
 
-    return ['module' => 'admin',
-            'controller' => 'modules',
-            'action' => $controller,
-            'config' => 'site',
-            'type_module' => $controller,
-            'id_profil' => $this->id_profil,
-            'action1' => $action,
-            'action2' => $action2];
+    return array_filter(['module' => 'admin',
+                         'controller' => 'modules',
+                         'action' => $controller,
+                         'config' => 'site',
+                         'type_module' => $controller,
+                         'id_profil' => $this->id_profil,
+                         'action1' => $action,
+                         'action2' => $action2]);
   }
 
 
@@ -137,7 +141,7 @@ class ZendAfi_View_Helper_FonctionsAdmin extends ZendAfi_View_Helper_BaseHelper
 
     $url = $this->view->url(['module' => 'admin',
                              'controller' => 'widget',
-                             'action' => 'add',
+                             'action' => 'add-from-template',
                              'after' => $this->id_module,
                              'division' => $this->division,
                              'id_profil' => $this->_getIdProfil()],
diff --git a/library/ZendAfi/View/Helper/ModuleAbstract.php b/library/ZendAfi/View/Helper/ModuleAbstract.php
index 5fe8d39f4cd693c4ed612353a9667883c7ac5769..04bb5734820f008baf8dc657e1062e1de5ede0c8 100644
--- a/library/ZendAfi/View/Helper/ModuleAbstract.php
+++ b/library/ZendAfi/View/Helper/ModuleAbstract.php
@@ -28,11 +28,14 @@ abstract class ZendAfi_View_Helper_ModuleAbstract extends ZendAfi_View_Helper_Ba
    * @param int $id_module
    * @param array $params
    */
-  public function __construct($id_module,$params) {
+  public function __construct($id_module, $params) {
     parent::__construct();
     $this->id_module = $id_module;
     $this->preferences = array_merge($params['preferences'],
                                      $params);
+
+    $this->preferences = array_merge($this->preferences,
+                                     $this->preferences['preferences']);
   }
 
 
diff --git a/library/ZendAfi/View/Helper/RenderWidgetTemplates.php b/library/ZendAfi/View/Helper/RenderWidgetTemplates.php
index e4c5cf47e6e777b937c215815366f068c4b782a8..9687f725f5423e51a0c463818c2e6e81fb09e89f 100644
--- a/library/ZendAfi/View/Helper/RenderWidgetTemplates.php
+++ b/library/ZendAfi/View/Helper/RenderWidgetTemplates.php
@@ -21,7 +21,6 @@
 
 
 class ZendAfi_View_Helper_RenderWidgetTemplates extends ZendAfi_View_Helper_BaseHelper {
-
   public function renderWidgetTemplates($templates) {
     Class_ScriptLoader::getInstance()
       ->addJQueryReady('var widget = $(".widget_templates");'
@@ -64,9 +63,7 @@ class ZendAfi_View_Helper_RenderWidgetTemplates extends ZendAfi_View_Helper_Base
                                     'action' => 'add',
                                     'template' => $section_key,
                                     'template_no' => $template_index,
-                                    'id_profil' => Class_Profil::getCurrentProfil()->getId()],
-                                   null,
-                                   true);
+                                    'render' => null]);
     return
       $this->_tag('a',
                   $this->_tag('h4', $template['title']) .
diff --git a/library/digital_resources/Lekiosk/tests/LeKioskTest.php b/library/digital_resources/Lekiosk/tests/LeKioskTest.php
index a9944472cf241ed5467fdfcf4f9bba0dcee0fcf9..989189ca42c981be5f9f4c1a22fc3869d7e7b41c 100644
--- a/library/digital_resources/Lekiosk/tests/LeKioskTest.php
+++ b/library/digital_resources/Lekiosk/tests/LeKioskTest.php
@@ -454,8 +454,6 @@ class LeKioskRenderAlbumFromRecordTest extends LekioskServiceTestCase {
 
 
 
-
-
 class LekioskAdminUserGroupControllerRessourcesNumeriquesTest extends Admin_AbstractControllerTestCase {
   protected $_storm_default_to_volatile = true;
 
@@ -500,18 +498,21 @@ class LekioskAdminUserGroupControllerRessourcesNumeriquesTest extends Admin_Abst
 class LekioskBatchIndexTest extends Admin_AbstractControllerTestCase {
   protected $_storm_default_to_volatile = true;
 
-
-  public function setUp() {
-    parent::setUp();
+  /** @test */
+  public function whenActiveLekioskBatchShouldBePresent() {
     LekioskAdminVars::activate();
-    $this->dispatch('/admin/batch/add', true);
+    $this->dispatch('/admin/batch', true);
+    $this->assertXPathContentContains('//td',
+                                      'Moissonner catalogue Lekiosk');
   }
 
 
   /** @test */
-  public function lekioskBatchShouldBePresent() {
-    $this->assertXPathContentContains('//form//select//option[@value="Lekiosk_Batch"]',
-                                      'Moissonner catalogue Lekiosk');
+  public function whenNotActiveLekioskBatchShouldNotBePresent() {
+    LekioskAdminVars::deactivate();
+    $this->dispatch('/admin/batch', true);
+    $this->assertNotXPathContentContains('//td',
+                                         'Moissonner catalogue Lekiosk');
   }
 }
 
diff --git a/library/startup.php b/library/startup.php
index 92189ffaa4b78bf401c888d88e7f3d83c163118c..ed394d25bdc32747ad56e9fb5d4173a1563815c4 100644
--- a/library/startup.php
+++ b/library/startup.php
@@ -81,8 +81,8 @@ class Bokeh_Engine {
 
 
   function setupConstants() {
-    defineConstant('BOKEH_MAJOR_VERSION','7.9');
-    defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.36');
+    defineConstant('BOKEH_MAJOR_VERSION','7.10');
+    defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.0');
 
     defineConstant('BOKEH_REMOTE_FILES', 'http://git.afi-sa.fr/afi/opacce/');
 
diff --git a/library/translation/en.mo b/library/translation/en.mo
index 42b62e770577f0ecc501c20a5452790a3138b6f2..dd154e88b69ebbd73b91c8ca4c78726331294ef2 100644
Binary files a/library/translation/en.mo and b/library/translation/en.mo differ
diff --git a/library/translation/en.po b/library/translation/en.po
index e84320ab3a3f27da141469b8ecc6caedabfd2e25..7f5e9acd0659f479506cb13cb0e18ccb5ed1b5d5 100644
--- a/library/translation/en.po
+++ b/library/translation/en.po
@@ -16,8 +16,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Bokeh master\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-19 16:23+0200\n"
-"PO-Revision-Date: 2017-06-19 14:45+0000\n"
+"POT-Creation-Date: 2017-09-11 11:54+0200\n"
+"PO-Revision-Date: 2017-09-11 10:32+0000\n"
 "Last-Translator: Weblate Admin <admin@example.com>\n"
 "Language-Team: English <http://weblate.afi-sa.net/projects/bokeh/bokeh-"
 "master/en/>\n"
@@ -58,6 +58,8 @@ msgstr " Edit my profile"
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:181
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:176
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:201
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208
 msgid " OU "
 msgstr " OR "
 
@@ -78,6 +80,7 @@ msgid " aux lettres d'information: "
 msgstr " to newsletters: "
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid " avec l'adresse suivante: "
 msgstr " with this email: "
 
@@ -149,14 +152,17 @@ msgid " ou "
 msgstr " or "
 
 #: ../../application/modules/opac/controllers/AbonneController.php:542
+#: ../../application/modules/opac/controllers/AbonneController.php:541
 msgid " par E-Mail"
 msgstr " by e-mail"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:543
+#: ../../application/modules/opac/controllers/AbonneController.php:542
 msgid " par SMS"
 msgstr " by SMS"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:541
+#: ../../application/modules/opac/controllers/AbonneController.php:540
 msgid " par courrier postal"
 msgstr " by mail"
 
@@ -500,6 +506,7 @@ msgstr "(Max quota for new arrivals)"
 #: ../../application/modules/admin/controllers/BibController.php:258
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:205
+#: ../../application/modules/admin/controllers/BibController.php:206
 msgid "** nouveau plan **"
 msgstr "** new map **"
 
@@ -544,6 +551,7 @@ msgstr "** new info **"
 #: ../../application/modules/admin/controllers/BibController.php:150
 #: ../../application/modules/admin/controllers/BibController.php:148
 #: ../../application/modules/admin/controllers/BibController.php:97
+#: ../../application/modules/admin/controllers/BibController.php:98
 msgid "** nouvelle localisation **"
 msgstr "** new position **"
 
@@ -630,6 +638,7 @@ msgid "1 notice trouvée"
 msgstr "1 record found"
 
 #: ../../library/Class/Cosmogramme/Generator.php:194
+#: ../../library/Class/Cosmogramme/Generator.php:193
 msgid "2 - Création des annexes"
 msgstr "2 - Creation of annexes"
 
@@ -644,6 +653,7 @@ msgid ""
 msgstr "3  (only home) - 2 (replaced by content) - 1 (always visible)"
 
 #: ../../library/Class/Cosmogramme/Generator.php:204
+#: ../../library/Class/Cosmogramme/Generator.php:203
 msgid "3 - Programmation des intégrations"
 msgstr "3 - Scheduling of integrations"
 
@@ -668,10 +678,12 @@ msgid "6 mois"
 msgstr "6 months"
 
 #: ../../library/Class/Cosmogramme/Generator.php:250
+#: ../../library/Class/Cosmogramme/Generator.php:249
 msgid "7 - Création des classes Dewey"
 msgstr "7 - Creation of Dewey classes"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:87
+#: ../../application/modules/opac/views/scripts/head.phtml:86
 #, php-format
 msgid ""
 "<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\" "
@@ -685,9 +697,14 @@ msgid "A"
 msgstr "A"
 
 #: ../../library/Class/Indexation/PseudoNotice.php:141
+#: ../../library/Class/Indexation/PseudoNotice.php:143
 msgid "A consulter sur le portail"
 msgstr "Visible on the portal"
 
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:30
+msgid "A créé des paniers"
+msgstr "Has made selections"
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:186
 msgid "A côté de la liste"
 msgstr "Near the list"
@@ -701,6 +718,10 @@ msgstr "Headlines"
 msgid "A quoi servent les cookies émis sur notre site ?"
 msgstr "What are cookies for ?"
 
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:30
+msgid "A rédigé des avis"
+msgstr "Has given ratings"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:109
 msgid "A savoir"
 msgstr "To know"
@@ -721,6 +742,10 @@ msgstr "API used for static maps"
 msgid "ASCII DOS"
 msgstr "ASCII DOS"
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:6
+msgid "ATTENTION : Ceci effacera le contenu actuel de l'article."
+msgstr "ATTENTION: This will erase current article content."
+
 #: ../../library/ZendAfi/Form/Admin/User.php:249
 msgid "Abonnement"
 msgstr "Subscription"
@@ -747,10 +772,12 @@ msgid "Abonnement aux lettres d'information"
 msgstr "Newsletter subscriptions"
 
 #: ../../library/Class/User/SearchCriteria.php:182
+#: ../../library/Class/User/SearchCriteria.php:185
 msgid "Abonnement valide"
 msgstr "Subscription valid"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
 msgid "Abonné SIGB"
 msgstr "ILS borrower"
 
@@ -759,6 +786,7 @@ msgid "Abonné non trouvé"
 msgstr "Patron not found"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:233
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
 msgid "Abonné portail"
 msgstr "Portal subscriber"
 
@@ -819,6 +847,7 @@ msgstr "Validated"
 #: ../../library/Class/MoteurRecherche.php:604
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
+#: ../../library/Class/MoteurRecherche.php:608
 msgid "Accueil"
 msgstr "Home"
 
@@ -831,10 +860,12 @@ msgid "Accès"
 msgstr "Access"
 
 #: ../../application/modules/opac/views/scripts/footer.phtml:8
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:224
 msgid "Accès pro."
 msgstr "Admin access."
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
 msgid "Accès à Cosmogramme"
 msgstr "Open Cosmogramme"
 
@@ -869,11 +900,13 @@ msgstr "Access to the selection %s"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:191
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
 msgid "Accéder aux articles dans l'interface d'administration"
 msgstr "Access to articles in back office"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:199
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 msgid "Accéder aux domaines dans l'interface d'administration"
 msgstr "Access domains in back office"
 
@@ -887,6 +920,7 @@ msgstr "Access to the professional space"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:228
 msgid "Accéder à l'interface d'administration"
 msgstr "Access back office"
 
@@ -918,6 +952,8 @@ msgstr "Action"
 
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:37
 #: ../../library/Class/TableDescription.php:206
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:12
+#: ../../library/Class/TableDescription.php:222
 msgid "Actions"
 msgstr "Actions"
 
@@ -975,6 +1011,10 @@ msgstr "Enable responsive design"
 msgid "Activer la redirection vers la liste d'articles"
 msgstr "Allow articles list redirect"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37
+msgid "Activer la tâche"
+msgstr "Enable this task"
+
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293
@@ -990,6 +1030,7 @@ msgstr "Enable accessibility tools"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:126
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:130
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #, php-format
 msgid "Activer ou désactiver : %s"
 msgstr "Enable or disable : %s"
@@ -1056,20 +1097,24 @@ msgid "Actuellement"
 msgstr "Live"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
 msgid "Administrateur bibliothèque"
 msgstr "Library administrator"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240
 msgid "Administrateur portail"
 msgstr "Portal administrator"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:392
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:32
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:36
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:406
 msgid "Administration"
 msgstr "Administration"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121
 msgid "Administration du portail"
 msgstr "Portal administration"
 
@@ -1123,6 +1168,8 @@ msgstr "Administer the AFI-Multimedia Server"
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:51
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:95
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
+#: ../../application/modules/admin/controllers/LieuController.php:33
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
 msgid "Adresse"
 msgstr "Enable accessibility tools"
 
@@ -1172,6 +1219,7 @@ msgstr "Orthodidacte server address"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 msgid "Adresse mail"
 msgstr "Email"
 
@@ -1190,6 +1238,7 @@ msgstr "Web adress"
 #: ../../library/ZendAfi/Form/Configuration/Profile/Page.php:68
 #: ../../library/ZendAfi/View/Helper/Search/Display.php:27
 #: ../../library/ZendAfi/Form.php:237
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:363
 msgid "Affichage"
 msgstr "Display"
 
@@ -1227,6 +1276,7 @@ msgstr "Thumbnail"
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:66
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:69
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:71
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:23
 msgid "Afficher"
 msgstr "Display"
 
@@ -1284,6 +1334,7 @@ msgid "Afficher la carte"
 msgstr "Display map"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:85
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:88
 msgid "Afficher la carte interactive"
 msgstr "Display map"
 
@@ -1351,6 +1402,7 @@ msgstr "Display user's favorites"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:86
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:135
 msgid "Afficher les icones d'administration"
 msgstr "Display administration icons"
 
@@ -1410,6 +1462,7 @@ msgid "Afficher toutes les éditions de ce document"
 msgstr "Show all editions of this document"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:103
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:107
 msgid "Afficher un nouveau domaine"
 msgstr "Display a new domain"
 
@@ -1447,6 +1500,13 @@ msgstr "Refine by my favorites..."
 msgid "Affiner le résultat par %s: %s"
 msgstr "Refine results by %s : %s"
 
+#: ../../library/ZendAfi/View/Helper/TagPreRegistration.php:29
+#, php-format
+msgid ""
+"Afin de finaliser votre inscription, merci de vous rendre dans votre "
+"médiathèque : %s"
+msgstr "Please go to your library: %s to validate your subscription"
+
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:87
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:92
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:118
@@ -1459,6 +1519,7 @@ msgstr "Refine results by %s : %s"
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:66
 #: ../../library/ZendAfi/Form/Admin/News.php:80
 #: ../../library/ZendAfi/Form/Admin/News.php:75
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:70
 msgid "Agenda"
 msgstr "Calendar"
 
@@ -1494,6 +1555,10 @@ msgstr "Help"
 msgid "Ajout de domaine"
 msgstr "Add a domain"
 
+#: ../../library/ZendAfi/View/Helper/RenderWidgetTemplates.php:28
+msgid "Ajout en cours"
+msgstr "Action in progress"
+
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:30
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:49
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:67
@@ -1566,6 +1631,7 @@ msgid "Ajouter un agenda"
 msgstr "Add a calendar"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:685
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:684
 msgid "Ajouter un album"
 msgstr "Add an album"
 
@@ -1643,6 +1709,7 @@ msgstr "Add a plan"
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:254
 #: ../../application/modules/admin/controllers/BibController.php:203
+#: ../../application/modules/admin/controllers/BibController.php:204
 #, php-format
 msgid "Ajouter un plan de la bibliothèque: %s"
 msgstr "Add a map of the library: %s"
@@ -1707,13 +1774,24 @@ msgstr "Add a library"
 msgid "Ajouter une boite"
 msgstr "Add a widget"
 
+#: ../../application/modules/admin/controllers/WidgetController.php:180
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:119
+msgid "Ajouter une boîte"
+msgstr "Add a widget"
+
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:110
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:147
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:151
 msgid "Ajouter une boîte en-dessous"
 msgstr "Add a widget below"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:124
+msgid "Ajouter une boîte à cette page"
+msgstr "Add a widget to this page"
+
 #: ../../application/modules/opac/views/scripts/abonne/cards.phtml:44
 #: ../../application/modules/opac/controllers/AbonneController.php:1108
+#: ../../application/modules/opac/controllers/AbonneController.php:1107
 msgid "Ajouter une carte"
 msgstr "Add a card"
 
@@ -1728,6 +1806,7 @@ msgstr "Add a card"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:541
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:544
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:669
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:668
 msgid "Ajouter une catégorie"
 msgstr "Add a category"
 
@@ -1744,14 +1823,17 @@ msgid "Ajouter une collection"
 msgstr "Add a collection"
 
 #: ../../application/modules/admin/views/scripts/bib/localisations.phtml:6
+#: ../../application/modules/admin/views/scripts/bib/localisations.phtml:8
 msgid "Ajouter une localisation"
 msgstr "Add a location"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:7
 msgid "Ajouter une plage d'ouverture"
 msgstr "Add open hours"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:6
 msgid "Ajouter une plage horaire de réservation multimedia"
 msgstr "Add a multimedia opening range"
 
@@ -1768,6 +1850,7 @@ msgstr "Add a session"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:528
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Sitotheque.php:169
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:678
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:677
 msgid "Ajouter une sous-catégorie"
 msgstr "Add a subcategory"
 
@@ -1785,15 +1868,19 @@ msgstr "Add to Favorites"
 #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:46
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49
+#: ../../application/modules/admin/controllers/HarvestController.php:128
+#: ../../application/modules/admin/controllers/HarvestController.php:185
 msgid "Album"
 msgstr "Album"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:155
+#: ../../application/modules/admin/controllers/HarvestController.php:133
 #, php-format
 msgid "Album \"%s\" importé de Jamendo"
 msgstr "Album \"%s\" imported from Jamendo"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:212
+#: ../../application/modules/admin/controllers/HarvestController.php:190
 #, php-format
 msgid "Album \"%s\" importé de SoundCloud"
 msgstr "Album \"%s\" imported from Jamendo"
@@ -1835,6 +1922,7 @@ msgstr "Random"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:267
 msgid "Amber IDE"
 msgstr "Amber IDE"
 
@@ -2050,6 +2138,20 @@ msgstr "Article \"%s\" saved"
 msgid "Article \"%s\" supprimé"
 msgstr "Article \"%s\" deleted"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:17
+msgid "Article lié"
+msgstr "Linked article"
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:249
+#, php-format
+msgid "Article lié à \"%s\""
+msgstr "Article linked to \"%s\""
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:262
+#, php-format
+msgid "Article lié à \"%s\" regénéré."
+msgstr "Article linked to \"%s\" regenerated."
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:102
 msgid "Article supprimé"
 msgstr "Article deleted"
@@ -2065,6 +2167,7 @@ msgstr "Category"
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:58
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 msgid "Articles"
 msgstr "Articles"
 
@@ -2115,13 +2218,15 @@ msgstr "To profil(s)"
 msgid "Au(x) type(s) de document"
 msgstr "To doc type(s)"
 
-#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50
+#: ../../library/Class/ModeleFusion.php:75
+#: ../../library/Class/Ouverture.php:50
 #: ../../library/ZendAfi/Form/Album.php:235
 #: ../../library/ZendAfi/Form/Admin/News.php:243
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:53
 #: ../../library/ZendAfi/Form/Admin/Library.php:263
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
 msgid "Aucun"
 msgstr "No"
 
@@ -2159,6 +2264,7 @@ msgstr "No content"
 
 #: ../../application/modules/admin/controllers/ModoController.php:829
 #: ../../application/modules/opac/controllers/AbonneController.php:941
+#: ../../application/modules/opac/controllers/AbonneController.php:940
 msgid "Aucun courriel envoyé, erreur: "
 msgstr "No email sent, error: "
 
@@ -2218,6 +2324,7 @@ msgid "Aucun répertoire fourni"
 msgstr "No directory done"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:290
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:297
 msgid "Aucun résultat"
 msgstr "No result"
 
@@ -2228,6 +2335,7 @@ msgstr "No match in my favorites"
 #: ../../library/Class/NoticeOAI.php:248
 #: ../../library/Class/MoteurRecherche.php:478
 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67
+#: ../../library/Class/MoteurRecherche.php:482
 msgid "Aucun résultat trouvé"
 msgstr "No results"
 
@@ -2241,6 +2349,9 @@ msgstr "No summary"
 #: ../../library/ZendAfi/View/Helper/ComboCategories.php:45
 #: ../../library/ZendAfi/View/Helper/GetSendProgressJsonFor.php:29
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:30
+#: ../../library/Class/Repeat/WeekDays.php:80
+#: ../../library/Class/Batch/Definition.php:68
+#: ../../library/Class/Batch/Definition.php:71
 msgid "Aucune"
 msgstr "None"
 
@@ -2278,6 +2389,7 @@ msgstr "No location data found for this item"
 #: ../../application/modules/opac/controllers/RssController.php:252
 #: ../../application/modules/opac/controllers/RssController.php:248
 #: ../../application/modules/opac/controllers/RssController.php:249
+#: ../../application/modules/opac/controllers/RssController.php:235
 msgid "Aucune donnée à modérer"
 msgstr "No data to moderate"
 
@@ -2424,6 +2536,7 @@ msgstr "No video found"
 #: ../../library/Class/CriteresRecherche.php:141
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:22
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:35
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 msgid "Auteur"
 msgstr "Author"
 
@@ -2464,6 +2577,10 @@ msgstr "Author: {author_name}"
 msgid "Auteur : {notice.auteur_principal}"
 msgstr "Author: {notice.auteur_principal}"
 
+#: ../../application/modules/opac/controllers/BlogController.php:48
+msgid "Auteur introuvable"
+msgstr "Unknown author"
+
 #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:48
 msgid "Auteur principal"
 msgstr "Main author"
@@ -2548,6 +2665,7 @@ msgid "Avenio"
 msgstr "Avenio"
 
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:2
+#: ../../application/modules/opac/controllers/BlogController.php:51
 msgid "Avis"
 msgstr "Review"
 
@@ -2641,6 +2759,7 @@ msgstr "Teaser"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:370
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:113
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:383
 msgid "Banniere"
 msgstr "Header"
 
@@ -2691,6 +2810,7 @@ msgid "Basculer automatiquement sur le profil"
 msgstr "Switch automatically to profile"
 
 #: ../../library/Class/Systeme/Report.php:76
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:6
 msgid "Base de données"
 msgstr "Database"
 
@@ -2699,6 +2819,7 @@ msgid "Base de données : "
 msgstr "Database : "
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141
 msgid "Batchs"
 msgstr "Batches"
 
@@ -2819,6 +2940,8 @@ msgstr "Bib"
 #: ../../library/Class/User/SearchCriteria.php:133
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:30
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:309
+#: ../../library/Class/User/SearchCriteria.php:136
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:98
 msgid "Bibliothèque"
 msgstr "Library"
 
@@ -2842,6 +2965,7 @@ msgid "Bibliothèque de destination"
 msgstr "destination library"
 
 #: ../../library/ZendAfi/Form/Register.php:165
+#: ../../library/ZendAfi/Form/Register.php:167
 msgid "Bibliothèque de rattachement"
 msgstr "Library membership"
 
@@ -2861,14 +2985,17 @@ msgstr "Librarie(s)"
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:90
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
 msgid "Bibliothèques"
 msgstr "Libraries"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:34
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:37
 msgid "Bibliothèques affichées"
 msgstr "Libraries displayed"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:38
 msgid "Bibliothèques disponibles"
 msgstr "Libraries available"
 
@@ -2877,6 +3004,7 @@ msgid "Bibliothèques favorites"
 msgstr "Bookmarked libraries"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:32
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
 msgid "Bibliothèques à afficher"
 msgstr "Library to display"
 
@@ -2906,10 +3034,12 @@ msgid "Biographie de l'auteur"
 msgstr "Author biography"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:79
+#: ../../application/modules/opac/views/scripts/head.phtml:78
 msgid "Blanc sur noir"
 msgstr "White on Black"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:85
+#: ../../application/modules/opac/views/scripts/head.phtml:84
 msgid "Bleu sur jaune"
 msgstr "Blue on yellow"
 
@@ -3188,11 +3318,13 @@ msgid "CSV avec séparateur : virgule"
 msgstr "CSV with separtor : comma"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
 msgid "Cache des images"
 msgstr "Image cache"
 
 #: ../../application/modules/admin/views/scripts/activity/_activity_actions.phtml:11
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:21
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:30
 msgid "Cacher"
 msgstr "Hide"
 
@@ -3230,15 +3362,18 @@ msgstr "Vertical carousel"
 #: ../../library/ZendAfi/View/Helper/BibView.php:166
 #: ../../application/modules/opac/controllers/AbonneController.php:1121
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:14
+#: ../../application/modules/opac/controllers/AbonneController.php:1120
 msgid "Carte"
 msgstr "Map"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1150
+#: ../../application/modules/opac/controllers/AbonneController.php:1149
 #, php-format
 msgid "Carte de \"%s\" ajoutée"
 msgstr "Card of \"%s\"  added"
 
 #: ../../application/modules/opac/controllers/BibController.php:256
+#: ../../application/modules/opac/controllers/BibController.php:241
 msgid "Carte des bibliothèques"
 msgstr "Libraries map"
 
@@ -3247,6 +3382,7 @@ msgid "Carte des zones"
 msgstr "Zone map"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1097
+#: ../../application/modules/opac/controllers/AbonneController.php:1096
 msgid "Carte introuvable"
 msgstr "Unknown card"
 
@@ -3267,14 +3403,17 @@ msgid "Catalogue"
 msgstr "Catalog"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169
 msgid "Catalogues"
 msgstr "Catalogs"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
 msgid "Catalogues OPDS"
 msgstr "index OPDS"
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:41
 msgid "Categorie"
 msgstr "Category"
 
@@ -3349,6 +3488,7 @@ msgid "Catégorie parente"
 msgstr "Parent category"
 
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:44
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:48
 msgid "Catégorie racine"
 msgstr "Root category"
 
@@ -3374,6 +3514,7 @@ msgid "Cause"
 msgstr "Cause"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:756
+#: ../../application/modules/opac/controllers/AbonneController.php:755
 msgid "Ce créneau n'est pas dans les heures d'ouverture."
 msgstr "This niche is not in hours."
 
@@ -3440,6 +3581,7 @@ msgid "Cet identifiant existe déjà."
 msgstr "This identifier already exists."
 
 #: ../../application/modules/opac/controllers/AuthController.php:498
+#: ../../application/modules/opac/controllers/AuthController.php:501
 msgid "Cette fonctionnalité n'est pas activée."
 msgstr "This feature is not enabled."
 
@@ -3524,6 +3666,7 @@ msgid "Champs"
 msgstr "Fields"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:61
 msgid "Champs affichées"
 msgstr "Fields to display"
 
@@ -3533,6 +3676,7 @@ msgstr "Fields in file"
 
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:85
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:59
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:62
 msgid "Champs disponibles"
 msgstr "Available fields"
 
@@ -3555,6 +3699,7 @@ msgstr "Optionnal fields"
 #: ../../library/ZendAfi/View/Helper/Admin/TagCustomFields.php:31
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomFieldMeta.php:35
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomField.php:38
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:161
 msgid "Champs personnalisés"
 msgstr "Custom fields"
 
@@ -3571,6 +3716,7 @@ msgstr "Url field"
 #: ../../library/ZendAfi/Form/Configuration/Record.php:33
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:128
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:55
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
 msgid "Champs à afficher"
 msgstr "Fields to display"
 
@@ -3612,10 +3758,12 @@ msgid "Chercher dans les bibliothèques de votre choix"
 msgstr "Search in libraries of your choice"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:782
+#: ../../application/modules/opac/controllers/AbonneController.php:781
 msgid "Choisir"
 msgstr "Choose"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:136
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:145
 msgid "Choisir un autre domaine"
 msgstr "Choose another domain"
 
@@ -3639,6 +3787,7 @@ msgid "Choisissez les dossiers à afficher"
 msgstr "Select folders to display"
 
 #: ../../library/ZendAfi/Form/Album.php:147
+#: ../../application/modules/admin/controllers/AlbumController.php:162
 msgid "Choisissez une catégorie"
 msgstr "Choose a category"
 
@@ -3647,6 +3796,7 @@ msgid "Choisissez votre bibliothèque"
 msgstr "Choose your library"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:66
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:70
 msgid "Choix de la bibliothèque"
 msgstr "Library selection"
 
@@ -3828,10 +3978,12 @@ msgstr "Library code"
 #: ../../library/ZendAfi/Form/ContactForm.php:78
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:56
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:83
+#: ../../application/modules/admin/controllers/LieuController.php:35
 msgid "Code postal"
 msgstr "ZIP code"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
+#: ../../application/modules/admin/views/scripts/index/index.phtml:82
 msgid "Code source"
 msgstr "Source code"
 
@@ -3853,6 +4005,7 @@ msgstr "Collation"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:47
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:44
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58
 msgid "Collection"
 msgstr "Collections"
 
@@ -3878,6 +4031,7 @@ msgstr "Begins the"
 
 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:91
 #: ../../library/ZendAfi/Form/Search/Advanced.php:35
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:191
 msgid "Commence par"
 msgstr "Begins with"
 
@@ -3936,6 +4090,7 @@ msgid "Complet: maximum de personnes inscrites"
 msgstr "Complete: maximum subscribers reached"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1215
+#: ../../application/modules/opac/controllers/AbonneController.php:1214
 msgid "Compléter votre adresse  email"
 msgstr "Please fill in your email"
 
@@ -3965,6 +4120,10 @@ msgstr "Support access account"
 msgid "Compte d'assistance: %s"
 msgstr "Hotline user: %s"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121
+msgid "Compte-rendu"
+msgstr "Report"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:187
 msgid "Conditions inscription"
 msgstr "Registration conditions"
@@ -3993,10 +4152,15 @@ msgid "Configuration PNB Dilicom"
 msgstr "Dilicom PNB config"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:301
+#: ../../application/modules/admin/controllers/ModulesController.php:300
 #, php-format
 msgid "Configuration de l'affichage du type %s"
 msgstr "Set display settings of type %s"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:105
+msgid "Configuration de la page"
+msgstr "Page settings"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:204
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:208
 msgid "Configuration de la page courante"
@@ -4004,6 +4168,7 @@ msgstr "Current page settings"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:334
 #: ../../application/modules/admin/controllers/ProfilController.php:341
+#: ../../application/modules/admin/controllers/ProfilController.php:366
 #, php-format
 msgid "Configuration de la page: %s"
 msgstr "Page settings: %s"
@@ -4019,6 +4184,7 @@ msgstr "Fields settings for subscribers file"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:477
 #: ../../application/modules/admin/controllers/ProfilController.php:492
+#: ../../application/modules/admin/controllers/ProfilController.php:522
 msgid "Configuration des pages appliquée à tous les autres profils."
 msgstr "Configuration pages applied to all other profiles."
 
@@ -4026,11 +4192,21 @@ msgstr "Configuration pages applied to all other profiles."
 msgid "Configuration du compte Redmine"
 msgstr "Redmine account settings"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:91
+msgid "Configuration du profil"
+msgstr "Profile settings"
+
 #: ../../application/modules/admin/controllers/ModulesController.php:287
+#: ../../application/modules/admin/controllers/ModulesController.php:286
 msgid "Configuration du résultat de recherche"
 msgstr "Search result configuration"
 
+#: ../../application/modules/admin/controllers/BibController.php:437
+msgid "Configuration introuvable"
+msgstr "Unknown configuration"
+
 #: ../../application/modules/admin/controllers/ModulesController.php:464
+#: ../../application/modules/admin/controllers/ModulesController.php:463
 msgid "Configuration sauvegardée"
 msgstr "Settings saved"
 
@@ -4039,13 +4215,22 @@ msgstr "Settings saved"
 msgid "Configuration: colonne %s requise"
 msgstr "Config: %s column is required"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:110
+msgid "Configurer la page "
+msgstr "Configure page "
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:209
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:213
 msgid "Configurer la page courante dans l'interface d'administration"
 msgstr "Edit current page in back office"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:96
+msgid "Configurer le profil "
+msgstr "Configure profile "
+
 #: ../../application/modules/opac/controllers/AbonneController.php:872
 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:2
+#: ../../application/modules/opac/controllers/AbonneController.php:871
 msgid "Confirmation"
 msgstr "Confirm"
 
@@ -4055,6 +4240,7 @@ msgid "Confirmation d'inscription à l'activité \"%s\""
 msgstr "\"%s\" activity subscription confirmation"
 
 #: ../../application/modules/opac/controllers/AuthController.php:462
+#: ../../application/modules/opac/controllers/AuthController.php:465
 msgid "Confirmation d'inscription à la newsletter: "
 msgstr "Newsletter subscription validation: "
 
@@ -4126,13 +4312,19 @@ msgstr "Connection"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:211
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:215
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:246
 msgid "Console d'administration"
 msgstr "Administration console"
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:26
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:24
 msgid "Constitution du cache"
 msgstr "Generate cache"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:31
+msgid "Constitution du cache en cours..."
+msgstr "Cache rebuild in progress..."
+
 #: ../../application/modules/admin/controllers/BibController.php:566
 #: ../../application/modules/admin/controllers/BibController.php:574
 #: ../../application/modules/admin/controllers/BibController.php:593
@@ -4183,6 +4375,7 @@ msgstr "Contact : "
 #: ../../library/ZendAfi/Form/ModeleFusion.php:59
 #: ../../library/ZendAfi/Form/SendMail.php:46
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:122
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:117
 msgid "Contenu"
 msgstr "Content"
 
@@ -4228,6 +4421,10 @@ msgstr ""
 "Content of the validation email. Use keywords: TITRE_ARTICLE, URL_ARTICLE, "
 "AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:13
+msgid "Contenu de la bibliothèque:"
+msgstr "Library content:"
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:50
 msgid "Contenu du sommaire"
 msgstr "Contents of the summary"
@@ -4237,12 +4434,14 @@ msgid "Contenu texte:"
 msgstr "Text content:"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:1
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:2
 msgid "Contenus liés à l'article"
 msgstr "Content related to Article"
 
 #: ../../library/Class/Codification.php:234
 #: ../../library/ZendAfi/Form/Search/Advanced.php:34
 #: ../../library/Class/Codification.php:235
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:192
 msgid "Contient"
 msgstr "Contains"
 
@@ -4251,6 +4450,8 @@ msgid "Contracteur du PNB Dilicom"
 msgstr "Dilicom PBN contractor"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:41
+#: ../../application/modules/admin/controllers/SystemeController.php:52
+#: ../../application/modules/admin/controllers/SystemeController.php:57
 msgid "Contrôle du cache des images"
 msgstr "Cache of covers control"
 
@@ -4269,6 +4470,7 @@ msgid "Coordonnées carte"
 msgstr "Map coordinates"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:226
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:233
 msgid "Copier le code suivant sur le site où vous voulez afficher le kiosque"
 msgstr "Copy the following code on the site where you want to display booth"
 
@@ -4386,6 +4588,10 @@ msgstr "Email sent to: "
 msgid "Cover flow"
 msgstr "Cover flow"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:85
+msgid "Coût"
+msgstr "Cost"
+
 #: ../../library/ZendAfi/Form/CreerPanier.php:35
 msgid "Creer le panier"
 msgstr "Create selection"
@@ -4414,6 +4620,7 @@ msgstr "%s reviews"
 #: ../../application/modules/opac/controllers/RssController.php:266
 #: ../../application/modules/opac/controllers/RssController.php:268
 #: ../../application/modules/opac/controllers/RssController.php:269
+#: ../../application/modules/opac/controllers/RssController.php:252
 #, php-format
 msgid "Critiques de la sélection: %s"
 msgstr "Reviews from selection: %s"
@@ -4455,6 +4662,7 @@ msgid "Critères généraux"
 msgstr "General criteria"
 
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:394
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:34
 msgid "Créateur"
 msgstr "Creator"
 
@@ -4570,6 +4778,7 @@ msgid "Date"
 msgstr "Date"
 
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:134
+#: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:135
 #, php-format
 msgid "Date : %s"
 msgstr "Date: %s"
@@ -4580,11 +4789,13 @@ msgid "Date d'emprunt"
 msgstr "Loan date"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:135
 msgid "Date d'expiration"
 msgstr "Expiration date"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:21
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:78
+#: ../../library/Class/TableDescription/PNBItems.php:32
 msgid "Date de commande"
 msgstr "Loan date"
 
@@ -4656,6 +4867,19 @@ msgstr "Last patron import date"
 msgid "Date du dernier vidage manuel du cache"
 msgstr "Last manual clear cache"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:41
+msgid "Date début"
+msgstr "Start date"
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:46
+msgid "Date fin"
+msgstr "End date"
+
+#: ../../library/Class/SessionActivity.php:460
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:50
+msgid "Date limite d'inscription"
+msgstr "Subscription limit date"
+
 #: ../../application/modules/opac/views/scripts/abonne/activities-registered.phtml:45
 #: ../../application/modules/opac/views/scripts/abonne/activities.phtml:38
 #, php-format
@@ -4688,10 +4912,12 @@ msgid "Demande #%s enregistrée"
 msgstr "Ticket #%s registered"
 
 #: ../../application/modules/opac/controllers/AuthController.php:400
+#: ../../application/modules/opac/controllers/AuthController.php:403
 msgid "Demande d'inscription à la lettre d'information: "
 msgstr "Subscription to the newsletter: "
 
 #: ../../application/modules/opac/controllers/AuthController.php:494
+#: ../../application/modules/opac/controllers/AuthController.php:497
 msgid "Demande de préinscription"
 msgstr "Preregistration request"
 
@@ -4783,6 +5009,7 @@ msgstr "Latest Articles"
 #: ../../application/modules/opac/controllers/RssController.php:99
 #: ../../application/modules/opac/controllers/RssController.php:118
 #: ../../application/modules/opac/controllers/RssController.php:113
+#: ../../application/modules/opac/controllers/RssController.php:104
 msgid "Derniers Fils RSS"
 msgstr "Latest Feeds"
 
@@ -4816,6 +5043,7 @@ msgid "Dernière distribution"
 msgstr "Last delivery"
 
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:18
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 msgid "Dernière exécution"
 msgstr "Last launch"
 
@@ -4947,6 +5175,7 @@ msgid "Discographie complète de"
 msgstr "Complete discography"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:58
+#: ../../application/modules/admin/views/scripts/index/index.phtml:86
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr "Chat live with the Bokeh community"
 
@@ -5062,6 +5291,7 @@ msgid "Domaine de recherche"
 msgstr "Search domain"
 
 #: ../../library/Class/MoteurRecherche.php:441
+#: ../../library/Class/MoteurRecherche.php:445
 msgid "Domaine non paramétré"
 msgstr "Unset domain"
 
@@ -5069,7 +5299,7 @@ msgstr "Unset domain"
 msgid "Domaine parent"
 msgstr "Parent domain"
 
-#: ../../library/Class/Album.php:1598
+#: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 msgid "Domaine public"
 msgstr "Public domain"
 
@@ -5084,6 +5314,10 @@ msgstr "Domain used by Lectura server for identification"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:59
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Domains.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
+#: ../../library/Class/Catalogue.php:1171
+#: ../../library/Class/Catalogue.php:1209
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:240
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:326
 msgid "Domaines"
 msgstr "Domains"
 
@@ -5113,11 +5347,14 @@ msgstr "Write or edit review"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:30
 #: ../../application/modules/admin/views/scripts/index/index.phtml:29
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/opac/controllers/RssController.php:219
 msgid "Données en attente de modération"
 msgstr "Data waiting for moderation"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:129
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:131
 msgid "Droite"
 msgstr "Right"
 
@@ -5180,9 +5417,14 @@ msgstr "Duplicate horizontal menu on all other profiles"
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:11
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-group.phtml:10
 #: ../../library/ZendAfi/Form/Album/Ressource.php:91
+#: ../../library/Class/SessionActivity.php:476
 msgid "Durée"
 msgstr "Duration"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:70
+msgid "Durée (h)"
+msgstr "Duration (h)"
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:76
 msgid "Durée (j)"
 msgstr "Duration (j)"
@@ -5192,6 +5434,7 @@ msgid "Durée de la session"
 msgstr "Session length"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:19
+#: ../../library/Class/TableDescription/PNBItems.php:30
 msgid "Durée de prêt en jours"
 msgstr "Loan duration in days"
 
@@ -5232,6 +5475,10 @@ msgstr "Declare a new place"
 msgid "Déconnexion"
 msgstr "Logout"
 
+#: ../../application/modules/admin/views/scripts/index/index.phtml:22
+msgid "Découvrir les nouveautés de la version 7.10"
+msgstr "Discover new features in 7.10 version"
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:36
 msgid "Défilement"
 msgstr "Scrolling"
@@ -5253,11 +5500,13 @@ msgid "Délai de transition pour le passage à une autre image en secondes"
 msgstr "Transition delay between images in seconds"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:4
+#: ../../application/modules/admin/views/scripts/index/index.phtml:32
 msgid "Démonstrations vidéos"
 msgstr "Video showcase"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:265
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:296
 msgid "Déplacement des boites"
 msgstr "Move widgets"
 
@@ -5278,6 +5527,10 @@ msgstr "Deactivate acquisitions suggestions"
 msgid "Désactiver l'auto-complétion"
 msgstr "Disable autocomplete"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
+msgid "Désactiver la tâche"
+msgstr "Disable this task"
+
 #: ../../library/Class/AdminVar.php:293
 msgid "Désactiver pour passer le site en maintenance"
 msgstr "Deactivate to put site offline"
@@ -5314,6 +5567,7 @@ msgid "Désinscription de l'activité \"%s\""
 msgstr "\"%s\" activity unsubscription"
 
 #: ../../application/modules/opac/controllers/AuthController.php:439
+#: ../../application/modules/opac/controllers/AuthController.php:442
 msgid "Désinscription de la lettre d'information: "
 msgstr "Newsletter unsubscribe: "
 
@@ -5357,6 +5611,7 @@ msgstr "Session details"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:248
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:279
 msgid "Développement"
 msgstr "Development"
 
@@ -5441,6 +5696,7 @@ msgstr "Failed to publish status report to %s (%s)"
 
 #: ../../application/modules/admin/controllers/WidgetController.php:157
 #: ../../application/modules/admin/controllers/WidgetController.php:200
+#: ../../application/modules/admin/controllers/WidgetController.php:227
 #, php-format
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr "Save process of %s has fail"
@@ -5477,6 +5733,7 @@ msgstr "Publisher:"
 #: ../../application/modules/opac/controllers/RechercheController.php:454
 #: ../../application/modules/opac/controllers/RechercheController.php:472
 #: ../../application/modules/opac/controllers/RechercheController.php:463
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159
 #, php-format
 msgid "Editeur : %s"
 msgstr "Publisher: %s"
@@ -5491,6 +5748,7 @@ msgstr "Editor: {notice.editeur}"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:95
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:99
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:144
 msgid "Editeur CSS"
 msgstr "CSS editor"
 
@@ -5509,6 +5767,14 @@ msgstr "Publisher"
 msgid "Edition"
 msgstr "Publishing"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:63
+msgid "Effectif maximum"
+msgstr "Maximum attendees"
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:56
+msgid "Effectif minimum"
+msgstr "Minimum attendees"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:40
 msgid "Effectuer un test d'envoi"
 msgstr "Send a test"
@@ -5523,6 +5789,7 @@ msgid "Elargir la recherche sur tous les mots"
 msgstr "Advanced search for all words"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:91
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
 msgid "Elargir la recherche à tous les sites"
 msgstr "Extend search to all sites"
 
@@ -5582,6 +5849,7 @@ msgstr "Sorry, your maximun of %s loans reached."
 
 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:289
 #: ../../library/ZendAfi/View/Helper/TagDilicomWidget.php:94
+#: ../../library/ZendAfi/View/Helper/Telephone/TagDilicomWidget.php:48
 msgid "Emprunter le livre au format EPUB"
 msgstr "Loan the ePub"
 
@@ -5610,16 +5878,19 @@ msgstr "Waiting since %s"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:87
 msgid "En bas"
 msgstr "Bottom"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
 msgid "En haut"
 msgstr "Top"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:88
 msgid "En haut et en bas"
 msgstr "Top and bottom"
 
@@ -5652,10 +5923,12 @@ msgstr "Sign up"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:60
+#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:77
 msgid "Enregistrer comme filtres par défaut"
 msgstr "Save as default filters"
 
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:45
 msgid "Enregistrer mes modifications"
 msgstr "Save modifications"
 
@@ -5668,6 +5941,7 @@ msgid "Entrepot"
 msgstr "Repository"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
 msgid "Entrepôts OAI"
 msgstr "OAI repositories"
 
@@ -5748,7 +6022,7 @@ msgstr "Cannot send: unknown newsletter"
 msgid "Envoi impossible : erreur à la création de la commande d'envoi"
 msgstr "Cannot send: error while creating sending command"
 
-#: ../../library/Class/Bib.php:321
+#: ../../library/Class/Bib.php:321 ../../library/Class/Bib.php:318
 msgid "Envoie des données"
 msgstr "Send data"
 
@@ -5762,6 +6036,7 @@ msgstr "Send newsletters"
 #: ../../library/ZendAfi/Form/ReponseFormulaireMail.php:52
 #: ../../library/ZendAfi/Form/SuggestionAchat.php:61
 #: ../../library/ZendAfi/Form/SendMail.php:53
+#: ../../application/modules/admin/controllers/SystemeController.php:292
 msgid "Envoyer"
 msgstr "Send"
 
@@ -5821,6 +6096,7 @@ msgstr "Sent the"
 #: ../../application/modules/opac/controllers/AbonneController.php:382
 #: ../../application/modules/opac/controllers/AbonneController.php:385
 #: ../../application/modules/opac/controllers/AbonneController.php:386
+#: ../../application/modules/opac/controllers/RssController.php:57
 msgid "Erreur"
 msgstr "Error"
 
@@ -5830,6 +6106,7 @@ msgid "Erreur : %s"
 msgstr "Error : %s"
 
 #: ../../application/modules/admin/controllers/IndexController.php:146
+#: ../../application/modules/admin/controllers/IndexController.php:156
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr "Error: The update request could not be sent to the server"
 
@@ -5876,6 +6153,7 @@ msgid "Erreur d'envoi: %s"
 msgstr "Sending error: %s"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:128
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:129
 msgid "Erreur de configuration"
 msgstr "Configuration error"
 
@@ -5883,6 +6161,10 @@ msgstr "Configuration error"
 msgid "Erreur de connexion"
 msgstr "Connexion error"
 
+#: ../../application/modules/admin/controllers/BibController.php:452
+msgid "Erreur de sauvegarde des filtres par défaut."
+msgstr "Error occured while saving default filters."
+
 #: ../../application/modules/admin/controllers/RedmineController.php:120
 msgid "Erreur lors de l'enregistrement"
 msgstr "Error, can't save"
@@ -5896,11 +6178,13 @@ msgid "Erreur lors de l'envoi"
 msgstr "Error while sending"
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:72
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:79
 #, php-format
 msgid "Erreur lors de l'execution du batch %s"
 msgstr "Error while executing batch %s"
 
 #: ../../application/modules/opac/controllers/AuthController.php:472
+#: ../../application/modules/opac/controllers/AuthController.php:475
 msgid "Erreur lors de l\\inscription à la newsletter."
 msgstr "Error during newsletter subscription."
 
@@ -5919,6 +6203,7 @@ msgid "Erreur(s) : %s"
 msgstr "Error : %s"
 
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:111
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr "Error(s) : %s, variable %s unsaved"
@@ -5945,10 +6230,12 @@ msgid "Etat de la communication"
 msgstr "Connection status"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:25
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Etat du site"
 msgstr "Website status"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:306
+#: ../../application/modules/admin/controllers/SystemeController.php:312
 msgid "Etat du système"
 msgstr "Sytem status"
 
@@ -5960,9 +6247,14 @@ msgstr "Extend search to documents containing any terms"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:95
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:172
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:170
 msgid "Etes vous sûr de vouloir supprimer cette réservation ?"
 msgstr "Are you sur to cancel this reservation ?"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
+msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
+msgstr "Are you sure to disable this task ?"
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:12
 msgid "Etes-vous sur de vouloir supprimer ce point ?"
 msgstr "Are you sure to delete this point ?"
@@ -5983,6 +6275,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette annexe ?"
 msgstr "Are you sure to delete this branch ?"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:706
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:705
 msgid "Etes-vous sûr de vouloir supprimer cette catégorie ?"
 msgstr "Are you sure to delete this category ?"
 
@@ -6025,6 +6318,7 @@ msgid "Expire le"
 msgstr "Expires on"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157
 msgid "Explorateur de fichiers"
 msgstr "File browser"
 
@@ -6032,6 +6326,10 @@ msgstr "File browser"
 msgid "Explorer le serveur"
 msgstr "Server Explorer"
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:4
+msgid "Export"
+msgstr "Export"
+
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:23
 msgid "Export CSV"
 msgstr "Export CSV"
@@ -6045,6 +6343,7 @@ msgid "Export unimarc"
 msgstr "Unimarc export"
 
 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:29
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:55
 msgid "Exporter"
 msgstr "Export"
 
@@ -6065,6 +6364,7 @@ msgid "Exporter en liste"
 msgstr "List export"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:14
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:8
 msgid "Exporter le tableau en CSV"
 msgstr "Export table in CSV"
 
@@ -6095,6 +6395,7 @@ msgid "Expéditeur:"
 msgstr "Sender:"
 
 #: ../../application/modules/admin/controllers/BatchController.php:39
+#: ../../application/modules/admin/controllers/BatchController.php:107
 #, php-format
 msgid "Exécution du traitement \"%s\""
 msgstr "Run the process \"%s\""
@@ -6167,6 +6468,7 @@ msgstr "Facilitate indexation of your site by search engines"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:226
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:230
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 msgid "Faire une demande de mise à jour de la charte graphique"
 msgstr "Ask update skin"
 
@@ -6284,6 +6586,7 @@ msgid "Filtrage des données"
 msgstr "Data filter"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:383
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:397
 msgid "Filtrage du contenu"
 msgstr "Data filter"
 
@@ -6350,6 +6653,7 @@ msgid "Filtres activés"
 msgstr "Filters activated"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:69
 msgid "Filtres affichées"
 msgstr "Activated filters"
 
@@ -6358,6 +6662,7 @@ msgstr "Activated filters"
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:35
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:89
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:37
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:70
 msgid "Filtres disponibles"
 msgstr "Filters available"
 
@@ -6366,6 +6671,7 @@ msgid "Filtres issus du domaine"
 msgstr "Filters from domain"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:63
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
 msgid "Filtres à afficher"
 msgstr "Filters to display"
 
@@ -6494,6 +6800,7 @@ msgstr "GLN (PNB Dilicom)"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:130
 msgid "Gauche"
 msgstr "Left"
 
@@ -6554,6 +6861,7 @@ msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr "City GLN, provided by Dilicom."
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:52
+#: ../../application/modules/admin/views/scripts/index/index.phtml:80
 msgid "Google group Bokeh"
 msgstr "Bokeh Google party"
 
@@ -6587,6 +6895,7 @@ msgstr "Group by library and shelf mark"
 
 #: ../../library/ZendAfi/Form/Admin/User.php:136
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
 msgid "Groupes"
 msgstr "Groups"
 
@@ -6607,6 +6916,8 @@ msgstr "General"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:155
+#: ../../application/modules/admin/controllers/SystemeController.php:140
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154
 msgid "Génération du site"
 msgstr "Site generation"
 
@@ -6635,6 +6946,11 @@ msgstr "Generated from the address"
 msgid "Généré le"
 msgstr "Generated at"
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#, php-format
+msgid "Généré pour la session d'activité %s"
+msgstr "Generated for activity session %s"
+
 #: ../../library/Class/AdminVar.php:134
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
@@ -6646,6 +6962,7 @@ msgid "Gérer les medias"
 msgstr "Manage media"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:641
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:640
 msgid "Gérer les médias"
 msgstr "Manage resources"
 
@@ -6655,6 +6972,7 @@ msgstr "Manage the link types"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1021
 #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33
+#: ../../application/modules/opac/controllers/AbonneController.php:1020
 msgid "Gérer mes favoris"
 msgstr "Manage my bookmarks"
 
@@ -6664,6 +6982,7 @@ msgstr "TOP"
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:83
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:82
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:81
 msgid "HTML"
 msgstr "HTML"
 
@@ -6728,6 +7047,7 @@ msgid "Hauteur du widget en pixels"
 msgstr "Widget height in pixels"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:67
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:214
 msgid "Hierarchie contient"
 msgstr "Hierarchie contains"
 
@@ -6743,6 +7063,7 @@ msgstr "Loan history"
 
 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129
 msgid "Historique des modifications"
 msgstr "Versions history"
 
@@ -6763,6 +7084,10 @@ msgstr "Schedules"
 #: ../../library/ZendAfi/View/Helper/BibView.php:179
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:104
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:868
+#: ../../library/Class/SessionActivity.php:469
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:75
 msgid "Horaires"
 msgstr "Hours"
 
@@ -6853,6 +7178,8 @@ msgstr "Origin id"
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:37
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:38
+#: ../../application/modules/admin/controllers/LieuController.php:31
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94
 msgid "Identifiant"
 msgstr "Login"
 
@@ -6881,6 +7208,7 @@ msgid "Identifiant du project Redmine"
 msgstr "Redmine ID"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1133
+#: ../../application/modules/opac/controllers/AbonneController.php:1132
 msgid "Identifiant et/ou mot de passe incorrect"
 msgstr "Wrong username and/or password"
 
@@ -6930,6 +7258,7 @@ msgid "Ignorer l'erreur et continuer"
 msgstr "Ignore error and continue"
 
 #: ../../library/Class/Cosmogramme/Generator.php:252
+#: ../../library/Class/Cosmogramme/Generator.php:251
 msgid "Ignoré en mode mise à jour"
 msgstr "Skip when running updates"
 
@@ -6956,15 +7285,15 @@ msgstr "It is possible to carry out the update of the base"
 msgid "Il faut compléter tous les champs."
 msgstr "Must complete all fields."
 
-#: ../../library/Class/Profil.php:1356
+#: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357
 msgid "Il manque la largeur de la division 1."
 msgstr "Width of division 1 is missing."
 
-#: ../../library/Class/Profil.php:1360
+#: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361
 msgid "Il manque la largeur de la division 2."
 msgstr "Width of division 2 is missing."
 
-#: ../../library/Class/Profil.php:1364
+#: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365
 msgid "Il manque la largeur de la division 3."
 msgstr "Width of division 3 is missing."
 
@@ -6974,6 +7303,7 @@ msgid "Il n'est pas possible de sélectionner plus de %d éléments"
 msgstr "Not possible to select more than %d items"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:122
+#: ../../application/modules/admin/controllers/SystemeController.php:128
 msgid "Il n'y a aucune donnée à importer."
 msgstr "There is no data to import."
 
@@ -6996,6 +7326,7 @@ msgstr "More than %s results"
 #: ../../application/modules/opac/controllers/RssController.php:197
 #: ../../application/modules/opac/controllers/RssController.php:216
 #: ../../application/modules/opac/controllers/RssController.php:212
+#: ../../application/modules/opac/controllers/RssController.php:203
 msgid "Il y a un problème avec l'adresse du flux RSS"
 msgstr "There is a problem with the RSS feed address"
 
@@ -7020,15 +7351,22 @@ msgstr "Background picture"
 msgid "Image par image"
 msgstr "Image by image"
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
+msgid "Import"
+msgstr "Import"
+
 #: ../../application/modules/admin/controllers/HarvestController.php:223
+#: ../../application/modules/admin/controllers/HarvestController.php:201
 msgid "Import SoundCloud"
 msgstr "SoundCloud import"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173
 msgid "Import Thesaurus"
 msgstr "Import Thesaurus"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151
 msgid "Import avis opac2"
 msgstr "Import review opac2"
 
@@ -7037,28 +7375,36 @@ msgid "Import d'articles TYPO3"
 msgstr "Typo3 article import"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:112
+#: ../../application/modules/admin/controllers/SystemeController.php:118
 msgid "Import des avis opac2"
 msgstr "Comments import from opac2"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:33
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:15
 msgid "Import des offres Dilicom/PNB"
 msgstr "Import PNB offers"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
 msgid "Import/Export EAD"
 msgstr "Import / Export EAD"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:196
+#: ../../application/modules/admin/controllers/SystemeController.php:202
 msgid "Importation d'un thesaurus"
 msgstr "Import a thesaurus"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:151
 #: ../../application/modules/admin/controllers/HarvestController.php:208
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:550
+#: ../../application/modules/admin/controllers/HarvestController.php:129
+#: ../../application/modules/admin/controllers/HarvestController.php:186
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
 msgid "Importer"
 msgstr "Import"
 
 #: ../../application/modules/admin/controllers/AlbumController.php:133
+#: ../../application/modules/admin/controllers/AlbumController.php:136
 msgid "Importer le fichier XML"
 msgstr "Import the XML file"
 
@@ -7093,6 +7439,7 @@ msgstr "Impossible to create local directory %s"
 #: ../../application/modules/opac/controllers/RssController.php:34
 #: ../../application/modules/opac/controllers/RssController.php:39
 #: ../../application/modules/opac/controllers/RssController.php:58
+#: ../../application/modules/opac/controllers/RssController.php:51
 msgid "Impossible de lire le flux rss"
 msgstr "Cannot read RSS feed"
 
@@ -7125,9 +7472,15 @@ msgid "Impossible de télécharger le fichier %s"
 msgstr "Impossible to download the file %s"
 
 #: ../../library/ZendAfi/View/Helper/TagPrintLink.php:28
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:49
 msgid "Imprimer"
 msgstr "Print"
 
+#: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20
+#, php-format
+msgid "Imprimer %s"
+msgstr "Print %s"
+
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8
 #: ../../library/Class/IntProfilDonnees.php:83
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42
@@ -7204,6 +7557,11 @@ msgstr "Index digital ressources"
 msgid "Indexer les titres de notice pour l'autocompletion"
 msgstr "Index titles of library records for autocompletion"
 
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:146
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:217
+msgid "Indice commence par"
+msgstr "Index begins with"
+
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:87
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:91
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:114
@@ -7221,6 +7579,8 @@ msgid "Indices dewey"
 msgstr "Dewey thesaurus"
 
 #: ../../library/Class/User/SearchCriteria/NewsletterSubscriptionStatus.php:41
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:33
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:33
 msgid "Indifférent"
 msgstr "Indifferent"
 
@@ -7255,6 +7615,7 @@ msgid "Information"
 msgstr "Information"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:85
 msgid "Information de contact"
 msgstr "Contact information"
 
@@ -7280,6 +7641,8 @@ msgstr "Document properties"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:263
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
+#: ../../application/modules/admin/controllers/SystemeController.php:269
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
 msgid "Informations système"
 msgstr "System properties"
 
@@ -7314,10 +7677,12 @@ msgid "Inscription non permise"
 msgstr "Subscription not allowed"
 
 #: ../../application/modules/opac/controllers/AuthController.php:383
+#: ../../application/modules/opac/controllers/AuthController.php:386
 msgid "Inscription à la lettre d'information: "
 msgstr "Subscription to the newsletter: "
 
 #: ../../application/modules/opac/controllers/AuthController.php:465
+#: ../../application/modules/opac/controllers/AuthController.php:468
 msgid "Inscription à la newsletter invalide."
 msgstr "Invalid subscription to the newsletter."
 
@@ -7379,6 +7744,8 @@ msgid "Intervalle 3 secondes."
 msgstr "3 seconds interval."
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:119
+#: ../../library/Class/SessionActivity.php:497
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:113
 msgid "Intervenants"
 msgstr "Speakers"
 
@@ -7393,11 +7760,12 @@ msgstr "Data integration : "
 msgid "Invalid type given, value should be a string"
 msgstr "Given such invalid, value shoulds be a string"
 
-#: ../../library/Class/Bib.php:319
+#: ../../library/Class/Bib.php:319 ../../library/Class/Bib.php:316
 msgid "Invisible"
 msgstr "Invisible"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:232
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
 msgid "Invité"
 msgstr "Guest"
 
@@ -7418,6 +7786,7 @@ msgid "J'utilise les cartes suivantes"
 msgstr "I use the following cards"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
 msgid "Jamendo"
 msgstr "Jamendo"
 
@@ -7465,6 +7834,7 @@ msgstr "Thursday"
 #: ../../application/modules/opac/controllers/AbonneController.php:868
 #: ../../library/ZendAfi/Form/Admin/Ouverture.php:44
 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:867
 msgid "Jour"
 msgstr "Day"
 
@@ -7513,6 +7883,7 @@ msgid ""
 msgstr "Site is temporarly down.<br/><br/> Try again later.."
 
 #: ../../library/ZendAfi/Controller/Action.php:45
+#: ../../library/ZendAfi/Controller/Action.php:53
 #, php-format
 msgid "L'action %s est déjà définie`"
 msgstr "%s action already defined`"
@@ -7528,6 +7899,7 @@ msgstr "Activity \"%s\" saved"
 #: ../../application/modules/opac/controllers/RssController.php:146
 #: ../../application/modules/opac/controllers/RssController.php:165
 #: ../../application/modules/opac/controllers/RssController.php:161
+#: ../../application/modules/opac/controllers/RssController.php:152
 msgid "L'adresse du flux RSS n'est plus valide."
 msgstr "The RSS feed address is no longer valid."
 
@@ -7585,11 +7957,13 @@ msgid "L'avis doit avoir une longueur comprise entre %d et %d caractères"
 msgstr "The review lenght must be between %d and %d characters"
 
 #: ../../library/Class/AvisNotice.php:396
+#: ../../library/Class/AvisNotice.php:400
 #, php-format
 msgid "L'avis doit avoir une longueur comprise entre %s et %s caractères"
 msgstr "The review must be between %s and %s caracters long"
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:101
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:103
 #, php-format
 msgid "L'exemplaire id_origine : %s / id_int_bib : %s n'a pas été trouvé."
 msgstr "Item with id_origine : %s and id_int_bib : %s not found."
@@ -7616,6 +7990,7 @@ msgstr "The username you chose already exists."
 #: ../../application/modules/admin/controllers/BibController.php:296
 #: ../../application/modules/admin/controllers/BibController.php:294
 #: ../../application/modules/admin/controllers/BibController.php:358
+#: ../../application/modules/admin/controllers/BibController.php:359
 msgid "L'image du plan est obligatoire."
 msgstr "The image plane is mandatory."
 
@@ -7712,6 +8087,7 @@ msgstr "Biography has beed updated"
 
 #: ../../application/modules/admin/controllers/WidgetController.php:86
 #: ../../application/modules/admin/controllers/WidgetController.php:117
+#: ../../application/modules/admin/controllers/WidgetController.php:143
 #, php-format
 msgid "La boite %s a été supprimée"
 msgstr "Widget %s  deleted"
@@ -7741,10 +8117,12 @@ msgid "La commande %s a échoué : %s"
 msgstr "Command %s failed : %s"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:434
+#: ../../application/modules/admin/controllers/ModulesController.php:433
 msgid "La configuration a été enregistrée"
 msgstr "Settings saved"
 
 #: ../../library/Class/Systeme/Widget/Menu.php:165
+#: ../../library/Class/Systeme/Widget/Menu.php:171
 #, php-format
 msgid "La configuration de l'entrée de menu %s a été sauvegardée"
 msgstr "Menu %s settings saved"
@@ -7755,19 +8133,21 @@ msgid "La configuration de la boite %s a été sauvegardée"
 msgstr "Widget %s settings saved"
 
 #: ../../library/Class/Systeme/Widget/Menu.php:163
+#: ../../library/Class/Systeme/Widget/Menu.php:169
 #, php-format
 msgid "La configuration du menu %s a été sauvegardée"
 msgstr "Menu %s settings saved"
 
-#: ../../library/Class/Profil.php:1384
+#: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385
 msgid "La couleur des liens du bandeau doit être au format #001122"
 msgstr "Header link color should be formatted as #001122"
 
-#: ../../library/Class/Profil.php:1380
+#: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381
 msgid "La couleur du texte bandeau doit être au format #001122"
 msgstr "Header text color should be formatted as #001122"
 
 #: ../../application/modules/admin/controllers/IndexController.php:145
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr "The update request has been sent to the server"
 
@@ -7776,7 +8156,7 @@ msgid ""
 "La gestion des permissions sera activée après la création de cette catégorie"
 msgstr "Permissions management will be available after this category creation"
 
-#: ../../library/Class/Profil.php:1345
+#: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346
 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels."
 msgstr "Site width should be between 800 and 2000 px."
 
@@ -7821,6 +8201,7 @@ msgid "La recherche s'effectue dans tout le réseau."
 msgstr "Search in all libraries."
 
 #: ../../library/Class/CodifThesaurus.php:472
+#: ../../library/Class/CodifThesaurus.php:506
 msgid "La règle n'est pas de la forme 686$a"
 msgstr "The rule is not unimarc 686%a compliant"
 
@@ -7844,13 +8225,19 @@ msgstr "Section \"%s\" has been successfully deleted"
 msgid "La session \"%s\" a été sauvegardée"
 msgstr "The session \"%s\" has been saved"
 
-#: ../../library/Class/Profil.php:1352
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:31
+#, php-format
+msgid "La session \"%s\" a été sauvegardée, son article lié a été créé."
+msgstr "The session \"%s\" has been saved, its linked article has been created."
+
+#: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353
 msgid ""
 "La somme des largeurs des divisions ne doit pas excéder la largeur du site."
 msgstr "Sum of divisions widths should not exceed site width."
 
 #: ../../library/Class/CriteresRecherche.php:450
 #: ../../library/Class/CriteresRecherche.php:454
+#: ../../library/Class/CriteresRecherche.php:476
 msgid "La sélection ne contient aucune notice"
 msgstr "The selection does not contain any record"
 
@@ -7858,6 +8245,11 @@ msgstr "The selection does not contain any record"
 msgid "La taille du fichier ne doit pas excéder "
 msgstr "File size must not exceed "
 
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:64
+#, php-format
+msgid "La tâche %s n'est pas plannifiée aujourd'hui"
+msgstr "Task %s is not planned for today"
+
 #: ../../library/Class/Cosmogramme/LandingDirectory.php:46
 msgid ""
 "La variable ftp_path est absente, incorrecte ou le dossier n'a pas été créé."
@@ -7879,6 +8271,8 @@ msgstr "The vignette has been transferred"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:235
 #: ../../application/modules/admin/controllers/ModulesController.php:267
+#: ../../application/modules/admin/controllers/ModulesController.php:234
+#: ../../application/modules/admin/controllers/ModulesController.php:266
 #, php-format
 msgid "La zone \"%s\" n'est pas une zone unimarc valide"
 msgstr "\"%s\" is not a valid Unimarc zone"
@@ -7888,6 +8282,10 @@ msgstr "\"%s\" is not a valid Unimarc zone"
 msgid "Label"
 msgstr "Label"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:75
+msgid "Lancer"
+msgstr "Run"
+
 #: ../../application/modules/admin/views/scripts/album/generate-thumbnails.phtml:23
 msgid "Lancer la génération"
 msgstr "Start generation"
@@ -7905,6 +8303,14 @@ msgstr "Start searching"
 msgid "Lancer le moissonnage"
 msgstr "Start harvesting"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:67
+msgid "Lancer manuellement"
+msgstr "Manual run"
+
+#: ../../library/ZendAfi/Form/Admin/Batch.php:31
+msgid "Lancer tous les"
+msgstr "Run at"
+
 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110
 msgid "Lancer une recherche avec réinitialisation des paramètres"
 msgstr "Start search with reseted settings"
@@ -8004,6 +8410,7 @@ msgid "Latitude"
 msgstr "Latitude"
 
 #: ../../application/modules/admin/controllers/IndexController.php:123
+#: ../../application/modules/admin/controllers/IndexController.php:133
 msgid "Le cache de Bokeh a été vidé"
 msgstr "Bokeh cache cleared"
 
@@ -8025,6 +8432,9 @@ msgstr "The field \"%s\" has been linked"
 #: ../../application/modules/admin/controllers/ModulesController.php:238
 #: ../../application/modules/admin/controllers/ModulesController.php:241
 #: ../../application/modules/admin/controllers/ModulesController.php:270
+#: ../../application/modules/admin/controllers/ModulesController.php:237
+#: ../../application/modules/admin/controllers/ModulesController.php:240
+#: ../../application/modules/admin/controllers/ModulesController.php:269
 #, php-format
 msgid "Le champ \"%s\" n'est pas un champ unimarc valide"
 msgstr "\"%s\" is not a valid Unimarc field"
@@ -8131,6 +8541,8 @@ msgstr "The file you selected is empty."
 
 #: ../../application/modules/admin/controllers/SystemeController.php:150
 #: ../../application/modules/admin/controllers/SystemeController.php:218
+#: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:224
 msgid "Le fichier reçu n'est pas valide"
 msgstr "The received file is not valid"
 
@@ -8166,15 +8578,16 @@ msgstr "The CMS displays articles as a paged list instead of a treeview"
 msgid "Le groupe \"%s\" a été sauvegardé"
 msgstr "\"%s\" group has been saved"
 
-#: ../../library/Class/Lieu.php:84
+#: ../../library/Class/Lieu.php:84 ../../library/Class/Lieu.php:73
 msgid "Le libellé doit être renseigné"
 msgstr "Title must be filled"
 
-#: ../../library/Class/Profil.php:1341
+#: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342
 msgid "Le libellé est obligatoire."
 msgstr "Label is mandatory."
 
 #: ../../application/modules/admin/controllers/SystemeController.php:298
+#: ../../application/modules/admin/controllers/SystemeController.php:304
 msgid "Le mail a bien été envoyé"
 msgstr "Your email has been sent"
 
@@ -8215,10 +8628,12 @@ msgstr "The card number is required for subscribers identified in an ILS."
 #: ../../application/modules/opac/controllers/RssController.php:36
 #: ../../application/modules/opac/controllers/RssController.php:41
 #: ../../application/modules/opac/controllers/RssController.php:60
+#: ../../application/modules/opac/controllers/RssController.php:53
 msgid "Le ou les flux demandés ne sont plus valides"
 msgstr "Requested feed(s) are no longer valid"
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:110
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:112
 #, php-format
 msgid "Le panier \"%s\" est orphelin. Il sera rattaché à l'utilisateur \"%s\""
 msgstr ""
@@ -8296,6 +8711,8 @@ msgstr "Batches are executed in cron mod only."
 
 #: ../../application/modules/admin/controllers/ModulesController.php:230
 #: ../../application/modules/admin/controllers/ModulesController.php:262
+#: ../../application/modules/admin/controllers/ModulesController.php:229
+#: ../../application/modules/admin/controllers/ModulesController.php:261
 msgid "Les caractères \";\" et \"-\" sont interdits"
 msgstr "Chars \";\" and \"-\" are forbidden"
 
@@ -8328,12 +8745,17 @@ msgstr "Last sub-domains of "
 msgid "Les fils Rss les plus récents"
 msgstr "Newest RSS"
 
+#: ../../application/modules/admin/controllers/BibController.php:450
+msgid "Les filtres par défaut ont été sauvegardés."
+msgstr "Default filters have been saved."
+
 #: ../../application/modules/admin/controllers/PremierChapitreController.php:122
 #: ../../library/Class/Batch/PremierChapitre.php:69
 msgid "Les liaisons n'ont pu être faites"
 msgstr "The connections could not be created"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:188
+#: ../../application/modules/admin/controllers/SystemeController.php:194
 msgid "Les libellés ont été mis à jour"
 msgstr "Labels have been updated"
 
@@ -8376,6 +8798,11 @@ msgstr "Labels have been updated"
 msgid "Les mots de passe ne correspondent pas"
 msgstr "Passwords do not match"
 
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2
+#, php-format
+msgid "Les paniers de %s"
+msgstr "Selections of %s"
+
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:2
 msgid "Les paniers des professionnels"
 msgstr "Professional selections"
@@ -8502,14 +8929,21 @@ msgstr "Label"
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:21
 #: ../../library/Class/Systeme/Report.php:184
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:33
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:38
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:3
+#: ../../application/modules/admin/controllers/LieuController.php:32
 msgid "Libellé"
 msgstr "Label"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:68
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:147
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:215
 msgid "Libellé commence par"
 msgstr "The label begin with"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:69
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:216
 msgid "Libellé contient"
 msgstr "The label contains"
 
@@ -8641,6 +9075,7 @@ msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr "Click here to unsubscribe to this newsletter: : {{URL}}"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:81
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:84
 msgid "Lien rebond vers la fiche bibliothèque"
 msgstr "Link to library details"
 
@@ -8870,6 +9305,10 @@ msgstr "Link records"
 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:109
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 #: ../../library/Class/Systeme/ModulesAccueil/Calendrier.php:61
+#: ../../application/modules/opac/controllers/AbonneController.php:866
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:134
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:56
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:81
 msgid "Lieu"
 msgstr "Place"
 
@@ -8924,6 +9363,9 @@ msgstr "Read more"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:123
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:72
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:83
 msgid "Liste"
 msgstr "List"
 
@@ -9131,6 +9573,10 @@ msgstr "Monday"
 msgid "Légende"
 msgstr "Legend"
 
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:42
+msgid "MAJ auto."
+msgstr "Auto update."
+
 #: ../../library/Class/IntProfilDonnees.php:53
 #: ../../library/Class/IntProfilDonnees.php:73
 msgid "MARC 21"
@@ -9245,6 +9691,7 @@ msgstr "Menu"
 
 #: ../../application/modules/admin/controllers/WidgetController.php:93
 #: ../../application/modules/admin/controllers/WidgetController.php:124
+#: ../../application/modules/admin/controllers/WidgetController.php:150
 msgid "Menu ajouté"
 msgstr "Menu added"
 
@@ -9258,11 +9705,13 @@ msgstr "Horizontal menu"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:470
 #: ../../application/modules/admin/controllers/ProfilController.php:485
+#: ../../application/modules/admin/controllers/ProfilController.php:515
 msgid "Menu horizontal dupliqué sur tous les autres profils."
 msgstr "Horizontal menu duplicated on all other profiles."
 
 #: ../../application/modules/admin/controllers/WidgetController.php:106
 #: ../../application/modules/admin/controllers/WidgetController.php:137
+#: ../../application/modules/admin/controllers/WidgetController.php:163
 msgid "Menu supprimé"
 msgstr "Menu deleted"
 
@@ -9273,6 +9722,7 @@ msgstr "Menu used"
 #: ../../application/modules/opac/controllers/RssController.php:37
 #: ../../application/modules/opac/controllers/RssController.php:42
 #: ../../application/modules/opac/controllers/RssController.php:61
+#: ../../application/modules/opac/controllers/RssController.php:54
 msgid "Merci de le signaler à un responsable de la bibliothèque."
 msgstr "Thank you to report to a chief librarian."
 
@@ -9296,6 +9746,7 @@ msgstr "Wednesday"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1190
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48
+#: ../../application/modules/opac/controllers/AbonneController.php:1189
 msgid "Mes activités suivies"
 msgstr "Done activities"
 
@@ -9306,6 +9757,7 @@ msgstr "My favorite libraries"
 #: ../../application/modules/opac/controllers/AbonneController.php:1056
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/ValidityCards.php:41
 #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23
+#: ../../application/modules/opac/controllers/AbonneController.php:1055
 msgid "Mes cartes"
 msgstr "My cards"
 
@@ -9315,6 +9767,7 @@ msgstr "My last selections"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1184
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52
+#: ../../application/modules/opac/controllers/AbonneController.php:1183
 msgid "Mes inscriptions en cours"
 msgstr "Subscribed sessions"
 
@@ -9462,6 +9915,7 @@ msgid "Mise en avant d'un album"
 msgstr "Album highlight"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99
 msgid "Mise en page"
 msgstr "Layout"
 
@@ -9485,6 +9939,8 @@ msgstr "Update database"
 
 #: ../../application/modules/admin/controllers/IndexController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:105
+#: ../../application/modules/admin/controllers/IndexController.php:144
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 msgid "Mise à jour de la charte graphique"
 msgstr "Update skin"
 
@@ -9501,6 +9957,7 @@ msgstr "Update skin"
 #: ../../application/modules/admin/controllers/BibController.php:202
 #: ../../application/modules/admin/controllers/BibController.php:200
 #: ../../application/modules/admin/controllers/BibController.php:149
+#: ../../application/modules/admin/controllers/BibController.php:150
 msgid "Mise à jour de la localisation"
 msgstr "Update location"
 
@@ -9529,6 +9986,7 @@ msgid "Mise à jour des flux RSS"
 msgstr "Update RSS streams"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:162
 msgid "Mise à jour des thesauri"
 msgstr "Update thesauri"
 
@@ -9603,6 +10061,7 @@ msgid "Mode de sélection des utilisateurs"
 msgstr "User selection mode"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:177
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176
 msgid "Modification Thesaurus"
 msgstr "Edit thesaurus"
 
@@ -9643,6 +10102,8 @@ msgstr "Edit report %s"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:501
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:477
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:504
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:10
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:32
 msgid "Modifier"
 msgstr "Edit"
 
@@ -9651,6 +10112,11 @@ msgstr "Edit"
 msgid "Modifier %d %s"
 msgstr "Edit %d %s"
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:25
+#, php-format
+msgid "Modifier %s"
+msgstr "Edit: %s"
+
 #: ../../library/ZendAfi/Form/Decorator/MultipleSelection.php:38
 #, php-format
 msgid "Modifier : %s"
@@ -9666,6 +10132,7 @@ msgid "Modifier l'activité: %s"
 msgstr "Edit activity: %s"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:634
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:633
 msgid "Modifier l'album"
 msgstr "Edit album"
 
@@ -9711,6 +10178,7 @@ msgid "Modifier la biographie"
 msgstr "Edit biography"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:692
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:691
 msgid "Modifier la catégorie"
 msgstr "Edit category"
 
@@ -9728,6 +10196,7 @@ msgid "Modifier la newsletter"
 msgstr "Edit newsletter"
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:16
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:11
 msgid "Modifier la session"
 msgstr "Edit the session"
 
@@ -9740,7 +10209,12 @@ msgstr "Edit the session : %s"
 msgid "Modifier la source de données du kiosque"
 msgstr "Edit the data source kiosk"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:36
+msgid "Modifier la tâche"
+msgstr "Edit this task"
+
 #: ../../application/modules/admin/controllers/IndexController.php:85
+#: ../../application/modules/admin/controllers/IndexController.php:94
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr "Edit the variable: %s"
@@ -9775,6 +10249,7 @@ msgid "Modifier le contenu du panier %s"
 msgstr "Edit selection %s content"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:91
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:88
 #, php-format
 msgid "Modifier le domaine : %s"
 msgstr "Edit domain : %s"
@@ -9825,6 +10300,7 @@ msgstr "Edit data profile: %s"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:423
 #: ../../application/modules/admin/controllers/ProfilController.php:430
+#: ../../application/modules/admin/controllers/ProfilController.php:460
 #, php-format
 msgid "Modifier le profil: %s"
 msgstr "Edit profile: %s"
@@ -9903,6 +10379,7 @@ msgstr "Edit the RSS feed"
 #: ../../application/modules/admin/controllers/BibController.php:319
 #: ../../application/modules/admin/controllers/BibController.php:317
 #: ../../application/modules/admin/controllers/BibController.php:256
+#: ../../application/modules/admin/controllers/BibController.php:257
 #, php-format
 msgid "Modifier un plan de la bibliothèque: %s"
 msgstr "Edit a map of the library: %s"
@@ -9972,6 +10449,7 @@ msgstr "Default template: record"
 
 #: ../../application/modules/admin/controllers/PrintController.php:31
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
 msgid "Modèles d'impressions"
 msgstr "Printing templates"
 
@@ -10028,6 +10506,7 @@ msgstr "Records tags moderation"
 #: ../../application/modules/opac/controllers/RssController.php:217
 #: ../../application/modules/opac/controllers/RssController.php:236
 #: ../../application/modules/opac/controllers/RssController.php:232
+#: ../../application/modules/opac/controllers/RssController.php:218
 msgid "Modérations"
 msgstr "Moderation"
 
@@ -10041,13 +10520,19 @@ msgid "Moissonnage ArteVOD"
 msgstr "Harvesting ArteVOD"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:166
+#: ../../application/modules/admin/controllers/HarvestController.php:144
 msgid "Moissonnage Jamendo"
 msgstr "Harvesting Jamendo"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:132
+#: ../../application/modules/admin/controllers/HarvestController.php:110
 msgid "Moissonnage Orphea"
 msgstr "Harvesting Orphea"
 
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43
+msgid "Moissonnage automatique"
+msgstr "Auto harvest"
+
 #: ../../application/modules/admin/controllers/ExternalAgendasController.php:34
 #, php-format
 msgid "Moissonnage des évènements de l'agenda \"%s\""
@@ -10059,6 +10544,7 @@ msgid "Moissonnage en cours"
 msgstr "Harvesting in progress"
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:28
 msgid "Moissonner"
 msgstr "Harvest"
 
@@ -10067,6 +10553,10 @@ msgstr "Harvest"
 msgid "Moissonner catalogue %s"
 msgstr "Harvest catalog %s"
 
+#: ../../library/Class/Batch/ExternalAgenda.php:27
+msgid "Moissonner les agendas externes"
+msgstr "Harvest external calendars"
+
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:46
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:47
 msgid "Mon compte"
@@ -10166,6 +10656,7 @@ msgid "Mots-clef"
 msgstr "Keywords"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
 msgid "Multimedia"
 msgstr "Multimedia"
 
@@ -10192,7 +10683,7 @@ msgstr "Online media"
 msgid "Médiathèque"
 msgstr "Library"
 
-#: ../../library/Class/Bib.php:320
+#: ../../library/Class/Bib.php:320 ../../library/Class/Bib.php:317
 msgid "N'envoie pas de données"
 msgstr "Does not send data"
 
@@ -10281,6 +10772,7 @@ msgstr "Unknown newsletter"
 
 #: ../../library/Class/User/SearchCriteria.php:153
 #: ../../library/ZendAfi/Form/Admin/User.php:125
+#: ../../library/Class/User/SearchCriteria.php:156
 msgid "Niveau d'accès"
 msgstr "Acces level"
 
@@ -10336,6 +10828,7 @@ msgid ""
 msgstr "No withdrawal can: subscription problem, no copy available to reserve"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:82
+#: ../../application/modules/opac/views/scripts/head.phtml:81
 msgid "Noir sur blanc"
 msgstr "Black on white"
 
@@ -10407,6 +10900,8 @@ msgstr "Black on white"
 #: ../../application/modules/admin/views/scripts/newsletter/edit-subscribers.phtml:43
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:84
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:36
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:95
+#: ../../library/ZendAfi/Form/Register.php:198
 msgid "Nom"
 msgstr "Last name"
 
@@ -10441,6 +10936,7 @@ msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr "Bibliosurf library name (lowercase)"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 msgid "Nom du domaine"
 msgstr "Domain name"
 
@@ -10489,6 +10985,10 @@ msgstr "# per page:"
 msgid "Nombre d'albums"
 msgstr "Albums count"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
+msgid "Nombre d'articles"
+msgstr "Articles count"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:58
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:49
 msgid "Nombre d'articles les plus récents à analyser"
@@ -10508,6 +11008,7 @@ msgid "Nombre d'articles à analyser"
 msgstr "Number of news to analyze"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:3
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:4
 #, php-format
 msgid "Nombre d'avis abonnés : %s"
 msgstr "Nb of patron reviews : %s"
@@ -10520,11 +11021,24 @@ msgstr "Max number of reviews to display per user."
 msgid "Nombre d'avis à afficher"
 msgstr "Number of review to display"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:8
+msgid "Nombre d'exemplaires"
+msgstr "Items count"
+
+#: ../../library/ZendAfi/Form/Configuration/MyCarouselImgObject.php:52
+msgid "Nombre d'images en hauteur"
+msgstr "Number of vertical images"
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:215
 msgid "Nombre d'inscrits"
 msgstr "# of attendants"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:9
+msgid "Nombre d'intégrations programmées"
+msgstr "Planned integrations count"
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:81
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:3
 msgid "Nombre d'utilisateurs"
 msgstr "Number of users"
 
@@ -10543,6 +11057,7 @@ msgid "Nombre d'évènements mis à jour : %s"
 msgstr "Nombre d'évènements mis à jour : %s"
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:34
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:39
 msgid "Nombre d'événements"
 msgstr "Number of events"
 
@@ -10550,6 +11065,16 @@ msgstr "Number of events"
 msgid "Nombre d'événements à afficher"
 msgstr "Number of event to display"
 
+#: ../../library/Class/ExternalAgenda.php:29
+#, php-format
+msgid "Nombre d\\'événements créés : %s\n"
+msgstr "Number of events created : %s\n"
+
+#: ../../library/Class/ExternalAgenda.php:30
+#, php-format
+msgid "Nombre d\\'événements mis à jour : %s\n"
+msgstr "Nombre d'évènements mis à jour : %s\n"
+
 #: ../../library/Class/AdminVar.php:348
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr "Max number of chars allows in reviews."
@@ -10598,7 +11123,12 @@ msgstr "Number of document to display"
 msgid "Nombre de documents à analyser"
 msgstr "Number of records to analyze"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:7
+msgid "Nombre de fils RSS référencés"
+msgstr "RSS feed count"
+
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:9
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:12
 #, php-format
 msgid "Nombre de formulaires : %s"
 msgstr "%s forms"
@@ -10608,22 +11138,34 @@ msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr "# of days of validity of new registrations on the site"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:20
+#: ../../library/Class/TableDescription/PNBItems.php:31
 msgid "Nombre de jours restant sur la licence"
 msgstr "# of days left on the licence"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9
+msgid "Nombre de notices hors cache"
+msgstr "Number of records not in cache"
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:116
 msgid "Nombre de notices par page"
 msgstr "Number of records per page"
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
+#: ../../library/Class/SessionActivity.php:482
 msgid "Nombre de participants"
 msgstr "# of participants"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:4
+msgid "Nombre de profils"
+msgstr "Profiles count"
+
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:17
+#: ../../library/Class/TableDescription/PNBItems.php:28
 msgid "Nombre de prêts"
 msgstr "# of loans"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:18
+#: ../../library/Class/TableDescription/PNBItems.php:29
 msgid "Nombre de prêts simultanés"
 msgstr "# of simultaneous loans"
 
@@ -10653,6 +11195,10 @@ msgstr "Number of results to display"
 msgid "Nombre de sites par page"
 msgstr "Number of website per page"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:6
+msgid "Nombre de sites référencés"
+msgstr "Sites count"
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/ListOfSites.php:39
 msgid "Nombre de sites à afficher"
 msgstr "Number of websites to display"
@@ -10667,20 +11213,31 @@ msgid "Nombre de tags à afficher"
 msgstr "Number of tags to display"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:5
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:8
 #, php-format
 msgid "Nombre de traductions : %s"
 msgstr "Number of translations: %s"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:14
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:16
 #, php-format
 msgid "Nombre de versions : %s"
 msgstr "Number of versions : %s"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:8
+msgid "Nombre de vignettes non reconnues"
+msgstr "Unknown thumbnails count"
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:7
+msgid "Nombre de vignettes reconnues"
+msgstr "Known thumbnails count"
+
 #: ../../library/Class/AdminVar.php:253
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr "Maximum number of articles for multiple selection"
 
 #: ../../library/Class/CodifThesaurus.php:482
+#: ../../library/Class/CodifThesaurus.php:516
 #, php-format
 msgid "Nombre maximum d'élément à ce niveau déjà atteint (%s)"
 msgstr "Maximum number of items already reached at this level (%s)"
@@ -10698,6 +11255,7 @@ msgid "Nombre à afficher"
 msgstr "# to display"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:39
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:42
 msgid "Nombres de biliothèques par page"
 msgstr "Number of libraries per page"
 
@@ -10707,6 +11265,9 @@ msgstr "Number of libraries per page"
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:29
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:186
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:32
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:32
 msgid "Non"
 msgstr "No"
 
@@ -10714,7 +11275,12 @@ msgstr "No"
 msgid "Non affiché"
 msgstr "Not displayed"
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:28
+msgid "Non classé"
+msgstr "Not affected"
+
 #: ../../library/Class/Cosmogramme/Generator.php:195
+#: ../../library/Class/Cosmogramme/Generator.php:194
 msgid "Non demandée"
 msgstr "Not requested"
 
@@ -10813,6 +11379,7 @@ msgstr "Record :"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36
 #: ../../library/Class/Codification.php:234
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
 msgid "Notices liées"
 msgstr "Related records"
 
@@ -10824,6 +11391,11 @@ msgstr "Similar records"
 msgid "Notices traitées"
 msgstr "Handled records"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:32
+#, php-format
+msgid "Notices à traiter: %s"
+msgstr "Records to hander: %s"
+
 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9
 msgid ""
 "Nous utilisons uniquement des cookies visant à faciliter votre navigation. "
@@ -10921,6 +11493,7 @@ msgstr "Novelty less than 3 months"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:111
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "Nouveautés de moins de: "
 msgstr "Novelty less than: "
 
@@ -10929,6 +11502,7 @@ msgid "Nouveautés uniquement"
 msgstr "New items only"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:34
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
 msgid "Nouvelle Tâche"
 msgstr "New task"
 
@@ -10943,6 +11517,7 @@ msgid "Nouvelle inscription à l'activité \"%s\""
 msgstr "New subscription to activity \"%s\""
 
 #: ../../application/modules/admin/controllers/BibController.php:104
+#: ../../application/modules/admin/controllers/BibController.php:105
 msgid "Nouvelle localisation"
 msgstr "New location"
 
@@ -10959,6 +11534,7 @@ msgid "Nouvelle relation"
 msgstr "New link"
 
 #: ../../library/Class/OneDTouchLink.php:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 msgid "Nouvelle version"
 msgstr "New version"
 
@@ -10975,10 +11551,12 @@ msgid "Nuage de tags"
 msgstr "Tag cloud"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
 msgid "Numilog"
 msgstr "Numilog"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
 msgid "Numérique Premium"
 msgstr "Numérique Premium"
 
@@ -11029,6 +11607,7 @@ msgstr "No membership card"
 #: ../../application/modules/telephone/controllers/AuthController.php:94
 #: ../../library/ZendAfi/Form/Register.php:184
 #: ../../library/ZendAfi/Form/Configuration/AuthRegister.php:77
+#: ../../library/ZendAfi/Form/Register.php:186
 msgid "N° de carte"
 msgstr "Card #"
 
@@ -11042,6 +11621,7 @@ msgid "OK"
 msgstr "OK"
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:68
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:75
 #, php-format
 msgid "OK, temps de traitement : %s"
 msgstr "OK, computation time : %s"
@@ -11060,16 +11640,19 @@ msgstr "Subject"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:69
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:78
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
 msgid "Objets flash"
 msgstr "Flash objects"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:67
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 msgid "Objets java-script"
 msgstr "Objects java-script"
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:78
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:77
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:76
 msgid "Objets javascript"
 msgstr "Javascript objects"
 
@@ -11091,6 +11674,7 @@ msgstr "Ok"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:121
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:122
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:124
 msgid "Onglets"
 msgstr "Tabs"
 
@@ -11164,6 +11748,7 @@ msgid "Ordre d'affichage"
 msgstr "Display order"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:45
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:48
 msgid "Ordre d'affichage des biliothèques"
 msgstr "Libraries display order"
 
@@ -11184,6 +11769,7 @@ msgid "Origine des critiques"
 msgstr "Source of reviews"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
 msgid "Orphea"
 msgstr "Orphea"
 
@@ -11205,6 +11791,9 @@ msgstr "Or API key (instead of nickname / password)"
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:28
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:187
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:35
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:31
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:31
 msgid "Oui"
 msgstr "Yes"
 
@@ -11226,6 +11815,7 @@ msgstr "Available tools"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:109
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:158
 msgid "Outils pour la page :"
 msgstr "Page tools :"
 
@@ -11244,11 +11834,13 @@ msgstr "Open now"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 msgid "Ouverture"
 msgstr "Opening"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:93
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
 msgid "Ouvertures"
 msgstr "Openings"
 
@@ -11292,6 +11884,7 @@ msgstr "PIWIK authentication token for widgets"
 #: ../../application/modules/admin/controllers/AlbumController.php:75
 #: ../../library/Class/Batch/Dilicom.php:30
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
 msgid "PNB Dilicom"
 msgstr "PNB Dilicom"
 
@@ -11301,6 +11894,7 @@ msgstr "PNB Dilicom deactivated"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:298
 #: ../../application/modules/admin/controllers/ProfilController.php:305
+#: ../../application/modules/admin/controllers/ProfilController.php:308
 msgid "Page "
 msgstr "Page "
 
@@ -11325,6 +11919,7 @@ msgid "Page précédente"
 msgstr "Previous page"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:340
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:347
 #, php-format
 msgid "Page précédente du kiosque \"%s\""
 msgstr "Previous page of kiosk \"%s\""
@@ -11334,6 +11929,7 @@ msgid "Page suivante"
 msgstr "Next Page"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:349
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:356
 #, php-format
 msgid "Page suivante du kiosque \"%s\""
 msgstr "Next page of kiosk \"%s\""
@@ -11347,6 +11943,7 @@ msgid "Pagination"
 msgstr "Pagination"
 
 #: ../../application/modules/admin/controllers/StatController.php:58
+#: ../../application/modules/admin/controllers/StatController.php:56
 msgid "Palmarès des réservations de notices"
 msgstr "Awards records of bookings"
 
@@ -11405,6 +12002,7 @@ msgid "Paniers du domaine: %s"
 msgstr "Selections linked to this domain: %s"
 
 #: ../../library/Class/PanierNotice.php:470
+#: ../../library/Class/PanierNotice.php:487
 msgid "Paniers sans domaine, rattachés à leur créateur"
 msgstr "Packed without domain attached to their creator"
 
@@ -11437,6 +12035,7 @@ msgstr "Per nb of attendants"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:78
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:80
 msgid "Par ordre alphabétique"
 msgstr "By alphabetical order"
 
@@ -11451,6 +12050,7 @@ msgstr "Random order"
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:53
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:36
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:79
 msgid "Par ordre de sélection"
 msgstr "As selected"
 
@@ -11485,6 +12085,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:9
 #: ../../application/modules/admin/views/scripts/index/index.phtml:1
 #: ../../application/modules/admin/views/scripts/index/index.phtml:10
+#: ../../application/modules/admin/views/scripts/index/index.phtml:37
 msgid "Paramètres du site"
 msgstr "Site options"
 
@@ -11541,6 +12142,7 @@ msgid "Participants"
 msgstr "Participants"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:49
+#: ../../application/modules/admin/views/scripts/index/index.phtml:77
 msgid "Participez à la communauté"
 msgstr "Participate to the community"
 
@@ -11549,6 +12151,7 @@ msgid "Partout"
 msgstr "Everywhere"
 
 #: ../../library/ZendAfi/Controller/Action.php:251
+#: ../../library/ZendAfi/Controller/Action.php:261
 msgid ""
 "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. "
 "Merci de remplir manuellement"
@@ -11650,12 +12253,14 @@ msgid "Permissions par défaut"
 msgstr "Default permissions"
 
 #: ../../application/modules/admin/controllers/BibController.php:336
+#: ../../application/modules/admin/controllers/BibController.php:337
 #, php-format
 msgid "Permissions par défaut de la bibliothèque: %s"
 msgstr "Default permissions for the library: %s"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:39
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:30
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:92
 msgid "Personnaliser le lien du titre"
 msgstr "Customize link title"
 
@@ -11688,6 +12293,7 @@ msgstr "Current step"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 #: ../../application/modules/admin/views/scripts/bib/localisationsmaj.phtml:178
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
 msgid "Photo"
 msgstr "Photo"
 
@@ -11708,6 +12314,7 @@ msgid "Pictogramme"
 msgstr "Icon"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
 msgid "Pictogrammes des genres"
 msgstr "Genre icons"
 
@@ -11724,6 +12331,7 @@ msgid "Pivot vers le bas"
 msgstr "Pivot down"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
 msgid "Piwik"
 msgstr "Piwik"
 
@@ -11802,6 +12410,10 @@ msgstr "Related plan"
 msgid "Plan d'accès"
 msgstr "Access plan"
 
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:4
+msgid "Planification"
+msgstr "Plannification"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:80
 msgid "Planification des ouvertures"
 msgstr "Opening hours"
@@ -11810,6 +12422,15 @@ msgstr "Opening hours"
 msgid "Planification des ouvertures multimédia"
 msgstr "Multimedia opening ranges"
 
+#: ../../application/modules/admin/controllers/BatchController.php:68
+#, php-format
+msgid "Planifier la tâche \"%s\""
+msgstr "Plan task \"%s\""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
+msgid "Plannifier la tâche"
+msgstr "Plan task"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:72
 msgid "Plans de la bibliothèque"
 msgstr "Library maps"
@@ -11827,6 +12448,7 @@ msgstr "Library maps"
 #: ../../application/modules/admin/controllers/BibController.php:249
 #: ../../application/modules/admin/controllers/BibController.php:247
 #: ../../application/modules/admin/controllers/BibController.php:196
+#: ../../application/modules/admin/controllers/BibController.php:197
 #, php-format
 msgid "Plans de la bibliothèque: %s"
 msgstr "Library maps: %s"
@@ -11866,6 +12488,7 @@ msgid "Position"
 msgstr "Location"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:50
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:53
 msgid "Position de la pagination"
 msgstr "Pager position"
 
@@ -11874,12 +12497,14 @@ msgid "Position de la pagination en résultat de recherche"
 msgstr "Pager position on search results page"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:76
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:79
 msgid "Position des filtres"
 msgstr "Filters position"
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:8
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:11
 #: ../../application/modules/opac/controllers/AbonneController.php:871
+#: ../../application/modules/opac/controllers/AbonneController.php:870
 msgid "Poste"
 msgstr "Post"
 
@@ -11905,6 +12530,7 @@ msgid "Pour quel jour ?"
 msgstr "What day?"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:779
+#: ../../application/modules/opac/controllers/AbonneController.php:778
 msgid "Pour quelle durée ?"
 msgstr "For how long?"
 
@@ -11933,6 +12559,7 @@ msgid "Pourquoi suggérez-vous ce document ?"
 msgstr "Why would you suggest this document?"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 msgid "Premier-Chapitre"
 msgstr "Premier-Chapitre"
 
@@ -11962,6 +12589,7 @@ msgid "Prendre le champ cote en"
 msgstr "Take the shelf mark in"
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:96
 msgid "Prenom"
 msgstr "Name"
 
@@ -12001,6 +12629,7 @@ msgid "Profil \"%s\" ajouté"
 msgstr "Data profile \"%s\" added"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/DataProfile.php:30
+#: ../../application/modules/admin/controllers/ProfilController.php:434
 #, php-format
 msgid "Profil \"%s\" sauvegardé"
 msgstr "Data profile \"%s\" saved"
@@ -12020,6 +12649,7 @@ msgid "Profil courant dans la barre de navigation"
 msgstr "Current profile in navigation menu"
 
 #: ../../library/Class/Cosmogramme/Generator.php:360
+#: ../../library/Class/Cosmogramme/Generator.php:359
 #, php-format
 msgid "Profil de données %s (%d) non présent ou mal configuré"
 msgstr "Data profile %s (%d) not set or misconfigured"
@@ -12031,6 +12661,7 @@ msgid ""
 msgstr "Unsubscribe page<br/>By default the homepage"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
 msgid "Profils"
 msgstr "Profiles"
 
@@ -12075,6 +12706,7 @@ msgstr "Renew is forbidden for this item type."
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Loans.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:46
+#: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:42
 msgid "Prolonger"
 msgstr "Extend"
 
@@ -12103,6 +12735,10 @@ msgstr "Submit tags for this record"
 msgid "Proposer la sélection de bibliothèques"
 msgstr "Allow libraries selection"
 
+#: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:97
+msgid "Proposer la sélection de domaines"
+msgstr "Provide domains selection"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:41
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:43
 msgid "Proposer la sélection de sites"
@@ -12130,6 +12766,7 @@ msgstr "Property block copies"
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:87
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:88
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:76
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:80
 msgid "Propriétés"
 msgstr "Properties"
 
@@ -12194,6 +12831,7 @@ msgid "Préférences"
 msgstr "Prefs"
 
 #: ../../application/modules/admin/controllers/UsersController.php:47
+#: ../../application/modules/admin/controllers/UsersController.php:48
 msgid "Préférences utilisateur sauvegardées"
 msgstr "Saved user prefs"
 
@@ -12205,10 +12843,12 @@ msgstr ""
 "Choose an image resolution between 320x240 and 800x600 in jpg, png or gif."
 
 #: ../../application/modules/opac/controllers/AuthController.php:558
+#: ../../application/modules/opac/controllers/AuthController.php:567
 msgid "Préinscription"
 msgstr "Preregistration"
 
 #: ../../application/modules/opac/controllers/AuthController.php:533
+#: ../../application/modules/opac/controllers/AuthController.php:541
 #, php-format
 msgid "Préinscription à %s"
 msgstr "Preregistration to %s"
@@ -12249,6 +12889,7 @@ msgstr "Preregistration to %s"
 #: ../../library/ZendAfi/Form/ContactForm.php:70
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:41
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:42
+#: ../../library/ZendAfi/Form/Register.php:210
 msgid "Prénom"
 msgstr "First name"
 
@@ -12260,6 +12901,10 @@ msgstr "Accountant firstname"
 msgid "Préparation des données"
 msgstr "Data warming"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:43
+msgid "Présences"
+msgstr "Attendance"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:92
 msgid "Présentation"
 msgstr "Presentation"
@@ -12334,6 +12979,7 @@ msgid "Prêts et réservations :"
 msgstr "Loans and bookings :"
 
 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:37
+#: ../../application/modules/opac/views/scripts/abonne/prets.phtml:35
 msgid "Prêts numériques en cours"
 msgstr "Ongoing digital loans"
 
@@ -12430,15 +13076,22 @@ msgstr "What position?"
 msgid "Quel secteur ?"
 msgstr "Which sector?"
 
+#: ../../library/Class/WebService/SIGB/Nanook/Service.php:32
+msgid "Quota atteint pour ce type de document."
+msgstr "Quota reached for this document type."
+
 #: ../../application/modules/opac/controllers/AbonneController.php:675
+#: ../../application/modules/opac/controllers/AbonneController.php:674
 msgid "Quota déjà atteint ce jour, choisissez un autre jour."
 msgstr "Quota already reached this day, choose another day."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:681
+#: ../../application/modules/opac/controllers/AbonneController.php:680
 msgid "Quota déjà atteint ce mois, choisissez un autre mois."
 msgstr "Quota already met this month, select another month."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:678
+#: ../../application/modules/opac/controllers/AbonneController.php:677
 msgid "Quota déjà atteint cette semaine, choisissez une autre semaine."
 msgstr "Quota already reached this week, choose another week."
 
@@ -12489,6 +13142,7 @@ msgid "Rapports"
 msgstr "Reports"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162
 msgid "Rapports statistiques"
 msgstr "Statistic reports"
 
@@ -12517,6 +13171,8 @@ msgstr "Reload"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 #: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:38
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
+#: ../../library/Class/User/SearchCriteria.php:81
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 msgid "Recherche"
 msgstr "Search"
 
@@ -12551,6 +13207,7 @@ msgid "Recherche élargie à"
 msgstr "Search extended to"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:113
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:112
 #, php-format
 msgid "Recherche élargie à: %s"
 msgstr "Search widen to %s"
@@ -12565,6 +13222,8 @@ msgstr "Search: "
 #: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:156
 #: ../../library/ZendAfi/View/Helper/TreeView.php:54
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:36
+#: ../../library/Class/User/SearchCriteria.php:207
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:81
 msgid "Rechercher"
 msgstr "Search"
 
@@ -12620,6 +13279,8 @@ msgstr "Search library"
 
 #: ../../application/modules/admin/controllers/StatController.php:43
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:115
+#: ../../application/modules/admin/controllers/StatController.php:41
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
 msgid "Recherches infructueuses"
 msgstr "Fruitless search"
 
@@ -12627,6 +13288,10 @@ msgstr "Fruitless search"
 msgid "Redmine n'est pas correctement configuré"
 msgstr "Redmine isn't properly configured"
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:15
+msgid "Regénérer"
+msgstr "Regenerate"
+
 #: ../../library/ZendAfi/Form/Admin/Annexe.php:48
 #: ../../library/ZendAfi/Form/Admin/Section.php:40
 msgid "Rejeter les exemplaires"
@@ -12705,6 +13370,7 @@ msgstr "Search term editable"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:44
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:97
 msgid "Rendre le titre de la boite cliquable"
 msgstr "Make the title of the box clickable"
 
@@ -12766,6 +13432,7 @@ msgid "Restreindre à"
 msgstr "Limited to"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:155
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:154
 msgid "Restreint à :"
 msgstr "Limited to:"
 
@@ -12783,6 +13450,7 @@ msgid "Retirer la facette: %s"
 msgstr "Remove facet : \"%s\""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:139
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:138
 #, php-format
 msgid "Retirer le critère: %s"
 msgstr "Remove criteria : \"%s\""
@@ -12907,6 +13575,7 @@ msgid "Retour à la liste des agendas"
 msgstr "Back to the list of calendars"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:10
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:11
 msgid "Retour à la liste des bibliothèques"
 msgstr "Back to libraries list"
 
@@ -12927,6 +13596,7 @@ msgid "Rideau horizontal"
 msgstr "Horizontal curtain"
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:97
 msgid "Role"
 msgstr "Role"
 
@@ -12966,10 +13636,12 @@ msgid "Récupération du mot de passe"
 msgstr "Password recovery"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
 msgid "Rédacteur bibliothèque"
 msgstr "Library contributor"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239
 msgid "Rédacteur portail"
 msgstr "Portal contributor"
 
@@ -12988,6 +13660,7 @@ msgstr "Write a response."
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:412
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:407
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:376
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:389
 msgid "Référencement"
 msgstr "SEO"
 
@@ -12996,6 +13669,7 @@ msgid "Régénère le sitemap XML"
 msgstr "Edit XML sitemap"
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:21
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:19
 msgid "Réinitialiser les vignettes non reconnues"
 msgstr "Refresh unknown thumbnails"
 
@@ -13228,6 +13902,7 @@ msgstr "Sign up"
 #: ../../library/ZendAfi/View/Helper/Accueil/Newsletters.php:59
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:48
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:53
+#: ../../library/Class/SessionActivity.php:513
 msgid "S'inscrire"
 msgstr "Register"
 
@@ -13243,6 +13918,7 @@ msgstr "Subscribe to session : %s"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1178
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34
+#: ../../application/modules/opac/controllers/AbonneController.php:1177
 msgid "S'inscrire à une activité"
 msgstr "Subscribe to activity"
 
@@ -13251,6 +13927,7 @@ msgid "SIGB"
 msgstr "ILS"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:85
 msgid "Salle de discussion #Bokeh"
 msgstr "#Bokeh discussion room"
 
@@ -13313,6 +13990,7 @@ msgstr "Second widget"
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:12
 #: ../../application/modules/opac/controllers/AbonneController.php:870
+#: ../../application/modules/opac/controllers/AbonneController.php:869
 msgid "Secteur"
 msgstr "Sector"
 
@@ -13325,6 +14003,7 @@ msgid "Section"
 msgstr "Section"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171
 #, php-format
 msgid "Section: %s"
 msgstr "Sections: %s"
@@ -13431,6 +14110,7 @@ msgstr "Service unavailable"
 
 #: ../../application/modules/admin/views/scripts/activity/index.phtml:22
 #: ../../library/Class/CustomField/Model.php:53
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:109
 msgid "Session"
 msgstr "Session"
 
@@ -13439,11 +14119,25 @@ msgstr "Session"
 msgid "Session \"%s\" sauvegardée"
 msgstr "Session \"%s\" has been saved"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:30
+#, php-format
+msgid "Session \"%s\" sauvegardée, son article lié a été mis à jour."
+msgstr "\"%s\" session saved, its linked article has been updated."
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
 #, php-format
 msgid "Session \"%s\" supprimée"
 msgstr "Session \"%s\" deleted"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
+#, php-format
+msgid "Session \"%s\" supprimée, son artilcle lié a été supprimé."
+msgstr "\"%s\" session deleted, its linked article has been deleted."
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:90
+msgid "Session annulée"
+msgstr "Session canceled"
+
 #: ../../application/modules/opac/controllers/AbonneController.php:92
 msgid "Session non trouvée"
 msgstr "Session not found"
@@ -13531,6 +14225,7 @@ msgid "Site \"%s\" supprimé"
 msgstr "Site %s deleted"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:51
+#: ../../application/modules/admin/views/scripts/index/index.phtml:79
 msgid "Site communautaire"
 msgstr "Community website"
 
@@ -13562,10 +14257,12 @@ msgstr "Site n° %s"
 
 #: ../../library/ZendAfi/Form/Admin/Location.php:34
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:548
 msgid "Site web"
 msgstr "Web site"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:89
 #, php-format
 msgid "Site: %s"
 msgstr "Site: %s"
@@ -13595,6 +14292,7 @@ msgstr "Website library"
 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:83
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
 msgid "Sitothèque"
 msgstr "Website library"
 
@@ -13607,6 +14305,7 @@ msgid "Situer cet exemplaire dans la bibliothèque"
 msgstr "Show the place of this copy in library"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
 msgid "SoundCloud"
 msgstr "SoundCloud"
 
@@ -13652,11 +14351,17 @@ msgstr "Title subfiled"
 msgid "Sous-zones d'auteurs<br>(séparées par des \";\")"
 msgstr "Author subfields ( ; separated)"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:37
+msgid "Stagiaires"
+msgstr "Attendees"
+
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112
 msgid "Statistiques"
 msgstr "Statistics"
 
 #: ../../application/modules/admin/controllers/StatController.php:52
+#: ../../application/modules/admin/controllers/StatController.php:50
 msgid "Statistiques des réservations de notices"
 msgstr "Statistical records of bookings"
 
@@ -13673,6 +14378,8 @@ msgstr "Status"
 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:129
 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:144
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:397
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:38
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:63
 msgid "Statut"
 msgstr "Status"
 
@@ -13702,6 +14409,7 @@ msgid "Style"
 msgstr "Style"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:71
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:74
 msgid "Style d'affichage des filtres"
 msgstr "Filters display mode"
 
@@ -13735,6 +14443,7 @@ msgid "Suggestion d'achat"
 msgstr "Purchase suggestion"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:944
+#: ../../application/modules/opac/controllers/AbonneController.php:943
 msgid "Suggestion d'achat enregistrée"
 msgstr "Suggestion recorded"
 
@@ -13813,6 +14522,7 @@ msgid "Sujets"
 msgstr "Topics"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:225
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227
 msgid "Super administrateur"
 msgstr "Super admin"
 
@@ -13823,6 +14533,7 @@ msgstr "Media"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:139
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
 msgid "Suppr."
 msgstr "Del.."
 
@@ -13877,6 +14588,9 @@ msgstr "Hide registration link"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:509
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:23
 #: ../../library/ZendAfi/View/Helper/Admin/RenderVersionForm.php:165
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:26
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:37
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:35
 msgid "Supprimer"
 msgstr "Remove"
 
@@ -13891,11 +14605,13 @@ msgid "Supprimer %s de la sélection d'articles"
 msgstr "Remove %s from selected articles"
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:156
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:160
 msgid "Supprimer cette boite"
 msgstr "Delete this widget"
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:46
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:173
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:171
 msgid "Supprimer cette réservation"
 msgstr "Delete this hold"
 
@@ -13913,6 +14629,7 @@ msgid "Supprimer l'activité"
 msgstr "Delete activity"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:656
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:655
 msgid "Supprimer l'album"
 msgstr "Delete album"
 
@@ -13942,6 +14659,7 @@ msgid "Supprimer la bibliothèque: %s"
 msgstr "Delete library: %s"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:699
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:698
 msgid "Supprimer la catégorie"
 msgstr "Delete category"
 
@@ -13955,6 +14673,7 @@ msgid "Supprimer la réservation du document %s"
 msgstr "Delete hold of item %s"
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:47
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:61
 msgid "Supprimer la session"
 msgstr "Delete the session"
 
@@ -14007,10 +14726,12 @@ msgstr "Delete all events"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:221
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:225
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:256
 msgid "Synchronisation du CSS avec GIT"
 msgstr "Synchronise CSS with GIT"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137
 msgid "Système"
 msgstr "System"
 
@@ -14079,6 +14800,7 @@ msgid "Sélectionnez un lieu"
 msgstr "Select location"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:455
+#: ../../application/modules/admin/controllers/ModulesController.php:454
 msgid "Sélectionnez un panier ou un domaine"
 msgstr "Select a selection or domain"
 
@@ -14096,6 +14818,7 @@ msgid "Tableau"
 msgstr "Grid"
 
 #: ../../application/modules/admin/controllers/StatController.php:64
+#: ../../application/modules/admin/controllers/StatController.php:62
 msgid "Tableau de bord PIWIK"
 msgstr "PIWIK dashboard"
 
@@ -14194,14 +14917,17 @@ msgstr "Computation time "
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:113
 msgid "Territoire"
 msgstr "Territory"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
 msgid "Territoires"
 msgstr "Territories"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:268
+#: ../../application/modules/admin/controllers/SystemeController.php:274
 msgid "Test de l'envoi des mails"
 msgstr "Mail test"
 
@@ -14214,6 +14940,7 @@ msgid "Test des Web Services"
 msgstr "Web services test"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144
 msgid "Test des web-services"
 msgstr "Testing web services"
 
@@ -14223,6 +14950,7 @@ msgid "Test du domaine: %s"
 msgstr "Test of domain: %s"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147
 msgid "Test envoi mails"
 msgstr "Test sending mail"
 
@@ -14497,6 +15225,9 @@ msgstr "Random"
 #: ../../library/ZendAfi/Form/Configuration/Menu/SearchResult.php:30
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:88
 #: ../../library/ZendAfi/View/Helper/RecordTabs.php:40
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:32
+#: ../../library/Class/TableDescription/PNBItems.php:27
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:132
 msgid "Titre"
 msgstr "Title"
 
@@ -14601,6 +15332,7 @@ msgstr "Titles"
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
+#: ../../library/Class/User/SearchCriteria.php:157
 msgid "Tous"
 msgstr "All"
 
@@ -14629,6 +15361,10 @@ msgstr "All records"
 msgid "Tous les jeudis"
 msgstr "Every Thursday"
 
+#: ../../library/Class/Repeat/WeekDays.php:83
+msgid "Tous les jours"
+msgstr "Every days"
+
 #: ../../library/Class/Ouverture.php:39
 msgid "Tous les lundis"
 msgstr "Every Monday"
@@ -14658,6 +15394,7 @@ msgid "Tous status"
 msgstr "All statuses"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
 msgid "Tout Apprendre"
 msgstr "Tout Apprendre"
 
@@ -14680,6 +15417,7 @@ msgid "Tout décocher"
 msgstr "Deselect all"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:110
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:89
 msgid "Tout effacer"
 msgstr "Delete all"
 
@@ -14704,6 +15442,8 @@ msgstr "Latest news portal"
 #: ../../library/Class/User/SearchCriteria.php:134
 #: ../../library/Class/Bib.php:484
 #: ../../library/ZendAfi/View/Helper/ComboLibraries.php:37
+#: ../../library/Class/User/SearchCriteria.php:137
+#: ../../library/Class/Bib.php:474
 msgid "Toutes"
 msgstr "All"
 
@@ -14712,9 +15452,14 @@ msgid "Toutes les collections"
 msgstr "All collections"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:30
 msgid "Toutes les données de l'article seront effacées !"
 msgstr "All data in the article will be deleted!"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:21
+msgid "Toutes les données de la bibliothèque seront effacées !"
+msgstr "All data of linked to this library will be deleted!"
+
 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:53
 msgid "Toutes les facettes"
 msgstr "Every facets"
@@ -14724,6 +15469,7 @@ msgid "Traduction"
 msgstr "Translate"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
 msgid "Traductions"
 msgstr "Translations"
 
@@ -14741,6 +15487,11 @@ msgstr "Translate article: %s"
 msgid "Traitement de la page %d (nombre d'enregistrements: %d)"
 msgstr "Handling page %d (records count: %d)"
 
+#: ../../library/Class/WebService/BibNumerique/ArteVOD.php:63
+#, php-format
+msgid "Traitement de la page %s"
+msgstr "Handling page %s"
+
 #: ../../library/Class/Systeme/Report/Cosmogramme.php:50
 msgid "Traitement en cours depuis le"
 msgstr "Job in progress since"
@@ -14891,6 +15642,7 @@ msgstr "Doc type required"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:121
 #: ../../library/ZendAfi/View/Helper/IconeSupport.php:52
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:99
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:98
 #, php-format
 msgid "Type de document: %s"
 msgstr "Doc type : %s"
@@ -14964,6 +15716,8 @@ msgstr "Custom fields types"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:75
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:324
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:323
 msgid "Types de documents"
 msgstr "Doc types"
 
@@ -14977,18 +15731,30 @@ msgid "Types de tags"
 msgstr "Tag types"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
 msgid "Tâche ajoutée"
 msgstr "Added task"
 
 #: ../../application/modules/admin/controllers/BatchController.php:32
+#: ../../application/modules/admin/controllers/BatchController.php:97
 msgid "Tâche executée"
 msgstr "Task executed"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+msgid "Tâche sauvegardée"
+msgstr "Task saved"
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:33
 msgid "Tâche supprimée"
 msgstr "Task cancelled"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:28
+msgid "Tâche système non désactivable"
+msgstr "System task, can not be disabled"
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:37
 msgid "Tâches"
 msgstr "Tasks"
 
@@ -15067,6 +15833,7 @@ msgstr "Download the playlist (VLC, WinAmp)"
 #: ../../application/modules/opac/controllers/AbonneController.php:470
 #: ../../application/modules/opac/controllers/AbonneController.php:471
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 msgid "Téléphone"
 msgstr "Phone number"
 
@@ -15087,6 +15854,7 @@ msgstr "UNIMARC"
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:158
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:40
 msgid "URL"
 msgstr "URL"
 
@@ -15111,10 +15879,12 @@ msgid "URL de la page"
 msgstr "Page url"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:147
+#: ../../application/modules/admin/controllers/HarvestController.php:125
 msgid "URL de la page Jamendo"
 msgstr "Jamendo page URL"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:204
+#: ../../application/modules/admin/controllers/HarvestController.php:182
 msgid "URL de la piste SoundCloud"
 msgstr "Jamendo track URL"
 
@@ -15135,6 +15905,7 @@ msgid "URL du profil"
 msgstr "Profile URL"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:546
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:545
 msgid "URL du site web"
 msgstr "Website URL"
 
@@ -15190,6 +15961,7 @@ msgid "Un courriel a été envoyé."
 msgstr "A mail has been sent."
 
 #: ../../application/modules/opac/controllers/AuthController.php:545
+#: ../../application/modules/opac/controllers/AuthController.php:553
 #, php-format
 msgid ""
 "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ."
@@ -15217,16 +15989,19 @@ msgid "Un modèle a déjà le même nom : %s"
 msgstr "A template with the same name already exists : %s"
 
 #: ../../application/modules/opac/controllers/AuthController.php:393
+#: ../../application/modules/opac/controllers/AuthController.php:396
 msgid ""
 "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le "
 "compte qui utilise cet email."
 msgstr "A user is already using this email."
 
 #: ../../library/Class/ExternalAgenda.php:42
+#: ../../library/Class/ExternalAgenda.php:56
 msgid "Une catégorie est requise"
 msgstr "A category is required"
 
 #: ../../application/modules/opac/controllers/AuthController.php:421
+#: ../../application/modules/opac/controllers/AuthController.php:424
 msgid ""
 "Une demande de confirmation d'inscription vous a été envoyée à l'adresse "
 "mail renseignée."
@@ -15234,6 +16009,7 @@ msgstr "A registration confirmation email has been sent to your email."
 
 #: ../../application/modules/admin/controllers/WidgetController.php:104
 #: ../../application/modules/admin/controllers/WidgetController.php:135
+#: ../../application/modules/admin/controllers/WidgetController.php:161
 msgid "Une erreur c'est produite, le menu n'a pas pu être supprimé"
 msgstr "An error has occured, menu could not be deleted"
 
@@ -15259,12 +16035,14 @@ msgid "Une erreur est survenue"
 msgstr "An error has occurred"
 
 #: ../../application/modules/opac/controllers/AuthController.php:417
+#: ../../application/modules/opac/controllers/AuthController.php:420
 msgid ""
 "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez "
 "réessayer. Si le problème persiste, veuillez contacter votre médiathèque."
 msgstr "Mail was not sent. Please try again."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1155
+#: ../../application/modules/opac/controllers/AbonneController.php:1154
 #, php-format
 msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s"
 msgstr "An error occurred while adding card of %s : %s"
@@ -15278,7 +16056,8 @@ msgid "Une extension PHP a stoppé le téléchargement du fichier"
 msgstr "A PHP extension stopped the download"
 
 #: ../../library/Class/Profil.php:1368 ../../library/Class/Profil.php:1372
-#: ../../library/Class/Profil.php:1376
+#: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369
+#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377
 msgid "Une marge interne de division ne peut pas excéder 20 pixels."
 msgstr "Division margin cannot exceed 20 px."
 
@@ -15392,6 +16171,7 @@ msgstr "Users without mail"
 
 #: ../../library/Class/Systeme/Report.php:41
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 msgid "Utilisateurs"
 msgstr "Users"
 
@@ -15400,6 +16180,7 @@ msgid "Utilisation"
 msgstr "Use"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:10
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:3
 msgid "Utilisation des ressources PNB Dilicom"
 msgstr "PNB ressources"
 
@@ -15494,6 +16275,7 @@ msgstr "Custom fields saved"
 #: ../../library/ZendAfi/View/Helper/Admin/Button/Submit.php:26
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:49
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:51
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:56
 msgid "Valider"
 msgstr "Validate"
 
@@ -15524,12 +16306,14 @@ msgid "Variable"
 msgstr "Variable"
 
 #: ../../application/modules/admin/controllers/IndexController.php:93
+#: ../../application/modules/admin/controllers/IndexController.php:102
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr "Variable \"%s\" saved"
 
 #: ../../library/Class/Systeme/Report.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:143
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
 msgid "Variables"
 msgstr "Variables"
 
@@ -15610,6 +16394,7 @@ msgid "Veuillez choisir une notice"
 msgstr "Please select a record"
 
 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31
+#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32
 msgid "Veuillez patienter ..."
 msgstr "Please wait ..."
 
@@ -15624,6 +16409,7 @@ msgid "Veuillez patienter : traitement en cours"
 msgstr "Please wait: ongoing treatment"
 
 #: ../../application/modules/admin/controllers/StatController.php:66
+#: ../../application/modules/admin/controllers/StatController.php:64
 msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr "Please enter the variable PIWIK_AUTH_TOKEN and JS_STAT"
 
@@ -15657,16 +16443,19 @@ msgid "Vider"
 msgstr "Empty"
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14
 msgid "Vider la totalité du cache"
 msgstr "Clear cache"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:80
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:129
 msgid "Vider le cache"
 msgstr "Clear cache"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:133
 msgid "Vider le cache de Bokeh"
 msgstr "Clear Bokeh cache"
 
@@ -15732,6 +16521,8 @@ msgstr "Thumbnails"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:89
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
+#: ../../application/modules/admin/controllers/LieuController.php:34
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
 msgid "Ville"
 msgstr "City"
 
@@ -15740,6 +16531,7 @@ msgid "Visionner le film dans son intégralité"
 msgstr "Watch the entire film"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648
 msgid "Visualisation de l\\album"
 msgstr "VIew album in its renderer"
 
@@ -15760,6 +16552,7 @@ msgid "Vitesse de défilement"
 msgstr "Scrolling speed"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79
 msgid "Vodeclic"
 msgstr "Vodeclic"
 
@@ -15770,6 +16563,10 @@ msgstr "Vodeclic"
 msgid "Voir"
 msgstr "See"
 
+#: ../../library/Class/TableDescription/PNBItems.php:39
+msgid "Voir l'album"
+msgstr "See album"
+
 #: ../../library/ZendAfi/View/Helper/TagJamendoPlayer.php:32
 #, php-format
 msgid "Voir l'album \"%s\" sur Jamendo"
@@ -15827,10 +16624,12 @@ msgstr "See selected RSS feed"
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:21
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:23
 #: ../../application/modules/opac/views/scripts/panier/domain.phtml:19
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:20
 msgid "Voir les paniers des professionnels"
 msgstr "See professional selections"
 
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:20
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:15
 msgid "Voir les paniers rangés dans des domaines"
 msgstr "See selection stored in domains"
 
@@ -15946,6 +16745,7 @@ msgstr ""
 "library."
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:77
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
 msgid "Votre adresse"
 msgstr "Your address"
 
@@ -15991,6 +16791,7 @@ msgid "Votre avis"
 msgstr "Your review"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1078
+#: ../../application/modules/opac/controllers/AbonneController.php:1077
 #, php-format
 msgid "Votre carte a été retirée à %s"
 msgstr "Your card has been removed from %s"
@@ -16028,6 +16829,7 @@ msgstr "Your account will be updated in 15 minutes."
 #: ../../application/modules/opac/controllers/AuthController.php:263
 #: ../../application/modules/opac/controllers/AuthController.php:266
 #: ../../application/modules/opac/controllers/AuthController.php:335
+#: ../../application/modules/opac/controllers/AuthController.php:338
 msgid "Votre demande d'inscription"
 msgstr "Your application"
 
@@ -16050,6 +16852,7 @@ msgid "Votre identifiant: "
 msgstr "Your login : %s "
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:72
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:76
 msgid "Votre identité"
 msgstr "Your identity"
 
@@ -16085,6 +16888,7 @@ msgid "Votre mot de passe: "
 msgstr "Your password : "
 
 #: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:55
+#: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:54
 msgid "Votre prêt a bien été prolongé."
 msgstr "Your loan has been renewed."
 
@@ -16093,6 +16897,7 @@ msgid "Votre réservation"
 msgstr "Your hold"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:437
+#: ../../application/modules/opac/controllers/AbonneController.php:436
 #, php-format
 msgid "Votre réservation du document %s a bien été supprimée."
 msgstr "Your hold on %s has been successfully deleted."
@@ -16215,15 +17020,18 @@ msgid "Vous avez %d réservations en cours"
 msgstr "You have %d outstanding bookings"
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid "Vous avez bien été abonné à la newsletter: "
 msgstr "You have been subscribed to newsletter: "
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1144
+#: ../../application/modules/opac/controllers/AbonneController.php:1143
 #, php-format
 msgid "Vous avez déjà ajouté la carte de \"%s\""
 msgstr "You already added the card of %s"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:751
+#: ../../application/modules/opac/controllers/AbonneController.php:750
 msgid "Vous avez déjà une réservation dans ce créneau horaire"
 msgstr "You already have a booking for this timeslot"
 
@@ -16300,10 +17108,12 @@ msgid "Vous devez confirmer le mot de passe"
 msgstr "You must confirm the password"
 
 #: ../../library/Class/CodifThesaurus.php:469
+#: ../../library/Class/CodifThesaurus.php:503
 msgid "Vous devez définir au moins une règle"
 msgstr "Please enter at least a rule"
 
 #: ../../library/Class/CodifThesaurus.php:465
+#: ../../library/Class/CodifThesaurus.php:499
 msgid "Vous devez définir le libellé"
 msgstr "You must enter a title"
 
@@ -16346,9 +17156,14 @@ msgid "Vous devez saisir un numéro de téléphone"
 msgstr "You must enter a phone number"
 
 #: ../../library/Class/AvisNotice.php:382
+#: ../../library/Class/AvisNotice.php:386
 msgid "Vous devez saisir un titre"
 msgstr "You must enter a title"
 
+#: ../../application/modules/admin/controllers/AlbumController.php:185
+msgid "Vous devez spécifier une catégorie à exporter"
+msgstr "You must enter a category to export"
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:54
 msgid "Vous devez sélectionner une bibliothèque"
 msgstr "Please select a library"
@@ -16593,6 +17408,7 @@ msgid "Vous n'avez saisi aucune clef."
 msgstr "You did not enter a key."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1067
+#: ../../application/modules/opac/controllers/AbonneController.php:1066
 #, php-format
 msgid "Vous n'utilisez plus la carte de %s"
 msgstr "You are no longer using the card of %s"
@@ -16605,6 +17421,7 @@ msgid "Vous n'êtes abonné à aucune lettre d'information"
 msgstr "You are not subscribed to any newsletter"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:672
+#: ../../application/modules/opac/controllers/AbonneController.php:671
 msgid "Vous n'êtes pas autorisé à effectuer une réservation"
 msgstr "You are not authorised to place a booking"
 
@@ -16615,6 +17432,7 @@ msgstr ""
 "You are no longer subscribed to the session taking place at %s of %s activity"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1138
+#: ../../application/modules/opac/controllers/AbonneController.php:1137
 msgid "Vous ne pouvez pas ajouter votre propre carte"
 msgstr "You can't add your own card"
 
@@ -16690,6 +17508,7 @@ msgid "Web"
 msgstr "Web"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
+#: ../../application/modules/admin/views/scripts/index/index.phtml:81
 msgid "Wiki Bokeh"
 msgstr "Bokeh Wiki"
 
@@ -16703,6 +17522,7 @@ msgstr "XML"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:237
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:241
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:272
 msgid "ZF Debug"
 msgstr "ZF Debug"
 
@@ -16845,6 +17665,10 @@ msgstr "no"
 msgid "avec une vignette"
 msgstr "with thumnail"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:25
+msgid "avi(s)"
+msgstr "rating(s)"
+
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:38
 #: ../../library/Class/Calendar.php:38 ../../library/Class/Calendar.php:39
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:43
@@ -16888,11 +17712,13 @@ msgstr "computing recipients list"
 
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:53
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:70
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:69
 msgid "commence"
 msgstr "begin"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:42
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:151
 msgid "commence par"
 msgstr "starts with"
 
@@ -17008,6 +17834,7 @@ msgid "dim."
 msgstr "sun.."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:98
+#: ../../library/Class/Repeat/WeekDays.php:37
 msgid "dimanche"
 msgstr "Sunday"
 
@@ -17122,6 +17949,7 @@ msgstr "ends on"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:239
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:248
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:249
 #, php-format
 msgid "flux RSS de la boite %s"
 msgstr "RSS of the box %s"
@@ -17161,6 +17989,7 @@ msgid "ignorer ce champ"
 msgstr "ignore this field"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:212
+#: ../../application/modules/admin/controllers/SystemeController.php:218
 msgid "import ok"
 msgstr "import ok"
 
@@ -17193,6 +18022,7 @@ msgid "jeu."
 msgstr "thu.."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:95
+#: ../../library/Class/Repeat/WeekDays.php:34
 msgid "jeudi"
 msgstr "Thursday"
 
@@ -17272,6 +18102,7 @@ msgstr "%s"
 #: ../../application/modules/admin/controllers/BibController.php:292
 #: ../../application/modules/admin/controllers/BibController.php:75
 #: ../../application/modules/admin/controllers/BibController.php:356
+#: ../../application/modules/admin/controllers/BibController.php:357
 msgid "le libellé est obligatoire."
 msgstr "the wording is mandatory."
 
@@ -17361,6 +18192,7 @@ msgid "lun."
 msgstr "mon.."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:92
+#: ../../library/Class/Repeat/WeekDays.php:31
 msgid "lundi"
 msgstr "Monday"
 
@@ -17382,6 +18214,7 @@ msgid "mar."
 msgstr "tue.."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:93
+#: ../../library/Class/Repeat/WeekDays.php:32
 msgid "mardi"
 msgstr "Tuesday"
 
@@ -17407,6 +18240,7 @@ msgid "mer."
 msgstr "wed.."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:94
+#: ../../library/Class/Repeat/WeekDays.php:33
 msgid "mercredi"
 msgstr "Wednesday"
 
@@ -17414,6 +18248,11 @@ msgstr "Wednesday"
 msgid "minimum"
 msgstr "minimum"
 
+#: ../../library/Class/SessionActivity.php:483
+#, php-format
+msgid "minimum : %s, maximum : %s"
+msgstr "minimum: %s, maximum: %s"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:46
 msgid "mode liste simple"
@@ -17429,8 +18268,13 @@ msgstr "Thumbnail wall mode"
 msgid "mode résumé d'article"
 msgstr "article summary mode"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:11
+msgid "modifier"
+msgstr "edit"
+
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "mois"
 msgstr "month"
 
@@ -17535,6 +18379,7 @@ msgstr "november"
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:429
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:457
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:131
 msgid "n°"
 msgstr "No."
 
@@ -17592,6 +18437,10 @@ msgstr "yes"
 msgid "page "
 msgstr "page "
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:34
+msgid "panier(s)"
+msgstr "selection(s)"
+
 #: ../../library/Class/Systeme/ModulesAccueil/News.php:60
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:76
 #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:49
@@ -17678,6 +18527,7 @@ msgid "pas de transfert pour : %s"
 msgstr "no transfer for  : %s"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358
+#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378
 msgid "pictogramme pour "
 msgstr "icon for "
 
@@ -17754,6 +18604,7 @@ msgid "sam."
 msgstr "sat.."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:97
+#: ../../library/Class/Repeat/WeekDays.php:36
 msgid "samedi"
 msgstr "Saturday"
 
@@ -17781,6 +18632,7 @@ msgid "septembre"
 msgstr "september"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:145
+#: ../../application/modules/admin/controllers/SystemeController.php:151
 msgid "site généré"
 msgstr "generated site"
 
@@ -17796,6 +18648,10 @@ msgstr "source"
 msgid "sous-menu"
 msgstr "sub-menu"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:18
+msgid "supprimer"
+msgstr "remove"
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125
 msgid "sélectionner un autre projet"
 msgstr "Select another project"
@@ -17861,6 +18717,7 @@ msgid "ven."
 msgstr "fri.."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:96
+#: ../../library/Class/Repeat/WeekDays.php:35
 msgid "vendredi"
 msgstr "Friday"
 
@@ -17890,6 +18747,7 @@ msgid "{contenu}"
 msgstr "{contenu}"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:48
 msgid "» Modifier «"
 msgstr "» Edit «"
 
@@ -17909,6 +18767,7 @@ msgid "À partir de"
 msgstr "From"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:777
+#: ../../application/modules/opac/controllers/AbonneController.php:776
 msgid "À partir de quelle heure ?"
 msgstr "At what time?"
 
@@ -17982,12 +18841,15 @@ msgstr "Standard of libraries empty"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:48
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:138
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 msgid "État"
 msgstr "State"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:492
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:73
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:88
+#: ../../application/modules/admin/controllers/ModulesController.php:491
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:92
 msgid "Étendre le paramétrage"
 msgstr "Extend settings"
 
@@ -18038,6 +18900,7 @@ msgstr "Are you sure you to restore this version ?"
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:128
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:165
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:169
 msgid "Êtes-vous sur de vouloir supprimer cette boîte ?"
 msgstr "Are you sure you want to delete this box ?"
 
@@ -18350,9 +19213,6 @@ msgstr "listen"
 #~ msgid "Ajouter un modèle"
 #~ msgstr "Add a template"
 
-#~ msgid "Ajouter une boîte"
-#~ msgstr "Add a widget"
-
 #~ msgid "Ajouter une formation"
 #~ msgstr "Add an training"
 
@@ -18506,9 +19366,6 @@ msgstr "listen"
 #~ msgid "Commentaires :"
 #~ msgstr "Comments : :"
 
-#~ msgid "Configuration de la page: "
-#~ msgstr "Page settings: "
-
 #~ msgid "Configurer le plan d'accès"
 #~ msgstr "Access plan customisation"
 
@@ -18579,9 +19436,6 @@ msgstr "listen"
 #~ msgid "Ecouter l'album"
 #~ msgstr "Listen to the album"
 
-#~ msgid "Effectif maximum atteint"
-#~ msgstr "Maximum affected"
-
 #~ msgid ""
 #~ "Entrez la liste des mots-clefs et expressions qui caractérisent votre "
 #~ "article séparés par ;"
@@ -18810,9 +19664,6 @@ msgstr "listen"
 #~ msgid "Le mot de passe est obligatoire."
 #~ msgstr "Password is mandatory."
 
-#~ msgid "Le panier "
-#~ msgstr "Selection "
-
 #~ msgid "Le site \"%s\" a été supprimé"
 #~ msgstr "The site \"%s\"  was deleted"
 
@@ -19460,9 +20311,6 @@ msgstr "listen"
 #~ msgid "documents trouvés"
 #~ msgstr "Documents found"
 
-#~ msgid "en cours"
-#~ msgstr "In progress"
-
 #~ msgid "fermer cette fenêtre"
 #~ msgstr "close this window"
 
diff --git a/library/translation/es.mo b/library/translation/es.mo
index 71073e0b596e16259d2621ec69d4659c656f7312..77bf919e35680026779a18aa70a2881f6828888a 100644
Binary files a/library/translation/es.mo and b/library/translation/es.mo differ
diff --git a/library/translation/es.po b/library/translation/es.po
index c40c09618f2df609a1e45b2802e8b1b122d80df3..ec54fd4657e5f3cba7050eb6cbb32dc7bb1d7d9e 100644
--- a/library/translation/es.po
+++ b/library/translation/es.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Bokeh 7.6.0\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-19 16:23+0200\n"
+"POT-Creation-Date: 2017-09-11 11:54+0200\n"
 "PO-Revision-Date: 2016-03-11 15:28+0000\n"
 "Last-Translator: salad0drik <cheurteux@afi-sa.fr>\n"
 "Language-Team: Spanish (http://www.transifex.com/afibre/bokeh-7-4-0/language/"
@@ -48,6 +48,8 @@ msgstr " Cambiar mi"
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:181
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:176
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:201
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208
 msgid " OU "
 msgstr ""
 
@@ -68,6 +70,7 @@ msgid " aux lettres d'information: "
 msgstr " a los boletines:"
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid " avec l'adresse suivante: "
 msgstr " con la siguiente dirección:"
 
@@ -139,14 +142,17 @@ msgid " ou "
 msgstr " o"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:542
+#: ../../application/modules/opac/controllers/AbonneController.php:541
 msgid " par E-Mail"
 msgstr " por E-Mail"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:543
+#: ../../application/modules/opac/controllers/AbonneController.php:542
 msgid " par SMS"
 msgstr " SMS"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:541
+#: ../../application/modules/opac/controllers/AbonneController.php:540
 msgid " par courrier postal"
 msgstr " por correo"
 
@@ -500,6 +506,7 @@ msgstr "(cuotas máx para novedades)"
 #: ../../application/modules/admin/controllers/BibController.php:258
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:205
+#: ../../application/modules/admin/controllers/BibController.php:206
 msgid "** nouveau plan **"
 msgstr "Nuevo plan ** **"
 
@@ -545,6 +552,7 @@ msgstr "Nueva info ** **"
 #: ../../application/modules/admin/controllers/BibController.php:150
 #: ../../application/modules/admin/controllers/BibController.php:148
 #: ../../application/modules/admin/controllers/BibController.php:97
+#: ../../application/modules/admin/controllers/BibController.php:98
 msgid "** nouvelle localisation **"
 msgstr "Nueva ubicación ** **"
 
@@ -634,6 +642,7 @@ msgid "1 notice trouvée"
 msgstr "1 resultado"
 
 #: ../../library/Class/Cosmogramme/Generator.php:194
+#: ../../library/Class/Cosmogramme/Generator.php:193
 #, fuzzy
 msgid "2 - Création des annexes"
 msgstr "Alertas de moderación"
@@ -650,6 +659,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:204
+#: ../../library/Class/Cosmogramme/Generator.php:203
 msgid "3 - Programmation des intégrations"
 msgstr ""
 
@@ -676,10 +686,12 @@ msgid "6 mois"
 msgstr "6 meses"
 
 #: ../../library/Class/Cosmogramme/Generator.php:250
+#: ../../library/Class/Cosmogramme/Generator.php:249
 msgid "7 - Création des classes Dewey"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:87
+#: ../../application/modules/opac/views/scripts/head.phtml:86
 #, php-format
 msgid ""
 "<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\" "
@@ -691,9 +703,15 @@ msgid "A"
 msgstr "A"
 
 #: ../../library/Class/Indexation/PseudoNotice.php:141
+#: ../../library/Class/Indexation/PseudoNotice.php:143
 msgid "A consulter sur le portail"
 msgstr ""
 
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:30
+#, fuzzy
+msgid "A créé des paniers"
+msgstr "Mi Carrito de Compras"
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:186
 msgid "A côté de la liste"
 msgstr "Al lado de la lista"
@@ -707,6 +725,11 @@ msgstr "Titulares"
 msgid "A quoi servent les cookies émis sur notre site ?"
 msgstr "A que sirven los cookies emitidos sobre nuestro sitio ?"
 
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:30
+#, fuzzy
+msgid "A rédigé des avis"
+msgstr "Al lado de la lista"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:109
 msgid "A savoir"
 msgstr ""
@@ -728,6 +751,10 @@ msgstr ""
 msgid "ASCII DOS"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:6
+msgid "ATTENTION : Ceci effacera le contenu actuel de l'article."
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Admin/User.php:249
 msgid "Abonnement"
 msgstr "Suscripción"
@@ -754,11 +781,13 @@ msgid "Abonnement aux lettres d'information"
 msgstr "Suscribirse a boletines"
 
 #: ../../library/Class/User/SearchCriteria.php:182
+#: ../../library/Class/User/SearchCriteria.php:185
 #, fuzzy
 msgid "Abonnement valide"
 msgstr "Suscripción"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
 msgid "Abonné SIGB"
 msgstr "Abonado biblioteca"
 
@@ -768,6 +797,7 @@ msgid "Abonné non trouvé"
 msgstr "Archivos encontrados"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:233
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
 msgid "Abonné portail"
 msgstr "Abonado sitio"
 
@@ -829,6 +859,7 @@ msgstr "Aceptada"
 #: ../../library/Class/MoteurRecherche.php:604
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
+#: ../../library/Class/MoteurRecherche.php:608
 msgid "Accueil"
 msgstr "Bienvenido"
 
@@ -841,10 +872,12 @@ msgid "Accès"
 msgstr "Acceso"
 
 #: ../../application/modules/opac/views/scripts/footer.phtml:8
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:224
 msgid "Accès pro."
 msgstr "Pro Services."
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
 msgid "Accès à Cosmogramme"
 msgstr "Cosmograma Acceso"
 
@@ -881,11 +914,13 @@ msgstr " a la cesta"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:191
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
 msgid "Accéder aux articles dans l'interface d'administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:199
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 msgid "Accéder aux domaines dans l'interface d'administration"
 msgstr ""
 
@@ -901,6 +936,7 @@ msgstr "La gestión de los recursos"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:228
 #, fuzzy
 msgid "Accéder à l'interface d'administration"
 msgstr "Administración Mostrar herramientas \\"
@@ -937,6 +973,8 @@ msgstr "Acción"
 
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:37
 #: ../../library/Class/TableDescription.php:206
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:12
+#: ../../library/Class/TableDescription.php:222
 msgid "Actions"
 msgstr "Acciones"
 
@@ -993,6 +1031,11 @@ msgstr "Activar la disposición responsive"
 msgid "Activer la redirection vers la liste d'articles"
 msgstr "Activar la redirección a la lista de artículos"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37
+#, fuzzy
+msgid "Activer la tâche"
+msgstr "Agregar tarea"
+
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293
@@ -1008,6 +1051,7 @@ msgstr "Habilitar herramientas de accesibilidad"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:126
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:130
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #, fuzzy, php-format
 msgid "Activer ou désactiver : %s"
 msgstr "Activar el módulo de formación"
@@ -1078,21 +1122,25 @@ msgid "Actuellement"
 msgstr "Ubicación"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
 msgid "Administrateur bibliothèque"
 msgstr "Administrador biblioteca"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240
 msgid "Administrateur portail"
 msgstr "Administrador sitio"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:392
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:32
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:36
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:406
 #, fuzzy
 msgid "Administration"
 msgstr "Portal Administration"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121
 msgid "Administration du portail"
 msgstr "Portal Administration"
 
@@ -1146,6 +1194,8 @@ msgstr "Administrar el servidor de AFI-Multimedia"
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:51
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:95
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
+#: ../../application/modules/admin/controllers/LieuController.php:33
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
 msgid "Adresse"
 msgstr "Dirección"
 
@@ -1196,6 +1246,7 @@ msgstr "Dirección del servidor del recurso digital Orthodidacte"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 #, fuzzy
 msgid "Adresse mail"
 msgstr "Dirección"
@@ -1216,6 +1267,7 @@ msgstr "Dirección"
 #: ../../library/ZendAfi/Form/Configuration/Profile/Page.php:68
 #: ../../library/ZendAfi/View/Helper/Search/Display.php:27
 #: ../../library/ZendAfi/Form.php:237
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:363
 msgid "Affichage"
 msgstr "Viendo el"
 
@@ -1255,6 +1307,7 @@ msgstr "Cartel / Chaqueta"
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:66
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:69
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:71
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:23
 msgid "Afficher"
 msgstr "Visualizar"
 
@@ -1312,6 +1365,7 @@ msgid "Afficher la carte"
 msgstr "Ver mapa"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:85
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:88
 #, fuzzy
 msgid "Afficher la carte interactive"
 msgstr "Ver mapa"
@@ -1384,6 +1438,7 @@ msgstr "Visualizar los favoritos del usuario"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:86
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:135
 #, fuzzy
 msgid "Afficher les icones d'administration"
 msgstr "Administración Mostrar herramientas \\"
@@ -1447,6 +1502,7 @@ msgid "Afficher toutes les éditions de ce document"
 msgstr "Ver todas las ediciones de este documento"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:103
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:107
 msgid "Afficher un nouveau domaine"
 msgstr "Pruebe con un nuevo dominio"
 
@@ -1488,6 +1544,13 @@ msgstr "Mejorar el resultado con mis favoritos..."
 msgid "Affiner le résultat par %s: %s"
 msgstr "Mejorar el resultado con mis favoritos..."
 
+#: ../../library/ZendAfi/View/Helper/TagPreRegistration.php:29
+#, php-format
+msgid ""
+"Afin de finaliser votre inscription, merci de vous rendre dans votre "
+"médiathèque : %s"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:87
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:92
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:118
@@ -1500,6 +1563,7 @@ msgstr "Mejorar el resultado con mis favoritos..."
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:66
 #: ../../library/ZendAfi/Form/Admin/News.php:80
 #: ../../library/ZendAfi/Form/Admin/News.php:75
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:70
 msgid "Agenda"
 msgstr "Diario"
 
@@ -1536,6 +1600,11 @@ msgstr "Ayuda"
 msgid "Ajout de domaine"
 msgstr "Adición de campo"
 
+#: ../../library/ZendAfi/View/Helper/RenderWidgetTemplates.php:28
+#, fuzzy
+msgid "Ajout en cours"
+msgstr "en curso"
+
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:30
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:49
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:67
@@ -1609,6 +1678,7 @@ msgid "Ajouter un agenda"
 msgstr "Añadir medios"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:685
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:684
 #, fuzzy
 msgid "Ajouter un album"
 msgstr "Añadir Catálogo"
@@ -1689,6 +1759,7 @@ msgstr "Añadir un plan"
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:254
 #: ../../application/modules/admin/controllers/BibController.php:203
+#: ../../application/modules/admin/controllers/BibController.php:204
 #, php-format
 msgid "Ajouter un plan de la bibliothèque: %s"
 msgstr "Añadir un mapa de la biblioteca: %s"
@@ -1756,13 +1827,25 @@ msgstr "Añadir una biblioteca"
 msgid "Ajouter une boite"
 msgstr "Añadir una caja"
 
+#: ../../application/modules/admin/controllers/WidgetController.php:180
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:119
+msgid "Ajouter une boîte"
+msgstr "Añadir una caja"
+
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:110
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:147
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:151
 msgid "Ajouter une boîte en-dessous"
 msgstr "Añadir una caja por debajo"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:124
+#, fuzzy
+msgid "Ajouter une boîte à cette page"
+msgstr "Añadir una caja"
+
 #: ../../application/modules/opac/views/scripts/abonne/cards.phtml:44
 #: ../../application/modules/opac/controllers/AbonneController.php:1108
+#: ../../application/modules/opac/controllers/AbonneController.php:1107
 #, fuzzy
 msgid "Ajouter une carte"
 msgstr "Añadir un artículo"
@@ -1778,6 +1861,7 @@ msgstr "Añadir un artículo"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:541
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:544
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:669
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:668
 msgid "Ajouter une catégorie"
 msgstr "Añadir categoría"
 
@@ -1794,14 +1878,17 @@ msgid "Ajouter une collection"
 msgstr "Añadir Collection"
 
 #: ../../application/modules/admin/views/scripts/bib/localisations.phtml:6
+#: ../../application/modules/admin/views/scripts/bib/localisations.phtml:8
 msgid "Ajouter une localisation"
 msgstr "Agregar una ubicación"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:7
 msgid "Ajouter une plage d'ouverture"
 msgstr "Añadir una playa abierta"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:6
 #, fuzzy
 msgid "Ajouter une plage horaire de réservation multimedia"
 msgstr "Agregar un tipo de relación"
@@ -1819,6 +1906,7 @@ msgstr "Añadir una sesión de surf"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:528
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Sitotheque.php:169
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:678
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:677
 #, fuzzy
 msgid "Ajouter une sous-catégorie"
 msgstr "Añadir categoría"
@@ -1838,15 +1926,19 @@ msgstr "Añadir el entrenamiento"
 #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:46
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49
+#: ../../application/modules/admin/controllers/HarvestController.php:128
+#: ../../application/modules/admin/controllers/HarvestController.php:185
 msgid "Album"
 msgstr "Album"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:155
+#: ../../application/modules/admin/controllers/HarvestController.php:133
 #, php-format
 msgid "Album \"%s\" importé de Jamendo"
 msgstr "Album \"%s\" importado desde Jamendo"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:212
+#: ../../application/modules/admin/controllers/HarvestController.php:190
 #, fuzzy, php-format
 msgid "Album \"%s\" importé de SoundCloud"
 msgstr "Album \"%s\" importado desde Jamendo"
@@ -1892,6 +1984,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:267
 msgid "Amber IDE"
 msgstr ""
 
@@ -2111,6 +2204,21 @@ msgstr "El artículo \"%s\" salvos"
 msgid "Article \"%s\" supprimé"
 msgstr "El artículo \"%s\" suprime"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:17
+#, fuzzy
+msgid "Article lié"
+msgstr "El artículo \"%s\" suprime"
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:249
+#, fuzzy, php-format
+msgid "Article lié à \"%s\""
+msgstr "Instrucciones relacionadas"
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:262
+#, fuzzy, php-format
+msgid "Article lié à \"%s\" regénéré."
+msgstr "El artículo \"%s\" salvos"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:102
 #, fuzzy
 msgid "Article supprimé"
@@ -2127,6 +2235,7 @@ msgstr "Categoría del artículo"
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:58
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 msgid "Articles"
 msgstr "Artículos"
 
@@ -2181,13 +2290,15 @@ msgstr ""
 msgid "Au(x) type(s) de document"
 msgstr "Tipo de documento"
 
-#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50
+#: ../../library/Class/ModeleFusion.php:75
+#: ../../library/Class/Ouverture.php:50
 #: ../../library/ZendAfi/Form/Album.php:235
 #: ../../library/ZendAfi/Form/Admin/News.php:243
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:53
 #: ../../library/ZendAfi/Form/Admin/Library.php:263
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
 msgid "Aucun"
 msgstr "No"
 
@@ -2225,6 +2336,7 @@ msgstr "Ningún contenido"
 
 #: ../../application/modules/admin/controllers/ModoController.php:829
 #: ../../application/modules/opac/controllers/AbonneController.php:941
+#: ../../application/modules/opac/controllers/AbonneController.php:940
 msgid "Aucun courriel envoyé, erreur: "
 msgstr "No e-mail enviado, error:"
 
@@ -2288,6 +2400,7 @@ msgid "Aucun répertoire fourni"
 msgstr "Sin reservas"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:290
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:297
 msgid "Aucun résultat"
 msgstr "Ningún resultado"
 
@@ -2298,6 +2411,7 @@ msgstr "Ningún resultado en mis favoritos"
 #: ../../library/Class/NoticeOAI.php:248
 #: ../../library/Class/MoteurRecherche.php:478
 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67
+#: ../../library/Class/MoteurRecherche.php:482
 msgid "Aucun résultat trouvé"
 msgstr "No hay resultados"
 
@@ -2311,6 +2425,9 @@ msgstr "No hay sumario"
 #: ../../library/ZendAfi/View/Helper/ComboCategories.php:45
 #: ../../library/ZendAfi/View/Helper/GetSendProgressJsonFor.php:29
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:30
+#: ../../library/Class/Repeat/WeekDays.php:80
+#: ../../library/Class/Batch/Definition.php:68
+#: ../../library/Class/Batch/Definition.php:71
 msgid "Aucune"
 msgstr "No"
 
@@ -2349,6 +2466,7 @@ msgstr "No se han encontrado para esta copia de ubicación de datos"
 #: ../../application/modules/opac/controllers/RssController.php:252
 #: ../../application/modules/opac/controllers/RssController.php:248
 #: ../../application/modules/opac/controllers/RssController.php:249
+#: ../../application/modules/opac/controllers/RssController.php:235
 msgid "Aucune donnée à modérer"
 msgstr "No hay datos para moderar"
 
@@ -2497,6 +2615,7 @@ msgstr "No se encontraron videos"
 #: ../../library/Class/CriteresRecherche.php:141
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:22
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:35
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 msgid "Auteur"
 msgstr "Autor"
 
@@ -2537,6 +2656,11 @@ msgstr ""
 msgid "Auteur : {notice.auteur_principal}"
 msgstr ""
 
+#: ../../application/modules/opac/controllers/BlogController.php:48
+#, fuzzy
+msgid "Auteur introuvable"
+msgstr "Usuario no encontrado"
+
 #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:48
 msgid "Auteur principal"
 msgstr ""
@@ -2625,6 +2749,7 @@ msgid "Avenio"
 msgstr ""
 
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:2
+#: ../../application/modules/opac/controllers/BlogController.php:51
 msgid "Avis"
 msgstr "Comentarios"
 
@@ -2719,6 +2844,7 @@ msgstr "Remolque"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:370
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:113
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:383
 #, fuzzy
 msgid "Banniere"
 msgstr "Banner"
@@ -2771,6 +2897,7 @@ msgid "Basculer automatiquement sur le profil"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:76
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:6
 #, fuzzy
 msgid "Base de données"
 msgstr "Dirección de los datos"
@@ -2781,6 +2908,7 @@ msgid "Base de données : "
 msgstr "Dirección de los datos"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141
 msgid "Batchs"
 msgstr "Batches"
 
@@ -2901,6 +3029,8 @@ msgstr "Babero"
 #: ../../library/Class/User/SearchCriteria.php:133
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:30
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:309
+#: ../../library/Class/User/SearchCriteria.php:136
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:98
 msgid "Bibliothèque"
 msgstr "Biblioteca"
 
@@ -2925,6 +3055,7 @@ msgid "Bibliothèque de destination"
 msgstr "Biblioteca Destino"
 
 #: ../../library/ZendAfi/Form/Register.php:165
+#: ../../library/ZendAfi/Form/Register.php:167
 #, fuzzy
 msgid "Bibliothèque de rattachement"
 msgstr "Biblioteca Destino"
@@ -2945,15 +3076,18 @@ msgstr "Biblioteca (s)"
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:90
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
 msgid "Bibliothèques"
 msgstr "Bibliotecas"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:34
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:37
 #, fuzzy
 msgid "Bibliothèques affichées"
 msgstr "Bibliotecas"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:38
 #, fuzzy
 msgid "Bibliothèques disponibles"
 msgstr "Bibliotecas"
@@ -2964,6 +3098,7 @@ msgid "Bibliothèques favorites"
 msgstr "Bibliotecas"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:32
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
 #, fuzzy
 msgid "Bibliothèques à afficher"
 msgstr "Bibliotecas"
@@ -2994,10 +3129,12 @@ msgid "Biographie de l'auteur"
 msgstr "Biografía del autor"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:79
+#: ../../application/modules/opac/views/scripts/head.phtml:78
 msgid "Blanc sur noir"
 msgstr "Blanco sobre Negro"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:85
+#: ../../application/modules/opac/views/scripts/head.phtml:84
 msgid "Bleu sur jaune"
 msgstr "Azul en amarillo"
 
@@ -3305,11 +3442,13 @@ msgid "CSV avec séparateur : virgule"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
 msgid "Cache des images"
 msgstr "Caché de imagen"
 
 #: ../../application/modules/admin/views/scripts/activity/_activity_actions.phtml:11
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:21
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:30
 msgid "Cacher"
 msgstr "Esconder"
 
@@ -3347,15 +3486,18 @@ msgstr "Carrusel vertical"
 #: ../../library/ZendAfi/View/Helper/BibView.php:166
 #: ../../application/modules/opac/controllers/AbonneController.php:1121
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:14
+#: ../../application/modules/opac/controllers/AbonneController.php:1120
 msgid "Carte"
 msgstr "Mapa"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1150
+#: ../../application/modules/opac/controllers/AbonneController.php:1149
 #, fuzzy, php-format
 msgid "Carte de \"%s\" ajoutée"
 msgstr "Cesta \"%s\", agregó"
 
 #: ../../application/modules/opac/controllers/BibController.php:256
+#: ../../application/modules/opac/controllers/BibController.php:241
 #, fuzzy
 msgid "Carte des bibliothèques"
 msgstr "Enchufe de la biblioteca:"
@@ -3365,6 +3507,7 @@ msgid "Carte des zones"
 msgstr "Mapa Zona"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1097
+#: ../../application/modules/opac/controllers/AbonneController.php:1096
 #, fuzzy
 msgid "Carte introuvable"
 msgstr "Usuario no encontrado"
@@ -3386,15 +3529,18 @@ msgid "Catalogue"
 msgstr "Catálogo"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169
 #, fuzzy
 msgid "Catalogues"
 msgstr "Catálogo"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
 msgid "Catalogues OPDS"
 msgstr "Catálogos OPDS"
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:41
 #, fuzzy
 msgid "Categorie"
 msgstr "Categoría"
@@ -3471,6 +3617,7 @@ msgid "Catégorie parente"
 msgstr "Categoría Superior"
 
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:44
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:48
 #, fuzzy
 msgid "Catégorie racine"
 msgstr "Categoría Superior"
@@ -3498,6 +3645,7 @@ msgid "Cause"
 msgstr "Causa"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:756
+#: ../../application/modules/opac/controllers/AbonneController.php:755
 msgid "Ce créneau n'est pas dans les heures d'ouverture."
 msgstr "Este nicho no es en horas."
 
@@ -3564,6 +3712,7 @@ msgid "Cet identifiant existe déjà."
 msgstr "Este identificador ya existe."
 
 #: ../../application/modules/opac/controllers/AuthController.php:498
+#: ../../application/modules/opac/controllers/AuthController.php:501
 #, fuzzy
 msgid "Cette fonctionnalité n'est pas activée."
 msgstr "Este servicio no puede pruebarse"
@@ -3648,6 +3797,7 @@ msgid "Champs"
 msgstr "Zona"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:61
 #, fuzzy
 msgid "Champs affichées"
 msgstr "Campos para mostrar"
@@ -3659,6 +3809,7 @@ msgstr "Campos para mostrar"
 
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:85
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:59
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:62
 msgid "Champs disponibles"
 msgstr "Los campos disponibles"
 
@@ -3683,6 +3834,7 @@ msgstr "Los campos disponibles"
 #: ../../library/ZendAfi/View/Helper/Admin/TagCustomFields.php:31
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomFieldMeta.php:35
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomField.php:38
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:161
 msgid "Champs personnalisés"
 msgstr "Los campos personalizados"
 
@@ -3699,6 +3851,7 @@ msgstr "Zona URL"
 #: ../../library/ZendAfi/Form/Configuration/Record.php:33
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:128
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:55
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
 msgid "Champs à afficher"
 msgstr "Campos para mostrar"
 
@@ -3742,10 +3895,12 @@ msgid "Chercher dans les bibliothèques de votre choix"
 msgstr "Busquar en la biblioteca de su elección"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:782
+#: ../../application/modules/opac/controllers/AbonneController.php:781
 msgid "Choisir"
 msgstr "Elegir"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:136
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:145
 #, fuzzy
 msgid "Choisir un autre domaine"
 msgstr "Adición de campo"
@@ -3770,6 +3925,7 @@ msgid "Choisissez les dossiers à afficher"
 msgstr "Elegir cursos para mostrar"
 
 #: ../../library/ZendAfi/Form/Album.php:147
+#: ../../application/modules/admin/controllers/AlbumController.php:162
 msgid "Choisissez une catégorie"
 msgstr "Seleccionar categoría"
 
@@ -3778,6 +3934,7 @@ msgid "Choisissez votre bibliothèque"
 msgstr "Elige tu biblioteca"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:66
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:70
 #, fuzzy
 msgid "Choix de la bibliothèque"
 msgstr "Nombre de biblioteca"
@@ -3956,10 +4113,12 @@ msgstr "Biblioteca Destino"
 #: ../../library/ZendAfi/Form/ContactForm.php:78
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:56
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:83
+#: ../../application/modules/admin/controllers/LieuController.php:35
 msgid "Code postal"
 msgstr "Código Postal"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
+#: ../../application/modules/admin/views/scripts/index/index.phtml:82
 #, fuzzy
 msgid "Code source"
 msgstr "fuente"
@@ -3982,6 +4141,7 @@ msgstr "Colación"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:47
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:44
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58
 msgid "Collection"
 msgstr "Colección"
 
@@ -4007,6 +4167,7 @@ msgstr "Empieza"
 
 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:91
 #: ../../library/ZendAfi/Form/Search/Advanced.php:35
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:191
 msgid "Commence par"
 msgstr "Empieza con"
 
@@ -4065,6 +4226,7 @@ msgid "Complet: maximum de personnes inscrites"
 msgstr "Registrantes máximas: Completo"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1215
+#: ../../application/modules/opac/controllers/AbonneController.php:1214
 #, fuzzy
 msgid "Compléter votre adresse  email"
 msgstr "Su dirección de correo electrónico"
@@ -4098,6 +4260,11 @@ msgstr ""
 msgid "Compte d'assistance: %s"
 msgstr "Avisos de suscriptores: %s"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121
+#, fuzzy
+msgid "Compte-rendu"
+msgstr "Cuenta"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:187
 #, fuzzy
 msgid "Conditions inscription"
@@ -4127,10 +4294,16 @@ msgid "Configuration PNB Dilicom"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:301
+#: ../../application/modules/admin/controllers/ModulesController.php:300
 #, fuzzy, php-format
 msgid "Configuration de l'affichage du type %s"
 msgstr "Moderación de revisar los registros"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:105
+#, fuzzy
+msgid "Configuration de la page"
+msgstr "Moderación de revisar los registros"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:204
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:208
 #, fuzzy
@@ -4139,6 +4312,7 @@ msgstr "Moderación de revisar los registros"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:334
 #: ../../application/modules/admin/controllers/ProfilController.php:341
+#: ../../application/modules/admin/controllers/ProfilController.php:366
 #, fuzzy, php-format
 msgid "Configuration de la page: %s"
 msgstr "Moderación de revisar los registros"
@@ -4154,6 +4328,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:477
 #: ../../application/modules/admin/controllers/ProfilController.php:492
+#: ../../application/modules/admin/controllers/ProfilController.php:522
 msgid "Configuration des pages appliquée à tous les autres profils."
 msgstr "Página de configuración aplica a todos los otros perfiles."
 
@@ -4161,12 +4336,24 @@ msgstr "Página de configuración aplica a todos los otros perfiles."
 msgid "Configuration du compte Redmine"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:91
+#, fuzzy
+msgid "Configuration du profil"
+msgstr "Configuración"
+
 #: ../../application/modules/admin/controllers/ModulesController.php:287
+#: ../../application/modules/admin/controllers/ModulesController.php:286
 #, fuzzy
 msgid "Configuration du résultat de recherche"
 msgstr "Mostrar resultados de búsqueda"
 
+#: ../../application/modules/admin/controllers/BibController.php:437
+#, fuzzy
+msgid "Configuration introuvable"
+msgstr "Reservas imposible"
+
 #: ../../application/modules/admin/controllers/ModulesController.php:464
+#: ../../application/modules/admin/controllers/ModulesController.php:463
 #, fuzzy
 msgid "Configuration sauvegardée"
 msgstr "Relación salvó"
@@ -4176,13 +4363,24 @@ msgstr "Relación salvó"
 msgid "Configuration: colonne %s requise"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:110
+#, fuzzy
+msgid "Configurer la page "
+msgstr "Moderación de revisar los registros"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:209
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:213
 msgid "Configurer la page courante dans l'interface d'administration"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:96
+#, fuzzy
+msgid "Configurer le profil "
+msgstr "Editar la Cesta"
+
 #: ../../application/modules/opac/controllers/AbonneController.php:872
 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:2
+#: ../../application/modules/opac/controllers/AbonneController.php:871
 msgid "Confirmation"
 msgstr "Confirmación"
 
@@ -4192,6 +4390,7 @@ msgid "Confirmation d'inscription à l'activité \"%s\""
 msgstr "La confirmación de la inscripción al boletín de noticias:"
 
 #: ../../application/modules/opac/controllers/AuthController.php:462
+#: ../../application/modules/opac/controllers/AuthController.php:465
 msgid "Confirmation d'inscription à la newsletter: "
 msgstr "La confirmación de la inscripción al boletín de noticias:"
 
@@ -4264,15 +4463,22 @@ msgstr "Iniciar sesión"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:211
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:215
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:246
 #, fuzzy
 msgid "Console d'administration"
 msgstr "Portal Administration"
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:26
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:24
 #, fuzzy
 msgid "Constitution du cache"
 msgstr "Constitución del plan de acceso"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:31
+#, fuzzy
+msgid "Constitution du cache en cours..."
+msgstr "Constitución del plan de acceso"
+
 #: ../../application/modules/admin/controllers/BibController.php:566
 #: ../../application/modules/admin/controllers/BibController.php:574
 #: ../../application/modules/admin/controllers/BibController.php:593
@@ -4326,6 +4532,7 @@ msgstr "Contacto:"
 #: ../../library/ZendAfi/Form/ModeleFusion.php:59
 #: ../../library/ZendAfi/Form/SendMail.php:46
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:122
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:117
 msgid "Contenu"
 msgstr "Contenido"
 
@@ -4366,6 +4573,11 @@ msgid ""
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:13
+#, fuzzy
+msgid "Contenu de la bibliothèque:"
+msgstr "Nombre de biblioteca"
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:50
 #, fuzzy
 msgid "Contenu du sommaire"
@@ -4377,12 +4589,14 @@ msgid "Contenu texte:"
 msgstr "Contenido"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:1
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:2
 msgid "Contenus liés à l'article"
 msgstr "Contenidos relacionados artículo"
 
 #: ../../library/Class/Codification.php:234
 #: ../../library/ZendAfi/Form/Search/Advanced.php:34
 #: ../../library/Class/Codification.php:235
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:192
 msgid "Contient"
 msgstr "Contiene"
 
@@ -4391,6 +4605,8 @@ msgid "Contracteur du PNB Dilicom"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:41
+#: ../../application/modules/admin/controllers/SystemeController.php:52
+#: ../../application/modules/admin/controllers/SystemeController.php:57
 msgid "Contrôle du cache des images"
 msgstr ""
 
@@ -4409,6 +4625,7 @@ msgid "Coordonnées carte"
 msgstr "Coordenadas Mapa"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:226
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:233
 msgid "Copier le code suivant sur le site où vous voulez afficher le kiosque"
 msgstr "Copie el código siguiente en el sitio en el que desea mostrar kiosco"
 
@@ -4529,6 +4746,10 @@ msgstr "Correo electrónico enviado a:"
 msgid "Cover flow"
 msgstr "Cover flow"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:85
+msgid "Coût"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/CreerPanier.php:35
 msgid "Creer le panier"
 msgstr "Explore la canasta"
@@ -4557,6 +4778,7 @@ msgstr "Críticas de %s"
 #: ../../application/modules/opac/controllers/RssController.php:266
 #: ../../application/modules/opac/controllers/RssController.php:268
 #: ../../application/modules/opac/controllers/RssController.php:269
+#: ../../application/modules/opac/controllers/RssController.php:252
 #, php-format
 msgid "Critiques de la sélection: %s"
 msgstr "Críticas de selección: %s"
@@ -4599,6 +4821,7 @@ msgid "Critères généraux"
 msgstr "Criterios generales"
 
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:394
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:34
 #, fuzzy
 msgid "Créateur"
 msgstr "Creación carrito"
@@ -4720,6 +4943,7 @@ msgid "Date"
 msgstr "Fecha"
 
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:134
+#: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:135
 #, fuzzy, php-format
 msgid "Date : %s"
 msgstr "Cote: %s"
@@ -4730,11 +4954,13 @@ msgid "Date d'emprunt"
 msgstr "Fecha de préstamo"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:135
 msgid "Date d'expiration"
 msgstr "Fecha de expiración"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:21
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:78
+#: ../../library/Class/TableDescription/PNBItems.php:32
 msgid "Date de commande"
 msgstr "Fecha de orden"
 
@@ -4807,6 +5033,22 @@ msgstr ""
 msgid "Date du dernier vidage manuel du cache"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:41
+#, fuzzy
+msgid "Date début"
+msgstr "Fecha de inicio"
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:46
+#, fuzzy
+msgid "Date fin"
+msgstr "Fecha de finalización"
+
+#: ../../library/Class/SessionActivity.php:460
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:50
+#, fuzzy
+msgid "Date limite d'inscription"
+msgstr "Fecha límite de inscripción"
+
 #: ../../application/modules/opac/views/scripts/abonne/activities-registered.phtml:45
 #: ../../application/modules/opac/views/scripts/abonne/activities.phtml:38
 #, fuzzy, php-format
@@ -4839,10 +5081,12 @@ msgid "Demande #%s enregistrée"
 msgstr "%d sugerencias registradas."
 
 #: ../../application/modules/opac/controllers/AuthController.php:400
+#: ../../application/modules/opac/controllers/AuthController.php:403
 msgid "Demande d'inscription à la lettre d'information: "
 msgstr "Solicitud de inclusión en el boletín de noticias:"
 
 #: ../../application/modules/opac/controllers/AuthController.php:494
+#: ../../application/modules/opac/controllers/AuthController.php:497
 #, fuzzy
 msgid "Demande de préinscription"
 msgstr "Las solicitudes de inscripción"
@@ -4939,6 +5183,7 @@ msgstr "Últimas Noticias"
 #: ../../application/modules/opac/controllers/RssController.php:99
 #: ../../application/modules/opac/controllers/RssController.php:118
 #: ../../application/modules/opac/controllers/RssController.php:113
+#: ../../application/modules/opac/controllers/RssController.php:104
 msgid "Derniers Fils RSS"
 msgstr "Últimas RSS Feeds"
 
@@ -4973,6 +5218,7 @@ msgid "Dernière distribution"
 msgstr "Última modificación"
 
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:18
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 msgid "Dernière exécution"
 msgstr "Última ejecución"
 
@@ -5108,6 +5354,7 @@ msgid "Discographie complète de"
 msgstr "Discografía completa"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:58
+#: ../../application/modules/admin/views/scripts/index/index.phtml:86
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -5228,6 +5475,7 @@ msgid "Domaine de recherche"
 msgstr "Cuadro de búsqueda"
 
 #: ../../library/Class/MoteurRecherche.php:441
+#: ../../library/Class/MoteurRecherche.php:445
 msgid "Domaine non paramétré"
 msgstr ""
 
@@ -5235,7 +5483,7 @@ msgstr ""
 msgid "Domaine parent"
 msgstr "Dominio primario"
 
-#: ../../library/Class/Album.php:1598
+#: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 msgid "Domaine public"
 msgstr ""
 
@@ -5250,6 +5498,10 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:59
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Domains.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
+#: ../../library/Class/Catalogue.php:1171
+#: ../../library/Class/Catalogue.php:1209
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:240
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:326
 msgid "Domaines"
 msgstr "Dominios"
 
@@ -5280,11 +5532,14 @@ msgstr "Añadir o editar comentario"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:30
 #: ../../application/modules/admin/views/scripts/index/index.phtml:29
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/opac/controllers/RssController.php:219
 msgid "Données en attente de modération"
 msgstr "Datos moderación en espera"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:129
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:131
 #, fuzzy
 msgid "Droite"
 msgstr "Derechos"
@@ -5350,9 +5605,15 @@ msgstr "Menú horizontal duplicado en todos los otros perfiles."
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:11
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-group.phtml:10
 #: ../../library/ZendAfi/Form/Album/Ressource.php:91
+#: ../../library/Class/SessionActivity.php:476
 msgid "Durée"
 msgstr "Duración"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:70
+#, fuzzy
+msgid "Durée (h)"
+msgstr "Duración (d)"
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:76
 msgid "Durée (j)"
 msgstr "Duración (d)"
@@ -5362,6 +5623,7 @@ msgid "Durée de la session"
 msgstr "Duración de la sesión"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:19
+#: ../../library/Class/TableDescription/PNBItems.php:30
 msgid "Durée de prêt en jours"
 msgstr "Duración de préstamo en días"
 
@@ -5402,6 +5664,10 @@ msgstr "Declarar un nuevo lugar"
 msgid "Déconnexion"
 msgstr "Salir"
 
+#: ../../application/modules/admin/views/scripts/index/index.phtml:22
+msgid "Découvrir les nouveautés de la version 7.10"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:36
 #, fuzzy
 msgid "Défilement"
@@ -5424,11 +5690,13 @@ msgid "Délai de transition pour le passage à une autre image en secondes"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:4
+#: ../../application/modules/admin/views/scripts/index/index.phtml:32
 msgid "Démonstrations vidéos"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:265
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:296
 #, fuzzy
 msgid "Déplacement des boites"
 msgstr "Imágenes que se desplazan"
@@ -5450,6 +5718,10 @@ msgstr ""
 msgid "Désactiver l'auto-complétion"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
+msgid "Désactiver la tâche"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:293
 msgid "Désactiver pour passer le site en maintenance"
 msgstr ""
@@ -5482,6 +5754,7 @@ msgid "Désinscription de l'activité \"%s\""
 msgstr "Dejar de recibir el boletín de noticias:"
 
 #: ../../application/modules/opac/controllers/AuthController.php:439
+#: ../../application/modules/opac/controllers/AuthController.php:442
 msgid "Désinscription de la lettre d'information: "
 msgstr "Dejar de recibir el boletín de noticias:"
 
@@ -5528,6 +5801,7 @@ msgstr "Detalles de la sesión"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:248
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:279
 #, fuzzy
 msgid "Développement"
 msgstr "Recuentos"
@@ -5614,6 +5888,7 @@ msgstr "Cambio de la relación de aspecto: %s"
 
 #: ../../application/modules/admin/controllers/WidgetController.php:157
 #: ../../application/modules/admin/controllers/WidgetController.php:200
+#: ../../application/modules/admin/controllers/WidgetController.php:227
 #, php-format
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr ""
@@ -5650,6 +5925,7 @@ msgstr "Editorial:"
 #: ../../application/modules/opac/controllers/RechercheController.php:454
 #: ../../application/modules/opac/controllers/RechercheController.php:472
 #: ../../application/modules/opac/controllers/RechercheController.php:463
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159
 #, php-format
 msgid "Editeur : %s"
 msgstr "Editorial: %s"
@@ -5665,6 +5941,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:95
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:99
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:144
 #, fuzzy
 msgid "Editeur CSS"
 msgstr "Editorial:"
@@ -5684,6 +5961,16 @@ msgstr "Editores"
 msgid "Edition"
 msgstr "Edición"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:63
+#, fuzzy
+msgid "Effectif maximum"
+msgstr "Máximo afectados"
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:56
+#, fuzzy
+msgid "Effectif minimum"
+msgstr "Máximo afectados"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:40
 msgid "Effectuer un test d'envoi"
 msgstr ""
@@ -5699,6 +5986,7 @@ msgid "Elargir la recherche sur tous les mots"
 msgstr "Ampliar su búsqueda a todas las palabras"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:91
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
 msgid "Elargir la recherche à tous les sites"
 msgstr ""
 
@@ -5758,6 +6046,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:289
 #: ../../library/ZendAfi/View/Helper/TagDilicomWidget.php:94
+#: ../../library/ZendAfi/View/Helper/Telephone/TagDilicomWidget.php:48
 msgid "Emprunter le livre au format EPUB"
 msgstr ""
 
@@ -5787,16 +6076,19 @@ msgstr "En espera"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:87
 msgid "En bas"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
 msgid "En haut"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:88
 msgid "En haut et en bas"
 msgstr ""
 
@@ -5829,10 +6121,12 @@ msgstr "Registro"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:60
+#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:77
 msgid "Enregistrer comme filtres par défaut"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:45
 #, fuzzy
 msgid "Enregistrer mes modifications"
 msgstr "Última modificación"
@@ -5847,6 +6141,7 @@ msgid "Entrepot"
 msgstr "Almacén"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
 msgid "Entrepôts OAI"
 msgstr "OAI"
 
@@ -5930,7 +6225,7 @@ msgstr "Desconocido Newsletter"
 msgid "Envoi impossible : erreur à la création de la commande d'envoi"
 msgstr ""
 
-#: ../../library/Class/Bib.php:321
+#: ../../library/Class/Bib.php:321 ../../library/Class/Bib.php:318
 msgid "Envoie des données"
 msgstr "Envía datos"
 
@@ -5944,6 +6239,7 @@ msgstr "Envía boletines"
 #: ../../library/ZendAfi/Form/ReponseFormulaireMail.php:52
 #: ../../library/ZendAfi/Form/SuggestionAchat.php:61
 #: ../../library/ZendAfi/Form/SendMail.php:53
+#: ../../application/modules/admin/controllers/SystemeController.php:292
 msgid "Envoyer"
 msgstr "Enviar"
 
@@ -6005,6 +6301,7 @@ msgstr "Publicado"
 #: ../../application/modules/opac/controllers/AbonneController.php:382
 #: ../../application/modules/opac/controllers/AbonneController.php:385
 #: ../../application/modules/opac/controllers/AbonneController.php:386
+#: ../../application/modules/opac/controllers/RssController.php:57
 msgid "Erreur"
 msgstr "Error"
 
@@ -6014,6 +6311,7 @@ msgid "Erreur : %s"
 msgstr "Error:"
 
 #: ../../application/modules/admin/controllers/IndexController.php:146
+#: ../../application/modules/admin/controllers/IndexController.php:156
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -6060,6 +6358,7 @@ msgid "Erreur d'envoi: %s"
 msgstr "Enviar error: %s"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:128
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:129
 msgid "Erreur de configuration"
 msgstr "Error de configuración"
 
@@ -6067,6 +6366,10 @@ msgstr "Error de configuración"
 msgid "Erreur de connexion"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BibController.php:452
+msgid "Erreur de sauvegarde des filtres par défaut."
+msgstr ""
+
 #: ../../application/modules/admin/controllers/RedmineController.php:120
 #, fuzzy
 msgid "Erreur lors de l'enregistrement"
@@ -6082,11 +6385,13 @@ msgid "Erreur lors de l'envoi"
 msgstr "Miniaturas grabación Error"
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:72
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:79
 #, fuzzy, php-format
 msgid "Erreur lors de l'execution du batch %s"
 msgstr "Error al crear miniatura %s"
 
 #: ../../application/modules/opac/controllers/AuthController.php:472
+#: ../../application/modules/opac/controllers/AuthController.php:475
 msgid "Erreur lors de l\\inscription à la newsletter."
 msgstr "Error al \\ boletín de suscripción."
 
@@ -6105,6 +6410,7 @@ msgid "Erreur(s) : %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:111
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
@@ -6133,11 +6439,13 @@ msgid "Etat de la communication"
 msgstr "Fecha de publicación"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:25
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 #, fuzzy
 msgid "Etat du site"
 msgstr "Aspecto del sitio"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:306
+#: ../../application/modules/admin/controllers/SystemeController.php:312
 #, fuzzy
 msgid "Etat du système"
 msgstr "Aspecto del sitio"
@@ -6150,9 +6458,15 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:95
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:172
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:170
 msgid "Etes vous sûr de vouloir supprimer cette réservation ?"
 msgstr "¿Seguro que quieres eliminar esta reserva?"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
+#, fuzzy
+msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
+msgstr "¿Seguro que quieres eliminar esta capa?"
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:12
 msgid "Etes-vous sur de vouloir supprimer ce point ?"
 msgstr "¿Seguro que quieres borrar esto?"
@@ -6174,6 +6488,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette annexe ?"
 msgstr "¿Seguro que quieres borrar este carro?"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:706
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:705
 #, fuzzy
 msgid "Etes-vous sûr de vouloir supprimer cette catégorie ?"
 msgstr "¿Seguro que quieres eliminar esta categoría?"
@@ -6217,6 +6532,7 @@ msgid "Expire le"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157
 msgid "Explorateur de fichiers"
 msgstr "Explorador de archivos"
 
@@ -6224,6 +6540,11 @@ msgstr "Explorador de archivos"
 msgid "Explorer le serveur"
 msgstr "Explorador de servidores"
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:4
+#, fuzzy
+msgid "Export"
+msgstr "Exportación EAD"
+
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:23
 msgid "Export CSV"
 msgstr "CSV Exportación"
@@ -6237,6 +6558,7 @@ msgid "Export unimarc"
 msgstr "Exportación UNIMARC"
 
 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:29
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:55
 #, fuzzy
 msgid "Exporter"
 msgstr "Exportación EAD"
@@ -6258,6 +6580,7 @@ msgid "Exporter en liste"
 msgstr "Exportación a la lista"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:14
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:8
 msgid "Exporter le tableau en CSV"
 msgstr ""
 
@@ -6289,6 +6612,7 @@ msgid "Expéditeur:"
 msgstr "Remitente"
 
 #: ../../application/modules/admin/controllers/BatchController.php:39
+#: ../../application/modules/admin/controllers/BatchController.php:107
 #, php-format
 msgid "Exécution du traitement \"%s\""
 msgstr "Ejecute el \"%s\""
@@ -6363,6 +6687,7 @@ msgstr "Facilita la indexación de su sitio en los motores de búsqueda"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:226
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:230
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 #, fuzzy
 msgid "Faire une demande de mise à jour de la charte graphique"
 msgstr "Actualización de la ubicación"
@@ -6482,6 +6807,7 @@ msgid "Filtrage des données"
 msgstr "Filtrado de datos"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:383
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:397
 #, fuzzy
 msgid "Filtrage du contenu"
 msgstr "Filtrado de datos"
@@ -6559,6 +6885,7 @@ msgid "Filtres activés"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:69
 #, fuzzy
 msgid "Filtres affichées"
 msgstr "Bibliotecas"
@@ -6568,6 +6895,7 @@ msgstr "Bibliotecas"
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:35
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:89
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:37
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:70
 msgid "Filtres disponibles"
 msgstr ""
 
@@ -6577,6 +6905,7 @@ msgid "Filtres issus du domaine"
 msgstr "Filtrado de datos"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:63
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
 #, fuzzy
 msgid "Filtres à afficher"
 msgstr "Facetas para mostrar"
@@ -6712,6 +7041,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:130
 #, fuzzy
 msgid "Gauche"
 msgstr "Capa"
@@ -6774,6 +7104,7 @@ msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:52
+#: ../../application/modules/admin/views/scripts/index/index.phtml:80
 msgid "Google group Bokeh"
 msgstr ""
 
@@ -6807,6 +7138,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/User.php:136
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
 msgid "Groupes"
 msgstr "Grupos"
 
@@ -6829,6 +7161,8 @@ msgstr "General"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:155
+#: ../../application/modules/admin/controllers/SystemeController.php:140
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154
 msgid "Génération du site"
 msgstr "Generación del Sitio"
 
@@ -6860,6 +7194,11 @@ msgstr ""
 msgid "Généré le"
 msgstr "General"
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#, fuzzy, php-format
+msgid "Généré pour la session d'activité %s"
+msgstr "Dejar de recibir el boletín de noticias:"
+
 #: ../../library/Class/AdminVar.php:134
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
@@ -6871,6 +7210,7 @@ msgid "Gérer les medias"
 msgstr "Gestionar los medios de comunicación"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:641
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:640
 #, fuzzy
 msgid "Gérer les médias"
 msgstr "Gestionar los medios de comunicación"
@@ -6881,6 +7221,7 @@ msgstr "Gestionar los tipos de relaciones"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1021
 #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33
+#: ../../application/modules/opac/controllers/AbonneController.php:1020
 msgid "Gérer mes favoris"
 msgstr ""
 
@@ -6890,6 +7231,7 @@ msgstr "UP"
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:83
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:82
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:81
 msgid "HTML"
 msgstr "HTML"
 
@@ -6960,6 +7302,7 @@ msgid "Hauteur du widget en pixels"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:67
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:214
 msgid "Hierarchie contient"
 msgstr "Jerarquía contiene"
 
@@ -6976,6 +7319,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129
 #, fuzzy
 msgid "Historique des modifications"
 msgstr "Última modificación"
@@ -6997,6 +7341,10 @@ msgstr "Horario"
 #: ../../library/ZendAfi/View/Helper/BibView.php:179
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:104
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:868
+#: ../../library/Class/SessionActivity.php:469
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:75
 msgid "Horaires"
 msgstr "Horario"
 
@@ -7088,6 +7436,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:37
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:38
+#: ../../application/modules/admin/controllers/LieuController.php:31
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94
 msgid "Identifiant"
 msgstr "Iniciar sesión"
 
@@ -7116,6 +7466,7 @@ msgid "Identifiant du project Redmine"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1133
+#: ../../application/modules/opac/controllers/AbonneController.php:1132
 #, fuzzy
 msgid "Identifiant et/ou mot de passe incorrect"
 msgstr "Nombre de usuario o contraseña incorrecta."
@@ -7167,6 +7518,7 @@ msgid "Ignorer l'erreur et continuer"
 msgstr "Ignorar el error y continuar"
 
 #: ../../library/Class/Cosmogramme/Generator.php:252
+#: ../../library/Class/Cosmogramme/Generator.php:251
 #, fuzzy
 msgid "Ignoré en mode mise à jour"
 msgstr "Ahorro"
@@ -7194,17 +7546,17 @@ msgstr ""
 msgid "Il faut compléter tous les champs."
 msgstr "Debe completar todos los campos."
 
-#: ../../library/Class/Profil.php:1356
+#: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357
 #, fuzzy
 msgid "Il manque la largeur de la division 1."
 msgstr "División por defecto Transmisión"
 
-#: ../../library/Class/Profil.php:1360
+#: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361
 #, fuzzy
 msgid "Il manque la largeur de la division 2."
 msgstr "División por defecto Transmisión"
 
-#: ../../library/Class/Profil.php:1364
+#: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365
 #, fuzzy
 msgid "Il manque la largeur de la division 3."
 msgstr "División por defecto Transmisión"
@@ -7215,6 +7567,7 @@ msgid "Il n'est pas possible de sélectionner plus de %d éléments"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:122
+#: ../../application/modules/admin/controllers/SystemeController.php:128
 msgid "Il n'y a aucune donnée à importer."
 msgstr ""
 
@@ -7237,6 +7590,7 @@ msgstr "Ver resultados anteriores"
 #: ../../application/modules/opac/controllers/RssController.php:197
 #: ../../application/modules/opac/controllers/RssController.php:216
 #: ../../application/modules/opac/controllers/RssController.php:212
+#: ../../application/modules/opac/controllers/RssController.php:203
 msgid "Il y a un problème avec l'adresse du flux RSS"
 msgstr "Hay un problema con la dirección del feed RSS"
 
@@ -7262,15 +7616,23 @@ msgstr "Clutter"
 msgid "Image par image"
 msgstr "Número de registros por página"
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
+#, fuzzy
+msgid "Import"
+msgstr "Importar EAD"
+
 #: ../../application/modules/admin/controllers/HarvestController.php:223
+#: ../../application/modules/admin/controllers/HarvestController.php:201
 msgid "Import SoundCloud"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173
 msgid "Import Thesaurus"
 msgstr "Importación Thesaurus"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151
 msgid "Import avis opac2"
 msgstr "Importación de comentarios opac2"
 
@@ -7279,28 +7641,36 @@ msgid "Import d'articles TYPO3"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:112
+#: ../../application/modules/admin/controllers/SystemeController.php:118
 msgid "Import des avis opac2"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:33
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:15
 msgid "Import des offres Dilicom/PNB"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
 msgid "Import/Export EAD"
 msgstr "Importar / Exportar EAD"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:196
+#: ../../application/modules/admin/controllers/SystemeController.php:202
 msgid "Importation d'un thesaurus"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:151
 #: ../../application/modules/admin/controllers/HarvestController.php:208
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:550
+#: ../../application/modules/admin/controllers/HarvestController.php:129
+#: ../../application/modules/admin/controllers/HarvestController.php:186
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
 msgid "Importer"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/AlbumController.php:133
+#: ../../application/modules/admin/controllers/AlbumController.php:136
 msgid "Importer le fichier XML"
 msgstr ""
 
@@ -7336,6 +7706,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:34
 #: ../../application/modules/opac/controllers/RssController.php:39
 #: ../../application/modules/opac/controllers/RssController.php:58
+#: ../../application/modules/opac/controllers/RssController.php:51
 msgid "Impossible de lire le flux rss"
 msgstr "No se puede el RSS"
 
@@ -7368,9 +7739,15 @@ msgid "Impossible de télécharger le fichier %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagPrintLink.php:28
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:49
 msgid "Imprimer"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20
+#, fuzzy, php-format
+msgid "Imprimer %s"
+msgstr "Retire"
+
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8
 #: ../../library/Class/IntProfilDonnees.php:83
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42
@@ -7448,6 +7825,12 @@ msgstr "Recursos digitales de indexación"
 msgid "Indexer les titres de notice pour l'autocompletion"
 msgstr "Manual de títulos indexados para autocompletar"
 
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:146
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:217
+#, fuzzy
+msgid "Indice commence par"
+msgstr "comienza índice"
+
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:87
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:91
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:114
@@ -7465,6 +7848,8 @@ msgid "Indices dewey"
 msgstr "Índices Dewey"
 
 #: ../../library/Class/User/SearchCriteria/NewsletterSubscriptionStatus.php:41
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:33
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:33
 msgid "Indifférent"
 msgstr ""
 
@@ -7499,6 +7884,7 @@ msgid "Information"
 msgstr "Información"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:85
 #, fuzzy
 msgid "Information de contact"
 msgstr "Formulario de contacto"
@@ -7525,6 +7911,8 @@ msgstr "Información del documento"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:263
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
+#: ../../application/modules/admin/controllers/SystemeController.php:269
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
 msgid "Informations système"
 msgstr "Información del sistema"
 
@@ -7561,10 +7949,12 @@ msgid "Inscription non permise"
 msgstr "Registro"
 
 #: ../../application/modules/opac/controllers/AuthController.php:383
+#: ../../application/modules/opac/controllers/AuthController.php:386
 msgid "Inscription à la lettre d'information: "
 msgstr "Suscríbete al boletín:"
 
 #: ../../application/modules/opac/controllers/AuthController.php:465
+#: ../../application/modules/opac/controllers/AuthController.php:468
 msgid "Inscription à la newsletter invalide."
 msgstr "Suscríbete a nuestro boletín deshabilitado."
 
@@ -7628,6 +8018,8 @@ msgid "Intervalle 3 secondes."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:119
+#: ../../library/Class/SessionActivity.php:497
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:113
 msgid "Intervenants"
 msgstr "Altavoces"
 
@@ -7644,11 +8036,12 @@ msgstr "Alertas de moderación"
 msgid "Invalid type given, value should be a string"
 msgstr "Dada tipo no válido, el valor debe ser una cadena"
 
-#: ../../library/Class/Bib.php:319
+#: ../../library/Class/Bib.php:319 ../../library/Class/Bib.php:316
 msgid "Invisible"
 msgstr "Invisible"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:232
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
 msgid "Invité"
 msgstr ""
 
@@ -7669,6 +8062,7 @@ msgid "J'utilise les cartes suivantes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
 msgid "Jamendo"
 msgstr ""
 
@@ -7717,6 +8111,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:868
 #: ../../library/ZendAfi/Form/Admin/Ouverture.php:44
 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:867
 msgid "Jour"
 msgstr "Día"
 
@@ -7771,6 +8166,7 @@ msgstr ""
 "nuevo más tarde."
 
 #: ../../library/ZendAfi/Controller/Action.php:45
+#: ../../library/ZendAfi/Controller/Action.php:53
 #, php-format
 msgid "L'action %s est déjà définie`"
 msgstr ""
@@ -7786,6 +8182,7 @@ msgstr "El artículo \"%s\" se ha guardado"
 #: ../../application/modules/opac/controllers/RssController.php:146
 #: ../../application/modules/opac/controllers/RssController.php:165
 #: ../../application/modules/opac/controllers/RssController.php:161
+#: ../../application/modules/opac/controllers/RssController.php:152
 msgid "L'adresse du flux RSS n'est plus valide."
 msgstr "La dirección del feed RSS ya no es válido."
 
@@ -7843,11 +8240,13 @@ msgid "L'avis doit avoir une longueur comprise entre %d et %d caractères"
 msgstr "El aviso debe tener una longitud entre %d y %d caracteres"
 
 #: ../../library/Class/AvisNotice.php:396
+#: ../../library/Class/AvisNotice.php:400
 #, php-format
 msgid "L'avis doit avoir une longueur comprise entre %s et %s caractères"
 msgstr "El comentario debe tener una longitud entre %s y %s caracteres"
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:101
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:103
 #, php-format
 msgid "L'exemplaire id_origine : %s / id_int_bib : %s n'a pas été trouvé."
 msgstr ""
@@ -7874,6 +8273,7 @@ msgstr "El nombre de usuario que eligió ya existe."
 #: ../../application/modules/admin/controllers/BibController.php:296
 #: ../../application/modules/admin/controllers/BibController.php:294
 #: ../../application/modules/admin/controllers/BibController.php:358
+#: ../../application/modules/admin/controllers/BibController.php:359
 msgid "L'image du plan est obligatoire."
 msgstr "La imagen del plan es obligatorio."
 
@@ -7968,6 +8368,7 @@ msgstr "El mensaje ha sido enviado"
 
 #: ../../application/modules/admin/controllers/WidgetController.php:86
 #: ../../application/modules/admin/controllers/WidgetController.php:117
+#: ../../application/modules/admin/controllers/WidgetController.php:143
 #, fuzzy, php-format
 msgid "La boite %s a été supprimée"
 msgstr "El sitio \"%s\" se ha eliminado"
@@ -7997,11 +8398,13 @@ msgid "La commande %s a échoué : %s"
 msgstr "La extensión no"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:434
+#: ../../application/modules/admin/controllers/ModulesController.php:433
 #, fuzzy
 msgid "La configuration a été enregistrée"
 msgstr "El nuevo sitio de Internet ha sido registrada"
 
 #: ../../library/Class/Systeme/Widget/Menu.php:165
+#: ../../library/Class/Systeme/Widget/Menu.php:171
 #, fuzzy, php-format
 msgid "La configuration de l'entrée de menu %s a été sauvegardée"
 msgstr "Formación \"%s\" se ha guardado"
@@ -8012,19 +8415,21 @@ msgid "La configuration de la boite %s a été sauvegardée"
 msgstr "Formación \"%s\" se ha guardado"
 
 #: ../../library/Class/Systeme/Widget/Menu.php:163
+#: ../../library/Class/Systeme/Widget/Menu.php:169
 #, fuzzy, php-format
 msgid "La configuration du menu %s a été sauvegardée"
 msgstr "Formación \"%s\" se ha guardado"
 
-#: ../../library/Class/Profil.php:1384
+#: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385
 msgid "La couleur des liens du bandeau doit être au format #001122"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1380
+#: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381
 msgid "La couleur du texte bandeau doit être au format #001122"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:145
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
@@ -8033,7 +8438,7 @@ msgid ""
 "La gestion des permissions sera activée après la création de cette catégorie"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1345
+#: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346
 #, fuzzy
 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels."
 msgstr "El comentario debe tener una longitud entre %s y %s caracteres"
@@ -8079,6 +8484,7 @@ msgid "La recherche s'effectue dans tout le réseau."
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:472
+#: ../../library/Class/CodifThesaurus.php:506
 msgid "La règle n'est pas de la forme 686$a"
 msgstr ""
 
@@ -8102,13 +8508,19 @@ msgstr "La categoría \"%s\" se ha eliminado"
 msgid "La session \"%s\" a été sauvegardée"
 msgstr "La sesión \"%s\" se ha guardado"
 
-#: ../../library/Class/Profil.php:1352
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:31
+#, fuzzy, php-format
+msgid "La session \"%s\" a été sauvegardée, son article lié a été créé."
+msgstr "La sesión \"%s\" se ha guardado"
+
+#: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353
 msgid ""
 "La somme des largeurs des divisions ne doit pas excéder la largeur du site."
 msgstr ""
 
 #: ../../library/Class/CriteresRecherche.php:450
 #: ../../library/Class/CriteresRecherche.php:454
+#: ../../library/Class/CriteresRecherche.php:476
 msgid "La sélection ne contient aucune notice"
 msgstr "La selección no contiene ningún registro"
 
@@ -8117,6 +8529,11 @@ msgstr "La selección no contiene ningún registro"
 msgid "La taille du fichier ne doit pas excéder "
 msgstr "El archivo no es de tipo %s"
 
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:64
+#, php-format
+msgid "La tâche %s n'est pas plannifiée aujourd'hui"
+msgstr ""
+
 #: ../../library/Class/Cosmogramme/LandingDirectory.php:46
 msgid ""
 "La variable ftp_path est absente, incorrecte ou le dossier n'a pas été créé."
@@ -8137,6 +8554,8 @@ msgstr "La etiqueta ha sido transferida"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:235
 #: ../../application/modules/admin/controllers/ModulesController.php:267
+#: ../../application/modules/admin/controllers/ModulesController.php:234
+#: ../../application/modules/admin/controllers/ModulesController.php:266
 #, php-format
 msgid "La zone \"%s\" n'est pas une zone unimarc valide"
 msgstr ""
@@ -8146,6 +8565,10 @@ msgstr ""
 msgid "Label"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:75
+msgid "Lancer"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/album/generate-thumbnails.phtml:23
 msgid "Lancer la génération"
 msgstr "Iniciar generación"
@@ -8163,6 +8586,15 @@ msgstr "Iniciar la búsqueda"
 msgid "Lancer le moissonnage"
 msgstr "Comienza la cosecha"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:67
+#, fuzzy
+msgid "Lancer manuellement"
+msgstr "Ubicación"
+
+#: ../../library/ZendAfi/Form/Admin/Batch.php:31
+msgid "Lancer tous les"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110
 msgid "Lancer une recherche avec réinitialisation des paramètres"
 msgstr ""
@@ -8268,6 +8700,7 @@ msgid "Latitude"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:123
+#: ../../application/modules/admin/controllers/IndexController.php:133
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
@@ -8289,6 +8722,9 @@ msgstr "Campo \"%s\" se une con éxito"
 #: ../../application/modules/admin/controllers/ModulesController.php:238
 #: ../../application/modules/admin/controllers/ModulesController.php:241
 #: ../../application/modules/admin/controllers/ModulesController.php:270
+#: ../../application/modules/admin/controllers/ModulesController.php:237
+#: ../../application/modules/admin/controllers/ModulesController.php:240
+#: ../../application/modules/admin/controllers/ModulesController.php:269
 #, php-format
 msgid "Le champ \"%s\" n'est pas un champ unimarc valide"
 msgstr ""
@@ -8397,6 +8833,8 @@ msgstr "El archivo seleccionado está vacía."
 
 #: ../../application/modules/admin/controllers/SystemeController.php:150
 #: ../../application/modules/admin/controllers/SystemeController.php:218
+#: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:224
 msgid "Le fichier reçu n'est pas valide"
 msgstr ""
 
@@ -8431,16 +8869,17 @@ msgstr ""
 msgid "Le groupe \"%s\" a été sauvegardé"
 msgstr "El grupo \"%s\" se ha guardado"
 
-#: ../../library/Class/Lieu.php:84
+#: ../../library/Class/Lieu.php:84 ../../library/Class/Lieu.php:73
 msgid "Le libellé doit être renseigné"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1341
+#: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342
 #, fuzzy
 msgid "Le libellé est obligatoire."
 msgstr "el idioma es obligatorio."
 
 #: ../../application/modules/admin/controllers/SystemeController.php:298
+#: ../../application/modules/admin/controllers/SystemeController.php:304
 msgid "Le mail a bien été envoyé"
 msgstr ""
 
@@ -8483,10 +8922,12 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:36
 #: ../../application/modules/opac/controllers/RssController.php:41
 #: ../../application/modules/opac/controllers/RssController.php:60
+#: ../../application/modules/opac/controllers/RssController.php:53
 msgid "Le ou les flux demandés ne sont plus valides"
 msgstr "Los flujos o solicitado ya no son válidas"
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:110
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:112
 #, php-format
 msgid "Le panier \"%s\" est orphelin. Il sera rattaché à l'utilisateur \"%s\""
 msgstr ""
@@ -8565,6 +9006,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:230
 #: ../../application/modules/admin/controllers/ModulesController.php:262
+#: ../../application/modules/admin/controllers/ModulesController.php:229
+#: ../../application/modules/admin/controllers/ModulesController.php:261
 msgid "Les caractères \";\" et \"-\" sont interdits"
 msgstr ""
 
@@ -8595,12 +9038,18 @@ msgstr "Los últimos subdominios"
 msgid "Les fils Rss les plus récents"
 msgstr "Resultados anteriores"
 
+#: ../../application/modules/admin/controllers/BibController.php:450
+#, fuzzy
+msgid "Les filtres par défaut ont été sauvegardés."
+msgstr "El sitio \"%s\" se ha guardado"
+
 #: ../../application/modules/admin/controllers/PremierChapitreController.php:122
 #: ../../library/Class/Batch/PremierChapitre.php:69
 msgid "Les liaisons n'ont pu être faites"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:188
+#: ../../application/modules/admin/controllers/SystemeController.php:194
 msgid "Les libellés ont été mis à jour"
 msgstr ""
 
@@ -8643,6 +9092,11 @@ msgstr ""
 msgid "Les mots de passe ne correspondent pas"
 msgstr "Las contraseñas no coinciden"
 
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2
+#, fuzzy, php-format
+msgid "Les paniers de %s"
+msgstr "Cesta"
+
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:2
 #, fuzzy
 msgid "Les paniers des professionnels"
@@ -8776,14 +9230,21 @@ msgstr "Nombre"
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:21
 #: ../../library/Class/Systeme/Report.php:184
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:33
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:38
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:3
+#: ../../application/modules/admin/controllers/LieuController.php:32
 msgid "Libellé"
 msgstr "Redacción"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:68
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:147
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:215
 msgid "Libellé commence par"
 msgstr "Etiqueta comienza con"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:69
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:216
 msgid "Libellé contient"
 msgstr "Contiene texto"
 
@@ -8924,6 +9385,7 @@ msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:81
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:84
 #, fuzzy
 msgid "Lien rebond vers la fiche bibliothèque"
 msgstr "Enchufe de la biblioteca:"
@@ -9192,6 +9654,10 @@ msgstr "Críticas registros"
 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:109
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 #: ../../library/Class/Systeme/ModulesAccueil/Calendrier.php:61
+#: ../../application/modules/opac/controllers/AbonneController.php:866
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:134
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:56
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:81
 msgid "Lieu"
 msgstr "Lugar"
 
@@ -9246,6 +9712,9 @@ msgstr "Leer más"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:123
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:72
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:83
 msgid "Liste"
 msgstr "Lista"
 
@@ -9451,6 +9920,10 @@ msgstr ""
 msgid "Légende"
 msgstr "Leyenda"
 
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:42
+msgid "MAJ auto."
+msgstr ""
+
 #: ../../library/Class/IntProfilDonnees.php:53
 #: ../../library/Class/IntProfilDonnees.php:73
 msgid "MARC 21"
@@ -9566,6 +10039,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:93
 #: ../../application/modules/admin/controllers/WidgetController.php:124
+#: ../../application/modules/admin/controllers/WidgetController.php:150
 #, fuzzy
 msgid "Menu ajouté"
 msgstr "Dominio %s añadido"
@@ -9581,11 +10055,13 @@ msgstr "Carrusel horizontal"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:470
 #: ../../application/modules/admin/controllers/ProfilController.php:485
+#: ../../application/modules/admin/controllers/ProfilController.php:515
 msgid "Menu horizontal dupliqué sur tous les autres profils."
 msgstr "Menú horizontal duplicado en todos los otros perfiles."
 
 #: ../../application/modules/admin/controllers/WidgetController.php:106
 #: ../../application/modules/admin/controllers/WidgetController.php:137
+#: ../../application/modules/admin/controllers/WidgetController.php:163
 #, fuzzy
 msgid "Menu supprimé"
 msgstr "Comentarios %s removido"
@@ -9598,6 +10074,7 @@ msgstr "Tema"
 #: ../../application/modules/opac/controllers/RssController.php:37
 #: ../../application/modules/opac/controllers/RssController.php:42
 #: ../../application/modules/opac/controllers/RssController.php:61
+#: ../../application/modules/opac/controllers/RssController.php:54
 msgid "Merci de le signaler à un responsable de la bibliothèque."
 msgstr "¡Gracias a informar de ello a un gestor de bibliotecas."
 
@@ -9619,6 +10096,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1190
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48
+#: ../../application/modules/opac/controllers/AbonneController.php:1189
 #, fuzzy
 msgid "Mes activités suivies"
 msgstr "O cambiar su información de carrito de la compra"
@@ -9631,6 +10109,7 @@ msgstr "Bibliotecas"
 #: ../../application/modules/opac/controllers/AbonneController.php:1056
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/ValidityCards.php:41
 #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23
+#: ../../application/modules/opac/controllers/AbonneController.php:1055
 #, fuzzy
 msgid "Mes cartes"
 msgstr "Mi Carrito de Compras"
@@ -9641,6 +10120,7 @@ msgstr "Mis últimos cestas"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1184
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52
+#: ../../application/modules/opac/controllers/AbonneController.php:1183
 #, fuzzy
 msgid "Mes inscriptions en cours"
 msgstr "Las reservas actuales"
@@ -9801,6 +10281,7 @@ msgid "Mise en avant d'un album"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99
 msgid "Mise en page"
 msgstr "Layout"
 
@@ -9827,6 +10308,8 @@ msgstr "Actualización de la ubicación"
 
 #: ../../application/modules/admin/controllers/IndexController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:105
+#: ../../application/modules/admin/controllers/IndexController.php:144
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 #, fuzzy
 msgid "Mise à jour de la charte graphique"
 msgstr "Actualización de la ubicación"
@@ -9844,6 +10327,7 @@ msgstr "Actualización de la ubicación"
 #: ../../application/modules/admin/controllers/BibController.php:202
 #: ../../application/modules/admin/controllers/BibController.php:200
 #: ../../application/modules/admin/controllers/BibController.php:149
+#: ../../application/modules/admin/controllers/BibController.php:150
 msgid "Mise à jour de la localisation"
 msgstr "Actualización de la ubicación"
 
@@ -9875,6 +10359,7 @@ msgid "Mise à jour des flux RSS"
 msgstr "Alimenta Actualización RSS"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:162
 msgid "Mise à jour des thesauri"
 msgstr ""
 
@@ -9958,6 +10443,7 @@ msgid "Mode de sélection des utilisateurs"
 msgstr "Método de selección de los usuarios"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:177
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176
 msgid "Modification Thesaurus"
 msgstr "Cambiar Thesaurus"
 
@@ -9998,6 +10484,8 @@ msgstr "Cambio de la relación de aspecto: %s"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:501
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:477
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:504
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:10
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:32
 msgid "Modifier"
 msgstr "Cambiar"
 
@@ -10006,6 +10494,11 @@ msgstr "Cambiar"
 msgid "Modifier %d %s"
 msgstr "Cambiar"
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:25
+#, fuzzy, php-format
+msgid "Modifier %s"
+msgstr "Cambiar"
+
 #: ../../library/ZendAfi/Form/Decorator/MultipleSelection.php:38
 #, fuzzy, php-format
 msgid "Modifier : %s"
@@ -10022,6 +10515,7 @@ msgid "Modifier l'activité: %s"
 msgstr "Modificar el aviso \"%s\""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:634
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:633
 #, fuzzy
 msgid "Modifier l'album"
 msgstr "Cambiar de ubicación: \"%s\""
@@ -10069,6 +10563,7 @@ msgid "Modifier la biographie"
 msgstr "Edite la biografía"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:692
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:691
 #, fuzzy
 msgid "Modifier la catégorie"
 msgstr "Edite la biografía"
@@ -10088,6 +10583,7 @@ msgid "Modifier la newsletter"
 msgstr "Editar miniaturas"
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:16
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:11
 msgid "Modifier la session"
 msgstr ""
 
@@ -10100,7 +10596,13 @@ msgstr "Edite la sesión: %s"
 msgid "Modifier la source de données du kiosque"
 msgstr "Edite el kiosco fuente de datos"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:36
+#, fuzzy
+msgid "Modifier la tâche"
+msgstr " Cambiar mi"
+
 #: ../../application/modules/admin/controllers/IndexController.php:85
+#: ../../application/modules/admin/controllers/IndexController.php:94
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr ""
@@ -10137,6 +10639,7 @@ msgid "Modifier le contenu du panier %s"
 msgstr "Cambiar el título de la canasta"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:91
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:88
 #, fuzzy, php-format
 msgid "Modifier le domaine : %s"
 msgstr "Cambiar de ubicación: \"%s\""
@@ -10188,6 +10691,7 @@ msgstr "Edite el kiosco fuente de datos"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:423
 #: ../../application/modules/admin/controllers/ProfilController.php:430
+#: ../../application/modules/admin/controllers/ProfilController.php:460
 #, fuzzy, php-format
 msgid "Modifier le profil: %s"
 msgstr "Editar la Cesta"
@@ -10269,6 +10773,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:319
 #: ../../application/modules/admin/controllers/BibController.php:317
 #: ../../application/modules/admin/controllers/BibController.php:256
+#: ../../application/modules/admin/controllers/BibController.php:257
 #, php-format
 msgid "Modifier un plan de la bibliothèque: %s"
 msgstr "Modificar la biblioteca del plan: %s"
@@ -10341,6 +10846,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/PrintController.php:31
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
 msgid "Modèles d'impressions"
 msgstr "Plantillas de impresión"
 
@@ -10393,6 +10899,7 @@ msgstr "Etiquetas de moderación en los registros"
 #: ../../application/modules/opac/controllers/RssController.php:217
 #: ../../application/modules/opac/controllers/RssController.php:236
 #: ../../application/modules/opac/controllers/RssController.php:232
+#: ../../application/modules/opac/controllers/RssController.php:218
 msgid "Modérations"
 msgstr "Moderaciones"
 
@@ -10406,13 +10913,20 @@ msgid "Moissonnage ArteVOD"
 msgstr "ArteVOD cosecha"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:166
+#: ../../application/modules/admin/controllers/HarvestController.php:144
 msgid "Moissonnage Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:132
+#: ../../application/modules/admin/controllers/HarvestController.php:110
 msgid "Moissonnage Orphea"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43
+#, fuzzy
+msgid "Moissonnage automatique"
+msgstr "Cosechar Numilog"
+
 #: ../../application/modules/admin/controllers/ExternalAgendasController.php:34
 #, php-format
 msgid "Moissonnage des évènements de l'agenda \"%s\""
@@ -10424,6 +10938,7 @@ msgid "Moissonnage en cours"
 msgstr "La cosecha en curso"
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:28
 #, fuzzy
 msgid "Moissonner"
 msgstr "ArteVOD cosecha"
@@ -10433,6 +10948,11 @@ msgstr "ArteVOD cosecha"
 msgid "Moissonner catalogue %s"
 msgstr "Catálogo Harvest %s"
 
+#: ../../library/Class/Batch/ExternalAgenda.php:27
+#, fuzzy
+msgid "Moissonner les agendas externes"
+msgstr "Gestión de usuarios"
+
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:46
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:47
 msgid "Mon compte"
@@ -10532,6 +11052,7 @@ msgid "Mots-clef"
 msgstr "Use palabras clave"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
 msgid "Multimedia"
 msgstr "Multimedia"
 
@@ -10559,7 +11080,7 @@ msgstr ""
 msgid "Médiathèque"
 msgstr "Páginas web"
 
-#: ../../library/Class/Bib.php:320
+#: ../../library/Class/Bib.php:320 ../../library/Class/Bib.php:317
 msgid "N'envoie pas de données"
 msgstr "No envíe datos"
 
@@ -10654,6 +11175,7 @@ msgstr "Desconocido Newsletter"
 
 #: ../../library/Class/User/SearchCriteria.php:153
 #: ../../library/ZendAfi/Form/Admin/User.php:125
+#: ../../library/Class/User/SearchCriteria.php:156
 msgid "Niveau d'accès"
 msgstr ""
 
@@ -10712,6 +11234,7 @@ msgstr ""
 "reservar"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:82
+#: ../../application/modules/opac/views/scripts/head.phtml:81
 msgid "Noir sur blanc"
 msgstr "Negro sobre blanco"
 
@@ -10783,6 +11306,8 @@ msgstr "Negro sobre blanco"
 #: ../../application/modules/admin/views/scripts/newsletter/edit-subscribers.phtml:43
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:84
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:36
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:95
+#: ../../library/ZendAfi/Form/Register.php:198
 msgid "Nom"
 msgstr "Nombre"
 
@@ -10818,6 +11343,7 @@ msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #, fuzzy
 msgid "Nom du domaine"
 msgstr "Cesta Nombre"
@@ -10869,6 +11395,11 @@ msgstr ""
 msgid "Nombre d'albums"
 msgstr "Categorías de álbumes"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
+#, fuzzy
+msgid "Nombre d'articles"
+msgstr "Categorías de álbumes"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:58
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:49
 msgid "Nombre d'articles les plus récents à analyser"
@@ -10890,6 +11421,7 @@ msgid "Nombre d'articles à analyser"
 msgstr "Número de etiquetas para visualizar"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:3
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:4
 #, php-format
 msgid "Nombre d'avis abonnés : %s"
 msgstr "Avisos de suscriptores: %s"
@@ -10903,12 +11435,28 @@ msgstr ""
 msgid "Nombre d'avis à afficher"
 msgstr "Número de etiquetas para visualizar"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:8
+#, fuzzy
+msgid "Nombre d'exemplaires"
+msgstr "No se copia."
+
+#: ../../library/ZendAfi/Form/Configuration/MyCarouselImgObject.php:52
+#, fuzzy
+msgid "Nombre d'images en hauteur"
+msgstr "Número de etiquetas para visualizar"
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:215
 #, fuzzy
 msgid "Nombre d'inscrits"
 msgstr "Número de participantes"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:9
+#, fuzzy
+msgid "Nombre d'intégrations programmées"
+msgstr "Boletines"
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:81
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:3
 msgid "Nombre d'utilisateurs"
 msgstr ""
 
@@ -10927,6 +11475,7 @@ msgid "Nombre d'évènements mis à jour : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:34
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:39
 #, fuzzy
 msgid "Nombre d'événements"
 msgstr "Número de registros por faceta"
@@ -10936,6 +11485,16 @@ msgstr "Número de registros por faceta"
 msgid "Nombre d'événements à afficher"
 msgstr "Número de etiquetas para visualizar"
 
+#: ../../library/Class/ExternalAgenda.php:29
+#, fuzzy, php-format
+msgid "Nombre d\\'événements créés : %s\n"
+msgstr "Avisos de suscriptores: %s"
+
+#: ../../library/Class/ExternalAgenda.php:30
+#, fuzzy, php-format
+msgid "Nombre d\\'événements mis à jour : %s\n"
+msgstr "Avisos de suscriptores: %s"
+
 #: ../../library/Class/AdminVar.php:348
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr ""
@@ -10988,7 +11547,13 @@ msgstr "Número de etiquetas para visualizar"
 msgid "Nombre de documents à analyser"
 msgstr "Tipo de Documento"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:7
+#, fuzzy
+msgid "Nombre de fils RSS référencés"
+msgstr "Consulte RSS seleccionado"
+
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:9
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:12
 #, php-format
 msgid "Nombre de formulaires : %s"
 msgstr "Número de formas: %s"
@@ -10998,22 +11563,36 @@ msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:20
+#: ../../library/Class/TableDescription/PNBItems.php:31
 msgid "Nombre de jours restant sur la licence"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9
+#, fuzzy
+msgid "Nombre de notices hors cache"
+msgstr "Número de registros por página"
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:116
 msgid "Nombre de notices par page"
 msgstr "Número de registros por página"
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
+#: ../../library/Class/SessionActivity.php:482
 msgid "Nombre de participants"
 msgstr "Número de participantes"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:4
+#, fuzzy
+msgid "Nombre de profils"
+msgstr "Número de participantes"
+
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:17
+#: ../../library/Class/TableDescription/PNBItems.php:28
 msgid "Nombre de prêts"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:18
+#: ../../library/Class/TableDescription/PNBItems.php:29
 msgid "Nombre de prêts simultanés"
 msgstr ""
 
@@ -11045,6 +11624,11 @@ msgstr "Número de resultados para mostrar"
 msgid "Nombre de sites par page"
 msgstr "Número de registros por página"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:6
+#, fuzzy
+msgid "Nombre de sites référencés"
+msgstr "Número de registros por página"
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/ListOfSites.php:39
 #, fuzzy
 msgid "Nombre de sites à afficher"
@@ -11060,20 +11644,33 @@ msgid "Nombre de tags à afficher"
 msgstr "Número de etiquetas para visualizar"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:5
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:8
 #, php-format
 msgid "Nombre de traductions : %s"
 msgstr "Número de traducciones: %s"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:14
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:16
 #, fuzzy, php-format
 msgid "Nombre de versions : %s"
 msgstr "Número de traducciones: %s"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:8
+#, fuzzy
+msgid "Nombre de vignettes non reconnues"
+msgstr "Directorio de miniaturas no editables"
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:7
+#, fuzzy
+msgid "Nombre de vignettes reconnues"
+msgstr "Número de divisiones"
+
 #: ../../library/Class/AdminVar.php:253
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:482
+#: ../../library/Class/CodifThesaurus.php:516
 #, php-format
 msgid "Nombre maximum d'élément à ce niveau déjà atteint (%s)"
 msgstr ""
@@ -11093,6 +11690,7 @@ msgid "Nombre à afficher"
 msgstr "Número de etiquetas para visualizar"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:39
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:42
 #, fuzzy
 msgid "Nombres de biliothèques par page"
 msgstr "Número de registros por página"
@@ -11103,6 +11701,9 @@ msgstr "Número de registros por página"
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:29
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:186
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:32
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:32
 msgid "Non"
 msgstr "No"
 
@@ -11110,7 +11711,12 @@ msgstr "No"
 msgid "Non affiché"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:28
+msgid "Non classé"
+msgstr ""
+
 #: ../../library/Class/Cosmogramme/Generator.php:195
+#: ../../library/Class/Cosmogramme/Generator.php:194
 msgid "Non demandée"
 msgstr ""
 
@@ -11210,6 +11816,7 @@ msgstr "Registros:"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36
 #: ../../library/Class/Codification.php:234
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
 msgid "Notices liées"
 msgstr "Registros vinculados"
 
@@ -11222,6 +11829,11 @@ msgstr "Registros similares"
 msgid "Notices traitées"
 msgstr "Registros vinculados"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:32
+#, fuzzy, php-format
+msgid "Notices à traiter: %s"
+msgstr "Registros vinculados"
+
 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9
 msgid ""
 "Nous utilisons uniquement des cookies visant à faciliter votre navigation. "
@@ -11325,6 +11937,7 @@ msgstr "Nuevo en:"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:111
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "Nouveautés de moins de: "
 msgstr "Nuevo en:"
 
@@ -11333,6 +11946,7 @@ msgid "Nouveautés uniquement"
 msgstr "Nuevo sólo"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:34
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
 msgid "Nouvelle Tâche"
 msgstr "Nueva tarea"
 
@@ -11348,6 +11962,7 @@ msgid "Nouvelle inscription à l'activité \"%s\""
 msgstr "Solicitud de inclusión en el boletín de noticias:"
 
 #: ../../application/modules/admin/controllers/BibController.php:104
+#: ../../application/modules/admin/controllers/BibController.php:105
 msgid "Nouvelle localisation"
 msgstr ""
 
@@ -11365,6 +11980,7 @@ msgid "Nouvelle relation"
 msgstr "Nueva relación"
 
 #: ../../library/Class/OneDTouchLink.php:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 #, fuzzy
 msgid "Nouvelle version"
 msgstr "Nueva relación"
@@ -11382,10 +11998,12 @@ msgid "Nuage de tags"
 msgstr "Nube de etiquetas"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
 msgid "Numilog"
 msgstr "Numilog"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
 msgid "Numérique Premium"
 msgstr "Digitales de suscripción"
 
@@ -11436,6 +12054,7 @@ msgstr "No de carné"
 #: ../../application/modules/telephone/controllers/AuthController.php:94
 #: ../../library/ZendAfi/Form/Register.php:184
 #: ../../library/ZendAfi/Form/Configuration/AuthRegister.php:77
+#: ../../library/ZendAfi/Form/Register.php:186
 msgid "N° de carte"
 msgstr "No de carné"
 
@@ -11449,6 +12068,7 @@ msgid "OK"
 msgstr "Okay"
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:68
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:75
 #, fuzzy, php-format
 msgid "OK, temps de traitement : %s"
 msgstr "Tipo de documento: %s"
@@ -11468,16 +12088,19 @@ msgstr "Objeto"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:69
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:78
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
 msgid "Objets flash"
 msgstr "Objetos Flash"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:67
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 msgid "Objets java-script"
 msgstr "Objetos java-script"
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:78
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:77
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:76
 msgid "Objets javascript"
 msgstr "Objetos JavaScript"
 
@@ -11499,6 +12122,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:121
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:122
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:124
 #, fuzzy
 msgid "Onglets"
 msgstr "Pestañas y bloques"
@@ -11575,6 +12199,7 @@ msgid "Ordre d'affichage"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:45
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:48
 #, fuzzy
 msgid "Ordre d'affichage des biliothèques"
 msgstr "Enchufe de la biblioteca:"
@@ -11599,6 +12224,7 @@ msgid "Origine des critiques"
 msgstr "Reseñas más recientes"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
 msgid "Orphea"
 msgstr ""
 
@@ -11620,6 +12246,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:28
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:187
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:35
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:31
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:31
 msgid "Oui"
 msgstr "Sí"
 
@@ -11643,6 +12272,7 @@ msgstr "Los campos disponibles"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:109
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:158
 msgid "Outils pour la page :"
 msgstr ""
 
@@ -11661,11 +12291,13 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 msgid "Ouverture"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:93
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
 msgid "Ouvertures"
 msgstr ""
 
@@ -11712,6 +12344,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/AlbumController.php:75
 #: ../../library/Class/Batch/Dilicom.php:30
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
 msgid "PNB Dilicom"
 msgstr ""
 
@@ -11721,6 +12354,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:298
 #: ../../application/modules/admin/controllers/ProfilController.php:305
+#: ../../application/modules/admin/controllers/ProfilController.php:308
 msgid "Page "
 msgstr ""
 
@@ -11747,6 +12381,7 @@ msgid "Page précédente"
 msgstr "Anterior"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:340
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:347
 #, fuzzy, php-format
 msgid "Page précédente du kiosque \"%s\""
 msgstr "Anterior"
@@ -11756,6 +12391,7 @@ msgid "Page suivante"
 msgstr "Página siguiente"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:349
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:356
 #, fuzzy, php-format
 msgid "Page suivante du kiosque \"%s\""
 msgstr "Página siguiente"
@@ -11769,6 +12405,7 @@ msgid "Pagination"
 msgstr "Paginación"
 
 #: ../../application/modules/admin/controllers/StatController.php:58
+#: ../../application/modules/admin/controllers/StatController.php:56
 #, fuzzy
 msgid "Palmarès des réservations de notices"
 msgstr "Premios reservas"
@@ -11829,6 +12466,7 @@ msgid "Paniers du domaine: %s"
 msgstr "Repleto de dominio: %s"
 
 #: ../../library/Class/PanierNotice.php:470
+#: ../../library/Class/PanierNotice.php:487
 msgid "Paniers sans domaine, rattachés à leur créateur"
 msgstr "Canastas sin dominio apegados a su creador"
 
@@ -11863,6 +12501,7 @@ msgstr "Número de participantes"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:78
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:80
 msgid "Par ordre alphabétique"
 msgstr ""
 
@@ -11877,6 +12516,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:53
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:36
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:79
 msgid "Par ordre de sélection"
 msgstr ""
 
@@ -11910,6 +12550,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:9
 #: ../../application/modules/admin/views/scripts/index/index.phtml:1
 #: ../../application/modules/admin/views/scripts/index/index.phtml:10
+#: ../../application/modules/admin/views/scripts/index/index.phtml:37
 msgid "Paramètres du site"
 msgstr "Configuración del sitio"
 
@@ -11963,6 +12604,7 @@ msgid "Participants"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:49
+#: ../../application/modules/admin/views/scripts/index/index.phtml:77
 msgid "Participez à la communauté"
 msgstr ""
 
@@ -11972,6 +12614,7 @@ msgid "Partout"
 msgstr "todo"
 
 #: ../../library/ZendAfi/Controller/Action.php:251
+#: ../../library/ZendAfi/Controller/Action.php:261
 msgid ""
 "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. "
 "Merci de remplir manuellement"
@@ -12075,12 +12718,14 @@ msgid "Permissions par défaut"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BibController.php:336
+#: ../../application/modules/admin/controllers/BibController.php:337
 #, php-format
 msgid "Permissions par défaut de la bibliothèque: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:39
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:30
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:92
 msgid "Personnaliser le lien du titre"
 msgstr ""
 
@@ -12115,6 +12760,7 @@ msgstr "Préstamos por cobrar"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 #: ../../application/modules/admin/views/scripts/bib/localisationsmaj.phtml:178
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
 msgid "Photo"
 msgstr "Foto"
 
@@ -12138,6 +12784,7 @@ msgid "Pictogramme"
 msgstr "Pictograma"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
 msgid "Pictogrammes des genres"
 msgstr "Géneros Pictogramas"
 
@@ -12154,6 +12801,7 @@ msgid "Pivot vers le bas"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
 msgid "Piwik"
 msgstr ""
 
@@ -12233,6 +12881,11 @@ msgstr "Plan asociado"
 msgid "Plan d'accès"
 msgstr "Plano de acceso"
 
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:4
+#, fuzzy
+msgid "Planification"
+msgstr "Publicación"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:80
 msgid "Planification des ouvertures"
 msgstr "Aberturas Planificación"
@@ -12242,6 +12895,15 @@ msgstr "Aberturas Planificación"
 msgid "Planification des ouvertures multimédia"
 msgstr "Aberturas Planificación"
 
+#: ../../application/modules/admin/controllers/BatchController.php:68
+#, fuzzy, php-format
+msgid "Planifier la tâche \"%s\""
+msgstr "Cambiar de ubicación: \"%s\""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
+msgid "Plannifier la tâche"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:72
 msgid "Plans de la bibliothèque"
 msgstr "Planes Biblioteca"
@@ -12259,6 +12921,7 @@ msgstr "Planes Biblioteca"
 #: ../../application/modules/admin/controllers/BibController.php:249
 #: ../../application/modules/admin/controllers/BibController.php:247
 #: ../../application/modules/admin/controllers/BibController.php:196
+#: ../../application/modules/admin/controllers/BibController.php:197
 #, php-format
 msgid "Plans de la bibliothèque: %s"
 msgstr "Los planes para la biblioteca: %s"
@@ -12298,6 +12961,7 @@ msgid "Position"
 msgstr "Posición"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:50
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:53
 msgid "Position de la pagination"
 msgstr ""
 
@@ -12306,6 +12970,7 @@ msgid "Position de la pagination en résultat de recherche"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:76
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:79
 #, fuzzy
 msgid "Position des filtres"
 msgstr "Gestión de usuarios"
@@ -12313,6 +12978,7 @@ msgstr "Gestión de usuarios"
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:8
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:11
 #: ../../application/modules/opac/controllers/AbonneController.php:871
+#: ../../application/modules/opac/controllers/AbonneController.php:870
 msgid "Poste"
 msgstr "Mensaje"
 
@@ -12336,6 +13002,7 @@ msgid "Pour quel jour ?"
 msgstr "¿Qué día?"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:779
+#: ../../application/modules/opac/controllers/AbonneController.php:778
 msgid "Pour quelle durée ?"
 msgstr "Por cuánto tiempo?"
 
@@ -12368,6 +13035,7 @@ msgid "Pourquoi suggérez-vous ce document ?"
 msgstr "¿Por qué le sugeriría este documento?"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 msgid "Premier-Chapitre"
 msgstr ""
 
@@ -12398,6 +13066,7 @@ msgid "Prendre le champ cote en"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:96
 msgid "Prenom"
 msgstr ""
 
@@ -12437,6 +13106,7 @@ msgid "Profil \"%s\" ajouté"
 msgstr "Cesta \"%s\", agregó"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/DataProfile.php:30
+#: ../../application/modules/admin/controllers/ProfilController.php:434
 #, fuzzy, php-format
 msgid "Profil \"%s\" sauvegardé"
 msgstr "Dominio %s salvos"
@@ -12457,6 +13127,7 @@ msgid "Profil courant dans la barre de navigation"
 msgstr "Visualizar el perfil coriente en la barra de navegación"
 
 #: ../../library/Class/Cosmogramme/Generator.php:360
+#: ../../library/Class/Cosmogramme/Generator.php:359
 #, php-format
 msgid "Profil de données %s (%d) non présent ou mal configuré"
 msgstr ""
@@ -12468,6 +13139,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
 msgid "Profils"
 msgstr "Perfiles"
 
@@ -12513,6 +13185,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Loans.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:46
+#: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:42
 msgid "Prolonger"
 msgstr "Extender"
 
@@ -12542,6 +13215,11 @@ msgstr "Indican las etiquetas de este manual"
 msgid "Proposer la sélection de bibliothèques"
 msgstr "Selección de bibliotecas"
 
+#: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:97
+#, fuzzy
+msgid "Proposer la sélection de domaines"
+msgstr "Selección del Sitio"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:41
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:43
 #, fuzzy
@@ -12573,6 +13251,7 @@ msgstr "Copias de bloques de la propiedad"
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:87
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:88
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:76
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:80
 #, fuzzy
 msgid "Propriétés"
 msgstr "Características del módulo"
@@ -12642,6 +13321,7 @@ msgid "Préférences"
 msgstr "SEO"
 
 #: ../../application/modules/admin/controllers/UsersController.php:47
+#: ../../application/modules/admin/controllers/UsersController.php:48
 msgid "Préférences utilisateur sauvegardées"
 msgstr ""
 
@@ -12654,11 +13334,13 @@ msgstr ""
 "gif."
 
 #: ../../application/modules/opac/controllers/AuthController.php:558
+#: ../../application/modules/opac/controllers/AuthController.php:567
 #, fuzzy
 msgid "Préinscription"
 msgstr "Registro"
 
 #: ../../application/modules/opac/controllers/AuthController.php:533
+#: ../../application/modules/opac/controllers/AuthController.php:541
 #, fuzzy, php-format
 msgid "Préinscription à %s"
 msgstr "Registro"
@@ -12699,6 +13381,7 @@ msgstr "Registro"
 #: ../../library/ZendAfi/Form/ContactForm.php:70
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:41
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:42
+#: ../../library/ZendAfi/Form/Register.php:210
 msgid "Prénom"
 msgstr "Nombre de pila"
 
@@ -12712,6 +13395,11 @@ msgstr "Nombre del responsable"
 msgid "Préparation des données"
 msgstr "Alertas de moderación"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:43
+#, fuzzy
+msgid "Présences"
+msgstr "SEO"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:92
 msgid "Présentation"
 msgstr ""
@@ -12787,6 +13475,7 @@ msgid "Prêts et réservations :"
 msgstr "Préstamos y reservas:"
 
 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:37
+#: ../../application/modules/opac/views/scripts/abonne/prets.phtml:35
 msgid "Prêts numériques en cours"
 msgstr ""
 
@@ -12886,15 +13575,22 @@ msgstr "¿En qué posición?"
 msgid "Quel secteur ?"
 msgstr "¿Qué sector?"
 
+#: ../../library/Class/WebService/SIGB/Nanook/Service.php:32
+msgid "Quota atteint pour ce type de document."
+msgstr ""
+
 #: ../../application/modules/opac/controllers/AbonneController.php:675
+#: ../../application/modules/opac/controllers/AbonneController.php:674
 msgid "Quota déjà atteint ce jour, choisissez un autre jour."
 msgstr "Quota ya alcanza este día, elegir otro día."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:681
+#: ../../application/modules/opac/controllers/AbonneController.php:680
 msgid "Quota déjà atteint ce mois, choisissez un autre mois."
 msgstr "Quota ya se reunió este mes, seleccionar otro mes."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:678
+#: ../../application/modules/opac/controllers/AbonneController.php:677
 msgid "Quota déjà atteint cette semaine, choisissez une autre semaine."
 msgstr "Quota ya alcanzó esta semana, elija otra semana."
 
@@ -12947,6 +13643,7 @@ msgid "Rapports"
 msgstr "Relaciones"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162
 msgid "Rapports statistiques"
 msgstr "Informes estadísticos"
 
@@ -12975,6 +13672,8 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 #: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:38
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
+#: ../../library/Class/User/SearchCriteria.php:81
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 msgid "Recherche"
 msgstr "Investigación"
 
@@ -13009,6 +13708,7 @@ msgid "Recherche élargie à"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:113
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:112
 #, php-format
 msgid "Recherche élargie à: %s"
 msgstr "búsqueda ampliadada con : \"%s\""
@@ -13023,6 +13723,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:156
 #: ../../library/ZendAfi/View/Helper/TreeView.php:54
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:36
+#: ../../library/Class/User/SearchCriteria.php:207
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:81
 msgid "Rechercher"
 msgstr "Buscar"
 
@@ -13080,6 +13782,8 @@ msgstr "Añadir una biblioteca"
 
 #: ../../application/modules/admin/controllers/StatController.php:43
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:115
+#: ../../application/modules/admin/controllers/StatController.php:41
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
 msgid "Recherches infructueuses"
 msgstr "Búsquedas fallidas"
 
@@ -13087,6 +13791,11 @@ msgstr "Búsquedas fallidas"
 msgid "Redmine n'est pas correctement configuré"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:15
+#, fuzzy
+msgid "Regénérer"
+msgstr "General"
+
 #: ../../library/ZendAfi/Form/Admin/Annexe.php:48
 #: ../../library/ZendAfi/Form/Admin/Section.php:40
 #, fuzzy
@@ -13168,6 +13877,7 @@ msgstr "Volver a la investigación original,"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:44
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:97
 msgid "Rendre le titre de la boite cliquable"
 msgstr ""
 
@@ -13233,6 +13943,7 @@ msgid "Restreindre à"
 msgstr "Limitado a:"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:155
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:154
 msgid "Restreint à :"
 msgstr "Limitado a:"
 
@@ -13250,6 +13961,7 @@ msgid "Retirer la facette: %s"
 msgstr "Ver facetas"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:139
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:138
 #, fuzzy, php-format
 msgid "Retirer le critère: %s"
 msgstr "Ir al sitio %s"
@@ -13375,6 +14087,7 @@ msgid "Retour à la liste des agendas"
 msgstr "Volver a la lista"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:10
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:11
 msgid "Retour à la liste des bibliothèques"
 msgstr ""
 
@@ -13397,6 +14110,7 @@ msgid "Rideau horizontal"
 msgstr "Carrusel horizontal"
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:97
 msgid "Role"
 msgstr ""
 
@@ -13436,10 +14150,12 @@ msgid "Récupération du mot de passe"
 msgstr "Nueva contraseña"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
 msgid "Rédacteur bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239
 msgid "Rédacteur portail"
 msgstr ""
 
@@ -13458,6 +14174,7 @@ msgstr "Escribe una respuesta."
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:412
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:407
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:376
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:389
 msgid "Référencement"
 msgstr "SEO"
 
@@ -13466,6 +14183,7 @@ msgid "Régénère le sitemap XML"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:21
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:19
 #, fuzzy
 msgid "Réinitialiser les vignettes non reconnues"
 msgstr "Directorio de miniaturas no editables"
@@ -13703,6 +14421,7 @@ msgstr "Registro"
 #: ../../library/ZendAfi/View/Helper/Accueil/Newsletters.php:59
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:48
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:53
+#: ../../library/Class/SessionActivity.php:513
 msgid "S'inscrire"
 msgstr "Registro"
 
@@ -13718,6 +14437,7 @@ msgstr "Edite la sesión: %s"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1178
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34
+#: ../../application/modules/opac/controllers/AbonneController.php:1177
 #, fuzzy
 msgid "S'inscrire à une activité"
 msgstr "Registrarse para la formación"
@@ -13727,6 +14447,7 @@ msgid "SIGB"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:85
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
@@ -13790,6 +14511,7 @@ msgstr "Cuadro de estilo"
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:12
 #: ../../application/modules/opac/controllers/AbonneController.php:870
+#: ../../application/modules/opac/controllers/AbonneController.php:869
 msgid "Secteur"
 msgstr "Sector"
 
@@ -13802,6 +14524,7 @@ msgid "Section"
 msgstr "Sección"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171
 #, php-format
 msgid "Section: %s"
 msgstr "Sección: %s"
@@ -13908,6 +14631,7 @@ msgstr "Servicio No Disponible"
 
 #: ../../application/modules/admin/views/scripts/activity/index.phtml:22
 #: ../../library/Class/CustomField/Model.php:53
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:109
 msgid "Session"
 msgstr "Sesión"
 
@@ -13916,11 +14640,26 @@ msgstr "Sesión"
 msgid "Session \"%s\" sauvegardée"
 msgstr "Sesión \"%s\" salvos"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:30
+#, php-format
+msgid "Session \"%s\" sauvegardée, son article lié a été mis à jour."
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
 #, php-format
 msgid "Session \"%s\" supprimée"
 msgstr "Sesión \"%s\" suprime"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
+#, php-format
+msgid "Session \"%s\" supprimée, son artilcle lié a été supprimé."
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:90
+#, fuzzy
+msgid "Session annulée"
+msgstr "Obra que no se encuentra"
+
 #: ../../application/modules/opac/controllers/AbonneController.php:92
 #, fuzzy
 msgid "Session non trouvée"
@@ -14005,6 +14744,7 @@ msgid "Site \"%s\" supprimé"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:51
+#: ../../application/modules/admin/views/scripts/index/index.phtml:79
 #, fuzzy
 msgid "Site communautaire"
 msgstr "Título o comentario requerida"
@@ -14038,10 +14778,12 @@ msgstr "Sitio: %s"
 
 #: ../../library/ZendAfi/Form/Admin/Location.php:34
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:548
 msgid "Site web"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:89
 #, fuzzy, php-format
 msgid "Site: %s"
 msgstr "Sitio: %s"
@@ -14071,6 +14813,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:83
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
 msgid "Sitothèque"
 msgstr "Páginas web"
 
@@ -14083,6 +14826,7 @@ msgid "Situer cet exemplaire dans la bibliothèque"
 msgstr "Coloque este ejemplar en la biblioteca"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
 msgid "SoundCloud"
 msgstr ""
 
@@ -14128,11 +14872,17 @@ msgstr "Título de la Subárea"
 msgid "Sous-zones d'auteurs<br>(séparées par des \";\")"
 msgstr "Subcampos autores: (separados por \";\")"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:37
+msgid "Stagiaires"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112
 msgid "Statistiques"
 msgstr "Estadísticas"
 
 #: ../../application/modules/admin/controllers/StatController.php:52
+#: ../../application/modules/admin/controllers/StatController.php:50
 #, fuzzy
 msgid "Statistiques des réservations de notices"
 msgstr "Reservas avisos"
@@ -14151,6 +14901,8 @@ msgstr "Estado"
 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:129
 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:144
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:397
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:38
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:63
 msgid "Statut"
 msgstr "Estado"
 
@@ -14181,6 +14933,7 @@ msgid "Style"
 msgstr "Estilo"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:71
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:74
 #, fuzzy
 msgid "Style d'affichage des filtres"
 msgstr "Enchufe de la biblioteca:"
@@ -14217,6 +14970,7 @@ msgid "Suggestion d'achat"
 msgstr "Compra"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:944
+#: ../../application/modules/opac/controllers/AbonneController.php:943
 msgid "Suggestion d'achat enregistrée"
 msgstr ""
 
@@ -14297,6 +15051,7 @@ msgid "Sujets"
 msgstr "Temas"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:225
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227
 msgid "Super administrateur"
 msgstr ""
 
@@ -14307,6 +15062,7 @@ msgstr "Apoyo"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:139
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
 msgid "Suppr."
 msgstr "Claro."
 
@@ -14362,6 +15118,9 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:509
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:23
 #: ../../library/ZendAfi/View/Helper/Admin/RenderVersionForm.php:165
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:26
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:37
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:35
 msgid "Supprimer"
 msgstr "Retire"
 
@@ -14376,12 +15135,14 @@ msgid "Supprimer %s de la sélection d'articles"
 msgstr "Retire los medios de comunicación seleccionados"
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:156
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:160
 #, fuzzy
 msgid "Supprimer cette boite"
 msgstr "Eliminar Categoría"
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:46
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:173
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:171
 msgid "Supprimer cette réservation"
 msgstr "Eliminar esta reserva"
 
@@ -14401,6 +15162,7 @@ msgid "Supprimer l'activité"
 msgstr "Eliminar Categoría"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:656
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:655
 #, fuzzy
 msgid "Supprimer l'album"
 msgstr "Retire"
@@ -14432,6 +15194,7 @@ msgid "Supprimer la bibliothèque: %s"
 msgstr "Retire Biblioteca: %s"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:699
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:698
 #, fuzzy
 msgid "Supprimer la catégorie"
 msgstr "Eliminar Categoría"
@@ -14447,6 +15210,7 @@ msgid "Supprimer la réservation du document %s"
 msgstr "Documento de solicitud de reserva"
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:47
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:61
 msgid "Supprimer la session"
 msgstr ""
 
@@ -14501,10 +15265,12 @@ msgstr "Filtro de Eventos"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:221
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:225
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:256
 msgid "Synchronisation du CSS avec GIT"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137
 msgid "Système"
 msgstr "Sistema"
 
@@ -14581,6 +15347,7 @@ msgid "Sélectionnez un lieu"
 msgstr "Selección del Sitio"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:455
+#: ../../application/modules/admin/controllers/ModulesController.php:454
 msgid "Sélectionnez un panier ou un domaine"
 msgstr "Seleccionar una cesta o dominio"
 
@@ -14599,6 +15366,7 @@ msgid "Tableau"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:64
+#: ../../application/modules/admin/controllers/StatController.php:62
 msgid "Tableau de bord PIWIK"
 msgstr ""
 
@@ -14699,14 +15467,17 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:113
 msgid "Territoire"
 msgstr "Territorio"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
 msgid "Territoires"
 msgstr "Territorios"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:268
+#: ../../application/modules/admin/controllers/SystemeController.php:274
 msgid "Test de l'envoi des mails"
 msgstr ""
 
@@ -14719,6 +15490,7 @@ msgid "Test des Web Services"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144
 msgid "Test des web-services"
 msgstr "Servicios de pruebas web"
 
@@ -14728,6 +15500,7 @@ msgid "Test du domaine: %s"
 msgstr "Repleto de dominio: %s"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147
 msgid "Test envoi mails"
 msgstr "Prueba de envío de mails"
 
@@ -15003,6 +15776,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Menu/SearchResult.php:30
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:88
 #: ../../library/ZendAfi/View/Helper/RecordTabs.php:40
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:32
+#: ../../library/Class/TableDescription/PNBItems.php:27
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:132
 msgid "Titre"
 msgstr "Título"
 
@@ -15110,6 +15886,7 @@ msgstr "Valores"
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
+#: ../../library/Class/User/SearchCriteria.php:157
 msgid "Tous"
 msgstr "Todos"
 
@@ -15138,6 +15915,11 @@ msgstr "Todos los documentos"
 msgid "Tous les jeudis"
 msgstr "Todos los jueves"
 
+#: ../../library/Class/Repeat/WeekDays.php:83
+#, fuzzy
+msgid "Tous les jours"
+msgstr "Todos los jueves"
+
 #: ../../library/Class/Ouverture.php:39
 msgid "Tous les lundis"
 msgstr "Todos los lunes"
@@ -15168,6 +15950,7 @@ msgid "Tous status"
 msgstr "Todos los documentos"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
 msgid "Tout Apprendre"
 msgstr "Aprenda todo"
 
@@ -15190,6 +15973,7 @@ msgid "Tout décocher"
 msgstr "Desmarcar todos"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:110
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:89
 msgid "Tout effacer"
 msgstr "Borrar todos"
 
@@ -15214,6 +15998,8 @@ msgstr "Últimas portal de noticias"
 #: ../../library/Class/User/SearchCriteria.php:134
 #: ../../library/Class/Bib.php:484
 #: ../../library/ZendAfi/View/Helper/ComboLibraries.php:37
+#: ../../library/Class/User/SearchCriteria.php:137
+#: ../../library/Class/Bib.php:474
 msgid "Toutes"
 msgstr "Todos"
 
@@ -15223,9 +16009,15 @@ msgid "Toutes les collections"
 msgstr "Añadir Collection"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:30
 msgid "Toutes les données de l'article seront effacées !"
 msgstr "Se borrarán todos los datos en el artículo!"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:21
+#, fuzzy
+msgid "Toutes les données de la bibliothèque seront effacées !"
+msgstr "Se borrarán todos los datos en el artículo!"
+
 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:53
 #, fuzzy
 msgid "Toutes les facettes"
@@ -15236,6 +16028,7 @@ msgid "Traduction"
 msgstr "Traducción"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
 msgid "Traductions"
 msgstr "Traducciones"
 
@@ -15253,6 +16046,11 @@ msgstr "Duplicar elemento: %s"
 msgid "Traitement de la page %d (nombre d'enregistrements: %d)"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/ArteVOD.php:63
+#, fuzzy, php-format
+msgid "Traitement de la page %s"
+msgstr "Moderación de revisar los registros"
+
 #: ../../library/Class/Systeme/Report/Cosmogramme.php:50
 #, fuzzy
 msgid "Traitement en cours depuis le"
@@ -15412,6 +16210,7 @@ msgstr "Tipo de documento requerido"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:121
 #: ../../library/ZendAfi/View/Helper/IconeSupport.php:52
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:99
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:98
 #, php-format
 msgid "Type de document: %s"
 msgstr "Tipo de documento: %s"
@@ -15488,6 +16287,8 @@ msgstr "Tipos de campos personalizados"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:75
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:324
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:323
 msgid "Types de documents"
 msgstr "Tipos de documentos"
 
@@ -15501,18 +16302,31 @@ msgid "Types de tags"
 msgstr "Tipos de Etiquetas"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
 msgid "Tâche ajoutée"
 msgstr "Tarea Alta"
 
 #: ../../application/modules/admin/controllers/BatchController.php:32
+#: ../../application/modules/admin/controllers/BatchController.php:97
 msgid "Tâche executée"
 msgstr "Tarea ejecutada"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+#, fuzzy
+msgid "Tâche sauvegardée"
+msgstr "Tarea eliminados"
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:33
 msgid "Tâche supprimée"
 msgstr "Tarea eliminados"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:28
+msgid "Tâche système non désactivable"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:37
 msgid "Tâches"
 msgstr "Tareas"
 
@@ -15591,6 +16405,7 @@ msgstr "Descargue la playlist (VLC, Winamp)"
 #: ../../application/modules/opac/controllers/AbonneController.php:470
 #: ../../application/modules/opac/controllers/AbonneController.php:471
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 msgid "Téléphone"
 msgstr "Teléfono"
 
@@ -15611,6 +16426,7 @@ msgstr "UNIMARC"
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:158
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:40
 msgid "URL"
 msgstr ""
 
@@ -15635,10 +16451,12 @@ msgid "URL de la page"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:147
+#: ../../application/modules/admin/controllers/HarvestController.php:125
 msgid "URL de la page Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:204
+#: ../../application/modules/admin/controllers/HarvestController.php:182
 msgid "URL de la piste SoundCloud"
 msgstr ""
 
@@ -15659,6 +16477,7 @@ msgid "URL du profil"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:546
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:545
 msgid "URL du site web"
 msgstr ""
 
@@ -15712,6 +16531,7 @@ msgid "Un courriel a été envoyé."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:545
+#: ../../application/modules/opac/controllers/AuthController.php:553
 #, fuzzy, php-format
 msgid ""
 "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ."
@@ -15742,6 +16562,7 @@ msgid "Un modèle a déjà le même nom : %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:393
+#: ../../application/modules/opac/controllers/AuthController.php:396
 msgid ""
 "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le "
 "compte qui utilise cet email."
@@ -15750,11 +16571,13 @@ msgstr ""
 "mediante este correo electrónico."
 
 #: ../../library/Class/ExternalAgenda.php:42
+#: ../../library/Class/ExternalAgenda.php:56
 #, fuzzy
 msgid "Une catégorie est requise"
 msgstr "Se requiere una etiqueta"
 
 #: ../../application/modules/opac/controllers/AuthController.php:421
+#: ../../application/modules/opac/controllers/AuthController.php:424
 msgid ""
 "Une demande de confirmation d'inscription vous a été envoyée à l'adresse "
 "mail renseignée."
@@ -15764,6 +16587,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:104
 #: ../../application/modules/admin/controllers/WidgetController.php:135
+#: ../../application/modules/admin/controllers/WidgetController.php:161
 msgid "Une erreur c'est produite, le menu n'a pas pu être supprimé"
 msgstr ""
 
@@ -15790,6 +16614,7 @@ msgid "Une erreur est survenue"
 msgstr "Ignorar el error y continuar"
 
 #: ../../application/modules/opac/controllers/AuthController.php:417
+#: ../../application/modules/opac/controllers/AuthController.php:420
 msgid ""
 "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez "
 "réessayer. Si le problème persiste, veuillez contacter votre médiathèque."
@@ -15799,6 +16624,7 @@ msgstr ""
 "su biblioteca."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1155
+#: ../../application/modules/opac/controllers/AbonneController.php:1154
 #, php-format
 msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s"
 msgstr ""
@@ -15812,7 +16638,8 @@ msgid "Une extension PHP a stoppé le téléchargement du fichier"
 msgstr ""
 
 #: ../../library/Class/Profil.php:1368 ../../library/Class/Profil.php:1372
-#: ../../library/Class/Profil.php:1376
+#: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369
+#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377
 msgid "Une marge interne de division ne peut pas excéder 20 pixels."
 msgstr ""
 
@@ -15931,6 +16758,7 @@ msgstr "Usuarios"
 
 #: ../../library/Class/Systeme/Report.php:41
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 msgid "Utilisateurs"
 msgstr "Usuarios"
 
@@ -15939,6 +16767,7 @@ msgid "Utilisation"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:10
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:3
 msgid "Utilisation des ressources PNB Dilicom"
 msgstr ""
 
@@ -16037,6 +16866,7 @@ msgstr "Valores de campo personalizado guardado"
 #: ../../library/ZendAfi/View/Helper/Admin/Button/Submit.php:26
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:49
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:51
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:56
 msgid "Valider"
 msgstr "Validar"
 
@@ -16068,12 +16898,14 @@ msgid "Variable"
 msgstr "Variable"
 
 #: ../../application/modules/admin/controllers/IndexController.php:93
+#: ../../application/modules/admin/controllers/IndexController.php:102
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:143
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
 msgid "Variables"
 msgstr "Variables"
 
@@ -16160,6 +16992,7 @@ msgid "Veuillez choisir une notice"
 msgstr "Por favor, seleccione un registro"
 
 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31
+#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32
 #, fuzzy
 msgid "Veuillez patienter ..."
 msgstr "Por favor espera ..."
@@ -16175,6 +17008,7 @@ msgid "Veuillez patienter : traitement en cours"
 msgstr "Por favor, espere: tratamiento actual"
 
 #: ../../application/modules/admin/controllers/StatController.php:66
+#: ../../application/modules/admin/controllers/StatController.php:64
 msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr ""
 
@@ -16210,17 +17044,20 @@ msgid "Vider"
 msgstr "Validar"
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14
 msgid "Vider la totalité du cache"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:80
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:129
 #, fuzzy
 msgid "Vider le cache"
 msgstr "Ver Cesta"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:133
 msgid "Vider le cache de Bokeh"
 msgstr ""
 
@@ -16286,6 +17123,8 @@ msgstr "Miniaturas"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:89
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
+#: ../../application/modules/admin/controllers/LieuController.php:34
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
 msgid "Ville"
 msgstr "Ciudad"
 
@@ -16294,6 +17133,7 @@ msgid "Visionner le film dans son intégralité"
 msgstr "Ver la película en su totalidad"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648
 #, fuzzy
 msgid "Visualisation de l\\album"
 msgstr "Vistas de registros"
@@ -16317,6 +17157,7 @@ msgid "Vitesse de défilement"
 msgstr "Recuentos"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79
 msgid "Vodeclic"
 msgstr "Vodeclic"
 
@@ -16327,6 +17168,11 @@ msgstr "Vodeclic"
 msgid "Voir"
 msgstr "Ver"
 
+#: ../../library/Class/TableDescription/PNBItems.php:39
+#, fuzzy
+msgid "Voir l'album"
+msgstr "Cambiar de ubicación: \"%s\""
+
 #: ../../library/ZendAfi/View/Helper/TagJamendoPlayer.php:32
 #, php-format
 msgid "Voir l'album \"%s\" sur Jamendo"
@@ -16386,11 +17232,13 @@ msgstr "Consulte RSS seleccionado"
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:21
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:23
 #: ../../application/modules/opac/views/scripts/panier/domain.phtml:19
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:20
 #, fuzzy
 msgid "Voir les paniers des professionnels"
 msgstr "Su cesta de documentos"
 
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:20
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:15
 #, fuzzy
 msgid "Voir les paniers rangés dans des domaines"
 msgstr "Guarde el carro en áreas"
@@ -16516,6 +17364,7 @@ msgstr ""
 "con la biblioteca"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:77
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
 #, fuzzy
 msgid "Votre adresse"
 msgstr "Su dirección de correo electrónico"
@@ -16563,6 +17412,7 @@ msgid "Votre avis"
 msgstr "Revisión"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1078
+#: ../../application/modules/opac/controllers/AbonneController.php:1077
 #, php-format
 msgid "Votre carte a été retirée à %s"
 msgstr ""
@@ -16598,6 +17448,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AuthController.php:263
 #: ../../application/modules/opac/controllers/AuthController.php:266
 #: ../../application/modules/opac/controllers/AuthController.php:335
+#: ../../application/modules/opac/controllers/AuthController.php:338
 msgid "Votre demande d'inscription"
 msgstr "Su solicitud"
 
@@ -16620,6 +17471,7 @@ msgid "Votre identifiant: "
 msgstr "Su nombre de usuario:"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:72
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:76
 #, fuzzy
 msgid "Votre identité"
 msgstr "Su s.v.p. identidad"
@@ -16655,6 +17507,7 @@ msgid "Votre mot de passe: "
 msgstr "Contraseña:"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:55
+#: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:54
 msgid "Votre prêt a bien été prolongé."
 msgstr ""
 
@@ -16663,6 +17516,7 @@ msgid "Votre réservation"
 msgstr "Su reserva"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:437
+#: ../../application/modules/opac/controllers/AbonneController.php:436
 #, fuzzy, php-format
 msgid "Votre réservation du document %s a bien été supprimée."
 msgstr "Tu sugerencia compra ha sido enviado."
@@ -16784,15 +17638,18 @@ msgid "Vous avez %d réservations en cours"
 msgstr "Tienes %de las reservas actuales"
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid "Vous avez bien été abonné à la newsletter: "
 msgstr "Ha sido suscrito a la newsletter:"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1144
+#: ../../application/modules/opac/controllers/AbonneController.php:1143
 #, php-format
 msgid "Vous avez déjà ajouté la carte de \"%s\""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:751
+#: ../../application/modules/opac/controllers/AbonneController.php:750
 msgid "Vous avez déjà une réservation dans ce créneau horaire"
 msgstr "Usted ya tiene una reserva en este intervalo de tiempo"
 
@@ -16869,10 +17726,12 @@ msgid "Vous devez confirmer le mot de passe"
 msgstr "Debe confirmar la contraseña"
 
 #: ../../library/Class/CodifThesaurus.php:469
+#: ../../library/Class/CodifThesaurus.php:503
 msgid "Vous devez définir au moins une règle"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:465
+#: ../../library/Class/CodifThesaurus.php:499
 msgid "Vous devez définir le libellé"
 msgstr ""
 
@@ -16915,9 +17774,15 @@ msgid "Vous devez saisir un numéro de téléphone"
 msgstr "Debe ingresar un número de teléfono"
 
 #: ../../library/Class/AvisNotice.php:382
+#: ../../library/Class/AvisNotice.php:386
 msgid "Vous devez saisir un titre"
 msgstr "Debe introducir un título"
 
+#: ../../application/modules/admin/controllers/AlbumController.php:185
+#, fuzzy
+msgid "Vous devez spécifier une catégorie à exporter"
+msgstr "Debe introducir un título"
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:54
 msgid "Vous devez sélectionner une bibliothèque"
 msgstr ""
@@ -17178,6 +18043,7 @@ msgid "Vous n'avez saisi aucune clef."
 msgstr "No ha introducido una clave."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1067
+#: ../../application/modules/opac/controllers/AbonneController.php:1066
 #, php-format
 msgid "Vous n'utilisez plus la carte de %s"
 msgstr ""
@@ -17190,6 +18056,7 @@ msgid "Vous n'êtes abonné à aucune lettre d'information"
 msgstr "Usted no está suscrito a ningún boletín"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:672
+#: ../../application/modules/opac/controllers/AbonneController.php:671
 msgid "Vous n'êtes pas autorisé à effectuer une réservation"
 msgstr "No se le permite hacer una reserva"
 
@@ -17199,6 +18066,7 @@ msgid "Vous n'êtes plus inscrit à la session du %s de l'activité %s"
 msgstr "Dejar de recibir el boletín de noticias:"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1138
+#: ../../application/modules/opac/controllers/AbonneController.php:1137
 msgid "Vous ne pouvez pas ajouter votre propre carte"
 msgstr ""
 
@@ -17273,6 +18141,7 @@ msgid "Web"
 msgstr "Web"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
+#: ../../application/modules/admin/views/scripts/index/index.phtml:81
 msgid "Wiki Bokeh"
 msgstr ""
 
@@ -17286,6 +18155,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:237
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:241
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:272
 msgid "ZF Debug"
 msgstr ""
 
@@ -17435,6 +18305,10 @@ msgstr "no"
 msgid "avec une vignette"
 msgstr "Editar miniaturas"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:25
+msgid "avi(s)"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:38
 #: ../../library/Class/Calendar.php:38 ../../library/Class/Calendar.php:39
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:43
@@ -17483,11 +18357,13 @@ msgstr "Destinatario"
 
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:53
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:70
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:69
 msgid "commence"
 msgstr "comienza"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:42
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:151
 msgid "commence par"
 msgstr "comienza"
 
@@ -17618,6 +18494,7 @@ msgid "dim."
 msgstr "Sun"
 
 #: ../../library/ZendAfi/Form/Admin/News.php:98
+#: ../../library/Class/Repeat/WeekDays.php:37
 msgid "dimanche"
 msgstr ""
 
@@ -17737,6 +18614,7 @@ msgstr "finaliza el"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:239
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:248
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:249
 #, php-format
 msgid "flux RSS de la boite %s"
 msgstr "RSS de la caja %s"
@@ -17781,6 +18659,7 @@ msgid "ignorer ce champ"
 msgstr "Tipo de campo"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:212
+#: ../../application/modules/admin/controllers/SystemeController.php:218
 msgid "import ok"
 msgstr ""
 
@@ -17814,6 +18693,7 @@ msgid "jeu."
 msgstr "jugar."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:95
+#: ../../library/Class/Repeat/WeekDays.php:34
 msgid "jeudi"
 msgstr ""
 
@@ -17894,6 +18774,7 @@ msgstr " %s"
 #: ../../application/modules/admin/controllers/BibController.php:292
 #: ../../application/modules/admin/controllers/BibController.php:75
 #: ../../application/modules/admin/controllers/BibController.php:356
+#: ../../application/modules/admin/controllers/BibController.php:357
 msgid "le libellé est obligatoire."
 msgstr "el idioma es obligatorio."
 
@@ -17989,6 +18870,7 @@ msgid "lun."
 msgstr "Mon"
 
 #: ../../library/ZendAfi/Form/Admin/News.php:92
+#: ../../library/Class/Repeat/WeekDays.php:31
 msgid "lundi"
 msgstr ""
 
@@ -18010,6 +18892,7 @@ msgid "mar."
 msgstr "Marzo"
 
 #: ../../library/ZendAfi/Form/Admin/News.php:93
+#: ../../library/Class/Repeat/WeekDays.php:32
 msgid "mardi"
 msgstr ""
 
@@ -18035,6 +18918,7 @@ msgid "mer."
 msgstr "Miér"
 
 #: ../../library/ZendAfi/Form/Admin/News.php:94
+#: ../../library/Class/Repeat/WeekDays.php:33
 msgid "mercredi"
 msgstr ""
 
@@ -18042,6 +18926,11 @@ msgstr ""
 msgid "minimum"
 msgstr "mínimo"
 
+#: ../../library/Class/SessionActivity.php:483
+#, php-format
+msgid "minimum : %s, maximum : %s"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:46
 msgid "mode liste simple"
@@ -18057,8 +18946,14 @@ msgstr "Moda pared"
 msgid "mode résumé d'article"
 msgstr "artículo de moda resumen"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:11
+#, fuzzy
+msgid "modifier"
+msgstr "Cambiar"
+
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "mois"
 msgstr ""
 
@@ -18168,6 +19063,7 @@ msgstr "Noviembre"
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:429
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:457
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:131
 msgid "n°"
 msgstr "No."
 
@@ -18225,6 +19121,11 @@ msgstr ""
 msgid "page "
 msgstr "página"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:34
+#, fuzzy
+msgid "panier(s)"
+msgstr "Carro de la compra:"
+
 #: ../../library/Class/Systeme/ModulesAccueil/News.php:60
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:76
 #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:49
@@ -18313,6 +19214,7 @@ msgid "pas de transfert pour : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358
+#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378
 msgid "pictogramme pour "
 msgstr ""
 
@@ -18396,6 +19298,7 @@ msgid "sam."
 msgstr "Sat"
 
 #: ../../library/ZendAfi/Form/Admin/News.php:97
+#: ../../library/Class/Repeat/WeekDays.php:36
 msgid "samedi"
 msgstr ""
 
@@ -18424,6 +19327,7 @@ msgid "septembre"
 msgstr "Septiembre"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:145
+#: ../../application/modules/admin/controllers/SystemeController.php:151
 msgid "site généré"
 msgstr ""
 
@@ -18440,6 +19344,11 @@ msgstr "fuente"
 msgid "sous-menu"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:18
+#, fuzzy
+msgid "supprimer"
+msgstr "Retire"
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125
 msgid "sélectionner un autre projet"
 msgstr ""
@@ -18509,6 +19418,7 @@ msgid "ven."
 msgstr "Vie"
 
 #: ../../library/ZendAfi/Form/Admin/News.php:96
+#: ../../library/Class/Repeat/WeekDays.php:35
 msgid "vendredi"
 msgstr ""
 
@@ -18541,6 +19451,7 @@ msgid "{contenu}"
 msgstr "Contenido"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:48
 #, fuzzy
 msgid "» Modifier «"
 msgstr "Cambiar"
@@ -18561,6 +19472,7 @@ msgid "À partir de"
 msgstr "Desde"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:777
+#: ../../application/modules/opac/controllers/AbonneController.php:776
 msgid "À partir de quelle heure ?"
 msgstr "A qué hora?"
 
@@ -18636,12 +19548,15 @@ msgstr "Gestión de Bibliotecas"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:48
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:138
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 msgid "État"
 msgstr "Estatus"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:492
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:73
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:88
+#: ../../application/modules/admin/controllers/ModulesController.php:491
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:92
 msgid "Étendre le paramétrage"
 msgstr ""
 
@@ -18695,6 +19610,7 @@ msgstr "¿Seguro que quieres eliminar esta capa?"
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:128
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:165
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:169
 msgid "Êtes-vous sur de vouloir supprimer cette boîte ?"
 msgstr ""
 
@@ -18977,9 +19893,6 @@ msgstr ""
 #~ msgid "Ajouter un modèle"
 #~ msgstr "Añadir un modelo"
 
-#~ msgid "Ajouter une boîte"
-#~ msgstr "Añadir una caja"
-
 #~ msgid "Ajouter une formation"
 #~ msgstr "Añadir el entrenamiento"
 
@@ -19179,9 +20092,6 @@ msgstr ""
 #~ msgid "Ecouter l'album"
 #~ msgstr "Escucha el disco"
 
-#~ msgid "Effectif maximum atteint"
-#~ msgstr "Máximo afectados"
-
 #~ msgid ""
 #~ "Entrez la liste des mots-clefs et expressions qui caractérisent votre "
 #~ "article séparés par ;"
@@ -19263,9 +20173,6 @@ msgstr ""
 #~ msgstr ""
 #~ "Hay <span class = 'número-búsqueda'> &nbsp;%d&nbsp </ span> Resultados"
 
-#~ msgid "Import EAD"
-#~ msgstr "Importar EAD"
-
 #~ msgid "Import des TYPO3 depuis le site SQY"
 #~ msgstr "Importar en el sitio web SQY TYPO3"
 
@@ -19332,9 +20239,6 @@ msgstr ""
 #~ msgid "Le mot de passe est obligatoire."
 #~ msgstr "La contraseña es necesaria."
 
-#~ msgid "Le panier "
-#~ msgstr "Cesta"
-
 #~ msgid "Le site \"%s\" a été supprimé"
 #~ msgstr "El sitio \"%s\" se ha eliminado"
 
@@ -19403,9 +20307,6 @@ msgstr ""
 #~ msgid "Modifier mes favoris (bibliothèques, domaines, ...)"
 #~ msgstr "Modificar la biblioteca: %s"
 
-#~ msgid "Moissonnage Numilog"
-#~ msgstr "Cosechar Numilog"
-
 #~ msgid "Moissonnage Tout Apprendre"
 #~ msgstr "Aprenda todo la cosecha"
 
@@ -19859,9 +20760,6 @@ msgstr ""
 #~ msgid "documents trouvés"
 #~ msgstr "Archivos encontrados"
 
-#~ msgid "en cours"
-#~ msgstr "en curso"
-
 #~ msgid "fermer cette fenêtre"
 #~ msgstr "cerrar esta ventana"
 
diff --git a/library/translation/fr.mo b/library/translation/fr.mo
index d5c877669054400b5f6d9cc662fd7c988b3f55cf..48e19c5205516cd29a01a0f1050b7986107deeaf 100644
Binary files a/library/translation/fr.mo and b/library/translation/fr.mo differ
diff --git a/library/translation/fr.po b/library/translation/fr.po
index c479a18345d8d548de1aa87c7f511ec97b6a1dcc..734509d1de3eb7ab654eca9b0f9dd0ebe656501f 100644
--- a/library/translation/fr.po
+++ b/library/translation/fr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-19 16:23+0200\n"
+"POT-Creation-Date: 2017-09-11 11:54+0200\n"
 "PO-Revision-Date: 2011-03-16 10:45+0100\n"
 "Last-Translator: Laurent Laffont <llaffont@afi-sa.fr>\n"
 "Language-Team: French\n"
@@ -45,6 +45,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:181
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:176
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:201
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208
 msgid " OU "
 msgstr ""
 
@@ -65,6 +67,7 @@ msgid " aux lettres d'information: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid " avec l'adresse suivante: "
 msgstr ""
 
@@ -136,14 +139,17 @@ msgid " ou "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:542
+#: ../../application/modules/opac/controllers/AbonneController.php:541
 msgid " par E-Mail"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:543
+#: ../../application/modules/opac/controllers/AbonneController.php:542
 msgid " par SMS"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:541
+#: ../../application/modules/opac/controllers/AbonneController.php:540
 msgid " par courrier postal"
 msgstr ""
 
@@ -487,6 +493,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:258
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:205
+#: ../../application/modules/admin/controllers/BibController.php:206
 msgid "** nouveau plan **"
 msgstr ""
 
@@ -531,6 +538,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:150
 #: ../../application/modules/admin/controllers/BibController.php:148
 #: ../../application/modules/admin/controllers/BibController.php:97
+#: ../../application/modules/admin/controllers/BibController.php:98
 msgid "** nouvelle localisation **"
 msgstr ""
 
@@ -617,6 +625,7 @@ msgid "1 notice trouvée"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:194
+#: ../../library/Class/Cosmogramme/Generator.php:193
 msgid "2 - Création des annexes"
 msgstr ""
 
@@ -631,6 +640,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:204
+#: ../../library/Class/Cosmogramme/Generator.php:203
 msgid "3 - Programmation des intégrations"
 msgstr ""
 
@@ -655,10 +665,12 @@ msgid "6 mois"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:250
+#: ../../library/Class/Cosmogramme/Generator.php:249
 msgid "7 - Création des classes Dewey"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:87
+#: ../../application/modules/opac/views/scripts/head.phtml:86
 #, php-format
 msgid ""
 "<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\" "
@@ -670,9 +682,15 @@ msgid "A"
 msgstr ""
 
 #: ../../library/Class/Indexation/PseudoNotice.php:141
+#: ../../library/Class/Indexation/PseudoNotice.php:143
 msgid "A consulter sur le portail"
 msgstr ""
 
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:30
+#, fuzzy
+msgid "A créé des paniers"
+msgstr "Entrez votre identité S.V.P."
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:186
 msgid "A côté de la liste"
 msgstr ""
@@ -686,6 +704,10 @@ msgstr ""
 msgid "A quoi servent les cookies émis sur notre site ?"
 msgstr ""
 
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:30
+msgid "A rédigé des avis"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:109
 msgid "A savoir"
 msgstr ""
@@ -706,6 +728,10 @@ msgstr ""
 msgid "ASCII DOS"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:6
+msgid "ATTENTION : Ceci effacera le contenu actuel de l'article."
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Admin/User.php:249
 msgid "Abonnement"
 msgstr ""
@@ -732,10 +758,12 @@ msgid "Abonnement aux lettres d'information"
 msgstr ""
 
 #: ../../library/Class/User/SearchCriteria.php:182
+#: ../../library/Class/User/SearchCriteria.php:185
 msgid "Abonnement valide"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
 msgid "Abonné SIGB"
 msgstr ""
 
@@ -745,6 +773,7 @@ msgid "Abonné non trouvé"
 msgstr "Limite du nombre de réservations atteinte"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:233
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
 msgid "Abonné portail"
 msgstr ""
 
@@ -805,6 +834,7 @@ msgstr ""
 #: ../../library/Class/MoteurRecherche.php:604
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
+#: ../../library/Class/MoteurRecherche.php:608
 msgid "Accueil"
 msgstr ""
 
@@ -817,10 +847,12 @@ msgid "Accès"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/footer.phtml:8
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:224
 msgid "Accès pro."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
 msgid "Accès à Cosmogramme"
 msgstr ""
 
@@ -855,11 +887,13 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:191
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
 msgid "Accéder aux articles dans l'interface d'administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:199
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 msgid "Accéder aux domaines dans l'interface d'administration"
 msgstr ""
 
@@ -873,6 +907,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:228
 msgid "Accéder à l'interface d'administration"
 msgstr ""
 
@@ -904,6 +939,8 @@ msgstr ""
 
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:37
 #: ../../library/Class/TableDescription.php:206
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:12
+#: ../../library/Class/TableDescription.php:222
 msgid "Actions"
 msgstr ""
 
@@ -958,6 +995,10 @@ msgstr ""
 msgid "Activer la redirection vers la liste d'articles"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37
+msgid "Activer la tâche"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293
@@ -973,6 +1014,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:126
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:130
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #, php-format
 msgid "Activer ou désactiver : %s"
 msgstr ""
@@ -1039,20 +1081,24 @@ msgid "Actuellement"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
 msgid "Administrateur bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240
 msgid "Administrateur portail"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:392
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:32
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:36
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:406
 msgid "Administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121
 msgid "Administration du portail"
 msgstr ""
 
@@ -1106,6 +1152,8 @@ msgstr ""
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:51
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:95
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
+#: ../../application/modules/admin/controllers/LieuController.php:33
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
 msgid "Adresse"
 msgstr ""
 
@@ -1155,6 +1203,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 msgid "Adresse mail"
 msgstr ""
 
@@ -1173,6 +1222,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Profile/Page.php:68
 #: ../../library/ZendAfi/View/Helper/Search/Display.php:27
 #: ../../library/ZendAfi/Form.php:237
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:363
 msgid "Affichage"
 msgstr ""
 
@@ -1210,6 +1260,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:66
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:69
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:71
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:23
 msgid "Afficher"
 msgstr ""
 
@@ -1267,6 +1318,7 @@ msgid "Afficher la carte"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:85
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:88
 msgid "Afficher la carte interactive"
 msgstr ""
 
@@ -1334,6 +1386,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:86
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:135
 msgid "Afficher les icones d'administration"
 msgstr ""
 
@@ -1393,6 +1446,7 @@ msgid "Afficher toutes les éditions de ce document"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:103
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:107
 msgid "Afficher un nouveau domaine"
 msgstr ""
 
@@ -1430,6 +1484,13 @@ msgstr ""
 msgid "Affiner le résultat par %s: %s"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/TagPreRegistration.php:29
+#, php-format
+msgid ""
+"Afin de finaliser votre inscription, merci de vous rendre dans votre "
+"médiathèque : %s"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:87
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:92
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:118
@@ -1442,6 +1503,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:66
 #: ../../library/ZendAfi/Form/Admin/News.php:80
 #: ../../library/ZendAfi/Form/Admin/News.php:75
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:70
 msgid "Agenda"
 msgstr ""
 
@@ -1477,6 +1539,10 @@ msgstr ""
 msgid "Ajout de domaine"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/RenderWidgetTemplates.php:28
+msgid "Ajout en cours"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:30
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:49
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:67
@@ -1549,6 +1615,7 @@ msgid "Ajouter un agenda"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:685
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:684
 msgid "Ajouter un album"
 msgstr ""
 
@@ -1626,6 +1693,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:254
 #: ../../application/modules/admin/controllers/BibController.php:203
+#: ../../application/modules/admin/controllers/BibController.php:204
 #, php-format
 msgid "Ajouter un plan de la bibliothèque: %s"
 msgstr ""
@@ -1690,13 +1758,24 @@ msgstr ""
 msgid "Ajouter une boite"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/WidgetController.php:180
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:119
+msgid "Ajouter une boîte"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:110
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:147
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:151
 msgid "Ajouter une boîte en-dessous"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:124
+msgid "Ajouter une boîte à cette page"
+msgstr ""
+
 #: ../../application/modules/opac/views/scripts/abonne/cards.phtml:44
 #: ../../application/modules/opac/controllers/AbonneController.php:1108
+#: ../../application/modules/opac/controllers/AbonneController.php:1107
 msgid "Ajouter une carte"
 msgstr ""
 
@@ -1711,6 +1790,7 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:541
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:544
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:669
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:668
 msgid "Ajouter une catégorie"
 msgstr ""
 
@@ -1727,14 +1807,17 @@ msgid "Ajouter une collection"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/bib/localisations.phtml:6
+#: ../../application/modules/admin/views/scripts/bib/localisations.phtml:8
 msgid "Ajouter une localisation"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:7
 msgid "Ajouter une plage d'ouverture"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:6
 msgid "Ajouter une plage horaire de réservation multimedia"
 msgstr ""
 
@@ -1751,6 +1834,7 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:528
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Sitotheque.php:169
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:678
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:677
 msgid "Ajouter une sous-catégorie"
 msgstr ""
 
@@ -1768,15 +1852,19 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:46
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49
+#: ../../application/modules/admin/controllers/HarvestController.php:128
+#: ../../application/modules/admin/controllers/HarvestController.php:185
 msgid "Album"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:155
+#: ../../application/modules/admin/controllers/HarvestController.php:133
 #, php-format
 msgid "Album \"%s\" importé de Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:212
+#: ../../application/modules/admin/controllers/HarvestController.php:190
 #, php-format
 msgid "Album \"%s\" importé de SoundCloud"
 msgstr ""
@@ -1820,6 +1908,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:267
 msgid "Amber IDE"
 msgstr ""
 
@@ -2033,6 +2122,20 @@ msgstr ""
 msgid "Article \"%s\" supprimé"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:17
+msgid "Article lié"
+msgstr ""
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:249
+#, php-format
+msgid "Article lié à \"%s\""
+msgstr ""
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:262
+#, php-format
+msgid "Article lié à \"%s\" regénéré."
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:102
 msgid "Article supprimé"
 msgstr ""
@@ -2048,6 +2151,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:58
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 msgid "Articles"
 msgstr ""
 
@@ -2098,13 +2202,15 @@ msgstr ""
 msgid "Au(x) type(s) de document"
 msgstr ""
 
-#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50
+#: ../../library/Class/ModeleFusion.php:75
+#: ../../library/Class/Ouverture.php:50
 #: ../../library/ZendAfi/Form/Album.php:235
 #: ../../library/ZendAfi/Form/Admin/News.php:243
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:53
 #: ../../library/ZendAfi/Form/Admin/Library.php:263
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
 msgid "Aucun"
 msgstr ""
 
@@ -2142,6 +2248,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModoController.php:829
 #: ../../application/modules/opac/controllers/AbonneController.php:941
+#: ../../application/modules/opac/controllers/AbonneController.php:940
 msgid "Aucun courriel envoyé, erreur: "
 msgstr ""
 
@@ -2201,6 +2308,7 @@ msgid "Aucun répertoire fourni"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:290
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:297
 msgid "Aucun résultat"
 msgstr ""
 
@@ -2211,6 +2319,7 @@ msgstr ""
 #: ../../library/Class/NoticeOAI.php:248
 #: ../../library/Class/MoteurRecherche.php:478
 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67
+#: ../../library/Class/MoteurRecherche.php:482
 msgid "Aucun résultat trouvé"
 msgstr ""
 
@@ -2224,6 +2333,9 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/ComboCategories.php:45
 #: ../../library/ZendAfi/View/Helper/GetSendProgressJsonFor.php:29
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:30
+#: ../../library/Class/Repeat/WeekDays.php:80
+#: ../../library/Class/Batch/Definition.php:68
+#: ../../library/Class/Batch/Definition.php:71
 msgid "Aucune"
 msgstr ""
 
@@ -2261,6 +2373,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:252
 #: ../../application/modules/opac/controllers/RssController.php:248
 #: ../../application/modules/opac/controllers/RssController.php:249
+#: ../../application/modules/opac/controllers/RssController.php:235
 msgid "Aucune donnée à modérer"
 msgstr ""
 
@@ -2407,6 +2520,7 @@ msgstr ""
 #: ../../library/Class/CriteresRecherche.php:141
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:22
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:35
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 msgid "Auteur"
 msgstr ""
 
@@ -2447,6 +2561,11 @@ msgstr ""
 msgid "Auteur : {notice.auteur_principal}"
 msgstr ""
 
+#: ../../application/modules/opac/controllers/BlogController.php:48
+#, fuzzy
+msgid "Auteur introuvable"
+msgstr "Limite du nombre de réservations atteinte"
+
 #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:48
 msgid "Auteur principal"
 msgstr ""
@@ -2531,6 +2650,7 @@ msgid "Avenio"
 msgstr ""
 
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:2
+#: ../../application/modules/opac/controllers/BlogController.php:51
 msgid "Avis"
 msgstr ""
 
@@ -2624,6 +2744,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:370
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:113
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:383
 msgid "Banniere"
 msgstr ""
 
@@ -2674,6 +2795,7 @@ msgid "Basculer automatiquement sur le profil"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:76
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:6
 msgid "Base de données"
 msgstr ""
 
@@ -2682,6 +2804,7 @@ msgid "Base de données : "
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141
 msgid "Batchs"
 msgstr ""
 
@@ -2802,6 +2925,8 @@ msgstr ""
 #: ../../library/Class/User/SearchCriteria.php:133
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:30
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:309
+#: ../../library/Class/User/SearchCriteria.php:136
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:98
 msgid "Bibliothèque"
 msgstr ""
 
@@ -2825,6 +2950,7 @@ msgid "Bibliothèque de destination"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Register.php:165
+#: ../../library/ZendAfi/Form/Register.php:167
 msgid "Bibliothèque de rattachement"
 msgstr ""
 
@@ -2844,14 +2970,17 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:90
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
 msgid "Bibliothèques"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:34
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:37
 msgid "Bibliothèques affichées"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:38
 msgid "Bibliothèques disponibles"
 msgstr ""
 
@@ -2860,6 +2989,7 @@ msgid "Bibliothèques favorites"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:32
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
 msgid "Bibliothèques à afficher"
 msgstr ""
 
@@ -2889,10 +3019,12 @@ msgid "Biographie de l'auteur"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:79
+#: ../../application/modules/opac/views/scripts/head.phtml:78
 msgid "Blanc sur noir"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:85
+#: ../../application/modules/opac/views/scripts/head.phtml:84
 msgid "Bleu sur jaune"
 msgstr ""
 
@@ -3165,11 +3297,13 @@ msgid "CSV avec séparateur : virgule"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
 msgid "Cache des images"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/activity/_activity_actions.phtml:11
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:21
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:30
 msgid "Cacher"
 msgstr ""
 
@@ -3207,15 +3341,18 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/BibView.php:166
 #: ../../application/modules/opac/controllers/AbonneController.php:1121
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:14
+#: ../../application/modules/opac/controllers/AbonneController.php:1120
 msgid "Carte"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1150
+#: ../../application/modules/opac/controllers/AbonneController.php:1149
 #, php-format
 msgid "Carte de \"%s\" ajoutée"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/BibController.php:256
+#: ../../application/modules/opac/controllers/BibController.php:241
 msgid "Carte des bibliothèques"
 msgstr ""
 
@@ -3224,6 +3361,7 @@ msgid "Carte des zones"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1097
+#: ../../application/modules/opac/controllers/AbonneController.php:1096
 msgid "Carte introuvable"
 msgstr ""
 
@@ -3244,14 +3382,17 @@ msgid "Catalogue"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169
 msgid "Catalogues"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
 msgid "Catalogues OPDS"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:41
 msgid "Categorie"
 msgstr ""
 
@@ -3326,6 +3467,7 @@ msgid "Catégorie parente"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:44
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:48
 msgid "Catégorie racine"
 msgstr ""
 
@@ -3351,6 +3493,7 @@ msgid "Cause"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:756
+#: ../../application/modules/opac/controllers/AbonneController.php:755
 msgid "Ce créneau n'est pas dans les heures d'ouverture."
 msgstr ""
 
@@ -3415,6 +3558,7 @@ msgid "Cet identifiant existe déjà."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:498
+#: ../../application/modules/opac/controllers/AuthController.php:501
 msgid "Cette fonctionnalité n'est pas activée."
 msgstr ""
 
@@ -3497,6 +3641,7 @@ msgid "Champs"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:61
 msgid "Champs affichées"
 msgstr ""
 
@@ -3506,6 +3651,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:85
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:59
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:62
 msgid "Champs disponibles"
 msgstr ""
 
@@ -3528,6 +3674,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/TagCustomFields.php:31
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomFieldMeta.php:35
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomField.php:38
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:161
 msgid "Champs personnalisés"
 msgstr ""
 
@@ -3544,6 +3691,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Record.php:33
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:128
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:55
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
 msgid "Champs à afficher"
 msgstr ""
 
@@ -3585,10 +3733,12 @@ msgid "Chercher dans les bibliothèques de votre choix"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:782
+#: ../../application/modules/opac/controllers/AbonneController.php:781
 msgid "Choisir"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:136
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:145
 msgid "Choisir un autre domaine"
 msgstr ""
 
@@ -3610,6 +3760,7 @@ msgid "Choisissez les dossiers à afficher"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Album.php:147
+#: ../../application/modules/admin/controllers/AlbumController.php:162
 msgid "Choisissez une catégorie"
 msgstr ""
 
@@ -3618,6 +3769,7 @@ msgid "Choisissez votre bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:66
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:70
 msgid "Choix de la bibliothèque"
 msgstr ""
 
@@ -3787,10 +3939,12 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ContactForm.php:78
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:56
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:83
+#: ../../application/modules/admin/controllers/LieuController.php:35
 msgid "Code postal"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
+#: ../../application/modules/admin/views/scripts/index/index.phtml:82
 msgid "Code source"
 msgstr ""
 
@@ -3812,6 +3966,7 @@ msgstr ""
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:47
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:44
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58
 msgid "Collection"
 msgstr ""
 
@@ -3837,6 +3992,7 @@ msgstr ""
 
 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:91
 #: ../../library/ZendAfi/Form/Search/Advanced.php:35
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:191
 msgid "Commence par"
 msgstr ""
 
@@ -3895,6 +4051,7 @@ msgid "Complet: maximum de personnes inscrites"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1215
+#: ../../application/modules/opac/controllers/AbonneController.php:1214
 msgid "Compléter votre adresse  email"
 msgstr ""
 
@@ -3924,6 +4081,10 @@ msgstr ""
 msgid "Compte d'assistance: %s"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121
+msgid "Compte-rendu"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:187
 msgid "Conditions inscription"
 msgstr ""
@@ -3952,10 +4113,15 @@ msgid "Configuration PNB Dilicom"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:301
+#: ../../application/modules/admin/controllers/ModulesController.php:300
 #, php-format
 msgid "Configuration de l'affichage du type %s"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:105
+msgid "Configuration de la page"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:204
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:208
 msgid "Configuration de la page courante"
@@ -3963,6 +4129,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:334
 #: ../../application/modules/admin/controllers/ProfilController.php:341
+#: ../../application/modules/admin/controllers/ProfilController.php:366
 #, php-format
 msgid "Configuration de la page: %s"
 msgstr ""
@@ -3978,6 +4145,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:477
 #: ../../application/modules/admin/controllers/ProfilController.php:492
+#: ../../application/modules/admin/controllers/ProfilController.php:522
 msgid "Configuration des pages appliquée à tous les autres profils."
 msgstr ""
 
@@ -3985,11 +4153,22 @@ msgstr ""
 msgid "Configuration du compte Redmine"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:91
+msgid "Configuration du profil"
+msgstr ""
+
 #: ../../application/modules/admin/controllers/ModulesController.php:287
+#: ../../application/modules/admin/controllers/ModulesController.php:286
 msgid "Configuration du résultat de recherche"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BibController.php:437
+#, fuzzy
+msgid "Configuration introuvable"
+msgstr "Limite du nombre de réservations atteinte"
+
 #: ../../application/modules/admin/controllers/ModulesController.php:464
+#: ../../application/modules/admin/controllers/ModulesController.php:463
 msgid "Configuration sauvegardée"
 msgstr ""
 
@@ -3998,13 +4177,23 @@ msgstr ""
 msgid "Configuration: colonne %s requise"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:110
+msgid "Configurer la page "
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:209
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:213
 msgid "Configurer la page courante dans l'interface d'administration"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:96
+#, fuzzy
+msgid "Configurer le profil "
+msgstr "Entrez votre identité S.V.P."
+
 #: ../../application/modules/opac/controllers/AbonneController.php:872
 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:2
+#: ../../application/modules/opac/controllers/AbonneController.php:871
 msgid "Confirmation"
 msgstr ""
 
@@ -4014,6 +4203,7 @@ msgid "Confirmation d'inscription à l'activité \"%s\""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:462
+#: ../../application/modules/opac/controllers/AuthController.php:465
 msgid "Confirmation d'inscription à la newsletter: "
 msgstr ""
 
@@ -4087,13 +4277,19 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:211
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:215
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:246
 msgid "Console d'administration"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:26
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:24
 msgid "Constitution du cache"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:31
+msgid "Constitution du cache en cours..."
+msgstr ""
+
 #: ../../application/modules/admin/controllers/BibController.php:566
 #: ../../application/modules/admin/controllers/BibController.php:574
 #: ../../application/modules/admin/controllers/BibController.php:593
@@ -4144,6 +4340,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ModeleFusion.php:59
 #: ../../library/ZendAfi/Form/SendMail.php:46
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:122
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:117
 msgid "Contenu"
 msgstr ""
 
@@ -4182,6 +4379,10 @@ msgid ""
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:13
+msgid "Contenu de la bibliothèque:"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:50
 msgid "Contenu du sommaire"
 msgstr ""
@@ -4191,12 +4392,14 @@ msgid "Contenu texte:"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:1
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:2
 msgid "Contenus liés à l'article"
 msgstr ""
 
 #: ../../library/Class/Codification.php:234
 #: ../../library/ZendAfi/Form/Search/Advanced.php:34
 #: ../../library/Class/Codification.php:235
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:192
 msgid "Contient"
 msgstr ""
 
@@ -4205,6 +4408,8 @@ msgid "Contracteur du PNB Dilicom"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:41
+#: ../../application/modules/admin/controllers/SystemeController.php:52
+#: ../../application/modules/admin/controllers/SystemeController.php:57
 msgid "Contrôle du cache des images"
 msgstr ""
 
@@ -4223,6 +4428,7 @@ msgid "Coordonnées carte"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:226
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:233
 msgid "Copier le code suivant sur le site où vous voulez afficher le kiosque"
 msgstr ""
 
@@ -4340,6 +4546,10 @@ msgstr ""
 msgid "Cover flow"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:85
+msgid "Coût"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/CreerPanier.php:35
 msgid "Creer le panier"
 msgstr ""
@@ -4368,6 +4578,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:266
 #: ../../application/modules/opac/controllers/RssController.php:268
 #: ../../application/modules/opac/controllers/RssController.php:269
+#: ../../application/modules/opac/controllers/RssController.php:252
 #, php-format
 msgid "Critiques de la sélection: %s"
 msgstr ""
@@ -4409,6 +4620,7 @@ msgid "Critères généraux"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:394
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:34
 msgid "Créateur"
 msgstr ""
 
@@ -4524,6 +4736,7 @@ msgid "Date"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:134
+#: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:135
 #, php-format
 msgid "Date : %s"
 msgstr ""
@@ -4534,11 +4747,13 @@ msgid "Date d'emprunt"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:135
 msgid "Date d'expiration"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:21
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:78
+#: ../../library/Class/TableDescription/PNBItems.php:32
 msgid "Date de commande"
 msgstr ""
 
@@ -4610,6 +4825,19 @@ msgstr ""
 msgid "Date du dernier vidage manuel du cache"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:41
+msgid "Date début"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:46
+msgid "Date fin"
+msgstr ""
+
+#: ../../library/Class/SessionActivity.php:460
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:50
+msgid "Date limite d'inscription"
+msgstr ""
+
 #: ../../application/modules/opac/views/scripts/abonne/activities-registered.phtml:45
 #: ../../application/modules/opac/views/scripts/abonne/activities.phtml:38
 #, php-format
@@ -4642,10 +4870,12 @@ msgid "Demande #%s enregistrée"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:400
+#: ../../application/modules/opac/controllers/AuthController.php:403
 msgid "Demande d'inscription à la lettre d'information: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:494
+#: ../../application/modules/opac/controllers/AuthController.php:497
 msgid "Demande de préinscription"
 msgstr ""
 
@@ -4737,6 +4967,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:99
 #: ../../application/modules/opac/controllers/RssController.php:118
 #: ../../application/modules/opac/controllers/RssController.php:113
+#: ../../application/modules/opac/controllers/RssController.php:104
 msgid "Derniers Fils RSS"
 msgstr ""
 
@@ -4770,6 +5001,7 @@ msgid "Dernière distribution"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:18
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 msgid "Dernière exécution"
 msgstr ""
 
@@ -4901,6 +5133,7 @@ msgid "Discographie complète de"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:58
+#: ../../application/modules/admin/views/scripts/index/index.phtml:86
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -5018,6 +5251,7 @@ msgid "Domaine de recherche"
 msgstr ""
 
 #: ../../library/Class/MoteurRecherche.php:441
+#: ../../library/Class/MoteurRecherche.php:445
 msgid "Domaine non paramétré"
 msgstr ""
 
@@ -5025,7 +5259,7 @@ msgstr ""
 msgid "Domaine parent"
 msgstr ""
 
-#: ../../library/Class/Album.php:1598
+#: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 msgid "Domaine public"
 msgstr ""
 
@@ -5040,6 +5274,10 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:59
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Domains.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
+#: ../../library/Class/Catalogue.php:1171
+#: ../../library/Class/Catalogue.php:1209
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:240
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:326
 msgid "Domaines"
 msgstr ""
 
@@ -5069,11 +5307,14 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:30
 #: ../../application/modules/admin/views/scripts/index/index.phtml:29
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/opac/controllers/RssController.php:219
 msgid "Données en attente de modération"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:129
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:131
 msgid "Droite"
 msgstr ""
 
@@ -5136,9 +5377,14 @@ msgstr ""
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:11
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-group.phtml:10
 #: ../../library/ZendAfi/Form/Album/Ressource.php:91
+#: ../../library/Class/SessionActivity.php:476
 msgid "Durée"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:70
+msgid "Durée (h)"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:76
 msgid "Durée (j)"
 msgstr ""
@@ -5148,6 +5394,7 @@ msgid "Durée de la session"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:19
+#: ../../library/Class/TableDescription/PNBItems.php:30
 msgid "Durée de prêt en jours"
 msgstr ""
 
@@ -5188,6 +5435,10 @@ msgstr ""
 msgid "Déconnexion"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/index/index.phtml:22
+msgid "Découvrir les nouveautés de la version 7.10"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:36
 msgid "Défilement"
 msgstr ""
@@ -5209,11 +5460,13 @@ msgid "Délai de transition pour le passage à une autre image en secondes"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:4
+#: ../../application/modules/admin/views/scripts/index/index.phtml:32
 msgid "Démonstrations vidéos"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:265
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:296
 msgid "Déplacement des boites"
 msgstr ""
 
@@ -5234,6 +5487,10 @@ msgstr ""
 msgid "Désactiver l'auto-complétion"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
+msgid "Désactiver la tâche"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:293
 msgid "Désactiver pour passer le site en maintenance"
 msgstr ""
@@ -5266,6 +5523,7 @@ msgid "Désinscription de l'activité \"%s\""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:439
+#: ../../application/modules/opac/controllers/AuthController.php:442
 msgid "Désinscription de la lettre d'information: "
 msgstr ""
 
@@ -5309,6 +5567,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:248
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:279
 msgid "Développement"
 msgstr ""
 
@@ -5393,6 +5652,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:157
 #: ../../application/modules/admin/controllers/WidgetController.php:200
+#: ../../application/modules/admin/controllers/WidgetController.php:227
 #, php-format
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr ""
@@ -5429,6 +5689,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RechercheController.php:454
 #: ../../application/modules/opac/controllers/RechercheController.php:472
 #: ../../application/modules/opac/controllers/RechercheController.php:463
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159
 #, php-format
 msgid "Editeur : %s"
 msgstr ""
@@ -5443,6 +5704,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:95
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:99
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:144
 msgid "Editeur CSS"
 msgstr ""
 
@@ -5461,6 +5723,14 @@ msgstr ""
 msgid "Edition"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:63
+msgid "Effectif maximum"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:56
+msgid "Effectif minimum"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:40
 msgid "Effectuer un test d'envoi"
 msgstr ""
@@ -5475,6 +5745,7 @@ msgid "Elargir la recherche sur tous les mots"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:91
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
 msgid "Elargir la recherche à tous les sites"
 msgstr ""
 
@@ -5534,6 +5805,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:289
 #: ../../library/ZendAfi/View/Helper/TagDilicomWidget.php:94
+#: ../../library/ZendAfi/View/Helper/Telephone/TagDilicomWidget.php:48
 msgid "Emprunter le livre au format EPUB"
 msgstr ""
 
@@ -5562,16 +5834,19 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:87
 msgid "En bas"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
 msgid "En haut"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:88
 msgid "En haut et en bas"
 msgstr ""
 
@@ -5604,10 +5879,12 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:60
+#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:77
 msgid "Enregistrer comme filtres par défaut"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:45
 msgid "Enregistrer mes modifications"
 msgstr ""
 
@@ -5620,6 +5897,7 @@ msgid "Entrepot"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
 msgid "Entrepôts OAI"
 msgstr ""
 
@@ -5701,7 +5979,7 @@ msgstr ""
 msgid "Envoi impossible : erreur à la création de la commande d'envoi"
 msgstr ""
 
-#: ../../library/Class/Bib.php:321
+#: ../../library/Class/Bib.php:321 ../../library/Class/Bib.php:318
 msgid "Envoie des données"
 msgstr ""
 
@@ -5715,6 +5993,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ReponseFormulaireMail.php:52
 #: ../../library/ZendAfi/Form/SuggestionAchat.php:61
 #: ../../library/ZendAfi/Form/SendMail.php:53
+#: ../../application/modules/admin/controllers/SystemeController.php:292
 msgid "Envoyer"
 msgstr ""
 
@@ -5774,6 +6053,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:382
 #: ../../application/modules/opac/controllers/AbonneController.php:385
 #: ../../application/modules/opac/controllers/AbonneController.php:386
+#: ../../application/modules/opac/controllers/RssController.php:57
 msgid "Erreur"
 msgstr ""
 
@@ -5783,6 +6063,7 @@ msgid "Erreur : %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:146
+#: ../../application/modules/admin/controllers/IndexController.php:156
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -5827,6 +6108,7 @@ msgid "Erreur d'envoi: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:128
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:129
 msgid "Erreur de configuration"
 msgstr ""
 
@@ -5834,6 +6116,10 @@ msgstr ""
 msgid "Erreur de connexion"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BibController.php:452
+msgid "Erreur de sauvegarde des filtres par défaut."
+msgstr ""
+
 #: ../../application/modules/admin/controllers/RedmineController.php:120
 msgid "Erreur lors de l'enregistrement"
 msgstr ""
@@ -5847,11 +6133,13 @@ msgid "Erreur lors de l'envoi"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:72
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:79
 #, php-format
 msgid "Erreur lors de l'execution du batch %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:472
+#: ../../application/modules/opac/controllers/AuthController.php:475
 msgid "Erreur lors de l\\inscription à la newsletter."
 msgstr ""
 
@@ -5870,6 +6158,7 @@ msgid "Erreur(s) : %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:111
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
@@ -5896,10 +6185,12 @@ msgid "Etat de la communication"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:25
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Etat du site"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:306
+#: ../../application/modules/admin/controllers/SystemeController.php:312
 msgid "Etat du système"
 msgstr ""
 
@@ -5911,9 +6202,14 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:95
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:172
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:170
 msgid "Etes vous sûr de vouloir supprimer cette réservation ?"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
+msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:12
 msgid "Etes-vous sur de vouloir supprimer ce point ?"
 msgstr ""
@@ -5934,6 +6230,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette annexe ?"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:706
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:705
 msgid "Etes-vous sûr de vouloir supprimer cette catégorie ?"
 msgstr ""
 
@@ -5976,6 +6273,7 @@ msgid "Expire le"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157
 msgid "Explorateur de fichiers"
 msgstr ""
 
@@ -5983,6 +6281,10 @@ msgstr ""
 msgid "Explorer le serveur"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:4
+msgid "Export"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:23
 msgid "Export CSV"
 msgstr ""
@@ -5996,6 +6298,7 @@ msgid "Export unimarc"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:29
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:55
 msgid "Exporter"
 msgstr ""
 
@@ -6016,6 +6319,7 @@ msgid "Exporter en liste"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:14
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:8
 msgid "Exporter le tableau en CSV"
 msgstr ""
 
@@ -6046,6 +6350,7 @@ msgid "Expéditeur:"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BatchController.php:39
+#: ../../application/modules/admin/controllers/BatchController.php:107
 #, php-format
 msgid "Exécution du traitement \"%s\""
 msgstr ""
@@ -6118,6 +6423,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:226
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:230
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 msgid "Faire une demande de mise à jour de la charte graphique"
 msgstr ""
 
@@ -6235,6 +6541,7 @@ msgid "Filtrage des données"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:383
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:397
 msgid "Filtrage du contenu"
 msgstr ""
 
@@ -6301,6 +6608,7 @@ msgid "Filtres activés"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:69
 msgid "Filtres affichées"
 msgstr ""
 
@@ -6309,6 +6617,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:35
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:89
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:37
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:70
 msgid "Filtres disponibles"
 msgstr ""
 
@@ -6317,6 +6626,7 @@ msgid "Filtres issus du domaine"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:63
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
 msgid "Filtres à afficher"
 msgstr ""
 
@@ -6445,6 +6755,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:130
 msgid "Gauche"
 msgstr ""
 
@@ -6505,6 +6816,7 @@ msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:52
+#: ../../application/modules/admin/views/scripts/index/index.phtml:80
 msgid "Google group Bokeh"
 msgstr ""
 
@@ -6538,6 +6850,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/User.php:136
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
 msgid "Groupes"
 msgstr ""
 
@@ -6558,6 +6871,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:155
+#: ../../application/modules/admin/controllers/SystemeController.php:140
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154
 msgid "Génération du site"
 msgstr ""
 
@@ -6586,6 +6901,11 @@ msgstr ""
 msgid "Généré le"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#, php-format
+msgid "Généré pour la session d'activité %s"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:134
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
@@ -6597,6 +6917,7 @@ msgid "Gérer les medias"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:641
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:640
 msgid "Gérer les médias"
 msgstr ""
 
@@ -6606,6 +6927,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1021
 #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33
+#: ../../application/modules/opac/controllers/AbonneController.php:1020
 msgid "Gérer mes favoris"
 msgstr ""
 
@@ -6615,6 +6937,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:83
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:82
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:81
 msgid "HTML"
 msgstr ""
 
@@ -6679,6 +7002,7 @@ msgid "Hauteur du widget en pixels"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:67
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:214
 msgid "Hierarchie contient"
 msgstr ""
 
@@ -6694,6 +7018,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129
 msgid "Historique des modifications"
 msgstr ""
 
@@ -6714,6 +7039,10 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/BibView.php:179
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:104
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:868
+#: ../../library/Class/SessionActivity.php:469
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:75
 msgid "Horaires"
 msgstr ""
 
@@ -6804,6 +7133,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:37
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:38
+#: ../../application/modules/admin/controllers/LieuController.php:31
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94
 msgid "Identifiant"
 msgstr ""
 
@@ -6832,6 +7163,7 @@ msgid "Identifiant du project Redmine"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1133
+#: ../../application/modules/opac/controllers/AbonneController.php:1132
 msgid "Identifiant et/ou mot de passe incorrect"
 msgstr ""
 
@@ -6879,6 +7211,7 @@ msgid "Ignorer l'erreur et continuer"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:252
+#: ../../library/Class/Cosmogramme/Generator.php:251
 msgid "Ignoré en mode mise à jour"
 msgstr ""
 
@@ -6905,15 +7238,15 @@ msgstr ""
 msgid "Il faut compléter tous les champs."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1356
+#: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357
 msgid "Il manque la largeur de la division 1."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1360
+#: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361
 msgid "Il manque la largeur de la division 2."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1364
+#: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365
 msgid "Il manque la largeur de la division 3."
 msgstr ""
 
@@ -6923,6 +7256,7 @@ msgid "Il n'est pas possible de sélectionner plus de %d éléments"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:122
+#: ../../application/modules/admin/controllers/SystemeController.php:128
 msgid "Il n'y a aucune donnée à importer."
 msgstr ""
 
@@ -6945,6 +7279,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:197
 #: ../../application/modules/opac/controllers/RssController.php:216
 #: ../../application/modules/opac/controllers/RssController.php:212
+#: ../../application/modules/opac/controllers/RssController.php:203
 msgid "Il y a un problème avec l'adresse du flux RSS"
 msgstr ""
 
@@ -6969,15 +7304,22 @@ msgstr ""
 msgid "Image par image"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
+msgid "Import"
+msgstr ""
+
 #: ../../application/modules/admin/controllers/HarvestController.php:223
+#: ../../application/modules/admin/controllers/HarvestController.php:201
 msgid "Import SoundCloud"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173
 msgid "Import Thesaurus"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151
 msgid "Import avis opac2"
 msgstr ""
 
@@ -6986,28 +7328,36 @@ msgid "Import d'articles TYPO3"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:112
+#: ../../application/modules/admin/controllers/SystemeController.php:118
 msgid "Import des avis opac2"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:33
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:15
 msgid "Import des offres Dilicom/PNB"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
 msgid "Import/Export EAD"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:196
+#: ../../application/modules/admin/controllers/SystemeController.php:202
 msgid "Importation d'un thesaurus"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:151
 #: ../../application/modules/admin/controllers/HarvestController.php:208
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:550
+#: ../../application/modules/admin/controllers/HarvestController.php:129
+#: ../../application/modules/admin/controllers/HarvestController.php:186
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
 msgid "Importer"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/AlbumController.php:133
+#: ../../application/modules/admin/controllers/AlbumController.php:136
 msgid "Importer le fichier XML"
 msgstr ""
 
@@ -7042,6 +7392,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:34
 #: ../../application/modules/opac/controllers/RssController.php:39
 #: ../../application/modules/opac/controllers/RssController.php:58
+#: ../../application/modules/opac/controllers/RssController.php:51
 msgid "Impossible de lire le flux rss"
 msgstr ""
 
@@ -7074,9 +7425,15 @@ msgid "Impossible de télécharger le fichier %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagPrintLink.php:28
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:49
 msgid "Imprimer"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20
+#, php-format
+msgid "Imprimer %s"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8
 #: ../../library/Class/IntProfilDonnees.php:83
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42
@@ -7151,6 +7508,11 @@ msgstr ""
 msgid "Indexer les titres de notice pour l'autocompletion"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:146
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:217
+msgid "Indice commence par"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:87
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:91
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:114
@@ -7168,6 +7530,8 @@ msgid "Indices dewey"
 msgstr ""
 
 #: ../../library/Class/User/SearchCriteria/NewsletterSubscriptionStatus.php:41
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:33
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:33
 msgid "Indifférent"
 msgstr ""
 
@@ -7202,6 +7566,7 @@ msgid "Information"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:85
 msgid "Information de contact"
 msgstr ""
 
@@ -7227,6 +7592,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:263
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
+#: ../../application/modules/admin/controllers/SystemeController.php:269
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
 msgid "Informations système"
 msgstr ""
 
@@ -7261,10 +7628,12 @@ msgid "Inscription non permise"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:383
+#: ../../application/modules/opac/controllers/AuthController.php:386
 msgid "Inscription à la lettre d'information: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:465
+#: ../../application/modules/opac/controllers/AuthController.php:468
 msgid "Inscription à la newsletter invalide."
 msgstr ""
 
@@ -7326,6 +7695,8 @@ msgid "Intervalle 3 secondes."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:119
+#: ../../library/Class/SessionActivity.php:497
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:113
 msgid "Intervenants"
 msgstr ""
 
@@ -7340,11 +7711,12 @@ msgstr ""
 msgid "Invalid type given, value should be a string"
 msgstr "Type de donnée non valide : chaîne attendue"
 
-#: ../../library/Class/Bib.php:319
+#: ../../library/Class/Bib.php:319 ../../library/Class/Bib.php:316
 msgid "Invisible"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:232
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
 msgid "Invité"
 msgstr ""
 
@@ -7365,6 +7737,7 @@ msgid "J'utilise les cartes suivantes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
 msgid "Jamendo"
 msgstr ""
 
@@ -7412,6 +7785,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:868
 #: ../../library/ZendAfi/Form/Admin/Ouverture.php:44
 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:867
 msgid "Jour"
 msgstr ""
 
@@ -7460,6 +7834,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Action.php:45
+#: ../../library/ZendAfi/Controller/Action.php:53
 #, php-format
 msgid "L'action %s est déjà définie`"
 msgstr ""
@@ -7475,6 +7850,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:146
 #: ../../application/modules/opac/controllers/RssController.php:165
 #: ../../application/modules/opac/controllers/RssController.php:161
+#: ../../application/modules/opac/controllers/RssController.php:152
 msgid "L'adresse du flux RSS n'est plus valide."
 msgstr ""
 
@@ -7532,11 +7908,13 @@ msgid "L'avis doit avoir une longueur comprise entre %d et %d caractères"
 msgstr ""
 
 #: ../../library/Class/AvisNotice.php:396
+#: ../../library/Class/AvisNotice.php:400
 #, php-format
 msgid "L'avis doit avoir une longueur comprise entre %s et %s caractères"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:101
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:103
 #, php-format
 msgid "L'exemplaire id_origine : %s / id_int_bib : %s n'a pas été trouvé."
 msgstr ""
@@ -7563,6 +7941,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:296
 #: ../../application/modules/admin/controllers/BibController.php:294
 #: ../../application/modules/admin/controllers/BibController.php:358
+#: ../../application/modules/admin/controllers/BibController.php:359
 msgid "L'image du plan est obligatoire."
 msgstr ""
 
@@ -7655,6 +8034,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:86
 #: ../../application/modules/admin/controllers/WidgetController.php:117
+#: ../../application/modules/admin/controllers/WidgetController.php:143
 #, php-format
 msgid "La boite %s a été supprimée"
 msgstr ""
@@ -7684,10 +8064,12 @@ msgid "La commande %s a échoué : %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:434
+#: ../../application/modules/admin/controllers/ModulesController.php:433
 msgid "La configuration a été enregistrée"
 msgstr ""
 
 #: ../../library/Class/Systeme/Widget/Menu.php:165
+#: ../../library/Class/Systeme/Widget/Menu.php:171
 #, php-format
 msgid "La configuration de l'entrée de menu %s a été sauvegardée"
 msgstr ""
@@ -7698,19 +8080,21 @@ msgid "La configuration de la boite %s a été sauvegardée"
 msgstr ""
 
 #: ../../library/Class/Systeme/Widget/Menu.php:163
+#: ../../library/Class/Systeme/Widget/Menu.php:169
 #, php-format
 msgid "La configuration du menu %s a été sauvegardée"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1384
+#: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385
 msgid "La couleur des liens du bandeau doit être au format #001122"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1380
+#: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381
 msgid "La couleur du texte bandeau doit être au format #001122"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:145
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
@@ -7719,7 +8103,7 @@ msgid ""
 "La gestion des permissions sera activée après la création de cette catégorie"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1345
+#: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346
 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels."
 msgstr ""
 
@@ -7763,6 +8147,7 @@ msgid "La recherche s'effectue dans tout le réseau."
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:472
+#: ../../library/Class/CodifThesaurus.php:506
 msgid "La règle n'est pas de la forme 686$a"
 msgstr ""
 
@@ -7786,13 +8171,19 @@ msgstr ""
 msgid "La session \"%s\" a été sauvegardée"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1352
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:31
+#, php-format
+msgid "La session \"%s\" a été sauvegardée, son article lié a été créé."
+msgstr ""
+
+#: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353
 msgid ""
 "La somme des largeurs des divisions ne doit pas excéder la largeur du site."
 msgstr ""
 
 #: ../../library/Class/CriteresRecherche.php:450
 #: ../../library/Class/CriteresRecherche.php:454
+#: ../../library/Class/CriteresRecherche.php:476
 msgid "La sélection ne contient aucune notice"
 msgstr ""
 
@@ -7800,6 +8191,11 @@ msgstr ""
 msgid "La taille du fichier ne doit pas excéder "
 msgstr ""
 
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:64
+#, php-format
+msgid "La tâche %s n'est pas plannifiée aujourd'hui"
+msgstr ""
+
 #: ../../library/Class/Cosmogramme/LandingDirectory.php:46
 msgid ""
 "La variable ftp_path est absente, incorrecte ou le dossier n'a pas été créé."
@@ -7820,6 +8216,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:235
 #: ../../application/modules/admin/controllers/ModulesController.php:267
+#: ../../application/modules/admin/controllers/ModulesController.php:234
+#: ../../application/modules/admin/controllers/ModulesController.php:266
 #, php-format
 msgid "La zone \"%s\" n'est pas une zone unimarc valide"
 msgstr ""
@@ -7829,6 +8227,10 @@ msgstr ""
 msgid "Label"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:75
+msgid "Lancer"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/album/generate-thumbnails.phtml:23
 msgid "Lancer la génération"
 msgstr ""
@@ -7846,6 +8248,14 @@ msgstr ""
 msgid "Lancer le moissonnage"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:67
+msgid "Lancer manuellement"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/Batch.php:31
+msgid "Lancer tous les"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110
 msgid "Lancer une recherche avec réinitialisation des paramètres"
 msgstr ""
@@ -7945,6 +8355,7 @@ msgid "Latitude"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:123
+#: ../../application/modules/admin/controllers/IndexController.php:133
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
@@ -7966,6 +8377,9 @@ msgstr ""
 #: ../../application/modules/admin/controllers/ModulesController.php:238
 #: ../../application/modules/admin/controllers/ModulesController.php:241
 #: ../../application/modules/admin/controllers/ModulesController.php:270
+#: ../../application/modules/admin/controllers/ModulesController.php:237
+#: ../../application/modules/admin/controllers/ModulesController.php:240
+#: ../../application/modules/admin/controllers/ModulesController.php:269
 #, php-format
 msgid "Le champ \"%s\" n'est pas un champ unimarc valide"
 msgstr ""
@@ -8072,6 +8486,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:150
 #: ../../application/modules/admin/controllers/SystemeController.php:218
+#: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:224
 msgid "Le fichier reçu n'est pas valide"
 msgstr ""
 
@@ -8106,15 +8522,16 @@ msgstr ""
 msgid "Le groupe \"%s\" a été sauvegardé"
 msgstr ""
 
-#: ../../library/Class/Lieu.php:84
+#: ../../library/Class/Lieu.php:84 ../../library/Class/Lieu.php:73
 msgid "Le libellé doit être renseigné"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1341
+#: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342
 msgid "Le libellé est obligatoire."
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:298
+#: ../../application/modules/admin/controllers/SystemeController.php:304
 msgid "Le mail a bien été envoyé"
 msgstr ""
 
@@ -8155,10 +8572,12 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:36
 #: ../../application/modules/opac/controllers/RssController.php:41
 #: ../../application/modules/opac/controllers/RssController.php:60
+#: ../../application/modules/opac/controllers/RssController.php:53
 msgid "Le ou les flux demandés ne sont plus valides"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:110
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:112
 #, php-format
 msgid "Le panier \"%s\" est orphelin. Il sera rattaché à l'utilisateur \"%s\""
 msgstr ""
@@ -8235,6 +8654,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:230
 #: ../../application/modules/admin/controllers/ModulesController.php:262
+#: ../../application/modules/admin/controllers/ModulesController.php:229
+#: ../../application/modules/admin/controllers/ModulesController.php:261
 msgid "Les caractères \";\" et \"-\" sont interdits"
 msgstr ""
 
@@ -8264,12 +8685,17 @@ msgstr ""
 msgid "Les fils Rss les plus récents"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BibController.php:450
+msgid "Les filtres par défaut ont été sauvegardés."
+msgstr ""
+
 #: ../../application/modules/admin/controllers/PremierChapitreController.php:122
 #: ../../library/Class/Batch/PremierChapitre.php:69
 msgid "Les liaisons n'ont pu être faites"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:188
+#: ../../application/modules/admin/controllers/SystemeController.php:194
 msgid "Les libellés ont été mis à jour"
 msgstr ""
 
@@ -8312,6 +8738,11 @@ msgstr ""
 msgid "Les mots de passe ne correspondent pas"
 msgstr ""
 
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2
+#, fuzzy, php-format
+msgid "Les paniers de %s"
+msgstr "Entrez votre identité S.V.P."
+
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:2
 msgid "Les paniers des professionnels"
 msgstr ""
@@ -8438,14 +8869,21 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:21
 #: ../../library/Class/Systeme/Report.php:184
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:33
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:38
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:3
+#: ../../application/modules/admin/controllers/LieuController.php:32
 msgid "Libellé"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:68
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:147
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:215
 msgid "Libellé commence par"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:69
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:216
 msgid "Libellé contient"
 msgstr ""
 
@@ -8580,6 +9018,7 @@ msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:81
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:84
 msgid "Lien rebond vers la fiche bibliothèque"
 msgstr ""
 
@@ -8813,6 +9252,10 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:109
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 #: ../../library/Class/Systeme/ModulesAccueil/Calendrier.php:61
+#: ../../application/modules/opac/controllers/AbonneController.php:866
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:134
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:56
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:81
 msgid "Lieu"
 msgstr ""
 
@@ -8867,6 +9310,9 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:123
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:72
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:83
 msgid "Liste"
 msgstr ""
 
@@ -9070,6 +9516,10 @@ msgstr ""
 msgid "Légende"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:42
+msgid "MAJ auto."
+msgstr ""
+
 #: ../../library/Class/IntProfilDonnees.php:53
 #: ../../library/Class/IntProfilDonnees.php:73
 msgid "MARC 21"
@@ -9184,6 +9634,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:93
 #: ../../application/modules/admin/controllers/WidgetController.php:124
+#: ../../application/modules/admin/controllers/WidgetController.php:150
 msgid "Menu ajouté"
 msgstr ""
 
@@ -9197,11 +9648,13 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:470
 #: ../../application/modules/admin/controllers/ProfilController.php:485
+#: ../../application/modules/admin/controllers/ProfilController.php:515
 msgid "Menu horizontal dupliqué sur tous les autres profils."
 msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:106
 #: ../../application/modules/admin/controllers/WidgetController.php:137
+#: ../../application/modules/admin/controllers/WidgetController.php:163
 msgid "Menu supprimé"
 msgstr ""
 
@@ -9212,6 +9665,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:37
 #: ../../application/modules/opac/controllers/RssController.php:42
 #: ../../application/modules/opac/controllers/RssController.php:61
+#: ../../application/modules/opac/controllers/RssController.php:54
 msgid "Merci de le signaler à un responsable de la bibliothèque."
 msgstr ""
 
@@ -9233,6 +9687,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1190
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48
+#: ../../application/modules/opac/controllers/AbonneController.php:1189
 msgid "Mes activités suivies"
 msgstr ""
 
@@ -9243,6 +9698,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:1056
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/ValidityCards.php:41
 #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23
+#: ../../application/modules/opac/controllers/AbonneController.php:1055
 msgid "Mes cartes"
 msgstr ""
 
@@ -9252,6 +9708,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1184
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52
+#: ../../application/modules/opac/controllers/AbonneController.php:1183
 msgid "Mes inscriptions en cours"
 msgstr ""
 
@@ -9399,6 +9856,7 @@ msgid "Mise en avant d'un album"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99
 msgid "Mise en page"
 msgstr ""
 
@@ -9422,6 +9880,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:105
+#: ../../application/modules/admin/controllers/IndexController.php:144
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 msgid "Mise à jour de la charte graphique"
 msgstr ""
 
@@ -9438,6 +9898,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:202
 #: ../../application/modules/admin/controllers/BibController.php:200
 #: ../../application/modules/admin/controllers/BibController.php:149
+#: ../../application/modules/admin/controllers/BibController.php:150
 msgid "Mise à jour de la localisation"
 msgstr ""
 
@@ -9466,6 +9927,7 @@ msgid "Mise à jour des flux RSS"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:162
 msgid "Mise à jour des thesauri"
 msgstr ""
 
@@ -9540,6 +10002,7 @@ msgid "Mode de sélection des utilisateurs"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:177
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176
 msgid "Modification Thesaurus"
 msgstr ""
 
@@ -9580,6 +10043,8 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:501
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:477
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:504
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:10
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:32
 msgid "Modifier"
 msgstr ""
 
@@ -9588,6 +10053,11 @@ msgstr ""
 msgid "Modifier %d %s"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:25
+#, fuzzy, php-format
+msgid "Modifier %s"
+msgstr "Entrez votre identité S.V.P."
+
 #: ../../library/ZendAfi/Form/Decorator/MultipleSelection.php:38
 #, php-format
 msgid "Modifier : %s"
@@ -9603,6 +10073,7 @@ msgid "Modifier l'activité: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:634
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:633
 msgid "Modifier l'album"
 msgstr ""
 
@@ -9648,6 +10119,7 @@ msgid "Modifier la biographie"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:692
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:691
 msgid "Modifier la catégorie"
 msgstr ""
 
@@ -9665,6 +10137,7 @@ msgid "Modifier la newsletter"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:16
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:11
 msgid "Modifier la session"
 msgstr ""
 
@@ -9677,7 +10150,12 @@ msgstr ""
 msgid "Modifier la source de données du kiosque"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:36
+msgid "Modifier la tâche"
+msgstr ""
+
 #: ../../application/modules/admin/controllers/IndexController.php:85
+#: ../../application/modules/admin/controllers/IndexController.php:94
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr ""
@@ -9712,6 +10190,7 @@ msgid "Modifier le contenu du panier %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:91
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:88
 #, fuzzy, php-format
 msgid "Modifier le domaine : %s"
 msgstr "Entrez votre identité S.V.P."
@@ -9762,6 +10241,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:423
 #: ../../application/modules/admin/controllers/ProfilController.php:430
+#: ../../application/modules/admin/controllers/ProfilController.php:460
 #, php-format
 msgid "Modifier le profil: %s"
 msgstr ""
@@ -9840,6 +10320,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:319
 #: ../../application/modules/admin/controllers/BibController.php:317
 #: ../../application/modules/admin/controllers/BibController.php:256
+#: ../../application/modules/admin/controllers/BibController.php:257
 #, php-format
 msgid "Modifier un plan de la bibliothèque: %s"
 msgstr ""
@@ -9909,6 +10390,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/PrintController.php:31
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
 msgid "Modèles d'impressions"
 msgstr ""
 
@@ -9961,6 +10443,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:217
 #: ../../application/modules/opac/controllers/RssController.php:236
 #: ../../application/modules/opac/controllers/RssController.php:232
+#: ../../application/modules/opac/controllers/RssController.php:218
 msgid "Modérations"
 msgstr ""
 
@@ -9974,13 +10457,19 @@ msgid "Moissonnage ArteVOD"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:166
+#: ../../application/modules/admin/controllers/HarvestController.php:144
 msgid "Moissonnage Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:132
+#: ../../application/modules/admin/controllers/HarvestController.php:110
 msgid "Moissonnage Orphea"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43
+msgid "Moissonnage automatique"
+msgstr ""
+
 #: ../../application/modules/admin/controllers/ExternalAgendasController.php:34
 #, php-format
 msgid "Moissonnage des évènements de l'agenda \"%s\""
@@ -9992,6 +10481,7 @@ msgid "Moissonnage en cours"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:28
 msgid "Moissonner"
 msgstr ""
 
@@ -10000,6 +10490,10 @@ msgstr ""
 msgid "Moissonner catalogue %s"
 msgstr ""
 
+#: ../../library/Class/Batch/ExternalAgenda.php:27
+msgid "Moissonner les agendas externes"
+msgstr ""
+
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:46
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:47
 msgid "Mon compte"
@@ -10099,6 +10593,7 @@ msgid "Mots-clef"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
 msgid "Multimedia"
 msgstr ""
 
@@ -10125,7 +10620,7 @@ msgstr ""
 msgid "Médiathèque"
 msgstr ""
 
-#: ../../library/Class/Bib.php:320
+#: ../../library/Class/Bib.php:320 ../../library/Class/Bib.php:317
 msgid "N'envoie pas de données"
 msgstr ""
 
@@ -10212,6 +10707,7 @@ msgstr ""
 
 #: ../../library/Class/User/SearchCriteria.php:153
 #: ../../library/ZendAfi/Form/Admin/User.php:125
+#: ../../library/Class/User/SearchCriteria.php:156
 msgid "Niveau d'accès"
 msgstr ""
 
@@ -10268,6 +10764,7 @@ msgstr ""
 "Réservation impossible : problème d'abonnement, aucun exemplaire réservable"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:82
+#: ../../application/modules/opac/views/scripts/head.phtml:81
 msgid "Noir sur blanc"
 msgstr ""
 
@@ -10339,6 +10836,8 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/newsletter/edit-subscribers.phtml:43
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:84
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:36
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:95
+#: ../../library/ZendAfi/Form/Register.php:198
 msgid "Nom"
 msgstr ""
 
@@ -10373,6 +10872,7 @@ msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 msgid "Nom du domaine"
 msgstr ""
 
@@ -10421,6 +10921,10 @@ msgstr ""
 msgid "Nombre d'albums"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
+msgid "Nombre d'articles"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:58
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:49
 msgid "Nombre d'articles les plus récents à analyser"
@@ -10440,6 +10944,7 @@ msgid "Nombre d'articles à analyser"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:3
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:4
 #, php-format
 msgid "Nombre d'avis abonnés : %s"
 msgstr ""
@@ -10452,11 +10957,24 @@ msgstr ""
 msgid "Nombre d'avis à afficher"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:8
+msgid "Nombre d'exemplaires"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Configuration/MyCarouselImgObject.php:52
+msgid "Nombre d'images en hauteur"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:215
 msgid "Nombre d'inscrits"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:9
+msgid "Nombre d'intégrations programmées"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:81
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:3
 msgid "Nombre d'utilisateurs"
 msgstr ""
 
@@ -10475,6 +10993,7 @@ msgid "Nombre d'évènements mis à jour : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:34
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:39
 msgid "Nombre d'événements"
 msgstr ""
 
@@ -10482,6 +11001,16 @@ msgstr ""
 msgid "Nombre d'événements à afficher"
 msgstr ""
 
+#: ../../library/Class/ExternalAgenda.php:29
+#, php-format
+msgid "Nombre d\\'événements créés : %s\n"
+msgstr ""
+
+#: ../../library/Class/ExternalAgenda.php:30
+#, php-format
+msgid "Nombre d\\'événements mis à jour : %s\n"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:348
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr ""
@@ -10530,7 +11059,12 @@ msgstr ""
 msgid "Nombre de documents à analyser"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:7
+msgid "Nombre de fils RSS référencés"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:9
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:12
 #, php-format
 msgid "Nombre de formulaires : %s"
 msgstr ""
@@ -10540,22 +11074,34 @@ msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:20
+#: ../../library/Class/TableDescription/PNBItems.php:31
 msgid "Nombre de jours restant sur la licence"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9
+msgid "Nombre de notices hors cache"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:116
 msgid "Nombre de notices par page"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
+#: ../../library/Class/SessionActivity.php:482
 msgid "Nombre de participants"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:4
+msgid "Nombre de profils"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:17
+#: ../../library/Class/TableDescription/PNBItems.php:28
 msgid "Nombre de prêts"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:18
+#: ../../library/Class/TableDescription/PNBItems.php:29
 msgid "Nombre de prêts simultanés"
 msgstr ""
 
@@ -10585,6 +11131,10 @@ msgstr ""
 msgid "Nombre de sites par page"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:6
+msgid "Nombre de sites référencés"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/ListOfSites.php:39
 msgid "Nombre de sites à afficher"
 msgstr ""
@@ -10599,20 +11149,31 @@ msgid "Nombre de tags à afficher"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:5
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:8
 #, php-format
 msgid "Nombre de traductions : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:14
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:16
 #, php-format
 msgid "Nombre de versions : %s"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:8
+msgid "Nombre de vignettes non reconnues"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:7
+msgid "Nombre de vignettes reconnues"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:253
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:482
+#: ../../library/Class/CodifThesaurus.php:516
 #, php-format
 msgid "Nombre maximum d'élément à ce niveau déjà atteint (%s)"
 msgstr ""
@@ -10630,6 +11191,7 @@ msgid "Nombre à afficher"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:39
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:42
 msgid "Nombres de biliothèques par page"
 msgstr ""
 
@@ -10639,6 +11201,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:29
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:186
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:32
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:32
 msgid "Non"
 msgstr ""
 
@@ -10646,7 +11211,12 @@ msgstr ""
 msgid "Non affiché"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:28
+msgid "Non classé"
+msgstr ""
+
 #: ../../library/Class/Cosmogramme/Generator.php:195
+#: ../../library/Class/Cosmogramme/Generator.php:194
 msgid "Non demandée"
 msgstr ""
 
@@ -10746,6 +11316,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36
 #: ../../library/Class/Codification.php:234
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
 msgid "Notices liées"
 msgstr ""
 
@@ -10757,6 +11328,11 @@ msgstr ""
 msgid "Notices traitées"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:32
+#, php-format
+msgid "Notices à traiter: %s"
+msgstr ""
+
 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9
 msgid ""
 "Nous utilisons uniquement des cookies visant à faciliter votre navigation. "
@@ -10854,6 +11430,7 @@ msgstr ""
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:111
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "Nouveautés de moins de: "
 msgstr ""
 
@@ -10862,6 +11439,7 @@ msgid "Nouveautés uniquement"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:34
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
 msgid "Nouvelle Tâche"
 msgstr ""
 
@@ -10876,6 +11454,7 @@ msgid "Nouvelle inscription à l'activité \"%s\""
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BibController.php:104
+#: ../../application/modules/admin/controllers/BibController.php:105
 msgid "Nouvelle localisation"
 msgstr ""
 
@@ -10892,6 +11471,7 @@ msgid "Nouvelle relation"
 msgstr ""
 
 #: ../../library/Class/OneDTouchLink.php:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 msgid "Nouvelle version"
 msgstr ""
 
@@ -10908,10 +11488,12 @@ msgid "Nuage de tags"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
 msgid "Numilog"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
 msgid "Numérique Premium"
 msgstr ""
 
@@ -10960,6 +11542,7 @@ msgstr ""
 #: ../../application/modules/telephone/controllers/AuthController.php:94
 #: ../../library/ZendAfi/Form/Register.php:184
 #: ../../library/ZendAfi/Form/Configuration/AuthRegister.php:77
+#: ../../library/ZendAfi/Form/Register.php:186
 msgid "N° de carte"
 msgstr ""
 
@@ -10973,6 +11556,7 @@ msgid "OK"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:68
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:75
 #, php-format
 msgid "OK, temps de traitement : %s"
 msgstr ""
@@ -10991,16 +11575,19 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:69
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:78
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
 msgid "Objets flash"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:67
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 msgid "Objets java-script"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:78
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:77
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:76
 msgid "Objets javascript"
 msgstr ""
 
@@ -11022,6 +11609,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:121
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:122
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:124
 msgid "Onglets"
 msgstr ""
 
@@ -11095,6 +11683,7 @@ msgid "Ordre d'affichage"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:45
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:48
 msgid "Ordre d'affichage des biliothèques"
 msgstr ""
 
@@ -11115,6 +11704,7 @@ msgid "Origine des critiques"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
 msgid "Orphea"
 msgstr ""
 
@@ -11136,6 +11726,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:28
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:187
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:35
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:31
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:31
 msgid "Oui"
 msgstr ""
 
@@ -11157,6 +11750,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:109
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:158
 msgid "Outils pour la page :"
 msgstr ""
 
@@ -11175,11 +11769,13 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 msgid "Ouverture"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:93
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
 msgid "Ouvertures"
 msgstr ""
 
@@ -11223,6 +11819,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/AlbumController.php:75
 #: ../../library/Class/Batch/Dilicom.php:30
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
 msgid "PNB Dilicom"
 msgstr ""
 
@@ -11232,6 +11829,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:298
 #: ../../application/modules/admin/controllers/ProfilController.php:305
+#: ../../application/modules/admin/controllers/ProfilController.php:308
 msgid "Page "
 msgstr ""
 
@@ -11256,6 +11854,7 @@ msgid "Page précédente"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:340
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:347
 #, php-format
 msgid "Page précédente du kiosque \"%s\""
 msgstr ""
@@ -11265,6 +11864,7 @@ msgid "Page suivante"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:349
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:356
 #, php-format
 msgid "Page suivante du kiosque \"%s\""
 msgstr ""
@@ -11278,6 +11878,7 @@ msgid "Pagination"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:58
+#: ../../application/modules/admin/controllers/StatController.php:56
 msgid "Palmarès des réservations de notices"
 msgstr ""
 
@@ -11336,6 +11937,7 @@ msgid "Paniers du domaine: %s"
 msgstr ""
 
 #: ../../library/Class/PanierNotice.php:470
+#: ../../library/Class/PanierNotice.php:487
 msgid "Paniers sans domaine, rattachés à leur créateur"
 msgstr ""
 
@@ -11368,6 +11970,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:78
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:80
 msgid "Par ordre alphabétique"
 msgstr ""
 
@@ -11382,6 +11985,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:53
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:36
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:79
 msgid "Par ordre de sélection"
 msgstr ""
 
@@ -11414,6 +12018,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:9
 #: ../../application/modules/admin/views/scripts/index/index.phtml:1
 #: ../../application/modules/admin/views/scripts/index/index.phtml:10
+#: ../../application/modules/admin/views/scripts/index/index.phtml:37
 msgid "Paramètres du site"
 msgstr ""
 
@@ -11466,6 +12071,7 @@ msgid "Participants"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:49
+#: ../../application/modules/admin/views/scripts/index/index.phtml:77
 msgid "Participez à la communauté"
 msgstr ""
 
@@ -11474,6 +12080,7 @@ msgid "Partout"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Action.php:251
+#: ../../library/ZendAfi/Controller/Action.php:261
 msgid ""
 "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. "
 "Merci de remplir manuellement"
@@ -11574,12 +12181,14 @@ msgid "Permissions par défaut"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BibController.php:336
+#: ../../application/modules/admin/controllers/BibController.php:337
 #, php-format
 msgid "Permissions par défaut de la bibliothèque: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:39
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:30
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:92
 msgid "Personnaliser le lien du titre"
 msgstr ""
 
@@ -11612,6 +12221,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 #: ../../application/modules/admin/views/scripts/bib/localisationsmaj.phtml:178
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
 msgid "Photo"
 msgstr ""
 
@@ -11632,6 +12242,7 @@ msgid "Pictogramme"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
 msgid "Pictogrammes des genres"
 msgstr ""
 
@@ -11648,6 +12259,7 @@ msgid "Pivot vers le bas"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
 msgid "Piwik"
 msgstr ""
 
@@ -11726,6 +12338,10 @@ msgstr ""
 msgid "Plan d'accès"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:4
+msgid "Planification"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:80
 msgid "Planification des ouvertures"
 msgstr ""
@@ -11734,6 +12350,15 @@ msgstr ""
 msgid "Planification des ouvertures multimédia"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BatchController.php:68
+#, php-format
+msgid "Planifier la tâche \"%s\""
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
+msgid "Plannifier la tâche"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:72
 msgid "Plans de la bibliothèque"
 msgstr ""
@@ -11751,6 +12376,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:249
 #: ../../application/modules/admin/controllers/BibController.php:247
 #: ../../application/modules/admin/controllers/BibController.php:196
+#: ../../application/modules/admin/controllers/BibController.php:197
 #, php-format
 msgid "Plans de la bibliothèque: %s"
 msgstr ""
@@ -11790,6 +12416,7 @@ msgid "Position"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:50
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:53
 msgid "Position de la pagination"
 msgstr ""
 
@@ -11798,12 +12425,14 @@ msgid "Position de la pagination en résultat de recherche"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:76
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:79
 msgid "Position des filtres"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:8
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:11
 #: ../../application/modules/opac/controllers/AbonneController.php:871
+#: ../../application/modules/opac/controllers/AbonneController.php:870
 msgid "Poste"
 msgstr ""
 
@@ -11827,6 +12456,7 @@ msgid "Pour quel jour ?"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:779
+#: ../../application/modules/opac/controllers/AbonneController.php:778
 msgid "Pour quelle durée ?"
 msgstr ""
 
@@ -11855,6 +12485,7 @@ msgid "Pourquoi suggérez-vous ce document ?"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 msgid "Premier-Chapitre"
 msgstr ""
 
@@ -11884,6 +12515,7 @@ msgid "Prendre le champ cote en"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:96
 msgid "Prenom"
 msgstr ""
 
@@ -11923,6 +12555,7 @@ msgid "Profil \"%s\" ajouté"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/DataProfile.php:30
+#: ../../application/modules/admin/controllers/ProfilController.php:434
 #, php-format
 msgid "Profil \"%s\" sauvegardé"
 msgstr ""
@@ -11942,6 +12575,7 @@ msgid "Profil courant dans la barre de navigation"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:360
+#: ../../library/Class/Cosmogramme/Generator.php:359
 #, php-format
 msgid "Profil de données %s (%d) non présent ou mal configuré"
 msgstr ""
@@ -11953,6 +12587,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
 msgid "Profils"
 msgstr ""
 
@@ -11997,6 +12632,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Loans.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:46
+#: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:42
 msgid "Prolonger"
 msgstr ""
 
@@ -12025,6 +12661,11 @@ msgstr ""
 msgid "Proposer la sélection de bibliothèques"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:97
+#, fuzzy
+msgid "Proposer la sélection de domaines"
+msgstr "Vous avez attein le nombre maximum de réservations"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:41
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:43
 msgid "Proposer la sélection de sites"
@@ -12052,6 +12693,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:87
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:88
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:76
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:80
 msgid "Propriétés"
 msgstr ""
 
@@ -12116,6 +12758,7 @@ msgid "Préférences"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/UsersController.php:47
+#: ../../application/modules/admin/controllers/UsersController.php:48
 msgid "Préférences utilisateur sauvegardées"
 msgstr ""
 
@@ -12126,10 +12769,12 @@ msgid ""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:558
+#: ../../application/modules/opac/controllers/AuthController.php:567
 msgid "Préinscription"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:533
+#: ../../application/modules/opac/controllers/AuthController.php:541
 #, php-format
 msgid "Préinscription à %s"
 msgstr ""
@@ -12170,6 +12815,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ContactForm.php:70
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:41
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:42
+#: ../../library/ZendAfi/Form/Register.php:210
 msgid "Prénom"
 msgstr ""
 
@@ -12181,6 +12827,10 @@ msgstr ""
 msgid "Préparation des données"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:43
+msgid "Présences"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:92
 msgid "Présentation"
 msgstr ""
@@ -12254,6 +12904,7 @@ msgid "Prêts et réservations :"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:37
+#: ../../application/modules/opac/views/scripts/abonne/prets.phtml:35
 msgid "Prêts numériques en cours"
 msgstr ""
 
@@ -12350,15 +13001,22 @@ msgstr ""
 msgid "Quel secteur ?"
 msgstr ""
 
+#: ../../library/Class/WebService/SIGB/Nanook/Service.php:32
+msgid "Quota atteint pour ce type de document."
+msgstr ""
+
 #: ../../application/modules/opac/controllers/AbonneController.php:675
+#: ../../application/modules/opac/controllers/AbonneController.php:674
 msgid "Quota déjà atteint ce jour, choisissez un autre jour."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:681
+#: ../../application/modules/opac/controllers/AbonneController.php:680
 msgid "Quota déjà atteint ce mois, choisissez un autre mois."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:678
+#: ../../application/modules/opac/controllers/AbonneController.php:677
 msgid "Quota déjà atteint cette semaine, choisissez une autre semaine."
 msgstr ""
 
@@ -12409,6 +13067,7 @@ msgid "Rapports"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162
 msgid "Rapports statistiques"
 msgstr ""
 
@@ -12437,6 +13096,8 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 #: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:38
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
+#: ../../library/Class/User/SearchCriteria.php:81
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 msgid "Recherche"
 msgstr ""
 
@@ -12471,6 +13132,7 @@ msgid "Recherche élargie à"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:113
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:112
 #, php-format
 msgid "Recherche élargie à: %s"
 msgstr ""
@@ -12485,6 +13147,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:156
 #: ../../library/ZendAfi/View/Helper/TreeView.php:54
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:36
+#: ../../library/Class/User/SearchCriteria.php:207
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:81
 msgid "Rechercher"
 msgstr ""
 
@@ -12540,6 +13204,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:43
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:115
+#: ../../application/modules/admin/controllers/StatController.php:41
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
 msgid "Recherches infructueuses"
 msgstr ""
 
@@ -12547,6 +13213,10 @@ msgstr ""
 msgid "Redmine n'est pas correctement configuré"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:15
+msgid "Regénérer"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Admin/Annexe.php:48
 #: ../../library/ZendAfi/Form/Admin/Section.php:40
 msgid "Rejeter les exemplaires"
@@ -12623,6 +13293,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:44
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:97
 msgid "Rendre le titre de la boite cliquable"
 msgstr ""
 
@@ -12685,6 +13356,7 @@ msgid "Restreindre à"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:155
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:154
 msgid "Restreint à :"
 msgstr ""
 
@@ -12702,6 +13374,7 @@ msgid "Retirer la facette: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:139
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:138
 #, php-format
 msgid "Retirer le critère: %s"
 msgstr ""
@@ -12826,6 +13499,7 @@ msgid "Retour à la liste des agendas"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:10
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:11
 msgid "Retour à la liste des bibliothèques"
 msgstr ""
 
@@ -12846,6 +13520,7 @@ msgid "Rideau horizontal"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:97
 msgid "Role"
 msgstr ""
 
@@ -12883,10 +13558,12 @@ msgid "Récupération du mot de passe"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
 msgid "Rédacteur bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239
 msgid "Rédacteur portail"
 msgstr ""
 
@@ -12905,6 +13582,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:412
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:407
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:376
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:389
 msgid "Référencement"
 msgstr ""
 
@@ -12913,6 +13591,7 @@ msgid "Régénère le sitemap XML"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:21
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:19
 msgid "Réinitialiser les vignettes non reconnues"
 msgstr ""
 
@@ -13146,6 +13825,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Accueil/Newsletters.php:59
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:48
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:53
+#: ../../library/Class/SessionActivity.php:513
 msgid "S'inscrire"
 msgstr ""
 
@@ -13161,6 +13841,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1178
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34
+#: ../../application/modules/opac/controllers/AbonneController.php:1177
 msgid "S'inscrire à une activité"
 msgstr ""
 
@@ -13169,6 +13850,7 @@ msgid "SIGB"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:85
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
@@ -13231,6 +13913,7 @@ msgstr ""
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:12
 #: ../../application/modules/opac/controllers/AbonneController.php:870
+#: ../../application/modules/opac/controllers/AbonneController.php:869
 msgid "Secteur"
 msgstr ""
 
@@ -13243,6 +13926,7 @@ msgid "Section"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171
 #, php-format
 msgid "Section: %s"
 msgstr ""
@@ -13349,6 +14033,7 @@ msgstr ""
 
 #: ../../application/modules/admin/views/scripts/activity/index.phtml:22
 #: ../../library/Class/CustomField/Model.php:53
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:109
 msgid "Session"
 msgstr ""
 
@@ -13357,11 +14042,25 @@ msgstr ""
 msgid "Session \"%s\" sauvegardée"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:30
+#, php-format
+msgid "Session \"%s\" sauvegardée, son article lié a été mis à jour."
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
 #, php-format
 msgid "Session \"%s\" supprimée"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
+#, php-format
+msgid "Session \"%s\" supprimée, son artilcle lié a été supprimé."
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:90
+msgid "Session annulée"
+msgstr ""
+
 #: ../../application/modules/opac/controllers/AbonneController.php:92
 msgid "Session non trouvée"
 msgstr ""
@@ -13443,6 +14142,7 @@ msgid "Site \"%s\" supprimé"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:51
+#: ../../application/modules/admin/views/scripts/index/index.phtml:79
 msgid "Site communautaire"
 msgstr ""
 
@@ -13474,10 +14174,12 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/Location.php:34
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:548
 msgid "Site web"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:89
 #, php-format
 msgid "Site: %s"
 msgstr ""
@@ -13507,6 +14209,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:83
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
 msgid "Sitothèque"
 msgstr ""
 
@@ -13519,6 +14222,7 @@ msgid "Situer cet exemplaire dans la bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
 msgid "SoundCloud"
 msgstr ""
 
@@ -13564,11 +14268,17 @@ msgstr ""
 msgid "Sous-zones d'auteurs<br>(séparées par des \";\")"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:37
+msgid "Stagiaires"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112
 msgid "Statistiques"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:52
+#: ../../application/modules/admin/controllers/StatController.php:50
 msgid "Statistiques des réservations de notices"
 msgstr ""
 
@@ -13585,6 +14295,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:129
 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:144
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:397
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:38
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:63
 msgid "Statut"
 msgstr ""
 
@@ -13614,6 +14326,7 @@ msgid "Style"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:71
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:74
 msgid "Style d'affichage des filtres"
 msgstr ""
 
@@ -13647,6 +14360,7 @@ msgid "Suggestion d'achat"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:944
+#: ../../application/modules/opac/controllers/AbonneController.php:943
 msgid "Suggestion d'achat enregistrée"
 msgstr ""
 
@@ -13725,6 +14439,7 @@ msgid "Sujets"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:225
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227
 msgid "Super administrateur"
 msgstr ""
 
@@ -13735,6 +14450,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:139
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
 msgid "Suppr."
 msgstr ""
 
@@ -13789,6 +14505,9 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:509
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:23
 #: ../../library/ZendAfi/View/Helper/Admin/RenderVersionForm.php:165
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:26
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:37
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:35
 msgid "Supprimer"
 msgstr ""
 
@@ -13803,11 +14522,13 @@ msgid "Supprimer %s de la sélection d'articles"
 msgstr "Vous avez attein le nombre maximum de réservations"
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:156
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:160
 msgid "Supprimer cette boite"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:46
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:173
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:171
 msgid "Supprimer cette réservation"
 msgstr ""
 
@@ -13825,6 +14546,7 @@ msgid "Supprimer l'activité"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:656
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:655
 msgid "Supprimer l'album"
 msgstr ""
 
@@ -13854,6 +14576,7 @@ msgid "Supprimer la bibliothèque: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:699
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:698
 msgid "Supprimer la catégorie"
 msgstr ""
 
@@ -13867,6 +14590,7 @@ msgid "Supprimer la réservation du document %s"
 msgstr "Vous avez attein le nombre maximum de réservations"
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:47
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:61
 msgid "Supprimer la session"
 msgstr ""
 
@@ -13919,10 +14643,12 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:221
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:225
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:256
 msgid "Synchronisation du CSS avec GIT"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137
 msgid "Système"
 msgstr ""
 
@@ -13991,6 +14717,7 @@ msgid "Sélectionnez un lieu"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:455
+#: ../../application/modules/admin/controllers/ModulesController.php:454
 msgid "Sélectionnez un panier ou un domaine"
 msgstr ""
 
@@ -14008,6 +14735,7 @@ msgid "Tableau"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:64
+#: ../../application/modules/admin/controllers/StatController.php:62
 msgid "Tableau de bord PIWIK"
 msgstr ""
 
@@ -14106,14 +14834,17 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:113
 msgid "Territoire"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
 msgid "Territoires"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:268
+#: ../../application/modules/admin/controllers/SystemeController.php:274
 msgid "Test de l'envoi des mails"
 msgstr ""
 
@@ -14126,6 +14857,7 @@ msgid "Test des Web Services"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144
 msgid "Test des web-services"
 msgstr ""
 
@@ -14135,6 +14867,7 @@ msgid "Test du domaine: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147
 msgid "Test envoi mails"
 msgstr ""
 
@@ -14405,6 +15138,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Menu/SearchResult.php:30
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:88
 #: ../../library/ZendAfi/View/Helper/RecordTabs.php:40
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:32
+#: ../../library/Class/TableDescription/PNBItems.php:27
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:132
 msgid "Titre"
 msgstr ""
 
@@ -14509,6 +15245,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
+#: ../../library/Class/User/SearchCriteria.php:157
 msgid "Tous"
 msgstr ""
 
@@ -14537,6 +15274,10 @@ msgstr ""
 msgid "Tous les jeudis"
 msgstr ""
 
+#: ../../library/Class/Repeat/WeekDays.php:83
+msgid "Tous les jours"
+msgstr ""
+
 #: ../../library/Class/Ouverture.php:39
 msgid "Tous les lundis"
 msgstr ""
@@ -14566,6 +15307,7 @@ msgid "Tous status"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
 msgid "Tout Apprendre"
 msgstr ""
 
@@ -14588,6 +15330,7 @@ msgid "Tout décocher"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:110
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:89
 msgid "Tout effacer"
 msgstr ""
 
@@ -14612,6 +15355,8 @@ msgstr ""
 #: ../../library/Class/User/SearchCriteria.php:134
 #: ../../library/Class/Bib.php:484
 #: ../../library/ZendAfi/View/Helper/ComboLibraries.php:37
+#: ../../library/Class/User/SearchCriteria.php:137
+#: ../../library/Class/Bib.php:474
 msgid "Toutes"
 msgstr ""
 
@@ -14620,9 +15365,14 @@ msgid "Toutes les collections"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:30
 msgid "Toutes les données de l'article seront effacées !"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:21
+msgid "Toutes les données de la bibliothèque seront effacées !"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:53
 msgid "Toutes les facettes"
 msgstr ""
@@ -14632,6 +15382,7 @@ msgid "Traduction"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
 msgid "Traductions"
 msgstr ""
 
@@ -14649,6 +15400,11 @@ msgstr ""
 msgid "Traitement de la page %d (nombre d'enregistrements: %d)"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/ArteVOD.php:63
+#, php-format
+msgid "Traitement de la page %s"
+msgstr ""
+
 #: ../../library/Class/Systeme/Report/Cosmogramme.php:50
 msgid "Traitement en cours depuis le"
 msgstr ""
@@ -14799,6 +15555,7 @@ msgstr ""
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:121
 #: ../../library/ZendAfi/View/Helper/IconeSupport.php:52
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:99
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:98
 #, php-format
 msgid "Type de document: %s"
 msgstr ""
@@ -14872,6 +15629,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:75
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:324
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:323
 msgid "Types de documents"
 msgstr ""
 
@@ -14885,18 +15644,30 @@ msgid "Types de tags"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
 msgid "Tâche ajoutée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BatchController.php:32
+#: ../../application/modules/admin/controllers/BatchController.php:97
 msgid "Tâche executée"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+msgid "Tâche sauvegardée"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:33
 msgid "Tâche supprimée"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:28
+msgid "Tâche système non désactivable"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:37
 msgid "Tâches"
 msgstr ""
 
@@ -14975,6 +15746,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:470
 #: ../../application/modules/opac/controllers/AbonneController.php:471
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 msgid "Téléphone"
 msgstr ""
 
@@ -14995,6 +15767,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:158
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:40
 msgid "URL"
 msgstr ""
 
@@ -15019,10 +15792,12 @@ msgid "URL de la page"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:147
+#: ../../application/modules/admin/controllers/HarvestController.php:125
 msgid "URL de la page Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:204
+#: ../../application/modules/admin/controllers/HarvestController.php:182
 msgid "URL de la piste SoundCloud"
 msgstr ""
 
@@ -15043,6 +15818,7 @@ msgid "URL du profil"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:546
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:545
 msgid "URL du site web"
 msgstr ""
 
@@ -15094,6 +15870,7 @@ msgid "Un courriel a été envoyé."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:545
+#: ../../application/modules/opac/controllers/AuthController.php:553
 #, php-format
 msgid ""
 "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ."
@@ -15121,16 +15898,19 @@ msgid "Un modèle a déjà le même nom : %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:393
+#: ../../application/modules/opac/controllers/AuthController.php:396
 msgid ""
 "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le "
 "compte qui utilise cet email."
 msgstr ""
 
 #: ../../library/Class/ExternalAgenda.php:42
+#: ../../library/Class/ExternalAgenda.php:56
 msgid "Une catégorie est requise"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:421
+#: ../../application/modules/opac/controllers/AuthController.php:424
 msgid ""
 "Une demande de confirmation d'inscription vous a été envoyée à l'adresse "
 "mail renseignée."
@@ -15138,6 +15918,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:104
 #: ../../application/modules/admin/controllers/WidgetController.php:135
+#: ../../application/modules/admin/controllers/WidgetController.php:161
 msgid "Une erreur c'est produite, le menu n'a pas pu être supprimé"
 msgstr ""
 
@@ -15161,12 +15942,14 @@ msgid "Une erreur est survenue"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:417
+#: ../../application/modules/opac/controllers/AuthController.php:420
 msgid ""
 "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez "
 "réessayer. Si le problème persiste, veuillez contacter votre médiathèque."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1155
+#: ../../application/modules/opac/controllers/AbonneController.php:1154
 #, php-format
 msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s"
 msgstr ""
@@ -15180,7 +15963,8 @@ msgid "Une extension PHP a stoppé le téléchargement du fichier"
 msgstr ""
 
 #: ../../library/Class/Profil.php:1368 ../../library/Class/Profil.php:1372
-#: ../../library/Class/Profil.php:1376
+#: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369
+#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377
 msgid "Une marge interne de division ne peut pas excéder 20 pixels."
 msgstr ""
 
@@ -15295,6 +16079,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:41
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 msgid "Utilisateurs"
 msgstr ""
 
@@ -15303,6 +16088,7 @@ msgid "Utilisation"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:10
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:3
 msgid "Utilisation des ressources PNB Dilicom"
 msgstr ""
 
@@ -15397,6 +16183,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/Button/Submit.php:26
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:49
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:51
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:56
 msgid "Valider"
 msgstr ""
 
@@ -15427,12 +16214,14 @@ msgid "Variable"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:93
+#: ../../application/modules/admin/controllers/IndexController.php:102
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:143
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
 msgid "Variables"
 msgstr ""
 
@@ -15514,6 +16303,7 @@ msgid "Veuillez choisir une notice"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31
+#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32
 msgid "Veuillez patienter ..."
 msgstr ""
 
@@ -15528,6 +16318,7 @@ msgid "Veuillez patienter : traitement en cours"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:66
+#: ../../application/modules/admin/controllers/StatController.php:64
 msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr ""
 
@@ -15562,16 +16353,19 @@ msgid "Vider"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14
 msgid "Vider la totalité du cache"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:80
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:129
 msgid "Vider le cache"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:133
 msgid "Vider le cache de Bokeh"
 msgstr ""
 
@@ -15637,6 +16431,8 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:89
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
+#: ../../application/modules/admin/controllers/LieuController.php:34
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
 msgid "Ville"
 msgstr ""
 
@@ -15645,6 +16441,7 @@ msgid "Visionner le film dans son intégralité"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648
 msgid "Visualisation de l\\album"
 msgstr ""
 
@@ -15665,6 +16462,7 @@ msgid "Vitesse de défilement"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79
 msgid "Vodeclic"
 msgstr ""
 
@@ -15675,6 +16473,10 @@ msgstr ""
 msgid "Voir"
 msgstr ""
 
+#: ../../library/Class/TableDescription/PNBItems.php:39
+msgid "Voir l'album"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/TagJamendoPlayer.php:32
 #, php-format
 msgid "Voir l'album \"%s\" sur Jamendo"
@@ -15732,10 +16534,12 @@ msgstr ""
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:21
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:23
 #: ../../application/modules/opac/views/scripts/panier/domain.phtml:19
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:20
 msgid "Voir les paniers des professionnels"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:20
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:15
 msgid "Voir les paniers rangés dans des domaines"
 msgstr ""
 
@@ -15849,6 +16653,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:77
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
 #, fuzzy
 msgid "Votre adresse"
 msgstr "Entrez votre identité S.V.P."
@@ -15896,6 +16701,7 @@ msgid "Votre avis"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1078
+#: ../../application/modules/opac/controllers/AbonneController.php:1077
 #, php-format
 msgid "Votre carte a été retirée à %s"
 msgstr ""
@@ -15931,6 +16737,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AuthController.php:263
 #: ../../application/modules/opac/controllers/AuthController.php:266
 #: ../../application/modules/opac/controllers/AuthController.php:335
+#: ../../application/modules/opac/controllers/AuthController.php:338
 msgid "Votre demande d'inscription"
 msgstr ""
 
@@ -15954,6 +16761,7 @@ msgid "Votre identifiant: "
 msgstr "Entrez votre identité S.V.P."
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:72
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:76
 #, fuzzy
 msgid "Votre identité"
 msgstr "Entrez votre identité S.V.P."
@@ -15990,6 +16798,7 @@ msgid "Votre mot de passe: "
 msgstr "Entrez votre identité S.V.P."
 
 #: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:55
+#: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:54
 msgid "Votre prêt a bien été prolongé."
 msgstr ""
 
@@ -15998,6 +16807,7 @@ msgid "Votre réservation"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:437
+#: ../../application/modules/opac/controllers/AbonneController.php:436
 #, php-format
 msgid "Votre réservation du document %s a bien été supprimée."
 msgstr ""
@@ -16116,15 +16926,18 @@ msgid "Vous avez %d réservations en cours"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid "Vous avez bien été abonné à la newsletter: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1144
+#: ../../application/modules/opac/controllers/AbonneController.php:1143
 #, php-format
 msgid "Vous avez déjà ajouté la carte de \"%s\""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:751
+#: ../../application/modules/opac/controllers/AbonneController.php:750
 msgid "Vous avez déjà une réservation dans ce créneau horaire"
 msgstr ""
 
@@ -16201,10 +17014,12 @@ msgid "Vous devez confirmer le mot de passe"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:469
+#: ../../library/Class/CodifThesaurus.php:503
 msgid "Vous devez définir au moins une règle"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:465
+#: ../../library/Class/CodifThesaurus.php:499
 msgid "Vous devez définir le libellé"
 msgstr ""
 
@@ -16247,9 +17062,14 @@ msgid "Vous devez saisir un numéro de téléphone"
 msgstr ""
 
 #: ../../library/Class/AvisNotice.php:382
+#: ../../library/Class/AvisNotice.php:386
 msgid "Vous devez saisir un titre"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/AlbumController.php:185
+msgid "Vous devez spécifier une catégorie à exporter"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:54
 msgid "Vous devez sélectionner une bibliothèque"
 msgstr ""
@@ -16483,6 +17303,7 @@ msgid "Vous n'avez saisi aucune clef."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1067
+#: ../../application/modules/opac/controllers/AbonneController.php:1066
 #, php-format
 msgid "Vous n'utilisez plus la carte de %s"
 msgstr ""
@@ -16495,6 +17316,7 @@ msgid "Vous n'êtes abonné à aucune lettre d'information"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:672
+#: ../../application/modules/opac/controllers/AbonneController.php:671
 msgid "Vous n'êtes pas autorisé à effectuer une réservation"
 msgstr ""
 
@@ -16504,6 +17326,7 @@ msgid "Vous n'êtes plus inscrit à la session du %s de l'activité %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1138
+#: ../../application/modules/opac/controllers/AbonneController.php:1137
 msgid "Vous ne pouvez pas ajouter votre propre carte"
 msgstr ""
 
@@ -16574,6 +17397,7 @@ msgid "Web"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
+#: ../../application/modules/admin/views/scripts/index/index.phtml:81
 msgid "Wiki Bokeh"
 msgstr ""
 
@@ -16587,6 +17411,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:237
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:241
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:272
 msgid "ZF Debug"
 msgstr ""
 
@@ -16729,6 +17554,10 @@ msgstr ""
 msgid "avec une vignette"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:25
+msgid "avi(s)"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:38
 #: ../../library/Class/Calendar.php:38 ../../library/Class/Calendar.php:39
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:43
@@ -16772,11 +17601,13 @@ msgstr ""
 
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:53
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:70
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:69
 msgid "commence"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:42
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:151
 msgid "commence par"
 msgstr ""
 
@@ -16890,6 +17721,7 @@ msgid "dim."
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:98
+#: ../../library/Class/Repeat/WeekDays.php:37
 msgid "dimanche"
 msgstr ""
 
@@ -17004,6 +17836,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:239
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:248
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:249
 #, php-format
 msgid "flux RSS de la boite %s"
 msgstr ""
@@ -17043,6 +17876,7 @@ msgid "ignorer ce champ"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:212
+#: ../../application/modules/admin/controllers/SystemeController.php:218
 msgid "import ok"
 msgstr ""
 
@@ -17075,6 +17909,7 @@ msgid "jeu."
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:95
+#: ../../library/Class/Repeat/WeekDays.php:34
 msgid "jeudi"
 msgstr ""
 
@@ -17154,6 +17989,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:292
 #: ../../application/modules/admin/controllers/BibController.php:75
 #: ../../application/modules/admin/controllers/BibController.php:356
+#: ../../application/modules/admin/controllers/BibController.php:357
 msgid "le libellé est obligatoire."
 msgstr ""
 
@@ -17243,6 +18079,7 @@ msgid "lun."
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:92
+#: ../../library/Class/Repeat/WeekDays.php:31
 msgid "lundi"
 msgstr ""
 
@@ -17264,6 +18101,7 @@ msgid "mar."
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:93
+#: ../../library/Class/Repeat/WeekDays.php:32
 msgid "mardi"
 msgstr ""
 
@@ -17289,6 +18127,7 @@ msgid "mer."
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:94
+#: ../../library/Class/Repeat/WeekDays.php:33
 msgid "mercredi"
 msgstr ""
 
@@ -17296,6 +18135,11 @@ msgstr ""
 msgid "minimum"
 msgstr ""
 
+#: ../../library/Class/SessionActivity.php:483
+#, php-format
+msgid "minimum : %s, maximum : %s"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:46
 msgid "mode liste simple"
@@ -17311,8 +18155,13 @@ msgstr ""
 msgid "mode résumé d'article"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:11
+msgid "modifier"
+msgstr ""
+
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "mois"
 msgstr ""
 
@@ -17418,6 +18267,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:429
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:457
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:131
 msgid "n°"
 msgstr ""
 
@@ -17475,6 +18325,10 @@ msgstr ""
 msgid "page "
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:34
+msgid "panier(s)"
+msgstr ""
+
 #: ../../library/Class/Systeme/ModulesAccueil/News.php:60
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:76
 #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:49
@@ -17561,6 +18415,7 @@ msgid "pas de transfert pour : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358
+#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378
 msgid "pictogramme pour "
 msgstr ""
 
@@ -17637,6 +18492,7 @@ msgid "sam."
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:97
+#: ../../library/Class/Repeat/WeekDays.php:36
 msgid "samedi"
 msgstr ""
 
@@ -17664,6 +18520,7 @@ msgid "septembre"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:145
+#: ../../application/modules/admin/controllers/SystemeController.php:151
 msgid "site généré"
 msgstr ""
 
@@ -17679,6 +18536,10 @@ msgstr ""
 msgid "sous-menu"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:18
+msgid "supprimer"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125
 msgid "sélectionner un autre projet"
 msgstr ""
@@ -17744,6 +18605,7 @@ msgid "ven."
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:96
+#: ../../library/Class/Repeat/WeekDays.php:35
 msgid "vendredi"
 msgstr ""
 
@@ -17773,6 +18635,7 @@ msgid "{contenu}"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:48
 msgid "» Modifier «"
 msgstr ""
 
@@ -17792,6 +18655,7 @@ msgid "À partir de"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:777
+#: ../../application/modules/opac/controllers/AbonneController.php:776
 msgid "À partir de quelle heure ?"
 msgstr ""
 
@@ -17865,12 +18729,15 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:48
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:138
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 msgid "État"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:492
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:73
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:88
+#: ../../application/modules/admin/controllers/ModulesController.php:491
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:92
 msgid "Étendre le paramétrage"
 msgstr ""
 
@@ -17918,6 +18785,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:128
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:165
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:169
 msgid "Êtes-vous sur de vouloir supprimer cette boîte ?"
 msgstr ""
 
diff --git a/library/translation/fr.pot b/library/translation/fr.pot
index 5c4639000492a1ff4e2d7447bbe5a1012f101a5e..8106a0f14c07af620c4fd64c11828a019edfc734 100644
--- a/library/translation/fr.pot
+++ b/library/translation/fr.pot
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-19 16:23+0200\n"
+"POT-Creation-Date: 2017-09-11 11:54+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56,6 +56,7 @@ msgstr ""
 #: ../../library/Class/MoteurRecherche.php:604
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
+#: ../../library/Class/MoteurRecherche.php:608
 msgid "Accueil"
 msgstr ""
 
@@ -85,6 +86,7 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:541
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:544
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:669
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:668
 msgid "Ajouter une catégorie"
 msgstr ""
 
@@ -134,6 +136,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:37
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:38
+#: ../../application/modules/admin/controllers/LieuController.php:31
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94
 msgid "Identifiant"
 msgstr ""
 
@@ -281,6 +285,8 @@ msgstr ""
 #: ../../library/Class/User/SearchCriteria.php:133
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:30
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:309
+#: ../../library/Class/User/SearchCriteria.php:136
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:98
 msgid "Bibliothèque"
 msgstr ""
 
@@ -352,6 +358,8 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/newsletter/edit-subscribers.phtml:43
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:84
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:36
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:95
+#: ../../library/ZendAfi/Form/Register.php:198
 msgid "Nom"
 msgstr ""
 
@@ -376,6 +384,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 #: ../../application/modules/admin/views/scripts/bib/localisationsmaj.phtml:178
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
 msgid "Photo"
 msgstr ""
 
@@ -425,6 +434,8 @@ msgstr ""
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:51
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:95
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
+#: ../../application/modules/admin/controllers/LieuController.php:33
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
 msgid "Adresse"
 msgstr ""
 
@@ -458,6 +469,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ContactForm.php:78
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:56
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:83
+#: ../../application/modules/admin/controllers/LieuController.php:35
 msgid "Code postal"
 msgstr ""
 
@@ -494,6 +506,8 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:89
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
+#: ../../application/modules/admin/controllers/LieuController.php:34
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
 msgid "Ville"
 msgstr ""
 
@@ -520,6 +534,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:470
 #: ../../application/modules/opac/controllers/AbonneController.php:471
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 msgid "Téléphone"
 msgstr ""
 
@@ -557,6 +572,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:113
 msgid "Territoire"
 msgstr ""
 
@@ -720,6 +736,7 @@ msgid "Ajouter une bibliothèque"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/bib/localisations.phtml:6
+#: ../../application/modules/admin/views/scripts/bib/localisations.phtml:8
 msgid "Ajouter une localisation"
 msgstr ""
 
@@ -833,6 +850,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:75
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:324
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:323
 msgid "Types de documents"
 msgstr ""
 
@@ -1099,6 +1118,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Menu/SearchResult.php:30
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:88
 #: ../../library/ZendAfi/View/Helper/RecordTabs.php:40
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:32
+#: ../../library/Class/TableDescription/PNBItems.php:27
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:132
 msgid "Titre"
 msgstr ""
 
@@ -1509,6 +1531,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:66
 #: ../../library/ZendAfi/Form/Admin/News.php:80
 #: ../../library/ZendAfi/Form/Admin/News.php:75
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:70
 msgid "Agenda"
 msgstr ""
 
@@ -1714,6 +1737,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:9
 #: ../../application/modules/admin/views/scripts/index/index.phtml:1
 #: ../../application/modules/admin/views/scripts/index/index.phtml:10
+#: ../../application/modules/admin/views/scripts/index/index.phtml:37
 msgid "Paramètres du site"
 msgstr ""
 
@@ -1748,6 +1772,8 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:30
 #: ../../application/modules/admin/views/scripts/index/index.phtml:29
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/opac/controllers/RssController.php:219
 msgid "Données en attente de modération"
 msgstr ""
 
@@ -2003,6 +2029,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:412
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:407
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:376
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:389
 msgid "Référencement"
 msgstr ""
 
@@ -2154,6 +2181,9 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:21
 #: ../../library/Class/Systeme/Report.php:184
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:33
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:38
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:3
+#: ../../application/modules/admin/controllers/LieuController.php:32
 msgid "Libellé"
 msgstr ""
 
@@ -2202,6 +2232,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:83
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
 msgid "Sitothèque"
 msgstr ""
 
@@ -2280,6 +2311,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ContactForm.php:70
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:41
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:42
+#: ../../library/ZendAfi/Form/Register.php:210
 msgid "Prénom"
 msgstr ""
 
@@ -2453,6 +2485,8 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:501
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:477
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:504
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:10
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:32
 msgid "Modifier"
 msgstr ""
 
@@ -2497,6 +2531,9 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:509
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:23
 #: ../../library/ZendAfi/View/Helper/Admin/RenderVersionForm.php:165
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:26
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:37
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:35
 msgid "Supprimer"
 msgstr ""
 
@@ -2565,6 +2602,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/Button/Submit.php:26
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:49
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:51
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:56
 msgid "Valider"
 msgstr ""
 
@@ -3216,6 +3254,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AuthController.php:263
 #: ../../application/modules/opac/controllers/AuthController.php:266
 #: ../../application/modules/opac/controllers/AuthController.php:335
+#: ../../application/modules/opac/controllers/AuthController.php:338
 msgid "Votre demande d'inscription"
 msgstr ""
 
@@ -3465,6 +3504,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:292
 #: ../../application/modules/admin/controllers/BibController.php:75
 #: ../../application/modules/admin/controllers/BibController.php:356
+#: ../../application/modules/admin/controllers/BibController.php:357
 msgid "le libellé est obligatoire."
 msgstr ""
 
@@ -3481,6 +3521,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:150
 #: ../../application/modules/admin/controllers/BibController.php:148
 #: ../../application/modules/admin/controllers/BibController.php:97
+#: ../../application/modules/admin/controllers/BibController.php:98
 msgid "** nouvelle localisation **"
 msgstr ""
 
@@ -3497,6 +3538,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:202
 #: ../../application/modules/admin/controllers/BibController.php:200
 #: ../../application/modules/admin/controllers/BibController.php:149
+#: ../../application/modules/admin/controllers/BibController.php:150
 msgid "Mise à jour de la localisation"
 msgstr ""
 
@@ -3513,6 +3555,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:249
 #: ../../application/modules/admin/controllers/BibController.php:247
 #: ../../application/modules/admin/controllers/BibController.php:196
+#: ../../application/modules/admin/controllers/BibController.php:197
 #, php-format
 msgid "Plans de la bibliothèque: %s"
 msgstr ""
@@ -3530,6 +3573,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:296
 #: ../../application/modules/admin/controllers/BibController.php:294
 #: ../../application/modules/admin/controllers/BibController.php:358
+#: ../../application/modules/admin/controllers/BibController.php:359
 msgid "L'image du plan est obligatoire."
 msgstr ""
 
@@ -3546,6 +3590,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:258
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:205
+#: ../../application/modules/admin/controllers/BibController.php:206
 msgid "** nouveau plan **"
 msgstr ""
 
@@ -3562,6 +3607,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:254
 #: ../../application/modules/admin/controllers/BibController.php:203
+#: ../../application/modules/admin/controllers/BibController.php:204
 #, php-format
 msgid "Ajouter un plan de la bibliothèque: %s"
 msgstr ""
@@ -3579,6 +3625,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:319
 #: ../../application/modules/admin/controllers/BibController.php:317
 #: ../../application/modules/admin/controllers/BibController.php:256
+#: ../../application/modules/admin/controllers/BibController.php:257
 #, php-format
 msgid "Modifier un plan de la bibliothèque: %s"
 msgstr ""
@@ -4091,6 +4138,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RechercheController.php:454
 #: ../../application/modules/opac/controllers/RechercheController.php:472
 #: ../../application/modules/opac/controllers/RechercheController.php:463
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159
 #, php-format
 msgid "Editeur : %s"
 msgstr ""
@@ -4192,18 +4240,21 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:34
 #: ../../application/modules/opac/controllers/RssController.php:39
 #: ../../application/modules/opac/controllers/RssController.php:58
+#: ../../application/modules/opac/controllers/RssController.php:51
 msgid "Impossible de lire le flux rss"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/RssController.php:36
 #: ../../application/modules/opac/controllers/RssController.php:41
 #: ../../application/modules/opac/controllers/RssController.php:60
+#: ../../application/modules/opac/controllers/RssController.php:53
 msgid "Le ou les flux demandés ne sont plus valides"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/RssController.php:37
 #: ../../application/modules/opac/controllers/RssController.php:42
 #: ../../application/modules/opac/controllers/RssController.php:61
+#: ../../application/modules/opac/controllers/RssController.php:54
 msgid "Merci de le signaler à un responsable de la bibliothèque."
 msgstr ""
 
@@ -4222,6 +4273,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:382
 #: ../../application/modules/opac/controllers/AbonneController.php:385
 #: ../../application/modules/opac/controllers/AbonneController.php:386
+#: ../../application/modules/opac/controllers/RssController.php:57
 msgid "Erreur"
 msgstr ""
 
@@ -4229,6 +4281,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:99
 #: ../../application/modules/opac/controllers/RssController.php:118
 #: ../../application/modules/opac/controllers/RssController.php:113
+#: ../../application/modules/opac/controllers/RssController.php:104
 msgid "Derniers Fils RSS"
 msgstr ""
 
@@ -4238,6 +4291,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:146
 #: ../../application/modules/opac/controllers/RssController.php:165
 #: ../../application/modules/opac/controllers/RssController.php:161
+#: ../../application/modules/opac/controllers/RssController.php:152
 msgid "L'adresse du flux RSS n'est plus valide."
 msgstr ""
 
@@ -4247,6 +4301,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:197
 #: ../../application/modules/opac/controllers/RssController.php:216
 #: ../../application/modules/opac/controllers/RssController.php:212
+#: ../../application/modules/opac/controllers/RssController.php:203
 msgid "Il y a un problème avec l'adresse du flux RSS"
 msgstr ""
 
@@ -4266,6 +4321,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:217
 #: ../../application/modules/opac/controllers/RssController.php:236
 #: ../../application/modules/opac/controllers/RssController.php:232
+#: ../../application/modules/opac/controllers/RssController.php:218
 msgid "Modérations"
 msgstr ""
 
@@ -4275,6 +4331,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:252
 #: ../../application/modules/opac/controllers/RssController.php:248
 #: ../../application/modules/opac/controllers/RssController.php:249
+#: ../../application/modules/opac/controllers/RssController.php:235
 msgid "Aucune donnée à modérer"
 msgstr ""
 
@@ -4295,6 +4352,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:266
 #: ../../application/modules/opac/controllers/RssController.php:268
 #: ../../application/modules/opac/controllers/RssController.php:269
+#: ../../application/modules/opac/controllers/RssController.php:252
 #, php-format
 msgid "Critiques de la sélection: %s"
 msgstr ""
@@ -4455,6 +4513,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:429
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:457
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:131
 msgid "n°"
 msgstr ""
 
@@ -4553,6 +4612,7 @@ msgstr ""
 #: ../../library/Class/CriteresRecherche.php:141
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:22
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:35
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 msgid "Auteur"
 msgstr ""
 
@@ -4792,6 +4852,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/BibView.php:166
 #: ../../application/modules/opac/controllers/AbonneController.php:1121
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:14
+#: ../../application/modules/opac/controllers/AbonneController.php:1120
 msgid "Carte"
 msgstr ""
 
@@ -4997,46 +5058,57 @@ msgid "Filtrer les variables"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:4
+#: ../../application/modules/admin/views/scripts/index/index.phtml:32
 msgid "Démonstrations vidéos"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:48
 msgid "» Modifier «"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:25
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Etat du site"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 msgid "Nom du domaine"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:49
+#: ../../application/modules/admin/views/scripts/index/index.phtml:77
 msgid "Participez à la communauté"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:51
+#: ../../application/modules/admin/views/scripts/index/index.phtml:79
 msgid "Site communautaire"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:52
+#: ../../application/modules/admin/views/scripts/index/index.phtml:80
 msgid "Google group Bokeh"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
+#: ../../application/modules/admin/views/scripts/index/index.phtml:81
 msgid "Wiki Bokeh"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
+#: ../../application/modules/admin/views/scripts/index/index.phtml:82
 msgid "Code source"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:85
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:58
+#: ../../application/modules/admin/views/scripts/index/index.phtml:86
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -5077,6 +5149,8 @@ msgstr ""
 
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:37
 #: ../../library/Class/TableDescription.php:206
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:12
+#: ../../library/Class/TableDescription.php:222
 msgid "Actions"
 msgstr ""
 
@@ -5267,35 +5341,43 @@ msgid "Exporter en EAD"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:10
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:3
 msgid "Utilisation des ressources PNB Dilicom"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:14
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:8
 msgid "Exporter le tableau en CSV"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:17
+#: ../../library/Class/TableDescription/PNBItems.php:28
 msgid "Nombre de prêts"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:18
+#: ../../library/Class/TableDescription/PNBItems.php:29
 msgid "Nombre de prêts simultanés"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:19
+#: ../../library/Class/TableDescription/PNBItems.php:30
 msgid "Durée de prêt en jours"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:20
+#: ../../library/Class/TableDescription/PNBItems.php:31
 msgid "Nombre de jours restant sur la licence"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:21
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:78
+#: ../../library/Class/TableDescription/PNBItems.php:32
 msgid "Date de commande"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:33
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:15
 msgid "Import des offres Dilicom/PNB"
 msgstr ""
 
@@ -5392,6 +5474,7 @@ msgid "Supprimer tous les événements"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:34
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:39
 msgid "Nombre d'événements"
 msgstr ""
 
@@ -5399,14 +5482,17 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:158
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:40
 msgid "URL"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:41
 msgid "Categorie"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:28
 msgid "Moissonner"
 msgstr ""
 
@@ -5580,30 +5666,36 @@ msgid "Êtes-vous sur de vouloir supprimer cette version de l\\'historique ?"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:1
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:2
 msgid "Contenus liés à l'article"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:3
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:4
 #, php-format
 msgid "Nombre d'avis abonnés : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:5
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:8
 #, php-format
 msgid "Nombre de traductions : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:9
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:12
 #, php-format
 msgid "Nombre de formulaires : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:14
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:16
 #, php-format
 msgid "Nombre de versions : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:30
 msgid "Toutes les données de l'article seront effacées !"
 msgstr ""
 
@@ -5680,6 +5772,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Record.php:33
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:128
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:55
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
 msgid "Champs à afficher"
 msgstr ""
 
@@ -5743,6 +5836,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Profile/Page.php:68
 #: ../../library/ZendAfi/View/Helper/Search/Display.php:27
 #: ../../library/ZendAfi/Form.php:237
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:363
 msgid "Affichage"
 msgstr ""
 
@@ -5774,6 +5868,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:53
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:36
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:79
 msgid "Par ordre de sélection"
 msgstr ""
 
@@ -5806,6 +5901,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:66
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:69
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:71
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:23
 msgid "Afficher"
 msgstr ""
 
@@ -5924,14 +6020,17 @@ msgid "Historique"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:6
 msgid "Ajouter une plage horaire de réservation multimedia"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:7
 msgid "Ajouter une plage d'ouverture"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:10
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:11
 msgid "Retour à la liste des bibliothèques"
 msgstr ""
 
@@ -5944,6 +6043,7 @@ msgid "Ajouter une tâche"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:18
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 msgid "Dernière exécution"
 msgstr ""
 
@@ -5972,14 +6072,17 @@ msgid "Filtrer les informations système"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14
 msgid "Vider la totalité du cache"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:21
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:19
 msgid "Réinitialiser les vignettes non reconnues"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:26
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:24
 msgid "Constitution du cache"
 msgstr ""
 
@@ -5998,6 +6101,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:28
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:187
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:35
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:31
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:31
 msgid "Oui"
 msgstr ""
 
@@ -6007,6 +6113,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:29
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:186
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:32
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:32
 msgid "Non"
 msgstr ""
 
@@ -6020,6 +6129,7 @@ msgstr ""
 
 #: ../../application/modules/admin/views/scripts/activity/_activity_actions.phtml:11
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:21
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:30
 msgid "Cacher"
 msgstr ""
 
@@ -6050,6 +6160,7 @@ msgstr ""
 
 #: ../../application/modules/admin/views/scripts/activity/index.phtml:22
 #: ../../library/Class/CustomField/Model.php:53
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:109
 msgid "Session"
 msgstr ""
 
@@ -6058,10 +6169,12 @@ msgid "Participants"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:16
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:11
 msgid "Modifier la session"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:47
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:61
 msgid "Supprimer la session"
 msgstr ""
 
@@ -6099,22 +6212,28 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:43
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:115
+#: ../../application/modules/admin/controllers/StatController.php:41
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
 msgid "Recherches infructueuses"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:52
+#: ../../application/modules/admin/controllers/StatController.php:50
 msgid "Statistiques des réservations de notices"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:58
+#: ../../application/modules/admin/controllers/StatController.php:56
 msgid "Palmarès des réservations de notices"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:64
+#: ../../application/modules/admin/controllers/StatController.php:62
 msgid "Tableau de bord PIWIK"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:66
+#: ../../application/modules/admin/controllers/StatController.php:64
 msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr ""
 
@@ -6126,6 +6245,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/PrintController.php:31
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
 msgid "Modèles d'impressions"
 msgstr ""
 
@@ -6280,6 +6400,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:58
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 msgid "Articles"
 msgstr ""
 
@@ -6298,11 +6419,15 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:230
 #: ../../application/modules/admin/controllers/ModulesController.php:262
+#: ../../application/modules/admin/controllers/ModulesController.php:229
+#: ../../application/modules/admin/controllers/ModulesController.php:261
 msgid "Les caractères \";\" et \"-\" sont interdits"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:235
 #: ../../application/modules/admin/controllers/ModulesController.php:267
+#: ../../application/modules/admin/controllers/ModulesController.php:234
+#: ../../application/modules/admin/controllers/ModulesController.php:266
 #, php-format
 msgid "La zone \"%s\" n'est pas une zone unimarc valide"
 msgstr ""
@@ -6310,34 +6435,44 @@ msgstr ""
 #: ../../application/modules/admin/controllers/ModulesController.php:238
 #: ../../application/modules/admin/controllers/ModulesController.php:241
 #: ../../application/modules/admin/controllers/ModulesController.php:270
+#: ../../application/modules/admin/controllers/ModulesController.php:237
+#: ../../application/modules/admin/controllers/ModulesController.php:240
+#: ../../application/modules/admin/controllers/ModulesController.php:269
 #, php-format
 msgid "Le champ \"%s\" n'est pas un champ unimarc valide"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:287
+#: ../../application/modules/admin/controllers/ModulesController.php:286
 msgid "Configuration du résultat de recherche"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:301
+#: ../../application/modules/admin/controllers/ModulesController.php:300
 #, php-format
 msgid "Configuration de l'affichage du type %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:434
+#: ../../application/modules/admin/controllers/ModulesController.php:433
 msgid "La configuration a été enregistrée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:455
+#: ../../application/modules/admin/controllers/ModulesController.php:454
 msgid "Sélectionnez un panier ou un domaine"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:464
+#: ../../application/modules/admin/controllers/ModulesController.php:463
 msgid "Configuration sauvegardée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:492
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:73
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:88
+#: ../../application/modules/admin/controllers/ModulesController.php:491
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:92
 msgid "Étendre le paramétrage"
 msgstr ""
 
@@ -6367,34 +6502,42 @@ msgid "Gestion des variables"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:85
+#: ../../application/modules/admin/controllers/IndexController.php:94
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:93
+#: ../../application/modules/admin/controllers/IndexController.php:102
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:111
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:123
+#: ../../application/modules/admin/controllers/IndexController.php:133
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:105
+#: ../../application/modules/admin/controllers/IndexController.php:144
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 msgid "Mise à jour de la charte graphique"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:145
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:146
+#: ../../application/modules/admin/controllers/IndexController.php:156
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -6489,10 +6632,12 @@ msgid "Moissonnage ArteVOD"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:132
+#: ../../application/modules/admin/controllers/HarvestController.php:110
 msgid "Moissonnage Orphea"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:147
+#: ../../application/modules/admin/controllers/HarvestController.php:125
 msgid "URL de la page Jamendo"
 msgstr ""
 
@@ -6502,34 +6647,44 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:46
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49
+#: ../../application/modules/admin/controllers/HarvestController.php:128
+#: ../../application/modules/admin/controllers/HarvestController.php:185
 msgid "Album"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:151
 #: ../../application/modules/admin/controllers/HarvestController.php:208
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:550
+#: ../../application/modules/admin/controllers/HarvestController.php:129
+#: ../../application/modules/admin/controllers/HarvestController.php:186
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
 msgid "Importer"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:155
+#: ../../application/modules/admin/controllers/HarvestController.php:133
 #, php-format
 msgid "Album \"%s\" importé de Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:166
+#: ../../application/modules/admin/controllers/HarvestController.php:144
 msgid "Moissonnage Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:204
+#: ../../application/modules/admin/controllers/HarvestController.php:182
 msgid "URL de la piste SoundCloud"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:212
+#: ../../application/modules/admin/controllers/HarvestController.php:190
 #, php-format
 msgid "Album \"%s\" importé de SoundCloud"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:223
+#: ../../application/modules/admin/controllers/HarvestController.php:201
 msgid "Import SoundCloud"
 msgstr ""
 
@@ -6540,28 +6695,33 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:298
 #: ../../application/modules/admin/controllers/ProfilController.php:305
+#: ../../application/modules/admin/controllers/ProfilController.php:308
 msgid "Page "
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:334
 #: ../../application/modules/admin/controllers/ProfilController.php:341
+#: ../../application/modules/admin/controllers/ProfilController.php:366
 #, php-format
 msgid "Configuration de la page: %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:423
 #: ../../application/modules/admin/controllers/ProfilController.php:430
+#: ../../application/modules/admin/controllers/ProfilController.php:460
 #, php-format
 msgid "Modifier le profil: %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:470
 #: ../../application/modules/admin/controllers/ProfilController.php:485
+#: ../../application/modules/admin/controllers/ProfilController.php:515
 msgid "Menu horizontal dupliqué sur tous les autres profils."
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:477
 #: ../../application/modules/admin/controllers/ProfilController.php:492
+#: ../../application/modules/admin/controllers/ProfilController.php:522
 msgid "Configuration des pages appliquée à tous les autres profils."
 msgstr ""
 
@@ -6580,19 +6740,23 @@ msgid "Prévisualisation"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BatchController.php:32
+#: ../../application/modules/admin/controllers/BatchController.php:97
 msgid "Tâche executée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BatchController.php:39
+#: ../../application/modules/admin/controllers/BatchController.php:107
 #, php-format
 msgid "Exécution du traitement \"%s\""
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BibController.php:104
+#: ../../application/modules/admin/controllers/BibController.php:105
 msgid "Nouvelle localisation"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BibController.php:336
+#: ../../application/modules/admin/controllers/BibController.php:337
 #, php-format
 msgid "Permissions par défaut de la bibliothèque: %s"
 msgstr ""
@@ -6613,27 +6777,32 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:86
 #: ../../application/modules/admin/controllers/WidgetController.php:117
+#: ../../application/modules/admin/controllers/WidgetController.php:143
 #, php-format
 msgid "La boite %s a été supprimée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:93
 #: ../../application/modules/admin/controllers/WidgetController.php:124
+#: ../../application/modules/admin/controllers/WidgetController.php:150
 msgid "Menu ajouté"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:104
 #: ../../application/modules/admin/controllers/WidgetController.php:135
+#: ../../application/modules/admin/controllers/WidgetController.php:161
 msgid "Une erreur c'est produite, le menu n'a pas pu être supprimé"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:106
 #: ../../application/modules/admin/controllers/WidgetController.php:137
+#: ../../application/modules/admin/controllers/WidgetController.php:163
 msgid "Menu supprimé"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:157
 #: ../../application/modules/admin/controllers/WidgetController.php:200
+#: ../../application/modules/admin/controllers/WidgetController.php:227
 #, php-format
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr ""
@@ -6643,53 +6812,69 @@ msgid "Test des Web Services"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:41
+#: ../../application/modules/admin/controllers/SystemeController.php:52
+#: ../../application/modules/admin/controllers/SystemeController.php:57
 msgid "Contrôle du cache des images"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:112
+#: ../../application/modules/admin/controllers/SystemeController.php:118
 msgid "Import des avis opac2"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:122
+#: ../../application/modules/admin/controllers/SystemeController.php:128
 msgid "Il n'y a aucune donnée à importer."
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:155
+#: ../../application/modules/admin/controllers/SystemeController.php:140
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154
 msgid "Génération du site"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:145
+#: ../../application/modules/admin/controllers/SystemeController.php:151
 msgid "site généré"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:150
 #: ../../application/modules/admin/controllers/SystemeController.php:218
+#: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:224
 msgid "Le fichier reçu n'est pas valide"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:162
 msgid "Mise à jour des thesauri"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:188
+#: ../../application/modules/admin/controllers/SystemeController.php:194
 msgid "Les libellés ont été mis à jour"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:196
+#: ../../application/modules/admin/controllers/SystemeController.php:202
 msgid "Importation d'un thesaurus"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:212
+#: ../../application/modules/admin/controllers/SystemeController.php:218
 msgid "import ok"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:263
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
+#: ../../application/modules/admin/controllers/SystemeController.php:269
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
 msgid "Informations système"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:268
+#: ../../application/modules/admin/controllers/SystemeController.php:274
 msgid "Test de l'envoi des mails"
 msgstr ""
 
@@ -6699,14 +6884,17 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ReponseFormulaireMail.php:52
 #: ../../library/ZendAfi/Form/SuggestionAchat.php:61
 #: ../../library/ZendAfi/Form/SendMail.php:53
+#: ../../application/modules/admin/controllers/SystemeController.php:292
 msgid "Envoyer"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:298
+#: ../../application/modules/admin/controllers/SystemeController.php:304
 msgid "Le mail a bien été envoyé"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:306
+#: ../../application/modules/admin/controllers/SystemeController.php:312
 msgid "Etat du système"
 msgstr ""
 
@@ -6761,6 +6949,7 @@ msgid "L'album \"%s\" a été créé"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/UsersController.php:47
+#: ../../application/modules/admin/controllers/UsersController.php:48
 msgid "Préférences utilisateur sauvegardées"
 msgstr ""
 
@@ -6774,6 +6963,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/AlbumController.php:75
 #: ../../library/Class/Batch/Dilicom.php:30
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
 msgid "PNB Dilicom"
 msgstr ""
 
@@ -6783,6 +6973,7 @@ msgid "%d livres numériques importés. %s"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/AlbumController.php:133
+#: ../../application/modules/admin/controllers/AlbumController.php:136
 msgid "Importer le fichier XML"
 msgstr ""
 
@@ -6837,6 +7028,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModoController.php:829
 #: ../../application/modules/opac/controllers/AbonneController.php:941
+#: ../../application/modules/opac/controllers/AbonneController.php:940
 msgid "Aucun courriel envoyé, erreur: "
 msgstr ""
 
@@ -6873,18 +7065,22 @@ msgid "Aucun article trouvé"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:79
+#: ../../application/modules/opac/views/scripts/head.phtml:78
 msgid "Blanc sur noir"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:82
+#: ../../application/modules/opac/views/scripts/head.phtml:81
 msgid "Noir sur blanc"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:85
+#: ../../application/modules/opac/views/scripts/head.phtml:84
 msgid "Bleu sur jaune"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:87
+#: ../../application/modules/opac/views/scripts/head.phtml:86
 #, php-format
 msgid ""
 "<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\" "
@@ -7128,6 +7324,7 @@ msgstr ""
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:47
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:44
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58
 msgid "Collection"
 msgstr ""
 
@@ -7145,6 +7342,7 @@ msgstr ""
 
 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:91
 #: ../../library/ZendAfi/Form/Search/Advanced.php:35
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:191
 msgid "Commence par"
 msgstr ""
 
@@ -7221,6 +7419,7 @@ msgid "Vos dernières recherches"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/footer.phtml:8
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:224
 msgid "Accès pro."
 msgstr ""
 
@@ -7322,6 +7521,7 @@ msgstr ""
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:21
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:23
 #: ../../application/modules/opac/views/scripts/panier/domain.phtml:19
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:20
 msgid "Voir les paniers des professionnels"
 msgstr ""
 
@@ -7355,6 +7555,7 @@ msgid "Voir mes paniers"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:20
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:15
 msgid "Voir les paniers rangés dans des domaines"
 msgstr ""
 
@@ -7436,6 +7637,10 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:109
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 #: ../../library/Class/Systeme/ModulesAccueil/Calendrier.php:61
+#: ../../application/modules/opac/controllers/AbonneController.php:866
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:134
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:56
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:81
 msgid "Lieu"
 msgstr ""
 
@@ -7447,6 +7652,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:868
 #: ../../library/ZendAfi/Form/Admin/Ouverture.php:44
 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:867
 msgid "Jour"
 msgstr ""
 
@@ -7462,12 +7668,14 @@ msgstr ""
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:11
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-group.phtml:10
 #: ../../library/ZendAfi/Form/Album/Ressource.php:91
+#: ../../library/Class/SessionActivity.php:476
 msgid "Durée"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:8
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:11
 #: ../../application/modules/opac/controllers/AbonneController.php:871
+#: ../../application/modules/opac/controllers/AbonneController.php:870
 msgid "Poste"
 msgstr ""
 
@@ -7529,6 +7737,7 @@ msgstr ""
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:12
 #: ../../application/modules/opac/controllers/AbonneController.php:870
+#: ../../application/modules/opac/controllers/AbonneController.php:869
 msgid "Secteur"
 msgstr ""
 
@@ -7585,6 +7794,7 @@ msgstr ""
 
 #: ../../application/modules/opac/views/scripts/abonne/cards.phtml:44
 #: ../../application/modules/opac/controllers/AbonneController.php:1108
+#: ../../application/modules/opac/controllers/AbonneController.php:1107
 msgid "Ajouter une carte"
 msgstr ""
 
@@ -7609,6 +7819,7 @@ msgid "Tout prolonger"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:37
+#: ../../application/modules/opac/views/scripts/abonne/prets.phtml:35
 msgid "Prêts numériques en cours"
 msgstr ""
 
@@ -7815,6 +8026,7 @@ msgid "Prolongation du prêt"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:437
+#: ../../application/modules/opac/controllers/AbonneController.php:436
 #, php-format
 msgid "Votre réservation du document %s a bien été supprimée."
 msgstr ""
@@ -7824,50 +8036,62 @@ msgid "Suppression de la réservation"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:541
+#: ../../application/modules/opac/controllers/AbonneController.php:540
 msgid " par courrier postal"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:542
+#: ../../application/modules/opac/controllers/AbonneController.php:541
 msgid " par E-Mail"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:543
+#: ../../application/modules/opac/controllers/AbonneController.php:542
 msgid " par SMS"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:672
+#: ../../application/modules/opac/controllers/AbonneController.php:671
 msgid "Vous n'êtes pas autorisé à effectuer une réservation"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:675
+#: ../../application/modules/opac/controllers/AbonneController.php:674
 msgid "Quota déjà atteint ce jour, choisissez un autre jour."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:678
+#: ../../application/modules/opac/controllers/AbonneController.php:677
 msgid "Quota déjà atteint cette semaine, choisissez une autre semaine."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:681
+#: ../../application/modules/opac/controllers/AbonneController.php:680
 msgid "Quota déjà atteint ce mois, choisissez un autre mois."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:751
+#: ../../application/modules/opac/controllers/AbonneController.php:750
 msgid "Vous avez déjà une réservation dans ce créneau horaire"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:756
+#: ../../application/modules/opac/controllers/AbonneController.php:755
 msgid "Ce créneau n'est pas dans les heures d'ouverture."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:777
+#: ../../application/modules/opac/controllers/AbonneController.php:776
 msgid "À partir de quelle heure ?"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:779
+#: ../../application/modules/opac/controllers/AbonneController.php:778
 msgid "Pour quelle durée ?"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:782
+#: ../../application/modules/opac/controllers/AbonneController.php:781
 msgid "Choisir"
 msgstr ""
 
@@ -7878,82 +8102,102 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/BibView.php:179
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:104
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:868
+#: ../../library/Class/SessionActivity.php:469
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:75
 msgid "Horaires"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:872
 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:2
+#: ../../application/modules/opac/controllers/AbonneController.php:871
 msgid "Confirmation"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:944
+#: ../../application/modules/opac/controllers/AbonneController.php:943
 msgid "Suggestion d'achat enregistrée"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1021
 #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33
+#: ../../application/modules/opac/controllers/AbonneController.php:1020
 msgid "Gérer mes favoris"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1056
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/ValidityCards.php:41
 #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23
+#: ../../application/modules/opac/controllers/AbonneController.php:1055
 msgid "Mes cartes"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1067
+#: ../../application/modules/opac/controllers/AbonneController.php:1066
 #, php-format
 msgid "Vous n'utilisez plus la carte de %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1078
+#: ../../application/modules/opac/controllers/AbonneController.php:1077
 #, php-format
 msgid "Votre carte a été retirée à %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1097
+#: ../../application/modules/opac/controllers/AbonneController.php:1096
 msgid "Carte introuvable"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1133
+#: ../../application/modules/opac/controllers/AbonneController.php:1132
 msgid "Identifiant et/ou mot de passe incorrect"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1138
+#: ../../application/modules/opac/controllers/AbonneController.php:1137
 msgid "Vous ne pouvez pas ajouter votre propre carte"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1144
+#: ../../application/modules/opac/controllers/AbonneController.php:1143
 #, php-format
 msgid "Vous avez déjà ajouté la carte de \"%s\""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1150
+#: ../../application/modules/opac/controllers/AbonneController.php:1149
 #, php-format
 msgid "Carte de \"%s\" ajoutée"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1155
+#: ../../application/modules/opac/controllers/AbonneController.php:1154
 #, php-format
 msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1178
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34
+#: ../../application/modules/opac/controllers/AbonneController.php:1177
 msgid "S'inscrire à une activité"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1184
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52
+#: ../../application/modules/opac/controllers/AbonneController.php:1183
 msgid "Mes inscriptions en cours"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1190
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48
+#: ../../application/modules/opac/controllers/AbonneController.php:1189
 msgid "Mes activités suivies"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1215
+#: ../../application/modules/opac/controllers/AbonneController.php:1214
 msgid "Compléter votre adresse  email"
 msgstr ""
 
@@ -8024,6 +8268,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:289
 #: ../../library/ZendAfi/View/Helper/TagDilicomWidget.php:94
+#: ../../library/ZendAfi/View/Helper/Telephone/TagDilicomWidget.php:48
 msgid "Emprunter le livre au format EPUB"
 msgstr ""
 
@@ -8101,75 +8346,91 @@ msgid "Authentification"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:383
+#: ../../application/modules/opac/controllers/AuthController.php:386
 msgid "Inscription à la lettre d'information: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:393
+#: ../../application/modules/opac/controllers/AuthController.php:396
 msgid ""
 "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le "
 "compte qui utilise cet email."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:400
+#: ../../application/modules/opac/controllers/AuthController.php:403
 msgid "Demande d'inscription à la lettre d'information: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:417
+#: ../../application/modules/opac/controllers/AuthController.php:420
 msgid ""
 "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez "
 "réessayer. Si le problème persiste, veuillez contacter votre médiathèque."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:421
+#: ../../application/modules/opac/controllers/AuthController.php:424
 msgid ""
 "Une demande de confirmation d'inscription vous a été envoyée à l'adresse "
 "mail renseignée."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:439
+#: ../../application/modules/opac/controllers/AuthController.php:442
 msgid "Désinscription de la lettre d'information: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:462
+#: ../../application/modules/opac/controllers/AuthController.php:465
 msgid "Confirmation d'inscription à la newsletter: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:465
+#: ../../application/modules/opac/controllers/AuthController.php:468
 msgid "Inscription à la newsletter invalide."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid "Vous avez bien été abonné à la newsletter: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid " avec l'adresse suivante: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:472
+#: ../../application/modules/opac/controllers/AuthController.php:475
 msgid "Erreur lors de l\\inscription à la newsletter."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:494
+#: ../../application/modules/opac/controllers/AuthController.php:497
 msgid "Demande de préinscription"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:498
+#: ../../application/modules/opac/controllers/AuthController.php:501
 msgid "Cette fonctionnalité n'est pas activée."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:533
+#: ../../application/modules/opac/controllers/AuthController.php:541
 #, php-format
 msgid "Préinscription à %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:545
+#: ../../application/modules/opac/controllers/AuthController.php:553
 #, php-format
 msgid ""
 "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:558
+#: ../../application/modules/opac/controllers/AuthController.php:567
 msgid "Préinscription"
 msgstr ""
 
@@ -8212,6 +8473,7 @@ msgid "Sélection de bibliothèques pour la recherche"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/BibController.php:256
+#: ../../application/modules/opac/controllers/BibController.php:241
 msgid "Carte des bibliothèques"
 msgstr ""
 
@@ -8292,6 +8554,7 @@ msgstr ""
 #: ../../application/modules/telephone/controllers/AuthController.php:94
 #: ../../library/ZendAfi/Form/Register.php:184
 #: ../../library/ZendAfi/Form/Configuration/AuthRegister.php:77
+#: ../../library/ZendAfi/Form/Register.php:186
 msgid "N° de carte"
 msgstr ""
 
@@ -8369,6 +8632,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36
 #: ../../library/Class/Codification.php:234
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
 msgid "Notices liées"
 msgstr ""
 
@@ -8409,6 +8673,8 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 #: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:38
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
+#: ../../library/Class/User/SearchCriteria.php:81
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 msgid "Recherche"
 msgstr ""
 
@@ -8431,6 +8697,7 @@ msgid "Notices similaires"
 msgstr ""
 
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:2
+#: ../../application/modules/opac/controllers/BlogController.php:51
 msgid "Avis"
 msgstr ""
 
@@ -8559,11 +8826,14 @@ msgstr ""
 #: ../../library/Class/User/SearchCriteria.php:134
 #: ../../library/Class/Bib.php:484
 #: ../../library/ZendAfi/View/Helper/ComboLibraries.php:37
+#: ../../library/Class/User/SearchCriteria.php:137
+#: ../../library/Class/Bib.php:474
 msgid "Toutes"
 msgstr ""
 
 #: ../../library/Class/User/SearchCriteria.php:153
 #: ../../library/ZendAfi/Form/Admin/User.php:125
+#: ../../library/Class/User/SearchCriteria.php:156
 msgid "Niveau d'accès"
 msgstr ""
 
@@ -8574,10 +8844,12 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
+#: ../../library/Class/User/SearchCriteria.php:157
 msgid "Tous"
 msgstr ""
 
 #: ../../library/Class/User/SearchCriteria.php:182
+#: ../../library/Class/User/SearchCriteria.php:185
 msgid "Abonnement valide"
 msgstr ""
 
@@ -8587,6 +8859,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:156
 #: ../../library/ZendAfi/View/Helper/TreeView.php:54
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:36
+#: ../../library/Class/User/SearchCriteria.php:207
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:81
 msgid "Rechercher"
 msgstr ""
 
@@ -8628,6 +8902,8 @@ msgid "Volontairement désinscrit"
 msgstr ""
 
 #: ../../library/Class/User/SearchCriteria/NewsletterSubscriptionStatus.php:41
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:33
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:33
 msgid "Indifférent"
 msgstr ""
 
@@ -8637,41 +8913,42 @@ msgid ""
 "cookies. <a href=\""
 msgstr ""
 
-#: ../../library/Class/Profil.php:1341
+#: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342
 msgid "Le libellé est obligatoire."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1345
+#: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346
 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1352
+#: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353
 msgid ""
 "La somme des largeurs des divisions ne doit pas excéder la largeur du site."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1356
+#: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357
 msgid "Il manque la largeur de la division 1."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1360
+#: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361
 msgid "Il manque la largeur de la division 2."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1364
+#: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365
 msgid "Il manque la largeur de la division 3."
 msgstr ""
 
 #: ../../library/Class/Profil.php:1368 ../../library/Class/Profil.php:1372
-#: ../../library/Class/Profil.php:1376
+#: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369
+#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377
 msgid "Une marge interne de division ne peut pas excéder 20 pixels."
 msgstr ""
 
-#: ../../library/Class/Profil.php:1380
+#: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381
 msgid "La couleur du texte bandeau doit être au format #001122"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1384
+#: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385
 msgid "La couleur des liens du bandeau doit être au format #001122"
 msgstr ""
 
@@ -8687,6 +8964,7 @@ msgstr ""
 #: ../../library/Class/NoticeOAI.php:248
 #: ../../library/Class/MoteurRecherche.php:478
 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67
+#: ../../library/Class/MoteurRecherche.php:482
 msgid "Aucun résultat trouvé"
 msgstr ""
 
@@ -9401,6 +9679,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:129
 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:144
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:397
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:38
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:63
 msgid "Statut"
 msgstr ""
 
@@ -9798,7 +10078,7 @@ msgid ""
 "caractères"
 msgstr ""
 
-#: ../../library/Class/Lieu.php:84
+#: ../../library/Class/Lieu.php:84 ../../library/Class/Lieu.php:73
 msgid "Le libellé doit être renseigné"
 msgstr ""
 
@@ -9974,14 +10254,17 @@ msgstr ""
 #: ../../library/Class/Codification.php:234
 #: ../../library/ZendAfi/Form/Search/Advanced.php:34
 #: ../../library/Class/Codification.php:235
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:192
 msgid "Contient"
 msgstr ""
 
 #: ../../library/Class/PanierNotice.php:470
+#: ../../library/Class/PanierNotice.php:487
 msgid "Paniers sans domaine, rattachés à leur créateur"
 msgstr ""
 
 #: ../../library/Class/Indexation/PseudoNotice.php:141
+#: ../../library/Class/Indexation/PseudoNotice.php:143
 msgid "A consulter sur le portail"
 msgstr ""
 
@@ -10236,15 +10519,15 @@ msgstr ""
 msgid "Vignette"
 msgstr ""
 
-#: ../../library/Class/Bib.php:319
+#: ../../library/Class/Bib.php:319 ../../library/Class/Bib.php:316
 msgid "Invisible"
 msgstr ""
 
-#: ../../library/Class/Bib.php:320
+#: ../../library/Class/Bib.php:320 ../../library/Class/Bib.php:317
 msgid "N'envoie pas de données"
 msgstr ""
 
-#: ../../library/Class/Bib.php:321
+#: ../../library/Class/Bib.php:321 ../../library/Class/Bib.php:318
 msgid "Envoie des données"
 msgstr ""
 
@@ -10386,41 +10669,49 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:78
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:80
 msgid "Par ordre alphabétique"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
 msgid "En haut"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:87
 msgid "En bas"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:88
 msgid "En haut et en bas"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:93
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
 msgid "Ouvertures"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 msgid "Adresse mail"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 msgid "Ouverture"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:121
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:122
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:124
 msgid "Onglets"
 msgstr ""
 
@@ -10430,16 +10721,21 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:123
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:72
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:83
 msgid "Liste"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:130
 msgid "Gauche"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:129
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:131
 msgid "Droite"
 msgstr ""
 
@@ -10907,11 +11203,13 @@ msgid "La configuration de la boite %s a été sauvegardée"
 msgstr ""
 
 #: ../../library/Class/Systeme/Widget/Menu.php:163
+#: ../../library/Class/Systeme/Widget/Menu.php:169
 #, php-format
 msgid "La configuration du menu %s a été sauvegardée"
 msgstr ""
 
 #: ../../library/Class/Systeme/Widget/Menu.php:165
+#: ../../library/Class/Systeme/Widget/Menu.php:171
 #, php-format
 msgid "La configuration de l'entrée de menu %s a été sauvegardée"
 msgstr ""
@@ -10992,6 +11290,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:41
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 msgid "Utilisateurs"
 msgstr ""
 
@@ -11007,11 +11306,13 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:90
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
 msgid "Bibliothèques"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:143
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
 msgid "Variables"
 msgstr ""
 
@@ -11024,6 +11325,7 @@ msgid "Identifiant unique"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:76
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:6
 msgid "Base de données"
 msgstr ""
 
@@ -11156,18 +11458,22 @@ msgid "Non disponible"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:465
+#: ../../library/Class/CodifThesaurus.php:499
 msgid "Vous devez définir le libellé"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:469
+#: ../../library/Class/CodifThesaurus.php:503
 msgid "Vous devez définir au moins une règle"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:472
+#: ../../library/Class/CodifThesaurus.php:506
 msgid "La règle n'est pas de la forme 686$a"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:482
+#: ../../library/Class/CodifThesaurus.php:516
 #, php-format
 msgid "Nombre maximum d'élément à ce niveau déjà atteint (%s)"
 msgstr ""
@@ -11185,7 +11491,7 @@ msgstr ""
 msgid "L'album doit avoir un type de document"
 msgstr ""
 
-#: ../../library/Class/Album.php:1598
+#: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 msgid "Domaine public"
 msgstr ""
 
@@ -11314,13 +11620,15 @@ msgstr ""
 msgid "Valeur(s)"
 msgstr ""
 
-#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50
+#: ../../library/Class/ModeleFusion.php:75
+#: ../../library/Class/Ouverture.php:50
 #: ../../library/ZendAfi/Form/Album.php:235
 #: ../../library/ZendAfi/Form/Admin/News.php:243
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:53
 #: ../../library/ZendAfi/Form/Admin/Library.php:263
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
 msgid "Aucun"
 msgstr ""
 
@@ -11464,11 +11772,13 @@ msgid "Les batchs ne sont traités qu'en mode cron."
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:68
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:75
 #, php-format
 msgid "OK, temps de traitement : %s"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:72
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:79
 #, php-format
 msgid "Erreur lors de l'execution du batch %s"
 msgstr ""
@@ -11482,11 +11792,13 @@ msgid "Ligne non traitée car le libellé n'a pas pu être lu"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:101
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:103
 #, php-format
 msgid "L'exemplaire id_origine : %s / id_int_bib : %s n'a pas été trouvé."
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:110
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:112
 #, php-format
 msgid "Le panier \"%s\" est orphelin. Il sera rattaché à l'utilisateur \"%s\""
 msgstr ""
@@ -11546,26 +11858,32 @@ msgid "1 - Création des bibliothèques"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:194
+#: ../../library/Class/Cosmogramme/Generator.php:193
 msgid "2 - Création des annexes"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:195
+#: ../../library/Class/Cosmogramme/Generator.php:194
 msgid "Non demandée"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:204
+#: ../../library/Class/Cosmogramme/Generator.php:203
 msgid "3 - Programmation des intégrations"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:250
+#: ../../library/Class/Cosmogramme/Generator.php:249
 msgid "7 - Création des classes Dewey"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:252
+#: ../../library/Class/Cosmogramme/Generator.php:251
 msgid "Ignoré en mode mise à jour"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:360
+#: ../../library/Class/Cosmogramme/Generator.php:359
 #, php-format
 msgid "Profil de données %s (%d) non présent ou mal configuré"
 msgstr ""
@@ -11585,14 +11903,17 @@ msgstr ""
 
 #: ../../library/Class/CriteresRecherche.php:450
 #: ../../library/Class/CriteresRecherche.php:454
+#: ../../library/Class/CriteresRecherche.php:476
 msgid "La sélection ne contient aucune notice"
 msgstr ""
 
 #: ../../library/Class/AvisNotice.php:382
+#: ../../library/Class/AvisNotice.php:386
 msgid "Vous devez saisir un titre"
 msgstr ""
 
 #: ../../library/Class/AvisNotice.php:396
+#: ../../library/Class/AvisNotice.php:400
 #, php-format
 msgid "L'avis doit avoir une longueur comprise entre %s et %s caractères"
 msgstr ""
@@ -11623,6 +11944,7 @@ msgid "Formulaires"
 msgstr ""
 
 #: ../../library/Class/MoteurRecherche.php:441
+#: ../../library/Class/MoteurRecherche.php:445
 msgid "Domaine non paramétré"
 msgstr ""
 
@@ -11636,6 +11958,7 @@ msgid "inconnu"
 msgstr ""
 
 #: ../../library/Class/OneDTouchLink.php:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 msgid "Nouvelle version"
 msgstr ""
 
@@ -11644,6 +11967,7 @@ msgid "Ancienne version"
 msgstr ""
 
 #: ../../library/Class/ExternalAgenda.php:42
+#: ../../library/Class/ExternalAgenda.php:56
 msgid "Une catégorie est requise"
 msgstr ""
 
@@ -11797,6 +12121,10 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:59
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Domains.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
+#: ../../library/Class/Catalogue.php:1171
+#: ../../library/Class/Catalogue.php:1209
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:240
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:326
 msgid "Domaines"
 msgstr ""
 
@@ -11984,6 +12312,9 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/ComboCategories.php:45
 #: ../../library/ZendAfi/View/Helper/GetSendProgressJsonFor.php:29
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:30
+#: ../../library/Class/Repeat/WeekDays.php:80
+#: ../../library/Class/Batch/Definition.php:68
+#: ../../library/Class/Batch/Definition.php:71
 msgid "Aucune"
 msgstr ""
 
@@ -12057,6 +12388,7 @@ msgid "Confirmez votre e-mail"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Register.php:165
+#: ../../library/ZendAfi/Form/Register.php:167
 msgid "Bibliothèque de rattachement"
 msgstr ""
 
@@ -12198,6 +12530,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ModeleFusion.php:59
 #: ../../library/ZendAfi/Form/SendMail.php:46
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:122
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:117
 msgid "Contenu"
 msgstr ""
 
@@ -12230,6 +12563,7 @@ msgid "Sous-titre"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Album.php:147
+#: ../../application/modules/admin/controllers/AlbumController.php:162
 msgid "Choisissez une catégorie"
 msgstr ""
 
@@ -12342,6 +12676,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:87
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:88
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:76
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:80
 msgid "Propriétés"
 msgstr ""
 
@@ -12376,6 +12711,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:85
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:59
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:62
 msgid "Champs disponibles"
 msgstr ""
 
@@ -12536,18 +12872,22 @@ msgid "Date de naissance"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:66
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:70
 msgid "Choix de la bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:72
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:76
 msgid "Votre identité"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:77
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
 msgid "Votre adresse"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:85
 msgid "Information de contact"
 msgstr ""
 
@@ -12636,6 +12976,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/User.php:136
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
 msgid "Groupes"
 msgstr ""
 
@@ -12681,6 +13022,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/Location.php:34
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:548
 msgid "Site web"
 msgstr ""
 
@@ -12713,30 +13055,37 @@ msgid "Tous les"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:92
+#: ../../library/Class/Repeat/WeekDays.php:31
 msgid "lundi"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:93
+#: ../../library/Class/Repeat/WeekDays.php:32
 msgid "mardi"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:94
+#: ../../library/Class/Repeat/WeekDays.php:33
 msgid "mercredi"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:95
+#: ../../library/Class/Repeat/WeekDays.php:34
 msgid "jeudi"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:96
+#: ../../library/Class/Repeat/WeekDays.php:35
 msgid "vendredi"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:97
+#: ../../library/Class/Repeat/WeekDays.php:36
 msgid "samedi"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/News.php:98
+#: ../../library/Class/Repeat/WeekDays.php:37
 msgid "dimanche"
 msgstr ""
 
@@ -12764,6 +13113,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/TagCustomFields.php:31
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomFieldMeta.php:35
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomField.php:38
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:161
 msgid "Champs personnalisés"
 msgstr ""
 
@@ -12825,6 +13175,7 @@ msgid "Le flux doit être au format iCalendar"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:44
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:48
 msgid "Catégorie racine"
 msgstr ""
 
@@ -13282,16 +13633,19 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:370
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:113
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:383
 msgid "Banniere"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:383
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:397
 msgid "Filtrage du contenu"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:392
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:32
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:36
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:406
 msgid "Administration"
 msgstr ""
 
@@ -13685,11 +14039,13 @@ msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:39
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:30
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:92
 msgid "Personnaliser le lien du titre"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:44
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:97
 msgid "Rendre le titre de la boite cliquable"
 msgstr ""
 
@@ -13803,6 +14159,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:35
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:89
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:37
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:70
 msgid "Filtres disponibles"
 msgstr ""
 
@@ -13886,54 +14243,67 @@ msgid "groupé par année"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:32
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
 msgid "Bibliothèques à afficher"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:34
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:37
 msgid "Bibliothèques affichées"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:38
 msgid "Bibliothèques disponibles"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:39
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:42
 msgid "Nombres de biliothèques par page"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:45
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:48
 msgid "Ordre d'affichage des biliothèques"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:50
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:53
 msgid "Position de la pagination"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:61
 msgid "Champs affichées"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:63
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
 msgid "Filtres à afficher"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:69
 msgid "Filtres affichées"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:71
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:74
 msgid "Style d'affichage des filtres"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:76
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:79
 msgid "Position des filtres"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:81
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:84
 msgid "Lien rebond vers la fiche bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:85
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:88
 msgid "Afficher la carte interactive"
 msgstr ""
 
@@ -14287,6 +14657,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:53
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:70
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:69
 msgid "commence"
 msgstr ""
 
@@ -14309,6 +14680,7 @@ msgstr ""
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:121
 #: ../../library/ZendAfi/View/Helper/IconeSupport.php:52
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:99
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:98
 #, php-format
 msgid "Type de document: %s"
 msgstr ""
@@ -14316,11 +14688,13 @@ msgstr ""
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:111
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "Nouveautés de moins de: "
 msgstr ""
 
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 msgid "mois"
 msgstr ""
 
@@ -14337,6 +14711,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:181
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:176
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:201
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208
 msgid " OU "
 msgstr ""
 
@@ -14567,6 +14943,7 @@ msgid "s, "
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:45
 msgid "Enregistrer mes modifications"
 msgstr ""
 
@@ -14633,47 +15010,56 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:80
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:129
 msgid "Vider le cache"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:133
 msgid "Vider le cache de Bokeh"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:86
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:135
 msgid "Afficher les icones d'administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:95
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:99
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:144
 msgid "Editeur CSS"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:109
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:158
 msgid "Outils pour la page :"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:126
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:130
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #, php-format
 msgid "Activer ou désactiver : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:228
 msgid "Accéder à l'interface d'administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:191
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
 msgid "Accéder aux articles dans l'interface d'administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:199
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 msgid "Accéder aux domaines dans l'interface d'administration"
 msgstr ""
 
@@ -14689,49 +15075,59 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:211
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:215
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:246
 msgid "Console d'administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:221
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:225
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:256
 msgid "Synchronisation du CSS avec GIT"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:226
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:230
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 msgid "Faire une demande de mise à jour de la charte graphique"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:267
 msgid "Amber IDE"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:237
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:241
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:272
 msgid "ZF Debug"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:248
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:279
 msgid "Développement"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:265
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:296
 msgid "Déplacement des boites"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:96
 msgid "Prenom"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:97
 msgid "Role"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:42
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:151
 msgid "commence par"
 msgstr ""
 
@@ -14756,18 +15152,24 @@ msgid "libellé contient"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:67
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:214
 msgid "Hierarchie contient"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:68
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:147
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:215
 msgid "Libellé commence par"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:69
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:216
 msgid "Libellé contient"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:110
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:89
 msgid "Tout effacer"
 msgstr ""
 
@@ -14842,11 +15244,13 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:67
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 msgid "Objets java-script"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:69
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:78
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
 msgid "Objets flash"
 msgstr ""
 
@@ -14914,130 +15318,162 @@ msgid "Arte VOD"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79
 msgid "Vodeclic"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
 msgid "Orphea"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
 msgid "Numérique Premium"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
 msgid "Numilog"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
 msgid "Jamendo"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
 msgid "SoundCloud"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
 msgid "Tout Apprendre"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
 msgid "Catalogues OPDS"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
 msgid "Entrepôts OAI"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
 msgid "Import/Export EAD"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 msgid "Premier-Chapitre"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99
 msgid "Mise en page"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
 msgid "Profils"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
 msgid "Pictogrammes des genres"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
 msgid "Traductions"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112
 msgid "Statistiques"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
 msgid "Piwik"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121
 msgid "Administration du portail"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
 msgid "Territoires"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
 msgid "Multimedia"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137
 msgid "Système"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
 msgid "Accès à Cosmogramme"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141
 msgid "Batchs"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144
 msgid "Test des web-services"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147
 msgid "Test envoi mails"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
 msgid "Cache des images"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151
 msgid "Import avis opac2"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157
 msgid "Explorateur de fichiers"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162
 msgid "Rapports statistiques"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169
 msgid "Catalogues"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173
 msgid "Import Thesaurus"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:177
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176
 msgid "Modification Thesaurus"
 msgstr ""
 
@@ -15267,6 +15703,7 @@ msgid "Aller à la page suivante"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagPrintLink.php:28
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:49
 msgid "Imprimer"
 msgstr ""
 
@@ -15331,6 +15768,7 @@ msgid "Durée de la session"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
+#: ../../library/Class/SessionActivity.php:482
 msgid "Nombre de participants"
 msgstr ""
 
@@ -15347,6 +15785,8 @@ msgid "actuel"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:119
+#: ../../library/Class/SessionActivity.php:497
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:113
 msgid "Intervenants"
 msgstr ""
 
@@ -15558,6 +15998,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:60
+#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:77
 msgid "Enregistrer comme filtres par défaut"
 msgstr ""
 
@@ -15615,6 +16056,7 @@ msgid "Modifier le domaine affiché"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:103
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:107
 msgid "Afficher un nouveau domaine"
 msgstr ""
 
@@ -15623,19 +16065,23 @@ msgid "Modifier la source de données du kiosque"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:226
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:233
 msgid "Copier le code suivant sur le site où vous voulez afficher le kiosque"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:290
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:297
 msgid "Aucun résultat"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:340
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:347
 #, php-format
 msgid "Page précédente du kiosque \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:349
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:356
 #, php-format
 msgid "Page suivante du kiosque \"%s\""
 msgstr ""
@@ -15651,6 +16097,7 @@ msgid "Ce menu ne contient aucune entrée."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358
+#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378
 msgid "pictogramme pour "
 msgstr ""
 
@@ -15674,6 +16121,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Accueil/Newsletters.php:59
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:48
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:53
+#: ../../library/Class/SessionActivity.php:513
 msgid "S'inscrire"
 msgstr ""
 
@@ -15683,11 +16131,13 @@ msgid "Se désinscrire"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:128
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:129
 msgid "Erreur de configuration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:239
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:248
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:249
 #, php-format
 msgid "flux RSS de la boite %s"
 msgstr ""
@@ -15837,6 +16287,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Loans.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:46
+#: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:42
 msgid "Prolonger"
 msgstr ""
 
@@ -15861,6 +16312,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:46
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:173
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:171
 msgid "Supprimer cette réservation"
 msgstr ""
 
@@ -15913,6 +16365,7 @@ msgid "Nouveau titre"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:29
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:55
 msgid "Exporter"
 msgstr ""
 
@@ -16046,6 +16499,7 @@ msgid "Numéro de commande"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:81
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:3
 msgid "Nombre d'utilisateurs"
 msgstr ""
 
@@ -16095,29 +16549,35 @@ msgid "Accéder au livre numérique"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:89
 #, php-format
 msgid "Site: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:91
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
 msgid "Elargir la recherche à tous les sites"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:113
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:112
 #, php-format
 msgid "Recherche élargie à: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:139
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:138
 #, php-format
 msgid "Retirer le critère: %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:155
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:154
 msgid "Restreint à :"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171
 #, php-format
 msgid "Section: %s"
 msgstr ""
@@ -16162,6 +16622,7 @@ msgid " prolongation(s) impossible(s)."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:55
+#: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:54
 msgid "Votre prêt a bien été prolongé."
 msgstr ""
 
@@ -16175,6 +16636,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:48
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:138
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 msgid "État"
 msgstr ""
 
@@ -16184,11 +16646,13 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:139
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
 msgid "Suppr."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:95
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:172
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:170
 msgid "Etes vous sûr de vouloir supprimer cette réservation ?"
 msgstr ""
 
@@ -16198,6 +16662,7 @@ msgid "Supprimer la réservation du document %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:135
 msgid "Date d'expiration"
 msgstr ""
 
@@ -16267,16 +16732,19 @@ msgid "Piste suivante"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31
+#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32
 msgid "Veuillez patienter ..."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:110
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:147
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:151
 msgid "Ajouter une boîte en-dessous"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:128
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:165
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:169
 msgid "Êtes-vous sur de vouloir supprimer cette boîte ?"
 msgstr ""
 
@@ -16444,11 +16912,13 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:78
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:77
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:76
 msgid "Objets javascript"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:83
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:82
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:81
 msgid "HTML"
 msgstr ""
 
@@ -16751,6 +17221,7 @@ msgid "Nouveautés"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:134
+#: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:135
 #, php-format
 msgid "Date : %s"
 msgstr ""
@@ -16788,34 +17259,42 @@ msgid "dans la serie : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:225
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227
 msgid "Super administrateur"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:232
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
 msgid "Invité"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:233
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
 msgid "Abonné portail"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
 msgid "Abonné SIGB"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
 msgid "Rédacteur bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
 msgid "Administrateur bibliothèque"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239
 msgid "Rédacteur portail"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240
 msgid "Administrateur portail"
 msgstr ""
 
@@ -16936,6 +17415,7 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:528
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Sitotheque.php:169
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:678
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:677
 msgid "Ajouter une sous-catégorie"
 msgstr ""
 
@@ -17040,38 +17520,47 @@ msgid "Ajouter un site"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:546
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:545
 msgid "URL du site web"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:634
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:633
 msgid "Modifier l'album"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:641
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:640
 msgid "Gérer les médias"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648
 msgid "Visualisation de l\\album"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:656
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:655
 msgid "Supprimer l'album"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:685
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:684
 msgid "Ajouter un album"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:692
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:691
 msgid "Modifier la catégorie"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:699
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:698
 msgid "Supprimer la catégorie"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:706
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:705
 msgid "Etes-vous sûr de vouloir supprimer cette catégorie ?"
 msgstr ""
 
@@ -17310,6 +17799,7 @@ msgid "Lettre d'information supprimée"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/DataProfile.php:30
+#: ../../application/modules/admin/controllers/ProfilController.php:434
 #, php-format
 msgid "Profil \"%s\" sauvegardé"
 msgstr ""
@@ -17450,18 +17940,22 @@ msgid "Rapports"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
 msgid "Tâche ajoutée"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:33
 msgid "Tâche supprimée"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:34
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
 msgid "Nouvelle Tâche"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:37
 msgid "Tâches"
 msgstr ""
 
@@ -17655,6 +18149,7 @@ msgid "Date de mise à jour"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:394
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:34
 msgid "Créateur"
 msgstr ""
 
@@ -17671,11 +18166,13 @@ msgid "Liste des albums"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Action.php:45
+#: ../../library/ZendAfi/Controller/Action.php:53
 #, php-format
 msgid "L'action %s est déjà définie`"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Action.php:251
+#: ../../library/ZendAfi/Controller/Action.php:261
 msgid ""
 "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. "
 "Merci de remplir manuellement"
@@ -17711,6 +18208,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129
 msgid "Historique des modifications"
 msgstr ""
 
@@ -17897,18 +18395,383 @@ msgid "Vitesse de défilement"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:156
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:160
 msgid "Supprimer cette boite"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:91
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:88
 #, php-format
 msgid "Modifier le domaine : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:136
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:145
 msgid "Choisir un autre domaine"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:42
 msgid "Liste en accordéon"
 msgstr ""
+
+#: ../../application/modules/admin/views/scripts/index/index.phtml:22
+msgid "Découvrir les nouveautés de la version 7.10"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:7
+msgid "Nombre de vignettes reconnues"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:8
+msgid "Nombre de vignettes non reconnues"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9
+msgid "Nombre de notices hors cache"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:31
+msgid "Constitution du cache en cours..."
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:32
+#, php-format
+msgid "Notices à traiter: %s"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:42
+msgid "MAJ auto."
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:17
+msgid "Article lié"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:37
+msgid "Stagiaires"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:43
+msgid "Présences"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20
+#, php-format
+msgid "Imprimer %s"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:6
+msgid "ATTENTION : Ceci effacera le contenu actuel de l'article."
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:15
+msgid "Regénérer"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:28
+msgid "Non classé"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/users/index.phtml:11
+msgid "modifier"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/users/index.phtml:18
+msgid "supprimer"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/users/index.phtml:25
+msgid "avi(s)"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/users/index.phtml:34
+msgid "panier(s)"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
+msgid "Import"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:4
+msgid "Export"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:4
+msgid "Planification"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:4
+msgid "Nombre de profils"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
+msgid "Nombre d'articles"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:6
+msgid "Nombre de sites référencés"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:7
+msgid "Nombre de fils RSS référencés"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:8
+msgid "Nombre d'exemplaires"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:9
+msgid "Nombre d'intégrations programmées"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:13
+msgid "Contenu de la bibliothèque:"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:21
+msgid "Toutes les données de la bibliothèque seront effacées !"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:25
+#, php-format
+msgid "Modifier %s"
+msgstr ""
+
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#, php-format
+msgid "Généré pour la session d'activité %s"
+msgstr ""
+
+#: ../../application/modules/admin/controllers/WidgetController.php:180
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:119
+msgid "Ajouter une boîte"
+msgstr ""
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:249
+#, php-format
+msgid "Article lié à \"%s\""
+msgstr ""
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:262
+#, php-format
+msgid "Article lié à \"%s\" regénéré."
+msgstr ""
+
+#: ../../application/modules/admin/controllers/BatchController.php:68
+#, php-format
+msgid "Planifier la tâche \"%s\""
+msgstr ""
+
+#: ../../application/modules/admin/controllers/BibController.php:437
+msgid "Configuration introuvable"
+msgstr ""
+
+#: ../../application/modules/admin/controllers/BibController.php:450
+msgid "Les filtres par défaut ont été sauvegardés."
+msgstr ""
+
+#: ../../application/modules/admin/controllers/BibController.php:452
+msgid "Erreur de sauvegarde des filtres par défaut."
+msgstr ""
+
+#: ../../application/modules/admin/controllers/AlbumController.php:185
+msgid "Vous devez spécifier une catégorie à exporter"
+msgstr ""
+
+#: ../../application/modules/opac/controllers/BlogController.php:48
+msgid "Auteur introuvable"
+msgstr ""
+
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2
+#, php-format
+msgid "Les paniers de %s"
+msgstr ""
+
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:30
+msgid "A rédigé des avis"
+msgstr ""
+
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:30
+msgid "A créé des paniers"
+msgstr ""
+
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:64
+#, php-format
+msgid "La tâche %s n'est pas plannifiée aujourd'hui"
+msgstr ""
+
+#: ../../library/Class/SessionActivity.php:460
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:50
+msgid "Date limite d'inscription"
+msgstr ""
+
+#: ../../library/Class/SessionActivity.php:483
+#, php-format
+msgid "minimum : %s, maximum : %s"
+msgstr ""
+
+#: ../../library/Class/ExternalAgenda.php:29
+#, php-format
+msgid "Nombre d\\'événements créés : %s\n"
+msgstr ""
+
+#: ../../library/Class/ExternalAgenda.php:30
+#, php-format
+msgid "Nombre d\\'événements mis à jour : %s\n"
+msgstr ""
+
+#: ../../library/Class/Repeat/WeekDays.php:83
+msgid "Tous les jours"
+msgstr ""
+
+#: ../../library/Class/WebService/SIGB/Nanook/Service.php:32
+msgid "Quota atteint pour ce type de document."
+msgstr ""
+
+#: ../../library/Class/WebService/BibNumerique/ArteVOD.php:63
+#, php-format
+msgid "Traitement de la page %s"
+msgstr ""
+
+#: ../../library/Class/TableDescription/PNBItems.php:39
+msgid "Voir l'album"
+msgstr ""
+
+#: ../../library/Class/Batch/ExternalAgenda.php:27
+msgid "Moissonner les agendas externes"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:146
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:217
+msgid "Indice commence par"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:91
+msgid "Configuration du profil"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:96
+msgid "Configurer le profil "
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:105
+msgid "Configuration de la page"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:110
+msgid "Configurer la page "
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:124
+msgid "Ajouter une boîte à cette page"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/RenderWidgetTemplates.php:28
+msgid "Ajout en cours"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/TagPreRegistration.php:29
+#, php-format
+msgid ""
+"Afin de finaliser votre inscription, merci de vous rendre dans votre "
+"médiathèque : %s"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:28
+msgid "Tâche système non désactivable"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37
+msgid "Activer la tâche"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
+msgid "Désactiver la tâche"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
+msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
+msgid "Plannifier la tâche"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:67
+msgid "Lancer manuellement"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:75
+msgid "Lancer"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+msgid "Tâche sauvegardée"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:36
+msgid "Modifier la tâche"
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:30
+#, php-format
+msgid "Session \"%s\" sauvegardée, son article lié a été mis à jour."
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:31
+#, php-format
+msgid "La session \"%s\" a été sauvegardée, son article lié a été créé."
+msgstr ""
+
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
+#, php-format
+msgid "Session \"%s\" supprimée, son artilcle lié a été supprimé."
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43
+msgid "Moissonnage automatique"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/Batch.php:31
+msgid "Lancer tous les"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:41
+msgid "Date début"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:46
+msgid "Date fin"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:56
+msgid "Effectif minimum"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:63
+msgid "Effectif maximum"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:70
+msgid "Durée (h)"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:85
+msgid "Coût"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:90
+msgid "Session annulée"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121
+msgid "Compte-rendu"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:97
+msgid "Proposer la sélection de domaines"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Configuration/MyCarouselImgObject.php:52
+msgid "Nombre d'images en hauteur"
+msgstr ""
diff --git a/library/translation/ro.mo b/library/translation/ro.mo
index b247f87fc73e34568dece842cd9a338d99f15435..bfd1f01dd7825f6d6a6f0895587bee2d514dbfb3 100644
Binary files a/library/translation/ro.mo and b/library/translation/ro.mo differ
diff --git a/library/translation/ro.po b/library/translation/ro.po
index a3e902d415f2e1c365d48257c46efc22961471e5..466c8f89e8a580b278335ffa25e75317439543d2 100644
--- a/library/translation/ro.po
+++ b/library/translation/ro.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: 0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2017-06-19 16:23+0200\n"
+"POT-Creation-Date: 2017-09-11 11:54+0200\n"
 "PO-Revision-Date: 2011-07-14 18:15+0200\n"
 "Last-Translator: Lupu Mariana <lupumariana@yahoo.com>\n"
 "Language-Team: Romanian\n"
@@ -45,6 +45,8 @@ msgstr "Modifică fişa mea"
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:181
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:176
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:201
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208
 msgid " OU "
 msgstr ""
 
@@ -66,6 +68,7 @@ msgid " aux lettres d'information: "
 msgstr "la buletinele informative:"
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid " avec l'adresse suivante: "
 msgstr ""
 
@@ -138,15 +141,18 @@ msgid " ou "
 msgstr "sau"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:542
+#: ../../application/modules/opac/controllers/AbonneController.php:541
 #, fuzzy
 msgid " par E-Mail"
 msgstr "E-Mail"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:543
+#: ../../application/modules/opac/controllers/AbonneController.php:542
 msgid " par SMS"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:541
+#: ../../application/modules/opac/controllers/AbonneController.php:540
 msgid " par courrier postal"
 msgstr ""
 
@@ -496,6 +502,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:258
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:205
+#: ../../application/modules/admin/controllers/BibController.php:206
 msgid "** nouveau plan **"
 msgstr "** nou plan **"
 
@@ -541,6 +548,7 @@ msgstr "** nouă informaţie **"
 #: ../../application/modules/admin/controllers/BibController.php:150
 #: ../../application/modules/admin/controllers/BibController.php:148
 #: ../../application/modules/admin/controllers/BibController.php:97
+#: ../../application/modules/admin/controllers/BibController.php:98
 msgid "** nouvelle localisation **"
 msgstr "** nouă localizare **"
 
@@ -632,6 +640,7 @@ msgid "1 notice trouvée"
 msgstr "1 instrucţiune găsită"
 
 #: ../../library/Class/Cosmogramme/Generator.php:194
+#: ../../library/Class/Cosmogramme/Generator.php:193
 #, fuzzy
 msgid "2 - Création des annexes"
 msgstr "Moderare alerte"
@@ -647,6 +656,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:204
+#: ../../library/Class/Cosmogramme/Generator.php:203
 msgid "3 - Programmation des intégrations"
 msgstr ""
 
@@ -671,10 +681,12 @@ msgid "6 mois"
 msgstr "6 luni"
 
 #: ../../library/Class/Cosmogramme/Generator.php:250
+#: ../../library/Class/Cosmogramme/Generator.php:249
 msgid "7 - Création des classes Dewey"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:87
+#: ../../application/modules/opac/views/scripts/head.phtml:86
 #, php-format
 msgid ""
 "<link rel=\"alternate stylesheet\" type=\"text/css\" href=\"\" title=\"%s\" "
@@ -686,10 +698,16 @@ msgid "A"
 msgstr ""
 
 #: ../../library/Class/Indexation/PseudoNotice.php:141
+#: ../../library/Class/Indexation/PseudoNotice.php:143
 #, fuzzy
 msgid "A consulter sur le portail"
 msgstr "Mergeţi pe portal"
 
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:30
+#, fuzzy
+msgid "A créé des paniers"
+msgstr "CoÅŸurile dvs."
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:186
 #, fuzzy
 msgid "A côté de la liste"
@@ -704,6 +722,11 @@ msgstr "Pe prima pagină"
 msgid "A quoi servent les cookies émis sur notre site ?"
 msgstr ""
 
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:30
+#, fuzzy
+msgid "A rédigé des avis"
+msgstr "Vizualizarea scrisorii:"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:109
 msgid "A savoir"
 msgstr ""
@@ -724,6 +747,10 @@ msgstr ""
 msgid "ASCII DOS"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:6
+msgid "ATTENTION : Ceci effacera le contenu actuel de l'article."
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Admin/User.php:249
 msgid "Abonnement"
 msgstr ""
@@ -750,10 +777,12 @@ msgid "Abonnement aux lettres d'information"
 msgstr "Abonament la buletinele informative"
 
 #: ../../library/Class/User/SearchCriteria.php:182
+#: ../../library/Class/User/SearchCriteria.php:185
 msgid "Abonnement valide"
 msgstr ""
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
 #, fuzzy
 msgid "Abonné SIGB"
 msgstr "Abonat sigb"
@@ -764,6 +793,7 @@ msgid "Abonné non trouvé"
 msgstr "instrucţiuni găsite"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:233
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
 #, fuzzy
 msgid "Abonné portail"
 msgstr "Abonat sigb"
@@ -826,6 +856,7 @@ msgstr ""
 #: ../../library/Class/MoteurRecherche.php:604
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
+#: ../../library/Class/MoteurRecherche.php:608
 msgid "Accueil"
 msgstr "Pagină iniţială"
 
@@ -838,10 +869,12 @@ msgid "Accès"
 msgstr "Acces"
 
 #: ../../application/modules/opac/views/scripts/footer.phtml:8
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:224
 msgid "Accès pro."
 msgstr "Acces pro."
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
 msgid "Accès à Cosmogramme"
 msgstr "Acces la Cosmogramă "
 
@@ -879,11 +912,13 @@ msgstr "CoÅŸurile dvs."
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:191
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
 msgid "Accéder aux articles dans l'interface d'administration"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:199
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 msgid "Accéder aux domaines dans l'interface d'administration"
 msgstr ""
 
@@ -899,6 +934,7 @@ msgstr "Gestionare a resurselor"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:179
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:228
 #, fuzzy
 msgid "Accéder à l'interface d'administration"
 msgstr "Activează instrumentele de acces"
@@ -935,6 +971,8 @@ msgstr "Acţiune"
 
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:37
 #: ../../library/Class/TableDescription.php:206
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:12
+#: ../../library/Class/TableDescription.php:222
 #, fuzzy
 msgid "Actions"
 msgstr "Acţiune"
@@ -994,6 +1032,11 @@ msgstr ""
 msgid "Activer la redirection vers la liste d'articles"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37
+#, fuzzy
+msgid "Activer la tâche"
+msgstr "Adaugă o categorie"
+
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293
@@ -1009,6 +1052,7 @@ msgstr "Activează instrumentele de acces"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:126
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:130
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:175
 #, fuzzy, php-format
 msgid "Activer ou désactiver : %s"
 msgstr "Adaugă o localizare"
@@ -1081,11 +1125,13 @@ msgid "Actuellement"
 msgstr "Amplasare"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
 #, fuzzy
 msgid "Administrateur bibliothèque"
 msgstr "În această bibliotecă."
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240
 #, fuzzy
 msgid "Administrateur portail"
 msgstr "Administrarea portalului"
@@ -1093,11 +1139,13 @@ msgstr "Administrarea portalului"
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:392
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:32
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:36
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:406
 #, fuzzy
 msgid "Administration"
 msgstr "Administrarea portalului"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121
 msgid "Administration du portail"
 msgstr "Administrarea portalului"
 
@@ -1151,6 +1199,8 @@ msgstr ""
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:51
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:95
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
+#: ../../application/modules/admin/controllers/LieuController.php:33
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
 msgid "Adresse"
 msgstr "Adresă "
 
@@ -1201,6 +1251,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 #, fuzzy
 msgid "Adresse mail"
 msgstr "Adresă "
@@ -1221,6 +1272,7 @@ msgstr "Adresă "
 #: ../../library/ZendAfi/Form/Configuration/Profile/Page.php:68
 #: ../../library/ZendAfi/View/Helper/Search/Display.php:27
 #: ../../library/ZendAfi/Form.php:237
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:363
 #, fuzzy
 msgid "Affichage"
 msgstr "Afişează Agenda"
@@ -1264,6 +1316,7 @@ msgstr "Afişează mai multe instrucţiuni"
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:66
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:69
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:71
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:23
 #, fuzzy
 msgid "Afficher"
 msgstr "Afişează Agenda"
@@ -1325,6 +1378,7 @@ msgid "Afficher la carte"
 msgstr "Afişează harta"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:85
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:88
 #, fuzzy
 msgid "Afficher la carte interactive"
 msgstr "Afişează harta"
@@ -1401,6 +1455,7 @@ msgstr "Afişează mai multe instrucţiuni"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:86
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:135
 #, fuzzy
 msgid "Afficher les icones d'administration"
 msgstr "Activează instrumentele de acces"
@@ -1471,6 +1526,7 @@ msgid "Afficher toutes les éditions de ce document"
 msgstr "Afişează toate editările acestui document"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:103
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:107
 #, fuzzy
 msgid "Afficher un nouveau domaine"
 msgstr "coÅŸ nou"
@@ -1514,6 +1570,13 @@ msgstr "Rezultatul căutarii"
 msgid "Affiner le résultat par %s: %s"
 msgstr "Rezultatul căutarii"
 
+#: ../../library/ZendAfi/View/Helper/TagPreRegistration.php:29
+#, php-format
+msgid ""
+"Afin de finaliser votre inscription, merci de vous rendre dans votre "
+"médiathèque : %s"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:87
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:92
 #: ../../application/modules/admin/views/scripts/cms/newsform.phtml:118
@@ -1526,6 +1589,7 @@ msgstr "Rezultatul căutarii"
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:66
 #: ../../library/ZendAfi/Form/Admin/News.php:80
 #: ../../library/ZendAfi/Form/Admin/News.php:75
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:70
 msgid "Agenda"
 msgstr "Agendă"
 
@@ -1563,6 +1627,11 @@ msgstr ""
 msgid "Ajout de domaine"
 msgstr "Adaugă un domain"
 
+#: ../../library/ZendAfi/View/Helper/RenderWidgetTemplates.php:28
+#, fuzzy
+msgid "Ajout en cours"
+msgstr "Împrumuturi în curs"
+
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:30
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:49
 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:67
@@ -1641,6 +1710,7 @@ msgid "Ajouter un agenda"
 msgstr "Adaugă un meniu"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:685
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:684
 #, fuzzy
 msgid "Ajouter un album"
 msgstr "Adaugă un catalog"
@@ -1728,6 +1798,7 @@ msgstr "Adaugă un plan "
 #: ../../application/modules/admin/controllers/BibController.php:256
 #: ../../application/modules/admin/controllers/BibController.php:254
 #: ../../application/modules/admin/controllers/BibController.php:203
+#: ../../application/modules/admin/controllers/BibController.php:204
 #, php-format
 msgid "Ajouter un plan de la bibliothèque: %s"
 msgstr "Adaugă un plan al bibliotecii: %s"
@@ -1797,14 +1868,27 @@ msgstr "Adaugă o bibliotecă "
 msgid "Ajouter une boite"
 msgstr "Adaugă o categorie"
 
+#: ../../application/modules/admin/controllers/WidgetController.php:180
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:119
+#, fuzzy
+msgid "Ajouter une boîte"
+msgstr "Adaugă o categorie"
+
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:110
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:147
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:151
 #, fuzzy
 msgid "Ajouter une boîte en-dessous"
 msgstr "Adaugă o localizare"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:124
+#, fuzzy
+msgid "Ajouter une boîte à cette page"
+msgstr "Adaugă o categorie"
+
 #: ../../application/modules/opac/views/scripts/abonne/cards.phtml:44
 #: ../../application/modules/opac/controllers/AbonneController.php:1108
+#: ../../application/modules/opac/controllers/AbonneController.php:1107
 #, fuzzy
 msgid "Ajouter une carte"
 msgstr "Adaugă o localizare"
@@ -1820,6 +1904,7 @@ msgstr "Adaugă o localizare"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:541
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:544
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:669
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:668
 msgid "Ajouter une catégorie"
 msgstr "Adaugă o categorie"
 
@@ -1838,15 +1923,18 @@ msgid "Ajouter une collection"
 msgstr "Adaugă o colecţie"
 
 #: ../../application/modules/admin/views/scripts/bib/localisations.phtml:6
+#: ../../application/modules/admin/views/scripts/bib/localisations.phtml:8
 msgid "Ajouter une localisation"
 msgstr "Adaugă o localizare"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:7
 #, fuzzy
 msgid "Ajouter une plage d'ouverture"
 msgstr "Adaugă o categorie"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:5
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:6
 #, fuzzy
 msgid "Ajouter une plage horaire de réservation multimedia"
 msgstr "Adaugă o localizare"
@@ -1866,6 +1954,7 @@ msgstr "Adaugă o localizare"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:528
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Sitotheque.php:169
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:678
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:677
 #, fuzzy
 msgid "Ajouter une sous-catégorie"
 msgstr "Adaugă o categorie"
@@ -1886,15 +1975,19 @@ msgstr "Modificarea abonamentelor mele"
 #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:46
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49
+#: ../../application/modules/admin/controllers/HarvestController.php:128
+#: ../../application/modules/admin/controllers/HarvestController.php:185
 msgid "Album"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:155
+#: ../../application/modules/admin/controllers/HarvestController.php:133
 #, php-format
 msgid "Album \"%s\" importé de Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:212
+#: ../../application/modules/admin/controllers/HarvestController.php:190
 #, php-format
 msgid "Album \"%s\" importé de SoundCloud"
 msgstr ""
@@ -1939,6 +2032,7 @@ msgstr "Criterii de selecţie"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:236
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:267
 msgid "Amber IDE"
 msgstr ""
 
@@ -2163,6 +2257,21 @@ msgstr ""
 msgid "Article \"%s\" supprimé"
 msgstr "Rezervări în curs"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:17
+#, fuzzy
+msgid "Article lié"
+msgstr "Rezervări în curs"
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:249
+#, fuzzy, php-format
+msgid "Article lié à \"%s\""
+msgstr "Instrucţiune detaliată"
+
+#: ../../application/modules/admin/controllers/SessionActivityController.php:262
+#, fuzzy, php-format
+msgid "Article lié à \"%s\" regénéré."
+msgstr "Nu a fost găsit nici un articol"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:102
 #, fuzzy
 msgid "Article supprimé"
@@ -2180,6 +2289,7 @@ msgstr "Categorie"
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:183
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:58
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:187
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:232
 msgid "Articles"
 msgstr "Articole"
 
@@ -2235,13 +2345,15 @@ msgstr ""
 msgid "Au(x) type(s) de document"
 msgstr "Tip de document"
 
-#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50
+#: ../../library/Class/ModeleFusion.php:75
+#: ../../library/Class/Ouverture.php:50
 #: ../../library/ZendAfi/Form/Album.php:235
 #: ../../library/ZendAfi/Form/Admin/News.php:243
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:53
 #: ../../library/ZendAfi/Form/Admin/Library.php:263
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
 #, fuzzy
 msgid "Aucun"
 msgstr "nici o"
@@ -2281,6 +2393,7 @@ msgstr "Nici un conţinut"
 
 #: ../../application/modules/admin/controllers/ModoController.php:829
 #: ../../application/modules/opac/controllers/AbonneController.php:941
+#: ../../application/modules/opac/controllers/AbonneController.php:940
 msgid "Aucun courriel envoyé, erreur: "
 msgstr ""
 
@@ -2347,6 +2460,7 @@ msgid "Aucun répertoire fourni"
 msgstr "Moderare"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:290
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:297
 #, fuzzy
 msgid "Aucun résultat"
 msgstr "Nici un rezultat găsit"
@@ -2359,6 +2473,7 @@ msgstr "Nici un rezultat găsit"
 #: ../../library/Class/NoticeOAI.php:248
 #: ../../library/Class/MoteurRecherche.php:478
 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67
+#: ../../library/Class/MoteurRecherche.php:482
 msgid "Aucun résultat trouvé"
 msgstr "Nici un rezultat găsit"
 
@@ -2373,6 +2488,9 @@ msgstr "Nici un rezultat găsit"
 #: ../../library/ZendAfi/View/Helper/ComboCategories.php:45
 #: ../../library/ZendAfi/View/Helper/GetSendProgressJsonFor.php:29
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:30
+#: ../../library/Class/Repeat/WeekDays.php:80
+#: ../../library/Class/Batch/Definition.php:68
+#: ../../library/Class/Batch/Definition.php:71
 #, fuzzy
 msgid "Aucune"
 msgstr "nici o"
@@ -2413,6 +2531,7 @@ msgstr "Nici o dată de localizare nu a fost găsită pentru acest exemplar"
 #: ../../application/modules/opac/controllers/RssController.php:252
 #: ../../application/modules/opac/controllers/RssController.php:248
 #: ../../application/modules/opac/controllers/RssController.php:249
+#: ../../application/modules/opac/controllers/RssController.php:235
 msgid "Aucune donnée à modérer"
 msgstr "Nici o dată de moderat"
 
@@ -2565,6 +2684,7 @@ msgstr "Nu a fost găsită nici o înregistrare video"
 #: ../../library/Class/CriteresRecherche.php:141
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:22
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:35
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 msgid "Auteur"
 msgstr "Autor"
 
@@ -2605,6 +2725,11 @@ msgstr ""
 msgid "Auteur : {notice.auteur_principal}"
 msgstr ""
 
+#: ../../application/modules/opac/controllers/BlogController.php:48
+#, fuzzy
+msgid "Auteur introuvable"
+msgstr "Utilizator"
+
 #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:48
 msgid "Auteur principal"
 msgstr ""
@@ -2695,6 +2820,7 @@ msgid "Avenio"
 msgstr ""
 
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:2
+#: ../../application/modules/opac/controllers/BlogController.php:51
 msgid "Avis"
 msgstr "Aviz"
 
@@ -2795,6 +2921,7 @@ msgstr "Trailer"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:370
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:113
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:383
 #, fuzzy
 msgid "Banniere"
 msgstr "Banner"
@@ -2848,6 +2975,7 @@ msgid "Basculer automatiquement sur le profil"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:76
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:6
 #, fuzzy
 msgid "Base de données"
 msgstr "Filtrare a datelor"
@@ -2858,6 +2986,7 @@ msgid "Base de données : "
 msgstr "Filtrare a datelor"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141
 msgid "Batchs"
 msgstr ""
 
@@ -2978,6 +3107,8 @@ msgstr ""
 #: ../../library/Class/User/SearchCriteria.php:133
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:30
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:309
+#: ../../library/Class/User/SearchCriteria.php:136
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:98
 msgid "Bibliothèque"
 msgstr "Bibliotecă"
 
@@ -3003,6 +3134,7 @@ msgid "Bibliothèque de destination"
 msgstr "Bibliotecă :"
 
 #: ../../library/ZendAfi/Form/Register.php:165
+#: ../../library/ZendAfi/Form/Register.php:167
 #, fuzzy
 msgid "Bibliothèque de rattachement"
 msgstr "Bibliotecă :"
@@ -3024,15 +3156,18 @@ msgstr "Bibliotecă(i)"
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:90
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
 msgid "Bibliothèques"
 msgstr "Biblioteci"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:34
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:37
 #, fuzzy
 msgid "Bibliothèques affichées"
 msgstr "Biblioteci"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:38
 #, fuzzy
 msgid "Bibliothèques disponibles"
 msgstr "Câmpuri disponibile"
@@ -3043,6 +3178,7 @@ msgid "Bibliothèques favorites"
 msgstr "Biblioteci"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:32
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:35
 #, fuzzy
 msgid "Bibliothèques à afficher"
 msgstr "Biblioteci"
@@ -3077,10 +3213,12 @@ msgid "Biographie de l'auteur"
 msgstr "Biografii"
 
 #: ../../application/modules/opac/views/scripts/head.phtml:79
+#: ../../application/modules/opac/views/scripts/head.phtml:78
 msgid "Blanc sur noir"
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:85
+#: ../../application/modules/opac/views/scripts/head.phtml:84
 msgid "Bleu sur jaune"
 msgstr ""
 
@@ -3382,11 +3520,13 @@ msgid "CSV avec séparateur : virgule"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
 msgid "Cache des images"
 msgstr "Ascunde imagini"
 
 #: ../../application/modules/admin/views/scripts/activity/_activity_actions.phtml:11
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:21
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:30
 msgid "Cacher"
 msgstr ""
 
@@ -3426,15 +3566,18 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/BibView.php:166
 #: ../../application/modules/opac/controllers/AbonneController.php:1121
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:14
+#: ../../application/modules/opac/controllers/AbonneController.php:1120
 msgid "Carte"
 msgstr "Harta"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1150
+#: ../../application/modules/opac/controllers/AbonneController.php:1149
 #, fuzzy, php-format
 msgid "Carte de \"%s\" ajoutée"
 msgstr "Ultimele site-uri adăugate"
 
 #: ../../application/modules/opac/controllers/BibController.php:256
+#: ../../application/modules/opac/controllers/BibController.php:241
 #, fuzzy
 msgid "Carte des bibliothèques"
 msgstr "Fişă bibliotecă:     "
@@ -3444,6 +3587,7 @@ msgid "Carte des zones"
 msgstr "Harta zonelor"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1097
+#: ../../application/modules/opac/controllers/AbonneController.php:1096
 #, fuzzy
 msgid "Carte introuvable"
 msgstr "Utilizator"
@@ -3466,16 +3610,19 @@ msgid "Catalogue"
 msgstr "Catalog"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169
 #, fuzzy
 msgid "Catalogues"
 msgstr "Catalog"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
 #, fuzzy
 msgid "Catalogues OPDS"
 msgstr "Catalog"
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:41
 #, fuzzy
 msgid "Categorie"
 msgstr "Categorie"
@@ -3554,6 +3701,7 @@ msgid "Catégorie parente"
 msgstr "Categorie înrudită"
 
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:44
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:48
 #, fuzzy
 msgid "Catégorie racine"
 msgstr "Categorie înrudită"
@@ -3584,6 +3732,7 @@ msgid "Cause"
 msgstr "Cauză"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:756
+#: ../../application/modules/opac/controllers/AbonneController.php:755
 msgid "Ce créneau n'est pas dans les heures d'ouverture."
 msgstr ""
 
@@ -3648,6 +3797,7 @@ msgid "Cet identifiant existe déjà."
 msgstr "Acest nume de utilizator există deja."
 
 #: ../../application/modules/opac/controllers/AuthController.php:498
+#: ../../application/modules/opac/controllers/AuthController.php:501
 msgid "Cette fonctionnalité n'est pas activée."
 msgstr ""
 
@@ -3730,6 +3880,7 @@ msgid "Champs"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:61
 #, fuzzy
 msgid "Champs affichées"
 msgstr "Câmpuri selectate"
@@ -3741,6 +3892,7 @@ msgstr "Câmpuri selectate"
 
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:85
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:59
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:62
 msgid "Champs disponibles"
 msgstr "Câmpuri disponibile"
 
@@ -3766,6 +3918,7 @@ msgstr "Câmpuri disponibile"
 #: ../../library/ZendAfi/View/Helper/Admin/TagCustomFields.php:31
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomFieldMeta.php:35
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/CustomField.php:38
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:161
 #, fuzzy
 msgid "Champs personnalisés"
 msgstr "Câmpuri selectate"
@@ -3783,6 +3936,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Record.php:33
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:128
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:55
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:58
 msgid "Champs à afficher"
 msgstr ""
 
@@ -3827,10 +3981,12 @@ msgid "Chercher dans les bibliothèques de votre choix"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:782
+#: ../../application/modules/opac/controllers/AbonneController.php:781
 msgid "Choisir"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:136
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:145
 #, fuzzy
 msgid "Choisir un autre domaine"
 msgstr "Adaugă un domain"
@@ -3855,6 +4011,7 @@ msgid "Choisissez les dossiers à afficher"
 msgstr "Modificare titlu coÅŸ"
 
 #: ../../library/ZendAfi/Form/Album.php:147
+#: ../../application/modules/admin/controllers/AlbumController.php:162
 #, fuzzy
 msgid "Choisissez une catégorie"
 msgstr "Adaugă o categorie"
@@ -3865,6 +4022,7 @@ msgid "Choisissez votre bibliothèque"
 msgstr "Localizare a bibliotecii: %s"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:66
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:70
 #, fuzzy
 msgid "Choix de la bibliothèque"
 msgstr "Plan al bibliotecii: %s"
@@ -4041,10 +4199,12 @@ msgstr "Bibliotecă :"
 #: ../../library/ZendAfi/Form/ContactForm.php:78
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:56
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:83
+#: ../../application/modules/admin/controllers/LieuController.php:35
 msgid "Code postal"
 msgstr "Cod poÅŸtal"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
+#: ../../application/modules/admin/views/scripts/index/index.phtml:82
 #, fuzzy
 msgid "Code source"
 msgstr "sursă"
@@ -4067,6 +4227,7 @@ msgstr "Comparare"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:47
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59
 #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:44
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58
 msgid "Collection"
 msgstr "Colecţie"
 
@@ -4094,6 +4255,7 @@ msgstr "ÈŠncepe cu"
 
 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:91
 #: ../../library/ZendAfi/Form/Search/Advanced.php:35
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:191
 msgid "Commence par"
 msgstr "ÈŠncepe cu"
 
@@ -4153,6 +4315,7 @@ msgid "Complet: maximum de personnes inscrites"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1215
+#: ../../application/modules/opac/controllers/AbonneController.php:1214
 #, fuzzy
 msgid "Compléter votre adresse  email"
 msgstr "Adresa dvs. de e-mail :"
@@ -4186,6 +4349,10 @@ msgstr ""
 msgid "Compte d'assistance: %s"
 msgstr "Număr de diviziuni"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121
+msgid "Compte-rendu"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:187
 #, fuzzy
 msgid "Conditions inscription"
@@ -4216,10 +4383,16 @@ msgid "Configuration PNB Dilicom"
 msgstr "Configurare"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:301
+#: ../../application/modules/admin/controllers/ModulesController.php:300
 #, fuzzy, php-format
 msgid "Configuration de l'affichage du type %s"
 msgstr "Configurare"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:105
+#, fuzzy
+msgid "Configuration de la page"
+msgstr "Configurare"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:204
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:208
 #, fuzzy
@@ -4228,6 +4401,7 @@ msgstr "Configurare"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:334
 #: ../../application/modules/admin/controllers/ProfilController.php:341
+#: ../../application/modules/admin/controllers/ProfilController.php:366
 #, fuzzy, php-format
 msgid "Configuration de la page: %s"
 msgstr "Configurare"
@@ -4243,6 +4417,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:477
 #: ../../application/modules/admin/controllers/ProfilController.php:492
+#: ../../application/modules/admin/controllers/ProfilController.php:522
 msgid "Configuration des pages appliquée à tous les autres profils."
 msgstr ""
 
@@ -4251,12 +4426,24 @@ msgstr ""
 msgid "Configuration du compte Redmine"
 msgstr "Configurare"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:91
+#, fuzzy
+msgid "Configuration du profil"
+msgstr "Configurare"
+
 #: ../../application/modules/admin/controllers/ModulesController.php:287
+#: ../../application/modules/admin/controllers/ModulesController.php:286
 #, fuzzy
 msgid "Configuration du résultat de recherche"
 msgstr "Rezultatul căutarii"
 
+#: ../../application/modules/admin/controllers/BibController.php:437
+#, fuzzy
+msgid "Configuration introuvable"
+msgstr "Rezervări de instrucţiuni"
+
 #: ../../application/modules/admin/controllers/ModulesController.php:464
+#: ../../application/modules/admin/controllers/ModulesController.php:463
 #, fuzzy
 msgid "Configuration sauvegardée"
 msgstr "Nu a fost găsită nici o informaţie"
@@ -4266,13 +4453,24 @@ msgstr "Nu a fost găsită nici o informaţie"
 msgid "Configuration: colonne %s requise"
 msgstr "Configurare"
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:110
+#, fuzzy
+msgid "Configurer la page "
+msgstr "Configurare"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:209
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:213
 msgid "Configurer la page courante dans l'interface d'administration"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:96
+#, fuzzy
+msgid "Configurer le profil "
+msgstr "Modificare bibliotecă: %s"
+
 #: ../../application/modules/opac/controllers/AbonneController.php:872
 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:2
+#: ../../application/modules/opac/controllers/AbonneController.php:871
 #, fuzzy
 msgid "Confirmation"
 msgstr "Configurare"
@@ -4283,6 +4481,7 @@ msgid "Confirmation d'inscription à l'activité \"%s\""
 msgstr "Condiţii de înscriere"
 
 #: ../../application/modules/opac/controllers/AuthController.php:462
+#: ../../application/modules/opac/controllers/AuthController.php:465
 #, fuzzy
 msgid "Confirmation d'inscription à la newsletter: "
 msgstr "Condiţii de înscriere"
@@ -4360,15 +4559,22 @@ msgstr "Căsuţă de conectare"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:211
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:215
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:246
 #, fuzzy
 msgid "Console d'administration"
 msgstr "Administrarea portalului"
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:26
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:24
 #, fuzzy
 msgid "Constitution du cache"
 msgstr "Constituire a planului de acces"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:31
+#, fuzzy
+msgid "Constitution du cache en cours..."
+msgstr "Constituire a planului de acces"
+
 #: ../../application/modules/admin/controllers/BibController.php:566
 #: ../../application/modules/admin/controllers/BibController.php:574
 #: ../../application/modules/admin/controllers/BibController.php:593
@@ -4424,6 +4630,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/ModeleFusion.php:59
 #: ../../library/ZendAfi/Form/SendMail.php:46
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:122
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:117
 #, fuzzy
 msgid "Contenu"
 msgstr "Nici un conţinut"
@@ -4465,6 +4672,11 @@ msgid ""
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:13
+#, fuzzy
+msgid "Contenu de la bibliothèque:"
+msgstr "Plan al bibliotecii: %s"
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:50
 #, fuzzy
 msgid "Contenu du sommaire"
@@ -4476,12 +4688,14 @@ msgid "Contenu texte:"
 msgstr "Nici un conţinut"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:1
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:2
 msgid "Contenus liés à l'article"
 msgstr ""
 
 #: ../../library/Class/Codification.php:234
 #: ../../library/ZendAfi/Form/Search/Advanced.php:34
 #: ../../library/Class/Codification.php:235
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:192
 #, fuzzy
 msgid "Contient"
 msgstr "conţine"
@@ -4491,6 +4705,8 @@ msgid "Contracteur du PNB Dilicom"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:41
+#: ../../application/modules/admin/controllers/SystemeController.php:52
+#: ../../application/modules/admin/controllers/SystemeController.php:57
 #, fuzzy
 msgid "Contrôle du cache des images"
 msgstr "Ascunde imagini"
@@ -4511,6 +4727,7 @@ msgid "Coordonnées carte"
 msgstr "Coordonate hartă"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:226
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:233
 msgid "Copier le code suivant sur le site où vous voulez afficher le kiosque"
 msgstr ""
 
@@ -4632,6 +4849,10 @@ msgstr ""
 msgid "Cover flow"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:85
+msgid "Coût"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/CreerPanier.php:35
 #, fuzzy
 msgid "Creer le panier"
@@ -4662,6 +4883,7 @@ msgstr "Critici redactate de %s"
 #: ../../application/modules/opac/controllers/RssController.php:266
 #: ../../application/modules/opac/controllers/RssController.php:268
 #: ../../application/modules/opac/controllers/RssController.php:269
+#: ../../application/modules/opac/controllers/RssController.php:252
 #, php-format
 msgid "Critiques de la sélection: %s"
 msgstr "Critici ale selecţiei"
@@ -4704,6 +4926,7 @@ msgid "Critères généraux"
 msgstr "Criterii generale"
 
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:394
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:34
 #, fuzzy
 msgid "Créateur"
 msgstr "Înălţime"
@@ -4828,6 +5051,7 @@ msgid "Date"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:134
+#: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:135
 #, fuzzy, php-format
 msgid "Date : %s"
 msgstr "Cota : %s"
@@ -4839,12 +5063,14 @@ msgid "Date d'emprunt"
 msgstr "Căsuţă de căutare"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:135
 #, fuzzy
 msgid "Date d'expiration"
 msgstr "Căsuţă de căutare"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:21
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:78
+#: ../../library/Class/TableDescription/PNBItems.php:32
 #, fuzzy
 msgid "Date de commande"
 msgstr "Căsuţă de căutare"
@@ -4929,6 +5155,22 @@ msgstr ""
 msgid "Date du dernier vidage manuel du cache"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:41
+#, fuzzy
+msgid "Date début"
+msgstr "Căsuţă de căutare"
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:46
+#, fuzzy
+msgid "Date fin"
+msgstr "Căsuţă de căutare"
+
+#: ../../library/Class/SessionActivity.php:460
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:50
+#, fuzzy
+msgid "Date limite d'inscription"
+msgstr "Solicitarea dvs. de înscriere  "
+
 #: ../../application/modules/opac/views/scripts/abonne/activities-registered.phtml:45
 #: ../../application/modules/opac/views/scripts/abonne/activities.phtml:38
 #, fuzzy, php-format
@@ -4962,11 +5204,13 @@ msgid "Demande #%s enregistrée"
 msgstr "Rezervarea dvs. a fost înregistrată."
 
 #: ../../application/modules/opac/controllers/AuthController.php:400
+#: ../../application/modules/opac/controllers/AuthController.php:403
 #, fuzzy
 msgid "Demande d'inscription à la lettre d'information: "
 msgstr "la buletinul informativ"
 
 #: ../../application/modules/opac/controllers/AuthController.php:494
+#: ../../application/modules/opac/controllers/AuthController.php:497
 #, fuzzy
 msgid "Demande de préinscription"
 msgstr "Cereri de înscriere"
@@ -5062,6 +5306,7 @@ msgstr "Ultimele Articole"
 #: ../../application/modules/opac/controllers/RssController.php:99
 #: ../../application/modules/opac/controllers/RssController.php:118
 #: ../../application/modules/opac/controllers/RssController.php:113
+#: ../../application/modules/opac/controllers/RssController.php:104
 msgid "Derniers Fils RSS"
 msgstr "Ultimele Fluxuri RSS"
 
@@ -5097,6 +5342,7 @@ msgid "Dernière distribution"
 msgstr "Criterii de indexare"
 
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:18
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #, fuzzy
 msgid "Dernière exécution"
 msgstr "Criterii de indexare"
@@ -5239,6 +5485,7 @@ msgid "Discographie complète de"
 msgstr "Discografie completă aparţinând lui"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:58
+#: ../../application/modules/admin/views/scripts/index/index.phtml:86
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -5366,6 +5613,7 @@ msgid "Domaine de recherche"
 msgstr "Căsuţă de căutare"
 
 #: ../../library/Class/MoteurRecherche.php:441
+#: ../../library/Class/MoteurRecherche.php:445
 #, fuzzy
 msgid "Domaine non paramétré"
 msgstr "Cataloguri dinamice"
@@ -5375,7 +5623,7 @@ msgstr "Cataloguri dinamice"
 msgid "Domaine parent"
 msgstr "Cataloguri dinamice"
 
-#: ../../library/Class/Album.php:1598
+#: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 #, fuzzy
 msgid "Domaine public"
 msgstr "Cataloguri dinamice"
@@ -5391,6 +5639,10 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:59
 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Domains.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:195
+#: ../../library/Class/Catalogue.php:1171
+#: ../../library/Class/Catalogue.php:1209
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:240
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:326
 msgid "Domaines"
 msgstr "Cataloguri dinamice"
 
@@ -5422,11 +5674,14 @@ msgstr "Exprimaţi-vă sau modificaţi-vă părerea"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:30
 #: ../../application/modules/admin/views/scripts/index/index.phtml:29
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/opac/controllers/RssController.php:219
 msgid "Données en attente de modération"
 msgstr "Date în aşteptarea moderării"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:129
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:131
 msgid "Droite"
 msgstr ""
 
@@ -5493,9 +5748,14 @@ msgstr ""
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:11
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-group.phtml:10
 #: ../../library/ZendAfi/Form/Album/Ressource.php:91
+#: ../../library/Class/SessionActivity.php:476
 msgid "Durée"
 msgstr ""
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:70
+msgid "Durée (h)"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:76
 msgid "Durée (j)"
 msgstr ""
@@ -5505,6 +5765,7 @@ msgid "Durée de la session"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:19
+#: ../../library/Class/TableDescription/PNBItems.php:30
 #, fuzzy
 msgid "Durée de prêt en jours"
 msgstr "Împrumuturi în curs"
@@ -5549,6 +5810,10 @@ msgstr ""
 msgid "Déconnexion"
 msgstr "Căsuţă de conectare"
 
+#: ../../application/modules/admin/views/scripts/index/index.phtml:22
+msgid "Découvrir les nouveautés de la version 7.10"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:36
 #, fuzzy
 msgid "Défilement"
@@ -5573,11 +5838,13 @@ msgid "Délai de transition pour le passage à une autre image en secondes"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:4
+#: ../../application/modules/admin/views/scripts/index/index.phtml:32
 msgid "Démonstrations vidéos"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:265
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:296
 #, fuzzy
 msgid "Déplacement des boites"
 msgstr "defilare la dreapta"
@@ -5600,6 +5867,10 @@ msgstr "Moderare alerte"
 msgid "Désactiver l'auto-complétion"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
+msgid "Désactiver la tâche"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:293
 msgid "Désactiver pour passer le site en maintenance"
 msgstr ""
@@ -5633,6 +5904,7 @@ msgid "Désinscription de l'activité \"%s\""
 msgstr "la buletinul informativ"
 
 #: ../../application/modules/opac/controllers/AuthController.php:439
+#: ../../application/modules/opac/controllers/AuthController.php:442
 #, fuzzy
 msgid "Désinscription de la lettre d'information: "
 msgstr "la buletinul informativ"
@@ -5681,6 +5953,7 @@ msgstr "Validare selecţie"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:244
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:248
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:279
 msgid "Développement"
 msgstr ""
 
@@ -5766,6 +6039,7 @@ msgstr "Modificarea fiÅŸei dvs."
 
 #: ../../application/modules/admin/controllers/WidgetController.php:157
 #: ../../application/modules/admin/controllers/WidgetController.php:200
+#: ../../application/modules/admin/controllers/WidgetController.php:227
 #, php-format
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr ""
@@ -5802,6 +6076,7 @@ msgstr "Editor :"
 #: ../../application/modules/opac/controllers/RechercheController.php:454
 #: ../../application/modules/opac/controllers/RechercheController.php:472
 #: ../../application/modules/opac/controllers/RechercheController.php:463
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159
 #, php-format
 msgid "Editeur : %s"
 msgstr "Editor : %s"
@@ -5817,6 +6092,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:95
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:99
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:144
 #, fuzzy
 msgid "Editeur CSS"
 msgstr "Editor :"
@@ -5838,6 +6114,14 @@ msgstr "Editor"
 msgid "Edition"
 msgstr "Animaţie"
 
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:63
+msgid "Effectif maximum"
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:56
+msgid "Effectif minimum"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:40
 msgid "Effectuer un test d'envoi"
 msgstr ""
@@ -5853,6 +6137,7 @@ msgid "Elargir la recherche sur tous les mots"
 msgstr "Extindeţi căutarea la toate cuvintele"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:91
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
 #, fuzzy
 msgid "Elargir la recherche à tous les sites"
 msgstr "Extindeţi căutarea la toate cuvintele"
@@ -5914,6 +6199,7 @@ msgstr ""
 
 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:289
 #: ../../library/ZendAfi/View/Helper/TagDilicomWidget.php:94
+#: ../../library/ZendAfi/View/Helper/Telephone/TagDilicomWidget.php:48
 msgid "Emprunter le livre au format EPUB"
 msgstr ""
 
@@ -5942,16 +6228,19 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:87
 msgid "En bas"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
 msgid "En haut"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:86
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:88
 msgid "En haut et en bas"
 msgstr ""
 
@@ -5984,10 +6273,12 @@ msgstr "ÃŽnregistrare"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53
 #: ../../library/ZendAfi/View/Helper/Accueil/Library.php:60
+#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:77
 msgid "Enregistrer comme filtres par défaut"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:45
 #, fuzzy
 msgid "Enregistrer mes modifications"
 msgstr "Criterii de indexare"
@@ -6003,6 +6294,7 @@ msgid "Entrepot"
 msgstr "Intrări"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88
 msgid "Entrepôts OAI"
 msgstr ""
 
@@ -6088,7 +6380,7 @@ msgstr ""
 msgid "Envoi impossible : erreur à la création de la commande d'envoi"
 msgstr ""
 
-#: ../../library/Class/Bib.php:321
+#: ../../library/Class/Bib.php:321 ../../library/Class/Bib.php:318
 msgid "Envoie des données"
 msgstr "Trimite date"
 
@@ -6103,6 +6395,7 @@ msgstr "Trimite date"
 #: ../../library/ZendAfi/Form/ReponseFormulaireMail.php:52
 #: ../../library/ZendAfi/Form/SuggestionAchat.php:61
 #: ../../library/ZendAfi/Form/SendMail.php:53
+#: ../../application/modules/admin/controllers/SystemeController.php:292
 msgid "Envoyer"
 msgstr "Trimiteţi"
 
@@ -6167,6 +6460,7 @@ msgstr "Trimiteţi"
 #: ../../application/modules/opac/controllers/AbonneController.php:382
 #: ../../application/modules/opac/controllers/AbonneController.php:385
 #: ../../application/modules/opac/controllers/AbonneController.php:386
+#: ../../application/modules/opac/controllers/RssController.php:57
 msgid "Erreur"
 msgstr "Eroare"
 
@@ -6176,6 +6470,7 @@ msgid "Erreur : %s"
 msgstr "Eroare"
 
 #: ../../application/modules/admin/controllers/IndexController.php:146
+#: ../../application/modules/admin/controllers/IndexController.php:156
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -6223,6 +6518,7 @@ msgid "Erreur d'envoi: %s"
 msgstr "Editor : %s"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:128
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:129
 msgid "Erreur de configuration"
 msgstr "Eroare de configurare"
 
@@ -6231,6 +6527,10 @@ msgstr "Eroare de configurare"
 msgid "Erreur de connexion"
 msgstr "Eroare de configurare"
 
+#: ../../application/modules/admin/controllers/BibController.php:452
+msgid "Erreur de sauvegarde des filtres par défaut."
+msgstr ""
+
 #: ../../application/modules/admin/controllers/RedmineController.php:120
 msgid "Erreur lors de l'enregistrement"
 msgstr ""
@@ -6245,11 +6545,13 @@ msgid "Erreur lors de l'envoi"
 msgstr "Editor : %s"
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:72
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:79
 #, fuzzy, php-format
 msgid "Erreur lors de l'execution du batch %s"
 msgstr "Editor : %s"
 
 #: ../../application/modules/opac/controllers/AuthController.php:472
+#: ../../application/modules/opac/controllers/AuthController.php:475
 msgid "Erreur lors de l\\inscription à la newsletter."
 msgstr ""
 
@@ -6268,6 +6570,7 @@ msgid "Erreur(s) : %s"
 msgstr "Eroare"
 
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:111
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
@@ -6297,11 +6600,13 @@ msgid "Etat de la communication"
 msgstr "An de publicare"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:25
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 #, fuzzy
 msgid "Etat du site"
 msgstr "Export de coÅŸ"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:306
+#: ../../application/modules/admin/controllers/SystemeController.php:312
 #, fuzzy
 msgid "Etat du système"
 msgstr "Export de coÅŸ"
@@ -6314,9 +6619,15 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:95
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:172
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:170
 msgid "Etes vous sûr de vouloir supprimer cette réservation ?"
 msgstr "Sunteţi sigur(ă) că vreţi să ştergeţi această rezervare?"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
+#, fuzzy
+msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
+msgstr "Sunteţi sigur(ă) că vreţi să suprimaţi acest strat?"
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:12
 msgid "Etes-vous sur de vouloir supprimer ce point ?"
 msgstr "Sunteţi sigur(ă) că vreţi să suprimaţi acest punct?"
@@ -6338,6 +6649,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette annexe ?"
 msgstr "Sunteţi sigur(ă) că vreţi să suprimaţi acest coş?"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:706
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:705
 #, fuzzy
 msgid "Etes-vous sûr de vouloir supprimer cette catégorie ?"
 msgstr "Sunteţi sigur(ă) că vreţi să ştergeţi această categorie?"
@@ -6382,6 +6694,7 @@ msgid "Expire le"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157
 #, fuzzy
 msgid "Explorateur de fichiers"
 msgstr "Export de coÅŸ"
@@ -6390,6 +6703,11 @@ msgstr "Export de coÅŸ"
 msgid "Explorer le serveur"
 msgstr "Explorare server"
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:4
+#, fuzzy
+msgid "Export"
+msgstr "Exportă acest coş"
+
 #: ../../application/modules/admin/views/scripts/modo/formulaires.phtml:23
 msgid "Export CSV"
 msgstr ""
@@ -6404,6 +6722,7 @@ msgid "Export unimarc"
 msgstr "Export de coÅŸ"
 
 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:29
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:55
 #, fuzzy
 msgid "Exporter"
 msgstr "Exportă acest coş"
@@ -6429,6 +6748,7 @@ msgid "Exporter en liste"
 msgstr "Exportă acest coş"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:14
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:8
 #, fuzzy
 msgid "Exporter le tableau en CSV"
 msgstr "Exportă acest coş"
@@ -6463,6 +6783,7 @@ msgid "Expéditeur:"
 msgstr "Editor"
 
 #: ../../application/modules/admin/controllers/BatchController.php:39
+#: ../../application/modules/admin/controllers/BatchController.php:107
 #, php-format
 msgid "Exécution du traitement \"%s\""
 msgstr ""
@@ -6541,6 +6862,7 @@ msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:226
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:230
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:261
 #, fuzzy
 msgid "Faire une demande de mise à jour de la charte graphique"
 msgstr "Actualizare a localizării"
@@ -6664,6 +6986,7 @@ msgid "Filtrage des données"
 msgstr "Filtrare a datelor"
 
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:383
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:397
 #, fuzzy
 msgid "Filtrage du contenu"
 msgstr "Filtrare a datelor"
@@ -6743,6 +7066,7 @@ msgid "Filtres activés"
 msgstr "Filtrează"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:69
 #, fuzzy
 msgid "Filtres affichées"
 msgstr "Filtrează"
@@ -6752,6 +7076,7 @@ msgstr "Filtrează"
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:35
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:89
 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:37
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:70
 #, fuzzy
 msgid "Filtres disponibles"
 msgstr "Câmpuri disponibile"
@@ -6762,6 +7087,7 @@ msgid "Filtres issus du domaine"
 msgstr "Filtrare a datelor"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:63
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:66
 #, fuzzy
 msgid "Filtres à afficher"
 msgstr "Faţete : %s"
@@ -6906,6 +7232,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:130
 #, fuzzy
 msgid "Gauche"
 msgstr "Strat"
@@ -6969,6 +7296,7 @@ msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:52
+#: ../../application/modules/admin/views/scripts/index/index.phtml:80
 msgid "Google group Bokeh"
 msgstr ""
 
@@ -7004,6 +7332,7 @@ msgstr "Modificare bibliotecă: %s"
 
 #: ../../library/ZendAfi/Form/Admin/User.php:136
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
 msgid "Groupes"
 msgstr ""
 
@@ -7025,6 +7354,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:155
+#: ../../application/modules/admin/controllers/SystemeController.php:140
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154
 #, fuzzy
 msgid "Génération du site"
 msgstr "Selecţie de site-uri"
@@ -7059,6 +7390,11 @@ msgstr ""
 msgid "Généré le"
 msgstr "Criterii generale"
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#, fuzzy, php-format
+msgid "Généré pour la session d'activité %s"
+msgstr "la buletinul informativ"
+
 #: ../../library/Class/AdminVar.php:134
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
@@ -7070,6 +7406,7 @@ msgid "Gérer les medias"
 msgstr "Gestionare media"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:641
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:640
 #, fuzzy
 msgid "Gérer les médias"
 msgstr "Gestionare media"
@@ -7081,6 +7418,7 @@ msgstr "Gestionare media"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1021
 #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33
+#: ../../application/modules/opac/controllers/AbonneController.php:1020
 #, fuzzy
 msgid "Gérer mes favoris"
 msgstr "Gestionare media"
@@ -7091,6 +7429,7 @@ msgstr "SUS"
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:83
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:82
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:81
 msgid "HTML"
 msgstr ""
 
@@ -7160,6 +7499,7 @@ msgid "Hauteur du widget en pixels"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:67
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:214
 #, fuzzy
 msgid "Hierarchie contient"
 msgstr "specificaţia conţine"
@@ -7178,6 +7518,7 @@ msgstr "Critici redactate de %s"
 
 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129
 #, fuzzy
 msgid "Historique des modifications"
 msgstr "Criterii de indexare"
@@ -7199,6 +7540,10 @@ msgstr "Orar"
 #: ../../library/ZendAfi/View/Helper/BibView.php:179
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:104
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:868
+#: ../../library/Class/SessionActivity.php:469
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:75
 #, fuzzy
 msgid "Horaires"
 msgstr "Orar"
@@ -7291,6 +7636,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:83
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:37
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:38
+#: ../../application/modules/admin/controllers/LieuController.php:31
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94
 msgid "Identifiant"
 msgstr "Nume de utilizator"
 
@@ -7321,6 +7668,7 @@ msgid "Identifiant du project Redmine"
 msgstr "Numele de utilizator sau parola incorecte    "
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1133
+#: ../../application/modules/opac/controllers/AbonneController.php:1132
 #, fuzzy
 msgid "Identifiant et/ou mot de passe incorrect"
 msgstr "Numele de utilizator sau parola incorecte    "
@@ -7374,6 +7722,7 @@ msgid "Ignorer l'erreur et continuer"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Generator.php:252
+#: ../../library/Class/Cosmogramme/Generator.php:251
 #, fuzzy
 msgid "Ignoré en mode mise à jour"
 msgstr "Încărcare in curs"
@@ -7402,17 +7751,17 @@ msgstr "Imposibil de citit fluxul rss"
 msgid "Il faut compléter tous les champs."
 msgstr "Trebuie completate toate câmpurile"
 
-#: ../../library/Class/Profil.php:1356
+#: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357
 #, fuzzy
 msgid "Il manque la largeur de la division 1."
 msgstr "Căsuţă setări iniţiale pentru diviziune"
 
-#: ../../library/Class/Profil.php:1360
+#: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361
 #, fuzzy
 msgid "Il manque la largeur de la division 2."
 msgstr "Căsuţă setări iniţiale pentru diviziune"
 
-#: ../../library/Class/Profil.php:1364
+#: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365
 #, fuzzy
 msgid "Il manque la largeur de la division 3."
 msgstr "Căsuţă setări iniţiale pentru diviziune"
@@ -7423,6 +7772,7 @@ msgid "Il n'est pas possible de sélectionner plus de %d éléments"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:122
+#: ../../application/modules/admin/controllers/SystemeController.php:128
 #, fuzzy
 msgid "Il n'y a aucune donnée à importer."
 msgstr "Nici o dată de moderat"
@@ -7446,6 +7796,7 @@ msgstr "Nu mai există sub-nivel"
 #: ../../application/modules/opac/controllers/RssController.php:197
 #: ../../application/modules/opac/controllers/RssController.php:216
 #: ../../application/modules/opac/controllers/RssController.php:212
+#: ../../application/modules/opac/controllers/RssController.php:203
 msgid "Il y a un problème avec l'adresse du flux RSS"
 msgstr "Este o problemă cu adresa fluxului RSS"
 
@@ -7471,15 +7822,23 @@ msgstr "Imagine de fond"
 msgid "Image par image"
 msgstr "Chioşc de instrucţiuni"
 
+#: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
+#, fuzzy
+msgid "Import"
+msgstr "Suport"
+
 #: ../../application/modules/admin/controllers/HarvestController.php:223
+#: ../../application/modules/admin/controllers/HarvestController.php:201
 msgid "Import SoundCloud"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173
 msgid "Import Thesaurus"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151
 msgid "Import avis opac2"
 msgstr ""
 
@@ -7488,18 +7847,22 @@ msgid "Import d'articles TYPO3"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:112
+#: ../../application/modules/admin/controllers/SystemeController.php:118
 msgid "Import des avis opac2"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:33
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:15
 msgid "Import des offres Dilicom/PNB"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89
 msgid "Import/Export EAD"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:196
+#: ../../application/modules/admin/controllers/SystemeController.php:202
 #, fuzzy
 msgid "Importation d'un thesaurus"
 msgstr "Modificarea fiÅŸei dvs."
@@ -7507,10 +7870,14 @@ msgstr "Modificarea fiÅŸei dvs."
 #: ../../application/modules/admin/controllers/HarvestController.php:151
 #: ../../application/modules/admin/controllers/HarvestController.php:208
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:550
+#: ../../application/modules/admin/controllers/HarvestController.php:129
+#: ../../application/modules/admin/controllers/HarvestController.php:186
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
 msgid "Importer"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/AlbumController.php:133
+#: ../../application/modules/admin/controllers/AlbumController.php:136
 #, fuzzy
 msgid "Importer le fichier XML"
 msgstr "Export de coÅŸ"
@@ -7547,6 +7914,7 @@ msgstr "Imposibil de citit fluxul rss"
 #: ../../application/modules/opac/controllers/RssController.php:34
 #: ../../application/modules/opac/controllers/RssController.php:39
 #: ../../application/modules/opac/controllers/RssController.php:58
+#: ../../application/modules/opac/controllers/RssController.php:51
 msgid "Impossible de lire le flux rss"
 msgstr "Imposibil de citit fluxul rss"
 
@@ -7581,10 +7949,16 @@ msgid "Impossible de télécharger le fichier %s"
 msgstr "Imposibil de citit fluxul rss"
 
 #: ../../library/ZendAfi/View/Helper/TagPrintLink.php:28
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:49
 #, fuzzy
 msgid "Imprimer"
 msgstr "Åžtergere"
 
+#: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20
+#, fuzzy, php-format
+msgid "Imprimer %s"
+msgstr "Åžtergere"
+
 #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8
 #: ../../library/Class/IntProfilDonnees.php:83
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42
@@ -7665,6 +8039,12 @@ msgstr "Resurse OAI"
 msgid "Indexer les titres de notice pour l'autocompletion"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:146
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:217
+#, fuzzy
+msgid "Indice commence par"
+msgstr "indiciul începe cu "
+
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:87
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:91
 #: ../../application/modules/admin/views/scripts/catalogue/form.phtml:114
@@ -7683,6 +8063,8 @@ msgid "Indices dewey"
 msgstr "Indicii Dewey"
 
 #: ../../library/Class/User/SearchCriteria/NewsletterSubscriptionStatus.php:41
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:33
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:33
 msgid "Indifférent"
 msgstr ""
 
@@ -7718,6 +8100,7 @@ msgid "Information"
 msgstr "Informaţie"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:85
 #, fuzzy
 msgid "Information de contact"
 msgstr "Căsuţă de căutare"
@@ -7747,6 +8130,8 @@ msgstr "Informaţie"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:263
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149
+#: ../../application/modules/admin/controllers/SystemeController.php:269
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
 #, fuzzy
 msgid "Informations système"
 msgstr "Informaţie"
@@ -7785,11 +8170,13 @@ msgid "Inscription non permise"
 msgstr "ÃŽnscriere"
 
 #: ../../application/modules/opac/controllers/AuthController.php:383
+#: ../../application/modules/opac/controllers/AuthController.php:386
 #, fuzzy
 msgid "Inscription à la lettre d'information: "
 msgstr "la buletinul informativ"
 
 #: ../../application/modules/opac/controllers/AuthController.php:465
+#: ../../application/modules/opac/controllers/AuthController.php:468
 msgid "Inscription à la newsletter invalide."
 msgstr ""
 
@@ -7854,6 +8241,8 @@ msgid "Intervalle 3 secondes."
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:119
+#: ../../library/Class/SessionActivity.php:497
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:113
 msgid "Intervenants"
 msgstr ""
 
@@ -7870,11 +8259,12 @@ msgstr "Moderare alerte"
 msgid "Invalid type given, value should be a string"
 msgstr "Tip dat invalid, valoarea trebuie să fie un şir"
 
-#: ../../library/Class/Bib.php:319
+#: ../../library/Class/Bib.php:319 ../../library/Class/Bib.php:316
 msgid "Invisible"
 msgstr "Invizibil"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:232
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234
 msgid "Invité"
 msgstr ""
 
@@ -7895,6 +8285,7 @@ msgid "J'utilise les cartes suivantes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
 msgid "Jamendo"
 msgstr ""
 
@@ -7947,6 +8338,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:868
 #: ../../library/ZendAfi/Form/Admin/Ouverture.php:44
 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:94
+#: ../../application/modules/opac/controllers/AbonneController.php:867
 msgid "Jour"
 msgstr ""
 
@@ -8001,6 +8393,7 @@ msgstr ""
 "târziu."
 
 #: ../../library/ZendAfi/Controller/Action.php:45
+#: ../../library/ZendAfi/Controller/Action.php:53
 #, php-format
 msgid "L'action %s est déjà définie`"
 msgstr ""
@@ -8016,6 +8409,7 @@ msgstr "Nu a fost găsit nici un articol"
 #: ../../application/modules/opac/controllers/RssController.php:146
 #: ../../application/modules/opac/controllers/RssController.php:165
 #: ../../application/modules/opac/controllers/RssController.php:161
+#: ../../application/modules/opac/controllers/RssController.php:152
 msgid "L'adresse du flux RSS n'est plus valide."
 msgstr "Adresa fluxului RSS nu mai este valabilă"
 
@@ -8075,12 +8469,14 @@ msgstr ""
 "Părerea dvs. trebuie să aibă o lungime cuprinsă între %d şi %d caractere"
 
 #: ../../library/Class/AvisNotice.php:396
+#: ../../library/Class/AvisNotice.php:400
 #, php-format
 msgid "L'avis doit avoir une longueur comprise entre %s et %s caractères"
 msgstr ""
 "Părerea dvs. trebuie să aibă o lungime cuprinsă între %d şi %d caractere"
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:101
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:103
 #, php-format
 msgid "L'exemplaire id_origine : %s / id_int_bib : %s n'a pas été trouvé."
 msgstr ""
@@ -8107,6 +8503,7 @@ msgstr "Numele de utilizator ales există deja."
 #: ../../application/modules/admin/controllers/BibController.php:296
 #: ../../application/modules/admin/controllers/BibController.php:294
 #: ../../application/modules/admin/controllers/BibController.php:358
+#: ../../application/modules/admin/controllers/BibController.php:359
 msgid "L'image du plan est obligatoire."
 msgstr "Imaginea planului este obligatorie."
 
@@ -8202,6 +8599,7 @@ msgstr "Rezervarea dvs. a fost înregistrată."
 
 #: ../../application/modules/admin/controllers/WidgetController.php:86
 #: ../../application/modules/admin/controllers/WidgetController.php:117
+#: ../../application/modules/admin/controllers/WidgetController.php:143
 #, fuzzy, php-format
 msgid "La boite %s a été supprimée"
 msgstr "Nu a fost găsit nici un articol"
@@ -8231,11 +8629,13 @@ msgid "La commande %s a échoué : %s"
 msgstr "Prelungire nereuşită"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:434
+#: ../../application/modules/admin/controllers/ModulesController.php:433
 #, fuzzy
 msgid "La configuration a été enregistrée"
 msgstr "Rezervarea dvs. a fost înregistrată."
 
 #: ../../library/Class/Systeme/Widget/Menu.php:165
+#: ../../library/Class/Systeme/Widget/Menu.php:171
 #, fuzzy, php-format
 msgid "La configuration de l'entrée de menu %s a été sauvegardée"
 msgstr "Nu a fost găsită nici o informaţie"
@@ -8246,19 +8646,21 @@ msgid "La configuration de la boite %s a été sauvegardée"
 msgstr "Nu a fost găsită nici o informaţie"
 
 #: ../../library/Class/Systeme/Widget/Menu.php:163
+#: ../../library/Class/Systeme/Widget/Menu.php:169
 #, fuzzy, php-format
 msgid "La configuration du menu %s a été sauvegardée"
 msgstr "Nu a fost găsită nici o informaţie"
 
-#: ../../library/Class/Profil.php:1384
+#: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385
 msgid "La couleur des liens du bandeau doit être au format #001122"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1380
+#: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381
 msgid "La couleur du texte bandeau doit être au format #001122"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:145
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
@@ -8267,7 +8669,7 @@ msgid ""
 "La gestion des permissions sera activée après la création de cette catégorie"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1345
+#: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346
 #, fuzzy
 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels."
 msgstr ""
@@ -8316,6 +8718,7 @@ msgid "La recherche s'effectue dans tout le réseau."
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:472
+#: ../../library/Class/CodifThesaurus.php:506
 msgid "La règle n'est pas de la forme 686$a"
 msgstr ""
 
@@ -8339,13 +8742,19 @@ msgstr "Nu a fost găsit nici un articol"
 msgid "La session \"%s\" a été sauvegardée"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1352
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:31
+#, php-format
+msgid "La session \"%s\" a été sauvegardée, son article lié a été créé."
+msgstr ""
+
+#: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353
 msgid ""
 "La somme des largeurs des divisions ne doit pas excéder la largeur du site."
 msgstr ""
 
 #: ../../library/Class/CriteresRecherche.php:450
 #: ../../library/Class/CriteresRecherche.php:454
+#: ../../library/Class/CriteresRecherche.php:476
 #, fuzzy
 msgid "La sélection ne contient aucune notice"
 msgstr "Acest meniu nu conţine date"
@@ -8354,6 +8763,11 @@ msgstr "Acest meniu nu conţine date"
 msgid "La taille du fichier ne doit pas excéder "
 msgstr ""
 
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:64
+#, php-format
+msgid "La tâche %s n'est pas plannifiée aujourd'hui"
+msgstr ""
+
 #: ../../library/Class/Cosmogramme/LandingDirectory.php:46
 msgid ""
 "La variable ftp_path est absente, incorrecte ou le dossier n'a pas été créé."
@@ -8374,6 +8788,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:235
 #: ../../application/modules/admin/controllers/ModulesController.php:267
+#: ../../application/modules/admin/controllers/ModulesController.php:234
+#: ../../application/modules/admin/controllers/ModulesController.php:266
 #, php-format
 msgid "La zone \"%s\" n'est pas une zone unimarc valide"
 msgstr ""
@@ -8383,6 +8799,10 @@ msgstr ""
 msgid "Label"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:75
+msgid "Lancer"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/album/generate-thumbnails.phtml:23
 #, fuzzy
 msgid "Lancer la génération"
@@ -8401,6 +8821,16 @@ msgstr "Lansare căutare"
 msgid "Lancer le moissonnage"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:67
+#, fuzzy
+msgid "Lancer manuellement"
+msgstr "Amplasare"
+
+#: ../../library/ZendAfi/Form/Admin/Batch.php:31
+#, fuzzy
+msgid "Lancer tous les"
+msgstr "Alegeţi media"
+
 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110
 msgid "Lancer une recherche avec réinitialisation des paramètres"
 msgstr ""
@@ -8506,6 +8936,7 @@ msgid "Latitude"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:123
+#: ../../application/modules/admin/controllers/IndexController.php:133
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
@@ -8527,6 +8958,9 @@ msgstr ""
 #: ../../application/modules/admin/controllers/ModulesController.php:238
 #: ../../application/modules/admin/controllers/ModulesController.php:241
 #: ../../application/modules/admin/controllers/ModulesController.php:270
+#: ../../application/modules/admin/controllers/ModulesController.php:237
+#: ../../application/modules/admin/controllers/ModulesController.php:240
+#: ../../application/modules/admin/controllers/ModulesController.php:269
 #, php-format
 msgid "Le champ \"%s\" n'est pas un champ unimarc valide"
 msgstr ""
@@ -8638,6 +9072,8 @@ msgstr "Fişierul pe care l-aţi selectat este gol."
 
 #: ../../application/modules/admin/controllers/SystemeController.php:150
 #: ../../application/modules/admin/controllers/SystemeController.php:218
+#: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:224
 msgid "Le fichier reçu n'est pas valide"
 msgstr ""
 
@@ -8672,16 +9108,17 @@ msgstr ""
 msgid "Le groupe \"%s\" a été sauvegardé"
 msgstr ""
 
-#: ../../library/Class/Lieu.php:84
+#: ../../library/Class/Lieu.php:84 ../../library/Class/Lieu.php:73
 msgid "Le libellé doit être renseigné"
 msgstr ""
 
-#: ../../library/Class/Profil.php:1341
+#: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342
 #, fuzzy
 msgid "Le libellé est obligatoire."
 msgstr "specificaţia este obligatorie."
 
 #: ../../application/modules/admin/controllers/SystemeController.php:298
+#: ../../application/modules/admin/controllers/SystemeController.php:304
 #, fuzzy
 msgid "Le mail a bien été envoyé"
 msgstr "Rezervarea dvs. a fost înregistrată."
@@ -8725,10 +9162,12 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:36
 #: ../../application/modules/opac/controllers/RssController.php:41
 #: ../../application/modules/opac/controllers/RssController.php:60
+#: ../../application/modules/opac/controllers/RssController.php:53
 msgid "Le ou les flux demandés ne sont plus valides"
 msgstr "Fluxul sau fluxurile solicitate nu mai sunt valide"
 
 #: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:110
+#: ../../library/Class/Cosmogramme/Integration/PhasePanier.php:112
 #, php-format
 msgid "Le panier \"%s\" est orphelin. Il sera rattaché à l'utilisateur \"%s\""
 msgstr ""
@@ -8810,6 +9249,8 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:230
 #: ../../application/modules/admin/controllers/ModulesController.php:262
+#: ../../application/modules/admin/controllers/ModulesController.php:229
+#: ../../application/modules/admin/controllers/ModulesController.php:261
 msgid "Les caractères \";\" et \"-\" sont interdits"
 msgstr ""
 
@@ -8842,12 +9283,18 @@ msgstr "CoÅŸurile dvs. de documente"
 msgid "Les fils Rss les plus récents"
 msgstr "Rezultatele precedente"
 
+#: ../../application/modules/admin/controllers/BibController.php:450
+#, fuzzy
+msgid "Les filtres par défaut ont été sauvegardés."
+msgstr "Nu a fost găsit nici un articol"
+
 #: ../../application/modules/admin/controllers/PremierChapitreController.php:122
 #: ../../library/Class/Batch/PremierChapitre.php:69
 msgid "Les liaisons n'ont pu être faites"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/SystemeController.php:188
+#: ../../application/modules/admin/controllers/SystemeController.php:194
 msgid "Les libellés ont été mis à jour"
 msgstr ""
 
@@ -8890,6 +9337,11 @@ msgstr ""
 msgid "Les mots de passe ne correspondent pas"
 msgstr "Parolele nu corespund"
 
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2
+#, fuzzy, php-format
+msgid "Les paniers de %s"
+msgstr "CoÅŸurile dvs."
+
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:2
 #, fuzzy
 msgid "Les paniers des professionnels"
@@ -9023,15 +9475,22 @@ msgstr "Specificaţie"
 #: ../../application/modules/admin/views/scripts/lieu/index.phtml:21
 #: ../../library/Class/Systeme/Report.php:184
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:33
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:38
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:3
+#: ../../application/modules/admin/controllers/LieuController.php:32
 msgid "Libellé"
 msgstr "Specificaţie"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:68
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:147
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:215
 #, fuzzy
 msgid "Libellé commence par"
 msgstr "specificaţia începe cu"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:69
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:216
 #, fuzzy
 msgid "Libellé contient"
 msgstr "specificaţia conţine"
@@ -9178,6 +9637,7 @@ msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr "la buletinul informativ"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:81
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:84
 #, fuzzy
 msgid "Lien rebond vers la fiche bibliothèque"
 msgstr "Fişă bibliotecă:     "
@@ -9452,6 +9912,10 @@ msgstr "Aviz asupra instrucţiunilor"
 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:109
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 #: ../../library/Class/Systeme/ModulesAccueil/Calendrier.php:61
+#: ../../application/modules/opac/controllers/AbonneController.php:866
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:134
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:56
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:81
 msgid "Lieu"
 msgstr ""
 
@@ -9507,6 +9971,9 @@ msgstr "Citiţi continuarea"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:123
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:85
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:72
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:83
 msgid "Liste"
 msgstr ""
 
@@ -9726,6 +10193,10 @@ msgstr ""
 msgid "Légende"
 msgstr "Legendă"
 
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:42
+msgid "MAJ auto."
+msgstr ""
+
 #: ../../library/Class/IntProfilDonnees.php:53
 #: ../../library/Class/IntProfilDonnees.php:73
 msgid "MARC 21"
@@ -9843,6 +10314,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:93
 #: ../../application/modules/admin/controllers/WidgetController.php:124
+#: ../../application/modules/admin/controllers/WidgetController.php:150
 #, fuzzy
 msgid "Menu ajouté"
 msgstr "Ultimele site-uri adăugate"
@@ -9858,11 +10330,13 @@ msgstr "Chioşc de instrucţiuni, carusel orizontal"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:470
 #: ../../application/modules/admin/controllers/ProfilController.php:485
+#: ../../application/modules/admin/controllers/ProfilController.php:515
 msgid "Menu horizontal dupliqué sur tous les autres profils."
 msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:106
 #: ../../application/modules/admin/controllers/WidgetController.php:137
+#: ../../application/modules/admin/controllers/WidgetController.php:163
 #, fuzzy
 msgid "Menu supprimé"
 msgstr "Rezervări în curs"
@@ -9875,6 +10349,7 @@ msgstr "Temă"
 #: ../../application/modules/opac/controllers/RssController.php:37
 #: ../../application/modules/opac/controllers/RssController.php:42
 #: ../../application/modules/opac/controllers/RssController.php:61
+#: ../../application/modules/opac/controllers/RssController.php:54
 msgid "Merci de le signaler à un responsable de la bibliothèque."
 msgstr "Vă rugăm să semnalaţi responsabilului bibliotecii."
 
@@ -9897,6 +10372,7 @@ msgstr "Alegeţi media"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1190
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48
+#: ../../application/modules/opac/controllers/AbonneController.php:1189
 #, fuzzy
 msgid "Mes activités suivies"
 msgstr "Modificare titlu coÅŸ"
@@ -9909,6 +10385,7 @@ msgstr "Biblioteci"
 #: ../../application/modules/opac/controllers/AbonneController.php:1056
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/ValidityCards.php:41
 #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23
+#: ../../application/modules/opac/controllers/AbonneController.php:1055
 #, fuzzy
 msgid "Mes cartes"
 msgstr "CoÅŸurile dvs."
@@ -9920,6 +10397,7 @@ msgstr "Ultimele articole"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1184
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52
+#: ../../application/modules/opac/controllers/AbonneController.php:1183
 #, fuzzy
 msgid "Mes inscriptions en cours"
 msgstr "Rezervări în curs"
@@ -10082,6 +10560,7 @@ msgid "Mise en avant d'un album"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99
 msgid "Mise en page"
 msgstr "Punere în pagină"
 
@@ -10109,6 +10588,8 @@ msgstr "Actualizare a localizării"
 
 #: ../../application/modules/admin/controllers/IndexController.php:134
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:105
+#: ../../application/modules/admin/controllers/IndexController.php:144
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 #, fuzzy
 msgid "Mise à jour de la charte graphique"
 msgstr "Actualizare a localizării"
@@ -10126,6 +10607,7 @@ msgstr "Actualizare a localizării"
 #: ../../application/modules/admin/controllers/BibController.php:202
 #: ../../application/modules/admin/controllers/BibController.php:200
 #: ../../application/modules/admin/controllers/BibController.php:149
+#: ../../application/modules/admin/controllers/BibController.php:150
 msgid "Mise à jour de la localisation"
 msgstr "Actualizare a localizării"
 
@@ -10159,6 +10641,7 @@ msgid "Mise à jour des flux RSS"
 msgstr "Actualizare a localizării"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:156
+#: ../../application/modules/admin/controllers/SystemeController.php:162
 #, fuzzy
 msgid "Mise à jour des thesauri"
 msgstr "Aviz asupra articolelor"
@@ -10248,6 +10731,7 @@ msgid "Mode de sélection des utilisateurs"
 msgstr "Gestionare utilizatori"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:177
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176
 #, fuzzy
 msgid "Modification Thesaurus"
 msgstr "Modificarea fiÅŸei dvs."
@@ -10290,6 +10774,8 @@ msgstr "Modificarea fiÅŸei dvs."
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:501
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:477
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:504
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:10
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:32
 msgid "Modifier"
 msgstr "Modificare"
 
@@ -10298,6 +10784,11 @@ msgstr "Modificare"
 msgid "Modifier %d %s"
 msgstr "Modificare"
 
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:25
+#, fuzzy, php-format
+msgid "Modifier %s"
+msgstr "Modificare bibliotecă: %s"
+
 #: ../../library/ZendAfi/Form/Decorator/MultipleSelection.php:38
 #, fuzzy, php-format
 msgid "Modifier : %s"
@@ -10314,6 +10805,7 @@ msgid "Modifier l'activité: %s"
 msgstr "Modificare bibliotecă: %s"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:634
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:633
 #, fuzzy
 msgid "Modifier l'album"
 msgstr "Modificare bibliotecă: %s"
@@ -10362,6 +10854,7 @@ msgid "Modifier la biographie"
 msgstr "Modifică fişa mea"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:692
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:691
 #, fuzzy
 msgid "Modifier la catégorie"
 msgstr "Adaugă o categorie"
@@ -10381,6 +10874,7 @@ msgid "Modifier la newsletter"
 msgstr "Modifică fişa mea"
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:16
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:11
 #, fuzzy
 msgid "Modifier la session"
 msgstr "Modificare bibliotecă: %s"
@@ -10394,7 +10888,13 @@ msgstr "Modificare bibliotecă: %s"
 msgid "Modifier la source de données du kiosque"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:36
+#, fuzzy
+msgid "Modifier la tâche"
+msgstr "Modifică fişa mea"
+
 #: ../../application/modules/admin/controllers/IndexController.php:85
+#: ../../application/modules/admin/controllers/IndexController.php:94
 #, fuzzy, php-format
 msgid "Modifier la variable: %s"
 msgstr "Modificare bibliotecă: %s"
@@ -10432,6 +10932,7 @@ msgid "Modifier le contenu du panier %s"
 msgstr "Modificare titlu coÅŸ"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:91
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:88
 #, fuzzy, php-format
 msgid "Modifier le domaine : %s"
 msgstr "Modificare bibliotecă: %s"
@@ -10485,6 +10986,7 @@ msgstr "Modificare bibliotecă: %s"
 
 #: ../../application/modules/admin/controllers/ProfilController.php:423
 #: ../../application/modules/admin/controllers/ProfilController.php:430
+#: ../../application/modules/admin/controllers/ProfilController.php:460
 #, fuzzy, php-format
 msgid "Modifier le profil: %s"
 msgstr "Modificare bibliotecă: %s"
@@ -10570,6 +11072,7 @@ msgstr "Gestionare utilizatori"
 #: ../../application/modules/admin/controllers/BibController.php:319
 #: ../../application/modules/admin/controllers/BibController.php:317
 #: ../../application/modules/admin/controllers/BibController.php:256
+#: ../../application/modules/admin/controllers/BibController.php:257
 #, php-format
 msgid "Modifier un plan de la bibliothèque: %s"
 msgstr "Modifică un plan al bibliotecii: %s"
@@ -10649,6 +11152,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/PrintController.php:31
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
 msgid "Modèles d'impressions"
 msgstr ""
 
@@ -10703,6 +11207,7 @@ msgstr "Moderarea tag-urilor privind instrucţiunile"
 #: ../../application/modules/opac/controllers/RssController.php:217
 #: ../../application/modules/opac/controllers/RssController.php:236
 #: ../../application/modules/opac/controllers/RssController.php:232
+#: ../../application/modules/opac/controllers/RssController.php:218
 msgid "Modérations"
 msgstr "Moderări"
 
@@ -10716,15 +11221,22 @@ msgid "Moissonnage ArteVOD"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:166
+#: ../../application/modules/admin/controllers/HarvestController.php:144
 #, fuzzy
 msgid "Moissonnage Jamendo"
 msgstr "Încărcare in curs"
 
 #: ../../application/modules/admin/controllers/HarvestController.php:132
+#: ../../application/modules/admin/controllers/HarvestController.php:110
 #, fuzzy
 msgid "Moissonnage Orphea"
 msgstr "Încărcare in curs"
 
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43
+#, fuzzy
+msgid "Moissonnage automatique"
+msgstr "Încărcare in curs"
+
 #: ../../application/modules/admin/controllers/ExternalAgendasController.php:34
 #, php-format
 msgid "Moissonnage des évènements de l'agenda \"%s\""
@@ -10737,6 +11249,7 @@ msgid "Moissonnage en cours"
 msgstr "Încărcare in curs"
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:28
 #, fuzzy
 msgid "Moissonner"
 msgstr "Încărcare in curs"
@@ -10746,6 +11259,11 @@ msgstr "Încărcare in curs"
 msgid "Moissonner catalogue %s"
 msgstr "Încărcare in curs"
 
+#: ../../library/Class/Batch/ExternalAgenda.php:27
+#, fuzzy
+msgid "Moissonner les agendas externes"
+msgstr "Gestionare utilizatori"
+
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:46
 #: ../../library/Class/Systeme/ModulesAccueil/Login.php:47
 msgid "Mon compte"
@@ -10849,6 +11367,7 @@ msgid "Mots-clef"
 msgstr "Cuvinte-cheie"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126
 msgid "Multimedia"
 msgstr ""
 
@@ -10876,7 +11395,7 @@ msgstr ""
 msgid "Médiathèque"
 msgstr "Sitotecă"
 
-#: ../../library/Class/Bib.php:320
+#: ../../library/Class/Bib.php:320 ../../library/Class/Bib.php:317
 msgid "N'envoie pas de données"
 msgstr "Nu trimite date"
 
@@ -10974,6 +11493,7 @@ msgstr "Lucrarea nu a fost găsită"
 
 #: ../../library/Class/User/SearchCriteria.php:153
 #: ../../library/ZendAfi/Form/Admin/User.php:125
+#: ../../library/Class/User/SearchCriteria.php:156
 #, fuzzy
 msgid "Niveau d'accès"
 msgstr "Nivel de acces necesar"
@@ -11030,6 +11550,7 @@ msgid ""
 msgstr ""
 
 #: ../../application/modules/opac/views/scripts/head.phtml:82
+#: ../../application/modules/opac/views/scripts/head.phtml:81
 #, fuzzy
 msgid "Noir sur blanc"
 msgstr "Vedeţi planul"
@@ -11102,6 +11623,8 @@ msgstr "Vedeţi planul"
 #: ../../application/modules/admin/views/scripts/newsletter/edit-subscribers.phtml:43
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:84
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:36
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:95
+#: ../../library/ZendAfi/Form/Register.php:198
 msgid "Nom"
 msgstr "Nume"
 
@@ -11139,6 +11662,7 @@ msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #, fuzzy
 msgid "Nom du domaine"
 msgstr "Export de coÅŸ"
@@ -11192,6 +11716,11 @@ msgstr "Chioşc de instrucţiuni"
 msgid "Nombre d'albums"
 msgstr "Categorie înrudită"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
+#, fuzzy
+msgid "Nombre d'articles"
+msgstr "Categorie înrudită"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:58
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:49
 msgid "Nombre d'articles les plus récents à analyser"
@@ -11213,6 +11742,7 @@ msgid "Nombre d'articles à analyser"
 msgstr "Faţete : %s"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:3
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:4
 #, fuzzy, php-format
 msgid "Nombre d'avis abonnés : %s"
 msgstr "Număr de diviziuni"
@@ -11227,12 +11757,28 @@ msgstr "Întoarcere la listă"
 msgid "Nombre d'avis à afficher"
 msgstr "Faţete : %s"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:8
+#, fuzzy
+msgid "Nombre d'exemplaires"
+msgstr "Situaţi ca exemplar"
+
+#: ../../library/ZendAfi/Form/Configuration/MyCarouselImgObject.php:52
+#, fuzzy
+msgid "Nombre d'images en hauteur"
+msgstr "Utilizatori"
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:215
 #, fuzzy
 msgid "Nombre d'inscrits"
 msgstr "Utilizatori"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:9
+#, fuzzy
+msgid "Nombre d'intégrations programmées"
+msgstr "Buletine informative"
+
 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:81
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:3
 #, fuzzy
 msgid "Nombre d'utilisateurs"
 msgstr "Utilizatori"
@@ -11252,6 +11798,7 @@ msgid "Nombre d'évènements mis à jour : %s"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:34
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:39
 #, fuzzy
 msgid "Nombre d'événements"
 msgstr "Utilizatori"
@@ -11261,6 +11808,16 @@ msgstr "Utilizatori"
 msgid "Nombre d'événements à afficher"
 msgstr "Utilizatori"
 
+#: ../../library/Class/ExternalAgenda.php:29
+#, fuzzy, php-format
+msgid "Nombre d\\'événements créés : %s\n"
+msgstr "Număr de diviziuni"
+
+#: ../../library/Class/ExternalAgenda.php:30
+#, fuzzy, php-format
+msgid "Nombre d\\'événements mis à jour : %s\n"
+msgstr "Număr de diviziuni"
+
 #: ../../library/Class/AdminVar.php:348
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr ""
@@ -11313,7 +11870,13 @@ msgstr "Modificare titlu coÅŸ"
 msgid "Nombre de documents à analyser"
 msgstr "Tip de document"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:7
+#, fuzzy
+msgid "Nombre de fils RSS référencés"
+msgstr "Vedeţi fluxurile RSS selectate"
+
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:9
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:12
 #, fuzzy, php-format
 msgid "Nombre de formulaires : %s"
 msgstr "Moderare alerte"
@@ -11323,25 +11886,39 @@ msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:20
+#: ../../library/Class/TableDescription/PNBItems.php:31
 msgid "Nombre de jours restant sur la licence"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9
+#, fuzzy
+msgid "Nombre de notices hors cache"
+msgstr "Chioşc de instrucţiuni"
+
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:116
 #, fuzzy
 msgid "Nombre de notices par page"
 msgstr "Chioşc de instrucţiuni"
 
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
+#: ../../library/Class/SessionActivity.php:482
 #, fuzzy
 msgid "Nombre de participants"
 msgstr "Număr de diviziuni"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:4
+#, fuzzy
+msgid "Nombre de profils"
+msgstr "Număr de diviziuni"
+
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:17
+#: ../../library/Class/TableDescription/PNBItems.php:28
 #, fuzzy
 msgid "Nombre de prêts"
 msgstr "Număr de diviziuni"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:18
+#: ../../library/Class/TableDescription/PNBItems.php:29
 #, fuzzy
 msgid "Nombre de prêts simultanés"
 msgstr "Număr de diviziuni"
@@ -11374,6 +11951,11 @@ msgstr ""
 msgid "Nombre de sites par page"
 msgstr "Chioşc de instrucţiuni"
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:6
+#, fuzzy
+msgid "Nombre de sites référencés"
+msgstr "Chioşc de instrucţiuni"
+
 #: ../../library/ZendAfi/Form/Configuration/Menu/ListOfSites.php:39
 #, fuzzy
 msgid "Nombre de sites à afficher"
@@ -11390,20 +11972,33 @@ msgid "Nombre de tags à afficher"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:5
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:8
 #, fuzzy, php-format
 msgid "Nombre de traductions : %s"
 msgstr "Număr de diviziuni"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:14
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:16
 #, fuzzy, php-format
 msgid "Nombre de versions : %s"
 msgstr "Număr de diviziuni"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:8
+#, fuzzy
+msgid "Nombre de vignettes non reconnues"
+msgstr "Număr de diviziuni"
+
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:7
+#, fuzzy
+msgid "Nombre de vignettes reconnues"
+msgstr "Număr de diviziuni"
+
 #: ../../library/Class/AdminVar.php:253
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr ""
 
 #: ../../library/Class/CodifThesaurus.php:482
+#: ../../library/Class/CodifThesaurus.php:516
 #, php-format
 msgid "Nombre maximum d'élément à ce niveau déjà atteint (%s)"
 msgstr ""
@@ -11423,6 +12018,7 @@ msgid "Nombre à afficher"
 msgstr "Faţete : %s"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:39
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:42
 #, fuzzy
 msgid "Nombres de biliothèques par page"
 msgstr "Chioşc de instrucţiuni"
@@ -11433,6 +12029,9 @@ msgstr "Chioşc de instrucţiuni"
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:29
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:186
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:32
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:32
 #, fuzzy
 msgid "Non"
 msgstr "Nume"
@@ -11441,7 +12040,12 @@ msgstr "Nume"
 msgid "Non affiché"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:28
+msgid "Non classé"
+msgstr ""
+
 #: ../../library/Class/Cosmogramme/Generator.php:195
+#: ../../library/Class/Cosmogramme/Generator.php:194
 msgid "Non demandée"
 msgstr ""
 
@@ -11545,6 +12149,7 @@ msgstr "Instrucţiuni"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36
 #: ../../library/Class/Codification.php:234
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
 #, fuzzy
 msgid "Notices liées"
 msgstr "Instrucţiuni similare"
@@ -11558,6 +12163,11 @@ msgstr "Instrucţiuni similare"
 msgid "Notices traitées"
 msgstr "Instrucţiuni similare"
 
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:32
+#, fuzzy, php-format
+msgid "Notices à traiter: %s"
+msgstr "Instrucţiuni similare"
+
 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9
 msgid ""
 "Nous utilisons uniquement des cookies visant à faciliter votre navigation. "
@@ -11666,6 +12276,7 @@ msgstr "Noutăţi de mai puţin de"
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:111
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 #, fuzzy
 msgid "Nouveautés de moins de: "
 msgstr "Noutăţi de mai puţin de"
@@ -11675,6 +12286,7 @@ msgid "Nouveautés uniquement"
 msgstr "Doar noutăţi"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:34
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
 #, fuzzy
 msgid "Nouvelle Tâche"
 msgstr "Nouă căutare"
@@ -11691,6 +12303,7 @@ msgid "Nouvelle inscription à l'activité \"%s\""
 msgstr "la buletinul informativ"
 
 #: ../../application/modules/admin/controllers/BibController.php:104
+#: ../../application/modules/admin/controllers/BibController.php:105
 #, fuzzy
 msgid "Nouvelle localisation"
 msgstr "** nouă localizare **"
@@ -11710,6 +12323,7 @@ msgid "Nouvelle relation"
 msgstr "** nouă localizare **"
 
 #: ../../library/Class/OneDTouchLink.php:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 #, fuzzy
 msgid "Nouvelle version"
 msgstr "** nouă localizare **"
@@ -11730,10 +12344,12 @@ msgid "Nuage de tags"
 msgstr "Ascunde imagini"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
 msgid "Numilog"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
 msgid "Numérique Premium"
 msgstr ""
 
@@ -11786,6 +12402,7 @@ msgstr "Sunteţi abonat"
 #: ../../application/modules/telephone/controllers/AuthController.php:94
 #: ../../library/ZendAfi/Form/Register.php:184
 #: ../../library/ZendAfi/Form/Configuration/AuthRegister.php:77
+#: ../../library/ZendAfi/Form/Register.php:186
 msgid "N° de carte"
 msgstr ""
 
@@ -11799,6 +12416,7 @@ msgid "OK"
 msgstr ""
 
 #: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:68
+#: ../../library/Class/Cosmogramme/Integration/PhaseBatchs.php:75
 #, fuzzy, php-format
 msgid "OK, temps de traitement : %s"
 msgstr ", tip de document: %s"
@@ -11820,16 +12438,19 @@ msgstr "Obiecte flash"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:69
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:78
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
 msgid "Objets flash"
 msgstr "Obiecte flash"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:67
 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:76
+#: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:74
 msgid "Objets java-script"
 msgstr "Obiecte java-script"
 
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:78
 #: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:77
+#: ../../library/ZendAfi/View/Helper/TagObjetsImgProperties.php:76
 #, fuzzy
 msgid "Objets javascript"
 msgstr "Obiecte java-script"
@@ -11854,6 +12475,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:121
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:122
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:124
 msgid "Onglets"
 msgstr ""
 
@@ -11931,6 +12553,7 @@ msgid "Ordre d'affichage"
 msgstr "Afişează Agenda"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:45
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:48
 #, fuzzy
 msgid "Ordre d'affichage des biliothèques"
 msgstr "Fişă bibliotecă:     "
@@ -11955,6 +12578,7 @@ msgid "Origine des critiques"
 msgstr "Ultimele critici"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
 msgid "Orphea"
 msgstr ""
 
@@ -11976,6 +12600,9 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Checkbox.php:28
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:187
 #: ../../library/ZendAfi/Form/Configuration/ProtoflowImgObject.php:35
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:44
+#: ../../library/Class/User/SearchCriteria/NumberOfReviews.php:31
+#: ../../library/Class/User/SearchCriteria/NumberOfBaskets.php:31
 msgid "Oui"
 msgstr ""
 
@@ -12000,6 +12627,7 @@ msgstr "Câmpuri disponibile"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:109
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:158
 msgid "Outils pour la page :"
 msgstr ""
 
@@ -12018,11 +12646,13 @@ msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 msgid "Ouverture"
 msgstr ""
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:93
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:95
 msgid "Ouvertures"
 msgstr ""
 
@@ -12068,6 +12698,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/AlbumController.php:75
 #: ../../library/Class/Batch/Dilicom.php:30
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90
 msgid "PNB Dilicom"
 msgstr ""
 
@@ -12077,6 +12708,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/ProfilController.php:298
 #: ../../application/modules/admin/controllers/ProfilController.php:305
+#: ../../application/modules/admin/controllers/ProfilController.php:308
 #, fuzzy
 msgid "Page "
 msgstr "Punere în pagină"
@@ -12107,6 +12739,7 @@ msgid "Page précédente"
 msgstr "Rezultatele precedente"
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:340
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:347
 #, fuzzy, php-format
 msgid "Page précédente du kiosque \"%s\""
 msgstr "Rezultatele precedente"
@@ -12116,6 +12749,7 @@ msgid "Page suivante"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:349
+#: ../../library/ZendAfi/View/Helper/Accueil/Kiosque.php:356
 #, php-format
 msgid "Page suivante du kiosque \"%s\""
 msgstr ""
@@ -12129,6 +12763,7 @@ msgid "Pagination"
 msgstr "Paginaţie"
 
 #: ../../application/modules/admin/controllers/StatController.php:58
+#: ../../application/modules/admin/controllers/StatController.php:56
 #, fuzzy
 msgid "Palmarès des réservations de notices"
 msgstr "Palmaresul rezervărilor"
@@ -12190,6 +12825,7 @@ msgid "Paniers du domaine: %s"
 msgstr "CoÅŸurile dvs. de documente"
 
 #: ../../library/Class/PanierNotice.php:470
+#: ../../library/Class/PanierNotice.php:487
 msgid "Paniers sans domaine, rattachés à leur créateur"
 msgstr ""
 
@@ -12224,6 +12860,7 @@ msgstr "Număr de diviziuni"
 
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:78
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:80
 #, fuzzy
 msgid "Par ordre alphabétique"
 msgstr "Criterii de selecţie"
@@ -12239,6 +12876,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:53
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77
 #: ../../library/ZendAfi/Form/Configuration/Widget/Activities.php:36
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:79
 #, fuzzy
 msgid "Par ordre de sélection"
 msgstr "Criterii de selecţie"
@@ -12274,6 +12912,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:9
 #: ../../application/modules/admin/views/scripts/index/index.phtml:1
 #: ../../application/modules/admin/views/scripts/index/index.phtml:10
+#: ../../application/modules/admin/views/scripts/index/index.phtml:37
 msgid "Paramètres du site"
 msgstr "Parametrii site-ului"
 
@@ -12328,6 +12967,7 @@ msgid "Participants"
 msgstr "Număr de diviziuni"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:49
+#: ../../application/modules/admin/views/scripts/index/index.phtml:77
 msgid "Participez à la communauté"
 msgstr ""
 
@@ -12337,6 +12977,7 @@ msgid "Partout"
 msgstr "toate"
 
 #: ../../library/ZendAfi/Controller/Action.php:251
+#: ../../library/ZendAfi/Controller/Action.php:261
 msgid ""
 "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. "
 "Merci de remplir manuellement"
@@ -12445,12 +13086,14 @@ msgid "Permissions par défaut"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BibController.php:336
+#: ../../application/modules/admin/controllers/BibController.php:337
 #, fuzzy, php-format
 msgid "Permissions par défaut de la bibliothèque: %s"
 msgstr "Localizare a bibliotecii: %s"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:39
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:30
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:92
 msgid "Personnaliser le lien du titre"
 msgstr ""
 
@@ -12486,6 +13129,7 @@ msgstr "Împrumuturi în curs"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 #: ../../application/modules/admin/views/scripts/bib/localisationsmaj.phtml:178
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:94
 msgid "Photo"
 msgstr "Fotografie"
 
@@ -12509,6 +13153,7 @@ msgid "Pictogramme"
 msgstr "Pictogramă"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102
 msgid "Pictogrammes des genres"
 msgstr "Pictograme ale genurilor"
 
@@ -12527,6 +13172,7 @@ msgid "Pivot vers le bas"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
 msgid "Piwik"
 msgstr ""
 
@@ -12606,6 +13252,11 @@ msgstr "Plan asociat"
 msgid "Plan d'accès"
 msgstr "Plan de acces"
 
+#: ../../application/modules/admin/views/scripts/batch/index.phtml:4
+#, fuzzy
+msgid "Planification"
+msgstr "Publicare"
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:80
 #, fuzzy
 msgid "Planification des ouvertures"
@@ -12616,6 +13267,15 @@ msgstr "Modificarea fiÅŸei dvs."
 msgid "Planification des ouvertures multimédia"
 msgstr "Modificarea fiÅŸei dvs."
 
+#: ../../application/modules/admin/controllers/BatchController.php:68
+#, fuzzy, php-format
+msgid "Planifier la tâche \"%s\""
+msgstr "Modificare bibliotecă: %s"
+
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
+msgid "Plannifier la tâche"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Library.php:72
 #, fuzzy
 msgid "Plans de la bibliothèque"
@@ -12634,6 +13294,7 @@ msgstr "Plan al bibliotecii: %s"
 #: ../../application/modules/admin/controllers/BibController.php:249
 #: ../../application/modules/admin/controllers/BibController.php:247
 #: ../../application/modules/admin/controllers/BibController.php:196
+#: ../../application/modules/admin/controllers/BibController.php:197
 #, php-format
 msgid "Plans de la bibliothèque: %s"
 msgstr "Plan al bibliotecii: %s"
@@ -12674,6 +13335,7 @@ msgid "Position"
 msgstr "Paginaţie"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:50
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:53
 #, fuzzy
 msgid "Position de la pagination"
 msgstr "Rezultatul căutarii"
@@ -12684,6 +13346,7 @@ msgid "Position de la pagination en résultat de recherche"
 msgstr "Rezultatul căutarii"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:76
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:79
 #, fuzzy
 msgid "Position des filtres"
 msgstr "Gestionare biblioteci"
@@ -12691,6 +13354,7 @@ msgstr "Gestionare biblioteci"
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:8
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:11
 #: ../../application/modules/opac/controllers/AbonneController.php:871
+#: ../../application/modules/opac/controllers/AbonneController.php:870
 msgid "Poste"
 msgstr ""
 
@@ -12715,6 +13379,7 @@ msgid "Pour quel jour ?"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:779
+#: ../../application/modules/opac/controllers/AbonneController.php:778
 msgid "Pour quelle durée ?"
 msgstr ""
 
@@ -12747,6 +13412,7 @@ msgid "Pourquoi suggérez-vous ce document ?"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92
 msgid "Premier-Chapitre"
 msgstr ""
 
@@ -12777,6 +13443,7 @@ msgid "Prendre le champ cote en"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:96
 msgid "Prenom"
 msgstr ""
 
@@ -12817,6 +13484,7 @@ msgid "Profil \"%s\" ajouté"
 msgstr "Ultimele site-uri adăugate"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/DataProfile.php:30
+#: ../../application/modules/admin/controllers/ProfilController.php:434
 #, fuzzy, php-format
 msgid "Profil \"%s\" sauvegardé"
 msgstr "Nu a fost găsit nici un articol"
@@ -12837,6 +13505,7 @@ msgid "Profil courant dans la barre de navigation"
 msgstr "Afişează bara de navigaţie"
 
 #: ../../library/Class/Cosmogramme/Generator.php:360
+#: ../../library/Class/Cosmogramme/Generator.php:359
 #, php-format
 msgid "Profil de données %s (%d) non présent ou mal configuré"
 msgstr ""
@@ -12848,6 +13517,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100
 msgid "Profils"
 msgstr "Profiluri"
 
@@ -12895,6 +13565,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Loans.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:46
+#: ../../library/ZendAfi/View/Helper/Abonne/LoanAction.php:42
 msgid "Prolonger"
 msgstr "Prelungiţi"
 
@@ -12924,6 +13595,11 @@ msgstr "Propuneţi taguri pentru această instrucţiune"
 msgid "Proposer la sélection de bibliothèques"
 msgstr "Selecţie de biblioteci"
 
+#: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:97
+#, fuzzy
+msgid "Proposer la sélection de domaines"
+msgstr "Selecţie de site-uri"
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:41
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:43
 #, fuzzy
@@ -12956,6 +13632,7 @@ msgstr "Proprietăţile modulului"
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:87
 #: ../../library/ZendAfi/View/Helper/ProfileComposition.php:88
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:76
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:80
 #, fuzzy
 msgid "Propriétés"
 msgstr "Proprietăţile modulului"
@@ -13026,6 +13703,7 @@ msgid "Préférences"
 msgstr "Referinţă"
 
 #: ../../application/modules/admin/controllers/UsersController.php:47
+#: ../../application/modules/admin/controllers/UsersController.php:48
 #, fuzzy
 msgid "Préférences utilisateur sauvegardées"
 msgstr "Nu a fost găsit nici un articol"
@@ -13037,11 +13715,13 @@ msgid ""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:558
+#: ../../application/modules/opac/controllers/AuthController.php:567
 #, fuzzy
 msgid "Préinscription"
 msgstr "ÃŽnscriere"
 
 #: ../../application/modules/opac/controllers/AuthController.php:533
+#: ../../application/modules/opac/controllers/AuthController.php:541
 #, fuzzy, php-format
 msgid "Préinscription à %s"
 msgstr "ÃŽnscriere"
@@ -13082,6 +13762,7 @@ msgstr "ÃŽnscriere"
 #: ../../library/ZendAfi/Form/ContactForm.php:70
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:41
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:42
+#: ../../library/ZendAfi/Form/Register.php:210
 msgid "Prénom"
 msgstr "Prenume"
 
@@ -13095,6 +13776,11 @@ msgstr "Numele responsabilului"
 msgid "Préparation des données"
 msgstr "Moderare alerte"
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:43
+#, fuzzy
+msgid "Présences"
+msgstr "Referinţă"
+
 #: ../../library/ZendAfi/View/Helper/BibView.php:92
 #, fuzzy
 msgid "Présentation"
@@ -13173,6 +13859,7 @@ msgid "Prêts et réservations :"
 msgstr "Împrumuturi şi rezervări"
 
 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:37
+#: ../../application/modules/opac/views/scripts/abonne/prets.phtml:35
 #, fuzzy
 msgid "Prêts numériques en cours"
 msgstr "Împrumuturi în curs"
@@ -13273,15 +13960,23 @@ msgstr ""
 msgid "Quel secteur ?"
 msgstr ""
 
+#: ../../library/Class/WebService/SIGB/Nanook/Service.php:32
+#, fuzzy
+msgid "Quota atteint pour ce type de document."
+msgstr "Cum să obţii acest document"
+
 #: ../../application/modules/opac/controllers/AbonneController.php:675
+#: ../../application/modules/opac/controllers/AbonneController.php:674
 msgid "Quota déjà atteint ce jour, choisissez un autre jour."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:681
+#: ../../application/modules/opac/controllers/AbonneController.php:680
 msgid "Quota déjà atteint ce mois, choisissez un autre mois."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:678
+#: ../../application/modules/opac/controllers/AbonneController.php:677
 msgid "Quota déjà atteint cette semaine, choisissez une autre semaine."
 msgstr ""
 
@@ -13335,6 +14030,7 @@ msgid "Rapports"
 msgstr "Suport"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162
 #, fuzzy
 msgid "Rapports statistiques"
 msgstr "Statistici"
@@ -13366,6 +14062,8 @@ msgstr "Căutare"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
 #: ../../library/ZendAfi/View/Helper/Telephone/Tags/Toolbar.php:38
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
+#: ../../library/Class/User/SearchCriteria.php:81
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 msgid "Recherche"
 msgstr "Căutare"
 
@@ -13405,6 +14103,7 @@ msgid "Recherche élargie à"
 msgstr "Căutare după cuvintele conţinute"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:113
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:112
 #, fuzzy, php-format
 msgid "Recherche élargie à: %s"
 msgstr "Căutare după cuvintele conţinute"
@@ -13420,6 +14119,8 @@ msgstr "Căutare"
 #: ../../library/ZendAfi/View/Helper/Admin/SubscribeUsers.php:156
 #: ../../library/ZendAfi/View/Helper/TreeView.php:54
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:36
+#: ../../library/Class/User/SearchCriteria.php:207
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:81
 msgid "Rechercher"
 msgstr "Căutare"
 
@@ -13482,6 +14183,8 @@ msgstr "Adaugă o bibliotecă "
 
 #: ../../application/modules/admin/controllers/StatController.php:43
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:115
+#: ../../application/modules/admin/controllers/StatController.php:41
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114
 msgid "Recherches infructueuses"
 msgstr "Căutare fără rezultat"
 
@@ -13489,6 +14192,11 @@ msgstr "Căutare fără rezultat"
 msgid "Redmine n'est pas correctement configuré"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:15
+#, fuzzy
+msgid "Regénérer"
+msgstr "Criterii generale"
+
 #: ../../library/ZendAfi/Form/Admin/Annexe.php:48
 #: ../../library/ZendAfi/Form/Admin/Section.php:40
 #, fuzzy
@@ -13574,6 +14282,7 @@ msgstr "Întoarcere la căutarea iniţială"
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:44
 #: ../../library/ZendAfi/Form/Configuration/Widget/Articles.php:35
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:97
 #, fuzzy
 msgid "Rendre le titre de la boite cliquable"
 msgstr "Serviciu indisponibil"
@@ -13641,6 +14350,7 @@ msgid "Restreindre à"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:155
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:154
 msgid "Restreint à :"
 msgstr ""
 
@@ -13659,6 +14369,7 @@ msgid "Retirer la facette: %s"
 msgstr "Afişează mai multe instrucţiuni"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:139
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:138
 #, fuzzy, php-format
 msgid "Retirer le critère: %s"
 msgstr "Modificare bibliotecă: %s"
@@ -13785,6 +14496,7 @@ msgid "Retour à la liste des agendas"
 msgstr "Întoarcere la listă"
 
 #: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:10
+#: ../../application/modules/admin/views/scripts/ouvertures/index.phtml:11
 #, fuzzy
 msgid "Retour à la liste des bibliothèques"
 msgstr "Gestionare biblioteci"
@@ -13809,6 +14521,7 @@ msgid "Rideau horizontal"
 msgstr "Chioşc de instrucţiuni, carusel orizontal"
 
 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:97
 msgid "Role"
 msgstr ""
 
@@ -13850,11 +14563,13 @@ msgid "Récupération du mot de passe"
 msgstr "Parolă nouă"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
 #, fuzzy
 msgid "Rédacteur bibliothèque"
 msgstr "În această bibliotecă."
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239
 #, fuzzy
 msgid "Rédacteur portail"
 msgstr "Toată actualitatea portalului"
@@ -13874,6 +14589,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:412
 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:407
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:376
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:389
 msgid "Référencement"
 msgstr "Referinţă"
 
@@ -13882,6 +14598,7 @@ msgid "Régénère le sitemap XML"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:21
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:19
 msgid "Réinitialiser les vignettes non reconnues"
 msgstr ""
 
@@ -14130,6 +14847,7 @@ msgstr "ÃŽnregistrare"
 #: ../../library/ZendAfi/View/Helper/Accueil/Newsletters.php:59
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:48
 #: ../../library/ZendAfi/View/Helper/TagSessionActivityInscription.php:53
+#: ../../library/Class/SessionActivity.php:513
 msgid "S'inscrire"
 msgstr ""
 
@@ -14145,6 +14863,7 @@ msgstr "Modificare bibliotecă: %s"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1178
 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34
+#: ../../application/modules/opac/controllers/AbonneController.php:1177
 #, fuzzy
 msgid "S'inscrire à une activité"
 msgstr "ÃŽnscriere la portal"
@@ -14154,6 +14873,7 @@ msgid "SIGB"
 msgstr ""
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:57
+#: ../../application/modules/admin/views/scripts/index/index.phtml:85
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
@@ -14219,6 +14939,7 @@ msgstr "Căsuţă de căutare"
 
 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:12
 #: ../../application/modules/opac/controllers/AbonneController.php:870
+#: ../../application/modules/opac/controllers/AbonneController.php:869
 #, fuzzy
 msgid "Secteur"
 msgstr "Conectare "
@@ -14232,6 +14953,7 @@ msgid "Section"
 msgstr "Secţie"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171
 #, fuzzy, php-format
 msgid "Section: %s"
 msgstr "Secţii"
@@ -14341,6 +15063,7 @@ msgstr "Serviciu indisponibil"
 
 #: ../../application/modules/admin/views/scripts/activity/index.phtml:22
 #: ../../library/Class/CustomField/Model.php:53
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:109
 #, fuzzy
 msgid "Session"
 msgstr "Versiune"
@@ -14350,11 +15073,26 @@ msgstr "Versiune"
 msgid "Session \"%s\" sauvegardée"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:30
+#, php-format
+msgid "Session \"%s\" sauvegardée, son article lié a été mis à jour."
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
 #, fuzzy, php-format
 msgid "Session \"%s\" supprimée"
 msgstr "Rezervări în curs"
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/SessionActivity.php:32
+#, php-format
+msgid "Session \"%s\" supprimée, son artilcle lié a été supprimé."
+msgstr ""
+
+#: ../../library/ZendAfi/Form/Admin/SessionActivity.php:90
+#, fuzzy
+msgid "Session annulée"
+msgstr "Lucrarea nu a fost găsită"
+
 #: ../../application/modules/opac/controllers/AbonneController.php:92
 #, fuzzy
 msgid "Session non trouvée"
@@ -14439,6 +15177,7 @@ msgid "Site \"%s\" supprimé"
 msgstr "Rezervări în curs"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:51
+#: ../../application/modules/admin/views/scripts/index/index.phtml:79
 #, fuzzy
 msgid "Site communautaire"
 msgstr "Consultare"
@@ -14474,11 +15213,13 @@ msgstr "Titlu : %s"
 
 #: ../../library/ZendAfi/Form/Admin/Location.php:34
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:549
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:548
 #, fuzzy
 msgid "Site web"
 msgstr "Site"
 
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:90
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:89
 #, fuzzy, php-format
 msgid "Site: %s"
 msgstr "Titlu : %s"
@@ -14509,6 +15250,7 @@ msgstr "Sitotecă"
 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:83
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
 msgid "Sitothèque"
 msgstr "Sitotecă"
 
@@ -14522,6 +15264,7 @@ msgid "Situer cet exemplaire dans la bibliothèque"
 msgstr "Situează acest exemplar în bibliotecă"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84
 msgid "SoundCloud"
 msgstr ""
 
@@ -14571,11 +15314,17 @@ msgstr "Titlu nou"
 msgid "Sous-zones d'auteurs<br>(séparées par des \";\")"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:37
+msgid "Stagiaires"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112
 msgid "Statistiques"
 msgstr "Statistici"
 
 #: ../../application/modules/admin/controllers/StatController.php:52
+#: ../../application/modules/admin/controllers/StatController.php:50
 #, fuzzy
 msgid "Statistiques des réservations de notices"
 msgstr "Rezervări de instrucţiuni"
@@ -14594,6 +15343,8 @@ msgstr "Statut"
 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:129
 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:144
 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:397
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:38
+#: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:63
 msgid "Statut"
 msgstr "Statut"
 
@@ -14624,6 +15375,7 @@ msgid "Style"
 msgstr ""
 
 #: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:71
+#: ../../library/ZendAfi/Form/Configuration/Widget/Libraries.php:74
 #, fuzzy
 msgid "Style d'affichage des filtres"
 msgstr "Fişă bibliotecă:     "
@@ -14661,6 +15413,7 @@ msgid "Suggestion d'achat"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:944
+#: ../../application/modules/opac/controllers/AbonneController.php:943
 #, fuzzy
 msgid "Suggestion d'achat enregistrée"
 msgstr "Rezervarea dvs. a fost înregistrată."
@@ -14744,6 +15497,7 @@ msgid "Sujets"
 msgstr "Subiecte"
 
 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:225
+#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227
 #, fuzzy
 msgid "Super administrateur"
 msgstr "Utilizatori"
@@ -14755,6 +15509,7 @@ msgstr "Suport"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:50
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:139
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:137
 msgid "Suppr."
 msgstr "Åžtergere"
 
@@ -14810,6 +15565,9 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:509
 #: ../../application/modules/admin/views/scripts/widget/versions.phtml:23
 #: ../../library/ZendAfi/View/Helper/Admin/RenderVersionForm.php:165
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:26
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:37
+#: ../../library/ZendAfi/Controller/Plugin/Manager/ExternalAgenda.php:35
 msgid "Supprimer"
 msgstr "Åžtergere"
 
@@ -14824,12 +15582,14 @@ msgid "Supprimer %s de la sélection d'articles"
 msgstr "Vedeţi fluxurile RSS selectate"
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:156
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:160
 #, fuzzy
 msgid "Supprimer cette boite"
 msgstr "Ștergere categorie"
 
 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:46
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:173
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:171
 msgid "Supprimer cette réservation"
 msgstr "Ștergeţi această rezervare"
 
@@ -14849,6 +15609,7 @@ msgid "Supprimer l'activité"
 msgstr "Ștergere categorie"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:656
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:655
 #, fuzzy
 msgid "Supprimer l'album"
 msgstr "Åžtergere"
@@ -14880,6 +15641,7 @@ msgid "Supprimer la bibliothèque: %s"
 msgstr "Modificare bibliotecă: %s"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:699
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:698
 #, fuzzy
 msgid "Supprimer la catégorie"
 msgstr "Ștergere categorie"
@@ -14895,6 +15657,7 @@ msgid "Supprimer la réservation du document %s"
 msgstr "Cerere de rezervare a unui document"
 
 #: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:47
+#: ../../application/modules/admin/views/scripts/activity/_session_actions.phtml:61
 #, fuzzy
 msgid "Supprimer la session"
 msgstr "Ștergeţi această rezervare"
@@ -14951,10 +15714,12 @@ msgstr "Următoarele întâlniri"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:221
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:225
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:256
 msgid "Synchronisation du CSS avec GIT"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137
 msgid "Système"
 msgstr "Sistem"
 
@@ -15033,6 +15798,7 @@ msgid "Sélectionnez un lieu"
 msgstr "Selecţie de site-uri"
 
 #: ../../application/modules/admin/controllers/ModulesController.php:455
+#: ../../application/modules/admin/controllers/ModulesController.php:454
 #, fuzzy
 msgid "Sélectionnez un panier ou un domaine"
 msgstr "Acest meniu nu conţine date"
@@ -15052,6 +15818,7 @@ msgid "Tableau"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/StatController.php:64
+#: ../../application/modules/admin/controllers/StatController.php:62
 msgid "Tableau de bord PIWIK"
 msgstr ""
 
@@ -15151,14 +15918,17 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:111
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:113
 msgid "Territoire"
 msgstr "Teritoriu"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122
 msgid "Territoires"
 msgstr "Teritorii"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:268
+#: ../../application/modules/admin/controllers/SystemeController.php:274
 msgid "Test de l'envoi des mails"
 msgstr ""
 
@@ -15173,6 +15943,7 @@ msgid "Test des Web Services"
 msgstr "Test servicii web"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144
 msgid "Test des web-services"
 msgstr "Test servicii web"
 
@@ -15182,6 +15953,7 @@ msgid "Test du domaine: %s"
 msgstr "CoÅŸurile dvs. de documente"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147
 msgid "Test envoi mails"
 msgstr ""
 
@@ -15457,6 +16229,9 @@ msgstr "Criterii de selecţie"
 #: ../../library/ZendAfi/Form/Configuration/Menu/SearchResult.php:30
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:88
 #: ../../library/ZendAfi/View/Helper/RecordTabs.php:40
+#: ../../application/modules/admin/views/scripts/session-activity/linked-article.phtml:32
+#: ../../library/Class/TableDescription/PNBItems.php:27
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:132
 msgid "Titre"
 msgstr "Titlu"
 
@@ -15568,6 +16343,7 @@ msgstr "Titluri"
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
+#: ../../library/Class/User/SearchCriteria.php:157
 msgid "Tous"
 msgstr "Toţi"
 
@@ -15599,6 +16375,11 @@ msgstr "Tipuri de documente"
 msgid "Tous les jeudis"
 msgstr ""
 
+#: ../../library/Class/Repeat/WeekDays.php:83
+#, fuzzy
+msgid "Tous les jours"
+msgstr "Alegeţi media"
+
 #: ../../library/Class/Ouverture.php:39
 msgid "Tous les lundis"
 msgstr ""
@@ -15633,6 +16414,7 @@ msgid "Tous status"
 msgstr "Alegeţi media"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86
 msgid "Tout Apprendre"
 msgstr ""
 
@@ -15655,6 +16437,7 @@ msgid "Tout décocher"
 msgstr "Deselectează tot"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:110
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:89
 msgid "Tout effacer"
 msgstr "Șterge tot"
 
@@ -15681,6 +16464,8 @@ msgstr "Toată actualitatea portalului"
 #: ../../library/Class/User/SearchCriteria.php:134
 #: ../../library/Class/Bib.php:484
 #: ../../library/ZendAfi/View/Helper/ComboLibraries.php:37
+#: ../../library/Class/User/SearchCriteria.php:137
+#: ../../library/Class/Bib.php:474
 msgid "Toutes"
 msgstr "Toate"
 
@@ -15690,9 +16475,14 @@ msgid "Toutes les collections"
 msgstr "Adaugă o colecţie"
 
 #: ../../application/modules/admin/views/scripts/cms/delete.phtml:19
+#: ../../application/modules/admin/views/scripts/cms/delete.phtml:30
 msgid "Toutes les données de l'article seront effacées !"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/bib/delete.phtml:21
+msgid "Toutes les données de la bibliothèque seront effacées !"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:53
 #, fuzzy
 msgid "Toutes les facettes"
@@ -15703,6 +16493,7 @@ msgid "Traduction"
 msgstr "Traducere"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103
 msgid "Traductions"
 msgstr "Traduceri"
 
@@ -15721,6 +16512,11 @@ msgstr "Ștergere categorie"
 msgid "Traitement de la page %d (nombre d'enregistrements: %d)"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/ArteVOD.php:63
+#, fuzzy, php-format
+msgid "Traitement de la page %s"
+msgstr "Configurare"
+
 #: ../../library/Class/Systeme/Report/Cosmogramme.php:50
 #, fuzzy
 msgid "Traitement en cours depuis le"
@@ -15882,6 +16678,7 @@ msgstr "Tip de document : %s "
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:121
 #: ../../library/ZendAfi/View/Helper/IconeSupport.php:52
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:99
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:98
 #, fuzzy, php-format
 msgid "Type de document: %s"
 msgstr "Tip de document : %s "
@@ -15960,6 +16757,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171
 #: ../../library/ZendAfi/Form/Configuration/Domain.php:75
 #: ../../library/ZendAfi/Form/Configuration/Profile.php:324
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:170
+#: ../../library/ZendAfi/Form/Configuration/Profile.php:323
 msgid "Types de documents"
 msgstr "Tipuri de documente"
 
@@ -15975,19 +16774,32 @@ msgid "Types de tags"
 msgstr "Tipuri de documente"
 
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
 msgid "Tâche ajoutée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/BatchController.php:32
+#: ../../application/modules/admin/controllers/BatchController.php:97
 msgid "Tâche executée"
 msgstr ""
 
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:31
+#, fuzzy
+msgid "Tâche sauvegardée"
+msgstr "Rezervări în curs"
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:32
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:33
 #, fuzzy
 msgid "Tâche supprimée"
 msgstr "Rezervări în curs"
 
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:28
+msgid "Tâche système non désactivable"
+msgstr ""
+
 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:35
+#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/Batch.php:37
 msgid "Tâches"
 msgstr ""
 
@@ -16071,6 +16883,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AbonneController.php:470
 #: ../../application/modules/opac/controllers/AbonneController.php:471
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98
 msgid "Téléphone"
 msgstr "Telefon"
 
@@ -16093,6 +16906,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:158
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:40
 msgid "URL"
 msgstr ""
 
@@ -16118,10 +16932,12 @@ msgid "URL de la page"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:147
+#: ../../application/modules/admin/controllers/HarvestController.php:125
 msgid "URL de la page Jamendo"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/HarvestController.php:204
+#: ../../application/modules/admin/controllers/HarvestController.php:182
 msgid "URL de la piste SoundCloud"
 msgstr ""
 
@@ -16143,6 +16959,7 @@ msgid "URL du profil"
 msgstr "ÅŸi profil"
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:546
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:545
 msgid "URL du site web"
 msgstr ""
 
@@ -16196,6 +17013,7 @@ msgid "Un courriel a été envoyé."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:545
+#: ../../application/modules/opac/controllers/AuthController.php:553
 #, php-format
 msgid ""
 "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ."
@@ -16224,17 +17042,20 @@ msgid "Un modèle a déjà le même nom : %s"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:393
+#: ../../application/modules/opac/controllers/AuthController.php:396
 msgid ""
 "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le "
 "compte qui utilise cet email."
 msgstr ""
 
 #: ../../library/Class/ExternalAgenda.php:42
+#: ../../library/Class/ExternalAgenda.php:56
 #, fuzzy
 msgid "Une catégorie est requise"
 msgstr "specificaţia este obligatorie."
 
 #: ../../application/modules/opac/controllers/AuthController.php:421
+#: ../../application/modules/opac/controllers/AuthController.php:424
 msgid ""
 "Une demande de confirmation d'inscription vous a été envoyée à l'adresse "
 "mail renseignée."
@@ -16242,6 +17063,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/WidgetController.php:104
 #: ../../application/modules/admin/controllers/WidgetController.php:135
+#: ../../application/modules/admin/controllers/WidgetController.php:161
 msgid "Une erreur c'est produite, le menu n'a pas pu être supprimé"
 msgstr ""
 
@@ -16268,12 +17090,14 @@ msgid "Une erreur est survenue"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AuthController.php:417
+#: ../../application/modules/opac/controllers/AuthController.php:420
 msgid ""
 "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez "
 "réessayer. Si le problème persiste, veuillez contacter votre médiathèque."
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1155
+#: ../../application/modules/opac/controllers/AbonneController.php:1154
 #, php-format
 msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s"
 msgstr ""
@@ -16287,7 +17111,8 @@ msgid "Une extension PHP a stoppé le téléchargement du fichier"
 msgstr ""
 
 #: ../../library/Class/Profil.php:1368 ../../library/Class/Profil.php:1372
-#: ../../library/Class/Profil.php:1376
+#: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369
+#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377
 msgid "Une marge interne de division ne peut pas excéder 20 pixels."
 msgstr ""
 
@@ -16409,6 +17234,7 @@ msgstr "Utilizatori"
 
 #: ../../library/Class/Systeme/Report.php:41
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124
 msgid "Utilisateurs"
 msgstr "Utilizatori"
 
@@ -16418,6 +17244,7 @@ msgid "Utilisation"
 msgstr "Utilizator"
 
 #: ../../application/modules/admin/views/scripts/album/dilicom.phtml:10
+#: ../../application/modules/admin/views/scripts/album/dilicom.phtml:3
 msgid "Utilisation des ressources PNB Dilicom"
 msgstr ""
 
@@ -16515,6 +17342,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/Button/Submit.php:26
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:49
 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:51
+#: ../../library/ZendAfi/View/Helper/Button/Submit.php:56
 msgid "Valider"
 msgstr "Validare"
 
@@ -16548,12 +17376,14 @@ msgid "Variable"
 msgstr "Variabilă"
 
 #: ../../application/modules/admin/controllers/IndexController.php:93
+#: ../../application/modules/admin/controllers/IndexController.php:102
 #, fuzzy, php-format
 msgid "Variable %s sauvegardée"
 msgstr "Nu a fost găsit nici un articol"
 
 #: ../../library/Class/Systeme/Report.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:143
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142
 msgid "Variables"
 msgstr "Variabile"
 
@@ -16642,6 +17472,7 @@ msgid "Veuillez choisir une notice"
 msgstr "Trebuie să introduceţi un titlu         "
 
 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31
+#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32
 #, fuzzy
 msgid "Veuillez patienter ..."
 msgstr "Vă rugăm să aşteptaţi : citire în curs..."
@@ -16657,6 +17488,7 @@ msgid "Veuillez patienter : traitement en cours"
 msgstr "Vă rugăm să aşteptaţi: procesare în curs"
 
 #: ../../application/modules/admin/controllers/StatController.php:66
+#: ../../application/modules/admin/controllers/StatController.php:64
 msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr ""
 
@@ -16694,17 +17526,20 @@ msgid "Vider"
 msgstr "Validare"
 
 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16
+#: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14
 msgid "Vider la totalité du cache"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:80
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:129
 #, fuzzy
 msgid "Vider le cache"
 msgstr "Vedeţi planul"
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:84
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:88
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:133
 msgid "Vider le cache de Bokeh"
 msgstr ""
 
@@ -16772,6 +17607,8 @@ msgstr "Etichetă"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:109
 #: ../../library/ZendAfi/Form/PreRegistration/Nanook.php:89
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:110
+#: ../../application/modules/admin/controllers/LieuController.php:34
+#: ../../library/Class/Systeme/ModulesAccueil/Library.php:112
 msgid "Ville"
 msgstr "OraÅŸ"
 
@@ -16780,6 +17617,7 @@ msgid "Visionner le film dans son intégralité"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648
 #, fuzzy
 msgid "Visualisation de l\\album"
 msgstr "Vizualizare instrucţiuni"
@@ -16803,6 +17641,7 @@ msgid "Vitesse de défilement"
 msgstr "Tip de document"
 
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:80
+#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79
 msgid "Vodeclic"
 msgstr ""
 
@@ -16813,6 +17652,11 @@ msgstr ""
 msgid "Voir"
 msgstr "Vedeţi"
 
+#: ../../library/Class/TableDescription/PNBItems.php:39
+#, fuzzy
+msgid "Voir l'album"
+msgstr "Modificare bibliotecă: %s"
+
 #: ../../library/ZendAfi/View/Helper/TagJamendoPlayer.php:32
 #, php-format
 msgid "Voir l'album \"%s\" sur Jamendo"
@@ -16875,11 +17719,13 @@ msgstr "Vedeţi fluxurile RSS selectate"
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:21
 #: ../../application/modules/opac/views/scripts/panier/index.phtml:23
 #: ../../application/modules/opac/views/scripts/panier/domain.phtml:19
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:20
 #, fuzzy
 msgid "Voir les paniers des professionnels"
 msgstr "CoÅŸurile dvs. de documente"
 
 #: ../../application/modules/opac/views/scripts/panier/pro.phtml:20
+#: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:15
 #, fuzzy
 msgid "Voir les paniers rangés dans des domaines"
 msgstr "CoÅŸurile dvs. de documente"
@@ -17001,6 +17847,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:77
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:81
 #, fuzzy
 msgid "Votre adresse"
 msgstr "Adresa dvs. de e-mail :"
@@ -17049,6 +17896,7 @@ msgid "Votre avis"
 msgstr "Părerea dvs."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1078
+#: ../../application/modules/opac/controllers/AbonneController.php:1077
 #, fuzzy, php-format
 msgid "Votre carte a été retirée à %s"
 msgstr "Rezervarea dvs. a fost înregistrată."
@@ -17084,6 +17932,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/AuthController.php:263
 #: ../../application/modules/opac/controllers/AuthController.php:266
 #: ../../application/modules/opac/controllers/AuthController.php:335
+#: ../../application/modules/opac/controllers/AuthController.php:338
 msgid "Votre demande d'inscription"
 msgstr "Solicitarea dvs. de înscriere  "
 
@@ -17107,6 +17956,7 @@ msgid "Votre identifiant: "
 msgstr "Numele dvs. de utilizator: %s"
 
 #: ../../library/ZendAfi/Form/PreRegistration/Koha.php:72
+#: ../../library/ZendAfi/Form/PreRegistration/Koha.php:76
 #, fuzzy
 msgid "Votre identité"
 msgstr "Vă rugăm să vă identificaţi"
@@ -17144,6 +17994,7 @@ msgid "Votre mot de passe: "
 msgstr "Parola dvs. :%s"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:55
+#: ../../library/ZendAfi/View/Helper/Abonne/LoansExtension.php:54
 msgid "Votre prêt a bien été prolongé."
 msgstr ""
 
@@ -17153,6 +18004,7 @@ msgid "Votre réservation"
 msgstr "Interzicerea rezervărilor"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:437
+#: ../../application/modules/opac/controllers/AbonneController.php:436
 #, fuzzy, php-format
 msgid "Votre réservation du document %s a bien été supprimée."
 msgstr "Rezervarea dvs. a fost înregistrată."
@@ -17271,15 +18123,18 @@ msgid "Vous avez %d réservations en cours"
 msgstr "Aveţi %d  rezervări în curs"
 
 #: ../../application/modules/opac/controllers/AuthController.php:471
+#: ../../application/modules/opac/controllers/AuthController.php:474
 msgid "Vous avez bien été abonné à la newsletter: "
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1144
+#: ../../application/modules/opac/controllers/AbonneController.php:1143
 #, php-format
 msgid "Vous avez déjà ajouté la carte de \"%s\""
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:751
+#: ../../application/modules/opac/controllers/AbonneController.php:750
 #, fuzzy
 msgid "Vous avez déjà une réservation dans ce créneau horaire"
 msgstr "Aveţi %d  rezervări în curs"
@@ -17363,11 +18218,13 @@ msgid "Vous devez confirmer le mot de passe"
 msgstr "Trebuie să confirmaţi parola"
 
 #: ../../library/Class/CodifThesaurus.php:469
+#: ../../library/Class/CodifThesaurus.php:503
 #, fuzzy
 msgid "Vous devez définir au moins une règle"
 msgstr "Trebuie să introduceţi o parolă "
 
 #: ../../library/Class/CodifThesaurus.php:465
+#: ../../library/Class/CodifThesaurus.php:499
 #, fuzzy
 msgid "Vous devez définir le libellé"
 msgstr "Trebuie să introduceţi un titlu         "
@@ -17412,9 +18269,15 @@ msgid "Vous devez saisir un numéro de téléphone"
 msgstr "Trebuie să introduceţi o parolă "
 
 #: ../../library/Class/AvisNotice.php:382
+#: ../../library/Class/AvisNotice.php:386
 msgid "Vous devez saisir un titre"
 msgstr "Trebuie să introduceţi un titlu         "
 
+#: ../../application/modules/admin/controllers/AlbumController.php:185
+#, fuzzy
+msgid "Vous devez spécifier une catégorie à exporter"
+msgstr "Trebuie să introduceţi un titlu         "
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:54
 #, fuzzy
 msgid "Vous devez sélectionner une bibliothèque"
@@ -17663,6 +18526,7 @@ msgid "Vous n'avez saisi aucune clef."
 msgstr "Nu aţi introdus nici o cheie."
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1067
+#: ../../application/modules/opac/controllers/AbonneController.php:1066
 #, php-format
 msgid "Vous n'utilisez plus la carte de %s"
 msgstr ""
@@ -17675,6 +18539,7 @@ msgid "Vous n'êtes abonné à aucune lettre d'information"
 msgstr "Nu sunteţi abonat la nici un buletin informativ    "
 
 #: ../../application/modules/opac/controllers/AbonneController.php:672
+#: ../../application/modules/opac/controllers/AbonneController.php:671
 #, fuzzy
 msgid "Vous n'êtes pas autorisé à effectuer une réservation"
 msgstr "Nu sunteţi abonat la nici un buletin informativ    "
@@ -17685,6 +18550,7 @@ msgid "Vous n'êtes plus inscrit à la session du %s de l'activité %s"
 msgstr "la buletinul informativ"
 
 #: ../../application/modules/opac/controllers/AbonneController.php:1138
+#: ../../application/modules/opac/controllers/AbonneController.php:1137
 msgid "Vous ne pouvez pas ajouter votre propre carte"
 msgstr ""
 
@@ -17758,6 +18624,7 @@ msgid "Web"
 msgstr "Web"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
+#: ../../application/modules/admin/views/scripts/index/index.phtml:81
 msgid "Wiki Bokeh"
 msgstr ""
 
@@ -17771,6 +18638,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:237
 #: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:241
+#: ../../library/ZendAfi/View/Helper/Admin/FrontNav.php:272
 msgid "ZF Debug"
 msgstr ""
 
@@ -17927,6 +18795,10 @@ msgstr "nici o"
 msgid "avec une vignette"
 msgstr "Culoarea adreselor"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:25
+msgid "avi(s)"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:38
 #: ../../library/Class/Calendar.php:38 ../../library/Class/Calendar.php:39
 #: ../../library/ZendAfi/View/Helper/DatePicker.php:43
@@ -17975,12 +18847,14 @@ msgstr "Comentariu"
 
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:53
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:70
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:69
 #, fuzzy
 msgid "commence"
 msgstr "începe cu"
 
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:35
 #: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:42
+#: ../../library/ZendAfi/View/Helper/Admin/TagListeSuggestion.php:151
 msgid "commence par"
 msgstr "începe cu"
 
@@ -18110,6 +18984,7 @@ msgid "dim."
 msgstr "dum."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:98
+#: ../../library/Class/Repeat/WeekDays.php:37
 msgid "dimanche"
 msgstr ""
 
@@ -18230,6 +19105,7 @@ msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:239
 #: ../../library/ZendAfi/View/Helper/Accueil/Base.php:248
+#: ../../library/ZendAfi/View/Helper/Accueil/Base.php:249
 #, php-format
 msgid "flux RSS de la boite %s"
 msgstr "flux RSS al casetei %s"
@@ -18274,6 +19150,7 @@ msgid "ignorer ce champ"
 msgstr "Tip de doc."
 
 #: ../../application/modules/admin/controllers/SystemeController.php:212
+#: ../../application/modules/admin/controllers/SystemeController.php:218
 msgid "import ok"
 msgstr ""
 
@@ -18307,6 +19184,7 @@ msgid "jeu."
 msgstr "joi."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:95
+#: ../../library/Class/Repeat/WeekDays.php:34
 msgid "jeudi"
 msgstr ""
 
@@ -18387,6 +19265,7 @@ msgstr "%s"
 #: ../../application/modules/admin/controllers/BibController.php:292
 #: ../../application/modules/admin/controllers/BibController.php:75
 #: ../../application/modules/admin/controllers/BibController.php:356
+#: ../../application/modules/admin/controllers/BibController.php:357
 msgid "le libellé est obligatoire."
 msgstr "specificaţia este obligatorie."
 
@@ -18482,6 +19361,7 @@ msgid "lun."
 msgstr "lun."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:92
+#: ../../library/Class/Repeat/WeekDays.php:31
 msgid "lundi"
 msgstr ""
 
@@ -18503,6 +19383,7 @@ msgid "mar."
 msgstr "mar."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:93
+#: ../../library/Class/Repeat/WeekDays.php:32
 msgid "mardi"
 msgstr ""
 
@@ -18528,6 +19409,7 @@ msgid "mer."
 msgstr "mie."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:94
+#: ../../library/Class/Repeat/WeekDays.php:33
 #, fuzzy
 msgid "mercredi"
 msgstr "Alegeţi media"
@@ -18536,6 +19418,11 @@ msgstr "Alegeţi media"
 msgid "minimum"
 msgstr ""
 
+#: ../../library/Class/SessionActivity.php:483
+#, php-format
+msgid "minimum : %s, maximum : %s"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:95
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:46
 msgid "mode liste simple"
@@ -18551,8 +19438,14 @@ msgstr ""
 msgid "mode résumé d'article"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:11
+#, fuzzy
+msgid "modifier"
+msgstr "Modificare"
+
 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:129
 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:83
+#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:82
 #, fuzzy
 msgid "mois"
 msgstr "1 lună"
@@ -18665,6 +19558,7 @@ msgstr "noiembrie"
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:429
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:133
 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:457
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:131
 msgid "n°"
 msgstr "nr."
 
@@ -18726,6 +19620,11 @@ msgstr "sau"
 msgid "page "
 msgstr "Punere în pagină"
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:34
+#, fuzzy
+msgid "panier(s)"
+msgstr "CoÅŸ :"
+
 #: ../../library/Class/Systeme/ModulesAccueil/News.php:60
 #: ../../library/ZendAfi/Form/Configuration/Widget/Calendar.php:76
 #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:49
@@ -18820,6 +19719,7 @@ msgid "pas de transfert pour : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358
+#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378
 #, fuzzy
 msgid "pictogramme pour "
 msgstr "pentru %s"
@@ -18905,6 +19805,7 @@ msgid "sam."
 msgstr "sâm."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:97
+#: ../../library/Class/Repeat/WeekDays.php:36
 msgid "samedi"
 msgstr ""
 
@@ -18933,6 +19834,7 @@ msgid "septembre"
 msgstr "septembrie"
 
 #: ../../application/modules/admin/controllers/SystemeController.php:145
+#: ../../application/modules/admin/controllers/SystemeController.php:151
 #, fuzzy
 msgid "site généré"
 msgstr "Criterii generale"
@@ -18950,6 +19852,11 @@ msgstr "sursă"
 msgid "sous-menu"
 msgstr ""
 
+#: ../../application/modules/admin/views/scripts/users/index.phtml:18
+#, fuzzy
+msgid "supprimer"
+msgstr "Åžtergere"
+
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125
 #, fuzzy
 msgid "sélectionner un autre projet"
@@ -19022,6 +19929,7 @@ msgid "ven."
 msgstr "vin."
 
 #: ../../library/ZendAfi/Form/Admin/News.php:96
+#: ../../library/Class/Repeat/WeekDays.php:35
 msgid "vendredi"
 msgstr ""
 
@@ -19056,6 +19964,7 @@ msgid "{contenu}"
 msgstr "Nici un conţinut"
 
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:48
 #, fuzzy
 msgid "» Modifier «"
 msgstr "Modificare"
@@ -19076,6 +19985,7 @@ msgid "À partir de"
 msgstr ""
 
 #: ../../application/modules/opac/controllers/AbonneController.php:777
+#: ../../application/modules/opac/controllers/AbonneController.php:776
 msgid "À partir de quelle heure ?"
 msgstr ""
 
@@ -19151,12 +20061,15 @@ msgstr "Gestionare biblioteci"
 
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:48
 #: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:138
+#: ../../library/ZendAfi/View/Helper/Abonne/ReservationsTable.php:136
 msgid "État"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/ModulesController.php:492
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:73
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:88
+#: ../../application/modules/admin/controllers/ModulesController.php:491
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:92
 msgid "Étendre le paramétrage"
 msgstr ""
 
@@ -19209,6 +20122,7 @@ msgstr "Sunteţi sigur(ă) că vreţi să suprimaţi acest strat?"
 
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:128
 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:165
+#: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:169
 #, fuzzy
 msgid "Êtes-vous sur de vouloir supprimer cette boîte ?"
 msgstr "Sunteţi sigur(ă) că vreţi să suprimaţi acest strat?"
@@ -19477,10 +20391,6 @@ msgstr ""
 #~ msgid "Ajouter un modèle"
 #~ msgstr "Adaugă un meniu"
 
-#, fuzzy
-#~ msgid "Ajouter une boîte"
-#~ msgstr "Adaugă o categorie"
-
 #, fuzzy
 #~ msgid "Ajouter une formation"
 #~ msgstr "Adaugă o localizare"
@@ -19605,10 +20515,6 @@ msgstr ""
 #~ msgid "Commentaires :"
 #~ msgstr "Comentarii :"
 
-#, fuzzy
-#~ msgid "Configuration de la page: "
-#~ msgstr "Configurare"
-
 #, fuzzy
 #~ msgid "Configurer le plan d'accès"
 #~ msgstr "Constituire a planului de acces"
@@ -19840,14 +20746,6 @@ msgstr ""
 #~ msgid "Le mot de passe est obligatoire."
 #~ msgstr "Parola este obligatorie."
 
-#, fuzzy
-#~ msgid "Le panier "
-#~ msgstr "CoÅŸurile dvs."
-
-#, fuzzy
-#~ msgid "Les %s sélectionnés ont bien été sauvegardés"
-#~ msgstr "Nu a fost găsit nici un articol"
-
 #, fuzzy
 #~ msgid "Libellé *"
 #~ msgstr "Specificaţie"
@@ -20390,10 +21288,6 @@ msgstr ""
 #~ msgid "documents trouvés"
 #~ msgstr "instrucţiuni găsite"
 
-#, fuzzy
-#~ msgid "en cours"
-#~ msgstr "Împrumuturi în curs"
-
 #~ msgid "fermer cette fenêtre"
 #~ msgstr "închideţi această fereastră"
 
diff --git a/public/admin/css/front_nav.css b/public/admin/css/front_nav.css
new file mode 100644
index 0000000000000000000000000000000000000000..ed4ae78ac438ed741465b234e4269a381e2ab055
--- /dev/null
+++ b/public/admin/css/front_nav.css
@@ -0,0 +1,234 @@
+
+.menu_admin_front * {
+    box-sizing: content-box;
+    font-family: arial, sans-serif;
+}
+
+.menu_admin_front .form select,
+.menu_admin_front > div {
+    background-color: var(--widget-background);
+}
+
+.menu_admin_front .admin_menu_title,
+.menu_admin_front .form select,
+.menu_admin_front label {
+    color: var(--main-text);
+}
+
+.menu_admin_front a {
+    color: var(--anchor);
+}
+
+.menu_admin_front .form select {
+    border: 1px solid var(--border-highlight);
+}
+
+.menu_admin_front > div {
+    box-shadow: 1px 1px 5px var(--widget-shadow);
+}
+
+.menu_admin_front {
+    font-size: 12px;
+    position: fixed;
+    top: 0;
+    left: 0;
+    z-index: 102;
+}
+
+.menu_admin_front > button,
+.menu_admin_front > div {
+    transition: all 0.4s;
+}
+
+.menu_admin_front > div {
+    overflow: hidden;
+    width: 300px;
+}
+
+.menu_admin_front.hidden > div {
+    margin-left: -300px;
+    position: absolute;
+}
+
+.menu_admin_front > button {
+    margin: 0;
+    white-space: nowrap;
+}
+
+.menu_admin_front:not(.hidden) > button > img {
+    transform: rotate(45deg);
+}
+
+.menu_admin_front .amdin_menu_title,
+.menu_admin_front form tr,
+.menu_admin_front a {
+    display: block;
+    line-height: 2em;
+}
+
+.menu_admin_front a img {
+    float: right;
+    vertical-align: middle;
+    padding-right: 1.5em;
+}
+
+.menu_admin_front ul,
+.menu_admin_front li {
+    margin: 0 0 0 0.2em;
+    padding: 0 0 0 0.2em;
+    list-style: none;
+}
+
+.menu_admin_front [class*="deactivate"] {
+    display: none;
+}
+
+.menu_admin_front fieldset {
+    padding: 0;
+    margin: 0;
+}
+
+.menu_admin_front .form td {
+    display: inline-block;
+    text-align: left !important;
+}
+
+.menu_admin_front form + .boutons {
+    display: none;
+}
+
+.menu_admin_front .form {
+    text-align: left;
+}
+
+.menu_admin_front .form * {
+    display: block;
+}
+
+.menu_admin_front .form select {
+    display: inline;
+    height: 2em;
+    width: 270px;
+}
+
+#site_web_wrapper[data-show_admin_icons="true"] a[href*="/admin"] {
+    display: inline-block !important;
+}
+
+
+.menu_admin_front a[href$="/admin"] img {
+    filter: invert(1);
+}
+
+
+#site_web_wrapper[data-show_admin_icons="true"] .configuration_module {
+    z-index: 99;
+    display: block !important;
+    position: absolute;
+    right: 10px;
+    top: 10px;
+}
+
+#site_web_wrapper .footer select[onchange],
+#site_web_wrapper .footer a[href*="/admin"],
+#site_web_wrapper .admin_tools_lock,
+#site_web_wrapper .configuration_module,
+#site_web_wrapper a[href*="/admin"] {
+    display: none !important;
+}
+
+
+#site_web_wrapper a[href*="/admin"]  {
+    z-index: 99;
+    background-color: transparent !important;
+    margin: 0 !important;
+    border: 2px solid transparent !important;
+    left: 0;
+    padding: 1px !important;
+    opacity: 0.4;
+}
+
+
+#site_web_wrapper a[href*="/admin"],
+#site_web_wrapper a[href*="/admin"] img {
+    height: 16px !important;
+    width: 16px !important;
+}
+
+
+#site_web_wrapper a[href*="/admin"] img {
+    margin: 0 !important;
+    padding: 0 !important;
+    border-radius: 0 !important;
+    vertical-align: top;
+    left: auto !important;
+    top: auto !important;
+    position: static !important;
+}
+
+
+#site_web_wrapper a[data-popup="true"].image-loading-status,
+#site_web_wrapper #menu_horizontal:hover a[href*="/admin"], 
+#site_web_wrapper .boite:hover a[href*="/admin"] {
+    opacity: 1 !important;
+}
+
+
+#site_web_wrapper .boite:hover .configuration_module {
+    height: 20px;
+    background-color: var(--line-highlight);
+}
+
+
+#site_web_wrapper a[data-popup="true"].image-loading-status,
+#site_web_wrapper a[href*="/admin"]:hover {
+    border-color: black !important;
+    background-color: white !important;
+}
+
+.menu_admin_front a:hover, 
+.menu_admin_front a:focus {
+    text-decoration: underline;
+}
+
+.menu_admin_front > div {
+    padding-bottom: 1em;
+}
+
+.menu_admin_front .admin_menu_title {
+    font-size: 1.17em;
+    margin: 1em 0 1em 0;
+    font-weight: bold;
+}
+
+.menu_admin_front .admin_menu_title label {
+    font-weight: bold;
+}
+
+
+a[class*="edit_"]:not(.edit_profil) {
+    position: absolute;
+}
+
+.configuration_module a.edit_menu {
+    position: static;
+}
+
+
+.menu_horizontal > a.edit_menu:focus,
+.menu_horizontal > a.edit_menu {
+    left: auto !important;
+    right: 0;
+}
+
+
+
+div.menu_vertical ul a.edit_menu,
+#menu_horizontal ul a.edit_menu {
+    left: -1em !important;
+}
+
+article header .edit_article,
+section .edit_library {
+    top: 2ex;
+}
\ No newline at end of file
diff --git a/public/admin/css/subModal.css b/public/admin/css/subModal.css
index 8a70a5cdc3715f05be6721e1a6b5e274b7bf43a9..9ba799ab1cc85cd7c75c24a4b7a9e4f3b17e1944 100644
--- a/public/admin/css/subModal.css
+++ b/public/admin/css/subModal.css
@@ -73,6 +73,7 @@ a[data-popup="true"].image-loading-status {
     margin: 0 !important;
     padding: 0 !important;
     cursor: progress;
+    vertical-align: top;
 }
 
 a[data-popup="true"].image-loading-status img {
diff --git a/public/admin/js/onload_utils.js b/public/admin/js/onload_utils.js
index 22580fd778e9083d37e68c9e4570a7b513d98231..696095416f11c87c76fb55e50f6d9380f4a50c4c 100644
--- a/public/admin/js/onload_utils.js
+++ b/public/admin/js/onload_utils.js
@@ -70,34 +70,6 @@ var setupAnchorsTarget = function() {
 }
 
 
-var autoHideShowConfigurationModule = function() {
-  autoHideShowTagOnParentHover('.configuration_module', 'div.boite');
-  autoHideShowTagOnParentHover('a[class^="edit_"]', 'div.boite');
-  autoHideShowTagOnParentHover('a[class^="edit_"]', 'div.menu_horizontal');
-  autoHideShowTagOnParentHover('.select_kiosque_form', 'div.boite');
-  autoHideShowTagOnParentHover('.newsadd', 'div.boite');
-  autoHideShowTagOnParentHover('.default_filters', 'div.boite');
-}
-
-
-var autoHideShowTagOnParentHover = function (child_selector, parent_selector) {
-  hide_selector = parent_selector + ' ' + child_selector;
-  $(hide_selector).hide();
-  $(child_selector).parents(parent_selector).hover(
-    function() {
-      $(this).find(child_selector).fadeIn();
-    },
-
-    function() {
-      if (!$(this).find('select').is(":focus")) 
-				$(parent_selector).find(child_selector).fadeOut();
-    }
-  );
-  
-}
-
-
-
 var initializeImgHover = function() {
   var images = $('img[data-hover]');
   images.each(function(index, element) {
diff --git a/public/admin/skins/bokeh72/front_nav.css b/public/admin/skins/bokeh72/front_nav.css
index 7055fa7b95c0d948cf3677fafebe7b7100d39b42..0f2066cd19c0ea1be164ee7b70381382586e6d9c 100644
--- a/public/admin/skins/bokeh72/front_nav.css
+++ b/public/admin/skins/bokeh72/front_nav.css
@@ -1,143 +1 @@
-.menu_admin_front * {
-    box-sizing: content-box;
-    font-family: arial, sans-serif;
-}
-
-.menu_admin_front .form select,
-.menu_admin_front > div {
-    background-color: var(--widget-background);
-}
-
-.menu_admin_front .admin_menu_title,
-.menu_admin_front .form select,
-.menu_admin_front label {
-    color: var(--main-text);
-}
-
-.menu_admin_front a {
-    color: var(--anchor);
-}
-
-.menu_admin_front .form select {
-    border: 1px solid var(--border-highlight);
-}
-
-.menu_admin_front > div {
-    box-shadow: 1px 1px 5px var(--widget-shadow);
-}
-
-.menu_admin_front {
-    position: fixed;
-    top: 0;
-    left: 0;
-    z-index: 102;
-}
-
-.menu_admin_front > button,
-.menu_admin_front > div {
-    transition: all 0.4s;
-}
-
-.menu_admin_front > div {
-    overflow: hidden;
-    width: 300px;
-}
-
-.menu_admin_front.hidden > div {
-    margin-left: -300px;
-    position: absolute;
-}
-
-.menu_admin_front > button {
-    margin: 0;
-    white-space: nowrap;
-}
-
-.menu_admin_front:not(.hidden) > button > img {
-    transform: rotate(45deg);
-}
-
-.menu_admin_front .admin_menu_title,
-.menu_admin_front form tr,
-.menu_admin_front a {
-    display: block;
-    line-height: 2em;
-}
-
-.menu_admin_front a img {
-    float: right;
-    vertical-align: middle;
-    padding-right: 1.5em;
-}
-
-.menu_admin_front ul,
-.menu_admin_front li {
-    margin: 0 0 0 0.2em;
-    padding: 0 0 0 0.2em;
-    list-style: none;
-}
-
-.menu_admin_front [class*="deactivate"] {
-    display: none;
-}
-
-.menu_admin_front fieldset {
-    padding: 0;
-    margin: 0;
-}
-
-.menu_admin_front .form td {
-    display: inline-block;
-    text-align: left !important;
-}
-
-.menu_admin_front form + .boutons {
-    display: none;
-}
-
-.menu_admin_front .form {
-    text-align: left;
-}
-
-.menu_admin_front .form * {
-    display: block;
-}
-
-.menu_admin_front .form select {
-    display: inline;
-    height: 2em;
-    width: 270px;
-}
-
-#site_web_wrapper[data-show_admin_icons="true"] a[href*="/admin"] {
-    display: inline-block !important;
-}
-
-
-#site_web_wrapper[data-show_admin_icons="true"] .configuration_module {
-    display: block !important;
-}
-
-#site_web_wrapper .footer select[onchange],
-#site_web_wrapper .footer a[href*="/admin"],
-#site_web_wrapper .admin_tools_lock,
-#site_web_wrapper .configuration_module,
-#site_web_wrapper a[href*="/admin"] {
-    display: none !important;
-    opacity: 1 !important;
-}
-
-.menu_admin_front a:hover, 
-.menu_admin_front a:focus {
-    text-decoration: underline;
-}
-
-.menu_admin_front a img {
-    height: 18px;
-}
-
-.menu_admin_front .admin_menu_title {
-    font-size: 1.17em;
-    margin: 1em 0 1em 0;
-    font-weight: bold;
-}
+@import url('../../css/front_nav.css');
\ No newline at end of file
diff --git a/public/admin/skins/bokeh74/front_nav.css b/public/admin/skins/bokeh74/front_nav.css
index 5214189aa087316a706a9c2df78e359cf4b71949..0f2066cd19c0ea1be164ee7b70381382586e6d9c 100644
--- a/public/admin/skins/bokeh74/front_nav.css
+++ b/public/admin/skins/bokeh74/front_nav.css
@@ -1,155 +1 @@
-.menu_admin_front * {
-    box-sizing: content-box;
-    font-family: arial, sans-serif;
-}
-
-.menu_admin_front .form select,
-.menu_admin_front > div {
-    background-color: var(--widget-background);
-}
-
-.menu_admin_front .admin_menu_title,
-.menu_admin_front .form select,
-.menu_admin_front label {
-    color: var(--main-text);
-}
-
-.menu_admin_front a {
-    color: var(--anchor);
-}
-
-.menu_admin_front .form select {
-    border: 1px solid var(--border-highlight);
-}
-
-.menu_admin_front > div {
-    box-shadow: 1px 1px 5px var(--widget-shadow);
-}
-
-.menu_admin_front {
-    font-size: 12px;
-    position: fixed;
-    top: 0;
-    left: 0;
-    z-index: 102;
-}
-
-.menu_admin_front > button,
-.menu_admin_front > div {
-    transition: all 0.4s;
-}
-
-.menu_admin_front > div {
-    overflow: hidden;
-    width: 300px;
-}
-
-.menu_admin_front.hidden > div {
-    margin-left: -300px;
-    position: absolute;
-}
-
-.menu_admin_front > button {
-    margin: 0;
-    white-space: nowrap;
-}
-
-.menu_admin_front:not(.hidden) > button > img {
-    transform: rotate(45deg);
-}
-
-.menu_admin_front .amdin_menu_title,
-.menu_admin_front form tr,
-.menu_admin_front a {
-    display: block;
-    line-height: 2em;
-}
-
-.menu_admin_front a img {
-    float: right;
-    vertical-align: middle;
-    padding-right: 1.5em;
-}
-
-.menu_admin_front ul,
-.menu_admin_front li {
-    margin: 0 0 0 0.2em;
-    padding: 0 0 0 0.2em;
-    list-style: none;
-}
-
-.menu_admin_front [class*="deactivate"] {
-    display: none;
-}
-
-.menu_admin_front fieldset {
-    padding: 0;
-    margin: 0;
-}
-
-.menu_admin_front .form td {
-    display: inline-block;
-    text-align: left !important;
-}
-
-.menu_admin_front form + .boutons {
-    display: none;
-}
-
-.menu_admin_front .form {
-    text-align: left;
-}
-
-.menu_admin_front .form * {
-    display: block;
-}
-
-.menu_admin_front .form select {
-    display: inline;
-    height: 2em;
-    width: 270px;
-}
-
-#site_web_wrapper[data-show_admin_icons="true"] a[href*="/admin"] {
-    display: inline-block !important;
-}
-
-.menu_admin_front a img {
-    height: 18px;
-}
-
-.menu_admin_front a[href$="/admin"] img {
-    filter: invert(1);
-}
-
-#site_web_wrapper[data-show_admin_icons="true"] .configuration_module {
-    display: block !important;
-}
-
-#site_web_wrapper .footer select[onchange],
-#site_web_wrapper .footer a[href*="/admin"],
-#site_web_wrapper .admin_tools_lock,
-#site_web_wrapper .configuration_module,
-#site_web_wrapper a[href*="/admin"] {
-    display: none !important;
-    opacity: 1 !important;
-}
-
-.menu_admin_front a:hover, 
-.menu_admin_front a:focus {
-    text-decoration: underline;
-}
-
-.menu_admin_front > div {
-    padding-bottom: 1em;
-}
-
-.menu_admin_front .admin_menu_title {
-    font-size: 1.17em;
-    margin: 1em 0 1em 0;
-    font-weight: bold;
-}
-
-.menu_admin_front .admin_menu_title label {
-    font-weight: bold;
-}
+@import url('../../css/front_nav.css');
\ No newline at end of file
diff --git a/public/admin/skins/retro/front_nav.css b/public/admin/skins/retro/front_nav.css
index d1f11a3ed337e56b39be10f735ff0b508b2c81db..b8ebbecc18cf630d087dc490c15ad84ba7997137 100644
--- a/public/admin/skins/retro/front_nav.css
+++ b/public/admin/skins/retro/front_nav.css
@@ -1,3 +1,5 @@
+@import url('../../css/front_nav.css');
+
 @font-face{
     font-family:minecraft;
     src:url(Minecraft.ttf) format("truetype");
@@ -23,138 +25,4 @@
 
 .menu_admin_front > div > ul > li {
     margin-top: 1em;
-}
-
-.menu_admin_front .admin_menu_title,
-.menu_admin_front .form select,
-.menu_admin_front label {
-    color: var(--main-text);
-}
-
-.menu_admin_front a {
-    color: var(--anchor);
-}
-
-.menu_admin_front .form select {
-    border: 1px solid var(--border-highlight);
-}
-
-.menu_admin_front > div {
-    box-shadow: 1px 1px 5px var(--widget-shadow);
-}
-
-.menu_admin_front {
-    position: fixed;
-    top: 0;
-    left: 0;
-    z-index: 102;
-}
-
-.menu_admin_front > button,
-.menu_admin_front > div {
-    transition: all 0.4s;
-}
-
-.menu_admin_front > div {
-    overflow: hidden;
-    width: 300px;
-}
-
-.menu_admin_front.hidden > div {
-    margin-left: -300px;
-    position: absolute;
-}
-
-.menu_admin_front > button {
-    margin: 0;
-    white-space: nowrap;
-}
-
-.menu_admin_front:not(.hidden) > button > img {
-    transform: rotate(45deg);
-}
-
-.menu_admin_front .admin_menu_title,
-.menu_admin_front form tr,
-.menu_admin_front a {
-    display: block;
-    line-height: 2em;
-}
-
-.menu_admin_front a img {
-    float: right;
-    vertical-align: middle;
-    padding-right: 1.5em;
-}
-
-.menu_admin_front ul,
-.menu_admin_front li {
-    margin: 0;
-    padding: 0 0.2em 0 0.2em;
-    list-style: none;
-}
-
-.menu_admin_front [class*="deactivate"] {
-    display: none;
-}
-
-.menu_admin_front fieldset {
-    padding: 0;
-    margin: 0;
-}
-
-.menu_admin_front .form td {
-    display: inline-block;
-    text-align: left !important;
-}
-
-.menu_admin_front form + .boutons {
-    display: none;
-}
-
-.menu_admin_front .form {
-    text-align: left;
-}
-
-.menu_admin_front .form * {
-    display: block;
-}
-
-.menu_admin_front .form select {
-    height: 2em;
-    width: 270px;
-}
-
-#site_web_wrapper[data-show_admin_icons="true"] a[href*="/admin"] {
-    display: inline-block !important;
-}
-
-
-#site_web_wrapper[data-show_admin_icons="true"] .configuration_module {
-    display: block !important;
-}
-
-#site_web_wrapper .footer select[onchange],
-#site_web_wrapper .footer a[href*="/admin"],
-#site_web_wrapper .admin_tools_lock,
-#site_web_wrapper .configuration_module,
-#site_web_wrapper a[href*="/admin"] {
-    display: none !important;
-    opacity: 1 !important;
-}
-
-.menu_admin_front a:hover, 
-.menu_admin_front a:focus {
-    text-decoration: underline;
-}
-
-.menu_admin_front a[href$="/admin"] img {
-    height: 18px;
-    filter: invert(1);
-}
-
-.menu_admin_front .admin_menu_title {
-    font-size: 1.17em;
-    margin: 1em 0 1em 0;
-    font-weight: bold;
-}
+}
\ No newline at end of file
diff --git a/public/opac/css/global.css b/public/opac/css/global.css
index 481e0d4a31a825b4ef07bcfb4432874bf43ccbda..ae7e3ca57362bc24cf5b53f5b29e8e0fdd6b7dde 100644
--- a/public/opac/css/global.css
+++ b/public/opac/css/global.css
@@ -35,13 +35,6 @@ a {
 
 
 /* Boites bannière*/
-.configuration_module {
-    z-index: 101;
-    position: relative; 
-    height: 0px;
-    float: right;
-    cursor:pointer;
-}
 
 .select_kiosque_form {
     margin-right:25px;
@@ -412,9 +405,6 @@ table.calendar_table td {
     position: relative;
 }
 
-ul.menuGauche {
-    overflow: hidden;
-}
 
 ul.menuGauche li {
     white-space: nowrap;
@@ -976,10 +966,6 @@ ul.view-raw-rss li {
     margin-top: 10px;
 }
 
-.edit_menu  {
-    left: 0;
-    top: 0;
-}
 
 .edit_album {
     float: right;
@@ -1070,7 +1056,6 @@ ul.view-raw-rss li {
 article,
 .colContenu,
 .kiosque .titre,
-.kiosque .contenu,
 .boite.kiosque {
     position: relative;
 }
@@ -3175,6 +3160,10 @@ a.loan-export {
     padding: 0 20px;
 }
 
+.boite.library section {
+    position: relative;
+}
+
 .dilicom-action {
     padding: 5px;
     margin: 10px; 
@@ -3368,7 +3357,8 @@ th.actions {
     margin-bottom: 1em;
 }
 
-.opac .boiteMilieu .contenu {
+
+.opac #colContenuInner > .boiteMilieu .contenu {
     overflow: visible;
 }
 
@@ -3563,70 +3553,4 @@ th.actions {
 .boutons {
     text-align: center;
     padding: 1em;
-}
-
-a.newsadd,
-a.default_filters,
-a[class*="edit_"]:not(.edit_profil) {
-    position: absolute;
-}
-
-a.newsadd,
-a.default_filters,
-.configuration_module a,
-a[class*="edit_"]:not(.edit_profil):focus,
-a[class*="edit_"]:not(.edit_profil) {
-    display: inline-block;
-    margin: 0 !important;
-    padding: 0 !important;
-    left: 0;
-    top: 0;
-    z-index: 101;
-    background-color: transparent !important;
-    margin: 0 !important;
-    padding: 1px !important;
-    height: auto !important;
-    width: auto !important;
-    border: 2px solid transparent !important;
-}
-
-a.newsadd:hover,
-a.default_filters:hover,
-.configuration_module a:hover,
-a[class*="edit_"]:not(.edit_profil):hover {
-    border-color: black !important;
-    background-color: white !important;
-}
-
-a.newsadd img,
-a.default_filters img,
-.configuration_module a img,
-a[class*="edit_"] img {
-    height: 16px !important;
-    width: 16px !important;
-    margin: 0 !important;
-    padding: 0 !important;
-    border-radius: 0 !important;
-    vertical-align: middle;
-}
-
-.edit_profil {
-    margin: 0 5px;
-}
-
-.configuration_module + a.edit_menu:focus,
-.configuration_module + a.edit_menu,
-a.newsadd,
-a.newsadd:focus,
-a.default_filters,
-a.default_filters:focus {
-    top: auto;
-    left: auto;
-    right: 80px !important;
-}
-
-.menu_horizontal > a.edit_menu:focus,
-.menu_horizontal > a.edit_menu {
-    left: auto;
-    right: 0;
 }
\ No newline at end of file
diff --git a/public/opac/js/digital_connectors.js b/public/opac/js/digital_connectors.js
index f70e8c199721b8b3a40e315cc4dcd86f4165ffd5..f9f924330f6e67a29266047614030fb5dff9f879 100644
--- a/public/opac/js/digital_connectors.js
+++ b/public/opac/js/digital_connectors.js
@@ -258,5 +258,58 @@
     "desc": "Orphea Studio vous propose des offres de gestion de contenus multimédias adaptées à vos problématiques métiers",
     "features": ["HARVEST", "SSO"], 
     "sales_contact": {"url": "https://www.orphea.com/contact", "name":"Orphéa", "mail":"info@orphea.com"}
+  },
+    
+  "MEDIAPART": {
+    "label" : "Médiapart", 
+    "enabled": "PROVIDER",
+    "url" : "https://www.mediapart.fr", 
+    "image_url" : "http://bokeh-library-portal.org/userfiles/media/ressources_numeriques/logo_mediapart.png", 
+    "desc": "Mediapart est un journal d'information numérique, indépendant et participatif.",
+    "features": [], 
+    "sales_contact": {"mail" : "",
+		      "name" : "",
+		      "url" : "https://www.mediapart.fr"}
+  },
+  
+  "UNIVERSALIS": {
+    "label" : "Universalis", 
+    "enabled": "PROVIDER",
+    "url" : "http://www.universalis-edu.com/", 
+    "image_url" : "http://bokeh-library-portal.org/userfiles/media/ressources_numeriques/logo_universalis.jpg", 
+    "desc": "Encyclopédie francophone proposant des contenus couvrant tous les domaines de la connaissance illustrés par de nombreux médias.",
+    "features": [], 
+    "sales_contact": {"mail" : "",
+		      "name" : "",
+		      "url" : "http://www.encyclopaedia-universalis.fr/bibliotheques-et-entreprises/universalis-fr/"}
+		      
+  },
+  
+  "REFERENCES": {
+    "label" : "Références par Indexpresse", 
+    "enabled": "PROVIDER",
+    "url" : "http://www.references-indexpresse.com", 
+    "image_url" : "http://bokeh-library-portal.org/userfiles/media/ressources_numeriques/logo_references.png", 
+    "desc": "Références est le moteur de recherche dédié aux revues et magazines français « grand public ».",
+    "features": [], 
+    "sales_contact": {"mail" : "",
+		      "name" : "",
+		      "url" : "http://www.indexpresse.fr/project/references/"}
+		      
+  },
+  
+  "SCIENCESENLIGNE": {
+    "label" : "Sciences en ligne", 
+    "enabled": "PROVIDER",
+    "url" : "http://www.sciences-en-ligne.com", 
+    "image_url" : "http://bokeh-library-portal.org/userfiles/media/ressources_numeriques/logo_sciencesenligne.png", 
+    "desc": "Ressources encyclopédique scientifique et technique, en français.",
+    "features": [], 
+    "sales_contact": {"mail" : "",
+		      "name" : "",
+		      "url" : "http://www.sciences-en-ligne.com/comm/documentaliste-bibliothecaire-mediatheques/"}
+
+		      
+
   }
 }
diff --git a/public/opac/js/renderFilters/ajaxifyFilters.js b/public/opac/js/renderFilters/ajaxifyFilters.js
index 8a642a431ea0f2ee17a5effb8b9da25532dd1726..dad65667fb3647c9b5d295aa56c913e0609e6ace 100644
--- a/public/opac/js/renderFilters/ajaxifyFilters.js
+++ b/public/opac/js/renderFilters/ajaxifyFilters.js
@@ -25,10 +25,10 @@
       var url = node.attr(url_attr); 
       
       if (!url)
-	return event.preventDefault(); 
+	      return event.preventDefault(); 
 
       if (url == "#") 
-	url = node.jqmData("href");
+	      url = node.jqmData("href");
       
       widget.load(url + "/render/ajax .boite > *", onLoadComplete); 
       event.preventDefault();
@@ -37,15 +37,10 @@
 
     var onLoadComplete = function() {
       widget.ajaxifyFilters();
-
-      var offset = widget.offset();
-      $('html, body').animate({scrollTop:offset.top}, 
-			      500, 
-			      'easeInSine');
     };
 
 
-    var links = widget.find(".filters a, a.default_filters"); 
+    var links = widget.find(".filters a"); 
     links.click(function(event) {
       refresh($(this), event, 'href');
     });
@@ -65,13 +60,11 @@
       var form = $(this).parent('form');
       var term = encodeURIComponent($(this).siblings('input').val());
       var url = term 
-      ? form.attr('action') + '/search/' + term
-      : form.attr('action');
+          ? form.attr('action') + '/search/' + term
+          : form.attr('action');
 
       form.attr('data-url', url);
       refresh(form, event, 'data-url');
     });
   };
 } (jQuery));
-
-
diff --git a/public/opac/js/toggle_menu.css b/public/opac/js/toggle_menu.css
index c63b780f353e4a561029f4e460a9b1ec120febe9..e056ac84f819576f05e769672d4db0203cda7227 100644
--- a/public/opac/js/toggle_menu.css
+++ b/public/opac/js/toggle_menu.css
@@ -8,7 +8,6 @@
     text-align: center;
     transition-duration: .5s;
     transition-property: all;
-    width: 100%;
     z-index: 101;
 }
 
diff --git a/public/opac/js/widget_templates/agenda_mur.jpg b/public/opac/js/widget_templates/agenda_mur.jpg
index bef7277c397c56c332f30b88b2e1d01f3c81bd25..ae2ede2213622ac326ff8b2cb49cee4b9bf77c32 100644
Binary files a/public/opac/js/widget_templates/agenda_mur.jpg and b/public/opac/js/widget_templates/agenda_mur.jpg differ
diff --git a/public/opac/js/widget_templates/agenda_simple.jpg b/public/opac/js/widget_templates/agenda_simple.jpg
index 3e9ad690978a0fb70a94bb5410f560edc4092b6b..3400a24da5a5ac57ca4bbdfa803218ebae2b70ef 100644
Binary files a/public/opac/js/widget_templates/agenda_simple.jpg and b/public/opac/js/widget_templates/agenda_simple.jpg differ
diff --git a/public/opac/js/widget_templates/article_diaporama.jpg b/public/opac/js/widget_templates/article_diaporama.jpg
index a4d873c5e6f91a9e608bf74371522587d28583c5..f204d27f526c3f22f27bf709c69fa9380b9d22c0 100644
Binary files a/public/opac/js/widget_templates/article_diaporama.jpg and b/public/opac/js/widget_templates/article_diaporama.jpg differ
diff --git a/public/opac/js/widget_templates/article_diaporama_boutons.jpg b/public/opac/js/widget_templates/article_diaporama_boutons.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..5616d34cf39e7cf30e266e1a7874eb7802aa5494
Binary files /dev/null and b/public/opac/js/widget_templates/article_diaporama_boutons.jpg differ
diff --git a/public/opac/js/widget_templates/article_diaporama_vignette.jpg b/public/opac/js/widget_templates/article_diaporama_vignette.jpg
index 7735d9cb00b42d82e2c7a12f3647af4d3fc3ce1f..b5f24cd1a537a003a10231d0f6dd2fb6a9ae7627 100644
Binary files a/public/opac/js/widget_templates/article_diaporama_vignette.jpg and b/public/opac/js/widget_templates/article_diaporama_vignette.jpg differ
diff --git a/public/opac/js/widget_templates/articles_diaporama.jpg b/public/opac/js/widget_templates/articles_diaporama.jpg
deleted file mode 100644
index 08682293b1a7cb1f7df4c2ac3acbd37b8c89ec2c..0000000000000000000000000000000000000000
Binary files a/public/opac/js/widget_templates/articles_diaporama.jpg and /dev/null differ
diff --git a/public/opac/js/widget_templates/boite_bibliotheque.jpg b/public/opac/js/widget_templates/boite_bibliotheque.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..99377bdc7f616a8ec2c859539871b5b2c063e0a5
Binary files /dev/null and b/public/opac/js/widget_templates/boite_bibliotheque.jpg differ
diff --git a/public/opac/js/widget_templates/domaines.jpg b/public/opac/js/widget_templates/domaines.jpg
index 4b2b524ebd1b4c51fa3196799092786587f7442a..43a7d63df72170895827170576c803c731f3038c 100644
Binary files a/public/opac/js/widget_templates/domaines.jpg and b/public/opac/js/widget_templates/domaines.jpg differ
diff --git a/public/opac/js/widget_templates/kiosque_barre_horizontale.jpg b/public/opac/js/widget_templates/kiosque_barre_horizontale.jpg
index a48eb463c9c8faf991a40786e20a48c905ec8514..1682458e20a6b4c0b1b03f7ed8c9659b3847fb7e 100644
Binary files a/public/opac/js/widget_templates/kiosque_barre_horizontale.jpg and b/public/opac/js/widget_templates/kiosque_barre_horizontale.jpg differ
diff --git a/public/opac/js/widget_templates/langue.jpg b/public/opac/js/widget_templates/langue.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..b492dd1efc672416c82b35d63a5346c2df01cdf8
Binary files /dev/null and b/public/opac/js/widget_templates/langue.jpg differ
diff --git a/public/opac/js/widget_templates/lettre_information.jpg b/public/opac/js/widget_templates/lettre_information.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..f6a8773162f905f7ee2b2b686a9769d0fe41857f
Binary files /dev/null and b/public/opac/js/widget_templates/lettre_information.jpg differ
diff --git a/public/opac/js/widget_templates/login.jpg b/public/opac/js/widget_templates/login.jpg
index e713d9935e90051e9aaa67086152af9c2e150bad..c43c368ae329cc4ea84c57efe79a58f30638964c 100644
Binary files a/public/opac/js/widget_templates/login.jpg and b/public/opac/js/widget_templates/login.jpg differ
diff --git a/public/opac/js/widget_templates/menu_vertical.jpg b/public/opac/js/widget_templates/menu_vertical.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..3cc934c5bc8f532de252266989bbd666d649b6b0
Binary files /dev/null and b/public/opac/js/widget_templates/menu_vertical.jpg differ
diff --git a/public/opac/js/widget_templates/nuage_tags.jpg b/public/opac/js/widget_templates/nuage_tags.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e783f2a47b45320b6270ac66947e8a1df60bfae7
Binary files /dev/null and b/public/opac/js/widget_templates/nuage_tags.jpg differ
diff --git a/public/opac/js/widget_templates/recherche.jpg b/public/opac/js/widget_templates/recherche.jpg
index 02ada8019b874844bd5158ba6ac37b789d215255..703603d2e3fdd4e02dddd72977dca4387cf1b08f 100644
Binary files a/public/opac/js/widget_templates/recherche.jpg and b/public/opac/js/widget_templates/recherche.jpg differ
diff --git a/public/opac/js/widget_templates/rss.jpg b/public/opac/js/widget_templates/rss.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..c2bf4c7b6692dbcc28eb1cdb0003780bea7b07a5
Binary files /dev/null and b/public/opac/js/widget_templates/rss.jpg differ
diff --git a/public/opac/js/widget_templates/sitotheque.jpg b/public/opac/js/widget_templates/sitotheque.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d2c015fad2a5497ab3701a07477befeecadab507
Binary files /dev/null and b/public/opac/js/widget_templates/sitotheque.jpg differ
diff --git a/public/opac/js/widget_templates/widget_templates.css b/public/opac/js/widget_templates/widget_templates.css
index 605ed7d747c18340359c5858cb893f04647e133d..d25a8741850f9306d59c13c4d628c4520118881f 100644
--- a/public/opac/js/widget_templates/widget_templates.css
+++ b/public/opac/js/widget_templates/widget_templates.css
@@ -1,17 +1,51 @@
+.widget_templates.ui-accordion .ui-accordion-header {
+    padding: 1em 2em;
+    margin-bottom: 2px;
+    font-weight: bold;
+}
+
+.widget_templates.ui-accordion .ui-accordion-header,
+.widget_templates a h4 {
+    color: var(--button);
+    background-color: var(--button-background);
+}
+
+.widget_templates.ui-accordion .ui-accordion-header:hover,
+.widget_templates.ui-accordion .ui-accordion-header.ui-state-active,
+.widget_templates a:hover h4 {
+    color: var(--button-highlight);
+    background-color: var(--button-background-highlight);
+}
+
 .widget_templates a {
-  display: inline-block;
-  width: 50%;
-  transition: all .2s ease-in-out;
+    display: inline-block;
+    transition: all .2s ease-in-out;
+    box-shadow: 0px 0px 5px var(--widget-shadow);
+    text-align: center;
+    border-radius: 5px;
+    margin: 0.5%;
+}
+
+
+.widget_templates a {
+    width: 32%;    
+}
+
+
+.widget_templates a img {
+    width: 100%;
 }
 
 .widget_templates a h4 {
-  color: #333333;
-  font-weight: normal;
-  text-align: center;
-  text-transform: uppercase;
+    font-weight: normal;
+    text-transform: uppercase;
+    margin: 0;
+    padding: 1em;
+    border-radius: 5px 5px 0 0;
+    white-space: nowrap;
 }
 
 .widget_templates a:hover {
-  opacity: 0.8;
-  transform: scale(1.1);
-}
\ No newline at end of file
+    box-shadow: 0px 0px 15px var(--widget-shadow);
+    transform: scale(1.02);
+}
diff --git a/public/opac/js/widget_templates/widget_templates.json b/public/opac/js/widget_templates/widget_templates.json
index 3e609b25e3855d5e0eef238e2e27b14ea53a2dbb..a939603c921181a8fa2b38c8ac1e40018a678a61 100755
--- a/public/opac/js/widget_templates/widget_templates.json
+++ b/public/opac/js/widget_templates/widget_templates.json
@@ -36,7 +36,7 @@
 
         {
           "title": "Diaporama avec boutons",
-          "icon": "articles_diaporama.jpg",
+          "icon": "article_diaporama_boutons.jpg",
 	  "type": "NEWS",
           "configuration": {
             "style_liste": "diaporama_navigation",
@@ -211,16 +211,9 @@
       ]
     },
 
-    "advanced": {
-      "title": "Avancé",
+    "Recherche": {
+      "title": "Recherche",      
       "templates": [
-        {
-          "title": "Boite d'authentification",
-	  "type": "LOGIN",
-          "icon": "login.jpg",
-          "configuration": {}
-        },
-
         {
           "title": "Boite de recherche",
           "icon": "recherche.jpg",
@@ -232,10 +225,10 @@
           }
         },
 
-        {
-          "title": "Boite 2 colonnes",
-          "icon": "boite_2colonnes.jpg",
-	  "type": "CONTENEUR_DEUX_COLONNES",
+          {
+          "title": "Nuage de tags",
+          "icon": "nuage_tags.jpg",
+	  "type": "TAGS",
           "configuration": {}
         },
 
@@ -247,6 +240,62 @@
         }
 
       ]
+    },
+
+
+
+    "advanced": {
+      "title": "Avancé",
+      "templates": [
+        {
+          "title": "Boite d'authentification",
+	  "type": "LOGIN",
+          "icon": "login.jpg",
+          "configuration": {}
+        },
+
+        {
+          "title": "Boite 2 colonnes",
+          "icon": "boite_2colonnes.jpg",
+	  "type": "CONTENEUR_DEUX_COLONNES",
+          "configuration": {}
+        },
+
+        {
+          "title": "Boite RSS",
+          "icon": "rss.jpg",
+	  "type": "RSS",
+          "configuration": {}
+        },
+
+        {
+          "title": "Boite Bibliothèque",
+          "icon": "boite_bibliotheque.jpg",
+	  "type": "LIBRARY",
+          "configuration": {}
+        },
+
+        {
+          "title": "Boite Menu Vertical",
+          "icon": "menu_vertical.jpg",
+	  "type": "MENU_VERTICAL",
+          "configuration": {}
+        },
+
+        {
+          "title": "Boite Newsletter",
+          "icon": "lettre_information.jpg",
+	  "type": "NEWSLETTERS",
+          "configuration": {}
+        },
+
+        {
+          "title": "Boite Langue",
+          "icon": "langue.jpg",
+	  "type": "LANGUE",
+          "configuration": {}
+        }
+      ]
     }
   }
 }
diff --git a/public/opac/skins/modele/css/global.css b/public/opac/skins/modele/css/global.css
index 11ba2baf37346758356e9ced766a8f7b283bf764..9f5136ac0964bc6da9aebecdf6bfce7be578af51 100644
--- a/public/opac/skins/modele/css/global.css
+++ b/public/opac/skins/modele/css/global.css
@@ -93,7 +93,7 @@ a:hover {color:#D44100;}
 	top: 1.5em;
 	left: 2.5em;
 	padding: 2px;
-	z-index: 10;
+	z-index: 101;
 }
 
 #menu_horizontal ul li ul li {
diff --git a/public/opac/skins/original/css/global.css b/public/opac/skins/original/css/global.css
index 9cf5d1c76ed59ccbc4e202fe42528654e9798c71..988408cdc680ff0799d4bdc3897933a45d1ca294 100644
--- a/public/opac/skins/original/css/global.css
+++ b/public/opac/skins/original/css/global.css
@@ -110,7 +110,7 @@ a:visited{color:#0058A5; text-decoration:none;}
 	_width: 10em; /* IE6 seulement */
 	left: 2.5em;
 	padding: 2px;
-	z-index: 10;
+	z-index: 101;
 }
 
 #menu_horizontal ul li ul li {
diff --git a/tests/application/modules/AbstractControllerTestCase.php b/tests/application/modules/AbstractControllerTestCase.php
index 9c1fbff6fd7a5455fd38702be5c04af00b949414..8a7c300007f0c97982ff0507a12f242876f60fcf 100644
--- a/tests/application/modules/AbstractControllerTestCase.php
+++ b/tests/application/modules/AbstractControllerTestCase.php
@@ -300,7 +300,10 @@ abstract class AbstractControllerTestCase extends Zend_Test_PHPUnit_ControllerTe
 
 
   public function assertFlashMessengerContains($value, $message = '') {
-    $this->assertContains($value, $this->_getFlashMessengerMessages(), $message);
+    $messages = $this->_getFlashMessengerMessages();
+    $this->assertContains($value,
+                          $this->_getFlashMessengerMessages(),
+                          $message);
   }
 
 
diff --git a/tests/application/modules/admin/controllers/BatchControllerTest.php b/tests/application/modules/admin/controllers/BatchControllerTest.php
index bfd78004098037b925b467c6140081fa181fd835..3750b2bc44d7e0e0ec6cc3d797b9b7c04f3e3e83 100644
--- a/tests/application/modules/admin/controllers/BatchControllerTest.php
+++ b/tests/application/modules/admin/controllers/BatchControllerTest.php
@@ -28,27 +28,84 @@ abstract class BatchControllerTestCase extends AbstractControllerTestCase {
     $_storm_default_to_volatile = true,
     $_batch_import;
 
+  protected function _loginHook($account) {
+    $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::SUPER_ADMIN;
+  }
+
   public function setUp() {
     parent::setUp();
 
     RessourcesNumeriquesFixtures::activateTypo3();
     RessourcesNumeriquesFixtures::activateVodeclic();
-    RessourcesNumeriquesFixtures::deactivateArteVod();
+    RessourcesNumeriquesFixtures::activateArteVod();
+    RessourcesNumeriquesFixtures::activateCyberlibris();
     RessourcesNumeriquesFixtures::deactivateToutApprendre();
     RessourcesNumeriquesFixtures::deactivateNumilog();
+
     $this->_batch_import = $this->fixture('Class_Batch',
                                           ['id' => 3,
                                            'type' => 'IMPORT_TYPO3',
+                                           'pick_day' => '5;6',
                                            'last_run' => '2012-05-01 10:23:00']);
   }
 }
 
 
 
+class BatchControllerWithoutAdminAccountTest extends BatchControllerTestCase {
+  protected function _loginHook($account) {
+    $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL;
+  }
+
+
+  /** @test */
+  public function shouldBeRedirectedToOpac() {
+    $this->dispatch('/admin/batch', true);
+    $this->assertRedirectTo('/opac/index/index/id_profil/1');
+  }
+}
+
+
+
+class BatchControllerWithAdminPortalTest extends BatchControllerTestCase {
+  protected function _loginHook($account) {
+    $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL;
+  }
+
+
+  public function setUp() {
+    parent::setUp();
+    $this->dispatch('/admin/batch', true);
+  }
+
+
+  /** @test */
+  public function planLinkShouldNotBePresent() {
+    $this->assertNotXPath('//a[contains(@href, "/batch/plan/id/")]');
+  }
+}
+
+
 
 class BatchControllerWithBatchInDb extends BatchControllerTestCase {
   public function setUp() {
     parent::setUp();
+
+    $this->fixture('Class_Batch',
+                   ['id' => 4,
+                    'type' => Class_Batch_PanierUser::TYPE,
+                    'pick_day' => '1;2;3;4;5;6;0']);
+
+    $this->fixture('Class_Batch',
+                   ['id' => 5,
+                    'type' => Class_Batch_AvisNotice::TYPE,
+                    'pick_day' => '']);
+
+    $this->fixture('Class_Batch',
+                   ['id' => 6,
+                    'type' => Class_Batch_AutocompleteRecordTitle::TYPE,
+                    'pick_day' => '0']);
+
     $this->dispatch('/admin/batch', true);
   }
 
@@ -62,129 +119,182 @@ class BatchControllerWithBatchInDb extends BatchControllerTestCase {
 
   /** @test */
   public function batchNoveltyCouldNotBeDelete() {
-    $this->assertNotXPath('//a[contains(@href, "batch/delete/id/' . Class_Batch::findFirstBy(['type' => Class_Batch_NoveltyFacet::TYPE])->getId() . '")]', $this->_response->getBody());
+    $this->assertNotXPath('//a[contains(@href, "batch/delete/id/' . Class_Batch_NoveltyFacet::TYPE . '")]');
   }
 
 
   /** @test */
-  public function tableShouldContainsMoissonnageArteVod() {
-    $this->assertXPathContentContains('//tbody//tr[1]//td',
+  public function tableShouldContainsTypo3() {
+    $this->assertXPathContentContains('//tbody//td',
                                       Class_Batch::getBatchLibelle('IMPORT_TYPO3'));
   }
 
 
   /** @test */
-  public function buttonShouldLinkToAdd() {
-    $this->assertXPath('//button[contains(@onclick, "batch/add")]');
+  public function tableShouldContainsTypo3PickDay() {
+    $this->assertXPathContentContains('//tbody//td', 'ven, sam');
+  }
+
+
+  /** @test */
+  public function tableShouldContainsAllDays() {
+    $this->assertXPathContentContains('//tbody//td', 'Tous les jours');
+  }
+
+
+  /** @test */
+  public function tableShouldContainsNeverEver() {
+    $this->assertXPathContentContains('//tbody//td', 'Aucune');
+  }
+
+
+  /** @test */
+  public function tableShouldContainsOneSundayOnly() {
+    $this->assertXPathCount('//tbody//td[text()="dim"]', 1);
   }
 
 
   /** @test */
-  public function batchActionShouldDeleteMyTask() {
+  public function deleteLinkShouldBePresent() {
     $this->assertXPath('//a[contains(@href, "batch/delete")]');
   }
 
 
   /** @test */
-  public function batchActionShouldRunMyTask() {
+  public function runLinkShouldBePresent() {
     $this->assertXPath('//a[contains(@href, "batch/run")]');
   }
+
+
+  /** @test */
+  public function activateLinkShouldBePresent() {
+    $this->assertXPath('//a[contains(@href, "/batch/activate")]');
+  }
+
+
+  /** @test */
+  public function planLinkShouldBePresent() {
+    $this->assertXPath('//a[contains(@href, "batch/plan/id")]');
+  }
 }
 
 
 
 
-class BatchControllerAddTest extends BatchControllerTestCase {
-  public function setUp() {
-    parent::setUp();
-    $this->dispatch('/admin/batch/add', true);
+class BatchControllerActivateTest extends BatchControllerTestCase {
+  protected function _expectNotSave() {
+    $this->onLoaderOfModel('Class_Batch')
+         ->whenCalled('save')
+         ->willDo(function()
+                  {
+                    throw new RuntimeException('Save called on Class_Batch');
+                  });
   }
 
 
   /** @test */
-  public function selectElementBatchShouldBePresent() {
-    $this->assertXPath('//select[@name="type"]');
+  public function withoutIdShouldRedirectWithoutAdding() {
+    $this->_expectNotSave();
+    $this->dispatch('/admin/batch/activate', true);
+    $this->assertRedirectTo('/admin/batch/index');
   }
 
 
-  public function datas() {
-    return [['MOISSONNAGE_VODECLIC', 'Moissonner catalogue Vodeclic', true],
-            ['MOISSONNAGE_ARTEVOD', 'Moissonner catalogue ArteVOD', false],
-            ['MOISSONNAGE_NUMILOG', 'Moissonner catalogue Numilog', false],
-            ['MOISSONNAGE_TOUTAPPRENDRE', 'Moissonner catalogue Tout apprendre', false],
-            ['AUTOCOMPLETE_RECORD_TITLE', 'Indexer les titres de notice pour l\'autocompletion', true],
-            ['AUTOCOMPLETE_RECORD_AUTHOR', 'Indexer les auteurs de notice pour l\'autocompletion', true],
-            ['BUILD_SITE_MAP', 'Régénère le sitemap XML', true],
-            ['NOVELTY_FACET', 'Supprimer les facettes de nouveauté périmées', true]];
+  /** @test */
+  public function withUnknownIdShouldRedirectWithoutAdding() {
+    $this->_expectNotSave();
+    $this->dispatch('/admin/batch/activate/id/UNKNOWN_TYPE', true);
+    $this->assertRedirectTo('/admin/batch/index');
   }
 
 
+  /** @test */
+  public function withUnavailableIdShouldRedirectWithoutAdding() {
+    $this->_expectNotSave();
+    $this->dispatch('/admin/batch/activate/id/IMPORT_TYPO3', true);
+    $this->assertRedirectTo('/admin/batch/index');
+  }
+
+
+  public function datas() {
+    return [
+            [Class_Batch_Vodeclic::TYPE, '1;2;3;4;5;6;0'],
+            [Class_Batch_ArteVOD::TYPE, '6'],
+            [Class_Batch_Cyberlibris::TYPE, '0'],
+    ];
+  }
+
   /**
    * @test
    * @dataProvider datas
    */
-  public function selectElementShouldBePresent($value, $label, $should_be_present){
-    $path = sprintf('//select[@name="type"]/option[@value="%s"][@label="%s"][not(@selected)]',
-                    $value, $label);
+  public function shouldAddWithDays($type, $days) {
+    $this->dispatch('/admin/batch/activate/id/' . $type, true);
+    $this->assertNotNull($batch = Class_Batch::findFirstBy(['type' => $type]));
+    $this->assertEquals($days, $batch->getPickDay());
+  }
+}
+
+
 
-    $should_be_present
-      ? $this->assertXPath($path, $this->_response->getBody())
-      : $this->assertNotXPath($path, $this->_response->getBody());
+class BatchControllerPlanWithoutSysadminTest extends BatchControllerTestCase {
+  protected function _loginHook($account) {
+    $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL;
   }
 
 
   /** @test */
-  public function submitButtonShouldNotBeDisabled() {
-    $this->assertNotXPath('//button[contains(@class, "validate")][@disabled]');
+  public function shouldRedirect() {
+    $this->dispatch('/admin/batch/plan/id/IMPORT_TYPO3', true);
+    $this->assertRedirectTo('/admin/batch/index');
   }
 }
 
 
 
-class BatchControllerAddWithNumilogAndToutApprendreTest extends BatchControllerTestCase {
+class BatchControllerPlanWithSysadminTest extends BatchControllerTestCase {
+  protected function _loginHook($account) {
+    $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::SUPER_ADMIN;
+  }
+
+
   public function setUp() {
     parent::setUp();
-    RessourcesNumeriquesFixtures::activateNumilog();
-    RessourcesNumeriquesFixtures::activateToutApprendre();
-    $this->dispatch('/admin/batch/add', true);
+    $this->dispatch('/admin/batch/plan/id/IMPORT_TYPO3', true);
   }
 
 
   /** @test */
-  public function selectElementShouldContainsMoissonnageNumilog(){
-    $this->assertXPath('//select[@name="type"]/option[@value="MOISSONNAGE_NUMILOG"][@label="Moissonner catalogue Numilog"][not(@selected)]', $this->_response->getBody());
+  public function pickDayShouldBePresent() {
+    $this->assertXPath('//input[@type="checkbox"][@name="pick_day[]"]');
   }
+}
 
 
-  /** @test */
-  public function selectElementShouldContainsMoissonnageToutApprendre(){
-    $this->assertXPath('//select[@name="type"]/option[@value="MOISSONNAGE_TOUTAPPRENDRE"][@label="Moissonner catalogue Tout Apprendre"][not(@selected)]', $this->_response->getBody());
-  }
 
-  /** @test */
-  public function selectElementShouldContainsIndexerRessourcesNumeriques(){
-    $this->assertXPath('//select[@name="type"]/option[@value="INDEX_RESSOURCES_NUMERIQUES"][@label="Indexer les ressources numériques"][not(@selected)]', $this->_response->getBody());
+class BatchControllerPlanWithSysadminPostTest extends BatchControllerTestCase {
+  protected function _loginHook($account) {
+    $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::SUPER_ADMIN;
   }
-}
-
 
 
-class BatchControllerAddPostTest extends BatchControllerTestCase {
   public function setUp() {
     parent::setUp();
-    $this->postDispatch('/admin/batch/add',
-                        ['type' => 'MOISSONNAGE_VODECLIC'], true);
+    $this->postDispatch('/admin/batch/plan/id/IMPORT_TYPO3',
+                        ['pick_day' => ['3', '6']]);
   }
 
 
   /** @test */
-  public function batchShouldBeCreated() {
-    $this->assertNotNull(Class_Batch::findFirstBy(['type' => 'MOISSONNAGE_VODECLIC']));
+  public function batchPickDayShouldBeCome3and6() {
+    $this->assertEquals('3;6',
+                        Class_Batch::findFirstBy(['type' => 'IMPORT_TYPO3'])
+                        ->getPickDay());
   }
 
 
   /** @test */
-  public function clicValiderButtonShouldRedirectToAdminBatch(){
+  public function shouldRedirectToIndex() {
     $this->assertRedirectTo('/admin/batch');
   }
 }
@@ -195,15 +305,14 @@ class BatchControllerRunMoissonnageVodeclicTest extends BatchControllerTestCase
   public function setUp() {
     parent::setUp();
 
-    $this->mock_batch = Storm_Test_ObjectWrapper::mock()
-      ->whenCalled('run')->answers(true);
+    $this->mock_batch = $this->mock()->whenCalled('run')->answers(true);
 
     $this->fixture('Class_Batch', ['id' => 6, 'type' => 'MOCKED']);
-    Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Batch')
-      ->whenCalled('getKnownType')->with('MOCKED')
-      ->answers($this->mock_batch);
+    $this->onLoaderOfModel('Class_Batch')
+         ->whenCalled('getKnownType')->with('MOCKED')
+         ->answers($this->mock_batch);
 
-    $this->dispatch('/admin/batch/run/id/6', true);
+    $this->dispatch('/admin/batch/run/id/MOCKED', true);
   }
 
 
@@ -226,20 +335,22 @@ class BatchControllerRunMoissonnageVodeclicTest extends BatchControllerTestCase
 class BatchControllerRunAjaxAutocompleteTest extends BatchControllerTestCase {
   public function setUp() {
     parent::setUp();
-    $this->fixture('Class_Batch', ['id' => 42, 'type' => 'AUTOCOMPLETE_RECORD_TITLE']);
+    $this->fixture('Class_Batch',
+                   ['id' => 42,
+                    'type' => Class_Batch_AutocompleteRecordTitle::TYPE]);
     $this->dispatch('/admin/batch', true);
   }
 
 
   /** @test */
   public function batchActionShouldRunAjaxMyTask() {
-    $this->assertXPath('//a[contains(@href, "batch/run-ajax/id/42")]');
+    $this->assertXPath('//a[contains(@href, "batch/run-ajax/id/' . Class_Batch_AutocompleteRecordTitle::TYPE . '")]');
   }
 
 
   /** @test */
   public function batchActionShouldNotRunSimpleMyTask() {
-    $this->assertNotXPath('//a[contains(@href, "batch/run/id/42")]');
+    $this->assertNotXPath('//a[contains(@href, "batch/run/id/' . Class_Batch_AutocompleteRecordTitle::TYPE . '")]');
   }
 }
 
@@ -248,23 +359,14 @@ class BatchControllerRunAjaxAutocompleteTest extends BatchControllerTestCase {
 class BatchControllerRunMoissonnageOrpheaTest extends BatchControllerTestCase {
   protected $_web_client;
 
-
-  public function tearDown() {
-    Storm_Model_Loader::defaultToDb();
-    parent::tearDown();
-  }
-
-
   public function setUp() {
     parent::setUp();
 
-    Storm_Model_Loader::defaultToVolatile();
-    $this->_web_client = Storm_Test_ObjectWrapper::mock()
-    ->whenCalled('open_url')->answers('');
+    $this->_web_client = $this->mock()->whenCalled('open_url')->answers('');
 
     $this->batch_orphea = $this->fixture('Class_Batch',
                                          ['id' => 4,
-                                          'type' => 'MOISSONNAGE_ORPHEA',
+                                          'type' => Class_Batch_Orphea::TYPE,
                                           'last_run' => '2012-05-01 10:23:00']);
 
     Class_WebService_BibNumerique_Orphea::setDefaultHttpClient($this->_web_client);
@@ -298,7 +400,7 @@ class BatchControllerRunMoissonnageOrpheaTest extends BatchControllerTestCase {
 
     ->beStrict();
 
-    $this->dispatch('/admin/batch/run/id/4', true);
+    $this->dispatch('/admin/batch/run/id/' . Class_Batch_Orphea::TYPE, true);
   }
 
 
@@ -311,19 +413,9 @@ class BatchControllerRunMoissonnageOrpheaTest extends BatchControllerTestCase {
 
 
 class BatchControllerIndexOrpheaTest extends BatchControllerTestCase {
-
-
-  public function tearDown() {
-    Storm_Model_Loader::defaultToDb();
-    parent::tearDown();
-  }
-
-
   public function setUp() {
     parent::setUp();
 
-    Storm_Model_Loader::defaultToVolatile();
-
     $this->fixture('Class_Album',
                    ['id' => 1,
                     'titre' => 'Orphea Album',
@@ -350,8 +442,6 @@ class BatchControllerIndexWithCyberlibrisTest extends BatchControllerTestCase {
   public function setUp() {
     parent::setUp();
 
-    RessourcesNumeriquesFixtures::activateCyberlibris();
-
     $this->fixture('Class_Batch',
                    ['id' => 1001528,
                     'type' => Class_Batch_Cyberlibris::TYPE]);
@@ -368,12 +458,12 @@ class BatchControllerIndexWithCyberlibrisTest extends BatchControllerTestCase {
 
   /** @test */
   public function cyberlibrisShouldNotBeRunnable() {
-    $this->assertNotXpath('//a[contains(@href, "batch/run/id/1001528")]');
+    $this->assertNotXpath('//a[contains(@href, "batch/run/id/' . Class_Batch_Cyberlibris::TYPE . '")]');
   }
 
 
   /** @test */
   public function cyberlibrisShouldNotBeAjaxRunnable() {
-    $this->assertNotXpath('//a[contains(@href, "batch/run-ajax/id/1001528")]');
+    $this->assertNotXpath('//a[contains(@href, "batch/run-ajax/id/' . Class_Batch_Cyberlibris::TYPE . '")]');
   }
-}
\ No newline at end of file
+}
diff --git a/tests/application/modules/admin/controllers/BibControllerTest.php b/tests/application/modules/admin/controllers/BibControllerTest.php
index 21427faa7355427822a5de33b144f8a914bf4729..cfaf08cf4c723e96d57d218363a4d0a874fd0186 100644
--- a/tests/application/modules/admin/controllers/BibControllerTest.php
+++ b/tests/application/modules/admin/controllers/BibControllerTest.php
@@ -328,12 +328,12 @@ class BibControllerWithAdminBibEditAnnecyTest extends BibControllerWithAdminBibT
                     'libelle' => 'Cran-Gevrier']);
 
     $this->custom_field = $this->fixture('Class_CustomField',
-                                          ['id' => 7,
-                                           'label' => 'Options',
-                                           'options_list' => 'Wifi;Projection;Restauration',
-                                           'priority' => 3,
-                                           'field_type' => Class_CustomField_Meta::MULTI_CHECKBOX,
-                                           'model' => 'Bib']);
+                                         ['id' => 7,
+                                          'label' => 'Options',
+                                          'options_list' => 'Wifi;Projection;Restauration',
+                                          'priority' => 3,
+                                          'field_type' => Class_CustomField_Meta::MULTI_CHECKBOX,
+                                          'model' => 'Bib']);
 
     $this->bib_annecy->assertSave();
     $this->bib_annecy->setCustomField('Options', ['Wifi','Restauration']);
@@ -653,7 +653,7 @@ class BibControllerAnnecyPostWithDuplicateRewriteUrlTest extends BibControllerWi
   }
 
 
-    /** @test */
+  /** @test */
   public function withSameRewriteUrlAsProfilLibraryShouldDisplayError() {
     $this->fixture('Class_Profil',
                    ['id' => 34,
@@ -916,12 +916,12 @@ class BibControllerJSONTest extends BibControllerTestCase {
   /** @test */
   function withBibThreeShouldRenderCranJSON() {
     $this->dispatch('admin/bib/articles/id_bib/3');
-    $expectedJSON = <<<JSON
+    $expectedJSON = '
 [
 {"id":3,"label": "Cran-Gévrier","categories": [{"id":3,"label": "News","categories": [],"items": [{"id":42,"label":"Vive les vacances !"}]}],"items": []},
 {"id":0,"label": "Portail","categories": [{"id":9,"label": "Infos","categories": [],"items": [{"id":123,"label":"Reseau en route"}]}],"items": []}
 ]
-JSON;
+';
     $this->assertJsonStringEqualsJsonString($expectedJSON,
                                             $this->_response->getBody(),
                                             $this->_response->getBody());
@@ -930,7 +930,7 @@ JSON;
   /** @test */
   function withNoBibShouldRenderAllArticles() {
     $this->dispatch('admin/bib/articles/categories_only/0');
-    $expectedJSON = <<<JSON
+    $expectedJSON = '
       [{"id":0,
         "label": "Portail",
         "categories": [{"id":9,
@@ -957,7 +957,7 @@ JSON;
                               "label":"Vive les vacances !" }
                         ]}],
         "items": []}]
-JSON;
+';
     $this->assertJsonStringEqualsJsonString($expectedJSON,
                                             $this->_response->getBody());
   }
@@ -1273,15 +1273,15 @@ class BibControllerLocalisatonDeleteTest extends BibControllerTestCase {
       ->answers(true)
       ->whenCalled('getcwd')
       ->answers('path');
-;
+    ;
 
     Class_Localisation::setFileSystem($file_system);
     $location = $this->fixture('Class_Localisation',
-                   ['id' => 9,
-                    'libelle' => 'Arts',
-                    'description' => 'Coin des arts.',
-                    'bib' => $this->bib_annecy,
-                    'image' => 'bib_2_localisation_9.jpg']);
+                               ['id' => 9,
+                                'libelle' => 'Arts',
+                                'description' => 'Coin des arts.',
+                                'bib' => $this->bib_annecy,
+                                'image' => 'bib_2_localisation_9.jpg']);
 
 
 
@@ -1571,8 +1571,8 @@ abstract class BibControllerPermissionsTestCase extends BibControllerTestCase {
     parent::setUp();
     $this->setupPermissions();
     $this->group = $this->fixture('Class_UserGroup',
-                            ['id' => 324,
-                             'libelle' => 'Testing Permissions Group']);
+                                  ['id' => 324,
+                                   'libelle' => 'Testing Permissions Group']);
     $this->group
       ->addRight(Class_UserGroup::RIGHT_USER_ACCES_ARTICLES)
       ->save();
@@ -1822,4 +1822,147 @@ class BibControllerDispatchIndexWithLibraryAdmin extends AbstractControllerTestC
   public function deleteActionShouldNotBePresent() {
     $this->assertNotXPath('//a[contains(@href, "admin/bib/delete/id/56")]');
   }
-}
\ No newline at end of file
+}
+
+
+
+
+class BibControllerWidgetDefaultsActionTest extends Admin_AbstractControllerTestCase {
+  protected $_storm_default_to_volatile = true;
+
+  public function setUp() {
+    parent::setUp();
+    $this->dispatch('/admin/bib/save-defaults', true);
+  }
+
+
+  /** @test */
+  public function shouldRedirect() {
+    $this->assertRedirect();
+  }
+}
+
+
+
+
+class BibControllerDefaultFiltersTest extends Admin_AbstractControllerTestCase {
+  public function setUp() {
+    parent::setUp();
+
+    Class_Profil::getCurrentProfil()
+      ->setCfgAccueil([
+                       'modules' => [
+                                     '1' =>  [
+                                              'division' => '2',
+                                              'type_module' => 'LIBRARY',
+                                              'preferences' => ['titre' => 'Bibliotheques',
+                                                                'librariries' => '',
+                                                                'nb_aff' => 2,
+                                                                'anchor' => 'http://linux.fr',
+                                                                'allow_link_on_title' => true,
+                                                                'pagination' => Class_Systeme_ModulesAccueil_Library::PAGINATION_BOTH]]],
+                       'options' =>  []]);
+    $this->dispatch('/admin/bib/save-defaults/id_module/1/page/1/opening/opened', true);
+  }
+
+
+  /** @test */
+  public function shouldRedirect() {
+    $this->assertRedirect();
+  }
+
+
+  /** @test */
+  public function shouldNotifySucessfulSave() {
+    $this->assertFlashMessengerContentContains('Les filtres par défaut ont été sauvegardés.');
+  }
+
+
+  /** @test */
+  public function openingOpenedShouldBeSaved() {
+    $this->assertEquals(['opened'], Class_Profil::getCurrentProfil()
+                        ->getLocalModuleAccueilConfig(1)['preferences']['default_filters']['opening']);
+  }
+}
+
+
+
+
+class BibControllerAddDefaultCustomFieldsFiltersTest extends Admin_AbstractControllerTestCase {
+  public function setUp() {
+    parent::setUp();
+
+    Class_Profil::getCurrentProfil()
+      ->setCfgAccueil([
+                       'modules' => [
+                                     '1' =>  [
+                                              'division' => '2',
+                                              'type_module' => 'LIBRARY',
+                                              'preferences' => ['titre' => 'Bibliotheques',
+                                                                'librariries' => '',
+                                                                'nb_aff' => 2,
+                                                                'anchor' => 'http://linux.fr',
+                                                                'allow_link_on_title' => true,
+                                                                'pagination' => Class_Systeme_ModulesAccueil_Library::PAGINATION_BOTH]]],
+                       'options' =>  []]);
+
+    $this->fixture('Class_CustomField',
+                   ['id' => 7,
+                    'label' => 'Services',
+                    'options_list' => 'Parking;Wifi;Projection;Restauration',
+                    'priority' => 3,
+                    'field_type' => Class_CustomField_Meta::MULTI_CHECKBOX,
+                    'model' => 'Bib']);
+
+    $this->dispatch('/admin/bib/save-defaults/id_module/1/page/1/custom_field_7/Restauration', true);
+  }
+
+
+  /** @test */
+  public function shouldRedirect() {
+    $this->assertRedirect();
+  }
+
+
+  /** @test */
+  public function shouldNotifySucessfulSave() {
+    $this->assertFlashMessengerContentContains('Les filtres par défaut ont été sauvegardés.');
+  }
+
+
+  /** @test */
+  public function restaurationShouldBeSaved() {
+    $this->assertEquals(['Restauration'], Class_Profil::getCurrentProfil()
+                        ->getBoitesDivision(2)[1]['preferences']['default_filters']['7']);
+  }
+}
+
+
+
+
+class BibControllerDeleteDefaultFiltersTest extends Admin_AbstractControllerTestCase {
+  public function setUp() {
+    parent::setUp();
+
+    Class_Profil::getCurrentProfil()
+      ->updateModuleConfigAccueil(1, [
+                                      'division' => '2',
+                                      'type_module' => 'LIBRARY',
+                                      'preferences' => ['titre' => 'Bibliotheques',
+                                                        'librariries' => '',
+                                                        'nb_aff' => 2,
+                                                        'anchor' => 'http://linux.fr',
+                                                        'allow_link_on_title' => true,
+                                                        'pagination' => Class_Systeme_ModulesAccueil_Library::PAGINATION_BOTH,
+                                                        'default_filters' => ['opening' => ['opened']]]])
+      ->save();
+
+    $this->dispatch('/admin/bib/save-defaults/id_module/1', true);
+  }
+
+
+  /** @test */
+  public function openedShouldHaveBeenRemovedFromSettings() {
+    $this->assertEmpty(Class_Profil::getCurrentProfil()->getLocalModuleAccueilConfig(1)['preferences']['default_filters']);
+  }
+}
diff --git a/tests/application/modules/admin/controllers/IndexControllerTest.php b/tests/application/modules/admin/controllers/IndexControllerTest.php
index bbfdbb458a7d5a02172ea68d21e947074b6f76c2..8951deba852f3f799e3994f7bc88f33ece228b04 100644
--- a/tests/application/modules/admin/controllers/IndexControllerTest.php
+++ b/tests/application/modules/admin/controllers/IndexControllerTest.php
@@ -268,7 +268,16 @@ class Admin_IndexControllerClearCacheActionTest extends Admin_IndexControllerTes
   public function setUp() {
     parent::setUp();
     Storm_Cache::beVolatile();
-    $this->_cache_version = Class_ScriptLoader::getInstance()->getCacheHash();
+
+    $this->fixture('Class_AdminVar',
+                   ['id' => 'CACHE_DATE',
+                    'valeur' => '2017-08-30 10:00:00']);
+
+    $scriptloadder = Class_ScriptLoader::getInstance();
+    $scriptloadder->setTimeSource(new TimeSourceForTest('2017-08-31 11:00:00'));
+
+    $this->_cache_version = $scriptloadder->getCacheHash();
+
     $this->dispatch('/admin/index/clearcache', true);
   }
 
@@ -283,6 +292,13 @@ class Admin_IndexControllerClearCacheActionTest extends Admin_IndexControllerTes
   public function cacheVersionShouldHaveChange() {
     $this->assertNotEquals($this->_cache_version, Class_ScriptLoader::getInstance()->getCacheHash());
   }
+
+
+  /** @test */
+  public function cacheVersionShouldContainsMajorAndMinorVersionAndTime() {
+    $this->assertEquals(md5(BOKEH_MAJOR_VERSION . BOKEH_RELEASE_NUMBER . Class_AdminVar::get('CACHE_DATE')),
+                        Class_ScriptLoader::getInstance()->getCacheHash());
+  }
 }
 
 
diff --git a/tests/application/modules/admin/controllers/ModulesControllerTest.php b/tests/application/modules/admin/controllers/ModulesControllerTest.php
index 6eb02519d5b6955c06f6805505d887998eff843e..3fe7224b7090b654238529ae3af4e8cca5d33513 100644
--- a/tests/application/modules/admin/controllers/ModulesControllerTest.php
+++ b/tests/application/modules/admin/controllers/ModulesControllerTest.php
@@ -370,6 +370,24 @@ class ModulesControllerVariousConfigTest extends Admin_AbstractControllerTestCas
 
 
 
+class ModulesControllerAuthLoginConfigTest extends Admin_AbstractControllerTestCase {
+  protected $_storm_default_to_volatile = true;
+
+  public function setUp() {
+    parent::setUp();
+    $this->dispatch('admin/modules/auth/config/site/type_module/auth/id_profil/1/action1/login');
+  }
+
+  /** @test */
+  public function modulesAuthBoiteLoginShouldNotFail() {
+    $this->assertAction('auth-login');
+  }
+}
+
+
+
+
+
 class ModulesControllerRegisterConfigTest extends Admin_AbstractControllerTestCase {
   protected $_storm_default_to_volatile = true;
 
diff --git a/tests/application/modules/admin/controllers/NewsletterControllerTest.php b/tests/application/modules/admin/controllers/NewsletterControllerTest.php
index 97964a0e22ead600a0266bcbfbdd77109b5c6689..49a1c0510a3375dffa473bcdb30506a36a7de9f5 100644
--- a/tests/application/modules/admin/controllers/NewsletterControllerTest.php
+++ b/tests/application/modules/admin/controllers/NewsletterControllerTest.php
@@ -1151,7 +1151,8 @@ class Admin_NewsletterControllerEditSubcsribersSearchAllSubscriptionTest
 
     $this->onLoaderOfModel('Class_Users')
          ->whenCalled('findAllBy')
-         ->with(['limitPage' => [1, 20]])
+         ->with(['order' => 'nom asc',
+                 'limitPage' => [1, 20]])
          ->answers([$this->_laurent, $this->_pat, $this->_ghislo])
 
          ->whenCalled('findAllBy')
@@ -1221,6 +1222,7 @@ class Admin_NewsletterControllerEditSubcsribersSearchSubscribedTest
     $this->onLoaderOfModel('Class_Users')
          ->whenCalled('findAllBy')
          ->with(['where' => '(id_user in (566,444)) AND (mail not in ("g@serv.eur.fr"))',
+                 'order' => 'nom asc',
                  'limitPage' => [1, 20]])
          ->answers([$this->_laurent])
 
@@ -1293,6 +1295,7 @@ class Admin_NewsletterControllerEditSubcsribersSearchNotSubscribedTest
     $this->onLoaderOfModel('Class_Users')
          ->whenCalled('findAllBy')
          ->with(['where' => '(id_user not in (566,444))',
+                 'order' => 'nom asc',
                  'limitPage' => [1, 20]])
          ->answers([$this->_pat])
 
@@ -1352,6 +1355,7 @@ class Admin_NewsletterControllerEditSubcsribersSearchUnsubscribedTest
     $this->onLoaderOfModel('Class_Users')
          ->whenCalled('findAllBy')
          ->with(['where' => '(id_user in (566,444)) AND (mail in ("g@serv.eur.fr"))',
+                 'order' => 'nom asc',
                  'limitPage' => [1, 20]])
          ->answers([$this->_ghislo])
 
diff --git a/tests/application/modules/admin/controllers/RedmineControllerTest.php b/tests/application/modules/admin/controllers/RedmineControllerTest.php
index fcfdb19b818ff22b5152a01e5bebfdf4ae35fa0c..2be95ef46d10ddc69e2b74f6a0cb30089121240a 100644
--- a/tests/application/modules/admin/controllers/RedmineControllerTest.php
+++ b/tests/application/modules/admin/controllers/RedmineControllerTest.php
@@ -404,15 +404,13 @@ class Admin_RedmineControllerWithMultipleAccountTest extends Admin_RedmineContro
   /** @test */
   public function annecyShouldBeSelected() {
     $this->assertXPathContentContains('//select[@name="library"]//option[@selected="selected"]',
-                                      'Mediatheque d\'Annecy',
-                                      $this->_response->getBody());
+                                      'Mediatheque d\'Annecy');
   }
 
 
   /** @test */
   public function chamberyShouldBeSelectable() {
-    $this->assertXPathContentContains('//select[@name="library"]//option', 'Mediatheque de Chambéry',
-                                      $this->_response->getBody());
+    $this->assertXPathContentContains('//select[@name="library"]//option[2]', 'Mediatheque de Chambéry');
   }
 
 
diff --git a/tests/application/modules/admin/controllers/UsersControllerTest.php b/tests/application/modules/admin/controllers/UsersControllerTest.php
index 28c3d1adaca3f1bf802c53f812bac7310460012d..3501e013015d77c02362e8b3eb12f4df9dcf895d 100644
--- a/tests/application/modules/admin/controllers/UsersControllerTest.php
+++ b/tests/application/modules/admin/controllers/UsersControllerTest.php
@@ -129,12 +129,14 @@ class UsersControllerIndexTest extends UsersControllerWithMarcusTestCase {
 
          ->whenCalled('findAllBy')
          ->with(['role_level' => 2,
+                 'order' => 'nom asc',
                  'where' => '(STR_TO_DATE(date_fin, \'%Y-%m-%d\') >= CURDATE()) AND (id_user in (2233,987398)) AND (login LIKE "%francis%" OR nom LIKE "%francis%" OR prenom LIKE "%francis%" OR pseudo LIKE "%francis%" OR mail LIKE "%francis%" OR idabon LIKE "%francis%") AND (role_level <= 7)',
                  'limitPage' => [1, 20]])
          ->answers([$francis])
 
          ->whenCalled('countBy')
          ->with(['role_level' => 2,
+                 'order' => 'nom asc',
                  'where' => '(STR_TO_DATE(date_fin, \'%Y-%m-%d\') >= CURDATE()) AND (id_user in (2233,987398)) AND (login LIKE "%francis%" OR nom LIKE "%francis%" OR prenom LIKE "%francis%" OR pseudo LIKE "%francis%" OR mail LIKE "%francis%" OR idabon LIKE "%francis%") AND (role_level <= 7)'])
          ->answers(55)
          ->beStrict();
@@ -738,14 +740,14 @@ class UsersControllerReferentIndexTest extends UsersControllerWithMarcusTestCase
 
     $this->user_loader = Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Users');
     $this->user_loader->whenCalled('getIdentity')
-                      ->answers($user=Class_Users::newInstanceWithId(2)
+                      ->answers($user = Class_Users::newInstanceWithId(2)
                                 ->setLogin('referent')
                                 ->setRoleLevel(ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL)
                                 ->setPseudo('referent'));
 
     $this->addUserToRightsReferent($user);
 
-    $this->dispatch('/admin/users', true);
+    $this->dispatch('/admin/users/index/order/prenom+desc', true);
   }
 
 
@@ -1113,22 +1115,29 @@ class UsersControllerWithAdminPortalTest extends Admin_AbstractControllerTestCas
     $this->onLoaderOfModel('Class_Users')
          ->whenCalled('findAllBy')
          ->with(['where' => '(role_level <= ' . ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL . ')',
+                 'order' => 'prenom desc',
                  'limitPage' => [1, 20]])
          ->answers([Class_Users::find(2)])
 
          ->whenCalled('countBy')
-         ->with(['where' => '(role_level <= ' . ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL . ')'])
+         ->with(['order' => 'prenom desc',
+                 'where' => '(role_level <= ' . ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL . ')'])
          ->answers(1)
       ;
 
-    $this->dispatch('/admin/users/index', true);
+    $this->dispatch('/admin/users/index/search_order/prenom+desc', true);
+  }
+
+
+  /** @test */
+  public function tableHeaderShouldContainsLinkToOrderByLastNameAsc() {
+    $this->assertXPath('//th//a[contains(@href, "/search_order/prenom/")]');
   }
 
 
   /** @test */
   public function superAdminEditLinkShouldNotBePresentInIndex() {
-    $this->assertNotXPath('//a[contains(@href, "/users/edit/id/1")]',
-                          $this->_response->getBody());
+    $this->assertNotXPath('//a[contains(@href, "/users/edit/id/1")]');
   }
 
 
@@ -1141,13 +1150,13 @@ class UsersControllerWithAdminPortalTest extends Admin_AbstractControllerTestCas
 
   /** @test */
   public function linkToShowTimReviewShouldBePresent() {
-    $this->assertXPath('//a[contains(@href, "/blog/viewauteur/id/2")]');
+    $this->assertXPath('//a[contains(@href, "/blog/viewauteur/")][contains(@href, "/id/2")]');
   }
 
 
   /** @test */
   public function linkToShowTimPanierShouldBePresent() {
-    $this->assertXPath('//a[contains(@href, "/panier/viewauteur/id/2")]');
+    $this->assertXPath('//a[contains(@href, "/panier/viewauteur/")][contains(@href, "/id/2")]');
   }
 
 
@@ -1167,6 +1176,12 @@ class UsersControllerWithAdminPortalTest extends Admin_AbstractControllerTestCas
   public function linkToShowTumPanierShouldNotBePresent() {
     $this->assertNotXPath('//a[contains(@href, "/panier/viewauteur/id/3")]');
   }
+
+
+  /** @test */
+  public function tableHeadShouldContainsLinksWithOrderNameAsc() {
+    $this->assertXPath('//th/a[contains(@href, "/search_order/nom/")]');
+  }
 }
 
 
diff --git a/tests/application/modules/admin/controllers/WidgetControllerTest.php b/tests/application/modules/admin/controllers/WidgetControllerTest.php
index 6ce32e882af155694d9567db3de0c737c3b7d37b..90cb79a7f4ded853060599c0840047518a13ac1e 100644
--- a/tests/application/modules/admin/controllers/WidgetControllerTest.php
+++ b/tests/application/modules/admin/controllers/WidgetControllerTest.php
@@ -1574,7 +1574,7 @@ class WidgetControllerParentLoginDispatchTest extends WidgetControllerLoginInPar
   /** @test */
   public function addWidgetLinkShouldUseParentProfil() {
     $this->dispatch('/opac/index/index/id_profil/6', true);
-    $this->assertXpath('//div//a[contains(@href, "admin/widget/add/after/2/division/4/id_profil/2")]');
+    $this->assertXpath('//div//a[contains(@href, "admin/widget/add-from-template/after/2/division/4/id_profil/2")]');
   }
 
 
@@ -1959,7 +1959,7 @@ class WidgetControllerLibrarySimpleDispatchTest extends WidgetControllerDispatch
 
 
 
-class WidgetControllerAddActionLinkTest extends WidgetControllerWidgetConfigurationTestCase {
+class WidgetControllerAddFromTemplateActionLinkTest extends WidgetControllerWidgetConfigurationTestCase {
   public function setUp() {
     $this->_type_module = 'LOGIN';
     parent::setUp();
@@ -1969,24 +1969,27 @@ class WidgetControllerAddActionLinkTest extends WidgetControllerWidgetConfigurat
 
   /** @test */
   public function linkAddWidgetShouldBePresent() {
-    $this->assertXPath('//a[contains(@href, "admin/widget/add/after/6/division/3/id_profil/5")]');
+    $this->assertXPath('//a[contains(@href, "admin/widget/add-from-template/after/6/division/3/id_profil/5")]');
   }
 }
 
 
 
 
-class WidgetControllerAddActionDispatchTest extends WidgetControllerWidgetConfigurationTestCase {
+class WidgetControllerAddFromTemplateAfterModuleInDivisionThreeActionDispatchTest extends WidgetControllerWidgetConfigurationTestCase {
   public function setUp() {
     parent::setUp();
-    $this->dispatch('/admin/widget/add/after/6/division/3/id_profil/5', true);
+    $this->dispatch('/admin/widget/add-from-template/after/6/division/3/id_profil/5', true);
   }
 
 
   /** @test */
-  public function submitButtonShouldBePresent() {
-    $this->assertXpath('//button[@type="submit"]');
+  public function addWidgetLinkShouldContainsAfterSixDivisionThreeIdProfilFive() {
+    $this->assertXPathContentContains('//div[@class="widget_templates"]//div/a[contains(@href, "admin/widget/add/after/6/division/3/id_profil/5/template/articles/template_no/3")]/h4',
+                                      'Diaporama',
+                                      $this->_response->getBody());
   }
+
 }
 
 
@@ -2107,10 +2110,35 @@ class WidgetControllerAddActionEmptyPostDispatchTest extends WidgetControllerWid
 
 
 
+class WidgetControllerWidgetAddFromTemplateInPopupTest extends WidgetControllerWidgetConfigurationTestCase {
+  protected $_json;
+
+  public function setUp() {
+    parent::setUp();
+    $this->dispatch('admin/widget/add-from-template/id_profil/2/render/popup',  true);
+    $this->_json = json_decode($this->_response->getBody());
+  }
+
+
+  /** @test */
+  public function titleShouldBeAddAWidget() {
+    $this->assertEquals('Ajouter une boîte', $this->_json->title);
+  }
+
+
+  /** @test */
+  public function addActionShouldNotContainsRenderPopup() {
+    $this->assertNotContains('/render/popup', $this->_json->content);
+  }
+}
+
+
+
+
 class WidgetControllerWidgetAddFromTemplateTest extends WidgetControllerWidgetConfigurationTestCase {
   public function setUp() {
     parent::setUp();
-    $this->dispatch('admin/widget/add-from-template',  true);
+    $this->dispatch('admin/widget/add-from-template/id_profil/2',  true);
   }
 
 
@@ -2128,7 +2156,7 @@ class WidgetControllerWidgetAddFromTemplateTest extends WidgetControllerWidgetCo
 
   /** @test */
   public function articlesSectionShouldContainsDiaporamaWithUrlAddWidgetTemplateArticlesZero() {
-    $this->assertXPathContentContains('//div[@class="widget_templates"]//div/a[contains(@href, "admin/widget/add/template/articles/template_no/3/id_profil/2")]/h4',
+    $this->assertXPathContentContains('//div[@class="widget_templates"]//div/a[contains(@href, "admin/widget/add/id_profil/2/template/articles/template_no/3")]/h4',
                                       'Diaporama');
   }
 
diff --git a/tests/application/modules/opac/controllers/BibControllerTest.php b/tests/application/modules/opac/controllers/BibControllerTest.php
index b978b3f0863fb0bf6b15b872c43b9bf4e2da9641..107d6148dff381241ad64ce3639849ec538b5d7e 100644
--- a/tests/application/modules/opac/controllers/BibControllerTest.php
+++ b/tests/application/modules/opac/controllers/BibControllerTest.php
@@ -1943,46 +1943,6 @@ class BibControllerMapActionWithLocationTest extends BibControllerWithThreeBibTe
 
 
 
-class BibControllerDefaultFiltersTest extends BibControllerWidgetPageTestCase {
-  protected  $_bib_wrapper;
-
-  public function setUp() {
-    parent::setUp();
-    $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1/opening/opened/default_filters/1', true);
-  }
-
-
-  /** @test */
-  public function openingOpenedShouldBeSaved() {
-    $this->assertEquals(['opened'], Class_Profil::getCurrentProfil()
-                        ->getBoitesDivision(2)[1]['preferences']['default_filters']['opening']);
-  }
-
-
-  /** @test */
-  public function linkToSaveDefaultFilterShouldContainsOpening() {
-    $this->assertXPath('//a[contains(@href, "/bib/widget-page/id_module/1/id_division/2/page/1/opening/opened/default_filters/1")]');
-  }
-}
-
-
-class BibControllerAddDefaultCustomFieldsFiltersTest extends BibControllerWidgetPageTestCase {
-  protected  $_bib_wrapper;
-
-  public function setUp() {
-    parent::setUp();
-    $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1/custom_field_7/Restauration/default_filters/1', true);
-  }
-
-
-  /** @test */
-  public function restaurationShouldBeSaved() {
-    $this->assertEquals(['Restauration'], Class_Profil::getCurrentProfil()
-                        ->getBoitesDivision(2)[1]['preferences']['default_filters']['7']);
-  }
-}
-
-
 
 class BibControllerWithDefaultFiltersTest extends BibControllerWidgetPageTestCase {
   protected  $_bib_wrapper;
@@ -2010,52 +1970,6 @@ class BibControllerWithDefaultFiltersTest extends BibControllerWidgetPageTestCas
 
 
 
-class BibControllerDeleteDefaultFiltersTest extends BibControllerWidgetPageTestCase {
-  protected  $_bib_wrapper;
-
-  public function setUp() {
-    parent::setUp();
-
-    Class_Profil::getCurrentProfil()
-      ->updateModuleConfigAccueil(1, [
-                                      'division' => '2',
-                                      'type_module' => 'LIBRARY',
-                                      'preferences' => array_merge($this->_preferences,
-                                                                   ['allow_link_on_title' => false,
-                                                                    'default_filters' => ['opening' => ['opened']]])
-                                      ])
-      ->save();
-
-    $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1/default_filters/1', true);
-  }
-
-
-  /** @test */
-  public function widgetTitleShouldNotContainsLink() {
-    $this->assertNotXPath('//div//h1/a');
-  }
-
-
-  /** @test */
-  public function openedShouldBeSelected() {
-    $this->assertXPath('//ul/li[not(@class="selected")]/a[text()="Ouvert aujourd\'hui"]');
-  }
-
-
-  /** @test */
-  public function openedShouldHaveBeenRemovedFromSettings() {
-    $this->assertEmpty(Class_Profil::getCurrentProfil()->getBoitesDivision(2)[1]['preferences']['default_filters']);
-  }
-
-
-  /** @test */
-  public function linkToSaveDefaultFilterShouldNotContainsOpening() {
-    $this->assertXPath('//a[contains(@href, "/bib/widget-page/id_module/1/id_division/2/page/1/default_filters/1")]');
-  }
-}
-
-
-
 
 class BibControllerWithDefaultFiltersAllFacetsSelectedTest
   extends BibControllerWidgetPageTestCase {
diff --git a/tests/application/modules/opac/controllers/IndexControllerTest.php b/tests/application/modules/opac/controllers/IndexControllerTest.php
index 6cc02bf3081c8e0524369dc54917d22644809e37..0179f8ce679c579156b2be6bccb301028be49893 100644
--- a/tests/application/modules/opac/controllers/IndexControllerTest.php
+++ b/tests/application/modules/opac/controllers/IndexControllerTest.php
@@ -787,7 +787,7 @@ class IndexControllerWithBibAdminLoggedTest extends AbstractControllerTestCase {
 
   /** @test */
   public function linkToAdminHomeShouldBeInMenu() {
-    $this->assertXPathContentContains('//body/div//ul/li/ul/li/a', 'Accueil');
+    $this->assertXPathContentContains('//body/div//ul/li/ul/li/a', 'Accès pro.');
   }
 
 
@@ -914,4 +914,20 @@ class IndexControllerWithSuperAdminLoggedTest extends AbstractControllerTestCase
   public function scriptToShowAmberIdeShouldBePresent() {
     $this->assertXPathContentContains('//script', 'showAmberIDE()');
   }
+}
+
+
+
+
+class IndexControllerSiteDownActionTest extends AbstractControllerTestCase {
+  public function setUp() {
+    parent::setUp();
+    $this->dispatch('/opac/index/sitedown', true);
+  }
+
+
+  /** @test */
+  public function frontNavCssShouldBeLoaded() {
+    $this->assertXPath('//link[contains(@href, "front_nav.css")]');
+  }
 }
\ No newline at end of file
diff --git a/tests/application/modules/telephone/controllers/AbonneControllerTest.php b/tests/application/modules/telephone/controllers/AbonneControllerTest.php
index ff7f8588449a88bf290e28457da1f2133e66b496..66b8f1e078d29b8618d2badbbd9416cb8fed524e 100644
--- a/tests/application/modules/telephone/controllers/AbonneControllerTest.php
+++ b/tests/application/modules/telephone/controllers/AbonneControllerTest.php
@@ -314,13 +314,14 @@ class AbonneControllerTelephoneConfirmedCancelHoldTest extends AbonneControllerT
 
 
 
+
 class AbonneControllerTelephoneRenewSuccessTest extends AbonneControllerTelephoneTestCase {
   public function setUp() {
     parent::setUp();
 
     $this->_service = $this->mock()
                            ->whenCalled('prolongerPret')
-                           ->answers(true)
+                           ->answers(['statut' => true, 'erreur' => ''])
 
                            ->whenCalled('isConnected')
                            ->answers(true)
@@ -333,7 +334,7 @@ class AbonneControllerTelephoneRenewSuccessTest extends AbonneControllerTelephon
 
     Class_WebService_SIGB_VSmart::setService($this->_service);
 
-    $this->dispatch('/abonne/prolongerpret/id_pret/11', true);
+    $this->dispatch('/abonne/prolongerpret/id_pret/666_11', true);
   }
 
 
@@ -347,4 +348,10 @@ class AbonneControllerTelephoneRenewSuccessTest extends AbonneControllerTelephon
   public function shouldRedirectToFicheAbonne() {
     $this->assertRedirectTo('/abonne/fiche');
   }
+
+
+  /** @test */
+  public function flashMessengerShouldContainsLoanRenewed() {
+    $this->assertFlashMessengerContains('Votre prêt a bien été prolongé.');
+  }
 }
\ No newline at end of file
diff --git a/tests/db/UpgradeDBTest.php b/tests/db/UpgradeDBTest.php
index 501402b0624aa23fd30a723b1ec5a595c4fa1f26..ecf28c4294d7ad4df8183a7aca38c8d6d792be2e 100644
--- a/tests/db/UpgradeDBTest.php
+++ b/tests/db/UpgradeDBTest.php
@@ -177,6 +177,12 @@ abstract class UpgradeDBTestCase extends PHPUnit_Framework_TestCase {
   }
 
 
+  protected function assertFieldDefault($table, $column, $default, $message='') {
+    return $this->assertField($table, $column, $default, 'Default', $message);
+  }
+
+
+
   protected function assertField($table, $column, $expected, $field, $message = '') {
     try {
       $fields = [];
@@ -1658,4 +1664,73 @@ class UpgradeDB_333_Test extends UpgradeDBTestCase {
     $album = $this->query('select url_origine from album where id=' . static::$album_id)->fetch();
     $this->assertEquals(['url_origine' => 'https://export.1dtouch.com/oai'], $album);
   }
+}
+
+
+
+
+class UpgradeDB_334_Test extends UpgradeDBTestCase {
+  public function prepare() {
+    try {
+      $this->query('ALTER TABLE external_agenda DROP column autoharvest');
+    }
+    catch (Exception $e) {
+    }
+  }
+
+
+
+  /** @test */
+  public function columnAutoharvestShouldBePresent() {
+    $this->assertColumn('external_agenda','autoharvest');
+  }
+}
+
+
+
+
+class UpgradeDB_335_Test extends UpgradeDBTestCase {
+  public function prepare() {
+    try {
+      $this->query('alter table `batchs` drop `pick_day`');
+    } catch(Exception $e) {}
+
+    foreach([Class_Batch_ArteVOD::TYPE,
+             Class_Batch_Cyberlibris::TYPE,
+             Class_Batch_Jamendo::TYPE,
+             Class_Batch_PanierUser::TYPE]
+            as $type)
+      if (!$this->fetchBatchByType($type))
+        $this->query('insert into batchs(type, last_run) values("' . $type . '", "")');
+  }
+
+
+  protected function fetchBatchByType($type) {
+    return $this->query('select * from batchs where type="' . $type . '"')
+                ->fetch();
+  }
+
+
+  /** @test */
+  public function pickDayDefaultShouldBeAllWeekDays() {
+    $this->assertFieldDefault('batchs', 'pick_day', '1;2;3;4;5;6;0');
+  }
+
+
+  public function datas() {
+    return [[Class_Batch_ArteVOD::TYPE, '6'],
+            [Class_Batch_Cyberlibris::TYPE, '0'],
+            [Class_Batch_Jamendo::TYPE, '0'],
+            [Class_Batch_PanierUser::TYPE, '1;2;3;4;5;6;0'],
+    ];
+  }
+
+  /**
+   * @test
+   * @dataProvider datas
+   */
+  public function batchShouldHaveTypedPickDay($type, $pick_day) {
+    $batch = $this->fetchBatchByType($type);
+    $this->assertEquals($pick_day, $batch['pick_day']);
+  }
 }
\ No newline at end of file
diff --git a/tests/library/Class/Cosmogramme/Integration/PhaseBatchsTest.php b/tests/library/Class/Cosmogramme/Integration/PhaseBatchsTest.php
index 6506350642719bfbaa3db99830525f858d59cfb2..1da13472e240efd5ae2f2ddfde5590bd4bee0993 100644
--- a/tests/library/Class/Cosmogramme/Integration/PhaseBatchsTest.php
+++ b/tests/library/Class/Cosmogramme/Integration/PhaseBatchsTest.php
@@ -32,8 +32,12 @@ abstract class PhaseBatchsTestCase extends Class_Cosmogramme_Integration_PhaseTe
 
 
   protected function _prepareFixtures() {
+    $time = new TimeSourceForTest('2017-08-29');
+    Class_Batch::setTimeSource($time); // tuesday for pick_day
+
     $this->fixture('Class_Batch',
                    ['id' => 34,
+                    'pick_day' => '2',
                     'type' => 'TestingTest']);
 
     $this->_batch = $this->mock();
@@ -42,9 +46,20 @@ abstract class PhaseBatchsTestCase extends Class_Cosmogramme_Integration_PhaseTe
       ->whenCalled('run')->answers(true)
       ->whenCalled('setLogger')->answers($this->_batch);
 
+    $this->_not_runnable = $this->fixture('Class_Batch',
+                                          ['id' => 99,
+                                           'pick_day' => '3',
+                                           'type' => 'TestingNotRunnableTest']);
+
+    $this->_not_runnable_batch = $this->mock();
+    $this->_not_runnable_batch
+      ->whenCalled('getLabel')->answers('Testing Not Runnable Batch');
+
+
     $this
       ->onLoaderOfModel('Class_Batch')
-      ->whenCalled('getKnownType')->with('TestingTest')->answers($this->_batch);
+      ->whenCalled('getKnownType')->with('TestingTest')->answers($this->_batch)
+      ->whenCalled('getKnownType')->with('TestingNotRunnableTest')->answers($this->_not_runnable_batch);
   }
 
 
@@ -61,6 +76,7 @@ abstract class PhaseBatchsTestCase extends Class_Cosmogramme_Integration_PhaseTe
 
 
   public function tearDown() {
+    Class_Batch::setTimeSource(null);
     Zend_Registry::set('httpClient', $this->_registry_http_client);
     parent::tearDown();
   }
@@ -125,6 +141,12 @@ class PhaseBatchsCronRunTest extends PhaseBatchsTestCase {
   }
 
 
+  /** @test */
+  public function shouldDisplayNotRunnableBatchisNotPlanned() {
+    $this->assertLogContains('La tâche Testing Not Runnable Batch n\'est pas plannifiée aujourd\'hui');
+  }
+
+
   /**
    * @test
    * @see http://forge.afi-sa.fr/issues/28103
@@ -147,11 +169,13 @@ class PhaseBatchsCronRunWithLoggerTest extends PhaseBatchsTestCase {
   protected function _prepareFixtures() {
     $this->fixture('Class_Batch',
                    ['id' => 33,
-                    'type' => 'ThrowingBatch']);
+                    'type' => 'ThrowingBatch',
+                    'pick_day' => '1;2;3;4;5;6;0']);
 
     $this->fixture('Class_Batch',
                    ['id' => 34,
-                    'type' => 'TestingTest']);
+                    'type' => 'TestingTest',
+                    'pick_day' => '1;2;3;4;5;6;0']);
 
     $this->_batch = new Class_Cosmogramme_Integration_PhaseTestingBatch();
     $throwing = $this->mock();
diff --git a/tests/library/Class/ScriptLoaderTest.php b/tests/library/Class/ScriptLoaderTest.php
index ff8c656f0b2975477d056f6a4172681ac87bf7e1..8683dc97a21dc848478d2b4216f65196e6711818 100644
--- a/tests/library/Class/ScriptLoaderTest.php
+++ b/tests/library/Class/ScriptLoaderTest.php
@@ -207,13 +207,16 @@ class ScriptLoaderVersionHashTest extends PHPUnit_Framework_TestCase {
 
   public function setUp() {
     Class_ScriptLoader::resetInstance();
+    $scriptloadder = Class_ScriptLoader::getInstance();
+    $scriptloadder->setTimeSource(new TimeSourceForTest('2017-08-31 11:00:00'));
+
     $this->_html = Class_ScriptLoader::getInstance()
       ->addStyleSheet('public/css/nuages.css')
       ->addStyleSheet('normal.css?param=value')
       ->addScript('opac/cycle.min')
       ->html();
 
-    $this->_versionHash = md5(BOKEH_MAJOR_VERSION);
+    $this->_versionHash = $scriptloadder->getCacheHash();
   }
 
 
diff --git a/tests/library/ZendAfi/Controller/Action/Helper/ArticleListViewModeTest.php b/tests/library/ZendAfi/Controller/Action/Helper/ArticleListViewModeTest.php
index 1e7cecf5cf0fd52a96f6bb66d04f54bc382649e5..7c0c0e8a929feae4e630d3d6a14fe40bf040ad2f 100644
--- a/tests/library/ZendAfi/Controller/Action/Helper/ArticleListViewModeTest.php
+++ b/tests/library/ZendAfi/Controller/Action/Helper/ArticleListViewModeTest.php
@@ -49,18 +49,21 @@ class ArticleListViewModeTest extends ModelTestCase {
 
       ->whenCalled('findAllBy')
       ->with(['role_level' => [0, 1, 2, 3, 4, 5, 6, 7],
+              'order' => 'nom asc',
               'where' => '(login LIKE "%news%" OR nom LIKE "%news%" OR prenom LIKE "%news%" OR pseudo LIKE "%news%" OR mail LIKE "%news%" OR idabon LIKE "%news%")',
               'limitPage' => [1, 20]])
       ->answers([])
 
       ->whenCalled('findAllBy')
       ->with(['role_level' => [0, 1, 2, 3, 4, 5, 6, 7],
+              'order' => 'nom asc',
               'where' => '(login LIKE "%top%" OR nom LIKE "%top%" OR prenom LIKE "%top%" OR pseudo LIKE "%top%" OR mail LIKE "%top%" OR idabon LIKE "%top%")',
               'limitPage' => [1, 20]])
       ->answers([])
 
       ->whenCalled('findAllBy')
       ->with(['role_level' => [0, 1, 2, 3, 4, 5, 6, 7],
+              'order' => 'nom asc',
               'where' => '(login LIKE "%redac%" OR nom LIKE "%redac%" OR prenom LIKE "%redac%" OR pseudo LIKE "%redac%" OR mail LIKE "%redac%" OR idabon LIKE "%redac%")',
               'limitPage' => [1, 20]])
       ->answers([$user])
diff --git a/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php b/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php
index a8c69d0746da0dae16f5a25104118c42de312ebf..e1ef547edbcc43141c530bafd4ee9e4962070631 100644
--- a/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php
+++ b/tests/library/ZendAfi/View/Helper/Accueil/KiosqueTest.php
@@ -303,9 +303,6 @@ class ZendAfi_View_Helper_Accueil_KiosqueRequetesAsRedacteurTest extends ZendAfi
   public function setUp() {
     parent::setUp();
 
-//    Storm_Test_ObjectWrapper::onLoaderOfModel('Class_PanierNotice')
-//      ->whenCalled('findAllBy')
-//      ->answers([$this->panier_films, $this->panier_livres]);
 
     $redacteur = Class_Users::newInstanceWithId(54)
       ->beModoBib()
@@ -324,7 +321,7 @@ class ZendAfi_View_Helper_Accueil_KiosqueRequetesAsRedacteurTest extends ZendAfi
 
   /** @test **/
   public function boiteKiosqueWithAdminLoggedShouldContainsLinkToChange() {
-    $this->assertXPath($this->_html, '//div[@class="boite kiosque"]//div[@class="change_kiosque_data configuration_module"]/a[contains(@href,"admin/modules/kiosque-change-data")]');
+    $this->assertXPath($this->_html, '//div[@class="boite kiosque"]//div[@class="configuration_module"]/a[contains(@href,"admin/modules/kiosque-change-data")]');
   }
 
 
diff --git a/tests/library/ZendAfi/View/Helper/Accueil/RechSimpleTest.php b/tests/library/ZendAfi/View/Helper/Accueil/RechSimpleTest.php
index 6493d12660c8ffc7f3c5f3421fa9e5fb8583a223..6930764b9755e868c0bc070c4bb6ad7f08300710 100644
--- a/tests/library/ZendAfi/View/Helper/Accueil/RechSimpleTest.php
+++ b/tests/library/ZendAfi/View/Helper/Accueil/RechSimpleTest.php
@@ -82,7 +82,7 @@ class ZendAfi_View_Helper_Accueil_RechSimpleWithAdminTest extends ZendAfi_View_H
 
   /** @test */
   public function addBlockActionShouldBePresent() {
-    $this->assertLocalXPath('//a[contains(@href, "/admin/widget/add/after/1/division/1/id_profil/2")]');
+    $this->assertLocalXPath('//a[contains(@href, "/admin/widget/add-from-template/after/1/division/1/id_profil/2")]');
   }
 
 
diff --git a/tests/scenarios/ExternalAgendas/ExternalAgendasBatchTest.php b/tests/scenarios/ExternalAgendas/ExternalAgendasBatchTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..0bf5fd171e1a76e42500c3a3ddfb6470ce40f450
--- /dev/null
+++ b/tests/scenarios/ExternalAgendas/ExternalAgendasBatchTest.php
@@ -0,0 +1,104 @@
+<?php
+/**
+ * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved.
+ *
+ * BOKEH is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by
+ * the Free Software Foundation.
+ *
+ * There are special exceptions to the terms and conditions of the AGPL as it
+ * is applied to this software (see README file).
+ *
+ * BOKEH is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+ *
+ * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE
+ * along with BOKEH; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301  USA
+ */
+
+
+abstract class Class_Batch_ExternalAgendasBatchTestCase extends ModelTestCase {
+  protected
+    $_storm_default_to_volatile = true,
+    $_log = '',
+    $_debug_log = '';
+
+  public function setUp() {
+    parent::setUp();
+  }
+
+  public function getLogger() {
+    return $this->logger = $this->mock()
+                                ->whenCalled('log')
+                                ->willDo(
+                                         function($message, $target = '') {
+                                           if ($target == 'debug') {
+                                             $this->_debug_log .= $message . "\n";
+                                             return;
+                                           }
+                                           $this->_log .= $message;
+                                         });
+  }
+}
+
+
+
+class Class_Batch_ExternalAgendasBatchSimpleTest extends Class_Batch_ExternalAgendasBatchTestCase {
+  protected $_batch;
+
+  public function setUp() {
+    parent::setUp();
+
+
+    $this->valleiry = $this->fixture('Class_Bib',
+                                     ['id' => 1,
+                                      'libelle' => 'Valleiry']);
+
+    $events_category = $this->fixture('Class_ArticleCategorie',
+                                            ['id' => 1,
+                                             'libelle' => 'Events',
+                                             'bib' => $this->valleiry]);
+
+    $this->fixture('Class_ExternalAgenda',
+                   ['id' => 1,
+                    'label' => 'Personal Agenda',
+                    'url' => 'http://my.server.com/calendar.ics',
+                    'autoharvest' => 0,
+                    'status' => Class_Article::STATUS_VALIDATED,
+                    'category' => $events_category]);
+
+    $this->fixture('Class_ExternalAgenda',
+                   ['id' => 34,
+                    'label' => 'Extra Agenda',
+                    'url' => 'http://external.agenda.com/export?type=ics',
+                    'category' => $events_category,
+                    'id_lieu' => 0,
+                    'autoharvest' => 1,
+                    'status' => Class_Article::STATUS_VALIDATED]);
+
+    Class_WebService_ICalendar::setDefaultHttpClient($this->mock()
+                                                     ->whenCalled('open_url')
+                                                     ->with('http://external.agenda.com/export?type=ics')
+                                                     ->answers(file_get_contents(__DIR__.'/ical-event-second.ics')));
+
+    $this->_batch = new Class_Batch_ExternalAgenda();
+    $this->_batch->setLogger($this->getLogger());
+    $this->_batch->run();
+  }
+
+
+  /** @test */
+  public function labelShouldBeHarvestExternalAgenda() {
+    $this->assertEquals('Moissonner les agendas externes', $this->_batch->getLabel());
+  }
+
+
+  /** @test */
+  public function logShouldDisplayNumberOfCreatedEvents() {
+    $this->assertEquals("Extra Agenda:\nNombre d\'événements créés : 4\nNombre d\'événements mis à jour : 0\n",$this->_log);
+
+  }
+}
diff --git a/tests/scenarios/ExternalAgendas/ExternalAgendasTest.php b/tests/scenarios/ExternalAgendas/ExternalAgendasTest.php
index 6d7f510e48b7e4c454f7db1f6d2810f1eb8b3f44..3d45ce45151c0d5be99a0ee9b567a5bd2c4dc373 100644
--- a/tests/scenarios/ExternalAgendas/ExternalAgendasTest.php
+++ b/tests/scenarios/ExternalAgendas/ExternalAgendasTest.php
@@ -338,6 +338,13 @@ class ExternalAgendasAdminEditWithWorkflowTest extends ExternalAgendasAdminTestC
   }
 
 
+  /** @test */
+  public function checkboxAutomaticHarvestShouldBePresent() {
+    $this->assertXPathContentContains('//form//label[@for="autoharvest"]','Moissonnage automatique');
+    $this->assertXPath('//form//input[@type="checkbox"][@name="autoharvest"]');
+  }
+
+
   /** @test */
   public function titleShouldBeAjouterUnNouvelAgenda() {
     $this->assertXPathContentContains('//h1', 'Modifier un agenda');