diff --git a/FEATURES/17352 b/FEATURES/17352
new file mode 100644
index 0000000000000000000000000000000000000000..e13be545ba6967f6834fbc8e8be68712906c8af2
--- /dev/null
+++ b/FEATURES/17352
@@ -0,0 +1,10 @@
+        '17352' =>
+            ['Label' => $this->_('Visualisation du fichier envoyé par le SIGB pour chaque notice'),
+             'Desc' => $this->_('Bokeh conserve le dernier fichier reçu du SIGB pour chaque notice. Celui-ce est téléchargeable à partir d'Inspector Gadget. Nécessite une activation.'),
+             'Image' => '',
+             'Video' => '',
+             'Category' => 'Catalogue',
+             'Right' => function($feature_description, $user) {return true;},
+             'Wiki' => '',
+             'Test' => '',
+             'Date' => '2018-04-13'],
\ No newline at end of file
diff --git a/VERSIONS b/VERSIONS
index 8eacdade72453045ffd08e59c69275675a3ec30f..719ca016d32ea16c3bc9800a4dde0350e179c7f7 100644
--- a/VERSIONS
+++ b/VERSIONS
@@ -1,3 +1,15 @@
+09/04/2018 - v7.12.10
+
+ - ticket #68179 : Ressources numériques : Ajout du connecteur StoryPlay*r
+ 
+ - ticket #68184 : Ressources numériques : LeKiosk : prise en charge du moissonage en HTTP.
+ 
+ - ticket #73311 : Ajout d'indicateurs dans le rapport système
+ 
+ - ticket #72999 : Boite bibliothèque : correction des liens de pagination.
+ 
+
+
 29/03/2018 - v7.12.9
 
  - ticket #73332 : Boite agenda : correction des liens du calendrier et des filtres.
diff --git a/VERSIONS_WIP/17352 b/VERSIONS_WIP/17352
new file mode 100644
index 0000000000000000000000000000000000000000..8f017955532bd82806a731016421b5e9bf1c10f4
--- /dev/null
+++ b/VERSIONS_WIP/17352
@@ -0,0 +1 @@
+ - ticket #17352 : Cosmogramme: Bokeh conserve le dernier fichier reçu du SIGB pour chaque notice. Celui-ce est téléchargeable à partir d'Inspector Gadget. Nécessite une activation.
\ No newline at end of file
diff --git a/application/modules/admin/controllers/IndexController.php b/application/modules/admin/controllers/IndexController.php
index 19ea63e21fc1eae6a88d13885fe30d43535ec0af..c1e165ed32375d357bb7817c89ae62caa798aeb4 100644
--- a/application/modules/admin/controllers/IndexController.php
+++ b/application/modules/admin/controllers/IndexController.php
@@ -51,18 +51,9 @@ class Admin_IndexController extends ZendAfi_Controller_Action {
 
 
   public function adminvarAction() {
-    $existing_variables = Class_AdminVar::findAllBy(['order' => 'CLEF']);
-    $existing_clefs = [];
-    foreach ($existing_variables as $var)
-      $existing_clefs[] = $var->getId();
-
-    // creer les variables manquantes
-    foreach (Class_AdminVar::getKnownVarsKeys() as $name)
-      if (!in_array($name, $existing_clefs))
-        $existing_variables[] = Class_AdminVar::set($name, Class_AdminVar::getValueOrDefault($name));
-
+    Class_AdminVar::init();
     $this->view->titre = $this->_('Gestion des variables');
-    $this->view->vars = Class_AdminVar::filterByUserRole($existing_variables);
+    $this->view->vars = Class_AdminVar::filterByUserRole(Class_AdminVar::findAllBy(['order' => 'CLEF']));
   }
 
 
diff --git a/application/modules/api/controllers/ErrorController.php b/application/modules/api/controllers/ErrorController.php
new file mode 100644
index 0000000000000000000000000000000000000000..13821b4bec0aed5126c92ee988f1e88865636829
--- /dev/null
+++ b/application/modules/api/controllers/ErrorController.php
@@ -0,0 +1,31 @@
+<?php
+/**
+ * Copyright (c) 2012, 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 Api_ErrorController extends Zend_Controller_Action {
+  public function errorAction() {
+    $errors = $this->_getParam('error_handler');
+
+    $this->_helper->json(['error'   => 'invalid_request',
+                          'message' => $errors->exception->getMessage()]);
+
+    $this->_response->setHttpResponseCode($errors->exception->getCode());
+  }
+}
diff --git a/application/modules/api/controllers/UserController.php b/application/modules/api/controllers/UserController.php
index 68f8695d4cd58e0b0a31cc5db7df053fd8a1ac51..d67f3182243b44e4b37788969f621102d9f57994 100644
--- a/application/modules/api/controllers/UserController.php
+++ b/application/modules/api/controllers/UserController.php
@@ -21,31 +21,53 @@
 
 
 class Api_UserController extends ZendAfi_Controller_Action {
+  public function preDispatch() {
+    parent::preDispatch();
+    $this->_authenticate();
+  }
+
+
+  public function accountAction() {
+    $user = Class_Users::getIdentity();
+    $this->_helper
+      ->json(['account' => ['label' => $user->getNomAff(),
+                            'card' => ['id'=> $user->getIdabon(),
+                                       'expire_at' => $user->getDateFin()]
+              ]]);
+  }
+
+
   public function loansAction() {
+    $this->view->loans = (new Class_User_Cards(Class_Users::getIdentity()))->getLoans();
+  }
+
+
+  protected function _authenticate() {
     if (Class_AdminVar_OAuthAcceptHTTP::shouldRejectRequest($this->_request))
-      return $this->_error($this->_('Protocole HTTPS obligatoire'));
+      return $this->_error($this->_('Protocole HTTPS obligatoire'), 403);
 
     if (!$authorization = $this->_request->getHeader('authorization'))
-      return $this->_error($this->_('Autorisation non spécifiée'));
+      return $this->_error($this->_('Autorisation non spécifiée'), 401);
 
     $parts = explode(' ', $authorization);
     if ($parts[0] !== 'Bearer')
-      return $this->_error($this->_('Jeton d\'autorisation non fourni'));
+      return $this->_error($this->_('Jeton d\'autorisation non fourni'), 401);
 
     if (!$token = Class_User_ApiToken::findFirstBy(['token' => $parts[1]]))
-      return $this->_error($this->_('Jeton d\'autorisation invalide'));
+      return $this->_error($this->_('Jeton d\'autorisation invalide'), 403);
 
     if (!$user = $token->getUser())
-      return $this->_error($this->_('Utilisateur non trouvé'));
+      return $this->_error($this->_('Utilisateur non trouvé'), 403);
 
     ZendAfi_Auth::getInstance()->logUser($user);
-    $this->view->loans = (new Class_User_Cards($user))->getLoans();
   }
 
 
-  protected function _error($message) {
-    $this->view->message = $message;
-    return $this->renderScript('invalid_request.pjson');
+  protected function _error($message, $code) {
+    Zend_Controller_Front::getInstance()
+      ->getPlugin('Zend_Controller_Plugin_ErrorHandler')
+      ->setErrorHandlerModule('api');
+
+    throw new Zend_Controller_Action_Exception($message, $code);
   }
 }
-?>
\ No newline at end of file
diff --git a/application/modules/api/views/scripts/invalid_request.pjson b/application/modules/api/views/scripts/invalid_request.pjson
deleted file mode 100644
index 153d898f6f513c3f6da36abd64232443fbbe0c02..0000000000000000000000000000000000000000
--- a/application/modules/api/views/scripts/invalid_request.pjson
+++ /dev/null
@@ -1,4 +0,0 @@
-{
-	"error":"invalid_request",
-	"message":"<?php echo $this->message ?>"
-}
\ No newline at end of file
diff --git a/application/modules/opac/controllers/AbonneController.php b/application/modules/opac/controllers/AbonneController.php
index 38f4a80f32e763387b0390f37853b50d5443ab23..456d0eb482d38caddaa656c7a64e752849be043e 100644
--- a/application/modules/opac/controllers/AbonneController.php
+++ b/application/modules/opac/controllers/AbonneController.php
@@ -989,13 +989,8 @@ class AbonneController extends ZendAfi_Controller_Action {
       $datas[] = $exemplaire->toUnimarcIso2709();
     }
 
-    $response = $this->_response;
-    $response->clearAllHeaders();
     $filename = 'prets_' . $this->_user->getId() . '-' . uniqid() . '.txt';
-
-    $response->setHeader('Content-Type', 'application/octet-stream; name="' . $filename . '"', true);
-    $response->setHeader('Content-Disposition', 'attachment; filename="'.$filename.'"', true);
-    $response->setBody(implode('', $datas));
+    $this->_helper->binaryDownload(implode($datas), $filename);
   }
 
 
diff --git a/application/modules/opac/controllers/RechercheController.php b/application/modules/opac/controllers/RechercheController.php
index 5c7b3423157387a6ecb88445987d045d085b3fe3..15bb40bf4991c5e2c45fe46806200ecc40534a8c 100644
--- a/application/modules/opac/controllers/RechercheController.php
+++ b/application/modules/opac/controllers/RechercheController.php
@@ -746,32 +746,21 @@ class RechercheController extends ZendAfi_Controller_Action {
 
 
   public function downloadRecordAction() {
-    if (!$record = Class_Notice::find($this->_getParam('id', 0))) {
-      $this->_redirect('/');
-      return;
-    }
+    if (!$record = Class_Notice::find($this->_getParam('id', 0)))
+      return $this->_redirect('/');
 
-    $this->_helper->getHelper('ViewRenderer')->setNoRender(true);
-    if ($layout = Zend_Layout::getMvcInstance())
-      $layout->disableLayout();
-
-    $response = Zend_Controller_Front::getInstance()->getResponse();
-    $response->canSendHeaders(true);
+    $this->_helper->binaryDownload($record->getUnimarc(), $record->getId() . '.txt');
+  }
 
-    $response->clearAllHeaders();
-    $response->setHeader('Content-Type', 'application/octet-stream; name="' . $record->getId() . '.txt"', true);
-    $response->setHeader('Content-Transfer-Encoding', 'binary', true);
-    $unimarc = $record->getUnimarc();
-    $response->setHeader('Content-Length', strlen($unimarc), true);
-    $response->setHeader('Expires', '0');
-    $response->setHeader('Cache-Control', 'no-cache, must-revalidate');
-    $response->setHeader('Pragma', 'no-cache');
 
-    $response->setHeader('Content-Disposition', 'attachment; filename="' . $record->getId() . '.txt"', true);
+  public function downloadItemAction() {
+    if (!$item = Class_Exemplaire::find($this->_getParam('id', 0)))
+      return $this->_redirect('/');
 
-    $response->sendHeaders();
+    if (!$raw_record = Class_Cosmogramme_Integration_RawRecord::findFor($item))
+      return $this->_redirect('/');
 
-    echo $unimarc;
+    $this->_helper->binaryDownload($raw_record->getData(), $raw_record->getName());
   }
 
 
diff --git a/cosmogramme/php/classes/classe_notice_integration.php b/cosmogramme/php/classes/classe_notice_integration.php
index 3dd347cea0eceae8d54a828d7d88372bb628ffa5..ac0c46bd3834f70c135aad0381d00c90e19f2319 100644
--- a/cosmogramme/php/classes/classe_notice_integration.php
+++ b/cosmogramme/php/classes/classe_notice_integration.php
@@ -75,6 +75,9 @@ class notice_integration {
 
   protected $_codif_provider;
 
+  protected $_raw_data;
+
+
   public function __construct() {
     $this->indexation = indexation::getInstance();
     $this->filtrer_fulltext = Class_CosmoVar::get("filtrer_fulltext");
@@ -146,6 +149,8 @@ class notice_integration {
   public function traiteNotice($data) {
     global $sql;
 
+    $this->_raw_data = $data;
+
     $id_bib = $this->id_bib;
 
     if(!$this->analyseur)
@@ -156,7 +161,7 @@ class notice_integration {
 
     unset($this->notice);
 
-    if(!$this->analyseur->ouvrirNotice($data,$this->id_profil,$this->sigb,$this->type_doc_force)) {
+    if(!$this->analyseur->ouvrirNotice($data, $this->id_profil, $this->sigb, $this->type_doc_force)) {
       $this->erreur=$this->analyseur->getLastError();
       return 0;
     }
@@ -489,6 +494,7 @@ class notice_integration {
 
     $notice = Class_Notice::newInstance($this->noticeToDBEnreg());
     $notice->save();
+
     $this->statut = static::RECORD_INSERT;
     return $notice->getId();
   }
@@ -746,6 +752,11 @@ class notice_integration {
     if($record = Class_Notice::find($id_notice))
       $record->setDateMaj(dateDuJour(2))->save();
 
+    (new Class_Cosmogramme_Integration_RawRecord($this->_raw_data,
+                                                 $this->notice['id_origine'],
+                                                 $this->id_int_bib))
+      ->save();
+
     Class_Exemplaire::clearCache();
     Class_Notice::clearCache();
   }
diff --git a/library/Class/AdminVar.php b/library/Class/AdminVar.php
index 298164d4b1802eb4722f45ab7a54aa95883760f5..d71b943b41e24ff34b676797435ea7cd3c9d6c99 100644
--- a/library/Class/AdminVar.php
+++ b/library/Class/AdminVar.php
@@ -26,6 +26,25 @@ class Class_AdminVarLoader extends Storm_Model_Loader {
   /** @var array */
   protected $all_vars;
 
+  protected $_inited = false;
+
+  public function init() {
+    if ($this->_inited)
+      return $this;
+
+    $keys = (new Storm_Model_Collection(Class_AdminVar::findAllBy(['order' => 'CLEF'])))
+      ->collect('clef')
+      ->getArrayCopy();
+
+    foreach (Class_AdminVar::getKnownVarsKeys() as $key)
+      if (!in_array($key, $keys))
+        Class_AdminVar::set($key, Class_AdminVar::getValueOrDefault($key));
+
+    $this->_inited = true;
+
+    return $this;
+  }
+
 
   /**
    * @param string $name
@@ -379,7 +398,8 @@ class Class_AdminVarLoader extends Storm_Model_Loader {
   protected function _getCosmogrammeVars() {
     return [
             'DATE_LAST_FULL_INTEGRATION_USERS' => Class_AdminVar_Meta::newDefault($this->_('Date du dernier import total des abonnés (modifié par cosmogramme)')),
-            'INTEGRATIONS_TOO_LONG_ALERT_THRESHOLD' => Class_AdminVar_Meta::newDefault($this->_('Seuil d\'alerte en heures pour détecter que les traitements d\'intégration prennent trop de temps. Par défaut: 2', ['value' => 2]))
+            'INTEGRATIONS_TOO_LONG_ALERT_THRESHOLD' => Class_AdminVar_Meta::newDefault($this->_('Seuil d\'alerte en heures pour détecter que les traitements d\'intégration prennent trop de temps. Par défaut: 2', ['value' => 2])),
+            'KEEP_LAST_SIGB_RECORD' => Class_AdminVar_Meta::newOnOff($this->_('Conserve le dernier fichier transmis par le SIGB pour chaque notice. Celui-ci est téléchargeable à partir de l\'Inspecteur Gadget.'))->bePrivate(),
     ];
   }
 
@@ -945,6 +965,11 @@ class Class_AdminVarLoader extends Storm_Model_Loader {
   public function isCustomSearchFormEnabled() {
     return Class_AdminVar::isModuleEnabled('CUSTOM_SEARCH_FORM');
   }
+
+
+  public function shouldKeepLastSigbRecord() {
+    return Class_AdminVar::isModuleEnabled('KEEP_LAST_SIGB_RECORD');
+  }
 }
 
 
@@ -956,6 +981,7 @@ class Class_AdminVar extends Storm_Model_Abstract {
 
   protected $_fixed_id = true;
 
+
   public function getValeur() {
     return $this->_get('valeur');
   }
diff --git a/library/Class/Album.php b/library/Class/Album.php
index 21b8a435071d78e935fb282a0651d4ab25878c0b..f5b71a52083ee76579afa1f19b0eb9cac73c616d 100644
--- a/library/Class/Album.php
+++ b/library/Class/Album.php
@@ -683,15 +683,17 @@ class Class_Album extends Storm_Model_Abstract {
    */
   public function receiveFile() {
     $to_delete = [$this->getVignettePath(), $this->getThumbnailPath()];
-    $on_update = function($old_file, $new_file) use ($to_delete) {
-      if ($old_file && $old_file != $new_file)
+
+    $on_update = function($old_file, $new_file) use ($to_delete)
+      {
+        if ($old_file && $old_file != $new_file)
         foreach($to_delete as $item)
           $this->getFileSystem()->unlink($item);
 
-      $this->createThumbnail();
+        $this->createThumbnail();
 
-      return true;
-    };
+        return true;
+      };
 
     $handler = $this->getUploadHandler('fichier')
                     ->setAllowedExtensions(['jpg', 'gif', 'png', 'jpeg', 'bro']);
@@ -1630,4 +1632,14 @@ class Class_Album extends Storm_Model_Abstract {
   public static function getPublicDomain() {
     return (new self())->_('Domaine public');
   }
+
+
+  public function getRootCategory() {
+    return $this->getCategorie()->getRootParent();
+  }
+
+
+  public function getRootCategoryId() {
+    return $this->getRootCategory()->getId();
+  }
 }
\ No newline at end of file
diff --git a/library/Class/Cosmogramme/Integration/PhaseNotice.php b/library/Class/Cosmogramme/Integration/PhaseNotice.php
index 98e0668c8e1820405d4ef2851dc5b24988b8a729..df330376e2705f14621f7383c40a77dbcb974724 100644
--- a/library/Class/Cosmogramme/Integration/PhaseNotice.php
+++ b/library/Class/Cosmogramme/Integration/PhaseNotice.php
@@ -127,4 +127,4 @@ class Class_Cosmogramme_Integration_PhaseNotice
   public static function setServiceRunner($runner) {
     static::$_service_runner = $runner;
   }
-}
\ No newline at end of file
+}
diff --git a/library/Class/Cosmogramme/Integration/RawRecord.php b/library/Class/Cosmogramme/Integration/RawRecord.php
new file mode 100644
index 0000000000000000000000000000000000000000..adf999966e019d9eed2c7d4d3eae893229b65567
--- /dev/null
+++ b/library/Class/Cosmogramme/Integration/RawRecord.php
@@ -0,0 +1,123 @@
+<?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_Cosmogramme_Integration_RawRecord {
+  use Trait_Versionable;
+
+  protected
+    $_library_id,
+    $_data,
+    $_id,
+    $_date;
+
+
+  public static function hasVersionFor($item) {
+    return static::isActive()
+      ? static::_newFor($item)->hasVersion()
+      : false;
+  }
+
+
+  public static function findFor($item) {
+    if (!static::isActive())
+      return;
+
+    $instance = static::_newFor($item);
+    return ($instance = $instance->loadLastVersion())
+      ? $instance
+      : null;
+  }
+
+
+  public static function isActive() {
+    return Class_AdminVar::shouldKeepLastSigbRecord();
+  }
+
+
+  protected static function _newFor($item) {
+    return new static('', $item->getIdOrigine(), $item->getIdIntBib());
+  }
+
+
+  public function __construct($data, $id, $library_id) {
+    $this->_library_id = $library_id;
+    $this->_data = $data;
+    $this->_id = $id;
+  }
+
+
+  public function getId() {
+    return $this->_id;
+  }
+
+
+  public function getLibraryId() {
+    return $this->_library_id;
+  }
+
+
+  public function getData() {
+    return $this->_data;
+  }
+
+
+  public function getName() {
+    return 'raw_record_'
+      . implode('_',
+                [$this->_library_id,
+                 $this->_id,
+                 $this->_humanDate()]);
+  }
+
+
+  public function save() {
+    if (!$this->_isValid())
+      return;
+
+    $this->newVersionWith(['id' => $this->_id,
+                           'library_id' => $this->_library_id,
+                           'data' => $this->_data]);
+  }
+
+
+  protected function _isValid() {
+    return static::isActive() && is_string($this->_data);
+  }
+
+
+  public function loadLastVersion() {
+    if (!static::isActive()
+        || (!$version = $this->getLastVersion()))
+      return;
+
+    $this->_data = $version->getData()['data'];
+    $this->_date = $version->getDate();
+    return $this;
+  }
+
+
+  protected function _humanDate() {
+    return $this->_date
+      ? date('Y-m-d', $this->_date)
+      : '';
+  }
+}
diff --git a/library/Class/DigitalResource.php b/library/Class/DigitalResource.php
index 6641cc19f68a8282d4de16e2b5e96f4bb91b7f68..974c24ea25cd4bb93239551082c89447ebb80398 100644
--- a/library/Class/DigitalResource.php
+++ b/library/Class/DigitalResource.php
@@ -175,7 +175,8 @@ class Class_DigitalResource extends Class_Entity {
 
     if (is_readable($this->getBaseDir() . '/' . $type . '/View/Helper/Album.php')) {
       $class_name = $type . '_View_Helper_Album';
-      $helper = (new $class_name())->setView($view);
+      $helper = $this->build($class_name,  $this->configFor($type))
+        ->setView($view);
 
       return $helper->album($album);
     }
diff --git a/library/Class/DigitalResource/AlbumViewHelper.php b/library/Class/DigitalResource/AlbumViewHelper.php
new file mode 100644
index 0000000000000000000000000000000000000000..f1e5e7faa196f85313418e5d3f3c607bd71619ba
--- /dev/null
+++ b/library/Class/DigitalResource/AlbumViewHelper.php
@@ -0,0 +1,47 @@
+<?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_DigitalResource_AlbumViewHelper extends ZendAfi_View_Helper_BaseHelper {
+  protected $_config;
+
+  public function __construct($config) {
+    parent::__construct();
+    $this->_config = $config;
+  }
+
+
+  public function album($album) {
+    if(!$album)
+      return '';
+
+    $url = $this->view->url(['module' => 'opac',
+                             'controller' => 'modules',
+                             'action' => $this->_config->getSsoAction(),
+                             'album_id' => $album->getId()],
+                            null,
+                            true);
+
+    return $this->view->tagAnchor($url,
+                                  $this->_('Accéder à "%s" dans un nouvel onglet', $album->getTitre()),
+                                  ['target' => '_blank']);
+  }
+}
\ No newline at end of file
diff --git a/library/Class/DigitalResource/Batch.php b/library/Class/DigitalResource/Batch.php
index 0293ea57131135fffc4e45f4f81ac86b01500c00..9bb71cb82bb27b8a1a41a5c0eae3482df5e7533e 100644
--- a/library/Class/DigitalResource/Batch.php
+++ b/library/Class/DigitalResource/Batch.php
@@ -29,8 +29,7 @@ class Class_DigitalResource_Batch extends Class_Batch_RessourceNumerique {
 
 
   protected function _getService() {
-    $service = $this->_config->getService();
-    return new $service($this->_config);
+    return $this->_config->getServiceInstance();
   }
 
 
diff --git a/library/Class/DigitalResource/Config.php b/library/Class/DigitalResource/Config.php
index 085771f4cf6c99d79c15bcac1d4e51ed9402f8b1..6e0eb99b83a4e4b6534c7c282f273497ddcac115 100644
--- a/library/Class/DigitalResource/Config.php
+++ b/library/Class/DigitalResource/Config.php
@@ -26,11 +26,16 @@ class Class_DigitalResource_Config extends Class_Entity {
     HARVEST = 'HARVEST',
     SSO = 'SSO';
 
-  use Trait_Translator, Trait_PermissionTargetable;
+  use Trait_Translator, Trait_PermissionTargetable, Trait_TimeSource;
 
 
   public static function getName() {
-    return (new Class_DigitalResource_Name())->getName(static::class);
+    return static::getNameFor(static::class);
+  }
+
+
+  public static function getNameFor($class_name) {
+    return (new Class_DigitalResource_Name())->getName($class_name);
   }
 
 
@@ -39,8 +44,8 @@ class Class_DigitalResource_Config extends Class_Entity {
   }
 
 
-  public static function getInstanceFromController($controller) {
-    return Class_DigitalResource::getInstance()->configFor((new Class_DigitalResource_Name())->getNameFromController($controller));
+  public static function getInstanceFor($class_name) {
+    return Class_DigitalResource::getInstance()->configFor(static::getNameFor($class_name));
   }
 
 
@@ -86,6 +91,7 @@ class Class_DigitalResource_Config extends Class_Entity {
 
 
   public function getAdminVarsInstances() {
+    Class_AdminVar::init();
     $vars = [];
     foreach($this->getAdminVars() as $key => $meta)
       $vars [] = $this->getDigitalResource()->getAdminVarInstance($key);
@@ -224,7 +230,18 @@ class Class_DigitalResource_Config extends Class_Entity {
   }
 
 
+  public function getHarvestUrl($page = 1) {
+    return '';
+  }
+
+
   public function getRecordSsoUrl($user, $record) {
     return $this->getAlbumSsoUrl($suer, $record->getAlbum());
   }
+
+
+  public function getServiceInstance() {
+    $service = $this->getService();
+    return new $service($this);
+  }
 }
\ No newline at end of file
diff --git a/library/Class/DigitalResource/Controller.php b/library/Class/DigitalResource/Controller.php
index 55fda6522f2edea03ad308231948f38af0bf0902..311a8676ee81e04b0a6d88277cfca3be9c5084a6 100644
--- a/library/Class/DigitalResource/Controller.php
+++ b/library/Class/DigitalResource/Controller.php
@@ -24,7 +24,7 @@ class Class_DigitalResource_Controller extends ZendAfi_Controller_Action {
 
   public function preDispatch() {
     parent::preDispatch();
-    $this->_config = Class_DigitalResource_Config::getInstanceFromController(get_called_class());
+    $this->_config = Class_DigitalResource_Config::getInstanceFor(static::class);
 
     if ($this->_config->getSsoAction() == $this->_request->getActionName())
       return $this->_forward('sso',
diff --git a/library/Class/DigitalResource/Name.php b/library/Class/DigitalResource/Name.php
index 0268721d61b3a9a1d2b7405f637c7ed587a2fc53..203a70cfe47289e0bd2c1262751b468ab6bcca2a 100644
--- a/library/Class/DigitalResource/Name.php
+++ b/library/Class/DigitalResource/Name.php
@@ -22,20 +22,13 @@
 
 class Class_DigitalResource_Name {
 
-  public function getPath($class) {
-    return dirname((new ReflectionClass($class))->getFileName());
+  public function getPath($instance) {
+    return dirname((new ReflectionClass($instance))->getFileName());
   }
 
 
   public function getName($class) {
-    $path = array_reverse(explode('/', static::getPath($class)));
+    $path = explode('_', $class);
     return array_shift($path);
   }
-
-
-  public function getNameFromController($class) {
-    $path = array_reverse(explode('/', dirname(static::getPath($class))));
-    return array_shift($path);
-  }
-}
-?>
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/library/Class/DigitalResource/Service.php b/library/Class/DigitalResource/Service.php
index 6c620c786d649febb211f71be05ba45959222145..9d92f8e9ea08e04a6e13a3c964cc665f02b0aa1c 100644
--- a/library/Class/DigitalResource/Service.php
+++ b/library/Class/DigitalResource/Service.php
@@ -23,10 +23,17 @@
 class Class_DigitalResource_Service extends Class_WebService_BibNumerique_Abstract {
   protected $_config;
 
+
+  public static function getInstance() {
+    return Class_DigitalResource_Config::getInstanceFor(static::class)->getServiceInstance();
+  }
+
+
   public function __construct($config) {
     $this->_config = $config;
   }
 
+
   protected function getDocType() {
     return $this->_config->getDocType();
   }
@@ -41,4 +48,3 @@ class Class_DigitalResource_Service extends Class_WebService_BibNumerique_Abstra
     return $this->_config->getName();
   }
 }
-?>
\ No newline at end of file
diff --git a/library/Class/Feature/List.php b/library/Class/Feature/List.php
index ef9531f8b800218d4e61e41fe3fa1ff79b3201ca..8629c524c8385380063810e243dd7ce985c8d041 100644
--- a/library/Class/Feature/List.php
+++ b/library/Class/Feature/List.php
@@ -193,6 +193,18 @@ class Class_Feature_List {
              'Test' => '',
              'Date' => '2017-12-25'],
 
+            '68179' =>
+            ['Label' => $this->_('Connecteur StoryPlay*r'),
+             'Desc' => $this->_('%s est une ressource numérique proposant des centaines d\'albums jeunesse à lire ou à écouter.',
+	     '<a href="https://www.storyplayr.com/">StoryPlay*R</a>'),
+             'Image' => 'https://www.storyplayr.com/images/v2/logo.png',
+             'Video' => 'https://www.youtube.com/watch?v=tmcT39fZDos',
+             'Category' => $this->_('Bibliothèque numérique'),
+             'Right' => function($feature_description, $user) {return true;},
+             'Wiki' => 'http://wiki.bokeh-library-portal.org/index.php?title=StoryPlayR',
+             'Test' => '',
+             'Date' => '2018-03-23'],
+
     ];
   }
 }
\ No newline at end of file
diff --git a/library/Class/Systeme/Report.php b/library/Class/Systeme/Report.php
index 376f190e6996d2177d6906b5f09c4969be62d33e..b9e0002245d245ccccb88d83fc1a6f286faeb297 100644
--- a/library/Class/Systeme/Report.php
+++ b/library/Class/Systeme/Report.php
@@ -79,6 +79,8 @@ class Class_Systeme_Report_Headers extends Class_Systeme_Report_Abstract {
                         $this->_('Base de données'),
                         array_at('dbname',
                                  Zend_Db_Table::getDefaultAdapter()->getConfig()));
+
+    $visitor->visitData('php', $this->_('PHP'), PHP_VERSION);
   }
 }
 
@@ -222,7 +224,8 @@ class Class_Systeme_Report_Libraries extends Class_Systeme_Report_Abstract {
                                  'address' => $this->_('Adresse'),
                                  'postal_code' =>  $this->_('CP'),
                                  'city' => $this->_('Ville'),
-                                 'coordinates' => $this->_('Coordonnées')]);
+                                 'coordinates' => $this->_('Coordonnées'),
+                                 'redmine_login' => $this->_('Compte forge')]);
 
     foreach(Class_Bib::findAll() as $library)
       $this->_reportLibrary($library, $visitor);
@@ -236,7 +239,8 @@ class Class_Systeme_Report_Libraries extends Class_Systeme_Report_Abstract {
                            'postal_code' => $library->getCp(),
                            'city' => $library->getVille(),
                            'coordinates' => ['latitude' => $library->getLatitude(),
-                                             'longitude' => $library->getLongitude()]]);
+                                             'longitude' => $library->getLongitude()],
+                           'redmine_login' => $library->getRedmineLogin()]);
   }
 }
 
diff --git a/library/Class/Upload.php b/library/Class/Upload.php
index 1ad7a6ece4a080d3893d531a9c753c5a01724ede..0bcc25ecb8e2a46be9e114cba126feb5bb4b7785 100644
--- a/library/Class/Upload.php
+++ b/library/Class/Upload.php
@@ -296,6 +296,7 @@ class Class_Upload {
       $this->setError($this->_('Transfert impossible, champ de fichier introuvable'));
       return false;
     }
+
     if ($this->hasErrorCodeOnFile()) {
       $this->setError($this->getPhpFileUploadErrors()[$_FILES[$this->_name]['error']]);
       return false;
@@ -323,18 +324,24 @@ class Class_Upload {
       return false;
     }
 
-    $parts = explode('.', $_FILES[$this->_name]['name']);
-    $ext = end($parts);
 
-    $allowedExtensions = $this->getAllowedExtensions();
-    if ((0 < count($allowedExtensions))
-        && (!in_array($ext, $allowedExtensions))) {
-      $this->setError(sprintf($this->_('Le fichier n\'est pas de type %s'), implode(', ', $allowedExtensions)));
+    if(!$this->_isExtensionValid()) {
+      $this->setError(sprintf($this->_('Le fichier n\'est pas de type %s'), implode(', ', $this->getAllowedExtensions())));
       return false;
     }
 
     return true;
   }
-}
 
-?>
\ No newline at end of file
+
+  protected function _isExtensionValid() {
+    $allowedExtensions = $this->getAllowedExtensions();
+    if(0 == count($allowedExtensions))
+      return true;
+
+    $parts = explode('.', $_FILES[$this->_name]['name']);
+    $ext = end($parts);
+
+    return in_array($ext, $allowedExtensions);
+  }
+}
diff --git a/library/Class/Version/FilePersistence/RawRecord.php b/library/Class/Version/FilePersistence/RawRecord.php
new file mode 100644
index 0000000000000000000000000000000000000000..c1eb7d049daf2d866a7d6de59baedcaa31440829
--- /dev/null
+++ b/library/Class/Version/FilePersistence/RawRecord.php
@@ -0,0 +1,43 @@
+<?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_Version_FilePersistence_RawRecord extends Class_Version_FilePersistence {
+  protected function _getMaxStack() {
+    return 1;
+  }
+
+
+  protected function _getFolderPath($versions) {
+    return $this->_getRootPath()
+      . implode('/', [static::BASE_PATH,
+                      $this->_sanitize($versions->getName()),
+                      $this->_sanitize($versions->getLibraryId()),
+                      $this->_sanitize($versions->getKey())]);
+  }
+
+
+  protected function _fileName() {
+    return
+      $this->getTimeSource()->dateFormat('Y-m-d_His')
+      . '.json';
+  }
+}
diff --git a/library/Class/Versions/RawRecord.php b/library/Class/Versions/RawRecord.php
new file mode 100644
index 0000000000000000000000000000000000000000..b09950195f1cbdb96fb155ee7da77a91a9a39cee
--- /dev/null
+++ b/library/Class/Versions/RawRecord.php
@@ -0,0 +1,41 @@
+<?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_Versions_RawRecord extends Class_Versions {
+  protected static
+    $_file_persistence = 'Class_Version_FilePersistence_RawRecord';
+
+  protected
+    $_name = 'raw_record',
+    $_library_id;
+
+
+  public function __construct($model) {
+    parent::__construct($model);
+    $this->_library_id = $model->getLibraryId();
+  }
+
+
+  public function getLibraryId() {
+    return $this->_library_id;
+  }
+}
diff --git a/library/Class/WebService/BibNumerique/Vignette.php b/library/Class/WebService/BibNumerique/Vignette.php
index a233c79ad656685264d9539ca52eafc30115eac3..f663be676c9a3f80023632e825eea8ce56aa4021 100644
--- a/library/Class/WebService/BibNumerique/Vignette.php
+++ b/library/Class/WebService/BibNumerique/Vignette.php
@@ -20,10 +20,14 @@
  */
 
 class Class_WebService_BibNumerique_Vignette extends Class_WebService_Abstract {
+  use Trait_Translator;
+
   protected static $_instance;
-  protected $_file_writer;
-  protected $_updload_mover;
-  protected $_url_validator;
+
+  protected
+    $_file_writer,
+    $_updload_mover,
+    $_url_validator;
 
 
   public static function getInstance() {
@@ -50,29 +54,86 @@ class Class_WebService_BibNumerique_Vignette extends Class_WebService_Abstract {
 
 
   public function updateAlbum($album) {
-    $url_poster = $album->getPoster();
-    if (!($url_poster && $this->_url_validator->isValid($url_poster)))
-      return $this;
+    if ($this->downloadPoster($album))
+      $album->save();
+
+    return $this;
+  }
+
 
-    if (!$image = $this->httpGet($url_poster))
-      return $this;
+  public function isUrlValid($url) {
+    if(!$url)
+      return false;
+
+    return $this->_url_validator->isValid($url);
+  }
 
-    $parts = explode('/', $url_poster);
+
+  public function downloadPoster($album) {
+    if(!$album)
+      return;
+
+    $url = $album->getPoster();
+
+    if (!$this->isUrlValid($url)) {
+      $this->getLogger()->log($this->_('URL "%s" invalide', $url));
+      return;
+    }
+
+    if (!$poster = $this->httpGet($url)) {
+      $this->getLogger()->log($this->_('Impossible de télécharger l\'image "%s" sur le serveur', $url));
+      return;
+    }
+
+    if(!$filename = $this->_initFilename($url, $poster, $album))
+      return;
+
+    $album->setUploadMover('fichier', $this->_upload_mover);
+
+    if(!$album->receiveFile()) {
+      $this->getLogger()->log($this->_('Impossible d\'ajouter l\'image "%s" à l\'album "%s"',
+                                       $filename,
+                                       $album->getTitre()));
+      $this->getLogger()->log(implode(BR, $album->getErrors()));
+      return;
+    }
+
+    return $this;
+  }
+
+
+  protected function _initFilename($url, $poster, $album) {
+    $parts = explode('/', $url);
     $filename = array_pop($parts);
-    $temp_name = PATH_TEMP.$filename;
-    if (false === $this->getFileWriter()->putContents($temp_name, $image))
-      return $this;
+    $filename = $this->_formatFilename($filename, $album);
+    $temp_name = PATH_TEMP . $filename;
+
+    if (false === $this->getFileWriter()->putContents($temp_name, $poster)) {
+      $this->getLogger()->log($this->_('Impossible d\'enregister l\'image "%s" dans "%s"',
+                                         $url,
+                                         $temp_name));
+      return;
+    }
 
     $_FILES['fichier'] = ['name' => $filename,
                           'tmp_name' => $temp_name,
-                          'size' => strlen($image)];
+                          'size' => strlen($poster)];
 
-    $album->setUploadMover('fichier', $this->_upload_mover);
+    return $filename;
+  }
 
-    $album->receiveFile();
-    $album->save();
 
-    return $this;
+  protected function _formatFilename($filename, $album) {
+    $parts = explode('.', $filename);
+    return (1 == count($parts))
+      ? $filename . '_' . Storm_Inflector::camelize($album->getTitre()) . '.jpeg'
+      : $filename;
+  }
+
+
+  public function getDownloadPosterLog($album) {
+    $this->downloadPoster($album);
+    return $this->getLogger()->getMessages();
   }
 
 
@@ -86,6 +147,4 @@ class Class_WebService_BibNumerique_Vignette extends Class_WebService_Abstract {
       $this->_file_writer = new Class_FileWriter();
     return $this->_file_writer;
   }
-}
-
-?>
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/library/Class/WebService/SimpleWebClient.php b/library/Class/WebService/SimpleWebClient.php
index 88ad992c0d5d7e53715fbe53402ebc1360eacffa..07b849f666b98f6bcc7143634e6f7f03323dbd96 100644
--- a/library/Class/WebService/SimpleWebClient.php
+++ b/library/Class/WebService/SimpleWebClient.php
@@ -59,6 +59,20 @@ class Class_WebService_SimpleWebClient {
   }
 
 
+  public function postRawData($url, $datas, $encoding, $options = []) {
+    $httpClient = $this->getHttpClient();
+    $httpClient->resetParameters();
+    $httpClient->setUri($url);
+    $httpClient->setMethod(Zend_Http_Client::POST);
+    $httpClient->setRawData($datas, $encoding);
+
+    if (isset($options['headers']))
+      $httpClient->setHeaders($options['headers']);
+
+    return $httpClient->request()->getBody();
+  }
+
+
   public function getLastRequest() {
     return $this->_last_http_client
       ? $this->_last_http_client->getLastRequest()
diff --git a/library/Trait/TreeNode.php b/library/Trait/TreeNode.php
index 130ba85cf094503925fc53bacf6e9f0eaf77f4ab..dd7e4fa7f9a65e245f163d1b5e5a81594da8adc8 100644
--- a/library/Trait/TreeNode.php
+++ b/library/Trait/TreeNode.php
@@ -81,6 +81,12 @@ trait Trait_TreeNode {
   }
 
 
+  public function getRootParent() {
+    $parents = $this->getParentsAndSelf();
+    return array_shift($parents);
+  }
+
+
   abstract public function getParent();
 
   abstract public function getChildren();
diff --git a/library/ZendAfi/Controller/Action/Helper/BinaryDownload.php b/library/ZendAfi/Controller/Action/Helper/BinaryDownload.php
new file mode 100644
index 0000000000000000000000000000000000000000..df355b09a7e1127209223f92311fadc61fbdf48a
--- /dev/null
+++ b/library/ZendAfi/Controller/Action/Helper/BinaryDownload.php
@@ -0,0 +1,51 @@
+<?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_Action_Helper_BinaryDownload
+ extends Zend_Controller_Action_Helper_Abstract {
+
+  public function direct($content, $filename) {
+    Zend_Controller_Action_HelperBroker::getStaticHelper('viewRenderer')
+      ->setNoRender(true);
+
+    if ($layout = Zend_Layout::getMvcInstance())
+      $layout->disableLayout();
+
+    $response = $this->getResponse();
+    $response->canSendHeaders(true);
+
+    $response->clearAllHeaders();
+    $response->setHeader('Content-Type', 'application/octet-stream; name="' . $filename . '"', true);
+    $response->setHeader('Content-Transfer-Encoding', 'binary', true);
+
+    $response->setHeader('Content-Length', strlen($content), true);
+    $response->setHeader('Expires', '0');
+    $response->setHeader('Cache-Control', 'no-cache, must-revalidate');
+    $response->setHeader('Pragma', 'no-cache');
+
+    $response->setHeader('Content-Disposition', 'attachment; filename="' . $filename . '"', true);
+
+    $response->sendHeaders();
+
+    echo $content;
+  }
+}
diff --git a/library/ZendAfi/View/Helper/Accueil/Library.php b/library/ZendAfi/View/Helper/Accueil/Library.php
index 0aa7fba3731e8778214556144f0a1b15be848cf1..8d1770ce667c322dc995340332ba99fc577b9120 100644
--- a/library/ZendAfi/View/Helper/Accueil/Library.php
+++ b/library/ZendAfi/View/Helper/Accueil/Library.php
@@ -333,7 +333,8 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba
                     'controller' => 'bib',
                     'action' => 'widget-page',
                     'id_module' => $this->id_module,
-                    'id_division' => $this->division];
+                    'id_division' => $this->division,
+                    'render' => 'ajax'];
 
     $paginator = (new Zend_Paginator(new Zend_Paginator_Adapter_Null(count($items))))
       ->setItemCountPerPage(max($items_by_page, 1))
diff --git a/library/ZendAfi/View/Helper/DigitalResource/Dashboard.php b/library/ZendAfi/View/Helper/DigitalResource/Dashboard.php
index da5d8f85ca40d2cae00556d1ba5d8ad2f347e207..5661467ed657980f6a37bc5edba8a97eeb0704a5 100644
--- a/library/ZendAfi/View/Helper/DigitalResource/Dashboard.php
+++ b/library/ZendAfi/View/Helper/DigitalResource/Dashboard.php
@@ -101,9 +101,13 @@ class ZendAfi_View_Helper_DigitalResource_Dashboard extends ZendAfi_View_Helper_
                                                                 'label' => $this->_('Modifier "%s"', $model->getClef())]]);
                      });
 
-    return
-      $this->_tag('h3', $this->_('Paramétrage'))
-      . $this->view->renderTable($description, $this->_config->getAdminVarsInstances(), ['sorter' => true]);
+    $html = ($table = $this->view->renderTable($description,
+                                               $this->_config->getAdminVarsInstances(),
+                                               ['sorter' => true]))
+      ? $table
+      : $this->_tag('p', $this->_('Veuillez vérifier le fichier config.php de la ressource pour pouvoir gérer le paramétrage'), ['class' => 'error']);
+
+    return $this->_tag('h3', $this->_('Paramétrage')) . $html;
   }
 
 
@@ -236,6 +240,18 @@ class ZendAfi_View_Helper_DigitalResource_Dashboard extends ZendAfi_View_Helper_
                                           $user->getLogin()))
       . $this->view->tagAnchor($url, $url, ['target' => '_blank']);
 
+    if(!$this->_config->getSsoValidateUrl()) {
+      $html [] = $this->_tag('p', $this->_('Cette ressource ne prend pas en charge la validation du ticket de connexion SSO'), ['class' => 'error']) ;
+    }
+
+    if($this->_config->getSsoValidateUrl()) {
+      $url = $this->_config->validateUrlFor($user);
+      $html [] = $this->_tag('h4', $this->_('URL de validation du ticket de connexion générée pour l\'utilisateur "%s"',
+                                            $user->getLogin()))
+        . $this->view->tagAnchor($url, $url, ['target' => '_blank']);
+    }
+
+
     if(!$album = Class_Album::findFirstby(['type_doc_id' => $this->_config->getDocType()]))
       return implode($html);
 
@@ -315,24 +331,81 @@ class ZendAfi_View_Helper_DigitalResource_Dashboard extends ZendAfi_View_Helper_
                                                                 'anchorOptions' => ['data-popup' => 'true']],]);
                      });
 
-    $albums_link = ($cat = Class_AlbumCategorie::findFirstBy(['libelle' => $this->_config->getDocTypeLabel()]))
+    if($batch)
+      $html [] = $this->view->renderTable($description, [new Class_Batch_Definition($this->_config->getBatchInstance())]);
+
+    $html [] = ($url = $this->_config->getHarvestUrl())
+      ? ($this->_tag('h4',
+                    $this->_('URL de moissonnage générée pour la première page'))
+         . $this->view->tagAnchor($url,
+                                  $url,
+                                  ['target' => '_blank']))
+      : $this->_tag('p', $this->_('Cette ressource ne prend pas en charge l\'affichage du l\'url de moissonnage'), ['class' => 'error']);
+
+    $html [] = $this->_tag('h4',
+                           $this->_('Image du type de document: ')
+                           . $this->view->tagImg($this->view->url(['module' => 'opac',
+                                                                   'controller' => 'digital-resource',
+                                                                   'action' => 'typedoc-icon',
+                                                                   'id' => $this->_config->getName()])));
+
+    $count = Class_Album::countBy(['type_doc_id' => $this->_config->getDocType()]);
+    $first_album = Class_Album::findFirstBy(['type_doc_id' => $this->_config->getDocType(),
+                                             'order' => 'titre asc']);
+    $albums_link = $count
       ? $this->view->tagAnchor($this->view->absoluteUrl(['module' => 'admin',
                                                          'controller' => 'album',
                                                          'action' => 'index',
-                                                         'cat_id' => $cat->getId()], null, true),
+                                                         'cat_id' => $first_album->getRootCategoryId()], null, true),
                                $this->_('Voir les albums'),
                                ['target' => '_blank'])
       : '';
 
-    if($batch)
-      $html [] = $this->view->renderTable($description, [new Class_Batch_Definition($this->_config->getBatchInstance())]);
-
-    $html [] = ($count = Class_Album::countBy(['type_doc_id' => $this->_config->getDocType()]))
-      ? $this->_tag('p',
-                    $this->_('Nombre d\'albums présents : %d', $count))
+    $html [] = $count
+      ? $this->_tag('h4',
+                    $this->_('Nombre d\'albums présents dans Bokeh : %d', $count))
       . $albums_link
       : $this->_tag('p', $this->_('Aucun album présent pour cette ressource'), ['class' => 'error']);
 
+    $html [] = $count
+      ? ($this->_tag('h4',
+                     $this->_('Tentative de vignettage de l\'album "%s" : ', $first_album->getTitre()))
+         . $this->view->tagAnchor($first_album->getPoster(),
+                             $this->_('Image source : %s', $first_album->getPoster()),
+                             ['target' => '_blank'])
+         . $this->_renderThumbnailerLog($first_album))
+      : $this->_tag('p', $this->_('Le vignettage n\'est pas testable sans album'), ['class' => 'error']);
+
+    $count = Class_Notice::countBy(['type_doc' => $this->_config->getDocType()]);
+
+    $records_link = $count ?
+      $this->view->tagAnchor($this->view->absoluteUrl(['module' => 'opac',
+                                                       'controller' => 'recherche',
+                                                       'action' => 'simple',
+                                                       'facette' => 'T' . $this->_config->getDocType()], null, true),
+                               $this->_('Voir les notices'),
+                             ['target' => '_blank'])
+      : '';
+
+
+    $html [] = $count
+      ? $this->_tag('h4',
+                    $this->_('Nombre de notices présentes dans Bokeh : %d', $count))
+      . $records_link
+      : $this->_tag('p', $this->_('Aucune notice présente pour cette ressource'), ['class' => 'error']);
+
     return implode($html);
   }
+
+
+  protected function _renderThumbnailerLog($album) {
+    $thumbnailer = Class_WebService_BibNumerique_Vignette::getInstance();
+    $thumbnailer->setLogger(new Class_Log);
+
+    if(!$errors = $thumbnailer->getDownloadPosterLog($album))
+      return $this->_tag('p', $this->_('Vignette de l\'album : '
+                                       . $this->view->tagImg(Class_Url::absolute($album->getThumbnailUrl()))));
+
+    return $this->_tag('p', implode(BR, $errors), ['class' => 'error']);
+  }
 }
\ No newline at end of file
diff --git a/library/ZendAfi/View/Helper/Notice/Unimarc.php b/library/ZendAfi/View/Helper/Notice/Unimarc.php
index ae5e038dd35176244664760d1bb35da0eb25bd9b..d0fc9699269513a95ca5c09096219b45a7c93e96 100644
--- a/library/ZendAfi/View/Helper/Notice/Unimarc.php
+++ b/library/ZendAfi/View/Helper/Notice/Unimarc.php
@@ -127,7 +127,9 @@ class ZendAfi_View_Helper_Notice_Unimarc extends Zend_View_Helper_HtmlElement {
       $html .= $this->_tag('strong', $label . ' : ')
       . call_user_func([$item, $getter])
       . $this->_tag('br');
-    $html .= $this->renderItem995($item);
+
+    $html .= $this->renderItem995($item)
+      . $this->renderItemDownload($item);
 
     return $this->_tag('h3', $item->getBibLibelle() . ' ' . $item->getCodeBarres())
       . $this->_tag('div', $html);
@@ -139,6 +141,25 @@ class ZendAfi_View_Helper_Notice_Unimarc extends Zend_View_Helper_HtmlElement {
   }
 
 
+  protected function renderItemDownload($item) {
+    if (!Class_Cosmogramme_Integration_RawRecord::hasVersionFor($item))
+      return '';
+
+    $download_url = $this->view->url(['controller' => 'recherche',
+                                      'action' => 'download-item',
+                                      'id' => $item->getId()],
+                                     null, true);
+
+    $button = (new Class_Entity)
+      ->setText($this->_('Télécharger le fichier d\'origine'))
+      ->setImage(Class_Admin_Skin::current()->renderActionIconOn('down', $this->view))
+      ->setAttribs(['style' => 'float:right;',
+                    'onclick' => 'document.location.href=\'' . $download_url .'\'']);
+
+    return $this->view->admin_Button($button);
+  }
+
+
   public function __call($name, $args) {
     if ('visit' != substr($name, 0, 5))
       throw new RuntimeException('Call to unknown method ' . get_class($this) . '::' . $name);
diff --git a/library/ZendAfi/View/Helper/RenderTable.php b/library/ZendAfi/View/Helper/RenderTable.php
index e5693da8dea3649bf9197ea1b37f2823035374fa..8322e61859640ac32046e7c8604fbee9fb81d01e 100644
--- a/library/ZendAfi/View/Helper/RenderTable.php
+++ b/library/ZendAfi/View/Helper/RenderTable.php
@@ -30,6 +30,9 @@ class ZendAfi_View_Helper_RenderTable extends ZendAfi_View_Helper_BaseHelper {
     if(!$grouped_models)
       return '';
 
+    if(is_array($grouped_models) && (!array_filter($grouped_models)))
+      return '';
+
     $grouped_models = (is_array($grouped_models) || is_a($grouped_models, 'ArrayObject'))
       ? new Class_TableDescription_Models($grouped_models)
       : $grouped_models;
diff --git a/library/digital_resources/Assimil/Config.php b/library/digital_resources/Assimil/Config.php
index 22069bf8275778552bdadfc9ae9a1954bdf4d658..a5d01d4fd0675913747cb1536def38105eaa99c3 100644
--- a/library/digital_resources/Assimil/Config.php
+++ b/library/digital_resources/Assimil/Config.php
@@ -59,4 +59,9 @@ class Assimil_Config extends Class_DigitalResource_Config {
   public function getSsoUrl($user) {
     return Class_AdminVar::getValueOrDefault($this->withNameSpace('SSO_URL'));
   }
+
+
+  public function getHarvestUrl($page = 1) {
+    return 'http://fr.assimil.com/extraits/catalogueXML/catalogue_XML_Assimil.xml';
+  }
 }
diff --git a/library/digital_resources/Assimil/Service.php b/library/digital_resources/Assimil/Service.php
index 8c19b783ce0d59745ac0adc4b499c3e71fb073fc..3b089f2a1dc1700a70a45bc909ad22d94870e19d 100644
--- a/library/digital_resources/Assimil/Service.php
+++ b/library/digital_resources/Assimil/Service.php
@@ -21,9 +21,6 @@
 
 class Assimil_Service extends Class_DigitalResource_Service {
 
-
-  const XML_URL = 'http://fr.assimil.com/extraits/catalogueXML/catalogue_XML_Assimil.xml';
-
   const EXTERNAL_RECORD_BASE_URL = 'https://biblio.assimil.com/assimilweb/FrontControler?nomMethod=catalogue.consulter&idProduit=';
 
   const IMAGE_URL = 'http://fr.assimil.com/images/produit/%06d-front-G-GRAND.png';
@@ -46,7 +43,7 @@ class Assimil_Service extends Class_DigitalResource_Service {
 
 
   protected function loadPage($page_number = 1) {
-    $xml = $this->httpGet(static::XML_URL);
+    $xml = $this->httpGet($this->_config->getHarvestUrl());
 
     $this->_parser = new Assimil_Service_XMLParser();
     $this->_parser->parseXML($xml);
diff --git a/library/digital_resources/Assimil/tests/AssimilTest.php b/library/digital_resources/Assimil/tests/AssimilTest.php
index 5ede329fdab5365025ca0d5fb1c7d98990bdbdf3..678435c1d19b8eb8ae45a841f10b54de0c600152 100644
--- a/library/digital_resources/Assimil/tests/AssimilTest.php
+++ b/library/digital_resources/Assimil/tests/AssimilTest.php
@@ -288,7 +288,7 @@ abstract class AssimilServiceTestCase extends ModelTestCase {
       ->whenCalled('open_url')
       ->answers(true);
 
-    $this->_service = new Assimil_Service(new Assimil_Config(new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(), 'Assimil')));
+    $this->_service = Assimil_Service::getInstance();
     Assimil_Service::setDefaultHttpClient($this->_http_client);
     $this->_service->harvest();
     Class_Album::clearCache();
@@ -410,7 +410,7 @@ class AssimilServiceSecondHarvestTest extends AssimilServiceTestCase {
       ->whenCalled('open_url')
       ->answers(true);
 
-    $service = new Assimil_Service(new Assimil_Config(new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(), 'Assimil')));
+    $service = Assimil_Service::getInstance();
     Assimil_Service::setDefaultHttpClient($http_client);
     $service->harvest();
     Class_Album::clearCache();
@@ -544,7 +544,7 @@ class AssimilModuleIndexControllerTest extends AbstractControllerTestCase {
   /** @test */
   public function indexActionShouldContainsNumberOfAlbums() {
     $this->dispatch('/Assimil_Plugin/index', true);
-    $this->assertXPathContentContains('//p', 'Nombre d\'albums présents : 1');
+    $this->assertXPathContentContains('//h4', 'Nombre d\'albums présents dans Bokeh : 1');
   }
 
 
diff --git a/library/digital_resources/LaSourisQuiRaconte/Config.php b/library/digital_resources/LaSourisQuiRaconte/Config.php
index 7d86b828288694ee0018bda60259deb1d66c2b97..b8c1e11096d820a0002e64a472dcd947dfd3ad1c 100644
--- a/library/digital_resources/LaSourisQuiRaconte/Config.php
+++ b/library/digital_resources/LaSourisQuiRaconte/Config.php
@@ -72,7 +72,7 @@ class LaSourisQuiRaconte_Config extends Class_DigitalResource_Config {
   }
 
 
-  public function getExportUrl() {
+  public function getHarvestUrl($page = 1) {
     return static::LSQR_URL . '/espaces/export_bokeh.php?token=bokeh_export';
   }
 }
\ No newline at end of file
diff --git a/library/digital_resources/LaSourisQuiRaconte/Service.php b/library/digital_resources/LaSourisQuiRaconte/Service.php
index f691c1df61ad47328f58f7c1e04952e8711d3eee..da6e09f8cc51017b3da15765306397ff4fd5ff13 100644
--- a/library/digital_resources/LaSourisQuiRaconte/Service.php
+++ b/library/digital_resources/LaSourisQuiRaconte/Service.php
@@ -24,7 +24,7 @@ class LaSourisQuiRaconte_Service extends Class_DigitalResource_Service {
     $_stories = [];
 
   protected function loadPage($page_number = 1) {
-    $xml = $this->httpGet($this->_config->getExportUrl());
+    $xml = $this->httpGet($this->_config->getHarvestUrl());
 
     $this->_parser = new LaSourisQuiRaconte_Service_XMLParser();
     $this->_parser->parseXML($xml);
diff --git a/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php b/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php
index 6cebb813c9b96fd0be1e729d079892c59b79bdca..2c66afcfb442bf4b8d44891e96d657c4eb4e5c14 100644
--- a/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php
+++ b/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php
@@ -36,10 +36,7 @@ class LaSourisQuiRaconteFixtures {
                         ->answers('a picture');
     LaSourisQuiRaconte_Service::setDefaultHttpClient($http_client);
 
-    return new LaSourisQuiRaconte_Service(
-                    new LaSourisQuiRaconte_Config(
-                                new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(),
-                                                                  'LaSourisQuiRaconte')));
+    return LaSourisQuiRaconte_Service::getInstance();
   }
 
 
diff --git a/library/digital_resources/Lekiosk/Config.php b/library/digital_resources/Lekiosk/Config.php
index 1e29ca98f7e6871291daad88d2ecfe7eb7b3fe9f..715ebe060b7d22adec5e0ff45fa35984e3f0f1bf 100644
--- a/library/digital_resources/Lekiosk/Config.php
+++ b/library/digital_resources/Lekiosk/Config.php
@@ -38,11 +38,14 @@ class Lekiosk_Config extends Class_DigitalResource_Config {
             'AdminVars' => [
                             'ID' => Class_AdminVar_Meta::newDefault($this->_('Identifiant fournit par LeKiosk'))->bePrivate(),
                             'SSO_MODE' => Class_AdminVar_Meta::newCombo($this->_('Type de SSO lekiosk.com'),
-                                                                                ['options' => ['selectOptions' => ['label' => $this->_('Mode d\'authentification'),
-                                                                                                                   'multioptions' => ['' => 'Lien',
-                                                                                                                                      'CAS' => 'CAS']]]])->bePrivate(),
-                            'FTP_LOGIN' => Class_AdminVar_Meta::newDefault($this->_('Identifiant du compte FTP fournit par LeKiosk'))->bePrivate(),
-                            'FTP_PASSWORD' => Class_AdminVar_Meta::newDefault($this->_('Mot de passe du compte FTP fournit par LeKiosk'))->bePrivate(),
+                                                                        ['options' => ['selectOptions' => ['label' => $this->_('Mode d\'authentification'),
+                                                                                                           'multioptions' => ['' => 'Lien',
+                                                                                                                              'CAS' => 'CAS']]]])->bePrivate(),
+                            'FTP_LOGIN' => Class_AdminVar_Meta::newDefault($this->_('Identifiant du compte FTP fournit par LeKiosk (déprécié)'))->bePrivate(),
+                            'FTP_PASSWORD' => Class_AdminVar_Meta::newDefault($this->_('Mot de passe du compte FTP fournit par LeKiosk (déprécié)'))->bePrivate(),
+                            'HTTP_LOGIN' => Class_AdminVar_Meta::newDefault($this->_('Identifiant du compte HTTP fournit par LeKiosk'))->bePrivate(),
+                            'HTTP_PASSWORD' => Class_AdminVar_Meta::newDefault($this->_('Mot de passe du compte HTTP fournit par LeKiosk'))->bePrivate(),
+                            'HARVEST_URL' => Class_AdminVar_Meta::newDefault($this->_('URL de moissonage de la ressource LeKiosk'))->bePrivate(),
             ],
 
             'SsoAction' => true,
@@ -70,4 +73,32 @@ class Lekiosk_Config extends Class_DigitalResource_Config {
   public function isEnabled() {
     return 0 < $this->getAdminVar('ID');
   }
+
+
+  public function getHarvestUrl($page = 1) {
+    return $this->isHttpApiEnabled()
+      ? $this->_httpHarvestUrl($page)
+      : $this->_ftpHarvestUrl($page);
+  }
+
+
+  protected function _httpHarvestUrl($page) {
+    return $this->getAdminVar('HARVEST_URL') . '/publications/flow';
+  }
+
+
+  protected function _ftpHarvestUrl($page) {
+    $date = date('dmY', $this->getCurrentTime());
+    return sprintf('ftp://%s:%s@ftp.lekiosk.com/lekiosque_%s.xml',
+                $this->getAdminVar('FTP_LOGIN'),
+                $this->getAdminVar('FTP_PASSWORD'),
+                $date);
+  }
+
+
+  public function isHttpApiEnabled() {
+    return $this->getAdminVar('HTTP_LOGIN')
+      && $this->getAdminVar('HTTP_PASSWORD')
+      && $this->getAdminVar('HARVEST_URL');
+  }
 }
diff --git a/library/digital_resources/Lekiosk/Service.php b/library/digital_resources/Lekiosk/Service.php
index 4874ac50e598e6dbc60b5f2573f6318c572f1227..489bcba14f8fab1b6ac1a6667bb5ce9b90b251f0 100644
--- a/library/digital_resources/Lekiosk/Service.php
+++ b/library/digital_resources/Lekiosk/Service.php
@@ -32,7 +32,8 @@ class Lekiosk_Service extends Class_DigitalResource_Service {
 
 
   protected function loadPage($page_number = 1) {
-    $xml = $this->getFileSystem()->file_get_contents($this->_getCatalogueUrl());
+    $url = $this->_config->getHarvestUrl($page_number);
+    $xml = $this->_getXML($url);
 
     $this->_parser = new Lekiosk_Service_Parser();
     $this->_parser->parseXML($xml);
@@ -47,16 +48,6 @@ class Lekiosk_Service extends Class_DigitalResource_Service {
   }
 
 
-  protected function _getCatalogueUrl() {
-    $date = date('dmY', $this->getCurrentTime());
-    return sprintf('ftp://%s:%s@ftp.lekiosk.com/lekiosque_%s.xml',
-                   Lekiosk_Config::getInstance()->getAdminVar('FTP_LOGIN'),
-                   Lekiosk_Config::getInstance()->getAdminVar('FTP_PASSWORD'),
-                   $date);
-
-  }
-
-
   public function getPageCount() {
     return 1;
   }
@@ -65,4 +56,43 @@ class Lekiosk_Service extends Class_DigitalResource_Service {
   public function getRessourcesNumeriques() {
     return $this->_albums;
   }
+
+
+  protected function _getXML($url) {
+    if(!$this->_config->isHttpApiEnabled())
+      return $this->getFileSystem()->file_get_contents($url);
+
+    if(!$token = $this->_getToken())
+      return '';
+
+    return $this->httpGet($url,
+                          ['headers' => ['Authorization' => 'JWT '.$token]]);
+  }
+
+
+  protected function _getToken() {
+    if(!$params = json_encode(['username' => $this->_config->getAdminVar('HTTP_LOGIN'),
+                               'userpwd' => $this->_config->getAdminVar('HTTP_PASSWORD')]))
+      return;
+
+    $http_client = $this->getHttpClient();
+    if(!$response = $http_client
+      ->postRawData($this->_config->getAdminVar('HARVEST_URL') . '/login',
+                    $params,
+                    'application/json'))
+      return;
+
+    if(!$json = json_decode($response, true))
+      return;
+
+    if(!array_key_exists('result', $json))
+      return;
+
+    if(!$result = $json['result'])
+      return;
+
+    return array_key_exists('token', $result)
+      ? $result['token']
+      : null;
+  }
 }
\ No newline at end of file
diff --git a/library/digital_resources/Lekiosk/Service/Parser.php b/library/digital_resources/Lekiosk/Service/Parser.php
index 947593ecd9d7d980f21da945197aaf72f75548f3..a06ffa2539148900f28650aecc58df88398a9d67 100644
--- a/library/digital_resources/Lekiosk/Service/Parser.php
+++ b/library/digital_resources/Lekiosk/Service/Parser.php
@@ -31,6 +31,10 @@ class Lekiosk_Service_Parser {
 
 
   public function startData($attribs) {
+    $year = Lekiosk_Config::getInstance()->isHttpApiEnabled()
+      ? explode(' ', $attribs['RELEASEDATE'])[3]
+      : explode('-', $attribs['RELEASEDATE'])[0];
+
     $album =  new Lekiosk_Service_Album();
     $album
       ->setId($attribs['PUBLICATIONID'])
@@ -40,7 +44,7 @@ class Lekiosk_Service_Parser {
       ->addPoster($attribs['COVERURL'])
       ->setEditeur($attribs['EDITEUR'])
       ->addMatiere($attribs['CATEGORIES'])
-      ->setYear(explode('-', $attribs['RELEASEDATE'])[0])
+      ->setYear($year)
     ;
     $this->_albums->append($album);
   }
@@ -50,7 +54,9 @@ class Lekiosk_Service_Parser {
     $date = strtotime($attribs['RELEASEDATE']);
     $date = strftime('%e %B %Y', $date);
     return sprintf('%s n°%s : %s',
-                   $attribs['PUBLICATIONTITLE'],
+                   (Lekiosk_Config::getInstance()->isHttpApiEnabled()
+                    ? $attribs['ISSUETITLE']
+                    : $attribs['PUBLICATIONTITLE']),
                    $attribs['ISSUENUMBER'],
                    $date);
   }
diff --git a/library/digital_resources/Lekiosk/tests/LeKioskTest.php b/library/digital_resources/Lekiosk/tests/LeKioskTest.php
index bd14d04f72c2ff164c4c7743519a1196c3924239..d7a445c30a4c96fd41a34d77c026ce508022ef01 100644
--- a/library/digital_resources/Lekiosk/tests/LeKioskTest.php
+++ b/library/digital_resources/Lekiosk/tests/LeKioskTest.php
@@ -41,8 +41,7 @@ class LekioskAdminVars {
 
 abstract class LeKioskLinkModeLinkTestCase extends ModelTestCase {
   protected
-    $_storm_default_to_volatile = true,
-    $_lekiosk_config;
+    $_storm_default_to_volatile = true;
 
 
   public function setUp() {
@@ -53,10 +52,6 @@ abstract class LeKioskLinkModeLinkTestCase extends ModelTestCase {
                                     'mail_site' => '']);
 
     LekioskAdminVars::activate();
-
-    $this->_lekiosk_config =
-      new Assimil_Config(new Class_DigitalResource_Wrapper (Class_DigitalResource::getInstance(), 'LeKiosk'));
-    $this->_module_menu = new Class_DigitalResource_ModuleMenu($this->_lekiosk_config);
   }
 }
 
@@ -271,12 +266,12 @@ abstract class LeKioskServiceTestCase extends AbstractControllerTestCase {
                         ->whenCalled('open_url')
                         ->answers(null);
 
-    $this->_service = new Lekiosk_Service(new Lekiosk_Config(new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(), 'Lekiosk')));
+    $config = Lekiosk_Config::getInstance();
+    $config->setTimeSource(new TimeSourceForTest('2017-02-06 10:00:00'));
 
+    $this->_service = new Lekiosk_Service($config);
     Lekiosk_Service::setDefaultHttpClient($http_client);
-
     $this->_service->setFileSystem($file_system);
-    $this->_service->setTimeSource(new TimeSourceForTest('2017-02-06 10:00:00'));
     $this->_service->harvest();
     Class_Album::clearCache();
     $this->_10_national_sport = Class_Album::find(1);
@@ -547,4 +542,68 @@ class LekioskJsonReport extends ZendAfi_View_Helper_Status_TestCase {
                          ],
                         $this->_report['digital_connectors']);
   }
-}
\ No newline at end of file
+}
+
+
+
+
+class LeKioskServiceHttpHarvestingTestCase extends AbstractControllerTestCase {
+
+  protected $_storm_default_to_volatile = true;
+
+
+  public function setUp() {
+    parent::setUp();
+
+    Class_AdminVar::set('Lekiosk_ID', '29');
+    Class_AdminVar::set('Lekiosk_HTTP_LOGIN', 'FOIX');
+    Class_AdminVar::set('Lekiosk_HTTP_PASSWORD', 'PWD');
+    Class_AdminVar::set('Lekiosk_HARVEST_URL', 'https://apipros.lekiosk.com');
+
+    $token_json = file_get_contents(__DIR__. '/token.json');
+    $catalogue_xml = file_get_contents(__DIR__. '/catalogue_from_http.xml');
+
+    $http_client = $this->mock()
+                        ->whenCalled('postRawData')
+                        ->with('https://apipros.lekiosk.com/login',
+                               '{"username":"FOIX","userpwd":"PWD"}','application/json')
+                        ->answers($token_json)
+
+                        ->whenCalled('open_url')
+                        ->with('https://apipros.lekiosk.com/publications/flow',
+                               ['headers' => ['Authorization' => 'JWT eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MjY2MjAxNiwibmFtZSI6Illvbm5lQGdtYWlsLmNvbSIsImV4cCI6MTUxNzM5OTE0M30.qZuwpsrZmk95LU0XYKPBFqpJJ4wxOVyZnJ_Gt3panxw']])
+                        ->answers($catalogue_xml)
+
+                        ->whenCalled('open_url')
+                        ->answers(null);
+
+    Lekiosk_Service::setDefaultHttpClient($http_client);
+
+    $config = Lekiosk_Config::getInstance();
+    $config->setTimeSource(new TimeSourceForTest('2017-02-06 10:00:00'));
+
+    $service = new Lekiosk_Service($config);
+    $service->harvest();
+
+    Class_Album::clearCache();
+  }
+
+
+  /** @test */
+  public function contextShouldExpectation() {
+    $this->assertEquals(3, Class_Album::countBy(['type_doc_id' => 'Lekiosk']));
+  }
+
+
+  /** @test */
+  public function firstAlbumYearShouldBe2018() {
+    $this->assertEquals('2018', Class_Album::find(1)->getAnnee());
+  }
+
+
+  /** @test */
+  public function firstAlbumTitleShouldBe10NationalSport() {
+    $this->assertEquals('Le 10 Sport National n°431 : 11 janvier 2018', Class_Album::find(1)->getTitre());
+  }
+
+}
diff --git a/library/digital_resources/Lekiosk/tests/catalogue_from_http.xml b/library/digital_resources/Lekiosk/tests/catalogue_from_http.xml
new file mode 100644
index 0000000000000000000000000000000000000000..139996aebc5e03bc3181325c714abe4ffc08c53a
Binary files /dev/null and b/library/digital_resources/Lekiosk/tests/catalogue_from_http.xml differ
diff --git a/library/digital_resources/Lekiosk/tests/token.json b/library/digital_resources/Lekiosk/tests/token.json
new file mode 100644
index 0000000000000000000000000000000000000000..53c53a4850f8c1e9caf8c69a6d98302ecb4cb212
--- /dev/null
+++ b/library/digital_resources/Lekiosk/tests/token.json
@@ -0,0 +1,2 @@
+{"success":true,"result":{"username":"test@test.com","token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpZCI6MjY2MjAxNiwibmFtZSI6Illvbm5lQGdtYWlsLmNvbSIsImV4cCI6MTUxNzM5OTE0M30.qZuwpsrZmk95LU0XYKPBFqpJJ4wxOVyZnJ_Gt3panxw","authenticationType":3,"infos":{"userId":1661016,"userIdinscription":11132,"userName":"test@test.com","bibliothequeIp":888,"bibliothequeAccount":"account@bib.fr","idBouquet":2136,"storeId":1,"credits":4994,"creditsPerUser":5000}}}
+
diff --git a/library/digital_resources/Musicme/Config.php b/library/digital_resources/Musicme/Config.php
index e608a63d0b2821b148b2e7393112c2708f840fb1..f38d15d987d290e2e4cdb832d659477530b88f3e 100644
--- a/library/digital_resources/Musicme/Config.php
+++ b/library/digital_resources/Musicme/Config.php
@@ -77,4 +77,9 @@ class Musicme_Config extends Class_DigitalResource_Config {
   public function isEnabled() {
     return  '' != $this->getAdminVar('BIB_ID');
   }
+
+
+  public function getHarvestUrl($page = 1) {
+    return $this->getAdminVar('EXPORT_URL');
+  }
 }
diff --git a/library/digital_resources/Musicme/Service.php b/library/digital_resources/Musicme/Service.php
index 029b6c48970fd817852fe9c0bf06a21b91af602d..3763bfb9e6ced6a122cc5f79ed650bf17609dd63 100644
--- a/library/digital_resources/Musicme/Service.php
+++ b/library/digital_resources/Musicme/Service.php
@@ -25,35 +25,31 @@ class Musicme_Service extends Class_DigitalResource_Service {
     $_albums = [];
 
 
-  /* Fonction appelée à la fin du moissonnage pour supprimer les albums obsolètes.
-     La méthode $this->_getHarvestedIds(); vous permet de récupérer les identifiants des albums moissonnés. */
   protected function _deleteNonHarvested() {
-    return $this;
+    return $this; // never delete non harvested
   }
 
 
-
-  /* Fonction appelée par la mécanique de moissonnage.
-     C'est ici que le parser doit créer les albums  */
   protected function loadPage($page_number = 1) {
     $client = $this->getHttpClient();
 
-    $xml = gzdecode($client->open_url($this->_config->getAdminVar('EXPORT_URL')));
+    $xml = gzdecode($this->httpGet($this->_config->getHarvestUrl()));
 
     $this->_parser = new Musicme_Service_XMLParser();
     $this->_parser->parseXML($xml);
 
-    $this->_albums =  $this->_parser->getAlbums();
+    $this->_albums = $this->_parser->getAlbums();
 
     return $this;
   }
 
+
   public function getPageCount() {
     return 1;
   }
 
+
   public function getRessourcesNumeriques() {
     return $this->_albums;
   }
 }
-?>
\ No newline at end of file
diff --git a/library/digital_resources/Musicme/tests/MusicmeTest.php b/library/digital_resources/Musicme/tests/MusicmeTest.php
index e1ef355e6846b5247aa0f84f416125e43204613f..087c824b9b720c9a02d32e0eff42450b7f85f138 100644
--- a/library/digital_resources/Musicme/tests/MusicmeTest.php
+++ b/library/digital_resources/Musicme/tests/MusicmeTest.php
@@ -58,13 +58,11 @@ class MusicmeFixtures {
 
 
     Musicme_Service::setDefaultHttpClient($http_client);
-    return new Musicme_Service(
-                    new Musicme_Config(
-                                       new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(),
-                                                                  'Musicme')));
 
+    return Musicme_Service::getInstance();
   }
 
+
   public function logValidUser() {
     $group = $this->fixture('Class_UserGroup', ['id' => 1]);
 
diff --git a/library/digital_resources/Omeka/Config.php b/library/digital_resources/Omeka/Config.php
index c9403ac72e30db0d22fe8c3dfc827716f7519445..40d31359bfbe2e4ed94bb7ff32d7ff7d1ffa99d8 100644
--- a/library/digital_resources/Omeka/Config.php
+++ b/library/digital_resources/Omeka/Config.php
@@ -51,6 +51,7 @@ class Omeka_Config extends Class_DigitalResource_Config {
     return $this->getAdminVar('ROOT_URL');
   }
 
+
   public function newOAIClient() {
     $parser_class = $this->withNameSpace('Service_Parser');
     return (new Class_WebService_OAI())
@@ -58,4 +59,9 @@ class Omeka_Config extends Class_DigitalResource_Config {
       ->setParser(new $parser_class)
       ->setNumericResourceClass($this->withNameSpace('Service_Resource'));
   }
+
+
+  public function getHarvestUrl($page = 1) {
+    return $this->getRootUrl() . '/oai-pmh-repository/request?verb=ListRecords&metadataPrefix=oai_dc';
+  }
 }
\ No newline at end of file
diff --git a/library/digital_resources/Omeka/Service.php b/library/digital_resources/Omeka/Service.php
index e187862f535c700cb5b8fd7043df988a4cfef096..bdad451fb34904e936e3d57cc422c80d4c57eee1 100644
--- a/library/digital_resources/Omeka/Service.php
+++ b/library/digital_resources/Omeka/Service.php
@@ -23,6 +23,11 @@
 class Omeka_Service extends Class_WebService_BibNumerique_AbstractOAI {
   protected $_config;
 
+  public static function getInstance() {
+    return Class_DigitalResource_Config::getInstanceFor(static::class)->getServiceInstance();
+  }
+
+
   public function __construct($config) {
     $this->_config = $config;
     $this->_oaiws = $config->newOAIClient();
diff --git a/library/digital_resources/Omeka/tests/OmekaTest.php b/library/digital_resources/Omeka/tests/OmekaTest.php
index 64d00ef81210739e4af806922be30f80e4087fef..0e32554defc59287bb7905b1bf697d0536043e83 100644
--- a/library/digital_resources/Omeka/tests/OmekaTest.php
+++ b/library/digital_resources/Omeka/tests/OmekaTest.php
@@ -36,10 +36,7 @@ class OmekaFixtures {
                         ->answers(file_get_contents(__DIR__ . '/omeka_oai_page_1.xml'));
     Omeka_Service::setDefaultHttpClient($http_client);
 
-    return new Omeka_Service(
-             new Omeka_Config(
-               new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(),
-                                                 'Omeka')));
+    return Omeka_Service::getInstance();
   }
 }
 
@@ -148,7 +145,7 @@ class OmekaHarvestedTest extends AbstractControllerTestCase {
   /** @test */
   public function withoutRootURLShouldBeDisabled() {
     Class_AdminVar::set('Omeka_ROOT_URL', '');
-    $this->assertFalse((new Class_DigitalResource())->configFor('Omeka')->isEnabled());
+    $this->assertFalse(Omeka_Config::getInstance()->isEnabled());
   }
 }
 ?>
\ No newline at end of file
diff --git a/library/digital_resources/Skilleos/Service.php b/library/digital_resources/Skilleos/Service.php
index 2e39965e4859cc5836b0347d6725878c19422b63..c59f7ed9f725d4218d32d4cfbf26b15ecf6080c0 100644
--- a/library/digital_resources/Skilleos/Service.php
+++ b/library/digital_resources/Skilleos/Service.php
@@ -21,31 +21,43 @@
 
 
 class Skilleos_Service extends Class_DigitalResource_Service {
-  protected $_parser,
+
+  public static
+    $REST_URL = 'http://moncompte.skilleos.com/rest/api/trainings',
+    $TOKEN_URL = 'http://moncompte.skilleos.com/oauth/v2/token';
+
+  protected
+    $_parser,
     $_albums = [];
-  public static $REST_URL = 'http://moncompte.skilleos.com/rest/api/trainings';
-  public static $TOKEN_URL = 'http://moncompte.skilleos.com/oauth/v2/token?grant_type=client_credentials';
 
-  /* Fonction appelée à la fin du moissonnage pour supprimer les albums obsolètes.
-     La méthode $this->_getHarvestedIds(); vous permet de récupérer les identifiants des albums moissonnés. */
+
   protected function _deleteNonHarvested() {
     return $this;
   }
 
 
   protected function getToken() {
-    return  json_decode($this->httpGet(static::$TOKEN_URL.'&client_id='. Skilleos_Config::getInstance()->getAdminVar('CLIENT_ID')."&client_secret=".Skilleos_Config::getInstance()->getAdminVar('CLIENT_SECRET')))->access_token;
+    $query = ['grant_type' => 'client_credentials',
+              'client_id' => $this->_config->getAdminVar('CLIENT_ID'),
+              'client_secret' => $this->_config->getAdminVar('CLIENT_SECRET')];
+
+    $url = static::$TOKEN_URL . '?' . http_build_query($query);
+
+    if(!$response = $this->httpGet($url))
+      return;
+
+    return ($json = json_decode($response))
+      ? $json->access_token
+      : null;
   }
 
 
-  /* Fonction appelée par la mécanique de moissonnage.
-     C'est ici que le parser doit créer les albums  */
   protected function loadPage($page_number = 1) {
-    $token = $this->getToken();
-    $client = $this->getHttpClient();
+    $response = $this->httpGet(static::$REST_URL,
+                               ['headers' => [ 'Authorization' => 'Bearer ' . $this->getToken()]]);
 
-    $json = json_decode($client->open_url(static::$REST_URL,
-                                          ['headers' => [ 'Authorization' => 'Bearer '.$token]]));
+    if(!$json = json_decode($response))
+      return $this;
 
     foreach ($json as $result) {
       $this->_albums[] =  new Skilleos_Service_Parser($result);
@@ -55,12 +67,13 @@ class Skilleos_Service extends Class_DigitalResource_Service {
     return $this;
   }
 
+
   public function getPageCount() {
     return 1;
   }
 
+
   public function getRessourcesNumeriques() {
     return $this->_albums;
   }
-}
-?>
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/library/digital_resources/Skilleos/tests/SkilleosTest.php b/library/digital_resources/Skilleos/tests/SkilleosTest.php
index 634a8a92d754f789188439b45c75374bce2a33cc..e58a6dd042c642b4b8909e9aa65d8801c3ab884e 100644
--- a/library/digital_resources/Skilleos/tests/SkilleosTest.php
+++ b/library/digital_resources/Skilleos/tests/SkilleosTest.php
@@ -39,30 +39,6 @@ class SkilleosAdminVars {
 
 
 
-
-abstract class SkilleosLinkModeLinkTestCase extends ModelTestCase {
-  protected
-    $_storm_default_to_volatile = true,
-    $_skilleos_config;
-
-
-  public function setUp() {
-    parent::setUp();
-    $this->fixture('Class_Profil', [
-                                    'id' => 1,
-                                    'libelle' => 'portail',
-                                    'mail_site' => '']);
-
-    SkilleosAdminVars::activate();
-
-    $this->_skilleos_config =
-      new Skilleos_Config(new Class_DigitalResource_Wrapper (Class_DigitalResource::getInstance(), 'Skilleos'));
-    $this->_module_menu = new Class_DigitalResource_ModuleMenu($this->_skilleos_config);
-  }
-}
-
-
-
 class SkilleosModulesControllerUserWithGroupWithRightTest
   extends AbstractControllerTestCase {
 
@@ -229,7 +205,7 @@ abstract class SkilleosServiceTestCase extends AbstractControllerTestCase {
 
                         ->beStrict();
 
-    $this->_service = new Skilleos_Service(new Skilleos_Config(new Class_DigitalResource_Wrapper(Class_DigitalResource::getInstance(), 'Skilleos')));
+    $this->_service = Skilleos_Service::getInstance();
 
     Skilleos_Service::setDefaultHttpClient($http_client);
 
diff --git a/library/digital_resources/StoryPlayR/Batch.php b/library/digital_resources/StoryPlayR/Batch.php
new file mode 100644
index 0000000000000000000000000000000000000000..2c66ef5dac21d14bb74894c0974a2462d6839afc
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/Batch.php
@@ -0,0 +1,23 @@
+<?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 StoryPlayR_Batch extends Class_DigitalResource_Batch {}
diff --git a/library/digital_resources/StoryPlayR/Config.php b/library/digital_resources/StoryPlayR/Config.php
new file mode 100644
index 0000000000000000000000000000000000000000..f07fbadd4e3e15dc7ba73c650e52e47946b49394
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/Config.php
@@ -0,0 +1,110 @@
+<?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 StoryPlayR_Config extends Class_DigitalResource_Config {
+  public function getConfig() {
+    return ['Introduction' => $this->_('Plusieurs centaines d\'albums jeunesse et livres audio !'),
+            'AdminVars' => ['SSO_URL' => Class_AdminVar_Meta::newDefault($this->_('URL SSO de la plateforme StoryPlay*r'))
+                            ->bePrivate(),
+                            'MEDIATHEQUE_ID' => Class_AdminVar_Meta::newDefault($this->_('Identifiant unique du Bokeh pour la plateforme StoryPlay*r. Vous devez paramétrer cette avec variable avec le contenu de la variable BUID. Cette identifiant doit être transmis à StoryPlay*r.'))
+                            ->bePrivate(),
+                            'OPDS_CATALOG_URL' => Class_AdminVar_Meta::newDefault($this->_('URL du catalogue OPDS de la plateforme StoryPlay*r'))
+                            ->bePrivate()],
+            'PermissionLabel' => $this->_('Bibliothèque numérique: accéder aux albums StoryPlay*r'),
+            'NotAllowedMessage' => $this->_('Votre compte n\'est pas authorisé à accéder à cette ressource.'),
+
+            'SsoAction' => true,
+            'SsoValidateUrl' => true,
+
+            'HelpLink' => 'http://wiki.bokeh-library-portal.org/index.php/StoryPlayR',
+            'Url' => 'https://www.storyplayr.com/',
+            'Icon' => 'https://www.storyplayr.com/images/v2/logo.png',
+
+            'MenuLabel' => $this->_('Lien vers StoryPlay*r'),
+            'ModuleMenu' => $this->withNameSpace('ModuleMenu'),
+
+            'Service' => $this->withNameSpace('Service'),
+            'Batch' => $this->withNameSpace('Batch'),
+            'DocTypeLabel' => $this->_('Histoire (StoryPlay*r)'),
+    ];
+  }
+
+
+  public function getSsoUrl($user) {
+    if(!$user)
+      return '';
+
+    return $this->getAdminVar('SSO_URL')
+      . '?target=/bibliotheque&'
+      . $this->_getSsoQuery($user);
+  }
+
+
+  public function getAlbumSsoUrl($user, $album) {
+    if(!$album)
+      return '';
+
+    if(!$base_url = $album->getExternalUri())
+      return '';
+
+    if(!$user)
+      return '';
+
+    return $base_url . '&' . $this->_getSsoQuery($user);
+  }
+
+
+  public function validateUrlFor($user) {
+    return $this->_validateUrl()
+      . '?' . http_build_query(['sessionid' => (new Class_CasTicket())->getTicketForUser($user)]);
+  }
+
+
+  public function isEnabled() {
+    return '' != $this->getAdminVar('SSO_URL');
+  }
+
+
+  public function getHarvestUrl($page = 1) {
+    $query = ['portalProvider' => 'bokeh',
+              'mediathequeid' => $this->getAdminVar('MEDIATHEQUE_ID')];
+
+    return $this->getAdminVar('OPDS_CATALOG_URL') . '?' . http_build_query(array_filter($query));
+  }
+
+
+  protected function _getSsoQuery($user) {
+    return $user
+      ? (http_build_query(['userid' => $user->getLogin(),
+                           'mediathequeid' => $this->getAdminVar('MEDIATHEQUE_ID'),
+                           'sessionid' => (new Class_CasTicket())->getTicketForUser($user)])
+         . '&check_url=' .  $this->_validateUrl())
+      : '';
+  }
+
+
+  protected function _validateUrl() {
+    return Class_Url::absolute(['module' => $this->getModuleName(),
+                                'controller' => 'auth',
+                                'action' => 'validate'], null, true);
+  }
+}
\ No newline at end of file
diff --git a/library/digital_resources/StoryPlayR/ModuleMenu.php b/library/digital_resources/StoryPlayR/ModuleMenu.php
new file mode 100644
index 0000000000000000000000000000000000000000..07b0a45368e4f6bf8ebaf0fc31e18478072b40f1
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/ModuleMenu.php
@@ -0,0 +1,23 @@
+<?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 StoryPlayR_ModuleMenu extends Class_DigitalResource_ModuleMenu {}
\ No newline at end of file
diff --git a/library/digital_resources/StoryPlayR/Service.php b/library/digital_resources/StoryPlayR/Service.php
new file mode 100644
index 0000000000000000000000000000000000000000..2f8b58c54d83bec6554b110211db04aa8fc280a0
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/Service.php
@@ -0,0 +1,39 @@
+<?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 StoryPlayR_Service extends Class_DigitalResource_Service {
+  public function getPageCount() {
+    return 1;
+  }
+
+
+  public function getRessourcesNumeriques() {
+    return $this->_parser->getStories();
+  }
+
+
+  protected function loadPage($page_number = 1) {
+    $opds = $this->httpGet($this->_config->getHarvestUrl($page_number));
+    $this->_parser = (new StoryPlayR_Service_CatalogReader)->parse($opds);
+    return $this;
+  }
+}
\ No newline at end of file
diff --git a/library/digital_resources/StoryPlayR/Service/CatalogReader.php b/library/digital_resources/StoryPlayR/Service/CatalogReader.php
new file mode 100644
index 0000000000000000000000000000000000000000..123580d054edf2627e5f122e22037cb5f74b1920
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/Service/CatalogReader.php
@@ -0,0 +1,112 @@
+<?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 StoryPlayR_Service_CatalogReader {
+  protected
+    $_xml_parser,
+    $_stories = [],
+    $_current_story;
+
+  public function parse($xml) {
+    $this->_xml_parser = Class_WebService_XMLParser::newInstance();
+    $this->_xml_parser->setElementHandler($this);
+    $this->_xml_parser->parse($xml);
+    return $this;
+  }
+
+
+  public function getStories() {
+    return $this->_stories;
+  }
+
+
+  public function startEntry() {
+    $this->_current_story = new StoryPlayR_Service_Story;
+  }
+
+
+  public function endTitle($data) {
+    $this->_setInEntry('setTitle', $data);
+  }
+
+
+  public function endId($data) {
+    $this->_setInEntry('setId', $data);
+  }
+
+
+  public function startLink($attributes) {
+    if (!array_key_exists('HREF', $attributes))
+      return;
+
+    if (!array_key_exists('ORDER', $attributes))
+      return;
+
+    if (0 == $attributes['ORDER'])
+      $this->_setInEntry('setExternalUri', $attributes['HREF']);
+  }
+
+
+  public function endUpdated($data) {
+    $this->_setInEntry('setYear', date('Y', strtotime($data)));
+  }
+
+
+  public function endContent($data) {
+    $this->_setInEntry('setDescription', $data);
+  }
+
+
+  public function endThumbnailLarge($data) {
+    $this->_setInEntry('addPoster', $data);
+  }
+
+
+  public function startCategory($attributes) {
+    if (array_key_exists('LABEL', $attributes)
+        && ($label = $attributes['LABEL']))
+      $this->_setInEntry('addMatiere', $label);
+  }
+
+
+  public function endAuthor($data) {
+    $this->_setInEntry('addAuthor', $data);
+  }
+
+
+  public function endEditor($data) {
+    $this->_setInEntry('setEditeur', $data);
+  }
+
+
+  protected function _setInEntry($setter, $data) {
+    if (!$this->_xml_parser->inParents('entry'))
+      return;
+
+    call_user_func([$this->_current_story, $setter], $data);
+  }
+
+
+  public function endEntry() {
+    $this->_stories [] = $this->_current_story;
+  }
+}
diff --git a/library/digital_resources/StoryPlayR/Service/Story.php b/library/digital_resources/StoryPlayR/Service/Story.php
new file mode 100644
index 0000000000000000000000000000000000000000..45e3c884791c20afd2e829d5163b4b04aa9590a8
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/Service/Story.php
@@ -0,0 +1,32 @@
+<?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 StoryPlayR_Service_Story extends Class_WebService_BibNumerique_RessourceNumerique {
+  public function fillAlbum($album) {
+    return $album->setTypeDocId(StoryPlayR_Config::getInstance()->getDocType());
+  }
+
+
+  public function getRessourceCategorieLibelle() {
+    return StoryPlayR_Config::getInstance()->getDocTypeLabel();
+  }
+}
\ No newline at end of file
diff --git a/library/digital_resources/StoryPlayR/View/Helper/Album.php b/library/digital_resources/StoryPlayR/View/Helper/Album.php
new file mode 100644
index 0000000000000000000000000000000000000000..02c856a77fa5ee5cb12ec87600802b4639c1d02c
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/View/Helper/Album.php
@@ -0,0 +1,23 @@
+<?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 StoryPlayR_View_Helper_Album extends Class_DigitalResource_AlbumViewHelper {}
\ No newline at end of file
diff --git a/library/digital_resources/StoryPlayR/controllers/AuthController.php b/library/digital_resources/StoryPlayR/controllers/AuthController.php
new file mode 100644
index 0000000000000000000000000000000000000000..f08b76b9b3b140d9a95f79f5f041448ea7f306de
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/controllers/AuthController.php
@@ -0,0 +1,45 @@
+<?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 StoryPlayR_Plugin_AuthController extends Class_DigitalResource_Controller {
+  public function validateAction() {
+    $response = $this->_isValid($this->_getParam('sessionid', null))
+      ? ['success' => 1]
+      : ['success' => 0,
+         'message' => $this->_('Le jeton d\'accès est périmé')];
+
+    $this->_helper->json($response);
+  }
+
+
+  protected function _isValid($ticket) {
+    if(!$this->_config->isEnabled())
+      return;
+
+    if(!$ticket)
+      return;
+
+    if(!$user = (new Class_CasTicket())->userForTicket($ticket))
+      return;
+
+    return $this->_config->hasRightAccess($user);
+  }
+}
\ No newline at end of file
diff --git a/library/digital_resources/StoryPlayR/controllers/IndexController.php b/library/digital_resources/StoryPlayR/controllers/IndexController.php
new file mode 100644
index 0000000000000000000000000000000000000000..a3f247ae5dfd44f8cbfff2fa6171dc75447d9d7a
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/controllers/IndexController.php
@@ -0,0 +1,22 @@
+<?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 StoryPlayR_Plugin_IndexController extends Class_DigitalResource_Controller {}
\ No newline at end of file
diff --git a/library/digital_resources/StoryPlayR/images/icon.png b/library/digital_resources/StoryPlayR/images/icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..de92a88098d40dbc5874423cbe09ae82f06dd450
Binary files /dev/null and b/library/digital_resources/StoryPlayR/images/icon.png differ
diff --git a/library/digital_resources/StoryPlayR/tests/StoryPlayRTest.php b/library/digital_resources/StoryPlayR/tests/StoryPlayRTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..ed2a892e867cbf56334d7d23b59a6a7b39a67896
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/tests/StoryPlayRTest.php
@@ -0,0 +1,320 @@
+<?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 StoryPlayRActivatedTestCase extends AbstractControllerTestCase {
+  protected
+    $_storm_default_to_volatile = true,
+    $_user;
+
+  public function setUp() {
+    parent::setUp();
+    Class_AdminVar::set('StoryPlayR_SSO_URL', 'https://www.storyplayr.com/api/bokeh/login');
+    Class_AdminVar::set('StoryPlayR_MEDIATHEQUE_ID', 123456);
+
+    $group = $this->fixture('Class_UserGroup',
+                            ['id' => 1,
+                             'libelle' => 'Digital resources']);
+
+    $this->_user = $this->fixture('Class_Users',
+                                  ['id' => 1,
+                                   'login' => 'Tom',
+                                   'password' => 'pwd'])
+                        ->setUserGroups([$group]);
+
+    $this->fixture('Class_Permission',
+                   ['id' => 1,
+                    'code' => 'StoryPlayR'])
+         ->permitTo($group,  new Class_Entity());
+  }
+}
+
+
+
+class StoryPlayRSsoTest extends StoryPlayRActivatedTestCase {
+
+  public function setUp() {
+    parent::setUp();
+    ZendAfi_Auth::getInstance()->logUser($this->_user);
+    $this->dispatch('/opac/modules/story-play-r', true);
+  }
+
+
+  /** @test */
+  public function shouldRedirectToStoryPlayer() {
+    $this->assertXPathContentContains('//script' , 'document.location.href="https://www.storyplayr.com/api/bokeh/login?target=/bibliotheque&userid=Tom&mediathequeid=123456&sessionid=ST-', $this->_response->getBody());
+  }
+
+
+    /** @test */
+  public function scriptShouldContainsCheckUrl() {
+    $this->assertXPathContentContains('//script[contains(text(), "&check_url=")]' , '/StoryPlayR_Plugin/auth/validate');
+  }
+}
+
+
+
+
+class StoryPlayRDashboardUnactivatedTest extends Admin_AbstractControllerTestCase {
+  protected $_storm_default_to_volatile = true;
+
+
+  public function setUp() {
+    parent::setUp();
+    $this->dispatch('/StoryPlayR_Plugin', true);
+  }
+
+
+  /** @test */
+  public function shouldDisplayDeactivated() {
+    $this->assertXPathContentContains('//button', 'Désactivé');
+  }
+
+
+  /** @test */
+  public function ssoUrlShoudlBeDisplay() {
+    $this->assertXPathContentContains('//table', 'StoryPlayR_SSO_URL');
+  }
+}
+
+
+
+
+class StoryPlayRDashboardActivatedTest extends StoryPlayRActivatedTestCase {
+  protected $_storm_default_to_volatile = true;
+
+
+  public function setUp() {
+    parent::setUp();
+    Class_AdminVar::set('StoryPlayR_OPDS_CATALOG_URL',
+                        'https://preprod.storyplayr.com/api/opds-with-links');
+
+    $album = $this->fixture('Class_Album',
+               ['id' => 20,
+                'titre' => '10 moutons',
+                'type_doc_id' => 'StoryPlayR'
+               ]);
+    $album->addPosterURI('https://preprod.storyplayr.com/api/library/17fcdd4f-0c1c-4515-a0cf-594f41b03550/thumbnail/large');
+    $album->save();
+    ZendAfi_Auth::getInstance()->logUser($this->fixture('Class_Users',
+                                                        ['id' => 2,
+                                                         'login' => 'admin',
+                                                         'password' => 'admin',
+                                                         'role_level' => ZendAfi_Acl_AdminControllerRoles::SUPER_ADMIN]));
+    $this->dispatch('/StoryPlayR_Plugin', true);
+  }
+
+
+  /** @test */
+  public function shouldDisplayActivated() {
+    $this->assertXPathContentContains('//button', 'Activé');
+  }
+
+
+  /** @test */
+  public function testSsoValidateUrlMessageShoudlBeDisplay() {
+    $this->assertXPathContentContains('//h4', 'URL de validation du ticket de connexion générée pour l\'utilisateur "StoryPlayR_test_user"');
+  }
+
+
+  /** @test */
+  public function testSsoValidateUrlShoudlBeDisplay() {
+    $this->assertXPathContentContains('//a', '/StoryPlayR_Plugin/auth/validate?sessionid=ST-');
+  }
+
+
+  /** @test */
+  public function harvestUrlShouldContainsOpdsCatalogUrlAndProviderAndMediathequeid() {
+    $this->assertXPath('//a[@href="https://preprod.storyplayr.com/api/opds-with-links?portalProvider=bokeh&mediathequeid=123456"]');
+  }
+
+
+  /** @test */
+  public function sourceImageShouldBeValid() {
+    $this->assertXPathContentContains('//a','Image source : https://preprod');
+  }
+
+
+  /** @test */
+  public function vignetteShouldBePresent() {
+    $this->assertXPath("//img[contains(@src,'userfiles/album/20/thumb_20_large_10Moutons.jpeg')]");
+  }
+
+
+  /** @test */
+  public function doctypeImageUrlShouldBePresent() {
+    $this->assertXPath('//h4/img[contains(@src, "/digital-resource/typedoc-icon/id/StoryPlayR")]');
+  }
+}
+
+
+
+
+class StoryPlayRAuthValidateTest extends StoryPlayRActivatedTestCase {
+  protected $_storm_default_to_volatile = true;
+
+  public function setUp() {
+    parent::setUp();
+    Storm_Cache::beVolatile();
+    ZendAfi_Auth::getInstance()->logUser($this->_user);
+  }
+
+
+  /** @test */
+  public function shouldReturnSuccessInJson() {
+    $ticket = (new Class_CasTicket())->getTicketForUser($this->_user);
+    $this->dispatch('/StoryPlayR_Plugin/auth/validate?sessionid=' . $ticket, true);
+    $this->assertEquals(json_encode(['success' => 1]), $this->_response->getBody());
+  }
+
+
+  /** @test */
+  public function shouldReturnErrorMessageInJson() {
+    $this->dispatch('/StoryPlayR_Plugin/auth/validate?sessionid=false', true);
+    $this->assertEquals(json_encode(['success' => 0,
+                                     'message' => 'Le jeton d\'accès est périmé']),
+                        $this->_response->getBody());
+  }
+}
+
+
+
+
+class StoryPlayRModuleMenuTest extends StoryPlayRActivatedTestCase {
+  /** @test */
+  public function storyPlayRMenuShouldBeAvailable() {
+    $modules_menu = new Class_Systeme_ModulesMenu;
+    $this->assertEquals('Lien vers StoryPlay*r', $modules_menu->getFonction('StoryPlayR')->getLibelle());
+  }
+}
+
+
+
+
+class StoryPlayRHarvestTest extends StoryPlayRActivatedTestCase {
+  protected
+    $_storm_default_to_volatile = true,
+    $service,
+    $_album;
+
+  public function setUp() {
+    parent::setUp();
+    Class_AdminVar::set('StoryPlayR_OPDS_CATALOG_URL', 'https://preprod.storyplayr.com/api/opds-with-links');
+
+    $opds = file_get_contents(__DIR__ . '/StoryPlayrCatalog.xml');
+
+    $http_client = $this->mock()
+                        ->whenCalled('open_url')
+                        ->with(StoryPlayR_Config::getInstance()->getHarvestUrl())
+                        ->answers($opds)
+
+                        ->whenCalled('open_url')
+                        ->answers('');
+
+    StoryPlayR_Service::setDefaultHttpClient($http_client);
+
+    $this->service = StoryPlayR_Service::getInstance();
+    $this->service->harvest();
+    $this->_album = Class_Album::find(1);
+  }
+
+
+  public function getAlbumAttribs() {
+    return [
+            ['getTitre', 'A Coat of Many Colors'],
+            ['getIdOrigine', '278e13dd-1588-4ab2-a894-b5e9b7577a38'],
+            ['getExternalUri', 'https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/a-coat-of-many-colors/playr'],
+            ['getAnnee', '2016'],
+            ['getDescription', 'Joseph was given a very special coat by his father, which made his brothers jealous—so jealous they sold him into slavery. See how Joseph forgave them, and when he became a ruler of the land, helped and blessed his brothers.'],
+            ['getTypeDocId' , 'StoryPlayR'],
+            ['getCategoryLabel', 'Histoire (StoryPlay*r)'],
+            ['getPoster', 'https://preprod.storyplayr.com/api/library/278e13dd-1588-4ab2-a894-b5e9b7577a38/thumbnail/large'],
+            ['getMainAuthorName', 'Dhanya M.'],
+            ['getFirstEditor', 'Flowerpot Children\'s press'],
+    ];
+  }
+
+
+  /**
+   * @test
+   * @dataProvider getAlbumAttribs
+   */
+  public function albumAttribsShouldMatch($key, $value) {
+    $this->assertEquals($value, call_user_func([$this->_album, $key]));
+  }
+
+
+  /** @test */
+  public function albumShouldContains13Matieres() {
+    $this->assertEquals(13, count(explode(';', $this->_album->getMatiere())));
+  }
+}
+
+
+
+class StoryPlayRNoticeAjaxTest extends StoryPlayRActivatedTestCase {
+  public function setUp() {
+    parent::setUp();
+
+    $album = $this->fixture('Class_Album',
+                            ['id' => 12,
+                             'titre' => 'Once upon a time',
+                             'type_doc_id' => 'StoryPlayR',
+                             'visible' => 1,
+                             'status' => Class_Album::STATUS_VALIDATED
+                            ]);
+
+    $album->index();
+
+    $this->dispatch('/noticeajax/resnumeriques/id_notice/' . $album->getNoticeId(), true);
+  }
+
+
+  /** @test */
+  public function linkToModulesStoryPlayRAlbumShouldBePresent() {
+    $this->assertXPath('//a[contains(@href, "/modules/story-play-r/album_id/12")]');
+  }
+}
+
+
+
+class StoryPlayRAlbumSsoUrlTest extends StoryPlayRActivatedTestCase {
+  public function setUp() {
+    parent::setUp();
+
+    ZendAfi_Auth::getInstance()->logUser($this->_user);
+
+    $album = $this->fixture('Class_Album',
+                            ['id' => 12,
+                             'titre' => 'Once upon a time',
+                             'type_doc_id' => 'StoryPlayR'
+                            ]);
+
+    $album->setExternalUri('https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/a-coat-of-many-colors/playr');
+
+    $this->dispatch('/modules/story-play-r/album_id/12', true);
+  }
+
+
+  /** @test */
+  public function shouldRedirectToStoryPlayRSsoUrlWithJavascript() {
+    $this->assertXPathContentContains('//script', 'https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/a-coat-of-many-colors/playr&userid=Tom&mediathequeid=123456&sessionid=ST-', $this->_response->getBody());
+  }
+}
diff --git a/library/digital_resources/StoryPlayR/tests/StoryPlayrCatalog.xml b/library/digital_resources/StoryPlayR/tests/StoryPlayrCatalog.xml
new file mode 100644
index 0000000000000000000000000000000000000000..7503fe3a6b617a2413dc6f4d6d1f3e0d65d7b72f
--- /dev/null
+++ b/library/digital_resources/StoryPlayR/tests/StoryPlayrCatalog.xml
@@ -0,0 +1,384 @@
+<?xml version="1.0" encoding="utf-8"?>
+<feed xmlns="http://www.w3.org/2005/Atom" xmlns:ermes="http://www.archimed.fr/" xmlns:opds="http://opds-spec.org/2010/catalog" xml:lang="fr">
+  <id>https://preprod.storyplayr.com/api/opds</id>
+  <icon>https://preprod.storyplayr.com/img/globals/Header/Logo.png</icon>
+  <title>Storyplayr Catalog</title>
+  <updated>2018-03-27T07:19:01Z</updated>
+  <author>
+    <name>Thomas SALOMON</name>
+    <email>thomas.salomon@storyplayr.com</email>
+    <uri>https://preprod.storyplayr.com/backoffice/about</uri>
+  </author>
+  <link rel="start" href="https://preprod.storyplayr.com/api/opds" type="application/atom+xml;profile=opds-catalog;kind=navigation">
+    <rel>start</rel>
+  </link>
+  <subtitle>Storyplayr catalog feed!</subtitle>
+  <rights> Copyright © 2014 Storyplayr. All rights reserved</rights>
+  <generator>Feed for Node.js</generator>
+  <entry>
+    <title>A Coat of Many Colors</title>
+    <id>278e13dd-1588-4ab2-a894-b5e9b7577a38</id>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/a-coat-of-many-colors/playr" type="text/html" rel="related" title="Lire l&apos;histoire" order="0">
+    </link>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/a-coat-of-many-colors/playr/narration/0454cec8-b0b4-4975-afaf-2b707fdc712a" type="text/html" rel="related" title="Ecouter la narration fournie par l&apos;éditeur" order="3">
+    </link>
+    <updated>2016-01-15T00:00:00Z</updated>
+    <ermes:thumbnailLarge>https://preprod.storyplayr.com/api/library/278e13dd-1588-4ab2-a894-b5e9b7577a38/thumbnail/large</ermes:thumbnailLarge>
+    <ermes:thumbnailSmall>https://preprod.storyplayr.com/api/library/278e13dd-1588-4ab2-a894-b5e9b7577a38/thumbnail/small</ermes:thumbnailSmall>
+    <content>Joseph was given a very special coat by his father, which made his brothers jealous—so jealous they sold him into slavery. See how Joseph forgave them, and when he became a ruler of the land, helped and blessed his brothers.</content>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="5 Minute Bible Stories" label="5 Minute Bible Stories">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Brother, sister" label="Brother, sister">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Early readers" label="Early readers">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="English" label="English">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Religious" label="Religious">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Livre pour enfant" label="Livre pour enfant">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Album jeunesse" label="Album jeunesse">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplayr" label="storyplayr">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplay&apos;r" label="storyplay&apos;r">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire pour s&apos;endormir" label="Histoire pour s&apos;endormir">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Audio book" label="Audio book">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire lue" label="Histoire lue">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire à écouter" label="Histoire à écouter">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <author>Dhanya M.</author>
+    <editor>Flowerpot Children&apos;s press</editor>
+  </entry>
+  <entry>
+    <title>&apos;Twas the Night Before Christmas</title>
+    <id>39a2946b-ee50-4856-a1ad-24b1161c2a7d</id>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/twas-the-night-before-christmas/playr" type="text/html" rel="related" title="Lire l&apos;histoire" order="0">
+    </link>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/twas-the-night-before-christmas/playr/narration/1ae58c69-df67-494f-b4cb-271a52e31753" type="text/html" rel="related" title="Ecouter la narration fournie par l&apos;éditeur" order="3">
+    </link>
+    <updated>2015-11-23T00:00:00Z</updated>
+    <ermes:thumbnailLarge>https://preprod.storyplayr.com/api/library/39a2946b-ee50-4856-a1ad-24b1161c2a7d/thumbnail/large</ermes:thumbnailLarge>
+    <ermes:thumbnailSmall>https://preprod.storyplayr.com/api/library/39a2946b-ee50-4856-a1ad-24b1161c2a7d/thumbnail/small</ermes:thumbnailSmall>
+    <content>‘Twas the night before Christmas, 
+    when all through the house
+    Not a creature was stirring,
+    not even a mouse</content>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Christmas" label="Christmas">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Classics" label="Classics">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Early readers" label="Early readers">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="English" label="English">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Family Christmas Classics" label="Family Christmas Classics">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Night" label="Night">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Santa Claus" label="Santa Claus">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Winter" label="Winter">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Livre pour enfant" label="Livre pour enfant">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Album jeunesse" label="Album jeunesse">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplayr" label="storyplayr">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplay&apos;r" label="storyplay&apos;r">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire pour s&apos;endormir" label="Histoire pour s&apos;endormir">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Audio book" label="Audio book">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire lue" label="Histoire lue">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire à écouter" label="Histoire à écouter">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <author>CK Dreamaker</author>
+    <author>Clement C.Moore</author>
+    <editor>Flowerpot Children&apos;s press</editor>
+  </entry>
+  <entry>
+    <title>Alice</title>
+    <id>30bd742f-c3d1-4773-993f-39affaf7d356</id>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/alice/playr" type="text/html" rel="related" title="Lire l&apos;histoire" order="0">
+    </link>
+    <updated>2016-06-28T00:00:00Z</updated>
+    <ermes:thumbnailLarge>https://preprod.storyplayr.com/api/library/30bd742f-c3d1-4773-993f-39affaf7d356/thumbnail/large</ermes:thumbnailLarge>
+    <ermes:thumbnailSmall>https://preprod.storyplayr.com/api/library/30bd742f-c3d1-4773-993f-39affaf7d356/thumbnail/small</ermes:thumbnailSmall>
+    <content>Alice rêvassait dans un champ d’herbes folles lorsqu’un Lapin Blanc, fort bien vêtu, passa en courant. Près d’une haie, il marqua un arrêt, tira une montre de sa poche et regarda l’heure, avant de s’engouffrer dans un énorme terrier.</content>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="7 ans et +" label="7 ans et +">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Alice au pays des merveilles" label="Alice au pays des merveilles">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Aventure" label="Aventure">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Chat" label="Chat">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Classiques" label="Classiques">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Collection Les grands textes" label="Collection Les grands textes">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Lapin" label="Lapin">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Mésaventure" label="Mésaventure">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Premiers romans" label="Premiers romans">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Rêve" label="Rêve">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Surnaturel" label="Surnaturel">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Voyage" label="Voyage">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Livre pour enfant" label="Livre pour enfant">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Album jeunesse" label="Album jeunesse">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplayr" label="storyplayr">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplay&apos;r" label="storyplay&apos;r">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire pour s&apos;endormir" label="Histoire pour s&apos;endormir">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <author>Sylvie Misslin</author>
+    <author>Sébastien Mourrain</author>
+    <author>Lewis Carroll</author>
+    <editor>Amaterra</editor>
+  </entry>
+  <entry>
+    <title>Bill the Bear</title>
+    <id>acfc2437-d6b4-417a-9a12-7374786a2534</id>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/bill-the-bear/playr" type="text/html" rel="related" title="Lire l&apos;histoire" order="0">
+    </link>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/bill-the-bear/playr/narration/5d179f65-62a6-48e5-af97-07896e3cbfa2" type="text/html" rel="related" title="Ecouter la narration fournie par l&apos;éditeur" order="3">
+    </link>
+    <updated>2016-01-30T00:00:00Z</updated>
+    <ermes:thumbnailLarge>https://preprod.storyplayr.com/api/library/acfc2437-d6b4-417a-9a12-7374786a2534/thumbnail/large</ermes:thumbnailLarge>
+    <ermes:thumbnailSmall>https://preprod.storyplayr.com/api/library/acfc2437-d6b4-417a-9a12-7374786a2534/thumbnail/small</ermes:thumbnailSmall>
+    <content>Bill the Bear LOVES Honey! This is Bill the Bear. Bill the Bear’s home is in the forest. Bill’s favorite things are honey, colors, adventure, and more honey!</content>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Animals" label="Animals">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Bear" label="Bear">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Colors" label="Colors">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Early readers" label="Early readers">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Eating" label="Eating">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Learning" label="Learning">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Livre pour enfant" label="Livre pour enfant">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Album jeunesse" label="Album jeunesse">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplayr" label="storyplayr">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplay&apos;r" label="storyplay&apos;r">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire pour s&apos;endormir" label="Histoire pour s&apos;endormir">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Audio book" label="Audio book">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire lue" label="Histoire lue">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire à écouter" label="Histoire à écouter">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <author>Flowerpot Children&apos;s Press</author>
+    <editor>Flowerpot Children&apos;s press</editor>
+  </entry>
+  <entry>
+    <title>A Sailor Went to Sea, Sea, Sea</title>
+    <id>a2d14069-f599-48c1-afbf-d68e5fcb8ee7</id>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/a-sailor-went-to-sea-sea-sea/playr" type="text/html" rel="related" title="Lire l&apos;histoire" order="0">
+    </link>
+    <updated>2016-01-30T00:00:00Z</updated>
+    <ermes:thumbnailLarge>https://preprod.storyplayr.com/api/library/a2d14069-f599-48c1-afbf-d68e5fcb8ee7/thumbnail/large</ermes:thumbnailLarge>
+    <ermes:thumbnailSmall>https://preprod.storyplayr.com/api/library/a2d14069-f599-48c1-afbf-d68e5fcb8ee7/thumbnail/small</ermes:thumbnailSmall>
+    <content>A sailor went to sea, sea, sea .. . so what did he see, see, see? Come aboard with a brave young sailor and his kitty cat for an adventure on the high seas!</content>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Boat" label="Boat">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Cat" label="Cat">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Early readers" label="Early readers">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Fish" label="Fish">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Nursery Rhyme" label="Nursery Rhyme">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Sea and ocean" label="Sea and ocean">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Livre pour enfant" label="Livre pour enfant">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Album jeunesse" label="Album jeunesse">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplayr" label="storyplayr">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplay&apos;r" label="storyplay&apos;r">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire pour s&apos;endormir" label="Histoire pour s&apos;endormir">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <author>Asha Pearse</author>
+    <author>Lucy Bell</author>
+    <editor>Flowerpot Children&apos;s press</editor>
+  </entry>
+  <entry>
+    <title>Au fait</title>
+    <id>cf9550ce-29ed-4f19-93aa-943e84a5e26f</id>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/au-fait/playr" type="text/html" rel="related" title="Lire l&apos;histoire" order="0">
+    </link>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/au-fait/playr/narration/8a77b0a5-71af-4747-8808-a9ddcbf44736" type="text/html" rel="related" title="Ecouter la narration fournie par storyplayr" order="4">
+    </link>
+    <link href="https://preprod.storyplayr.com/api/bokeh/login?target=/histoire/au-fait/playr/narration/b376b5fc-5571-4fb8-b8ea-eadb66c55b1e" type="text/html" rel="related" title="Ecouter la narration lue par un abonné" order="5">
+    </link>
+    <updated>2016-04-13T23:00:00Z</updated>
+    <ermes:thumbnailLarge>https://preprod.storyplayr.com/api/library/cf9550ce-29ed-4f19-93aa-943e84a5e26f/thumbnail/large</ermes:thumbnailLarge>
+    <ermes:thumbnailSmall>https://preprod.storyplayr.com/api/library/cf9550ce-29ed-4f19-93aa-943e84a5e26f/thumbnail/small</ermes:thumbnailSmall>
+    <content>Atraboule se demande ce qu&apos;il va faire aujourd&apos;hui.
+    Déjeuner chez sa cousine Louise ?
+    Aller chez le dentiste ?
+    Passer au bureau ? Repasser à la maison ?
+    Non, rien de tout ça. Il ira chasser l&apos;ours.</content>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="5 ans et +" label="5 ans et +">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Aventure" label="Aventure">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Chasse" label="Chasse">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Humour" label="Humour">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Lapin" label="Lapin">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Magie" label="Magie">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Ours" label="Ours">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Poisson" label="Poisson">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Rencontre" label="Rencontre">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Sorcière" label="Sorcière">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Transformation" label="Transformation">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Voyage" label="Voyage">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Livre pour enfant" label="Livre pour enfant">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Album jeunesse" label="Album jeunesse">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplayr" label="storyplayr">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="storyplay&apos;r" label="storyplay&apos;r">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire pour s&apos;endormir" label="Histoire pour s&apos;endormir">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Audio book" label="Audio book">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire lue" label="Histoire lue">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <category scheme="http://www.bisg.org/standards/bisac_subject/index.html" term="Histoire à écouter" label="Histoire à écouter">
+      <scheme>http://www.bisg.org/standards/bisac_subject/index.html</scheme>
+    </category>
+    <author>Finzo</author>
+    <editor>L&apos;Atelier du Poisson Soluble</editor>
+  </entry>
+</feed>
diff --git a/library/startup.php b/library/startup.php
index e306408332442a52ff6e0fc0be5b099ba4aa44b2..18b95709b8609421e9317c0f549dc50d81ff79b8 100644
--- a/library/startup.php
+++ b/library/startup.php
@@ -82,7 +82,7 @@ class Bokeh_Engine {
 
   function setupConstants() {
     defineConstant('BOKEH_MAJOR_VERSION','7.12');
-    defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.9');
+    defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.10');
 
     defineConstant('BOKEH_REMOTE_FILES', 'http://git.afi-sa.fr/afi/opacce/');
 
diff --git a/library/translation/en.po b/library/translation/en.po
index 1ad104aab4dbbf67a4b167128b7e34d16f4f7566..02b7ac578b4e31b08c641d589211d6c953bf558e 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: 2018-03-26 12:00+0200\n"
-"PO-Revision-Date: 2018-03-26 12:35+0000\n"
+"POT-Creation-Date: 2018-04-09 14:17+0200\n"
+"PO-Revision-Date: 2018-04-09 12:44+0000\n"
 "Last-Translator: Weblate Admin <admin@example.com>\n"
 "Language-Team: English <http://weblate.afi-sa.net/projects/bokeh/bokeh-"
 "master/en/>\n"
@@ -953,12 +953,14 @@ msgstr "AFI-Multimedia is not enabled"
 #: ../../library/Class/AdminVar.php:393
 ../../library/Class/AdminVar.php:420
 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:427
+#: ../../library/Class/AdminVar.php:446
 msgid "API"
 msgstr "API"
 
 #: ../../library/Class/AdminVar.php:392
 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418
 #: ../../library/Class/AdminVar.php:423 ../../library/Class/AdminVar.php:426
+#: ../../library/Class/AdminVar.php:445
 msgid "API utilisée pour les cartes statiques"
 msgstr "API used for static maps"
 
@@ -1052,6 +1054,7 @@ msgstr "Subscribers"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 msgid "Acceptée"
 msgstr "Validated"
 
@@ -1192,6 +1195,11 @@ msgstr "Article summary"
 msgid "Accéder aux titres seulement"
 msgstr "Titles only"
 
+#: ../../library/Class/DigitalResource/AlbumViewHelper.php:44
+#, php-format
+msgid "Accéder à \"%s\" dans un nouvel onglet"
+msgstr "Open \"%s\" in a new tab"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65
 #, php-format
@@ -1269,6 +1277,7 @@ msgstr "Actions"
 
 #: ../../library/Class/AdminVar.php:242
 ../../library/Class/AdminVar.php:243
 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242
+#: ../../library/Class/AdminVar.php:261
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche au survol de la "
 "couverture du document, calculé en temps réel."
@@ -1278,6 +1287,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:243
 ../../library/Class/AdminVar.php:244
 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243
+#: ../../library/Class/AdminVar.php:262
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche. Calculé grâce "
 "à la facette \"En rayon\"."
@@ -1286,37 +1296,41 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:333
 ../../library/Class/AdminVar.php:334
 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:337
+#: ../../library/Class/AdminVar.php:356
 msgid "Activation de la navigation collaborative"
 msgstr "Enable collaborative navigation"
 
 #: ../../library/Class/AdminVar.php:202
 ../../library/Class/AdminVar.php:203
-#: ../../library/Class/AdminVar.php:200
+#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:219
 msgid "Activation de la ressource numérique PlanetNemo"
 msgstr "Enable PlanetNemo digital ressource"
 
 #: ../../library/Class/AdminVar.php:313
 ../../library/Class/AdminVar.php:314
 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:317
+#: ../../library/Class/AdminVar.php:336
 msgid "Activation des boîtes dans les menus"
 msgstr "Enable widgets inside menus"
 
 #: ../../library/Class/AdminVar.php:338
 ../../library/Class/AdminVar.php:339
 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:342
+#: ../../library/Class/AdminVar.php:361
 msgid "Activation des fonctions avancées du téléphone"
 msgstr "Enable phone advanced functions"
 
 #: ../../library/Class/AdminVar.php:255
 ../../library/Class/AdminVar.php:256
 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255
+#: ../../library/Class/AdminVar.php:274
 msgid "Activation des formulaires"
 msgstr "Enable forms"
 
 #: ../../library/Class/AdminVar.php:170
 ../../library/Class/AdminVar.php:171
-#: ../../library/Class/AdminVar.php:168
+#: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:187
 msgid "Activation du PNB Dilicom"
 msgstr "Enable Dilicom digital loan"
 
 #: ../../library/Class/AdminVar.php:381
 ../../library/Class/AdminVar.php:382
 #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384
-#: ../../library/Class/AdminVar.php:387
+#: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406
 msgid ""
 "Activation du serveur OAI: permet le moissonnage des domaines par d'autres "
 "logiciels via OAI"
@@ -1339,6 +1353,7 @@ msgid "Activer la tâche"
 msgstr "Enable this task"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
 msgid "Activer le moissonnage"
 msgstr "Enable harvesting"
 
@@ -1365,11 +1380,13 @@ msgid "Activer ou désactiver : %s"
 msgstr "Enable or disable : %s"
 
 #: ../../library/Class/AdminVar.php:133
 ../../library/Class/AdminVar.php:134
+#: ../../library/Class/AdminVar.php:153
 msgid "Activer ou désactiver la bibliothèque numérique"
 msgstr "Enable or disable digital library"
 
 #: ../../library/Class/AdminVar.php:305
 ../../library/Class/AdminVar.php:306
 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:309
+#: ../../library/Class/AdminVar.php:328
 msgid "Activer ou désactiver le module d'activité"
 msgstr "Enable or disable activity module"
 
@@ -1428,6 +1445,7 @@ msgstr "Activities"
 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36
 #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51
+#: ../../library/Class/Systeme/Report.php:190
 msgid "Activé"
 msgstr "Activated"
 
@@ -1562,6 +1580,7 @@ msgstr "Administer the AFI-Multimedia Server"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 #: ../../application/modules/opac/controllers/AbonneController.php:461
 #: ../../application/modules/opac/controllers/AbonneController.php:462
+#: ../../library/Class/Systeme/Report.php:224
 msgid "Adresse"
 msgstr "Enable accessibility tools"
 
@@ -1595,26 +1614,27 @@ msgid "Adresse du destinataire absente."
 msgstr "Address of the recipient absent."
 
 #: ../../library/Class/AdminVar.php:187
 ../../library/Class/AdminVar.php:188
-#: ../../library/Class/AdminVar.php:185
+#: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:204
 msgid "Adresse du serveur OAI 1D touch"
 msgstr "1D Touch OAI server address"
 
 #: ../../library/Class/AdminVar.php:193
 ../../library/Class/AdminVar.php:194
-#: ../../library/Class/AdminVar.php:191
+#: ../../library/Class/AdminVar.php:191 ../../library/Class/AdminVar.php:210
 msgid "Adresse du serveur OAI Cité de la Musique"
 msgstr "Cyberlibris OAI server address"
 
 #: ../../library/Class/AdminVar.php:148
 ../../library/Class/AdminVar.php:149
+#: ../../library/Class/AdminVar.php:168
 msgid "Adresse du serveur OAI Cyberlibris"
 msgstr "Cyberlibris OAI server address"
 
 #: ../../library/Class/AdminVar.php:197
 ../../library/Class/AdminVar.php:198
-#: ../../library/Class/AdminVar.php:195
+#: ../../library/Class/AdminVar.php:195 ../../library/Class/AdminVar.php:214
 msgid "Adresse du serveur Orphea"
 msgstr "Orphea server address"
 
 #: ../../library/Class/AdminVar.php:204
 ../../library/Class/AdminVar.php:205
-#: ../../library/Class/AdminVar.php:202
+#: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:221
 msgid "Adresse du serveur de la ressource numérique Orthodidacte"
 msgstr "Orthodidacte server address"
 
@@ -2134,6 +2154,7 @@ msgstr "Add to selection"
 
 #: ../../library/Class/AdminVar.php:331
 ../../library/Class/AdminVar.php:332
 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:335
+#: ../../library/Class/AdminVar.php:354
 msgid "Ajouter automatiquement une boîte panier dans la division flottante"
 msgstr "Automatically add a selection box in the floating division"
 
@@ -3025,8 +3046,7 @@ msgstr "To doc type(s)"
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
-#: ../../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/Library.php:263
@@ -3039,11 +3059,11 @@ msgid "Aucun"
 msgstr "No"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:368
 msgid "Aucun album présent pour cette ressource"
 msgstr "No album for this resource"
 
-#: ../../library/Class/NoticeHtml.php:69
-#: ../../library/Class/NoticeHtml.php:69
+#: ../../library/Class/NoticeHtml.php:69
 ../../library/Class/NoticeHtml.php:69
 msgid "Aucun article n'a été trouvé"
 msgstr "No article found"
 
@@ -3139,6 +3159,7 @@ msgid "Aucun fichier présent dans %s"
 msgstr "No file in %s"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:140
 msgid "Aucun groupe n'a de droits d'accès à la ressources"
 msgstr "No group with access to this resource"
 
@@ -3210,6 +3231,7 @@ msgid "Aucun résumé"
 msgstr "No summary"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:176
 msgid "Aucun utilisateur rattaché aux groupes"
 msgstr "No user in this groups"
 
@@ -3303,6 +3325,10 @@ msgstr "No deleted application"
 msgid "Aucune inscription validée"
 msgstr "No validated application"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:395
+msgid "Aucune notice présente pour cette ressource"
+msgstr "No record for this resource"
+
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 msgid "Aucune notice trouvée"
@@ -3601,10 +3627,12 @@ msgstr "Authenticate to allow \"%s\" to access your account"
 
 #: ../../application/modules/api/controllers/UserController.php:29
 #: ../../application/modules/api/controllers/UserController.php:29
+#: ../../application/modules/api/controllers/UserController.php:50
 msgid "Autorisation non spécifiée"
 msgstr "Unspecified authorization"
 
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292
+#: ../../library/Class/AdminVar.php:311
 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)"
 msgstr "Enable OAuth API access via HTTP (unsecure - not recommended)"
 
@@ -3862,6 +3890,7 @@ msgid "Base de données : "
 msgstr "Database : "
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:300
 msgid "Batch"
 msgstr "Batch"
 
@@ -4485,10 +4514,9 @@ msgstr ""
 
 #: ../../library/Class/Users.php:1135
 ../../library/Class/Users.php:1135
 #: ../../library/Class/User/LostPass.php:104
-#: ../../library/Class/User/LostPass.php:137
-#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123
-#: ../../library/Class/Users.php:1126 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1151
+#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144
+#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1151
 msgid "Bonne navigation sur le portail"
 msgstr "Good surf on Bokeh"
 
@@ -4504,6 +4532,7 @@ msgstr "Draft ?"
 
 #: ../../library/Class/Systeme/Report.php:220
 #: ../../library/Class/Systeme/Report.php:223
+#: ../../library/Class/Systeme/Report.php:225
 msgid "CP"
 msgstr "Zip Code"
 
@@ -4991,15 +5020,29 @@ msgstr "This manual has no author."
 msgid "Cette recherche ne vous appartient pas."
 msgstr "This search is not yours."
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:343
+msgid ""
+"Cette ressource ne prend pas en charge l'affichage du l'url de moissonnage"
+msgstr "This resource does not provide harvest url display"
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:186
 msgid "Cette ressource ne prend pas en charge la connexion SSO"
 msgstr "This ressource does not provide SSO"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
 msgid "Cette ressource ne prend pas en charge la gestion des droits"
 msgstr "This resource does not provide access rights"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:244
+msgid ""
+"Cette ressource ne prend pas en charge la validation du ticket de connexion "
+"SSO"
+msgstr "This ressource does not provide SSO ticket validation"
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:278
 msgid "Cette ressource ne prend pas en charge le moissonnage"
 msgstr "This resource does not provide harvesting"
 
@@ -5179,6 +5222,7 @@ msgstr "Path"
 
 #: ../../library/Class/AdminVar.php:332
 ../../library/Class/AdminVar.php:333
 #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:336
+#: ../../library/Class/AdminVar.php:355
 #, php-format
 msgid "Chemin vers les skins personnalisées, relatif à %s"
 msgstr "Path to personalized skins, from %s"
@@ -5306,6 +5350,7 @@ msgstr "Key"
 
 #: ../../library/Class/AdminVar.php:290
 ../../library/Class/AdminVar.php:291
 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:294
+#: ../../library/Class/AdminVar.php:313
 msgid ""
 "Clef d'activation pour le plan d'accès google map. <a target=\"_blank\" href="
 "\"http://code.google.com/apis/maps/signup.html\">Obtenir la clé google map</"
@@ -5350,6 +5395,7 @@ msgstr "Click here to see the full list"
 
 #: ../../library/Class/AdminVar.php:296
 ../../library/Class/AdminVar.php:297
 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:300
+#: ../../library/Class/AdminVar.php:319
 msgid ""
 "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/"
 "home\">http://webthumb.bluga.net/home</a>"
@@ -5358,10 +5404,12 @@ msgstr ""
 "net/home\">http://webthumb.bluga.net/home</a>"
 
 #: ../../library/Class/AdminVar.php:152
 ../../library/Class/AdminVar.php:153
+#: ../../library/Class/AdminVar.php:172
 msgid "Clé ARTE VOD"
 msgstr "ARTE VOD Key"
 
 #: ../../library/Class/AdminVar.php:153
 ../../library/Class/AdminVar.php:154
+#: ../../library/Class/AdminVar.php:173
 msgid "Clé ARTE VOD Single Sign-On"
 msgstr "ARTE VOD Single Sign-On Key"
 
@@ -5376,7 +5424,7 @@ msgid "Clé chapeau"
 msgstr "Alpha key"
 
 #: ../../library/Class/AdminVar.php:211
 ../../library/Class/AdminVar.php:212
-#: ../../library/Class/AdminVar.php:209
+#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:228
 msgid ""
 "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par "
 "Kidilangues."
@@ -5385,7 +5433,7 @@ msgstr ""
 "Kidilangues."
 
 #: ../../library/Class/AdminVar.php:212
 ../../library/Class/AdminVar.php:213
-#: ../../library/Class/AdminVar.php:210
+#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:229
 msgid ""
 "Clé d'identification Kidilangues pour le portail. Cette clé doit être "
 "fournie par Kidilangues."
@@ -5394,7 +5442,7 @@ msgstr ""
 "Kidilangues."
 
 #: ../../library/Class/AdminVar.php:185
 ../../library/Class/AdminVar.php:186
-#: ../../library/Class/AdminVar.php:183
+#: ../../library/Class/AdminVar.php:183 ../../library/Class/AdminVar.php:202
 msgid ""
 "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie "
 "par MyCOW.EU. Elle active la ressource numérique dans le portail."
@@ -5403,7 +5451,7 @@ msgstr ""
 "MyCOW.EU. It enable the digital ressource inside the portal."
 
 #: ../../library/Class/AdminVar.php:216
 ../../library/Class/AdminVar.php:217
-#: ../../library/Class/AdminVar.php:214
+#: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:233
 msgid ""
 "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit "
 "être fournie par Premier-Chapitre."
@@ -5412,7 +5460,7 @@ msgstr ""
 "by Premier-Chapitre."
 
 #: ../../library/Class/AdminVar.php:166
 ../../library/Class/AdminVar.php:167
-#: ../../library/Class/AdminVar.php:164
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:183
 msgid "Clé de sécurité Vodeclic"
 msgstr "Vodeclic security key"
 
@@ -5424,11 +5472,13 @@ msgstr "Artwork key"
 
 #: ../../library/Class/AdminVar.php:308
 ../../library/Class/AdminVar.php:309
 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:312
+#: ../../library/Class/AdminVar.php:331
 msgid "Clé publique pour le cryptage des données AFI-Multimédia"
 msgstr "Public key for AFI-Multimedia encryption datas"
 
 #: ../../library/Class/AdminVar.php:310
 ../../library/Class/AdminVar.php:311
 #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:314
+#: ../../library/Class/AdminVar.php:333
 msgid "Clé publique pour le cryptage des données Aesis Webkiosk"
 msgstr "Public key for AESIS Webkiosk encryption datas"
 
@@ -5498,6 +5548,7 @@ msgstr "ZIP code"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:82
 #: ../../application/modules/admin/views/scripts/index/index.phtml:71
 #: ../../application/modules/admin/views/scripts/index/index.phtml:65
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 msgid "Code source"
 msgstr "Source code"
 
@@ -5562,6 +5613,7 @@ msgstr "Orders"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 msgid "Commandée"
 msgstr "ordered"
 
@@ -5678,7 +5730,7 @@ msgstr "Compress image \"%s\" and keep same geometry."
 
 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412
 #: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414
-#: ../../library/Class/AdminVar.php:417
+#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436
 msgid ""
 "Compression d'image utilisée dans le redimensionnement et la compression des "
 "images."
@@ -5703,6 +5755,10 @@ msgstr "Support access account"
 msgid "Compte d'assistance: %s"
 msgstr "Hotline user: %s"
 
+#: ../../library/Class/Systeme/Report.php:228
+msgid "Compte forge"
+msgstr "Ticket system account"
+
 #: ../../library/Class/Feature/List.php:179
 msgid "Compte lecteur"
 msgstr "Patron space"
@@ -5820,6 +5876,7 @@ msgstr "Search result configuration"
 #: ../../application/modules/admin/controllers/BibController.php:437
 #: ../../application/modules/admin/controllers/BibController.php:432
 #: ../../application/modules/admin/controllers/BibController.php:433
+#: ../../application/modules/admin/controllers/BibController.php:436
 msgid "Configuration introuvable"
 msgstr "Unknown configuration"
 
@@ -6098,6 +6155,7 @@ msgstr "Review content modified"
 
 #: ../../library/Class/AdminVar.php:265
 ../../library/Class/AdminVar.php:266
 #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265
+#: ../../library/Class/AdminVar.php:284
 msgid ""
 "Contenu de l'email de notification d'article en attente de validation. "
 "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, "
@@ -6109,6 +6167,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:266
 ../../library/Class/AdminVar.php:267
 #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266
+#: ../../library/Class/AdminVar.php:285
 msgid ""
 "Contenu de l'email de notification de refus d'un article à valider. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6118,6 +6177,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:267
 ../../library/Class/AdminVar.php:268
 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267
+#: ../../library/Class/AdminVar.php:286
 msgid ""
 "Contenu de l'email de notification de validation d'un article. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6127,6 +6187,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381
 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389
+#: ../../library/Class/AdminVar.php:408
 msgid ""
 "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si "
 "vide sera tiré de la variable cosmogramme \"mail_admin\""
@@ -6136,6 +6197,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380
 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388
+#: ../../library/Class/AdminVar.php:407
 msgid ""
 "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si "
 "vide sera [NOM DU SERVEUR] Oai repository"
@@ -6176,7 +6238,7 @@ msgid "Contient"
 msgstr "Contains"
 
 #: ../../library/Class/AdminVar.php:173
 ../../library/Class/AdminVar.php:174
-#: ../../library/Class/AdminVar.php:171
+#: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:190
 msgid "Contracteur du PNB Dilicom"
 msgstr "Dilicom PBN contractor"
 
@@ -6197,6 +6259,7 @@ msgstr "Coord.."
 #: ../../library/Class/Systeme/Report.php:222
 #: ../../application/modules/telephone/views/scripts/recherche/bibliotheque.phtml:4
 #: ../../library/Class/Systeme/Report.php:225
+#: ../../library/Class/Systeme/Report.php:227
 msgid "Coordonnées"
 msgstr "Contact details"
 
@@ -6769,12 +6832,13 @@ msgstr "Suggestion date"
 
 #: ../../library/Class/AdminVar.php:373
 ../../library/Class/AdminVar.php:374
 #: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376
-#: ../../library/Class/AdminVar.php:379
+#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:398
 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)"
 msgstr "Last patron import date"
 
 #: ../../library/Class/AdminVar.php:303
 ../../library/Class/AdminVar.php:304
 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:307
+#: ../../library/Class/AdminVar.php:326
 msgid "Date du dernier vidage manuel du cache"
 msgstr "Last manual clear cache"
 
@@ -6825,7 +6889,7 @@ msgstr "A to B"
 msgid "De B à A"
 msgstr "B to A"
 
-#: ../../library/Class/AdminVar.php:291
+#: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:310
 msgid ""
 "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est "
 "désactivé."
@@ -7021,6 +7085,7 @@ msgstr "Last delivery"
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:306
 msgid "Dernière exécution"
 msgstr "Last launch"
 
@@ -7157,10 +7222,12 @@ msgid "Dewey / pcdm4"
 msgstr "Dewey / pcdm4"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:183
 msgid "Diagnostic SSO"
 msgstr "SSO diagnostic"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:275
 msgid "Diagnostic moissonnage"
 msgstr "Harvesting diagnostic"
 
@@ -7233,6 +7300,7 @@ msgstr "Complete discography"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:86
 #: ../../application/modules/admin/views/scripts/index/index.phtml:75
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
+#: ../../application/modules/admin/views/scripts/index/index.phtml:58
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr "Chat live with the Bokeh community"
 
@@ -7254,6 +7322,7 @@ msgstr "Availability"
 #: ../../library/Class/Exemplaire.php:269
 #: ../../library/Class/Exemplaire.php:274
 #: ../../library/Class/Exemplaire.php:290
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 msgid "Disponible"
 msgstr "Available"
 
@@ -7417,11 +7486,12 @@ msgstr "Parent domain"
 #: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 #: ../../library/Class/Album.php:1604 ../../library/Class/Album.php:1614
 #: ../../library/Class/Album.php:1630 ../../library/Class/Album.php:1631
+#: ../../library/Class/Album.php:1633
 msgid "Domaine public"
 msgstr "Public domain"
 
 #: ../../library/Class/AdminVar.php:206
 ../../library/Class/AdminVar.php:207
-#: ../../library/Class/AdminVar.php:204
+#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:223
 msgid "Domaine utilisée par le serveur lectura pour authentification"
 msgstr "Domain used by Lectura server for identification"
 
@@ -7483,6 +7553,7 @@ msgstr "Write or edit review"
 #: ../../application/modules/opac/controllers/RssController.php:219
 #: ../../application/modules/admin/views/scripts/index/index.phtml:46
 #: ../../application/modules/admin/views/scripts/index/index.phtml:40
+#: ../../application/modules/admin/views/scripts/index/index.phtml:29
 msgid "Données en attente de modération"
 msgstr "Data waiting for moderation"
 
@@ -7627,7 +7698,7 @@ msgid "Durée de prêt en jours"
 msgstr "Loan duration in days"
 
 #: ../../library/Class/AdminVar.php:180
 ../../library/Class/AdminVar.php:181
-#: ../../library/Class/AdminVar.php:178
+#: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:197
 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom"
 msgstr "Max duration (in days) of a PNB loan"
 
@@ -7715,6 +7786,7 @@ msgstr "Transition delay between images in seconds"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:32
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:15
+#: ../../application/modules/admin/views/scripts/index/index.phtml:4
 msgid "Démonstrations vidéos"
 msgstr "Video showcase"
 
@@ -7750,7 +7822,7 @@ msgid "Dépouillements"
 msgstr "Serials articles"
 
 #: ../../library/Class/AdminVar.php:225
 ../../library/Class/AdminVar.php:226
-#: ../../library/Class/AdminVar.php:223
+#: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:242
 msgid "Désactivation des suggestions d'achats"
 msgstr "Deactivate acquisitions suggestions"
 
@@ -7762,11 +7834,13 @@ msgstr "Disable autocomplete"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:313
 msgid "Désactiver la tâche"
 msgstr "Disable this task"
 
 #: ../../library/Class/AdminVar.php:293
 ../../library/Class/AdminVar.php:294
 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:297
+#: ../../library/Class/AdminVar.php:316
 msgid "Désactiver pour passer le site en maintenance"
 msgstr "Deactivate to put site offline"
 
@@ -7779,7 +7853,7 @@ msgstr "Disabled"
 
 #: ../../library/Class/AdminVar.php:358
 ../../library/Class/AdminVar.php:359
 #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361
-#: ../../library/Class/AdminVar.php:364
+#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:383
 msgid ""
 "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les "
 "bibliothécaires peuvent donner leur avis"
@@ -7789,7 +7863,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:359
 ../../library/Class/AdminVar.php:360
 #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362
-#: ../../library/Class/AdminVar.php:365
+#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:384
 msgid ""
 "Désactivé: ne requiert pas d'identification pour saisir des  commentaires. "
 "<br /> Activé: requiert l'identification pour saisir des commentaires."
@@ -7991,6 +8065,10 @@ msgstr "Failed to publish status report to %s (%s)"
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr "Save process of %s has fail"
 
+#: ../../application/modules/admin/controllers/BibController.php:445
+msgid "Echec de la sauvegarde de la configuration des filtres par défaut"
+msgstr "Filter configuration save has fail"
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:84
 msgid "Echelle"
 msgstr "Scale"
@@ -8219,6 +8297,7 @@ msgstr "Borrowed by %s"
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:54
 msgid "En attente"
 msgstr "Waiting"
 
@@ -8537,6 +8616,7 @@ msgstr "Error : %s"
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:164
+#: ../../application/modules/admin/controllers/IndexController.php:155
 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"
 
@@ -8667,6 +8747,7 @@ msgstr "Error : %s"
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:119
+#: ../../application/modules/admin/controllers/IndexController.php:110
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr "Error(s) : %s, variable %s unsaved"
@@ -8734,18 +8815,22 @@ msgid "Erreurs"
 msgstr "Errors"
 
 #: ../../library/Class/Systeme/Report.php:273
+#: ../../library/Class/Systeme/Report.php:277
 msgid "Espace disque libre"
 msgstr "Free disk space"
 
 #: ../../library/Class/Systeme/Report.php:275
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Espace disque plein"
 msgstr "Disk space full"
 
 #: ../../library/Class/Systeme/Report.php:274
+#: ../../library/Class/Systeme/Report.php:278
 msgid "Espace disque total"
 msgstr "Total space disk"
 
 #: ../../library/Class/Systeme/Report.php:272
+#: ../../library/Class/Systeme/Report.php:276
 msgid "Espace disque utilisé"
 msgstr "Used space disk"
 
@@ -8781,6 +8866,7 @@ msgstr "Status %s"
 
 #: ../../library/Class/Systeme/Report.php:159
 #: ../../library/Class/Systeme/Report.php:162
+#: ../../library/Class/Systeme/Report.php:164
 msgid "Etat de la communication"
 msgstr "Connection status"
 
@@ -8789,6 +8875,7 @@ msgstr "Connection status"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
 #: ../../application/modules/admin/views/scripts/index/index.phtml:42
 #: ../../application/modules/admin/views/scripts/index/index.phtml:36
+#: ../../application/modules/admin/views/scripts/index/index.phtml:25
 msgid "Etat du site"
 msgstr "Website status"
 
@@ -8800,6 +8887,7 @@ msgstr "Sytem status"
 
 #: ../../library/Class/AdminVar.php:241
 ../../library/Class/AdminVar.php:242
 #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241
+#: ../../library/Class/AdminVar.php:260
 msgid ""
 "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" "
 "entre les mots saisis"
@@ -8818,6 +8906,7 @@ msgstr "Are you sur to cancel this reservation ?"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:321
 msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
 msgstr "Are you sure to disable this task ?"
 
@@ -9141,7 +9230,7 @@ msgstr "Facilitate indexation of your site by search engines"
 
 #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415
 #: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417
-#: ../../library/Class/AdminVar.php:420
+#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439
 msgid ""
 "Facteur d'échantillonnage utilisé dans le redimensionnement et la "
 "compression des images."
@@ -9475,6 +9564,7 @@ msgstr "Responsability"
 #: ../../library/Class/Systeme/Report.php:186
 #: ../../library/Class/Systeme/Report.php:189
 #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:62
+#: ../../library/Class/Systeme/Report.php:191
 msgid "Fonctionnalités"
 msgstr "Features"
 
@@ -9510,6 +9600,7 @@ msgstr "Fonds"
 
 #: ../../library/Class/AdminVar.php:288
 ../../library/Class/AdminVar.php:289
 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288
+#: ../../library/Class/AdminVar.php:307
 msgid ""
 "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et "
 "la configuration appropriée du serveur Web"
@@ -9656,6 +9747,7 @@ msgid "Genres"
 msgstr "Forms"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:115
 msgid "Gestion des  droits"
 msgstr "Access rights management"
 
@@ -9689,6 +9781,7 @@ msgstr "User management"
 
 #: ../../application/modules/admin/controllers/IndexController.php:64
 #: ../../application/modules/admin/controllers/IndexController.php:64
+#: ../../application/modules/admin/controllers/IndexController.php:55
 msgid "Gestion des variables"
 msgstr "Variable management"
 
@@ -9707,7 +9800,7 @@ msgid "Gestionnaire de contenu"
 msgstr "Content Manager"
 
 #: ../../library/Class/AdminVar.php:171
 ../../library/Class/AdminVar.php:172
-#: ../../library/Class/AdminVar.php:169
+#: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:188
 msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr "City GLN, provided by Dilicom."
 
@@ -9720,6 +9813,7 @@ msgstr "GB"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:80
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
 #: ../../application/modules/admin/views/scripts/index/index.phtml:63
+#: ../../application/modules/admin/views/scripts/index/index.phtml:52
 msgid "Google group Bokeh"
 msgstr "Bokeh Google party"
 
@@ -9742,6 +9836,7 @@ msgid "Groupe \"%s\" supprimé"
 msgstr "Group \"%s\" deleted"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:214
 msgid "Groupe créé pour ce test"
 msgstr "Generated group for test"
 
@@ -9774,6 +9869,7 @@ msgid "Groupes"
 msgstr "Groups"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:225
 #, php-format
 msgid "Groupes : %s"
 msgstr "Groups : %s"
@@ -9786,6 +9882,7 @@ msgid "Groupes destinataires"
 msgstr "Recipients groups"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:152
 msgid "Groupes qui ont accès à la ressource"
 msgstr "Groups having access rights to this resource"
 
@@ -9854,6 +9951,7 @@ msgid "Généré pour la session d'activité %s"
 msgstr "Generated for activity session %s"
 
 #: ../../library/Class/AdminVar.php:134
 ../../library/Class/AdminVar.php:135
+#: ../../library/Class/AdminVar.php:154
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
 "de la bibliothèque numérique"
@@ -9868,6 +9966,7 @@ msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus"
 msgstr "Manage the files you need to enrich your content"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:146
 msgid "Gérer les groupes"
 msgstr "Manage groups"
 
@@ -10086,12 +10185,12 @@ msgid "ID"
 msgstr "ID"
 
 #: ../../library/Class/AdminVar.php:163
 ../../library/Class/AdminVar.php:164
-#: ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:180
 msgid "ID client Jamendo"
 msgstr "Jamendo client ID"
 
 #: ../../library/Class/AdminVar.php:164
 ../../library/Class/AdminVar.php:165
-#: ../../library/Class/AdminVar.php:162
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:181
 msgid "ID client SoundCloud"
 msgstr "Jamendo client ID"
 
@@ -10133,6 +10232,7 @@ msgstr "Browser icon"
 #: ../../library/Class/AdminVar.php:387
 ../../library/Class/AdminVar.php:388
 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:395
+#: ../../library/Class/AdminVar.php:414
 msgid "Id du connecteur Le Social"
 msgstr "Conector id Le Social"
 
@@ -10204,11 +10304,12 @@ msgid "Identifiant"
 msgstr "Login"
 
 #: ../../library/Class/AdminVar.php:149
 ../../library/Class/AdminVar.php:150
+#: ../../library/Class/AdminVar.php:169
 msgid "Identifiant SSO Cyberlibris"
 msgstr "Cyberlibris SSO ID"
 
 #: ../../library/Class/AdminVar.php:168
 ../../library/Class/AdminVar.php:169
-#: ../../library/Class/AdminVar.php:166
+#: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:185
 msgid "Identifiant code bibliothèque Vodeclic"
 msgstr "Vodeclic library code ID"
 
@@ -10218,17 +10319,18 @@ msgid "Identifiant commence par"
 msgstr "Login starts with"
 
 #: ../../library/Class/AdminVar.php:194
 ../../library/Class/AdminVar.php:195
-#: ../../library/Class/AdminVar.php:192
+#: ../../library/Class/AdminVar.php:192 ../../library/Class/AdminVar.php:211
 msgid "Identifiant d'accès au serveur OAI Cité de la Musique"
 msgstr "Access identifier OAI \"La Cité de la Musique\" server"
 
 #: ../../library/Class/AdminVar.php:192
 ../../library/Class/AdminVar.php:193
-#: ../../library/Class/AdminVar.php:190
+#: ../../library/Class/AdminVar.php:190 ../../library/Class/AdminVar.php:209
 msgid "Identifiant du portail chez 1D touch"
 msgstr "1D touch ID"
 
 #: ../../library/Class/AdminVar.php:233
 ../../library/Class/AdminVar.php:234
 #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233
+#: ../../library/Class/AdminVar.php:252
 msgid "Identifiant du project Redmine"
 msgstr "Redmine ID"
 
@@ -10274,7 +10376,7 @@ msgid "Identifiant ou mot de passe incorrect."
 msgstr "Username or password not found."
 
 #: ../../library/Class/AdminVar.php:167
 ../../library/Class/AdminVar.php:168
-#: ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:184
 msgid "Identifiant partenaire Vodeclic"
 msgstr "Vodeclic partnership ID"
 
@@ -10285,6 +10387,7 @@ msgstr "Unique ID"
 
 #: ../../library/Class/AdminVar.php:340
 ../../library/Class/AdminVar.php:341
 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:344
+#: ../../library/Class/AdminVar.php:363
 msgid ""
 "Identifiant unique (attention: la modification de cette variable impactera "
 "les outils de suivi de cette installation)"
@@ -10388,8 +10491,7 @@ msgstr "There is no double"
 msgid "Il n'y a plus de sous-niveau"
 msgstr "There are currently over sublevel"
 
-#: ../../library/Class/NoticeOAI.php:230
-#: ../../library/Class/NoticeOAI.php:230
+#: ../../library/Class/NoticeOAI.php:230
 ../../library/Class/NoticeOAI.php:230
 msgid "Il n'y aucun mot assez significatif pour la recherche"
 msgstr "There are no significant enough word to search"
 
@@ -10444,11 +10546,20 @@ msgstr "Picture"
 msgid "Image de fond"
 msgstr "Background picture"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:346
+msgid "Image du type de document: "
+msgstr "Picture of document type: "
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 msgid "Image par image"
 msgstr "Image by image"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:374
+#, php-format
+msgid "Image source : %s"
+msgstr "Source image : %s"
+
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 msgid "Import"
@@ -10542,6 +10653,16 @@ msgstr "Import an album from Jamendo"
 msgid "Impossible d'afficher la carte"
 msgstr "Can not display map"
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:94
+#, php-format
+msgid "Impossible d'ajouter l'image \"%s\" à l'album \"%s\""
+msgstr "Cannot add image \"%s\" to album \"%s\""
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:112
+#, php-format
+msgid "Impossible d'enregister l'image \"%s\" dans \"%s\""
+msgstr "Cannot save image \"%s\" in \"%s\""
+
 #: ../../library/Class/UploadMover/LocalFile.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
@@ -10621,6 +10742,11 @@ msgstr "Impossible to process file"
 msgid "Impossible de trouver cette adresse"
 msgstr "Cannot find this address"
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:84
+#, php-format
+msgid "Impossible de télécharger l'image \"%s\" sur le serveur"
+msgstr "Cannot download image \"%s\""
+
 #: ../../library/Class/Upload.php:68
 ../../library/Class/Upload.php:68
 msgid ""
 "Impossible de télécharger la photo , le répertoire temporaire n'existe pas"
@@ -10981,6 +11107,7 @@ msgstr "Insert a kiosk in an article"
 
 #: ../../library/Class/AdminVar.php:314
 ../../library/Class/AdminVar.php:315
 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:318
+#: ../../library/Class/AdminVar.php:337
 msgid "Interdire la modification de la fiche abonne"
 msgstr "Make patron form read only"
 
@@ -11116,22 +11243,25 @@ msgstr "Javascript"
 
 #: ../../library/Class/AdminVar.php:366
 ../../library/Class/AdminVar.php:367
 #: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369
-#: ../../library/Class/AdminVar.php:372
+#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:391
 msgid "Javascript code for statistics"
 msgstr "Javascript code for statistics"
 
 #: ../../library/Class/AdminVar.php:281
 ../../library/Class/AdminVar.php:282
 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281
+#: ../../library/Class/AdminVar.php:300
 msgid "Je ne veux plus recevoir cette lettre d'information"
 msgstr "I want to unsuscribe to this newsletter"
 
 #: ../../application/modules/api/controllers/UserController.php:36
 #: ../../application/modules/api/controllers/UserController.php:36
+#: ../../application/modules/api/controllers/UserController.php:57
 msgid "Jeton d'autorisation invalide"
 msgstr "Invalid authorization token"
 
 #: ../../application/modules/api/controllers/UserController.php:33
 #: ../../application/modules/api/controllers/UserController.php:33
+#: ../../application/modules/api/controllers/UserController.php:54
 msgid "Jeton d'autorisation non fourni"
 msgstr "Missing authorization token"
 
@@ -11289,7 +11419,7 @@ msgid "L'album \"%s\" a été créé"
 msgstr "The album  \"%s\" was created"
 
 #: ../../library/Class/Album.php:1133
 ../../library/Class/Album.php:1133
-#: ../../library/Class/Album.php:1138
+#: ../../library/Class/Album.php:1138 ../../library/Class/Album.php:1140
 msgid "L'album doit avoir un type de document"
 msgstr "Album must have a document type"
 
@@ -11312,7 +11442,7 @@ msgid "L'annexe \"%s\" a été suppriméee"
 msgstr "Branch \"%s\"  has been successfuly deleted"
 
 #: ../../library/Class/Album.php:1126
 ../../library/Class/Album.php:1126
-#: ../../library/Class/Album.php:1131
+#: ../../library/Class/Album.php:1131 ../../library/Class/Album.php:1133
 #, php-format
 msgid "L'année doit être comprise entre %s et %s"
 msgstr "Year should be between %s and %s"
@@ -11590,6 +11720,7 @@ msgid "La catégorie \"%s\" a été sauvegardée"
 msgstr "Class  \"%s\"  has been saved"
 
 #: ../../application/modules/admin/controllers/IndexController.php:86
+#: ../../application/modules/admin/controllers/IndexController.php:77
 #, php-format
 msgid "La clé \"%s\" n'existe pas."
 msgstr "\"%s\" key does not exist."
@@ -11641,6 +11772,7 @@ msgstr "Header text color should be formatted as #001122"
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:163
+#: ../../application/modules/admin/controllers/IndexController.php:154
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr "The update request has been sent to the server"
 
@@ -11796,7 +11928,7 @@ msgid "La taille du fichier doit être supérieur à \"%min%\""
 msgstr "File size must be higher than \"%min%\""
 
 #: ../../library/Class/Upload.php:66 ../../library/Class/Upload.php:317
-#: ../../library/Class/Upload.php:317
+#: ../../library/Class/Upload.php:317 ../../library/Class/Upload.php:318
 msgid "La taille du fichier ne doit pas excéder "
 msgstr "File size must not exceed "
 
@@ -11845,6 +11977,7 @@ msgstr "\"%s\" is not a valid Unimarc zone"
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
 #: ../../library/Class/Systeme/Report.php:221
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
+#: ../../library/Class/Systeme/Report.php:223
 msgid "Label"
 msgstr "Label"
 
@@ -12022,6 +12155,7 @@ msgstr "Latitude"
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:141
+#: ../../application/modules/admin/controllers/IndexController.php:132
 msgid "Le cache de Bokeh a été vidé"
 msgstr "Bokeh cache cleared"
 
@@ -12169,6 +12303,7 @@ msgid "Le fichier est trop petit : %s mo -> taille minimum attendue : %s mo"
 msgstr "File size is to small : %s mo -> should be more than %s mo"
 
 #: ../../library/Class/Upload.php:322
 ../../library/Class/Upload.php:322
+#: ../../library/Class/Upload.php:323
 msgid "Le fichier n'a pas de nom"
 msgstr "The file has no name"
 
@@ -12177,6 +12312,7 @@ msgid "Le fichier n'a pu être téléchargé complètement"
 msgstr "Incomplete download"
 
 #: ../../library/Class/Upload.php:332
 ../../library/Class/Upload.php:332
+#: ../../library/Class/Upload.php:329
 #, php-format
 msgid "Le fichier n'est pas de type %s"
 msgstr "The file is not of type %s"
@@ -12211,6 +12347,7 @@ msgid "Le fichier reçu n'est pas valide"
 msgstr "The received file is not valid"
 
 #: ../../library/Class/Upload.php:307
 ../../library/Class/Upload.php:307
+#: ../../library/Class/Upload.php:308
 msgid "Le fichier était vide ou un problème réseau est survenu"
 msgstr "The file was empty or a network problem"
 
@@ -12237,6 +12374,7 @@ msgid ""
 msgstr "Form is invalid. Changes have not been saved."
 
 #: ../../library/Class/AdminVar.php:129
 ../../library/Class/AdminVar.php:130
+#: ../../library/Class/AdminVar.php:149
 msgid ""
 "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au "
 "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12245,6 +12383,7 @@ msgstr "The CMS displays albums as a paged list instead of a treeview"
 
 #: ../../library/Class/AdminVar.php:252
 ../../library/Class/AdminVar.php:253
 #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252
+#: ../../library/Class/AdminVar.php:271
 msgid ""
 "Le gestionnaire de contenu affiche les articles sous forme de liste paginée "
 "au lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12291,6 +12430,7 @@ msgid "Le modèle \"%s\" a été sauvegardé"
 msgstr "The %s model was saved"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:288
 msgid "Le moissonnage n'est pas programmé"
 msgstr "Harvesting is not planned"
 
@@ -12443,10 +12583,14 @@ msgid "Le territoire contient %s notices"
 msgstr "The territory contains %s records"
 
 #: ../../library/Class/Album.php:1131
 ../../library/Class/Album.php:1131
-#: ../../library/Class/Album.php:1136
+#: ../../library/Class/Album.php:1136 ../../library/Class/Album.php:1138
 msgid "Le titre est obligatoire"
 msgstr "Title is mandatory"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:377
+msgid "Le vignettage n'est pas testable sans album"
+msgstr "Thumbnailing cannot be tested without an album"
+
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 msgid "Lecteurs du portail"
@@ -12469,7 +12613,7 @@ msgstr "%d %s selected were saved"
 msgid "Les %s sélectionnés ont bien été supprimés"
 msgstr "Selected %s were correctly deleted"
 
-#: ../../library/Class/AdminVar.php:289
+#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:308
 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB."
 msgstr "Loaners can only connect with ILS webservice."
 
@@ -12542,6 +12686,7 @@ msgstr "Newest RSS"
 #: ../../application/modules/admin/controllers/BibController.php:450
 #: ../../application/modules/admin/controllers/BibController.php:445
 #: ../../application/modules/admin/controllers/BibController.php:446
+#: ../../application/modules/admin/controllers/BibController.php:447
 msgid "Les filtres par défaut ont été sauvegardés."
 msgstr "Default filters have been saved."
 
@@ -12663,18 +12808,18 @@ msgstr "Appointments"
 msgid "Les sites les plus récents"
 msgstr "Most recent sites"
 
-#: ../../library/Class/AdminVar.php:225
+#: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:244
 msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris"
 msgstr "Users can bookmark their searches"
 
-#: ../../library/Class/AdminVar.php:226
+#: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:245
 msgid ""
 "Les utilisateurs peuvent recevoir les nouveautés de leurs recherches "
 "favorites par email"
 msgstr "Users can receive email novelties notification"
 
 #: ../../library/Class/AdminVar.php:226
 ../../library/Class/AdminVar.php:227
-#: ../../library/Class/AdminVar.php:224
+#: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:243
 msgid ""
 "Les utilisateurs peuvent sélectionner des bibliothèques favorites pour leurs "
 "recherche"
@@ -12816,6 +12961,7 @@ msgstr "Label"
 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15
 #: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9
 #: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29
+#: ../../library/Class/Systeme/Report.php:189
 msgid "Libellé"
 msgstr "Label"
 
@@ -12852,6 +12998,7 @@ msgid "Libellé de la catégorie"
 msgstr "Category label"
 
 #: ../../library/Class/AdminVar.php:138
 ../../library/Class/AdminVar.php:139
+#: ../../library/Class/AdminVar.php:158
 msgid "Libellé de regroupement des abonnés"
 msgstr "CVS Patron group"
 
@@ -12907,16 +13054,19 @@ msgstr "Password label"
 
 #: ../../library/Class/AdminVar.php:319
 ../../library/Class/AdminVar.php:320
 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:323
+#: ../../library/Class/AdminVar.php:342
 msgid "Libellé pour la Dewey"
 msgstr "Label for Dewey"
 
 #: ../../library/Class/AdminVar.php:318
 ../../library/Class/AdminVar.php:319
 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:322
+#: ../../library/Class/AdminVar.php:341
 msgid "Libellé pour la PCDM4"
 msgstr "Label for Musical thesaurus"
 
 #: ../../library/Class/Systeme/Report.php:88
 #: ../../library/Class/Systeme/Report.php:91
+#: ../../library/Class/Systeme/Report.php:93
 msgid "Libellé principal"
 msgstr "Main title"
 
@@ -12990,6 +13140,7 @@ msgstr "Permalink"
 
 #: ../../library/Class/AdminVar.php:279
 ../../library/Class/AdminVar.php:280
 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279
+#: ../../library/Class/AdminVar.php:298
 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr "Click here to unsubscribe to this newsletter: : {{URL}}"
 
@@ -13421,7 +13572,7 @@ msgid "Liste de valeurs"
 msgstr "Values list"
 
 #: ../../library/Class/AdminVar.php:175
 ../../library/Class/AdminVar.php:176
-#: ../../library/Class/AdminVar.php:173
+#: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:192
 msgid ""
 "Liste des adresses IP publiques autorisées pour la consultation des documents"
 msgstr "Libraries public IP addresses"
@@ -13449,6 +13600,7 @@ msgstr "Categories list"
 
 #: ../../library/Class/AdminVar.php:317
 ../../library/Class/AdminVar.php:318
 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:321
+#: ../../library/Class/AdminVar.php:340
 msgid ""
 "Liste des champs que l'utilisateur peux modifier. <br/>Ex: nom;prenom;pseudo;"
 "adresse;<br/>code_postal;ville;mail;is_contact_mail;<br/>telephone;"
@@ -13459,6 +13611,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:330
 ../../library/Class/AdminVar.php:331
 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:334
+#: ../../library/Class/AdminVar.php:353
 msgid ""
 "Liste des codes des facettes qui ne sont pas limitées à l'affichage dans le "
 "résultat de recherche<br/>Exemple : T => Type de doc, Y => Annexe, B => "
@@ -13469,6 +13622,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:299
 ../../library/Class/AdminVar.php:300
 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:303
+#: ../../library/Class/AdminVar.php:322
 msgid ""
 "Liste des codes langue utilisées en plus du français séparées par des ;. "
 "Exemple: en;ro;es"
@@ -13486,7 +13640,7 @@ msgstr "List of last RSS feeds"
 
 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403
 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405
-#: ../../library/Class/AdminVar.php:408
+#: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427
 msgid ""
 "Liste des dimensions disponibles pour retailler les images lors de l'import."
 msgstr "Geometries available for image resize on upload."
@@ -13505,18 +13659,18 @@ msgstr "List of image extensions that can be selected to enrich content."
 
 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399
 #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401
-#: ../../library/Class/AdminVar.php:404
+#: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423
 msgid "Liste des extensions de fichiers disponibles à l'import."
 msgstr "Available file extensions on upload."
 
 #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406
 #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408
-#: ../../library/Class/AdminVar.php:411
+#: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430
 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés."
 msgstr "List of file extensions that can be resized."
 
 #: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411
-#: ../../library/Class/AdminVar.php:414
+#: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433
 msgid ""
 "Liste des extensions susceptibles d'être sélectionnées pour enrichir un "
 "contenu."
@@ -13529,6 +13683,7 @@ msgstr "Holds in \"%s\" location"
 
 #: ../../library/Class/AdminVar.php:244
 ../../library/Class/AdminVar.php:245
 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244
+#: ../../library/Class/AdminVar.php:263
 #, php-format
 msgid ""
 "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera "
@@ -13537,6 +13692,7 @@ msgstr "Websites to extend search (%s chain will be replaced by the query)"
 
 #: ../../library/Class/AdminVar.php:342
 ../../library/Class/AdminVar.php:343
 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:346
+#: ../../library/Class/AdminVar.php:365
 msgid "Liste des tags à ajouter au rapport d'état du système"
 msgstr "Tags to add to system status report"
 
@@ -13648,21 +13804,23 @@ msgid "Login"
 msgstr "Login"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:223
 #, php-format
 msgid "Login : %s"
 msgstr "Login : %s"
 
 #: ../../library/Class/AdminVar.php:151
 ../../library/Class/AdminVar.php:152
+#: ../../library/Class/AdminVar.php:171
 msgid "Login ARTE VOD"
 msgstr "ARTE VOD account"
 
 #: ../../library/Class/AdminVar.php:213
 ../../library/Class/AdminVar.php:214
-#: ../../library/Class/AdminVar.php:211
+#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:230
 msgid "Login du portail fourni par Kidilangues."
 msgstr "OPAC login provided by Kidilangues."
 
 #: ../../library/Class/AdminVar.php:217
 ../../library/Class/AdminVar.php:218
-#: ../../library/Class/AdminVar.php:215
+#: ../../library/Class/AdminVar.php:215 ../../library/Class/AdminVar.php:234
 msgid "Login du portail fourni par Premier-Chapitre."
 msgstr "OPAC login provided by Premier-Chapitre."
 
@@ -14077,7 +14235,7 @@ msgid "Message au-dessous du champ de recherche"
 msgstr "Search input label"
 
 #: ../../library/Class/AdminVar.php:183
 ../../library/Class/AdminVar.php:184
-#: ../../library/Class/AdminVar.php:181
+#: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:200
 msgid "Message d'avertissement affiché sur la popup d'emprunt"
 msgstr "Warnning message displayed on the loan popup"
 
@@ -14230,6 +14388,7 @@ msgstr "Update database"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 #: ../../application/modules/admin/controllers/IndexController.php:152
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../application/modules/admin/controllers/IndexController.php:143
 msgid "Mise à jour de la charte graphique"
 msgstr "Update skin"
 
@@ -14466,6 +14625,8 @@ msgstr "Edit"
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:165
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
 #, php-format
 msgid "Modifier \"%s\""
 msgstr "Edit: %s"
@@ -14621,6 +14782,7 @@ msgstr "Edit this task"
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:93
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr "Edit the variable: %s"
@@ -14966,7 +15128,7 @@ msgstr "Moderation alerts"
 
 #: ../../library/Class/AdminVar.php:357
 ../../library/Class/AdminVar.php:358
 #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360
-#: ../../library/Class/AdminVar.php:363
+#: ../../library/Class/AdminVar.php:363 ../../library/Class/AdminVar.php:382
 msgid ""
 "Modération des avis des bibliothécaires.<br />  Désactivé: affichage sans "
 "attente de validation<br /> Activé: affichage seulement après validation"
@@ -14976,7 +15138,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:356
 ../../library/Class/AdminVar.php:357
 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359
-#: ../../library/Class/AdminVar.php:362
+#: ../../library/Class/AdminVar.php:362 ../../library/Class/AdminVar.php:381
 msgid ""
 "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente "
 "de validation<br /> Activé : affichage seulement après validation."
@@ -15166,22 +15328,23 @@ msgid "Mot de passe"
 msgstr "Password"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:224
 #, php-format
 msgid "Mot de passe : %s"
 msgstr "Password: %s"
 
 #: ../../library/Class/AdminVar.php:179
 ../../library/Class/AdminVar.php:180
-#: ../../library/Class/AdminVar.php:177
+#: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:196
 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom"
 msgstr "Dilocom offers FTP"
 
 #: ../../library/Class/AdminVar.php:199
 ../../library/Class/AdminVar.php:200
-#: ../../library/Class/AdminVar.php:197
+#: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:216
 msgid "Mot de passe de l'utilisateur Orphea"
 msgstr "Orphea user password"
 
 #: ../../library/Class/AdminVar.php:172
 ../../library/Class/AdminVar.php:173
-#: ../../library/Class/AdminVar.php:170
+#: ../../library/Class/AdminVar.php:170 ../../library/Class/AdminVar.php:189
 msgid "Mot de passe de la collectivité, il est fourni par Dilicom."
 msgstr "Library ID (provided by Dilicom)."
 
@@ -15279,8 +15442,7 @@ msgstr "Library"
 msgid "N'envoie pas de données"
 msgstr "Does not send data"
 
-#: ../../library/Class/FRBR/Link.php:160
-#: ../../library/Class/FRBR/Link.php:162
+#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162
 #: ../../library/Class/FRBR/Link.php:162
 msgid "N'est pas une url valide"
 msgstr "Is not a valid url"
@@ -15371,6 +15533,7 @@ msgid "Ne pas créer de nouveau dossier"
 msgstr "Do not create a new directory"
 
 #: ../../library/Class/AdminVar.php:131
 ../../library/Class/AdminVar.php:132
+#: ../../library/Class/AdminVar.php:151
 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi"
 msgstr "Do not create analytical records for media without title"
 
@@ -15611,6 +15774,7 @@ msgid "Nom :"
 msgstr "Name:"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:216
 #, php-format
 msgid "Nom : %s"
 msgstr "Name: %s"
@@ -15623,11 +15787,13 @@ msgstr "Name starts with"
 #: ../../application/modules/admin/controllers/IndexController.php:175
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:194
+#: ../../application/modules/admin/controllers/IndexController.php:185
 msgid "Nom d'utilisateur ou mot de passe invalide"
 msgstr "Invalid username or password"
 
 #: ../../library/Class/AdminVar.php:247
 ../../library/Class/AdminVar.php:248
 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247
+#: ../../library/Class/AdminVar.php:266
 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr"
 msgstr "Portal main domain name, ie: myopac.mycity.org"
 
@@ -15637,7 +15803,7 @@ msgid "Nom de famille"
 msgstr "Family name"
 
 #: ../../library/Class/AdminVar.php:198
 ../../library/Class/AdminVar.php:199
-#: ../../library/Class/AdminVar.php:196
+#: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:215
 msgid "Nom de l'utilisateur Orphea"
 msgstr "Orphea account"
 
@@ -15649,10 +15815,12 @@ msgstr "Library's name"
 
 #: ../../library/Class/AdminVar.php:294
 ../../library/Class/AdminVar.php:295
 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:298
+#: ../../library/Class/AdminVar.php:317
 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr "Bibliosurf library name (lowercase)"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:127
 #, php-format
 msgid "Nom de la permission à donner : \"%s\""
 msgstr "Permission name to give: \"%s\""
@@ -15662,6 +15830,7 @@ msgstr "Permission name to give: \"%s\""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #: ../../application/modules/admin/views/scripts/index/index.phtml:43
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
+#: ../../application/modules/admin/views/scripts/index/index.phtml:26
 msgid "Nom du domaine"
 msgstr "Domain name"
 
@@ -15683,6 +15852,7 @@ msgstr "Accountant name"
 
 #: ../../library/Class/AdminVar.php:245
 ../../library/Class/AdminVar.php:246
 #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245
+#: ../../library/Class/AdminVar.php:264
 msgid "Nom du site"
 msgstr "Website name"
 
@@ -15717,6 +15887,7 @@ msgstr "# per page:"
 
 #: ../../library/Class/Systeme/Report.php:187
 #: ../../library/Class/Systeme/Report.php:190
+#: ../../library/Class/Systeme/Report.php:192
 msgid "Nombre d'albums"
 msgstr "Albums count"
 
@@ -15725,6 +15896,11 @@ msgstr "Albums count"
 msgid "Nombre d'albums présents : %d"
 msgstr "Albums count: %d"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:366
+#, php-format
+msgid "Nombre d'albums présents dans Bokeh : %d"
+msgstr "Albums in Bokeh: %d"
+
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 msgid "Nombre d'articles"
@@ -15768,6 +15944,7 @@ msgstr "Nb of patron reviews : %s"
 
 #: ../../library/Class/AdminVar.php:289
 ../../library/Class/AdminVar.php:290
 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:293
+#: ../../library/Class/AdminVar.php:312
 msgid "Nombre d'avis maximum à afficher par utilisateur."
 msgstr "Max number of reviews to display per user."
 
@@ -15846,19 +16023,19 @@ msgstr "Nombre d'évènements mis à jour : %s\n"
 
 #: ../../library/Class/AdminVar.php:348
 ../../library/Class/AdminVar.php:349
 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351
-#: ../../library/Class/AdminVar.php:354
+#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:373
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr "Max number of chars allows in reviews."
 
 #: ../../library/Class/AdminVar.php:350
 ../../library/Class/AdminVar.php:351
 #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353
-#: ../../library/Class/AdminVar.php:356
+#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:375
 msgid "Nombre de caractères maximum à afficher dans le bloc critiques."
 msgstr "Max number of chars to display in reviews box."
 
 #: ../../library/Class/AdminVar.php:349
 ../../library/Class/AdminVar.php:350
 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352
-#: ../../library/Class/AdminVar.php:355
+#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:374
 msgid "Nombre de caractères minimum autorisé à saisir dans les avis."
 msgstr "Minimum caracters to type in reviews."
 
@@ -15920,7 +16097,7 @@ msgstr "%s forms"
 
 #: ../../library/Class/AdminVar.php:360
 ../../library/Class/AdminVar.php:361
 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363
-#: ../../library/Class/AdminVar.php:366
+#: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:385
 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr "# of days of validity of new registrations on the site"
 
@@ -15932,6 +16109,7 @@ msgid "Nombre de jours restant sur la licence"
 msgstr "# of days left on the licence"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:154
 msgid "Nombre de membres"
 msgstr "Members count"
 
@@ -15946,6 +16124,11 @@ msgstr "Number of records not in cache"
 msgid "Nombre de notices par page"
 msgstr "Number of records per page"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:393
+#, php-format
+msgid "Nombre de notices présentes dans Bokeh : %d"
+msgstr "Number of records in Bokeh: %d"
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
 #: ../../library/Class/SessionActivity.php:482
 #: ../../library/Class/SessionActivity.php:482
@@ -15972,13 +16155,13 @@ msgid "Nombre de prêts simultanés"
 msgstr "# of simultaneous loans"
 
 #: ../../library/Class/AdminVar.php:182
 ../../library/Class/AdminVar.php:183
-#: ../../library/Class/AdminVar.php:180
+#: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:199
 msgid ""
 "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)"
 msgstr "Max # of loans in Dilicom"
 
 #: ../../library/Class/AdminVar.php:181
 ../../library/Class/AdminVar.php:182
-#: ../../library/Class/AdminVar.php:179
+#: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:198
 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom"
 msgstr "Max # of loans per PNB item"
 
@@ -16054,6 +16237,7 @@ msgstr "Known thumbnails count"
 
 #: ../../library/Class/AdminVar.php:253
 ../../library/Class/AdminVar.php:254
 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253
+#: ../../library/Class/AdminVar.php:272
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr "Maximum number of articles for multiple selection"
 
@@ -16115,6 +16299,7 @@ msgstr "Number of libraries per page"
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Non"
 msgstr "No"
 
@@ -16591,6 +16776,7 @@ msgstr "Wrong card number"
 
 #: ../../library/Class/AdminVar.php:295
 ../../library/Class/AdminVar.php:296
 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:299
+#: ../../library/Class/AdminVar.php:318
 msgid ""
 "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader."
 "readspeaker.com\">http://webreader.readspeaker.com</a>"
@@ -16882,6 +17068,7 @@ msgstr "Or API key (instead of nickname / password)"
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Oui"
 msgstr "Yes"
 
@@ -16993,9 +17180,13 @@ msgstr "Where to find it in other libraries"
 msgid "Où le trouver dans mes bibliothèques favorites"
 msgstr "Where to find it in my favorite libraries"
 
+#: ../../library/Class/Systeme/Report.php:83
+msgid "PHP"
+msgstr "PHP"
+
 #: ../../library/Class/AdminVar.php:367
 ../../library/Class/AdminVar.php:368
 #: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370
-#: ../../library/Class/AdminVar.php:373
+#: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:392
 msgid "PIWIK authentication token for widgets"
 msgstr "PIWIK authentication token for widgets"
 
@@ -17078,8 +17269,7 @@ msgstr "Next page of kiosk \"%s\""
 msgid "Page: "
 msgstr "Page: "
 
-#: ../../library/Class/NoticeHtml.php:82
-#: ../../library/Class/NoticeHtml.php:82
+#: ../../library/Class/NoticeHtml.php:82
 ../../library/Class/NoticeHtml.php:82
 msgid "Pagination"
 msgstr "Pagination"
 
@@ -17253,7 +17443,7 @@ msgid "Paramètrage du tableau des exemplaires"
 msgstr "Items table settings"
 
 #: ../../library/Class/AdminVar.php:200
 ../../library/Class/AdminVar.php:201
-#: ../../library/Class/AdminVar.php:198
+#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:217
 msgid ""
 "Paramètre permettant de choisir la langue des des ressources. La liste des "
 "codes disponibles se trouve à cette adresse http://help.orphea.com/43/"
@@ -17272,6 +17462,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:9
 msgid "Paramètres du site"
 msgstr "Site options"
 
@@ -17280,12 +17471,15 @@ msgid "Paramètres manquants dans la requête de suppression"
 msgstr "Missing parameters in deletion request"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:110
 msgid "Paramétrage"
 msgstr "Parameters"
 
 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146
 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:166
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Numilog\">Numilog</a>"
@@ -17295,6 +17489,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:156
 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:157
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:176
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>"
@@ -17308,7 +17503,10 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:143
 ../../library/Class/AdminVar.php:137
 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:140
 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:143
-#: ../../library/Class/AdminVar.php:144
+#: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:156
+#: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:159
+#: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:163
 msgid "Paramétrage CVS"
 msgstr "CVS parameters"
 
@@ -17352,6 +17550,7 @@ msgstr "Participants"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:77
 #: ../../application/modules/admin/views/scripts/index/index.phtml:66
 #: ../../application/modules/admin/views/scripts/index/index.phtml:60
+#: ../../application/modules/admin/views/scripts/index/index.phtml:49
 msgid "Participez à la communauté"
 msgstr "Participate to the community"
 
@@ -17418,12 +17617,12 @@ msgid "Pas encore de nouveauté."
 msgstr "No novelties yet."
 
 #: ../../library/Class/AdminVar.php:214
 ../../library/Class/AdminVar.php:215
-#: ../../library/Class/AdminVar.php:212
+#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:231
 msgid "Password du portail fourni par Kidilangues."
 msgstr "OPAC password provided by Kidilangues."
 
 #: ../../library/Class/AdminVar.php:218
 ../../library/Class/AdminVar.php:219
-#: ../../library/Class/AdminVar.php:216
+#: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:235
 msgid "Password du portail fourni par Premier-Chapitre"
 msgstr "Premier chapitre password"
 
@@ -17717,6 +17916,7 @@ msgstr "Access plan"
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:301
 msgid "Planification"
 msgstr "Plannification"
 
@@ -17739,6 +17939,7 @@ msgstr "Plan task \"%s\""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:326
 msgid "Plannifier la tâche"
 msgstr "Plan task"
 
@@ -17808,6 +18009,7 @@ msgstr "Point"
 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171
 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460
 #: ../../library/Class/AdminVar.php:465 ../../library/Class/AdminVar.php:468
+#: ../../library/Class/AdminVar.php:487
 msgid "Portail"
 msgstr "Portal"
 
@@ -17817,6 +18019,7 @@ msgstr "Portal"
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187
 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239
+#: ../../library/Class/AdminVar.php:258
 msgid "Position"
 msgstr "Location"
 
@@ -17829,6 +18032,7 @@ msgstr "Pager position"
 
 #: ../../library/Class/AdminVar.php:238
 ../../library/Class/AdminVar.php:239
 #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238
+#: ../../library/Class/AdminVar.php:257
 msgid "Position de la pagination en résultat de recherche"
 msgstr "Pager position on search results page"
 
@@ -18083,6 +18287,7 @@ msgstr "Data profile %s (%d) not set or misconfigured"
 
 #: ../../library/Class/AdminVar.php:275
 ../../library/Class/AdminVar.php:276
 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275
+#: ../../library/Class/AdminVar.php:294
 msgid ""
 "Profil de la page de désinscription<br/>Par défaut : page d'accueil du "
 "portail"
@@ -18301,6 +18506,7 @@ msgid "Protocole HTTP obligatoire"
 msgstr "HTTPS is mandatory"
 
 #: ../../application/modules/api/controllers/UserController.php:26
+#: ../../application/modules/api/controllers/UserController.php:47
 msgid "Protocole HTTPS obligatoire"
 msgstr "HTTPS is mandatory"
 
@@ -18440,7 +18646,7 @@ msgid "Présentation"
 msgstr "Presentation"
 
 #: ../../library/Class/AdminVar.php:224
 ../../library/Class/AdminVar.php:225
-#: ../../library/Class/AdminVar.php:222
+#: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:241
 msgid ""
 "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par "
 "défaut 30 jours)."
@@ -18488,8 +18694,7 @@ msgstr "Preview of the selection %s in the search result"
 msgid "Prêt"
 msgstr "Loan"
 
-#: ../../library/Class/User/Cards.php:67
-#: ../../library/Class/User/Cards.php:67
+#: ../../library/Class/User/Cards.php:67
 ../../library/Class/User/Cards.php:67
 msgid "Prêt introuvable"
 msgstr "Unknown loan"
 
@@ -19017,6 +19222,7 @@ msgstr "Reject serials"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 msgid "Rejetée"
 msgstr "Rejected"
 
@@ -19052,6 +19258,7 @@ msgstr "Publish site online"
 
 #: ../../library/Class/AdminVar.php:336
 ../../library/Class/AdminVar.php:337
 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:340
+#: ../../library/Class/AdminVar.php:359
 #, php-format
 msgid ""
 "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous "
@@ -19662,8 +19869,7 @@ msgstr "Cannot hold, maximum of holders reached for this item."
 msgid "Réservation interdite pour l'abonné."
 msgstr "Holding forbidden for the patron."
 
-#: ../../library/Class/User/Cards.php:77
-#: ../../library/Class/User/Cards.php:77
+#: ../../library/Class/User/Cards.php:77
 ../../library/Class/User/Cards.php:77
 msgid "Réservation introuvable"
 msgstr "Hold not found"
 
@@ -19908,6 +20114,7 @@ msgstr "ILS"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:85
 #: ../../application/modules/admin/views/scripts/index/index.phtml:74
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
 msgid "Salle de discussion #Bokeh"
 msgstr "#Bokeh discussion room"
 
@@ -20079,7 +20286,7 @@ msgid ""
 msgstr "Forbid internet access from Opac located in library"
 
 #: ../../library/Class/AdminVar.php:177
 ../../library/Class/AdminVar.php:178
-#: ../../library/Class/AdminVar.php:175
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:194
 msgid "Serveur FTP de diffusion des offres PNB Dilicom"
 msgstr "Dilicom FTP server"
 
@@ -20195,13 +20402,13 @@ msgid "Session non trouvée"
 msgstr "Session not found"
 
 #: ../../library/Class/AdminVar.php:195
 ../../library/Class/AdminVar.php:196
-#: ../../library/Class/AdminVar.php:193
+#: ../../library/Class/AdminVar.php:193 ../../library/Class/AdminVar.php:212
 msgid "Sets du serveur OAI Cité de la Musique à moissonner"
 msgstr "Server Sets OAI \"La Cité de la Musique\" harvesting"
 
 #: ../../library/Class/AdminVar.php:374
 ../../library/Class/AdminVar.php:375
 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377
-#: ../../library/Class/AdminVar.php:380
+#: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:399
 msgid ""
 "Seuil d'alerte en heures pour détecter que les traitements d'intégration "
 "prennent trop de temps. Par défaut: 2"
@@ -20299,6 +20506,7 @@ msgstr "Site %s deleted"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:79
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
 #: ../../application/modules/admin/views/scripts/index/index.phtml:62
+#: ../../application/modules/admin/views/scripts/index/index.phtml:51
 msgid "Site communautaire"
 msgstr "Community website"
 
@@ -20758,6 +20966,7 @@ msgstr "Delete hold"
 
 #: ../../library/Class/AdminVar.php:298
 ../../library/Class/AdminVar.php:299
 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:302
+#: ../../library/Class/AdminVar.php:321
 msgid ""
 "Supprime l'affichage du lien d'enregistrement dans les différents "
 "formulaires de connexion et interdit l'enregistrement d'utilisateurs"
@@ -21224,6 +21433,7 @@ msgstr "Tag (s)"
 #: ../../library/ZendAfi/Form/Album.php:205
 #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:55
 #: ../../library/ZendAfi/Form/Album.php:204
+#: ../../library/Class/Systeme/Report.php:95
 msgid "Tags"
 msgstr "Tags"
 
@@ -21262,7 +21472,7 @@ msgstr "Size : :"
 
 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396
 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398
-#: ../../library/Class/AdminVar.php:401
+#: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420
 msgid "Taille du dossier userfiles en méga octets."
 msgstr "Userfiles folder size (mb)."
 
@@ -21289,6 +21499,11 @@ msgstr "Request time"
 msgid "Temps de traitement "
 msgstr "Computation time "
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:372
+#, php-format
+msgid "Tentative de vignettage de l'album \"%s\" : "
+msgstr "Try to thumbnail album \"%s\": "
+
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:67
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:71
 #: ../../application/modules/admin/views/scripts/zone/_form.phtml:14
@@ -21416,6 +21631,7 @@ msgstr "Help text"
 
 #: ../../library/Class/AdminVar.php:297
 ../../library/Class/AdminVar.php:298
 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:301
+#: ../../library/Class/AdminVar.php:320
 msgid "Texte d'aide affiché dans la fiche abonné"
 msgstr "Patron form help text"
 
@@ -21441,6 +21657,7 @@ msgstr "Confirmation text"
 
 #: ../../library/Class/AdminVar.php:280
 ../../library/Class/AdminVar.php:281
 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280
+#: ../../library/Class/AdminVar.php:299
 msgid ""
 "Texte de désinscription version HTML<br/>Le lien de désinscription est "
 "appliqué sur tout ce texte<br/>Par défaut : Je ne veux plus recevoir cette "
@@ -21451,6 +21668,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:278
 ../../library/Class/AdminVar.php:279
 #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278
+#: ../../library/Class/AdminVar.php:297
 msgid ""
 "Texte de désinscription version texte<br/>Le lien est inséré à la place de "
 "{{URL}}<br/>Par défaut : Lien pour se désinscrire de cette lettre "
@@ -21466,11 +21684,13 @@ msgstr "Breadcrumb text"
 
 #: ../../library/Class/AdminVar.php:292
 ../../library/Class/AdminVar.php:293
 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:296
+#: ../../library/Class/AdminVar.php:315
 msgid "Texte visible après l'envoi d'e-mail de demande de réservation."
 msgstr "Text displayed upon holding confirmation email sent."
 
 #: ../../library/Class/AdminVar.php:291
 ../../library/Class/AdminVar.php:292
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:295
+#: ../../library/Class/AdminVar.php:314
 msgid "Texte visible par l'internaute après son inscription."
 msgstr "Text displayed upon registration."
 
@@ -21513,6 +21733,7 @@ msgstr "Skin %s"
 
 #: ../../library/Class/Systeme/Report.php:89
 #: ../../library/Class/Systeme/Report.php:92
+#: ../../library/Class/Systeme/Report.php:94
 msgid "Thèmes utilisés"
 msgstr "Used skins"
 
@@ -21860,6 +22081,8 @@ msgstr "TB"
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
+#: ../../library/Class/Systeme/Report.php:127
+#: ../../library/Class/Systeme/Report.php:148
 msgid "Tous"
 msgstr "All"
 
@@ -22083,6 +22306,7 @@ msgid "Transfert impossible, champ de fichier introuvable"
 msgstr "Can not transfer file field found"
 
 #: ../../library/Class/Upload.php:312
 ../../library/Class/Upload.php:312
+#: ../../library/Class/Upload.php:313
 msgid ""
 "Transfert impossible, le répertoire de destination n'a pas pu être créé."
 msgstr "Transfer impossible, the destination directory could not be created."
@@ -22156,6 +22380,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/RSS.php:29
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:382
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/Models.php:30
+#: ../../library/Class/Systeme/Report.php:162
 msgid "Type"
 msgstr "Type"
 
@@ -22180,7 +22405,7 @@ msgid "Type d'interface"
 msgstr "Interface target"
 
 #: ../../library/Class/AdminVar.php:188
 ../../library/Class/AdminVar.php:189
-#: ../../library/Class/AdminVar.php:186
+#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:205
 msgid "Type de SSO OneDTouch"
 msgstr "SSO type OneDTouch"
 
@@ -22582,9 +22807,15 @@ msgstr "UNIMARC"
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:161
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../library/Class/Systeme/Report.php:163
 msgid "URL"
 msgstr "URL"
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:79
+#, php-format
+msgid "URL \"%s\" invalide"
+msgstr "invalid URL \"%s\""
+
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 msgid "URL Objet A"
@@ -22596,11 +22827,13 @@ msgid "URL Objet B"
 msgstr "URL Object B"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:238
 #, php-format
 msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\""
 msgstr "SSO URL generated by /modules/%s for user \"%s\""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
 #, php-format
 msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\""
 msgstr "SSO URL generated for user \"%s\" and album \"%s\""
@@ -22612,6 +22845,7 @@ msgstr "Author's wikepedia URL"
 
 #: ../../library/Class/AdminVar.php:311
 ../../library/Class/AdminVar.php:312
 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:315
+#: ../../library/Class/AdminVar.php:334
 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk"
 msgstr "Search URL"
 
@@ -22641,13 +22875,25 @@ msgstr "Jamendo track URL"
 msgid "URL de la vignette"
 msgstr "Thumbnail URL"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:339
+msgid "URL de moissonnage générée pour la première page"
+msgstr "Computed harvest url of first page"
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#, php-format
+msgid ""
+"URL de validation du ticket de connexion générée pour l'utilisateur \"%s\""
+msgstr "User \"%s\" ticket validation url"
+
 #: ../../library/Class/AdminVar.php:341
 ../../library/Class/AdminVar.php:342
 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:345
+#: ../../library/Class/AdminVar.php:364
 msgid "URL destinataire du rapport d'état du système (0 pour désactiver)"
 msgstr "URL to publish system status report (set to 0 to disable)"
 
 #: ../../library/Class/AdminVar.php:307
 ../../library/Class/AdminVar.php:308
 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:311
+#: ../../library/Class/AdminVar.php:330
 msgid "URL du javascript Babelthèque à insérer dans l'OPAC"
 msgstr "Babelio URL"
 
@@ -22665,13 +22911,11 @@ msgstr "Profile URL"
 msgid "URL du site web"
 msgstr "Website URL"
 
-#: ../../library/Class/FRBR/Link.php:159
-#: ../../library/Class/FRBR/Link.php:159
+#: ../../library/Class/FRBR/Link.php:159
 ../../library/Class/FRBR/Link.php:159
 msgid "URL objet A est requis"
 msgstr "A URL object is required"
 
-#: ../../library/Class/FRBR/Link.php:161
-#: ../../library/Class/FRBR/Link.php:161
+#: ../../library/Class/FRBR/Link.php:161
 ../../library/Class/FRBR/Link.php:161
 msgid "URL objet B est requis"
 msgstr "URL object B is required"
 
@@ -22682,6 +22926,7 @@ msgstr "Custom URL"
 
 #: ../../library/Class/Systeme/Report.php:87
 #: ../../library/Class/Systeme/Report.php:90
+#: ../../library/Class/Systeme/Report.php:92
 msgid "URL principale"
 msgstr "Main URL"
 
@@ -22757,10 +23002,9 @@ msgid "Un libellé est requis"
 msgstr "A label is required"
 
 #: ../../library/Class/Users.php:1142
 ../../library/Class/Users.php:1142
-#: ../../library/Class/User/LostPass.php:110
-#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1137
-#: ../../library/Class/Users.php:1158
+#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133
+#: ../../library/Class/Users.php:1137 ../../library/Class/Users.php:1158
 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion."
 msgstr "An email has been sent to you with your connection settings."
 
@@ -22969,6 +23213,7 @@ msgstr "Direct access URL"
 
 #: ../../library/Class/AdminVar.php:316
 ../../library/Class/AdminVar.php:317
 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:320
+#: ../../library/Class/AdminVar.php:339
 msgid "Url d'import d'un agenda TYPO3"
 msgstr "TYPO3 feed URL"
 
@@ -22978,12 +23223,14 @@ msgstr "Dilicom resource external URL"
 
 #: ../../library/Class/AdminVar.php:246
 ../../library/Class/AdminVar.php:247
 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246
+#: ../../library/Class/AdminVar.php:265
 msgid "Url de recherche"
 msgstr "search URL"
 
 #: ../../library/Class/AdminVar.php:386
 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386
 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:394
+#: ../../library/Class/AdminVar.php:413
 msgid "Url du connecteur Le Social"
 msgstr "Le Social URL"
 
@@ -22993,16 +23240,18 @@ msgstr "DRM file URL"
 
 #: ../../library/Class/AdminVar.php:232
 ../../library/Class/AdminVar.php:233
 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232
+#: ../../library/Class/AdminVar.php:251
 msgid "Url du proxy Redmine"
 msgstr "Redmine proxy URL"
 
 #: ../../library/Class/AdminVar.php:174
 ../../library/Class/AdminVar.php:175
-#: ../../library/Class/AdminVar.php:172
+#: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:191
 msgid "Url du serveur PNB Dilicom"
 msgstr "Dilicom server URL"
 
 #: ../../library/Class/AdminVar.php:231
 ../../library/Class/AdminVar.php:232
 #: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231
+#: ../../library/Class/AdminVar.php:250
 msgid "Url du serveur redmine"
 msgstr "Redmine server URL"
 
@@ -23036,7 +23285,7 @@ msgid "Utilisateur"
 msgstr "User"
 
 #: ../../library/Class/AdminVar.php:178
 ../../library/Class/AdminVar.php:179
-#: ../../library/Class/AdminVar.php:176
+#: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:195
 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom"
 msgstr "PNB user FTP"
 
@@ -23052,6 +23301,7 @@ msgid "Utilisateur courant : %s"
 msgstr "Current user : %s"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
 msgid "Utilisateur créé pour ce test"
 msgstr "Generated user for this test"
 
@@ -23069,11 +23319,13 @@ msgstr "Unknown user"
 #: ../../application/modules/admin/controllers/IndexController.php:170
 #: ../../application/modules/admin/controllers/UsersController.php:117
 #: ../../application/modules/admin/controllers/IndexController.php:178
+#: ../../application/modules/admin/controllers/IndexController.php:169
 msgid "Utilisateur invalide"
 msgstr "Invalid user"
 
 #: ../../application/modules/api/controllers/UserController.php:39
 #: ../../application/modules/api/controllers/UserController.php:39
+#: ../../application/modules/api/controllers/UserController.php:60
 msgid "Utilisateur non trouvé"
 msgstr "User not found"
 
@@ -23263,6 +23515,7 @@ msgstr "Variable"
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:110
+#: ../../application/modules/admin/controllers/IndexController.php:101
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr "Variable \"%s\" saved"
@@ -23296,6 +23549,7 @@ msgstr "Friday"
 #: ../../library/Class/AdminVar.php:210
 #: ../../library/Class/Systeme/Report.php:72
 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:207
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:226
 msgid "Version"
 msgstr "Version"
 
@@ -23319,7 +23573,7 @@ msgid "Version de : \"%s\""
 msgstr "Version of : \"%s\""
 
 #: ../../library/Class/AdminVar.php:208
 ../../library/Class/AdminVar.php:209
-#: ../../library/Class/AdminVar.php:206
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:225
 msgid "Version de Kidilangues."
 msgstr "Kidilangues version."
 
@@ -23376,10 +23630,12 @@ msgid "Versions de l'article : \"%s\""
 msgstr "Article version : \"%s\""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:283
 msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage"
 msgstr "Please activate this resource to be able to manage its harvesting"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:118
 msgid ""
 "Veuillez activer la ressource pour pouvoir gérer les droits d'accès des "
 "groupes"
@@ -23396,6 +23652,7 @@ msgid "Veuillez choisir une notice"
 msgstr "Please select a record"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:191
 msgid ""
 "Veuillez configurer les droits de cette ressource pour obtenir une connexion "
 "SSO"
@@ -23433,6 +23690,7 @@ msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr "Please enter the variable PIWIK_AUTH_TOKEN and JS_STAT"
 
 #: ../../application/modules/admin/controllers/IndexController.php:81
+#: ../../application/modules/admin/controllers/IndexController.php:72
 msgid "Veuillez renseigner le paramètre \"cle\"."
 msgstr "Please fill the \"cle\" parameter."
 
@@ -23475,6 +23733,14 @@ msgstr "Please select a library"
 msgid "Veuillez sélectionner une boite"
 msgstr "Select a widget"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:108
+msgid ""
+"Veuillez vérifier le fichier config.php de la ressource pour pouvoir gérer "
+"le paramétrage"
+msgstr ""
+"Please check this resource config.php file to be able to manage its "
+"configuration"
+
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 msgid "Vider"
@@ -23537,6 +23803,10 @@ msgstr "Thumbnail (jpg, gif, png)"
 msgid "Vignette + frame + lien vers le document"
 msgstr "Thumbnail + frame + link to document"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:406
+msgid "Vignette de l'album : "
+msgstr "Album thumbnail: "
+
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #, php-format
@@ -23599,6 +23869,7 @@ msgstr "Thumbnails"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 #: ../../application/modules/opac/controllers/AbonneController.php:463
 #: ../../application/modules/opac/controllers/AbonneController.php:464
+#: ../../library/Class/Systeme/Report.php:226
 msgid "Ville"
 msgstr "City"
 
@@ -23682,6 +23953,7 @@ msgstr "See"
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:265
 msgid "Voir l'album"
 msgstr "See album"
 
@@ -23762,6 +24034,7 @@ msgid "Voir le site"
 msgstr "See the website"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:360
 msgid "Voir les albums"
 msgstr "See albums"
 
@@ -23786,6 +24059,10 @@ msgstr "See the details"
 msgid "Voir les fils RSS sélectionnés"
 msgstr "See selected RSS feed"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:386
+msgid "Voir les notices"
+msgstr "See records"
+
 #: ../../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
@@ -24025,7 +24302,7 @@ msgid "Votre compte n'a pas d'email. Pour continuer vous devez le renseigner."
 msgstr "Your account does not have an email. Please fill it to continue."
 
 #: ../../library/Class/AdminVar.php:184
 ../../library/Class/AdminVar.php:185
-#: ../../library/Class/AdminVar.php:182
+#: ../../library/Class/AdminVar.php:182 ../../library/Class/AdminVar.php:201
 msgid ""
 "Votre compte sera mis à jour dans un délai de 15 minutes après le retour "
 "anticipé du document."
@@ -24067,10 +24344,9 @@ msgid "Votre fiche"
 msgstr "Your profile"
 
 #: ../../library/Class/Users.php:1133
 ../../library/Class/Users.php:1133
-#: ../../library/Class/User/LostPass.php:102
-#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121
-#: ../../library/Class/Users.php:1124 ../../library/Class/Users.php:1128
-#: ../../library/Class/Users.php:1149
+#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142
+#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124
+#: ../../library/Class/Users.php:1128 ../../library/Class/Users.php:1149
 #, php-format
 msgid "Votre identifiant : %s\n"
 msgstr "Your login : %s\n"
@@ -24120,10 +24396,9 @@ msgid "Votre message : "
 msgstr "Your message : "
 
 #: ../../library/Class/Users.php:1134
 ../../library/Class/Users.php:1134
-#: ../../library/Class/User/LostPass.php:103
-#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122
-#: ../../library/Class/Users.php:1125 ../../library/Class/Users.php:1129
-#: ../../library/Class/Users.php:1150
+#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143
+#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125
+#: ../../library/Class/Users.php:1129 ../../library/Class/Users.php:1150
 #, php-format
 msgid "Votre mot de passe : %s\n"
 msgstr "Your password : %s\n"
@@ -24345,10 +24620,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:"
 msgstr "You made an application for registration to the newsletter :"
 
 #: ../../library/Class/Users.php:1132
 ../../library/Class/Users.php:1132
-#: ../../library/Class/User/LostPass.php:101
-#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120
-#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1127
-#: ../../library/Class/Users.php:1148
+#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141
+#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123
+#: ../../library/Class/Users.php:1127 ../../library/Class/Users.php:1148
 msgid "Vous avez fait une demande de mot de passe sur le portail."
 msgstr "You have requested a password on the portal."
 
@@ -24726,6 +25000,8 @@ msgstr "You do not have saved search in your bookmarks"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:151
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:178
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:156
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:183
 #, php-format
 msgid "Vous n'avez pas la permission \"%s\""
 msgstr "You don't have the %s permission"
@@ -24762,6 +25038,7 @@ msgstr "You do not have rights for activity subscription"
 
 #: ../../application/modules/admin/controllers/IndexController.php:165
 #: ../../application/modules/admin/controllers/IndexController.php:173
+#: ../../application/modules/admin/controllers/IndexController.php:164
 msgid ""
 "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité."
 msgstr "You do not have sufficient rights to do this."
@@ -24969,6 +25246,8 @@ msgstr "You subscribed to session taking place at %s of %s activity"
 #: ../../application/modules/admin/controllers/IndexController.php:190
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:198
+#: ../../application/modules/admin/controllers/IndexController.php:177
+#: ../../application/modules/admin/controllers/IndexController.php:189
 #, php-format
 msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\""
 msgstr "You are now logged as \"%s\""
@@ -24985,11 +25264,13 @@ msgstr "Checking anticipated check-in"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
 msgid "Vérifiée"
 msgstr "Checked"
 
 #: ../../library/Class/AdminVar.php:334
 ../../library/Class/AdminVar.php:335
 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:338
+#: ../../library/Class/AdminVar.php:357
 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites"
 msgstr "Multi-site items booking for Koha ws"
 
@@ -25003,6 +25284,7 @@ msgstr "Web"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:81
 #: ../../application/modules/admin/views/scripts/index/index.phtml:70
 #: ../../application/modules/admin/views/scripts/index/index.phtml:64
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Wiki Bokeh"
 msgstr "Bokeh Wiki"
 
@@ -25754,8 +26036,7 @@ msgstr "to %s"
 msgid "jusqu'à"
 msgstr "until"
 
-#: ../../library/Class/Ouverture.php:180
-#: ../../library/Class/Ouverture.php:180
+#: ../../library/Class/Ouverture.php:180
 ../../library/Class/Ouverture.php:180
 #, php-format
 msgid "le %s"
 msgstr "%s"
@@ -26645,6 +26926,7 @@ msgstr "{contenu}"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:48
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:31
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 msgid "» Modifier «"
 msgstr "» Edit «"
 
@@ -26699,6 +26981,7 @@ msgstr "Webservice authentification failed"
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:62
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:135
 #, php-format
 msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\""
 msgstr "ILS conection failure: \"%s\""
@@ -26741,12 +27024,14 @@ msgstr "Preregistration failed, unknown error occured."
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:124
 #, php-format
 msgid "Échec de la suggestion, le webservice a répondu \"%s\""
 msgstr "ILS conection failure: \"%s\""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:121
 msgid "Échec de la suggestion, une erreur inconnue est survenue."
 msgstr "Suggestion failed, unknown error happens."
 
diff --git a/library/translation/es.po b/library/translation/es.po
index c5853097305b1349de3918d838bd342406dce9f6..f11dc82daff524a9d93c08808e8539484da6a538 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: 2018-03-26 12:00+0200\n"
+"POT-Creation-Date: 2018-04-09 14:17+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/"
@@ -958,12 +958,14 @@ msgstr "Este servicio no puede pruebarse"
 #: ../../library/Class/AdminVar.php:393
 ../../library/Class/AdminVar.php:420
 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:427
+#: ../../library/Class/AdminVar.php:446
 msgid "API"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:392
 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418
 #: ../../library/Class/AdminVar.php:423 ../../library/Class/AdminVar.php:426
+#: ../../library/Class/AdminVar.php:445
 msgid "API utilisée pour les cartes statiques"
 msgstr ""
 
@@ -1060,6 +1062,7 @@ msgstr "ILS suscriptor"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 msgid "Acceptée"
 msgstr "Aceptada"
 
@@ -1205,6 +1208,11 @@ msgstr "La gestión de los recursos"
 msgid "Accéder aux titres seulement"
 msgstr "Sólo Título"
 
+#: ../../library/Class/DigitalResource/AlbumViewHelper.php:44
+#, fuzzy, php-format
+msgid "Accéder à \"%s\" dans un nouvel onglet"
+msgstr "En una ficha"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65
 #, fuzzy, php-format
@@ -1290,6 +1298,7 @@ msgstr "Acciones"
 
 #: ../../library/Class/AdminVar.php:242
 ../../library/Class/AdminVar.php:243
 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242
+#: ../../library/Class/AdminVar.php:261
 #, fuzzy
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche au survol de la "
@@ -1298,6 +1307,7 @@ msgstr "Activación de la disponibilidad en el resultado de búsqueda"
 
 #: ../../library/Class/AdminVar.php:243
 ../../library/Class/AdminVar.php:244
 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243
+#: ../../library/Class/AdminVar.php:262
 #, fuzzy
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche. Calculé grâce "
@@ -1306,37 +1316,41 @@ msgstr "Activación de la disponibilidad en el resultado de búsqueda"
 
 #: ../../library/Class/AdminVar.php:333
 ../../library/Class/AdminVar.php:334
 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:337
+#: ../../library/Class/AdminVar.php:356
 msgid "Activation de la navigation collaborative"
 msgstr "Activación de la navegación colaborativa"
 
 #: ../../library/Class/AdminVar.php:202
 ../../library/Class/AdminVar.php:203
-#: ../../library/Class/AdminVar.php:200
+#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:219
 msgid "Activation de la ressource numérique PlanetNemo"
 msgstr "Activación del recurso digital PlanetNemo"
 
 #: ../../library/Class/AdminVar.php:313
 ../../library/Class/AdminVar.php:314
 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:317
+#: ../../library/Class/AdminVar.php:336
 msgid "Activation des boîtes dans les menus"
 msgstr "Activación de las cajas en los menús"
 
 #: ../../library/Class/AdminVar.php:338
 ../../library/Class/AdminVar.php:339
 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:342
+#: ../../library/Class/AdminVar.php:361
 msgid "Activation des fonctions avancées du téléphone"
 msgstr "Activación de las funciones avancadas del télefono"
 
 #: ../../library/Class/AdminVar.php:255
 ../../library/Class/AdminVar.php:256
 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255
+#: ../../library/Class/AdminVar.php:274
 msgid "Activation des formulaires"
 msgstr "Activación de los formularios"
 
 #: ../../library/Class/AdminVar.php:170
 ../../library/Class/AdminVar.php:171
-#: ../../library/Class/AdminVar.php:168
+#: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:187
 msgid "Activation du PNB Dilicom"
 msgstr "Activación del PNB Dilicom"
 
 #: ../../library/Class/AdminVar.php:381
 ../../library/Class/AdminVar.php:382
 #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384
-#: ../../library/Class/AdminVar.php:387
+#: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406
 msgid ""
 "Activation du serveur OAI: permet le moissonnage des domaines par d'autres "
 "logiciels via OAI"
@@ -1360,6 +1374,7 @@ msgid "Activer la tâche"
 msgstr "Agregar tarea"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
 #, fuzzy
 msgid "Activer le moissonnage"
 msgstr "Comienza la cosecha"
@@ -1387,11 +1402,13 @@ msgid "Activer ou désactiver : %s"
 msgstr "Activar el módulo de formación"
 
 #: ../../library/Class/AdminVar.php:133
 ../../library/Class/AdminVar.php:134
+#: ../../library/Class/AdminVar.php:153
 msgid "Activer ou désactiver la bibliothèque numérique"
 msgstr "Activar la biblioteca digital"
 
 #: ../../library/Class/AdminVar.php:305
 ../../library/Class/AdminVar.php:306
 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:309
+#: ../../library/Class/AdminVar.php:328
 #, fuzzy
 msgid "Activer ou désactiver le module d'activité"
 msgstr "Activar el módulo de formación"
@@ -1453,6 +1470,7 @@ msgstr "Actividad"
 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36
 #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51
+#: ../../library/Class/Systeme/Report.php:190
 msgid "Activé"
 msgstr "Activado"
 
@@ -1589,6 +1607,7 @@ msgstr "Administrar el servidor de AFI-Multimedia"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 #: ../../application/modules/opac/controllers/AbonneController.php:461
 #: ../../application/modules/opac/controllers/AbonneController.php:462
+#: ../../library/Class/Systeme/Report.php:224
 msgid "Adresse"
 msgstr "Dirección"
 
@@ -1622,27 +1641,28 @@ msgid "Adresse du destinataire absente."
 msgstr "Destinatario ausente dirección."
 
 #: ../../library/Class/AdminVar.php:187
 ../../library/Class/AdminVar.php:188
-#: ../../library/Class/AdminVar.php:185
+#: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:204
 msgid "Adresse du serveur OAI 1D touch"
 msgstr "Dirección del servidor OAI 1D touch"
 
 #: ../../library/Class/AdminVar.php:193
 ../../library/Class/AdminVar.php:194
-#: ../../library/Class/AdminVar.php:191
+#: ../../library/Class/AdminVar.php:191 ../../library/Class/AdminVar.php:210
 #, fuzzy
 msgid "Adresse du serveur OAI Cité de la Musique"
 msgstr "Dirección del servidor OAI Cyberlibris"
 
 #: ../../library/Class/AdminVar.php:148
 ../../library/Class/AdminVar.php:149
+#: ../../library/Class/AdminVar.php:168
 msgid "Adresse du serveur OAI Cyberlibris"
 msgstr "Dirección del servidor OAI Cyberlibris"
 
 #: ../../library/Class/AdminVar.php:197
 ../../library/Class/AdminVar.php:198
-#: ../../library/Class/AdminVar.php:195
+#: ../../library/Class/AdminVar.php:195 ../../library/Class/AdminVar.php:214
 msgid "Adresse du serveur Orphea"
 msgstr "Dirección del servidor Orphea"
 
 #: ../../library/Class/AdminVar.php:204
 ../../library/Class/AdminVar.php:205
-#: ../../library/Class/AdminVar.php:202
+#: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:221
 msgid "Adresse du serveur de la ressource numérique Orthodidacte"
 msgstr "Dirección del servidor del recurso digital Orthodidacte"
 
@@ -2184,6 +2204,7 @@ msgstr "Añadir a la cesta"
 
 #: ../../library/Class/AdminVar.php:331
 ../../library/Class/AdminVar.php:332
 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:335
+#: ../../library/Class/AdminVar.php:354
 msgid "Ajouter automatiquement une boîte panier dans la division flottante"
 msgstr "Añadir automáticamente una caja cesta en la division flotante"
 
@@ -3108,8 +3129,7 @@ msgstr "Tipo de documento"
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
-#: ../../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/Library.php:263
@@ -3122,12 +3142,12 @@ msgid "Aucun"
 msgstr "No"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:368
 #, fuzzy
 msgid "Aucun album présent pour cette ressource"
 msgstr "Sin reservas"
 
-#: ../../library/Class/NoticeHtml.php:69
-#: ../../library/Class/NoticeHtml.php:69
+#: ../../library/Class/NoticeHtml.php:69
 ../../library/Class/NoticeHtml.php:69
 msgid "Aucun article n'a été trouvé"
 msgstr "So se ha encontrado ningún artículo"
 
@@ -3223,6 +3243,7 @@ msgid "Aucun fichier présent dans %s"
 msgstr "Ningún archivo presente en %s"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:140
 msgid "Aucun groupe n'a de droits d'accès à la ressources"
 msgstr ""
 
@@ -3298,6 +3319,7 @@ msgid "Aucun résumé"
 msgstr "No hay sumario"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:176
 #, fuzzy
 msgid "Aucun utilisateur rattaché aux groupes"
 msgstr "No se han encontrado artículos"
@@ -3396,6 +3418,11 @@ msgstr "Reserva retira"
 msgid "Aucune inscription validée"
 msgstr "Ninguna crítica reciente"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:395
+#, fuzzy
+msgid "Aucune notice présente pour cette ressource"
+msgstr "Sin reservas"
+
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 msgid "Aucune notice trouvée"
@@ -3699,10 +3726,12 @@ msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:29
 #: ../../application/modules/api/controllers/UserController.php:29
+#: ../../application/modules/api/controllers/UserController.php:50
 msgid "Autorisation non spécifiée"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292
+#: ../../library/Class/AdminVar.php:311
 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)"
 msgstr ""
 
@@ -3970,6 +3999,7 @@ msgid "Base de données : "
 msgstr "Dirección de los datos"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:300
 #, fuzzy
 msgid "Batch"
 msgstr "Batches"
@@ -4621,10 +4651,9 @@ msgstr ""
 
 #: ../../library/Class/Users.php:1135
 ../../library/Class/Users.php:1135
 #: ../../library/Class/User/LostPass.php:104
-#: ../../library/Class/User/LostPass.php:137
-#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123
-#: ../../library/Class/Users.php:1126 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1151
+#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144
+#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1151
 msgid "Bonne navigation sur le portail"
 msgstr "Buena navegación en el portal"
 
@@ -4641,6 +4670,7 @@ msgstr "Borrador ?"
 
 #: ../../library/Class/Systeme/Report.php:220
 #: ../../library/Class/Systeme/Report.php:223
+#: ../../library/Class/Systeme/Report.php:225
 msgid "CP"
 msgstr ""
 
@@ -5139,15 +5169,29 @@ msgstr "Este manual no tiene autor."
 msgid "Cette recherche ne vous appartient pas."
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:343
+msgid ""
+"Cette ressource ne prend pas en charge l'affichage du l'url de moissonnage"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:186
 msgid "Cette ressource ne prend pas en charge la connexion SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
 msgid "Cette ressource ne prend pas en charge la gestion des droits"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:244
+msgid ""
+"Cette ressource ne prend pas en charge la validation du ticket de connexion "
+"SSO"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:278
 msgid "Cette ressource ne prend pas en charge le moissonnage"
 msgstr ""
 
@@ -5333,6 +5377,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:332
 ../../library/Class/AdminVar.php:333
 #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:336
+#: ../../library/Class/AdminVar.php:355
 #, php-format
 msgid "Chemin vers les skins personnalisées, relatif à %s"
 msgstr ""
@@ -5466,6 +5511,7 @@ msgstr "Clave"
 
 #: ../../library/Class/AdminVar.php:290
 ../../library/Class/AdminVar.php:291
 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:294
+#: ../../library/Class/AdminVar.php:313
 msgid ""
 "Clef d'activation pour le plan d'accès google map. <a target=\"_blank\" href="
 "\"http://code.google.com/apis/maps/signup.html\">Obtenir la clé google map</"
@@ -5511,6 +5557,7 @@ msgstr "Haga clic aquí para cambiar"
 
 #: ../../library/Class/AdminVar.php:296
 ../../library/Class/AdminVar.php:297
 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:300
+#: ../../library/Class/AdminVar.php:319
 msgid ""
 "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/"
 "home\">http://webthumb.bluga.net/home</a>"
@@ -5519,10 +5566,12 @@ msgstr ""
 "net/home\">http://webthumb.bluga.net/home</a>"
 
 #: ../../library/Class/AdminVar.php:152
 ../../library/Class/AdminVar.php:153
+#: ../../library/Class/AdminVar.php:172
 msgid "Clé ARTE VOD"
 msgstr "Llave ARTE VOD"
 
 #: ../../library/Class/AdminVar.php:153
 ../../library/Class/AdminVar.php:154
+#: ../../library/Class/AdminVar.php:173
 msgid "Clé ARTE VOD Single Sign-On"
 msgstr "Llave ARTE VOD Single Sign-On"
 
@@ -5538,35 +5587,35 @@ msgid "Clé chapeau"
 msgstr "Llave alpha"
 
 #: ../../library/Class/AdminVar.php:211
 ../../library/Class/AdminVar.php:212
-#: ../../library/Class/AdminVar.php:209
+#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:228
 msgid ""
 "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par "
 "Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:212
 ../../library/Class/AdminVar.php:213
-#: ../../library/Class/AdminVar.php:210
+#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:229
 msgid ""
 "Clé d'identification Kidilangues pour le portail. Cette clé doit être "
 "fournie par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:185
 ../../library/Class/AdminVar.php:186
-#: ../../library/Class/AdminVar.php:183
+#: ../../library/Class/AdminVar.php:183 ../../library/Class/AdminVar.php:202
 msgid ""
 "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie "
 "par MyCOW.EU. Elle active la ressource numérique dans le portail."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:216
 ../../library/Class/AdminVar.php:217
-#: ../../library/Class/AdminVar.php:214
+#: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:233
 msgid ""
 "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit "
 "être fournie par Premier-Chapitre."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:166
 ../../library/Class/AdminVar.php:167
-#: ../../library/Class/AdminVar.php:164
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:183
 msgid "Clé de sécurité Vodeclic"
 msgstr "Llave de seguridad Vodeclic"
 
@@ -5578,11 +5627,13 @@ msgstr "Llave obra"
 
 #: ../../library/Class/AdminVar.php:308
 ../../library/Class/AdminVar.php:309
 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:312
+#: ../../library/Class/AdminVar.php:331
 msgid "Clé publique pour le cryptage des données AFI-Multimédia"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:310
 ../../library/Class/AdminVar.php:311
 #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:314
+#: ../../library/Class/AdminVar.php:333
 msgid "Clé publique pour le cryptage des données Aesis Webkiosk"
 msgstr ""
 
@@ -5654,6 +5705,7 @@ msgstr "Código Postal"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:82
 #: ../../application/modules/admin/views/scripts/index/index.phtml:71
 #: ../../application/modules/admin/views/scripts/index/index.phtml:65
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #, fuzzy
 msgid "Code source"
 msgstr "fuente"
@@ -5720,6 +5772,7 @@ msgstr "Comentarios:"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 msgid "Commandée"
 msgstr ""
 
@@ -5840,7 +5893,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412
 #: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414
-#: ../../library/Class/AdminVar.php:417
+#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436
 msgid ""
 "Compression d'image utilisée dans le redimensionnement et la compression des "
 "images."
@@ -5865,6 +5918,11 @@ msgstr ""
 msgid "Compte d'assistance: %s"
 msgstr "Avisos de suscriptores: %s"
 
+#: ../../library/Class/Systeme/Report.php:228
+#, fuzzy
+msgid "Compte forge"
+msgstr "Cuenta"
+
 #: ../../library/Class/Feature/List.php:179
 #, fuzzy
 msgid "Compte lecteur"
@@ -5991,6 +6049,7 @@ msgstr "Mostrar resultados de búsqueda"
 #: ../../application/modules/admin/controllers/BibController.php:437
 #: ../../application/modules/admin/controllers/BibController.php:432
 #: ../../application/modules/admin/controllers/BibController.php:433
+#: ../../application/modules/admin/controllers/BibController.php:436
 #, fuzzy
 msgid "Configuration introuvable"
 msgstr "Reservas imposible"
@@ -6286,6 +6345,7 @@ msgstr "Contenido del aviso cambiaron"
 
 #: ../../library/Class/AdminVar.php:265
 ../../library/Class/AdminVar.php:266
 #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265
+#: ../../library/Class/AdminVar.php:284
 msgid ""
 "Contenu de l'email de notification d'article en attente de validation. "
 "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, "
@@ -6294,6 +6354,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:266
 ../../library/Class/AdminVar.php:267
 #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266
+#: ../../library/Class/AdminVar.php:285
 msgid ""
 "Contenu de l'email de notification de refus d'un article à valider. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6301,6 +6362,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:267
 ../../library/Class/AdminVar.php:268
 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267
+#: ../../library/Class/AdminVar.php:286
 msgid ""
 "Contenu de l'email de notification de validation d'un article. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6308,6 +6370,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381
 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389
+#: ../../library/Class/AdminVar.php:408
 msgid ""
 "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si "
 "vide sera tiré de la variable cosmogramme \"mail_admin\""
@@ -6315,6 +6378,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380
 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388
+#: ../../library/Class/AdminVar.php:407
 msgid ""
 "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si "
 "vide sera [NOM DU SERVEUR] Oai repository"
@@ -6356,7 +6420,7 @@ msgid "Contient"
 msgstr "Contiene"
 
 #: ../../library/Class/AdminVar.php:173
 ../../library/Class/AdminVar.php:174
-#: ../../library/Class/AdminVar.php:171
+#: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:190
 msgid "Contracteur du PNB Dilicom"
 msgstr ""
 
@@ -6377,6 +6441,7 @@ msgstr "Coord."
 #: ../../library/Class/Systeme/Report.php:222
 #: ../../application/modules/telephone/views/scripts/recherche/bibliotheque.phtml:4
 #: ../../library/Class/Systeme/Report.php:225
+#: ../../library/Class/Systeme/Report.php:227
 msgid "Coordonnées"
 msgstr "Información del contacto"
 
@@ -6964,12 +7029,13 @@ msgstr "Fecha de sugerencia"
 
 #: ../../library/Class/AdminVar.php:373
 ../../library/Class/AdminVar.php:374
 #: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376
-#: ../../library/Class/AdminVar.php:379
+#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:398
 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:303
 ../../library/Class/AdminVar.php:304
 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:307
+#: ../../library/Class/AdminVar.php:326
 msgid "Date du dernier vidage manuel du cache"
 msgstr ""
 
@@ -7023,7 +7089,7 @@ msgstr "De A a B"
 msgid "De B à A"
 msgstr "de B a A"
 
-#: ../../library/Class/AdminVar.php:291
+#: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:310
 msgid ""
 "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est "
 "désactivé."
@@ -7225,6 +7291,7 @@ msgstr "Última modificación"
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:306
 msgid "Dernière exécution"
 msgstr "Última ejecución"
 
@@ -7364,10 +7431,12 @@ msgid "Dewey / pcdm4"
 msgstr "Dewey / pcdm4"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:183
 msgid "Diagnostic SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:275
 #, fuzzy
 msgid "Diagnostic moissonnage"
 msgstr "Comienza la cosecha"
@@ -7444,6 +7513,7 @@ msgstr "Discografía completa"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:86
 #: ../../application/modules/admin/views/scripts/index/index.phtml:75
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
+#: ../../application/modules/admin/views/scripts/index/index.phtml:58
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -7465,6 +7535,7 @@ msgstr "Disponibilidad"
 #: ../../library/Class/Exemplaire.php:269
 #: ../../library/Class/Exemplaire.php:274
 #: ../../library/Class/Exemplaire.php:290
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 msgid "Disponible"
 msgstr "Disponible"
 
@@ -7634,11 +7705,12 @@ msgstr "Dominio primario"
 #: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 #: ../../library/Class/Album.php:1604 ../../library/Class/Album.php:1614
 #: ../../library/Class/Album.php:1630 ../../library/Class/Album.php:1631
+#: ../../library/Class/Album.php:1633
 msgid "Domaine public"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:206
 ../../library/Class/AdminVar.php:207
-#: ../../library/Class/AdminVar.php:204
+#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:223
 msgid "Domaine utilisée par le serveur lectura pour authentification"
 msgstr ""
 
@@ -7701,6 +7773,7 @@ msgstr "Añadir o editar comentario"
 #: ../../application/modules/opac/controllers/RssController.php:219
 #: ../../application/modules/admin/views/scripts/index/index.phtml:46
 #: ../../application/modules/admin/views/scripts/index/index.phtml:40
+#: ../../application/modules/admin/views/scripts/index/index.phtml:29
 msgid "Données en attente de modération"
 msgstr "Datos moderación en espera"
 
@@ -7849,7 +7922,7 @@ msgid "Durée de prêt en jours"
 msgstr "Duración de préstamo en días"
 
 #: ../../library/Class/AdminVar.php:180
 ../../library/Class/AdminVar.php:181
-#: ../../library/Class/AdminVar.php:178
+#: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:197
 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom"
 msgstr ""
 
@@ -7939,6 +8012,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:32
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:15
+#: ../../application/modules/admin/views/scripts/index/index.phtml:4
 msgid "Démonstrations vidéos"
 msgstr ""
 
@@ -7975,7 +8049,7 @@ msgid "Dépouillements"
 msgstr "Recuentos"
 
 #: ../../library/Class/AdminVar.php:225
 ../../library/Class/AdminVar.php:226
-#: ../../library/Class/AdminVar.php:223
+#: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:242
 msgid "Désactivation des suggestions d'achats"
 msgstr ""
 
@@ -7987,11 +8061,13 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:313
 msgid "Désactiver la tâche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:293
 ../../library/Class/AdminVar.php:294
 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:297
+#: ../../library/Class/AdminVar.php:316
 msgid "Désactiver pour passer le site en maintenance"
 msgstr ""
 
@@ -8004,7 +8080,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:358
 ../../library/Class/AdminVar.php:359
 #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361
-#: ../../library/Class/AdminVar.php:364
+#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:383
 msgid ""
 "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les "
 "bibliothécaires peuvent donner leur avis"
@@ -8012,7 +8088,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:359
 ../../library/Class/AdminVar.php:360
 #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362
-#: ../../library/Class/AdminVar.php:365
+#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:384
 msgid ""
 "Désactivé: ne requiert pas d'identification pour saisir des  commentaires. "
 "<br /> Activé: requiert l'identification pour saisir des commentaires."
@@ -8218,6 +8294,10 @@ msgstr "Cambio de la relación de aspecto: %s"
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BibController.php:445
+msgid "Echec de la sauvegarde de la configuration des filtres par défaut"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:84
 msgid "Echelle"
 msgstr "Escala"
@@ -8454,6 +8534,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:54
 msgid "En attente"
 msgstr "En espera"
 
@@ -8782,6 +8863,7 @@ msgstr "Error:"
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:164
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -8915,6 +8997,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:119
+#: ../../application/modules/admin/controllers/IndexController.php:110
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
@@ -8981,18 +9064,22 @@ msgid "Erreurs"
 msgstr "Error"
 
 #: ../../library/Class/Systeme/Report.php:273
+#: ../../library/Class/Systeme/Report.php:277
 msgid "Espace disque libre"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:275
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Espace disque plein"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:274
+#: ../../library/Class/Systeme/Report.php:278
 msgid "Espace disque total"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:272
+#: ../../library/Class/Systeme/Report.php:276
 #, fuzzy
 msgid "Espace disque utilisé"
 msgstr "Tema"
@@ -9030,6 +9117,7 @@ msgstr "Estado"
 
 #: ../../library/Class/Systeme/Report.php:159
 #: ../../library/Class/Systeme/Report.php:162
+#: ../../library/Class/Systeme/Report.php:164
 #, fuzzy
 msgid "Etat de la communication"
 msgstr "Fecha de publicación"
@@ -9039,6 +9127,7 @@ msgstr "Fecha de publicación"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
 #: ../../application/modules/admin/views/scripts/index/index.phtml:42
 #: ../../application/modules/admin/views/scripts/index/index.phtml:36
+#: ../../application/modules/admin/views/scripts/index/index.phtml:25
 #, fuzzy
 msgid "Etat du site"
 msgstr "Aspecto del sitio"
@@ -9052,6 +9141,7 @@ msgstr "Aspecto del sitio"
 
 #: ../../library/Class/AdminVar.php:241
 ../../library/Class/AdminVar.php:242
 #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241
+#: ../../library/Class/AdminVar.php:260
 msgid ""
 "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" "
 "entre les mots saisis"
@@ -9070,6 +9160,7 @@ msgstr "¿Seguro que quieres eliminar esta reserva?"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:321
 #, fuzzy
 msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
 msgstr "¿Seguro que quieres eliminar esta capa?"
@@ -9407,7 +9498,7 @@ msgstr "Facilita la indexación de su sitio en los motores de búsqueda"
 
 #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415
 #: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417
-#: ../../library/Class/AdminVar.php:420
+#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439
 msgid ""
 "Facteur d'échantillonnage utilisé dans le redimensionnement et la "
 "compression des images."
@@ -9759,6 +9850,7 @@ msgstr "Función"
 #: ../../library/Class/Systeme/Report.php:186
 #: ../../library/Class/Systeme/Report.php:189
 #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:62
+#: ../../library/Class/Systeme/Report.php:191
 #, fuzzy
 msgid "Fonctionnalités"
 msgstr "Función"
@@ -9796,6 +9888,7 @@ msgstr "Fondos"
 
 #: ../../library/Class/AdminVar.php:288
 ../../library/Class/AdminVar.php:289
 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288
+#: ../../library/Class/AdminVar.php:307
 msgid ""
 "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et "
 "la configuration appropriée du serveur Web"
@@ -9948,6 +10041,7 @@ msgid "Genres"
 msgstr "Géneros"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:115
 #, fuzzy
 msgid "Gestion des  droits"
 msgstr "Gestión de usuarios"
@@ -9984,6 +10078,7 @@ msgstr "Gestión de usuarios"
 
 #: ../../application/modules/admin/controllers/IndexController.php:64
 #: ../../application/modules/admin/controllers/IndexController.php:64
+#: ../../application/modules/admin/controllers/IndexController.php:55
 msgid "Gestion des variables"
 msgstr ""
 
@@ -10002,7 +10097,7 @@ msgid "Gestionnaire de contenu"
 msgstr "Content Manager"
 
 #: ../../library/Class/AdminVar.php:171
 ../../library/Class/AdminVar.php:172
-#: ../../library/Class/AdminVar.php:169
+#: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:188
 msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
@@ -10015,6 +10110,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:80
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
 #: ../../application/modules/admin/views/scripts/index/index.phtml:63
+#: ../../application/modules/admin/views/scripts/index/index.phtml:52
 msgid "Google group Bokeh"
 msgstr ""
 
@@ -10037,6 +10133,7 @@ msgid "Groupe \"%s\" supprimé"
 msgstr "Grupo \"%s\" suprimido"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:214
 msgid "Groupe créé pour ce test"
 msgstr ""
 
@@ -10069,6 +10166,7 @@ msgid "Groupes"
 msgstr "Grupos"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:225
 #, fuzzy, php-format
 msgid "Groupes : %s"
 msgstr "Grupos"
@@ -10082,6 +10180,7 @@ msgid "Groupes destinataires"
 msgstr "Destinatario"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:152
 #, fuzzy
 msgid "Groupes qui ont accès à la ressource"
 msgstr "La gestión de los recursos"
@@ -10155,6 +10254,7 @@ msgid "Généré pour la session d'activité %s"
 msgstr "Dejar de recibir el boletín de noticias:"
 
 #: ../../library/Class/AdminVar.php:134
 ../../library/Class/AdminVar.php:135
+#: ../../library/Class/AdminVar.php:154
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
 "de la bibliothèque numérique"
@@ -10170,6 +10270,7 @@ msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:146
 #, fuzzy
 msgid "Gérer les groupes"
 msgstr "La gestión de los recursos"
@@ -10400,12 +10501,12 @@ msgid "ID"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:163
 ../../library/Class/AdminVar.php:164
-#: ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:180
 msgid "ID client Jamendo"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:164
 ../../library/Class/AdminVar.php:165
-#: ../../library/Class/AdminVar.php:162
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:181
 msgid "ID client SoundCloud"
 msgstr ""
 
@@ -10448,6 +10549,7 @@ msgstr "Icono del explorador"
 #: ../../library/Class/AdminVar.php:387
 ../../library/Class/AdminVar.php:388
 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:395
+#: ../../library/Class/AdminVar.php:414
 msgid "Id du connecteur Le Social"
 msgstr ""
 
@@ -10519,11 +10621,12 @@ msgid "Identifiant"
 msgstr "Iniciar sesión"
 
 #: ../../library/Class/AdminVar.php:149
 ../../library/Class/AdminVar.php:150
+#: ../../library/Class/AdminVar.php:169
 msgid "Identifiant SSO Cyberlibris"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:168
 ../../library/Class/AdminVar.php:169
-#: ../../library/Class/AdminVar.php:166
+#: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:185
 msgid "Identifiant code bibliothèque Vodeclic"
 msgstr ""
 
@@ -10533,17 +10636,18 @@ msgid "Identifiant commence par"
 msgstr "ID comienza con"
 
 #: ../../library/Class/AdminVar.php:194
 ../../library/Class/AdminVar.php:195
-#: ../../library/Class/AdminVar.php:192
+#: ../../library/Class/AdminVar.php:192 ../../library/Class/AdminVar.php:211
 msgid "Identifiant d'accès au serveur OAI Cité de la Musique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:192
 ../../library/Class/AdminVar.php:193
-#: ../../library/Class/AdminVar.php:190
+#: ../../library/Class/AdminVar.php:190 ../../library/Class/AdminVar.php:209
 msgid "Identifiant du portail chez 1D touch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:233
 ../../library/Class/AdminVar.php:234
 #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233
+#: ../../library/Class/AdminVar.php:252
 msgid "Identifiant du project Redmine"
 msgstr ""
 
@@ -10594,7 +10698,7 @@ msgid "Identifiant ou mot de passe incorrect."
 msgstr "Nombre de usuario o contraseña incorrecta."
 
 #: ../../library/Class/AdminVar.php:167
 ../../library/Class/AdminVar.php:168
-#: ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:184
 msgid "Identifiant partenaire Vodeclic"
 msgstr ""
 
@@ -10606,6 +10710,7 @@ msgstr "Iniciar sesión"
 
 #: ../../library/Class/AdminVar.php:340
 ../../library/Class/AdminVar.php:341
 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:344
+#: ../../library/Class/AdminVar.php:363
 msgid ""
 "Identifiant unique (attention: la modification de cette variable impactera "
 "les outils de suivi de cette installation)"
@@ -10714,8 +10819,7 @@ msgstr "Hay más de subnivel"
 msgid "Il n'y a plus de sous-niveau"
 msgstr "Hay más de subnivel"
 
-#: ../../library/Class/NoticeOAI.php:230
-#: ../../library/Class/NoticeOAI.php:230
+#: ../../library/Class/NoticeOAI.php:230
 ../../library/Class/NoticeOAI.php:230
 msgid "Il n'y aucun mot assez significatif pour la recherche"
 msgstr "No hay palabra lo suficientemente importantes como para buscar"
 
@@ -10770,12 +10874,22 @@ msgstr "Imagen"
 msgid "Image de fond"
 msgstr "Clutter"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:346
+#, fuzzy
+msgid "Image du type de document: "
+msgstr "Tipo de documento: %s"
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 #, fuzzy
 msgid "Image par image"
 msgstr "Número de registros por página"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:374
+#, fuzzy, php-format
+msgid "Image source : %s"
+msgstr "Fuente:"
+
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 #, fuzzy
@@ -10870,6 +10984,16 @@ msgstr ""
 msgid "Impossible d'afficher la carte"
 msgstr "No se puede mostrar el mapa"
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:94
+#, fuzzy, php-format
+msgid "Impossible d'ajouter l'image \"%s\" à l'album \"%s\""
+msgstr "No se puede encontrar esta dirección"
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:112
+#, fuzzy, php-format
+msgid "Impossible d'enregister l'image \"%s\" dans \"%s\""
+msgstr "No se puede encontrar esta dirección"
+
 #: ../../library/Class/UploadMover/LocalFile.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
@@ -10950,6 +11074,11 @@ msgstr ""
 msgid "Impossible de trouver cette adresse"
 msgstr "No se puede encontrar esta dirección"
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:84
+#, fuzzy, php-format
+msgid "Impossible de télécharger l'image \"%s\" sur le serveur"
+msgstr "No se puede el RSS"
+
 #: ../../library/Class/Upload.php:68
 ../../library/Class/Upload.php:68
 msgid ""
 "Impossible de télécharger la photo , le répertoire temporaire n'existe pas"
@@ -11318,6 +11447,7 @@ msgstr "Agregar una registro a la cesta"
 
 #: ../../library/Class/AdminVar.php:314
 ../../library/Class/AdminVar.php:315
 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:318
+#: ../../library/Class/AdminVar.php:337
 msgid "Interdire la modification de la fiche abonne"
 msgstr ""
 
@@ -11455,23 +11585,26 @@ msgstr "Javascript"
 
 #: ../../library/Class/AdminVar.php:366
 ../../library/Class/AdminVar.php:367
 #: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369
-#: ../../library/Class/AdminVar.php:372
+#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:391
 msgid "Javascript code for statistics"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:281
 ../../library/Class/AdminVar.php:282
 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281
+#: ../../library/Class/AdminVar.php:300
 msgid "Je ne veux plus recevoir cette lettre d'information"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:36
 #: ../../application/modules/api/controllers/UserController.php:36
+#: ../../application/modules/api/controllers/UserController.php:57
 #, fuzzy
 msgid "Jeton d'autorisation invalide"
 msgstr "El código anti-spam no es válido."
 
 #: ../../application/modules/api/controllers/UserController.php:33
 #: ../../application/modules/api/controllers/UserController.php:33
+#: ../../application/modules/api/controllers/UserController.php:54
 msgid "Jeton d'autorisation non fourni"
 msgstr ""
 
@@ -11638,7 +11771,7 @@ msgid "L'album \"%s\" a été créé"
 msgstr "El álbum \"%s\" se ha creado"
 
 #: ../../library/Class/Album.php:1133
 ../../library/Class/Album.php:1133
-#: ../../library/Class/Album.php:1138
+#: ../../library/Class/Album.php:1138 ../../library/Class/Album.php:1140
 msgid "L'album doit avoir un type de document"
 msgstr ""
 
@@ -11661,7 +11794,7 @@ msgid "L'annexe \"%s\" a été suppriméee"
 msgstr "El sitio \"%s\" se ha eliminado"
 
 #: ../../library/Class/Album.php:1126
 ../../library/Class/Album.php:1126
-#: ../../library/Class/Album.php:1131
+#: ../../library/Class/Album.php:1131 ../../library/Class/Album.php:1133
 #, fuzzy, php-format
 msgid "L'année doit être comprise entre %s et %s"
 msgstr "El comentario debe tener una longitud entre %s y %s caracteres"
@@ -11934,6 +12067,7 @@ msgid "La catégorie \"%s\" a été sauvegardée"
 msgstr "El \"%s\" se ha guardado"
 
 #: ../../application/modules/admin/controllers/IndexController.php:86
+#: ../../application/modules/admin/controllers/IndexController.php:77
 #, php-format
 msgid "La clé \"%s\" n'existe pas."
 msgstr ""
@@ -11986,6 +12120,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:163
+#: ../../application/modules/admin/controllers/IndexController.php:154
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
@@ -12145,7 +12280,7 @@ msgid "La taille du fichier doit être supérieur à \"%min%\""
 msgstr "El archivo no es de tipo %s"
 
 #: ../../library/Class/Upload.php:66 ../../library/Class/Upload.php:317
-#: ../../library/Class/Upload.php:317
+#: ../../library/Class/Upload.php:317 ../../library/Class/Upload.php:318
 #, fuzzy
 msgid "La taille du fichier ne doit pas excéder "
 msgstr "El archivo no es de tipo %s"
@@ -12194,6 +12329,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
 #: ../../library/Class/Systeme/Report.php:221
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
+#: ../../library/Class/Systeme/Report.php:223
 msgid "Label"
 msgstr ""
 
@@ -12379,6 +12515,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:141
+#: ../../application/modules/admin/controllers/IndexController.php:132
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
@@ -12527,6 +12664,7 @@ msgid "Le fichier est trop petit : %s mo -> taille minimum attendue : %s mo"
 msgstr ""
 
 #: ../../library/Class/Upload.php:322
 ../../library/Class/Upload.php:322
+#: ../../library/Class/Upload.php:323
 #, fuzzy
 msgid "Le fichier n'a pas de nom"
 msgstr "El archivo no es de tipo %s"
@@ -12536,6 +12674,7 @@ msgid "Le fichier n'a pu être téléchargé complètement"
 msgstr ""
 
 #: ../../library/Class/Upload.php:332
 ../../library/Class/Upload.php:332
+#: ../../library/Class/Upload.php:329
 #, php-format
 msgid "Le fichier n'est pas de type %s"
 msgstr "El archivo no es de tipo %s"
@@ -12571,6 +12710,7 @@ msgid "Le fichier reçu n'est pas valide"
 msgstr ""
 
 #: ../../library/Class/Upload.php:307
 ../../library/Class/Upload.php:307
+#: ../../library/Class/Upload.php:308
 msgid "Le fichier était vide ou un problème réseau est survenu"
 msgstr "El archivo estaba vacío o se ha producido un problema en la red"
 
@@ -12596,6 +12736,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:129
 ../../library/Class/AdminVar.php:130
+#: ../../library/Class/AdminVar.php:149
 msgid ""
 "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au "
 "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12604,6 +12745,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:252
 ../../library/Class/AdminVar.php:253
 #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252
+#: ../../library/Class/AdminVar.php:271
 msgid ""
 "Le gestionnaire de contenu affiche les articles sous forme de liste paginée "
 "au lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12651,6 +12793,7 @@ msgid "Le modèle \"%s\" a été sauvegardé"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:288
 #, fuzzy
 msgid "Le moissonnage n'est pas programmé"
 msgstr "Este servicio no puede pruebarse"
@@ -12798,11 +12941,16 @@ msgid "Le territoire contient %s notices"
 msgstr "El territorio contiene referencias %s"
 
 #: ../../library/Class/Album.php:1131
 ../../library/Class/Album.php:1131
-#: ../../library/Class/Album.php:1136
+#: ../../library/Class/Album.php:1136 ../../library/Class/Album.php:1138
 #, fuzzy
 msgid "Le titre est obligatoire"
 msgstr "el idioma es obligatorio."
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:377
+#, fuzzy
+msgid "Le vignettage n'est pas testable sans album"
+msgstr "Este servicio no puede pruebarse"
+
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 msgid "Lecteurs du portail"
@@ -12825,7 +12973,7 @@ msgstr "La sesión \"%s\" se ha guardado"
 msgid "Les %s sélectionnés ont bien été supprimés"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:289
+#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:308
 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB."
 msgstr ""
 
@@ -12896,6 +13044,7 @@ msgstr "Resultados anteriores"
 #: ../../application/modules/admin/controllers/BibController.php:450
 #: ../../application/modules/admin/controllers/BibController.php:445
 #: ../../application/modules/admin/controllers/BibController.php:446
+#: ../../application/modules/admin/controllers/BibController.php:447
 #, fuzzy
 msgid "Les filtres par défaut ont été sauvegardés."
 msgstr "El sitio \"%s\" se ha guardado"
@@ -13021,12 +13170,12 @@ msgstr "Nombramientos"
 msgid "Les sites les plus récents"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:225
+#: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:244
 #, fuzzy
 msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris"
 msgstr "Puede seleccionar una o varias bibliotecas para buscar"
 
-#: ../../library/Class/AdminVar.php:226
+#: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:245
 #, fuzzy
 msgid ""
 "Les utilisateurs peuvent recevoir les nouveautés de leurs recherches "
@@ -13034,7 +13183,7 @@ msgid ""
 msgstr "Puede seleccionar una o varias bibliotecas para buscar"
 
 #: ../../library/Class/AdminVar.php:226
 ../../library/Class/AdminVar.php:227
-#: ../../library/Class/AdminVar.php:224
+#: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:243
 #, fuzzy
 msgid ""
 "Les utilisateurs peuvent sélectionner des bibliothèques favorites pour leurs "
@@ -13180,6 +13329,7 @@ msgstr "Nombre"
 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15
 #: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9
 #: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29
+#: ../../library/Class/Systeme/Report.php:189
 msgid "Libellé"
 msgstr "Redacción"
 
@@ -13216,6 +13366,7 @@ msgid "Libellé de la catégorie"
 msgstr "Etiqueta Categoría"
 
 #: ../../library/Class/AdminVar.php:138
 ../../library/Class/AdminVar.php:139
+#: ../../library/Class/AdminVar.php:158
 msgid "Libellé de regroupement des abonnés"
 msgstr ""
 
@@ -13279,16 +13430,19 @@ msgstr "Confirmar Contraseña"
 
 #: ../../library/Class/AdminVar.php:319
 ../../library/Class/AdminVar.php:320
 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:323
+#: ../../library/Class/AdminVar.php:342
 msgid "Libellé pour la Dewey"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:318
 ../../library/Class/AdminVar.php:319
 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:322
+#: ../../library/Class/AdminVar.php:341
 msgid "Libellé pour la PCDM4"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:88
 #: ../../library/Class/Systeme/Report.php:91
+#: ../../library/Class/Systeme/Report.php:93
 #, fuzzy
 msgid "Libellé principal"
 msgstr "Título cesta"
@@ -13363,6 +13517,7 @@ msgstr "Permalink"
 
 #: ../../library/Class/AdminVar.php:279
 ../../library/Class/AdminVar.php:280
 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279
+#: ../../library/Class/AdminVar.php:298
 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr ""
 
@@ -13835,7 +13990,7 @@ msgid "Liste de valeurs"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:175
 ../../library/Class/AdminVar.php:176
-#: ../../library/Class/AdminVar.php:173
+#: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:192
 msgid ""
 "Liste des adresses IP publiques autorisées pour la consultation des documents"
 msgstr ""
@@ -13864,6 +14019,7 @@ msgstr "Lista de categorías"
 
 #: ../../library/Class/AdminVar.php:317
 ../../library/Class/AdminVar.php:318
 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:321
+#: ../../library/Class/AdminVar.php:340
 msgid ""
 "Liste des champs que l'utilisateur peux modifier. <br/>Ex: nom;prenom;pseudo;"
 "adresse;<br/>code_postal;ville;mail;is_contact_mail;<br/>telephone;"
@@ -13872,6 +14028,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:330
 ../../library/Class/AdminVar.php:331
 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:334
+#: ../../library/Class/AdminVar.php:353
 msgid ""
 "Liste des codes des facettes qui ne sont pas limitées à l'affichage dans le "
 "résultat de recherche<br/>Exemple : T => Type de doc, Y => Annexe, B => "
@@ -13880,6 +14037,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:299
 ../../library/Class/AdminVar.php:300
 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:303
+#: ../../library/Class/AdminVar.php:322
 msgid ""
 "Liste des codes langue utilisées en plus du français séparées par des ;. "
 "Exemple: en;ro;es"
@@ -13897,7 +14055,7 @@ msgstr "Ultimos RSS"
 
 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403
 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405
-#: ../../library/Class/AdminVar.php:408
+#: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427
 msgid ""
 "Liste des dimensions disponibles pour retailler les images lors de l'import."
 msgstr ""
@@ -13916,19 +14074,19 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399
 #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401
-#: ../../library/Class/AdminVar.php:404
+#: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423
 #, fuzzy
 msgid "Liste des extensions de fichiers disponibles à l'import."
 msgstr "Lista des conectores disponibles"
 
 #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406
 #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408
-#: ../../library/Class/AdminVar.php:411
+#: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430
 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411
-#: ../../library/Class/AdminVar.php:414
+#: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433
 msgid ""
 "Liste des extensions susceptibles d'être sélectionnées pour enrichir un "
 "contenu."
@@ -13941,6 +14099,7 @@ msgstr "Reservas avisos"
 
 #: ../../library/Class/AdminVar.php:244
 ../../library/Class/AdminVar.php:245
 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244
+#: ../../library/Class/AdminVar.php:263
 #, php-format
 msgid ""
 "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera "
@@ -13949,6 +14108,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:342
 ../../library/Class/AdminVar.php:343
 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:346
+#: ../../library/Class/AdminVar.php:365
 msgid "Liste des tags à ajouter au rapport d'état du système"
 msgstr ""
 
@@ -14061,21 +14221,23 @@ msgid "Login"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:223
 #, fuzzy, php-format
 msgid "Login : %s"
 msgstr "Cote: %s"
 
 #: ../../library/Class/AdminVar.php:151
 ../../library/Class/AdminVar.php:152
+#: ../../library/Class/AdminVar.php:171
 msgid "Login ARTE VOD"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:213
 ../../library/Class/AdminVar.php:214
-#: ../../library/Class/AdminVar.php:211
+#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:230
 msgid "Login du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:217
 ../../library/Class/AdminVar.php:218
-#: ../../library/Class/AdminVar.php:215
+#: ../../library/Class/AdminVar.php:215 ../../library/Class/AdminVar.php:234
 msgid "Login du portail fourni par Premier-Chapitre."
 msgstr ""
 
@@ -14512,7 +14674,7 @@ msgid "Message au-dessous du champ de recherche"
 msgstr "Cuadro de mensaje por encima de la"
 
 #: ../../library/Class/AdminVar.php:183
 ../../library/Class/AdminVar.php:184
-#: ../../library/Class/AdminVar.php:181
+#: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:200
 msgid "Message d'avertissement affiché sur la popup d'emprunt"
 msgstr ""
 
@@ -14673,6 +14835,7 @@ msgstr "Actualización de la ubicación"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 #: ../../application/modules/admin/controllers/IndexController.php:152
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../application/modules/admin/controllers/IndexController.php:143
 #, fuzzy
 msgid "Mise à jour de la charte graphique"
 msgstr "Actualización de la ubicación"
@@ -14922,6 +15085,8 @@ msgstr "Cambiar"
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:165
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
 #, fuzzy, php-format
 msgid "Modifier \"%s\""
 msgstr "Cambiar"
@@ -15085,6 +15250,7 @@ msgstr " Cambiar mi"
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:93
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr ""
@@ -15442,7 +15608,7 @@ msgstr "Alertas de moderación"
 
 #: ../../library/Class/AdminVar.php:357
 ../../library/Class/AdminVar.php:358
 #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360
-#: ../../library/Class/AdminVar.php:363
+#: ../../library/Class/AdminVar.php:363 ../../library/Class/AdminVar.php:382
 msgid ""
 "Modération des avis des bibliothécaires.<br />  Désactivé: affichage sans "
 "attente de validation<br /> Activé: affichage seulement après validation"
@@ -15450,7 +15616,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:356
 ../../library/Class/AdminVar.php:357
 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359
-#: ../../library/Class/AdminVar.php:362
+#: ../../library/Class/AdminVar.php:362 ../../library/Class/AdminVar.php:381
 msgid ""
 "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente "
 "de validation<br /> Activé : affichage seulement après validation."
@@ -15645,22 +15811,23 @@ msgid "Mot de passe"
 msgstr "Contraseña"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:224
 #, fuzzy, php-format
 msgid "Mot de passe : %s"
 msgstr "Contraseña"
 
 #: ../../library/Class/AdminVar.php:179
 ../../library/Class/AdminVar.php:180
-#: ../../library/Class/AdminVar.php:177
+#: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:196
 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:199
 ../../library/Class/AdminVar.php:200
-#: ../../library/Class/AdminVar.php:197
+#: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:216
 msgid "Mot de passe de l'utilisateur Orphea"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:172
 ../../library/Class/AdminVar.php:173
-#: ../../library/Class/AdminVar.php:170
+#: ../../library/Class/AdminVar.php:170 ../../library/Class/AdminVar.php:189
 msgid "Mot de passe de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
@@ -15759,8 +15926,7 @@ msgstr "Páginas web"
 msgid "N'envoie pas de données"
 msgstr "No envíe datos"
 
-#: ../../library/Class/FRBR/Link.php:160
-#: ../../library/Class/FRBR/Link.php:162
+#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162
 #: ../../library/Class/FRBR/Link.php:162
 msgid "N'est pas une url valide"
 msgstr "¿No es una URL válida"
@@ -15857,6 +16023,7 @@ msgid "Ne pas créer de nouveau dossier"
 msgstr "Crear una nueva caja de luz"
 
 #: ../../library/Class/AdminVar.php:131
 ../../library/Class/AdminVar.php:132
+#: ../../library/Class/AdminVar.php:151
 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi"
 msgstr ""
 
@@ -16101,6 +16268,7 @@ msgid "Nom :"
 msgstr "Nombre:"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:216
 #, fuzzy, php-format
 msgid "Nom : %s"
 msgstr "Nombre:"
@@ -16113,12 +16281,14 @@ msgstr "Nombre comienza con"
 #: ../../application/modules/admin/controllers/IndexController.php:175
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:194
+#: ../../application/modules/admin/controllers/IndexController.php:185
 #, fuzzy
 msgid "Nom d'utilisateur ou mot de passe invalide"
 msgstr "Nombre de usuario o contraseña incorrecta."
 
 #: ../../library/Class/AdminVar.php:247
 ../../library/Class/AdminVar.php:248
 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247
+#: ../../library/Class/AdminVar.php:266
 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr"
 msgstr ""
 
@@ -16129,7 +16299,7 @@ msgid "Nom de famille"
 msgstr "Nombre del Propietario"
 
 #: ../../library/Class/AdminVar.php:198
 ../../library/Class/AdminVar.php:199
-#: ../../library/Class/AdminVar.php:196
+#: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:215
 msgid "Nom de l'utilisateur Orphea"
 msgstr ""
 
@@ -16141,10 +16311,12 @@ msgstr "Nombre de biblioteca"
 
 #: ../../library/Class/AdminVar.php:294
 ../../library/Class/AdminVar.php:295
 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:298
+#: ../../library/Class/AdminVar.php:317
 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:127
 #, fuzzy, php-format
 msgid "Nom de la permission à donner : \"%s\""
 msgstr "Número de traducciones: %s"
@@ -16154,6 +16326,7 @@ msgstr "Número de traducciones: %s"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #: ../../application/modules/admin/views/scripts/index/index.phtml:43
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
+#: ../../application/modules/admin/views/scripts/index/index.phtml:26
 #, fuzzy
 msgid "Nom du domaine"
 msgstr "Cesta Nombre"
@@ -16177,6 +16350,7 @@ msgstr "Nombre del responsable"
 
 #: ../../library/Class/AdminVar.php:245
 ../../library/Class/AdminVar.php:246
 #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245
+#: ../../library/Class/AdminVar.php:264
 msgid "Nom du site"
 msgstr ""
 
@@ -16211,6 +16385,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:187
 #: ../../library/Class/Systeme/Report.php:190
+#: ../../library/Class/Systeme/Report.php:192
 #, fuzzy
 msgid "Nombre d'albums"
 msgstr "Categorías de álbumes"
@@ -16220,6 +16395,11 @@ msgstr "Categorías de álbumes"
 msgid "Nombre d'albums présents : %d"
 msgstr "Categorías de álbumes"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:366
+#, fuzzy, php-format
+msgid "Nombre d'albums présents dans Bokeh : %d"
+msgstr "Categorías de álbumes"
+
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 #, fuzzy
@@ -16266,6 +16446,7 @@ msgstr "Avisos de suscriptores: %s"
 
 #: ../../library/Class/AdminVar.php:289
 ../../library/Class/AdminVar.php:290
 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:293
+#: ../../library/Class/AdminVar.php:312
 msgid "Nombre d'avis maximum à afficher par utilisateur."
 msgstr ""
 
@@ -16351,19 +16532,19 @@ msgstr "Avisos de suscriptores: %s"
 
 #: ../../library/Class/AdminVar.php:348
 ../../library/Class/AdminVar.php:349
 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351
-#: ../../library/Class/AdminVar.php:354
+#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:373
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:350
 ../../library/Class/AdminVar.php:351
 #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353
-#: ../../library/Class/AdminVar.php:356
+#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:375
 msgid "Nombre de caractères maximum à afficher dans le bloc critiques."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:349
 ../../library/Class/AdminVar.php:350
 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352
-#: ../../library/Class/AdminVar.php:355
+#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:374
 msgid "Nombre de caractères minimum autorisé à saisir dans les avis."
 msgstr ""
 
@@ -16430,7 +16611,7 @@ msgstr "Número de formas: %s"
 
 #: ../../library/Class/AdminVar.php:360
 ../../library/Class/AdminVar.php:361
 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363
-#: ../../library/Class/AdminVar.php:366
+#: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:385
 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr ""
 
@@ -16442,6 +16623,7 @@ msgid "Nombre de jours restant sur la licence"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:154
 #, fuzzy
 msgid "Nombre de membres"
 msgstr "No se copia."
@@ -16458,6 +16640,11 @@ msgstr "Número de registros por página"
 msgid "Nombre de notices par page"
 msgstr "Número de registros por página"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:393
+#, fuzzy, php-format
+msgid "Nombre de notices présentes dans Bokeh : %d"
+msgstr "Número de registros por página"
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
 #: ../../library/Class/SessionActivity.php:482
 #: ../../library/Class/SessionActivity.php:482
@@ -16485,13 +16672,13 @@ msgid "Nombre de prêts simultanés"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:182
 ../../library/Class/AdminVar.php:183
-#: ../../library/Class/AdminVar.php:180
+#: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:199
 msgid ""
 "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:181
 ../../library/Class/AdminVar.php:182
-#: ../../library/Class/AdminVar.php:179
+#: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:198
 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom"
 msgstr ""
 
@@ -16573,6 +16760,7 @@ msgstr "Número de divisiones"
 
 #: ../../library/Class/AdminVar.php:253
 ../../library/Class/AdminVar.php:254
 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253
+#: ../../library/Class/AdminVar.php:272
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr ""
 
@@ -16637,6 +16825,7 @@ msgstr "Número de registros por página"
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Non"
 msgstr "No"
 
@@ -17130,6 +17319,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:295
 ../../library/Class/AdminVar.php:296
 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:299
+#: ../../library/Class/AdminVar.php:318
 msgid ""
 "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader."
 "readspeaker.com\">http://webreader.readspeaker.com</a>"
@@ -17428,6 +17618,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Oui"
 msgstr "Sí"
 
@@ -17544,9 +17735,13 @@ msgstr "en la biblioteca"
 msgid "Où le trouver dans mes bibliothèques favorites"
 msgstr "Busquar en la biblioteca de su elección"
 
+#: ../../library/Class/Systeme/Report.php:83
+msgid "PHP"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:367
 ../../library/Class/AdminVar.php:368
 #: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370
-#: ../../library/Class/AdminVar.php:373
+#: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:392
 msgid "PIWIK authentication token for widgets"
 msgstr ""
 
@@ -17631,8 +17826,7 @@ msgstr "Página siguiente"
 msgid "Page: "
 msgstr "Página:"
 
-#: ../../library/Class/NoticeHtml.php:82
-#: ../../library/Class/NoticeHtml.php:82
+#: ../../library/Class/NoticeHtml.php:82
 ../../library/Class/NoticeHtml.php:82
 msgid "Pagination"
 msgstr "Paginación"
 
@@ -17811,7 +18005,7 @@ msgid "Paramètrage du tableau des exemplaires"
 msgstr "Copias de bloques de la propiedad"
 
 #: ../../library/Class/AdminVar.php:200
 ../../library/Class/AdminVar.php:201
-#: ../../library/Class/AdminVar.php:198
+#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:217
 msgid ""
 "Paramètre permettant de choisir la langue des des ressources. La liste des "
 "codes disponibles se trouve à cette adresse http://help.orphea.com/43/"
@@ -17828,6 +18022,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:9
 msgid "Paramètres du site"
 msgstr "Configuración del sitio"
 
@@ -17836,6 +18031,7 @@ msgid "Paramètres manquants dans la requête de suppression"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:110
 #, fuzzy
 msgid "Paramétrage"
 msgstr "Establezca esta página"
@@ -17843,6 +18039,8 @@ msgstr "Establezca esta página"
 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146
 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:166
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Numilog\">Numilog</a>"
@@ -17850,6 +18048,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:156
 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:157
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:176
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>"
@@ -17861,7 +18060,10 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:143
 ../../library/Class/AdminVar.php:137
 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:140
 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:143
-#: ../../library/Class/AdminVar.php:144
+#: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:156
+#: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:159
+#: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:163
 msgid "Paramétrage CVS"
 msgstr ""
 
@@ -17906,6 +18108,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:77
 #: ../../application/modules/admin/views/scripts/index/index.phtml:66
 #: ../../application/modules/admin/views/scripts/index/index.phtml:60
+#: ../../application/modules/admin/views/scripts/index/index.phtml:49
 msgid "Participez à la communauté"
 msgstr ""
 
@@ -17974,12 +18177,12 @@ msgid "Pas encore de nouveauté."
 msgstr "Fecha de novedad"
 
 #: ../../library/Class/AdminVar.php:214
 ../../library/Class/AdminVar.php:215
-#: ../../library/Class/AdminVar.php:212
+#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:231
 msgid "Password du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:218
 ../../library/Class/AdminVar.php:219
-#: ../../library/Class/AdminVar.php:216
+#: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:235
 msgid "Password du portail fourni par Premier-Chapitre"
 msgstr ""
 
@@ -18281,6 +18484,7 @@ msgstr "Plano de acceso"
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:301
 #, fuzzy
 msgid "Planification"
 msgstr "Publicación"
@@ -18305,6 +18509,7 @@ msgstr "Cambiar de ubicación: \"%s\""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:326
 msgid "Plannifier la tâche"
 msgstr ""
 
@@ -18374,6 +18579,7 @@ msgstr "Punto"
 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171
 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460
 #: ../../library/Class/AdminVar.php:465 ../../library/Class/AdminVar.php:468
+#: ../../library/Class/AdminVar.php:487
 msgid "Portail"
 msgstr "Portal"
 
@@ -18383,6 +18589,7 @@ msgstr "Portal"
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187
 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239
+#: ../../library/Class/AdminVar.php:258
 msgid "Position"
 msgstr "Posición"
 
@@ -18395,6 +18602,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:238
 ../../library/Class/AdminVar.php:239
 #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238
+#: ../../library/Class/AdminVar.php:257
 msgid "Position de la pagination en résultat de recherche"
 msgstr ""
 
@@ -18652,6 +18860,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:275
 ../../library/Class/AdminVar.php:276
 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275
+#: ../../library/Class/AdminVar.php:294
 msgid ""
 "Profil de la page de désinscription<br/>Par défaut : page d'accueil du "
 "portail"
@@ -18880,6 +19089,7 @@ msgid "Protocole HTTP obligatoire"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:26
+#: ../../application/modules/api/controllers/UserController.php:47
 msgid "Protocole HTTPS obligatoire"
 msgstr ""
 
@@ -19026,7 +19236,7 @@ msgid "Présentation"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:224
 ../../library/Class/AdminVar.php:225
-#: ../../library/Class/AdminVar.php:222
+#: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:241
 msgid ""
 "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par "
 "défaut 30 jours)."
@@ -19073,8 +19283,7 @@ msgstr "Activación de la disponibilidad en el resultado de búsqueda"
 msgid "Prêt"
 msgstr "Préstamo"
 
-#: ../../library/Class/User/Cards.php:67
-#: ../../library/Class/User/Cards.php:67
+#: ../../library/Class/User/Cards.php:67
 ../../library/Class/User/Cards.php:67
 #, fuzzy
 msgid "Prêt introuvable"
 msgstr "Usuario no encontrado"
@@ -19618,6 +19827,7 @@ msgstr "Recursos digitales"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 msgid "Rejetée"
 msgstr ""
 
@@ -19654,6 +19864,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:336
 ../../library/Class/AdminVar.php:337
 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:340
+#: ../../library/Class/AdminVar.php:359
 #, php-format
 msgid ""
 "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous "
@@ -20278,8 +20489,7 @@ msgstr ""
 msgid "Réservation interdite pour l'abonné."
 msgstr ""
 
-#: ../../library/Class/User/Cards.php:77
-#: ../../library/Class/User/Cards.php:77
+#: ../../library/Class/User/Cards.php:77
 ../../library/Class/User/Cards.php:77
 #, fuzzy
 msgid "Réservation introuvable"
 msgstr "Reservas imposible"
@@ -20530,6 +20740,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:85
 #: ../../application/modules/admin/views/scripts/index/index.phtml:74
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
@@ -20703,7 +20914,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:177
 ../../library/Class/AdminVar.php:178
-#: ../../library/Class/AdminVar.php:175
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:194
 msgid "Serveur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
@@ -20821,13 +21032,13 @@ msgid "Session non trouvée"
 msgstr "Obra que no se encuentra"
 
 #: ../../library/Class/AdminVar.php:195
 ../../library/Class/AdminVar.php:196
-#: ../../library/Class/AdminVar.php:193
+#: ../../library/Class/AdminVar.php:193 ../../library/Class/AdminVar.php:212
 msgid "Sets du serveur OAI Cité de la Musique à moissonner"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:374
 ../../library/Class/AdminVar.php:375
 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377
-#: ../../library/Class/AdminVar.php:380
+#: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:399
 msgid ""
 "Seuil d'alerte en heures pour détecter que les traitements d'intégration "
 "prennent trop de temps. Par défaut: 2"
@@ -20921,6 +21132,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:79
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
 #: ../../application/modules/admin/views/scripts/index/index.phtml:62
+#: ../../application/modules/admin/views/scripts/index/index.phtml:51
 #, fuzzy
 msgid "Site communautaire"
 msgstr "Título o comentario requerida"
@@ -21391,6 +21603,7 @@ msgstr "Eliminar esta reserva"
 
 #: ../../library/Class/AdminVar.php:298
 ../../library/Class/AdminVar.php:299
 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:302
+#: ../../library/Class/AdminVar.php:321
 msgid ""
 "Supprime l'affichage du lien d'enregistrement dans les différents "
 "formulaires de connexion et interdit l'enregistrement d'utilisateurs"
@@ -21879,6 +22092,7 @@ msgstr "Tag (s)"
 #: ../../library/ZendAfi/Form/Album.php:205
 #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:55
 #: ../../library/ZendAfi/Form/Album.php:204
+#: ../../library/Class/Systeme/Report.php:95
 msgid "Tags"
 msgstr "Etiquetas"
 
@@ -21919,7 +22133,7 @@ msgstr "Tamaño:"
 
 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396
 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398
-#: ../../library/Class/AdminVar.php:401
+#: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420
 msgid "Taille du dossier userfiles en méga octets."
 msgstr ""
 
@@ -21949,6 +22163,11 @@ msgstr "Detalles de la sesión"
 msgid "Temps de traitement "
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:372
+#, php-format
+msgid "Tentative de vignettage de l'album \"%s\" : "
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:67
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:71
 #: ../../application/modules/admin/views/scripts/zone/_form.phtml:14
@@ -22077,6 +22296,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:297
 ../../library/Class/AdminVar.php:298
 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:301
+#: ../../library/Class/AdminVar.php:320
 msgid "Texte d'aide affiché dans la fiche abonné"
 msgstr ""
 
@@ -22105,6 +22325,7 @@ msgstr "Error de configuración"
 
 #: ../../library/Class/AdminVar.php:280
 ../../library/Class/AdminVar.php:281
 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280
+#: ../../library/Class/AdminVar.php:299
 msgid ""
 "Texte de désinscription version HTML<br/>Le lien de désinscription est "
 "appliqué sur tout ce texte<br/>Par défaut : Je ne veux plus recevoir cette "
@@ -22113,6 +22334,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:278
 ../../library/Class/AdminVar.php:279
 #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278
+#: ../../library/Class/AdminVar.php:297
 msgid ""
 "Texte de désinscription version texte<br/>Le lien est inséré à la place de "
 "{{URL}}<br/>Par défaut : Lien pour se désinscrire de cette lettre "
@@ -22126,11 +22348,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:292
 ../../library/Class/AdminVar.php:293
 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:296
+#: ../../library/Class/AdminVar.php:315
 msgid "Texte visible après l'envoi d'e-mail de demande de réservation."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:291
 ../../library/Class/AdminVar.php:292
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:295
+#: ../../library/Class/AdminVar.php:314
 msgid "Texte visible par l'internaute après son inscription."
 msgstr ""
 
@@ -22173,6 +22397,7 @@ msgstr "Tema"
 
 #: ../../library/Class/Systeme/Report.php:89
 #: ../../library/Class/Systeme/Report.php:92
+#: ../../library/Class/Systeme/Report.php:94
 #, fuzzy
 msgid "Thèmes utilisés"
 msgstr "Tema"
@@ -22526,6 +22751,8 @@ msgstr "Todos"
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
+#: ../../library/Class/Systeme/Report.php:127
+#: ../../library/Class/Systeme/Report.php:148
 msgid "Tous"
 msgstr "Todos"
 
@@ -22756,6 +22983,7 @@ msgid "Transfert impossible, champ de fichier introuvable"
 msgstr "No se pueden transferir campo archivo encontrado"
 
 #: ../../library/Class/Upload.php:312
 ../../library/Class/Upload.php:312
+#: ../../library/Class/Upload.php:313
 #, fuzzy
 msgid ""
 "Transfert impossible, le répertoire de destination n'a pas pu être créé."
@@ -22831,6 +23059,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/RSS.php:29
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:382
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/Models.php:30
+#: ../../library/Class/Systeme/Report.php:162
 msgid "Type"
 msgstr "Tipo"
 
@@ -22856,7 +23085,7 @@ msgid "Type d'interface"
 msgstr "Interfaz"
 
 #: ../../library/Class/AdminVar.php:188
 ../../library/Class/AdminVar.php:189
-#: ../../library/Class/AdminVar.php:186
+#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:205
 #, fuzzy
 msgid "Type de SSO OneDTouch"
 msgstr "Tipo de doc."
@@ -23266,9 +23495,15 @@ msgstr "UNIMARC"
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:161
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../library/Class/Systeme/Report.php:163
 msgid "URL"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:79
+#, php-format
+msgid "URL \"%s\" invalide"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 msgid "URL Objet A"
@@ -23280,11 +23515,13 @@ msgid "URL Objet B"
 msgstr "URL Objeto B"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:238
 #, php-format
 msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
 #, php-format
 msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\""
 msgstr ""
@@ -23296,6 +23533,7 @@ msgstr "Wikipedia URL del autor"
 
 #: ../../library/Class/AdminVar.php:311
 ../../library/Class/AdminVar.php:312
 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:315
+#: ../../library/Class/AdminVar.php:334
 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk"
 msgstr ""
 
@@ -23326,13 +23564,25 @@ msgstr ""
 msgid "URL de la vignette"
 msgstr "URL Miniatura"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:339
+msgid "URL de moissonnage générée pour la première page"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#, php-format
+msgid ""
+"URL de validation du ticket de connexion générée pour l'utilisateur \"%s\""
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:341
 ../../library/Class/AdminVar.php:342
 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:345
+#: ../../library/Class/AdminVar.php:364
 msgid "URL destinataire du rapport d'état du système (0 pour désactiver)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:307
 ../../library/Class/AdminVar.php:308
 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:311
+#: ../../library/Class/AdminVar.php:330
 msgid "URL du javascript Babelthèque à insérer dans l'OPAC"
 msgstr ""
 
@@ -23350,13 +23600,11 @@ msgstr ""
 msgid "URL du site web"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:159
-#: ../../library/Class/FRBR/Link.php:159
+#: ../../library/Class/FRBR/Link.php:159
 ../../library/Class/FRBR/Link.php:159
 msgid "URL objet A est requis"
 msgstr "Se requiere un objeto URL"
 
-#: ../../library/Class/FRBR/Link.php:161
-#: ../../library/Class/FRBR/Link.php:161
+#: ../../library/Class/FRBR/Link.php:161
 ../../library/Class/FRBR/Link.php:161
 msgid "URL objet B est requis"
 msgstr "Se requiere URL objeto B"
 
@@ -23368,6 +23616,7 @@ msgstr "Los campos personalizados"
 
 #: ../../library/Class/Systeme/Report.php:87
 #: ../../library/Class/Systeme/Report.php:90
+#: ../../library/Class/Systeme/Report.php:92
 #, fuzzy
 msgid "URL principale"
 msgstr "Título cesta"
@@ -23443,10 +23692,9 @@ msgid "Un libellé est requis"
 msgstr "Se requiere una etiqueta"
 
 #: ../../library/Class/Users.php:1142
 ../../library/Class/Users.php:1142
-#: ../../library/Class/User/LostPass.php:110
-#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1137
-#: ../../library/Class/Users.php:1158
+#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133
+#: ../../library/Class/Users.php:1137 ../../library/Class/Users.php:1158
 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion."
 msgstr ""
 "Un correo electrónico ha sido enviado a usted con su nombre de usuario."
@@ -23669,6 +23917,7 @@ msgstr "Plano de acceso"
 
 #: ../../library/Class/AdminVar.php:316
 ../../library/Class/AdminVar.php:317
 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:320
+#: ../../library/Class/AdminVar.php:339
 msgid "Url d'import d'un agenda TYPO3"
 msgstr ""
 
@@ -23679,12 +23928,14 @@ msgstr "Añadir recursos"
 
 #: ../../library/Class/AdminVar.php:246
 ../../library/Class/AdminVar.php:247
 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246
+#: ../../library/Class/AdminVar.php:265
 msgid "Url de recherche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:386
 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386
 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:394
+#: ../../library/Class/AdminVar.php:413
 msgid "Url du connecteur Le Social"
 msgstr ""
 
@@ -23695,16 +23946,18 @@ msgstr "Explorador de archivos"
 
 #: ../../library/Class/AdminVar.php:232
 ../../library/Class/AdminVar.php:233
 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232
+#: ../../library/Class/AdminVar.php:251
 msgid "Url du proxy Redmine"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:174
 ../../library/Class/AdminVar.php:175
-#: ../../library/Class/AdminVar.php:172
+#: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:191
 msgid "Url du serveur PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:231
 ../../library/Class/AdminVar.php:232
 #: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231
+#: ../../library/Class/AdminVar.php:250
 msgid "Url du serveur redmine"
 msgstr ""
 
@@ -23740,7 +23993,7 @@ msgid "Utilisateur"
 msgstr "Usuario"
 
 #: ../../library/Class/AdminVar.php:178
 ../../library/Class/AdminVar.php:179
-#: ../../library/Class/AdminVar.php:176
+#: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:195
 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
@@ -23757,6 +24010,7 @@ msgid "Utilisateur courant : %s"
 msgstr "Repleto de dominio: %s"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
 #, fuzzy
 msgid "Utilisateur créé pour ce test"
 msgstr "Repleto de dominio: %s"
@@ -23776,12 +24030,14 @@ msgstr "Usuario no encontrado"
 #: ../../application/modules/admin/controllers/IndexController.php:170
 #: ../../application/modules/admin/controllers/UsersController.php:117
 #: ../../application/modules/admin/controllers/IndexController.php:178
+#: ../../application/modules/admin/controllers/IndexController.php:169
 #, fuzzy
 msgid "Utilisateur invalide"
 msgstr "Usuario no encontrado"
 
 #: ../../application/modules/api/controllers/UserController.php:39
 #: ../../application/modules/api/controllers/UserController.php:39
+#: ../../application/modules/api/controllers/UserController.php:60
 #, fuzzy
 msgid "Utilisateur non trouvé"
 msgstr "%d usuario"
@@ -23978,6 +24234,7 @@ msgstr "Variable"
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:110
+#: ../../application/modules/admin/controllers/IndexController.php:101
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr ""
@@ -24011,6 +24268,7 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:210
 #: ../../library/Class/Systeme/Report.php:72
 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:207
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:226
 msgid "Version"
 msgstr "Version"
 
@@ -24035,7 +24293,7 @@ msgid "Version de : \"%s\""
 msgstr "Eliminar artículo: %s"
 
 #: ../../library/Class/AdminVar.php:208
 ../../library/Class/AdminVar.php:209
-#: ../../library/Class/AdminVar.php:206
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:225
 msgid "Version de Kidilangues."
 msgstr ""
 
@@ -24096,10 +24354,12 @@ msgid "Versions de l'article : \"%s\""
 msgstr "Eliminar artículo: %s"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:283
 msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:118
 msgid ""
 "Veuillez activer la ressource pour pouvoir gérer les droits d'accès des "
 "groupes"
@@ -24117,6 +24377,7 @@ msgid "Veuillez choisir une notice"
 msgstr "Por favor, seleccione un registro"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:191
 msgid ""
 "Veuillez configurer les droits de cette ressource pour obtenir une connexion "
 "SSO"
@@ -24155,6 +24416,7 @@ msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:81
+#: ../../application/modules/admin/controllers/IndexController.php:72
 msgid "Veuillez renseigner le paramètre \"cle\"."
 msgstr ""
 
@@ -24198,6 +24460,12 @@ msgstr ""
 msgid "Veuillez sélectionner une boite"
 msgstr "Por favor, seleccione un registro"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:108
+msgid ""
+"Veuillez vérifier le fichier config.php de la ressource pour pouvoir gérer "
+"le paramétrage"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 #, fuzzy
@@ -24262,6 +24530,11 @@ msgstr ""
 msgid "Vignette + frame + lien vers le document"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:406
+#, fuzzy
+msgid "Vignette de l'album : "
+msgstr "Cambiar de ubicación: \"%s\""
+
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #, php-format
@@ -24324,6 +24597,7 @@ msgstr "Miniaturas"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 #: ../../application/modules/opac/controllers/AbonneController.php:463
 #: ../../application/modules/opac/controllers/AbonneController.php:464
+#: ../../library/Class/Systeme/Report.php:226
 msgid "Ville"
 msgstr "Ciudad"
 
@@ -24410,6 +24684,7 @@ msgstr "Ver"
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:265
 #, fuzzy
 msgid "Voir l'album"
 msgstr "Cambiar de ubicación: \"%s\""
@@ -24494,6 +24769,7 @@ msgid "Voir le site"
 msgstr "Visite el sitio web"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:360
 #, fuzzy
 msgid "Voir les albums"
 msgstr "Cambiar de ubicación: \"%s\""
@@ -24520,6 +24796,11 @@ msgstr "Ver"
 msgid "Voir les fils RSS sélectionnés"
 msgstr "Consulte RSS seleccionado"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:386
+#, fuzzy
+msgid "Voir les notices"
+msgstr "Críticas registros"
+
 #: ../../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
@@ -24771,7 +25052,7 @@ msgid "Votre compte n'a pas d'email. Pour continuer vous devez le renseigner."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:184
 ../../library/Class/AdminVar.php:185
-#: ../../library/Class/AdminVar.php:182
+#: ../../library/Class/AdminVar.php:182 ../../library/Class/AdminVar.php:201
 msgid ""
 "Votre compte sera mis à jour dans un délai de 15 minutes après le retour "
 "anticipé du document."
@@ -24813,10 +25094,9 @@ msgid "Votre fiche"
 msgstr "Su archivo"
 
 #: ../../library/Class/Users.php:1133
 ../../library/Class/Users.php:1133
-#: ../../library/Class/User/LostPass.php:102
-#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121
-#: ../../library/Class/Users.php:1124 ../../library/Class/Users.php:1128
-#: ../../library/Class/Users.php:1149
+#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142
+#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124
+#: ../../library/Class/Users.php:1128 ../../library/Class/Users.php:1149
 #, php-format
 msgid "Votre identifiant : %s\n"
 msgstr "Su nombre de usuario: %s\n"
@@ -24866,10 +25146,9 @@ msgid "Votre message : "
 msgstr "Tu mensaje:"
 
 #: ../../library/Class/Users.php:1134
 ../../library/Class/Users.php:1134
-#: ../../library/Class/User/LostPass.php:103
-#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122
-#: ../../library/Class/Users.php:1125 ../../library/Class/Users.php:1129
-#: ../../library/Class/Users.php:1150
+#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143
+#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125
+#: ../../library/Class/Users.php:1129 ../../library/Class/Users.php:1150
 #, php-format
 msgid "Votre mot de passe : %s\n"
 msgstr "Contraseña: %s\n"
@@ -25088,10 +25367,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:"
 msgstr "Usted ha hecho una solicitud de inclusión en el boletín de noticias:"
 
 #: ../../library/Class/Users.php:1132
 ../../library/Class/Users.php:1132
-#: ../../library/Class/User/LostPass.php:101
-#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120
-#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1127
-#: ../../library/Class/Users.php:1148
+#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141
+#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123
+#: ../../library/Class/Users.php:1127 ../../library/Class/Users.php:1148
 msgid "Vous avez fait une demande de mot de passe sur le portail."
 msgstr "Ha solicitado una contraseña en el portal."
 
@@ -25489,6 +25767,8 @@ msgstr "Usted no tiene permiso para realizar la capacitación"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:151
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:178
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:156
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:183
 #, php-format
 msgid "Vous n'avez pas la permission \"%s\""
 msgstr ""
@@ -25528,6 +25808,7 @@ msgstr "Usted no tiene permiso para asistir a la capacitación"
 
 #: ../../application/modules/admin/controllers/IndexController.php:165
 #: ../../application/modules/admin/controllers/IndexController.php:173
+#: ../../application/modules/admin/controllers/IndexController.php:164
 #, fuzzy
 msgid ""
 "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité."
@@ -25732,6 +26013,8 @@ msgstr "Dejar de recibir el boletín de noticias:"
 #: ../../application/modules/admin/controllers/IndexController.php:190
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:198
+#: ../../application/modules/admin/controllers/IndexController.php:177
+#: ../../application/modules/admin/controllers/IndexController.php:189
 #, php-format
 msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\""
 msgstr ""
@@ -25748,11 +26031,13 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
 msgid "Vérifiée"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:334
 ../../library/Class/AdminVar.php:335
 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:338
+#: ../../library/Class/AdminVar.php:357
 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites"
 msgstr ""
 
@@ -25766,6 +26051,7 @@ msgstr "Web"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:81
 #: ../../application/modules/admin/views/scripts/index/index.phtml:70
 #: ../../application/modules/admin/views/scripts/index/index.phtml:64
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Wiki Bokeh"
 msgstr ""
 
@@ -26560,8 +26846,7 @@ msgstr "Desde %s para %s"
 msgid "jusqu'à"
 msgstr "a"
 
-#: ../../library/Class/Ouverture.php:180
-#: ../../library/Class/Ouverture.php:180
+#: ../../library/Class/Ouverture.php:180
 ../../library/Class/Ouverture.php:180
 #, fuzzy, php-format
 msgid "le %s"
 msgstr " %s"
@@ -27488,6 +27773,7 @@ msgstr "Contenido"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:48
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:31
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 #, fuzzy
 msgid "» Modifier «"
 msgstr "Cambiar"
@@ -27543,6 +27829,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:62
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:135
 #, php-format
 msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\""
 msgstr ""
@@ -27585,12 +27872,14 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:124
 #, php-format
 msgid "Échec de la suggestion, le webservice a répondu \"%s\""
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:121
 msgid "Échec de la suggestion, une erreur inconnue est survenue."
 msgstr ""
 
diff --git a/library/translation/fr.po b/library/translation/fr.po
index 925c40410fb1a4b8ebc143e9e2a87c9e0f2b2ca8..af11f26e9e2316c0318a0e6ae3e1cc540632e281 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: 2018-03-26 12:00+0200\n"
+"POT-Creation-Date: 2018-04-09 14:17+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"
@@ -935,12 +935,14 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:393
 ../../library/Class/AdminVar.php:420
 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:427
+#: ../../library/Class/AdminVar.php:446
 msgid "API"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:392
 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418
 #: ../../library/Class/AdminVar.php:423 ../../library/Class/AdminVar.php:426
+#: ../../library/Class/AdminVar.php:445
 msgid "API utilisée pour les cartes statiques"
 msgstr ""
 
@@ -1035,6 +1037,7 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 msgid "Acceptée"
 msgstr ""
 
@@ -1175,6 +1178,11 @@ msgstr ""
 msgid "Accéder aux titres seulement"
 msgstr ""
 
+#: ../../library/Class/DigitalResource/AlbumViewHelper.php:44
+#, fuzzy, php-format
+msgid "Accéder à \"%s\" dans un nouvel onglet"
+msgstr "Entrez votre identité S.V.P."
+
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65
 #, php-format
@@ -1252,6 +1260,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:242
 ../../library/Class/AdminVar.php:243
 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242
+#: ../../library/Class/AdminVar.php:261
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche au survol de la "
 "couverture du document, calculé en temps réel."
@@ -1259,6 +1268,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:243
 ../../library/Class/AdminVar.php:244
 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243
+#: ../../library/Class/AdminVar.php:262
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche. Calculé grâce "
 "à la facette \"En rayon\"."
@@ -1266,37 +1276,41 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:333
 ../../library/Class/AdminVar.php:334
 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:337
+#: ../../library/Class/AdminVar.php:356
 msgid "Activation de la navigation collaborative"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:202
 ../../library/Class/AdminVar.php:203
-#: ../../library/Class/AdminVar.php:200
+#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:219
 msgid "Activation de la ressource numérique PlanetNemo"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:313
 ../../library/Class/AdminVar.php:314
 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:317
+#: ../../library/Class/AdminVar.php:336
 msgid "Activation des boîtes dans les menus"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:338
 ../../library/Class/AdminVar.php:339
 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:342
+#: ../../library/Class/AdminVar.php:361
 msgid "Activation des fonctions avancées du téléphone"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:255
 ../../library/Class/AdminVar.php:256
 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255
+#: ../../library/Class/AdminVar.php:274
 msgid "Activation des formulaires"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:170
 ../../library/Class/AdminVar.php:171
-#: ../../library/Class/AdminVar.php:168
+#: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:187
 msgid "Activation du PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:381
 ../../library/Class/AdminVar.php:382
 #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384
-#: ../../library/Class/AdminVar.php:387
+#: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406
 msgid ""
 "Activation du serveur OAI: permet le moissonnage des domaines par d'autres "
 "logiciels via OAI"
@@ -1319,6 +1333,7 @@ msgid "Activer la tâche"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
 msgid "Activer le moissonnage"
 msgstr ""
 
@@ -1345,11 +1360,13 @@ msgid "Activer ou désactiver : %s"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:133
 ../../library/Class/AdminVar.php:134
+#: ../../library/Class/AdminVar.php:153
 msgid "Activer ou désactiver la bibliothèque numérique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:305
 ../../library/Class/AdminVar.php:306
 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:309
+#: ../../library/Class/AdminVar.php:328
 msgid "Activer ou désactiver le module d'activité"
 msgstr ""
 
@@ -1408,6 +1425,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36
 #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51
+#: ../../library/Class/Systeme/Report.php:190
 msgid "Activé"
 msgstr ""
 
@@ -1542,6 +1560,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 #: ../../application/modules/opac/controllers/AbonneController.php:461
 #: ../../application/modules/opac/controllers/AbonneController.php:462
+#: ../../library/Class/Systeme/Report.php:224
 msgid "Adresse"
 msgstr ""
 
@@ -1575,26 +1594,27 @@ msgid "Adresse du destinataire absente."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:187
 ../../library/Class/AdminVar.php:188
-#: ../../library/Class/AdminVar.php:185
+#: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:204
 msgid "Adresse du serveur OAI 1D touch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:193
 ../../library/Class/AdminVar.php:194
-#: ../../library/Class/AdminVar.php:191
+#: ../../library/Class/AdminVar.php:191 ../../library/Class/AdminVar.php:210
 msgid "Adresse du serveur OAI Cité de la Musique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:148
 ../../library/Class/AdminVar.php:149
+#: ../../library/Class/AdminVar.php:168
 msgid "Adresse du serveur OAI Cyberlibris"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:197
 ../../library/Class/AdminVar.php:198
-#: ../../library/Class/AdminVar.php:195
+#: ../../library/Class/AdminVar.php:195 ../../library/Class/AdminVar.php:214
 msgid "Adresse du serveur Orphea"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:204
 ../../library/Class/AdminVar.php:205
-#: ../../library/Class/AdminVar.php:202
+#: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:221
 msgid "Adresse du serveur de la ressource numérique Orthodidacte"
 msgstr ""
 
@@ -2114,6 +2134,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:331
 ../../library/Class/AdminVar.php:332
 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:335
+#: ../../library/Class/AdminVar.php:354
 msgid "Ajouter automatiquement une boîte panier dans la division flottante"
 msgstr ""
 
@@ -3005,8 +3026,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
-#: ../../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/Library.php:263
@@ -3019,12 +3039,12 @@ msgid "Aucun"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:368
 #, fuzzy
 msgid "Aucun album présent pour cette ressource"
 msgstr "Vous avez attein le nombre maximum de réservations"
 
-#: ../../library/Class/NoticeHtml.php:69
-#: ../../library/Class/NoticeHtml.php:69
+#: ../../library/Class/NoticeHtml.php:69
 ../../library/Class/NoticeHtml.php:69
 msgid "Aucun article n'a été trouvé"
 msgstr ""
 
@@ -3120,6 +3140,7 @@ msgid "Aucun fichier présent dans %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:140
 msgid "Aucun groupe n'a de droits d'accès à la ressources"
 msgstr ""
 
@@ -3191,6 +3212,7 @@ msgid "Aucun résumé"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:176
 msgid "Aucun utilisateur rattaché aux groupes"
 msgstr ""
 
@@ -3284,6 +3306,11 @@ msgstr ""
 msgid "Aucune inscription validée"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:395
+#, fuzzy
+msgid "Aucune notice présente pour cette ressource"
+msgstr "Vous avez attein le nombre maximum de réservations"
+
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 msgid "Aucune notice trouvée"
@@ -3584,10 +3611,12 @@ msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:29
 #: ../../application/modules/api/controllers/UserController.php:29
+#: ../../application/modules/api/controllers/UserController.php:50
 msgid "Autorisation non spécifiée"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292
+#: ../../library/Class/AdminVar.php:311
 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)"
 msgstr ""
 
@@ -3845,6 +3874,7 @@ msgid "Base de données : "
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:300
 msgid "Batch"
 msgstr ""
 
@@ -4453,10 +4483,9 @@ msgstr ""
 
 #: ../../library/Class/Users.php:1135
 ../../library/Class/Users.php:1135
 #: ../../library/Class/User/LostPass.php:104
-#: ../../library/Class/User/LostPass.php:137
-#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123
-#: ../../library/Class/Users.php:1126 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1151
+#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144
+#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1151
 msgid "Bonne navigation sur le portail"
 msgstr ""
 
@@ -4472,6 +4501,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:220
 #: ../../library/Class/Systeme/Report.php:223
+#: ../../library/Class/Systeme/Report.php:225
 msgid "CP"
 msgstr ""
 
@@ -4954,15 +4984,29 @@ msgstr ""
 msgid "Cette recherche ne vous appartient pas."
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:343
+msgid ""
+"Cette ressource ne prend pas en charge l'affichage du l'url de moissonnage"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:186
 msgid "Cette ressource ne prend pas en charge la connexion SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
 msgid "Cette ressource ne prend pas en charge la gestion des droits"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:244
+msgid ""
+"Cette ressource ne prend pas en charge la validation du ticket de connexion "
+"SSO"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:278
 msgid "Cette ressource ne prend pas en charge le moissonnage"
 msgstr ""
 
@@ -5142,6 +5186,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:332
 ../../library/Class/AdminVar.php:333
 #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:336
+#: ../../library/Class/AdminVar.php:355
 #, php-format
 msgid "Chemin vers les skins personnalisées, relatif à %s"
 msgstr ""
@@ -5267,6 +5312,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:290
 ../../library/Class/AdminVar.php:291
 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:294
+#: ../../library/Class/AdminVar.php:313
 msgid ""
 "Clef d'activation pour le plan d'accès google map. <a target=\"_blank\" href="
 "\"http://code.google.com/apis/maps/signup.html\">Obtenir la clé google map</"
@@ -5309,16 +5355,19 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:296
 ../../library/Class/AdminVar.php:297
 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:300
+#: ../../library/Class/AdminVar.php:319
 msgid ""
 "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/"
 "home\">http://webthumb.bluga.net/home</a>"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:152
 ../../library/Class/AdminVar.php:153
+#: ../../library/Class/AdminVar.php:172
 msgid "Clé ARTE VOD"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:153
 ../../library/Class/AdminVar.php:154
+#: ../../library/Class/AdminVar.php:173
 msgid "Clé ARTE VOD Single Sign-On"
 msgstr ""
 
@@ -5333,35 +5382,35 @@ msgid "Clé chapeau"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:211
 ../../library/Class/AdminVar.php:212
-#: ../../library/Class/AdminVar.php:209
+#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:228
 msgid ""
 "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par "
 "Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:212
 ../../library/Class/AdminVar.php:213
-#: ../../library/Class/AdminVar.php:210
+#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:229
 msgid ""
 "Clé d'identification Kidilangues pour le portail. Cette clé doit être "
 "fournie par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:185
 ../../library/Class/AdminVar.php:186
-#: ../../library/Class/AdminVar.php:183
+#: ../../library/Class/AdminVar.php:183 ../../library/Class/AdminVar.php:202
 msgid ""
 "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie "
 "par MyCOW.EU. Elle active la ressource numérique dans le portail."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:216
 ../../library/Class/AdminVar.php:217
-#: ../../library/Class/AdminVar.php:214
+#: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:233
 msgid ""
 "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit "
 "être fournie par Premier-Chapitre."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:166
 ../../library/Class/AdminVar.php:167
-#: ../../library/Class/AdminVar.php:164
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:183
 msgid "Clé de sécurité Vodeclic"
 msgstr ""
 
@@ -5373,11 +5422,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:308
 ../../library/Class/AdminVar.php:309
 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:312
+#: ../../library/Class/AdminVar.php:331
 msgid "Clé publique pour le cryptage des données AFI-Multimédia"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:310
 ../../library/Class/AdminVar.php:311
 #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:314
+#: ../../library/Class/AdminVar.php:333
 msgid "Clé publique pour le cryptage des données Aesis Webkiosk"
 msgstr ""
 
@@ -5447,6 +5498,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:82
 #: ../../application/modules/admin/views/scripts/index/index.phtml:71
 #: ../../application/modules/admin/views/scripts/index/index.phtml:65
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 msgid "Code source"
 msgstr ""
 
@@ -5511,6 +5563,7 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 msgid "Commandée"
 msgstr ""
 
@@ -5627,7 +5680,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412
 #: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414
-#: ../../library/Class/AdminVar.php:417
+#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436
 msgid ""
 "Compression d'image utilisée dans le redimensionnement et la compression des "
 "images."
@@ -5652,6 +5705,10 @@ msgstr ""
 msgid "Compte d'assistance: %s"
 msgstr ""
 
+#: ../../library/Class/Systeme/Report.php:228
+msgid "Compte forge"
+msgstr ""
+
 #: ../../library/Class/Feature/List.php:179
 msgid "Compte lecteur"
 msgstr ""
@@ -5770,6 +5827,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:437
 #: ../../application/modules/admin/controllers/BibController.php:432
 #: ../../application/modules/admin/controllers/BibController.php:433
+#: ../../application/modules/admin/controllers/BibController.php:436
 #, fuzzy
 msgid "Configuration introuvable"
 msgstr "Limite du nombre de réservations atteinte"
@@ -6053,6 +6111,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:265
 ../../library/Class/AdminVar.php:266
 #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265
+#: ../../library/Class/AdminVar.php:284
 msgid ""
 "Contenu de l'email de notification d'article en attente de validation. "
 "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, "
@@ -6061,6 +6120,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:266
 ../../library/Class/AdminVar.php:267
 #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266
+#: ../../library/Class/AdminVar.php:285
 msgid ""
 "Contenu de l'email de notification de refus d'un article à valider. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6068,6 +6128,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:267
 ../../library/Class/AdminVar.php:268
 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267
+#: ../../library/Class/AdminVar.php:286
 msgid ""
 "Contenu de l'email de notification de validation d'un article. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6075,6 +6136,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381
 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389
+#: ../../library/Class/AdminVar.php:408
 msgid ""
 "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si "
 "vide sera tiré de la variable cosmogramme \"mail_admin\""
@@ -6082,6 +6144,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380
 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388
+#: ../../library/Class/AdminVar.php:407
 msgid ""
 "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si "
 "vide sera [NOM DU SERVEUR] Oai repository"
@@ -6120,7 +6183,7 @@ msgid "Contient"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:173
 ../../library/Class/AdminVar.php:174
-#: ../../library/Class/AdminVar.php:171
+#: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:190
 msgid "Contracteur du PNB Dilicom"
 msgstr ""
 
@@ -6141,6 +6204,7 @@ msgstr ""
 #: ../../library/Class/Systeme/Report.php:222
 #: ../../application/modules/telephone/views/scripts/recherche/bibliotheque.phtml:4
 #: ../../library/Class/Systeme/Report.php:225
+#: ../../library/Class/Systeme/Report.php:227
 msgid "Coordonnées"
 msgstr ""
 
@@ -6714,12 +6778,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:373
 ../../library/Class/AdminVar.php:374
 #: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376
-#: ../../library/Class/AdminVar.php:379
+#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:398
 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:303
 ../../library/Class/AdminVar.php:304
 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:307
+#: ../../library/Class/AdminVar.php:326
 msgid "Date du dernier vidage manuel du cache"
 msgstr ""
 
@@ -6770,7 +6835,7 @@ msgstr ""
 msgid "De B à A"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:291
+#: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:310
 msgid ""
 "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est "
 "désactivé."
@@ -6966,6 +7031,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:306
 msgid "Dernière exécution"
 msgstr ""
 
@@ -7102,10 +7168,12 @@ msgid "Dewey / pcdm4"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:183
 msgid "Diagnostic SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:275
 msgid "Diagnostic moissonnage"
 msgstr ""
 
@@ -7178,6 +7246,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:86
 #: ../../application/modules/admin/views/scripts/index/index.phtml:75
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
+#: ../../application/modules/admin/views/scripts/index/index.phtml:58
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -7199,6 +7268,7 @@ msgstr ""
 #: ../../library/Class/Exemplaire.php:269
 #: ../../library/Class/Exemplaire.php:274
 #: ../../library/Class/Exemplaire.php:290
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 msgid "Disponible"
 msgstr ""
 
@@ -7364,11 +7434,12 @@ msgstr ""
 #: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 #: ../../library/Class/Album.php:1604 ../../library/Class/Album.php:1614
 #: ../../library/Class/Album.php:1630 ../../library/Class/Album.php:1631
+#: ../../library/Class/Album.php:1633
 msgid "Domaine public"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:206
 ../../library/Class/AdminVar.php:207
-#: ../../library/Class/AdminVar.php:204
+#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:223
 msgid "Domaine utilisée par le serveur lectura pour authentification"
 msgstr ""
 
@@ -7430,6 +7501,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:219
 #: ../../application/modules/admin/views/scripts/index/index.phtml:46
 #: ../../application/modules/admin/views/scripts/index/index.phtml:40
+#: ../../application/modules/admin/views/scripts/index/index.phtml:29
 msgid "Données en attente de modération"
 msgstr ""
 
@@ -7574,7 +7646,7 @@ msgid "Durée de prêt en jours"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:180
 ../../library/Class/AdminVar.php:181
-#: ../../library/Class/AdminVar.php:178
+#: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:197
 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom"
 msgstr ""
 
@@ -7662,6 +7734,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:32
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:15
+#: ../../application/modules/admin/views/scripts/index/index.phtml:4
 msgid "Démonstrations vidéos"
 msgstr ""
 
@@ -7697,7 +7770,7 @@ msgid "Dépouillements"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:225
 ../../library/Class/AdminVar.php:226
-#: ../../library/Class/AdminVar.php:223
+#: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:242
 msgid "Désactivation des suggestions d'achats"
 msgstr ""
 
@@ -7709,11 +7782,13 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:313
 msgid "Désactiver la tâche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:293
 ../../library/Class/AdminVar.php:294
 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:297
+#: ../../library/Class/AdminVar.php:316
 msgid "Désactiver pour passer le site en maintenance"
 msgstr ""
 
@@ -7726,7 +7801,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:358
 ../../library/Class/AdminVar.php:359
 #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361
-#: ../../library/Class/AdminVar.php:364
+#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:383
 msgid ""
 "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les "
 "bibliothécaires peuvent donner leur avis"
@@ -7734,7 +7809,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:359
 ../../library/Class/AdminVar.php:360
 #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362
-#: ../../library/Class/AdminVar.php:365
+#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:384
 msgid ""
 "Désactivé: ne requiert pas d'identification pour saisir des  commentaires. "
 "<br /> Activé: requiert l'identification pour saisir des commentaires."
@@ -7934,6 +8009,10 @@ msgstr ""
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BibController.php:445
+msgid "Echec de la sauvegarde de la configuration des filtres par défaut"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:84
 msgid "Echelle"
 msgstr ""
@@ -8162,6 +8241,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:54
 msgid "En attente"
 msgstr ""
 
@@ -8481,6 +8561,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:164
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -8610,6 +8691,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:119
+#: ../../application/modules/admin/controllers/IndexController.php:110
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
@@ -8675,18 +8757,22 @@ msgid "Erreurs"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:273
+#: ../../library/Class/Systeme/Report.php:277
 msgid "Espace disque libre"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:275
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Espace disque plein"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:274
+#: ../../library/Class/Systeme/Report.php:278
 msgid "Espace disque total"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:272
+#: ../../library/Class/Systeme/Report.php:276
 msgid "Espace disque utilisé"
 msgstr ""
 
@@ -8722,6 +8808,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:159
 #: ../../library/Class/Systeme/Report.php:162
+#: ../../library/Class/Systeme/Report.php:164
 msgid "Etat de la communication"
 msgstr ""
 
@@ -8730,6 +8817,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
 #: ../../application/modules/admin/views/scripts/index/index.phtml:42
 #: ../../application/modules/admin/views/scripts/index/index.phtml:36
+#: ../../application/modules/admin/views/scripts/index/index.phtml:25
 msgid "Etat du site"
 msgstr ""
 
@@ -8741,6 +8829,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:241
 ../../library/Class/AdminVar.php:242
 #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241
+#: ../../library/Class/AdminVar.php:260
 msgid ""
 "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" "
 "entre les mots saisis"
@@ -8759,6 +8848,7 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:321
 msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
 msgstr ""
 
@@ -9082,7 +9172,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415
 #: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417
-#: ../../library/Class/AdminVar.php:420
+#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439
 msgid ""
 "Facteur d'échantillonnage utilisé dans le redimensionnement et la "
 "compression des images."
@@ -9416,6 +9506,7 @@ msgstr ""
 #: ../../library/Class/Systeme/Report.php:186
 #: ../../library/Class/Systeme/Report.php:189
 #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:62
+#: ../../library/Class/Systeme/Report.php:191
 msgid "Fonctionnalités"
 msgstr ""
 
@@ -9451,6 +9542,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:288
 ../../library/Class/AdminVar.php:289
 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288
+#: ../../library/Class/AdminVar.php:307
 msgid ""
 "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et "
 "la configuration appropriée du serveur Web"
@@ -9597,6 +9689,7 @@ msgid "Genres"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:115
 msgid "Gestion des  droits"
 msgstr ""
 
@@ -9630,6 +9723,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:64
 #: ../../application/modules/admin/controllers/IndexController.php:64
+#: ../../application/modules/admin/controllers/IndexController.php:55
 msgid "Gestion des variables"
 msgstr ""
 
@@ -9648,7 +9742,7 @@ msgid "Gestionnaire de contenu"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:171
 ../../library/Class/AdminVar.php:172
-#: ../../library/Class/AdminVar.php:169
+#: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:188
 msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
@@ -9661,6 +9755,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:80
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
 #: ../../application/modules/admin/views/scripts/index/index.phtml:63
+#: ../../application/modules/admin/views/scripts/index/index.phtml:52
 msgid "Google group Bokeh"
 msgstr ""
 
@@ -9683,6 +9778,7 @@ msgid "Groupe \"%s\" supprimé"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:214
 msgid "Groupe créé pour ce test"
 msgstr ""
 
@@ -9715,6 +9811,7 @@ msgid "Groupes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:225
 #, php-format
 msgid "Groupes : %s"
 msgstr ""
@@ -9727,6 +9824,7 @@ msgid "Groupes destinataires"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:152
 msgid "Groupes qui ont accès à la ressource"
 msgstr ""
 
@@ -9795,6 +9893,7 @@ msgid "Généré pour la session d'activité %s"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:134
 ../../library/Class/AdminVar.php:135
+#: ../../library/Class/AdminVar.php:154
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
 "de la bibliothèque numérique"
@@ -9809,6 +9908,7 @@ msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:146
 msgid "Gérer les groupes"
 msgstr ""
 
@@ -10027,12 +10127,12 @@ msgid "ID"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:163
 ../../library/Class/AdminVar.php:164
-#: ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:180
 msgid "ID client Jamendo"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:164
 ../../library/Class/AdminVar.php:165
-#: ../../library/Class/AdminVar.php:162
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:181
 msgid "ID client SoundCloud"
 msgstr ""
 
@@ -10074,6 +10174,7 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:387
 ../../library/Class/AdminVar.php:388
 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:395
+#: ../../library/Class/AdminVar.php:414
 msgid "Id du connecteur Le Social"
 msgstr ""
 
@@ -10145,11 +10246,12 @@ msgid "Identifiant"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:149
 ../../library/Class/AdminVar.php:150
+#: ../../library/Class/AdminVar.php:169
 msgid "Identifiant SSO Cyberlibris"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:168
 ../../library/Class/AdminVar.php:169
-#: ../../library/Class/AdminVar.php:166
+#: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:185
 msgid "Identifiant code bibliothèque Vodeclic"
 msgstr ""
 
@@ -10159,17 +10261,18 @@ msgid "Identifiant commence par"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:194
 ../../library/Class/AdminVar.php:195
-#: ../../library/Class/AdminVar.php:192
+#: ../../library/Class/AdminVar.php:192 ../../library/Class/AdminVar.php:211
 msgid "Identifiant d'accès au serveur OAI Cité de la Musique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:192
 ../../library/Class/AdminVar.php:193
-#: ../../library/Class/AdminVar.php:190
+#: ../../library/Class/AdminVar.php:190 ../../library/Class/AdminVar.php:209
 msgid "Identifiant du portail chez 1D touch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:233
 ../../library/Class/AdminVar.php:234
 #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233
+#: ../../library/Class/AdminVar.php:252
 msgid "Identifiant du project Redmine"
 msgstr ""
 
@@ -10215,7 +10318,7 @@ msgid "Identifiant ou mot de passe incorrect."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:167
 ../../library/Class/AdminVar.php:168
-#: ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:184
 msgid "Identifiant partenaire Vodeclic"
 msgstr ""
 
@@ -10226,6 +10329,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:340
 ../../library/Class/AdminVar.php:341
 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:344
+#: ../../library/Class/AdminVar.php:363
 msgid ""
 "Identifiant unique (attention: la modification de cette variable impactera "
 "les outils de suivi de cette installation)"
@@ -10327,8 +10431,7 @@ msgstr ""
 msgid "Il n'y a plus de sous-niveau"
 msgstr ""
 
-#: ../../library/Class/NoticeOAI.php:230
-#: ../../library/Class/NoticeOAI.php:230
+#: ../../library/Class/NoticeOAI.php:230
 ../../library/Class/NoticeOAI.php:230
 msgid "Il n'y aucun mot assez significatif pour la recherche"
 msgstr ""
 
@@ -10383,11 +10486,20 @@ msgstr ""
 msgid "Image de fond"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:346
+msgid "Image du type de document: "
+msgstr ""
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 msgid "Image par image"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:374
+#, fuzzy, php-format
+msgid "Image source : %s"
+msgstr "Entrez votre identité S.V.P."
+
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 msgid "Import"
@@ -10481,6 +10593,16 @@ msgstr ""
 msgid "Impossible d'afficher la carte"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:94
+#, php-format
+msgid "Impossible d'ajouter l'image \"%s\" à l'album \"%s\""
+msgstr ""
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:112
+#, php-format
+msgid "Impossible d'enregister l'image \"%s\" dans \"%s\""
+msgstr ""
+
 #: ../../library/Class/UploadMover/LocalFile.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
@@ -10560,6 +10682,11 @@ msgstr ""
 msgid "Impossible de trouver cette adresse"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:84
+#, php-format
+msgid "Impossible de télécharger l'image \"%s\" sur le serveur"
+msgstr ""
+
 #: ../../library/Class/Upload.php:68
 ../../library/Class/Upload.php:68
 msgid ""
 "Impossible de télécharger la photo , le répertoire temporaire n'existe pas"
@@ -10918,6 +11045,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:314
 ../../library/Class/AdminVar.php:315
 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:318
+#: ../../library/Class/AdminVar.php:337
 msgid "Interdire la modification de la fiche abonne"
 msgstr ""
 
@@ -11053,22 +11181,25 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:366
 ../../library/Class/AdminVar.php:367
 #: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369
-#: ../../library/Class/AdminVar.php:372
+#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:391
 msgid "Javascript code for statistics"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:281
 ../../library/Class/AdminVar.php:282
 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281
+#: ../../library/Class/AdminVar.php:300
 msgid "Je ne veux plus recevoir cette lettre d'information"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:36
 #: ../../application/modules/api/controllers/UserController.php:36
+#: ../../application/modules/api/controllers/UserController.php:57
 msgid "Jeton d'autorisation invalide"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:33
 #: ../../application/modules/api/controllers/UserController.php:33
+#: ../../application/modules/api/controllers/UserController.php:54
 msgid "Jeton d'autorisation non fourni"
 msgstr ""
 
@@ -11226,7 +11357,7 @@ msgid "L'album \"%s\" a été créé"
 msgstr ""
 
 #: ../../library/Class/Album.php:1133
 ../../library/Class/Album.php:1133
-#: ../../library/Class/Album.php:1138
+#: ../../library/Class/Album.php:1138 ../../library/Class/Album.php:1140
 msgid "L'album doit avoir un type de document"
 msgstr ""
 
@@ -11249,7 +11380,7 @@ msgid "L'annexe \"%s\" a été suppriméee"
 msgstr ""
 
 #: ../../library/Class/Album.php:1126
 ../../library/Class/Album.php:1126
-#: ../../library/Class/Album.php:1131
+#: ../../library/Class/Album.php:1131 ../../library/Class/Album.php:1133
 #, php-format
 msgid "L'année doit être comprise entre %s et %s"
 msgstr ""
@@ -11519,6 +11650,7 @@ msgid "La catégorie \"%s\" a été sauvegardée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:86
+#: ../../application/modules/admin/controllers/IndexController.php:77
 #, php-format
 msgid "La clé \"%s\" n'existe pas."
 msgstr ""
@@ -11570,6 +11702,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:163
+#: ../../application/modules/admin/controllers/IndexController.php:154
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
@@ -11723,7 +11856,7 @@ msgid "La taille du fichier doit être supérieur à \"%min%\""
 msgstr ""
 
 #: ../../library/Class/Upload.php:66 ../../library/Class/Upload.php:317
-#: ../../library/Class/Upload.php:317
+#: ../../library/Class/Upload.php:317 ../../library/Class/Upload.php:318
 msgid "La taille du fichier ne doit pas excéder "
 msgstr ""
 
@@ -11771,6 +11904,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
 #: ../../library/Class/Systeme/Report.php:221
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
+#: ../../library/Class/Systeme/Report.php:223
 msgid "Label"
 msgstr ""
 
@@ -11948,6 +12082,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:141
+#: ../../application/modules/admin/controllers/IndexController.php:132
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
@@ -12093,6 +12228,7 @@ msgid "Le fichier est trop petit : %s mo -> taille minimum attendue : %s mo"
 msgstr ""
 
 #: ../../library/Class/Upload.php:322
 ../../library/Class/Upload.php:322
+#: ../../library/Class/Upload.php:323
 msgid "Le fichier n'a pas de nom"
 msgstr ""
 
@@ -12101,6 +12237,7 @@ msgid "Le fichier n'a pu être téléchargé complètement"
 msgstr ""
 
 #: ../../library/Class/Upload.php:332
 ../../library/Class/Upload.php:332
+#: ../../library/Class/Upload.php:329
 #, php-format
 msgid "Le fichier n'est pas de type %s"
 msgstr ""
@@ -12135,6 +12272,7 @@ msgid "Le fichier reçu n'est pas valide"
 msgstr ""
 
 #: ../../library/Class/Upload.php:307
 ../../library/Class/Upload.php:307
+#: ../../library/Class/Upload.php:308
 msgid "Le fichier était vide ou un problème réseau est survenu"
 msgstr ""
 
@@ -12160,6 +12298,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:129
 ../../library/Class/AdminVar.php:130
+#: ../../library/Class/AdminVar.php:149
 msgid ""
 "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au "
 "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12168,6 +12307,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:252
 ../../library/Class/AdminVar.php:253
 #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252
+#: ../../library/Class/AdminVar.php:271
 msgid ""
 "Le gestionnaire de contenu affiche les articles sous forme de liste paginée "
 "au lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12214,6 +12354,7 @@ msgid "Le modèle \"%s\" a été sauvegardé"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:288
 msgid "Le moissonnage n'est pas programmé"
 msgstr ""
 
@@ -12355,10 +12496,14 @@ msgid "Le territoire contient %s notices"
 msgstr ""
 
 #: ../../library/Class/Album.php:1131
 ../../library/Class/Album.php:1131
-#: ../../library/Class/Album.php:1136
+#: ../../library/Class/Album.php:1136 ../../library/Class/Album.php:1138
 msgid "Le titre est obligatoire"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:377
+msgid "Le vignettage n'est pas testable sans album"
+msgstr ""
+
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 msgid "Lecteurs du portail"
@@ -12381,7 +12526,7 @@ msgstr ""
 msgid "Les %s sélectionnés ont bien été supprimés"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:289
+#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:308
 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB."
 msgstr ""
 
@@ -12451,6 +12596,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:450
 #: ../../application/modules/admin/controllers/BibController.php:445
 #: ../../application/modules/admin/controllers/BibController.php:446
+#: ../../application/modules/admin/controllers/BibController.php:447
 msgid "Les filtres par défaut ont été sauvegardés."
 msgstr ""
 
@@ -12572,18 +12718,18 @@ msgstr ""
 msgid "Les sites les plus récents"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:225
+#: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:244
 msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:226
+#: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:245
 msgid ""
 "Les utilisateurs peuvent recevoir les nouveautés de leurs recherches "
 "favorites par email"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:226
 ../../library/Class/AdminVar.php:227
-#: ../../library/Class/AdminVar.php:224
+#: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:243
 msgid ""
 "Les utilisateurs peuvent sélectionner des bibliothèques favorites pour leurs "
 "recherche"
@@ -12725,6 +12871,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15
 #: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9
 #: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29
+#: ../../library/Class/Systeme/Report.php:189
 msgid "Libellé"
 msgstr ""
 
@@ -12761,6 +12908,7 @@ msgid "Libellé de la catégorie"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:138
 ../../library/Class/AdminVar.php:139
+#: ../../library/Class/AdminVar.php:158
 msgid "Libellé de regroupement des abonnés"
 msgstr ""
 
@@ -12818,16 +12966,19 @@ msgstr "Entrez votre identité S.V.P."
 
 #: ../../library/Class/AdminVar.php:319
 ../../library/Class/AdminVar.php:320
 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:323
+#: ../../library/Class/AdminVar.php:342
 msgid "Libellé pour la Dewey"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:318
 ../../library/Class/AdminVar.php:319
 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:322
+#: ../../library/Class/AdminVar.php:341
 msgid "Libellé pour la PCDM4"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:88
 #: ../../library/Class/Systeme/Report.php:91
+#: ../../library/Class/Systeme/Report.php:93
 #, fuzzy
 msgid "Libellé principal"
 msgstr "Entrez votre identité S.V.P."
@@ -12902,6 +13053,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:279
 ../../library/Class/AdminVar.php:280
 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279
+#: ../../library/Class/AdminVar.php:298
 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr ""
 
@@ -13337,7 +13489,7 @@ msgid "Liste de valeurs"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:175
 ../../library/Class/AdminVar.php:176
-#: ../../library/Class/AdminVar.php:173
+#: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:192
 msgid ""
 "Liste des adresses IP publiques autorisées pour la consultation des documents"
 msgstr ""
@@ -13365,6 +13517,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:317
 ../../library/Class/AdminVar.php:318
 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:321
+#: ../../library/Class/AdminVar.php:340
 msgid ""
 "Liste des champs que l'utilisateur peux modifier. <br/>Ex: nom;prenom;pseudo;"
 "adresse;<br/>code_postal;ville;mail;is_contact_mail;<br/>telephone;"
@@ -13373,6 +13526,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:330
 ../../library/Class/AdminVar.php:331
 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:334
+#: ../../library/Class/AdminVar.php:353
 msgid ""
 "Liste des codes des facettes qui ne sont pas limitées à l'affichage dans le "
 "résultat de recherche<br/>Exemple : T => Type de doc, Y => Annexe, B => "
@@ -13381,6 +13535,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:299
 ../../library/Class/AdminVar.php:300
 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:303
+#: ../../library/Class/AdminVar.php:322
 msgid ""
 "Liste des codes langue utilisées en plus du français séparées par des ;. "
 "Exemple: en;ro;es"
@@ -13398,7 +13553,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403
 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405
-#: ../../library/Class/AdminVar.php:408
+#: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427
 msgid ""
 "Liste des dimensions disponibles pour retailler les images lors de l'import."
 msgstr ""
@@ -13417,18 +13572,18 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399
 #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401
-#: ../../library/Class/AdminVar.php:404
+#: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423
 msgid "Liste des extensions de fichiers disponibles à l'import."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406
 #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408
-#: ../../library/Class/AdminVar.php:411
+#: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430
 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411
-#: ../../library/Class/AdminVar.php:414
+#: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433
 msgid ""
 "Liste des extensions susceptibles d'être sélectionnées pour enrichir un "
 "contenu."
@@ -13441,6 +13596,7 @@ msgstr "Vous avez attein le nombre maximum de réservations"
 
 #: ../../library/Class/AdminVar.php:244
 ../../library/Class/AdminVar.php:245
 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244
+#: ../../library/Class/AdminVar.php:263
 #, php-format
 msgid ""
 "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera "
@@ -13449,6 +13605,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:342
 ../../library/Class/AdminVar.php:343
 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:346
+#: ../../library/Class/AdminVar.php:365
 msgid "Liste des tags à ajouter au rapport d'état du système"
 msgstr ""
 
@@ -13560,21 +13717,23 @@ msgid "Login"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:223
 #, php-format
 msgid "Login : %s"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:151
 ../../library/Class/AdminVar.php:152
+#: ../../library/Class/AdminVar.php:171
 msgid "Login ARTE VOD"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:213
 ../../library/Class/AdminVar.php:214
-#: ../../library/Class/AdminVar.php:211
+#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:230
 msgid "Login du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:217
 ../../library/Class/AdminVar.php:218
-#: ../../library/Class/AdminVar.php:215
+#: ../../library/Class/AdminVar.php:215 ../../library/Class/AdminVar.php:234
 msgid "Login du portail fourni par Premier-Chapitre."
 msgstr ""
 
@@ -13987,7 +14146,7 @@ msgid "Message au-dessous du champ de recherche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:183
 ../../library/Class/AdminVar.php:184
-#: ../../library/Class/AdminVar.php:181
+#: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:200
 msgid "Message d'avertissement affiché sur la popup d'emprunt"
 msgstr ""
 
@@ -14140,6 +14299,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 #: ../../application/modules/admin/controllers/IndexController.php:152
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../application/modules/admin/controllers/IndexController.php:143
 msgid "Mise à jour de la charte graphique"
 msgstr ""
 
@@ -14376,6 +14536,8 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:165
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
 #, fuzzy, php-format
 msgid "Modifier \"%s\""
 msgstr "Entrez votre identité S.V.P."
@@ -14533,6 +14695,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:93
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr ""
@@ -14881,7 +15044,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:357
 ../../library/Class/AdminVar.php:358
 #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360
-#: ../../library/Class/AdminVar.php:363
+#: ../../library/Class/AdminVar.php:363 ../../library/Class/AdminVar.php:382
 msgid ""
 "Modération des avis des bibliothécaires.<br />  Désactivé: affichage sans "
 "attente de validation<br /> Activé: affichage seulement après validation"
@@ -14889,7 +15052,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:356
 ../../library/Class/AdminVar.php:357
 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359
-#: ../../library/Class/AdminVar.php:362
+#: ../../library/Class/AdminVar.php:362 ../../library/Class/AdminVar.php:381
 msgid ""
 "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente "
 "de validation<br /> Activé : affichage seulement après validation."
@@ -15077,22 +15240,23 @@ msgid "Mot de passe"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:224
 #, fuzzy, php-format
 msgid "Mot de passe : %s"
 msgstr "Entrez votre identité S.V.P."
 
 #: ../../library/Class/AdminVar.php:179
 ../../library/Class/AdminVar.php:180
-#: ../../library/Class/AdminVar.php:177
+#: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:196
 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:199
 ../../library/Class/AdminVar.php:200
-#: ../../library/Class/AdminVar.php:197
+#: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:216
 msgid "Mot de passe de l'utilisateur Orphea"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:172
 ../../library/Class/AdminVar.php:173
-#: ../../library/Class/AdminVar.php:170
+#: ../../library/Class/AdminVar.php:170 ../../library/Class/AdminVar.php:189
 msgid "Mot de passe de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
@@ -15190,8 +15354,7 @@ msgstr ""
 msgid "N'envoie pas de données"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:160
-#: ../../library/Class/FRBR/Link.php:162
+#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162
 #: ../../library/Class/FRBR/Link.php:162
 msgid "N'est pas une url valide"
 msgstr ""
@@ -15280,6 +15443,7 @@ msgid "Ne pas créer de nouveau dossier"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:131
 ../../library/Class/AdminVar.php:132
+#: ../../library/Class/AdminVar.php:151
 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi"
 msgstr ""
 
@@ -15521,6 +15685,7 @@ msgid "Nom :"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:216
 #, php-format
 msgid "Nom : %s"
 msgstr ""
@@ -15533,12 +15698,14 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:175
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:194
+#: ../../application/modules/admin/controllers/IndexController.php:185
 #, fuzzy
 msgid "Nom d'utilisateur ou mot de passe invalide"
 msgstr "Limite du nombre de réservations atteinte"
 
 #: ../../library/Class/AdminVar.php:247
 ../../library/Class/AdminVar.php:248
 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247
+#: ../../library/Class/AdminVar.php:266
 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr"
 msgstr ""
 
@@ -15548,7 +15715,7 @@ msgid "Nom de famille"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:198
 ../../library/Class/AdminVar.php:199
-#: ../../library/Class/AdminVar.php:196
+#: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:215
 msgid "Nom de l'utilisateur Orphea"
 msgstr ""
 
@@ -15560,10 +15727,12 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:294
 ../../library/Class/AdminVar.php:295
 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:298
+#: ../../library/Class/AdminVar.php:317
 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:127
 #, php-format
 msgid "Nom de la permission à donner : \"%s\""
 msgstr ""
@@ -15573,6 +15742,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #: ../../application/modules/admin/views/scripts/index/index.phtml:43
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
+#: ../../application/modules/admin/views/scripts/index/index.phtml:26
 msgid "Nom du domaine"
 msgstr ""
 
@@ -15594,6 +15764,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:245
 ../../library/Class/AdminVar.php:246
 #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245
+#: ../../library/Class/AdminVar.php:264
 msgid "Nom du site"
 msgstr ""
 
@@ -15628,6 +15799,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:187
 #: ../../library/Class/Systeme/Report.php:190
+#: ../../library/Class/Systeme/Report.php:192
 msgid "Nombre d'albums"
 msgstr ""
 
@@ -15636,6 +15808,11 @@ msgstr ""
 msgid "Nombre d'albums présents : %d"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:366
+#, php-format
+msgid "Nombre d'albums présents dans Bokeh : %d"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 msgid "Nombre d'articles"
@@ -15679,6 +15856,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:289
 ../../library/Class/AdminVar.php:290
 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:293
+#: ../../library/Class/AdminVar.php:312
 msgid "Nombre d'avis maximum à afficher par utilisateur."
 msgstr ""
 
@@ -15757,19 +15935,19 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:348
 ../../library/Class/AdminVar.php:349
 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351
-#: ../../library/Class/AdminVar.php:354
+#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:373
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:350
 ../../library/Class/AdminVar.php:351
 #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353
-#: ../../library/Class/AdminVar.php:356
+#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:375
 msgid "Nombre de caractères maximum à afficher dans le bloc critiques."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:349
 ../../library/Class/AdminVar.php:350
 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352
-#: ../../library/Class/AdminVar.php:355
+#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:374
 msgid "Nombre de caractères minimum autorisé à saisir dans les avis."
 msgstr ""
 
@@ -15831,7 +16009,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:360
 ../../library/Class/AdminVar.php:361
 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363
-#: ../../library/Class/AdminVar.php:366
+#: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:385
 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr ""
 
@@ -15843,6 +16021,7 @@ msgid "Nombre de jours restant sur la licence"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:154
 msgid "Nombre de membres"
 msgstr ""
 
@@ -15857,6 +16036,11 @@ msgstr ""
 msgid "Nombre de notices par page"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:393
+#, php-format
+msgid "Nombre de notices présentes dans Bokeh : %d"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
 #: ../../library/Class/SessionActivity.php:482
 #: ../../library/Class/SessionActivity.php:482
@@ -15883,13 +16067,13 @@ msgid "Nombre de prêts simultanés"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:182
 ../../library/Class/AdminVar.php:183
-#: ../../library/Class/AdminVar.php:180
+#: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:199
 msgid ""
 "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:181
 ../../library/Class/AdminVar.php:182
-#: ../../library/Class/AdminVar.php:179
+#: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:198
 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom"
 msgstr ""
 
@@ -15965,6 +16149,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:253
 ../../library/Class/AdminVar.php:254
 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253
+#: ../../library/Class/AdminVar.php:272
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr ""
 
@@ -16026,6 +16211,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Non"
 msgstr ""
 
@@ -16504,6 +16690,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:295
 ../../library/Class/AdminVar.php:296
 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:299
+#: ../../library/Class/AdminVar.php:318
 msgid ""
 "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader."
 "readspeaker.com\">http://webreader.readspeaker.com</a>"
@@ -16793,6 +16980,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Oui"
 msgstr ""
 
@@ -16904,9 +17092,13 @@ msgstr ""
 msgid "Où le trouver dans mes bibliothèques favorites"
 msgstr ""
 
+#: ../../library/Class/Systeme/Report.php:83
+msgid "PHP"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:367
 ../../library/Class/AdminVar.php:368
 #: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370
-#: ../../library/Class/AdminVar.php:373
+#: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:392
 msgid "PIWIK authentication token for widgets"
 msgstr ""
 
@@ -16989,8 +17181,7 @@ msgstr ""
 msgid "Page: "
 msgstr ""
 
-#: ../../library/Class/NoticeHtml.php:82
-#: ../../library/Class/NoticeHtml.php:82
+#: ../../library/Class/NoticeHtml.php:82
 ../../library/Class/NoticeHtml.php:82
 msgid "Pagination"
 msgstr ""
 
@@ -17164,7 +17355,7 @@ msgid "Paramètrage du tableau des exemplaires"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:200
 ../../library/Class/AdminVar.php:201
-#: ../../library/Class/AdminVar.php:198
+#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:217
 msgid ""
 "Paramètre permettant de choisir la langue des des ressources. La liste des "
 "codes disponibles se trouve à cette adresse http://help.orphea.com/43/"
@@ -17181,6 +17372,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:9
 msgid "Paramètres du site"
 msgstr ""
 
@@ -17189,12 +17381,15 @@ msgid "Paramètres manquants dans la requête de suppression"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:110
 msgid "Paramétrage"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146
 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:166
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Numilog\">Numilog</a>"
@@ -17202,6 +17397,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:156
 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:157
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:176
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>"
@@ -17213,7 +17409,10 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:143
 ../../library/Class/AdminVar.php:137
 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:140
 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:143
-#: ../../library/Class/AdminVar.php:144
+#: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:156
+#: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:159
+#: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:163
 msgid "Paramétrage CVS"
 msgstr ""
 
@@ -17257,6 +17456,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:77
 #: ../../application/modules/admin/views/scripts/index/index.phtml:66
 #: ../../application/modules/admin/views/scripts/index/index.phtml:60
+#: ../../application/modules/admin/views/scripts/index/index.phtml:49
 msgid "Participez à la communauté"
 msgstr ""
 
@@ -17322,12 +17522,12 @@ msgid "Pas encore de nouveauté."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:214
 ../../library/Class/AdminVar.php:215
-#: ../../library/Class/AdminVar.php:212
+#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:231
 msgid "Password du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:218
 ../../library/Class/AdminVar.php:219
-#: ../../library/Class/AdminVar.php:216
+#: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:235
 msgid "Password du portail fourni par Premier-Chapitre"
 msgstr ""
 
@@ -17621,6 +17821,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:301
 msgid "Planification"
 msgstr ""
 
@@ -17643,6 +17844,7 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:326
 msgid "Plannifier la tâche"
 msgstr ""
 
@@ -17712,6 +17914,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171
 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460
 #: ../../library/Class/AdminVar.php:465 ../../library/Class/AdminVar.php:468
+#: ../../library/Class/AdminVar.php:487
 msgid "Portail"
 msgstr ""
 
@@ -17721,6 +17924,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187
 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239
+#: ../../library/Class/AdminVar.php:258
 msgid "Position"
 msgstr ""
 
@@ -17733,6 +17937,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:238
 ../../library/Class/AdminVar.php:239
 #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238
+#: ../../library/Class/AdminVar.php:257
 msgid "Position de la pagination en résultat de recherche"
 msgstr ""
 
@@ -17983,6 +18188,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:275
 ../../library/Class/AdminVar.php:276
 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275
+#: ../../library/Class/AdminVar.php:294
 msgid ""
 "Profil de la page de désinscription<br/>Par défaut : page d'accueil du "
 "portail"
@@ -18202,6 +18408,7 @@ msgid "Protocole HTTP obligatoire"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:26
+#: ../../application/modules/api/controllers/UserController.php:47
 msgid "Protocole HTTPS obligatoire"
 msgstr ""
 
@@ -18340,7 +18547,7 @@ msgid "Présentation"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:224
 ../../library/Class/AdminVar.php:225
-#: ../../library/Class/AdminVar.php:222
+#: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:241
 msgid ""
 "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par "
 "défaut 30 jours)."
@@ -18387,8 +18594,7 @@ msgstr ""
 msgid "Prêt"
 msgstr ""
 
-#: ../../library/Class/User/Cards.php:67
-#: ../../library/Class/User/Cards.php:67
+#: ../../library/Class/User/Cards.php:67
 ../../library/Class/User/Cards.php:67
 msgid "Prêt introuvable"
 msgstr ""
 
@@ -18916,6 +19122,7 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 msgid "Rejetée"
 msgstr ""
 
@@ -18951,6 +19158,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:336
 ../../library/Class/AdminVar.php:337
 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:340
+#: ../../library/Class/AdminVar.php:359
 #, php-format
 msgid ""
 "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous "
@@ -19558,8 +19766,7 @@ msgstr ""
 msgid "Réservation interdite pour l'abonné."
 msgstr ""
 
-#: ../../library/Class/User/Cards.php:77
-#: ../../library/Class/User/Cards.php:77
+#: ../../library/Class/User/Cards.php:77
 ../../library/Class/User/Cards.php:77
 #, fuzzy
 msgid "Réservation introuvable"
 msgstr "Limite du nombre de réservations atteinte"
@@ -19805,6 +20012,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:85
 #: ../../application/modules/admin/views/scripts/index/index.phtml:74
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
@@ -19977,7 +20185,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:177
 ../../library/Class/AdminVar.php:178
-#: ../../library/Class/AdminVar.php:175
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:194
 msgid "Serveur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
@@ -20093,13 +20301,13 @@ msgid "Session non trouvée"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:195
 ../../library/Class/AdminVar.php:196
-#: ../../library/Class/AdminVar.php:193
+#: ../../library/Class/AdminVar.php:193 ../../library/Class/AdminVar.php:212
 msgid "Sets du serveur OAI Cité de la Musique à moissonner"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:374
 ../../library/Class/AdminVar.php:375
 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377
-#: ../../library/Class/AdminVar.php:380
+#: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:399
 msgid ""
 "Seuil d'alerte en heures pour détecter que les traitements d'intégration "
 "prennent trop de temps. Par défaut: 2"
@@ -20191,6 +20399,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:79
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
 #: ../../application/modules/admin/views/scripts/index/index.phtml:62
+#: ../../application/modules/admin/views/scripts/index/index.phtml:51
 msgid "Site communautaire"
 msgstr ""
 
@@ -20650,6 +20859,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:298
 ../../library/Class/AdminVar.php:299
 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:302
+#: ../../library/Class/AdminVar.php:321
 msgid ""
 "Supprime l'affichage du lien d'enregistrement dans les différents "
 "formulaires de connexion et interdit l'enregistrement d'utilisateurs"
@@ -21117,6 +21327,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Album.php:205
 #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:55
 #: ../../library/ZendAfi/Form/Album.php:204
+#: ../../library/Class/Systeme/Report.php:95
 msgid "Tags"
 msgstr ""
 
@@ -21155,7 +21366,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396
 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398
-#: ../../library/Class/AdminVar.php:401
+#: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420
 msgid "Taille du dossier userfiles en méga octets."
 msgstr ""
 
@@ -21182,6 +21393,11 @@ msgstr ""
 msgid "Temps de traitement "
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:372
+#, php-format
+msgid "Tentative de vignettage de l'album \"%s\" : "
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:67
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:71
 #: ../../application/modules/admin/views/scripts/zone/_form.phtml:14
@@ -21309,6 +21525,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:297
 ../../library/Class/AdminVar.php:298
 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:301
+#: ../../library/Class/AdminVar.php:320
 msgid "Texte d'aide affiché dans la fiche abonné"
 msgstr ""
 
@@ -21334,6 +21551,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:280
 ../../library/Class/AdminVar.php:281
 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280
+#: ../../library/Class/AdminVar.php:299
 msgid ""
 "Texte de désinscription version HTML<br/>Le lien de désinscription est "
 "appliqué sur tout ce texte<br/>Par défaut : Je ne veux plus recevoir cette "
@@ -21342,6 +21560,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:278
 ../../library/Class/AdminVar.php:279
 #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278
+#: ../../library/Class/AdminVar.php:297
 msgid ""
 "Texte de désinscription version texte<br/>Le lien est inséré à la place de "
 "{{URL}}<br/>Par défaut : Lien pour se désinscrire de cette lettre "
@@ -21355,11 +21574,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:292
 ../../library/Class/AdminVar.php:293
 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:296
+#: ../../library/Class/AdminVar.php:315
 msgid "Texte visible après l'envoi d'e-mail de demande de réservation."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:291
 ../../library/Class/AdminVar.php:292
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:295
+#: ../../library/Class/AdminVar.php:314
 msgid "Texte visible par l'internaute après son inscription."
 msgstr ""
 
@@ -21402,6 +21623,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:89
 #: ../../library/Class/Systeme/Report.php:92
+#: ../../library/Class/Systeme/Report.php:94
 msgid "Thèmes utilisés"
 msgstr ""
 
@@ -21749,6 +21971,8 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
+#: ../../library/Class/Systeme/Report.php:127
+#: ../../library/Class/Systeme/Report.php:148
 msgid "Tous"
 msgstr ""
 
@@ -21972,6 +22196,7 @@ msgid "Transfert impossible, champ de fichier introuvable"
 msgstr ""
 
 #: ../../library/Class/Upload.php:312
 ../../library/Class/Upload.php:312
+#: ../../library/Class/Upload.php:313
 msgid ""
 "Transfert impossible, le répertoire de destination n'a pas pu être créé."
 msgstr ""
@@ -22043,6 +22268,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/RSS.php:29
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:382
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/Models.php:30
+#: ../../library/Class/Systeme/Report.php:162
 msgid "Type"
 msgstr ""
 
@@ -22067,7 +22293,7 @@ msgid "Type d'interface"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:188
 ../../library/Class/AdminVar.php:189
-#: ../../library/Class/AdminVar.php:186
+#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:205
 msgid "Type de SSO OneDTouch"
 msgstr ""
 
@@ -22469,9 +22695,15 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:161
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../library/Class/Systeme/Report.php:163
 msgid "URL"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:79
+#, php-format
+msgid "URL \"%s\" invalide"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 msgid "URL Objet A"
@@ -22483,11 +22715,13 @@ msgid "URL Objet B"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:238
 #, php-format
 msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
 #, php-format
 msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\""
 msgstr ""
@@ -22499,6 +22733,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:311
 ../../library/Class/AdminVar.php:312
 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:315
+#: ../../library/Class/AdminVar.php:334
 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk"
 msgstr ""
 
@@ -22528,13 +22763,25 @@ msgstr ""
 msgid "URL de la vignette"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:339
+msgid "URL de moissonnage générée pour la première page"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#, php-format
+msgid ""
+"URL de validation du ticket de connexion générée pour l'utilisateur \"%s\""
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:341
 ../../library/Class/AdminVar.php:342
 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:345
+#: ../../library/Class/AdminVar.php:364
 msgid "URL destinataire du rapport d'état du système (0 pour désactiver)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:307
 ../../library/Class/AdminVar.php:308
 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:311
+#: ../../library/Class/AdminVar.php:330
 msgid "URL du javascript Babelthèque à insérer dans l'OPAC"
 msgstr ""
 
@@ -22552,13 +22799,11 @@ msgstr ""
 msgid "URL du site web"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:159
-#: ../../library/Class/FRBR/Link.php:159
+#: ../../library/Class/FRBR/Link.php:159
 ../../library/Class/FRBR/Link.php:159
 msgid "URL objet A est requis"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:161
-#: ../../library/Class/FRBR/Link.php:161
+#: ../../library/Class/FRBR/Link.php:161
 ../../library/Class/FRBR/Link.php:161
 msgid "URL objet B est requis"
 msgstr ""
 
@@ -22569,6 +22814,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:87
 #: ../../library/Class/Systeme/Report.php:90
+#: ../../library/Class/Systeme/Report.php:92
 msgid "URL principale"
 msgstr ""
 
@@ -22640,10 +22886,9 @@ msgid "Un libellé est requis"
 msgstr ""
 
 #: ../../library/Class/Users.php:1142
 ../../library/Class/Users.php:1142
-#: ../../library/Class/User/LostPass.php:110
-#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1137
-#: ../../library/Class/Users.php:1158
+#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133
+#: ../../library/Class/Users.php:1137 ../../library/Class/Users.php:1158
 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion."
 msgstr ""
 
@@ -22850,6 +23095,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:316
 ../../library/Class/AdminVar.php:317
 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:320
+#: ../../library/Class/AdminVar.php:339
 msgid "Url d'import d'un agenda TYPO3"
 msgstr ""
 
@@ -22859,12 +23105,14 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:246
 ../../library/Class/AdminVar.php:247
 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246
+#: ../../library/Class/AdminVar.php:265
 msgid "Url de recherche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:386
 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386
 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:394
+#: ../../library/Class/AdminVar.php:413
 msgid "Url du connecteur Le Social"
 msgstr ""
 
@@ -22874,16 +23122,18 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:232
 ../../library/Class/AdminVar.php:233
 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232
+#: ../../library/Class/AdminVar.php:251
 msgid "Url du proxy Redmine"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:174
 ../../library/Class/AdminVar.php:175
-#: ../../library/Class/AdminVar.php:172
+#: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:191
 msgid "Url du serveur PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:231
 ../../library/Class/AdminVar.php:232
 #: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231
+#: ../../library/Class/AdminVar.php:250
 msgid "Url du serveur redmine"
 msgstr ""
 
@@ -22917,7 +23167,7 @@ msgid "Utilisateur"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:178
 ../../library/Class/AdminVar.php:179
-#: ../../library/Class/AdminVar.php:176
+#: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:195
 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
@@ -22934,6 +23184,7 @@ msgid "Utilisateur courant : %s"
 msgstr "Limite du nombre de réservations atteinte"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
 #, fuzzy
 msgid "Utilisateur créé pour ce test"
 msgstr "Limite du nombre de réservations atteinte"
@@ -22953,12 +23204,14 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:170
 #: ../../application/modules/admin/controllers/UsersController.php:117
 #: ../../application/modules/admin/controllers/IndexController.php:178
+#: ../../application/modules/admin/controllers/IndexController.php:169
 #, fuzzy
 msgid "Utilisateur invalide"
 msgstr "Limite du nombre de réservations atteinte"
 
 #: ../../application/modules/api/controllers/UserController.php:39
 #: ../../application/modules/api/controllers/UserController.php:39
+#: ../../application/modules/api/controllers/UserController.php:60
 #, fuzzy
 msgid "Utilisateur non trouvé"
 msgstr "Limite du nombre de réservations atteinte"
@@ -23149,6 +23402,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:110
+#: ../../application/modules/admin/controllers/IndexController.php:101
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr ""
@@ -23182,6 +23436,7 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:210
 #: ../../library/Class/Systeme/Report.php:72
 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:207
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:226
 msgid "Version"
 msgstr ""
 
@@ -23205,7 +23460,7 @@ msgid "Version de : \"%s\""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:208
 ../../library/Class/AdminVar.php:209
-#: ../../library/Class/AdminVar.php:206
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:225
 msgid "Version de Kidilangues."
 msgstr ""
 
@@ -23263,10 +23518,12 @@ msgid "Versions de l'article : \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:283
 msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:118
 msgid ""
 "Veuillez activer la ressource pour pouvoir gérer les droits d'accès des "
 "groupes"
@@ -23283,6 +23540,7 @@ msgid "Veuillez choisir une notice"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:191
 msgid ""
 "Veuillez configurer les droits de cette ressource pour obtenir une connexion "
 "SSO"
@@ -23320,6 +23578,7 @@ msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:81
+#: ../../application/modules/admin/controllers/IndexController.php:72
 msgid "Veuillez renseigner le paramètre \"cle\"."
 msgstr ""
 
@@ -23363,6 +23622,12 @@ msgstr ""
 msgid "Veuillez sélectionner une boite"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:108
+msgid ""
+"Veuillez vérifier le fichier config.php de la ressource pour pouvoir gérer "
+"le paramétrage"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 msgid "Vider"
@@ -23425,6 +23690,10 @@ msgstr ""
 msgid "Vignette + frame + lien vers le document"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:406
+msgid "Vignette de l'album : "
+msgstr ""
+
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #, php-format
@@ -23487,6 +23756,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 #: ../../application/modules/opac/controllers/AbonneController.php:463
 #: ../../application/modules/opac/controllers/AbonneController.php:464
+#: ../../library/Class/Systeme/Report.php:226
 msgid "Ville"
 msgstr ""
 
@@ -23570,6 +23840,7 @@ msgstr ""
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:265
 msgid "Voir l'album"
 msgstr ""
 
@@ -23650,6 +23921,7 @@ msgid "Voir le site"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:360
 msgid "Voir les albums"
 msgstr ""
 
@@ -23674,6 +23946,11 @@ msgstr ""
 msgid "Voir les fils RSS sélectionnés"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:386
+#, fuzzy
+msgid "Voir les notices"
+msgstr "Vous avez attein le nombre maximum de réservations"
+
 #: ../../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
@@ -23911,7 +24188,7 @@ msgid "Votre compte n'a pas d'email. Pour continuer vous devez le renseigner."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:184
 ../../library/Class/AdminVar.php:185
-#: ../../library/Class/AdminVar.php:182
+#: ../../library/Class/AdminVar.php:182 ../../library/Class/AdminVar.php:201
 msgid ""
 "Votre compte sera mis à jour dans un délai de 15 minutes après le retour "
 "anticipé du document."
@@ -23953,10 +24230,9 @@ msgid "Votre fiche"
 msgstr ""
 
 #: ../../library/Class/Users.php:1133
 ../../library/Class/Users.php:1133
-#: ../../library/Class/User/LostPass.php:102
-#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121
-#: ../../library/Class/Users.php:1124 ../../library/Class/Users.php:1128
-#: ../../library/Class/Users.php:1149
+#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142
+#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124
+#: ../../library/Class/Users.php:1128 ../../library/Class/Users.php:1149
 #, fuzzy, php-format
 msgid "Votre identifiant : %s\n"
 msgstr "Entrez votre identité S.V.P."
@@ -24007,10 +24283,9 @@ msgid "Votre message : "
 msgstr "Entrez votre identité S.V.P."
 
 #: ../../library/Class/Users.php:1134
 ../../library/Class/Users.php:1134
-#: ../../library/Class/User/LostPass.php:103
-#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122
-#: ../../library/Class/Users.php:1125 ../../library/Class/Users.php:1129
-#: ../../library/Class/Users.php:1150
+#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143
+#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125
+#: ../../library/Class/Users.php:1129 ../../library/Class/Users.php:1150
 #, fuzzy, php-format
 msgid "Votre mot de passe : %s\n"
 msgstr "Entrez votre identité S.V.P."
@@ -24227,10 +24502,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:"
 msgstr ""
 
 #: ../../library/Class/Users.php:1132
 ../../library/Class/Users.php:1132
-#: ../../library/Class/User/LostPass.php:101
-#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120
-#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1127
-#: ../../library/Class/Users.php:1148
+#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141
+#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123
+#: ../../library/Class/Users.php:1127 ../../library/Class/Users.php:1148
 msgid "Vous avez fait une demande de mot de passe sur le portail."
 msgstr ""
 
@@ -24597,6 +24871,8 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:151
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:178
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:156
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:183
 #, php-format
 msgid "Vous n'avez pas la permission \"%s\""
 msgstr ""
@@ -24633,6 +24909,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:165
 #: ../../application/modules/admin/controllers/IndexController.php:173
+#: ../../application/modules/admin/controllers/IndexController.php:164
 msgid ""
 "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité."
 msgstr ""
@@ -24831,6 +25108,8 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:190
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:198
+#: ../../application/modules/admin/controllers/IndexController.php:177
+#: ../../application/modules/admin/controllers/IndexController.php:189
 #, php-format
 msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\""
 msgstr ""
@@ -24847,11 +25126,13 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
 msgid "Vérifiée"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:334
 ../../library/Class/AdminVar.php:335
 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:338
+#: ../../library/Class/AdminVar.php:357
 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites"
 msgstr ""
 
@@ -24865,6 +25146,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:81
 #: ../../application/modules/admin/views/scripts/index/index.phtml:70
 #: ../../application/modules/admin/views/scripts/index/index.phtml:64
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Wiki Bokeh"
 msgstr ""
 
@@ -25615,8 +25897,7 @@ msgstr ""
 msgid "jusqu'à"
 msgstr ""
 
-#: ../../library/Class/Ouverture.php:180
-#: ../../library/Class/Ouverture.php:180
+#: ../../library/Class/Ouverture.php:180
 ../../library/Class/Ouverture.php:180
 #, php-format
 msgid "le %s"
 msgstr ""
@@ -26507,6 +26788,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:48
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:31
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 msgid "» Modifier «"
 msgstr ""
 
@@ -26561,6 +26843,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:62
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:135
 #, php-format
 msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\""
 msgstr ""
@@ -26603,12 +26886,14 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:124
 #, php-format
 msgid "Échec de la suggestion, le webservice a répondu \"%s\""
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:121
 msgid "Échec de la suggestion, une erreur inconnue est survenue."
 msgstr ""
 
@@ -26788,10 +27073,6 @@ msgstr ""
 #~ msgid "'%value%' contains not only digit characters"
 #~ msgstr "'%value%' contient moins de %min% caractères"
 
-#, fuzzy
-#~ msgid "Langue de base : %s"
-#~ msgstr "Entrez votre identité S.V.P."
-
 #~ msgid "Reservation limit reached for this document type"
 #~ msgstr "Limite du nombre de réservations atteinte pour ce type de document"
 
diff --git a/library/translation/fr.pot b/library/translation/fr.pot
index 5c8b90ed2c2b083f4fe35fd04fb76fe2aed13cb4..03f5ce3d85e7e39afb39497a726d364dea27787a 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: 2018-03-26 12:00+0200\n"
+"POT-Creation-Date: 2018-04-09 14:17+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"
@@ -569,6 +569,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 #: ../../application/modules/opac/controllers/AbonneController.php:461
 #: ../../application/modules/opac/controllers/AbonneController.php:462
+#: ../../library/Class/Systeme/Report.php:224
 msgid "Adresse"
 msgstr ""
 
@@ -666,6 +667,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 #: ../../application/modules/opac/controllers/AbonneController.php:463
 #: ../../application/modules/opac/controllers/AbonneController.php:464
+#: ../../library/Class/Systeme/Report.php:226
 msgid "Ville"
 msgstr ""
 
@@ -2026,6 +2028,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Album.php:205
 #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:55
 #: ../../library/ZendAfi/Form/Album.php:204
+#: ../../library/Class/Systeme/Report.php:95
 msgid "Tags"
 msgstr ""
 
@@ -2140,6 +2143,7 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:210
 #: ../../library/Class/Systeme/Report.php:72
 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:207
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:226
 msgid "Version"
 msgstr ""
 
@@ -2153,6 +2157,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:9
 msgid "Paramètres du site"
 msgstr ""
 
@@ -2194,6 +2199,7 @@ msgstr ""
 #: ../../application/modules/opac/controllers/RssController.php:219
 #: ../../application/modules/admin/views/scripts/index/index.phtml:46
 #: ../../application/modules/admin/views/scripts/index/index.phtml:40
+#: ../../application/modules/admin/views/scripts/index/index.phtml:29
 msgid "Données en attente de modération"
 msgstr ""
 
@@ -2662,6 +2668,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15
 #: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9
 #: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29
+#: ../../library/Class/Systeme/Report.php:189
 msgid "Libellé"
 msgstr ""
 
@@ -5911,6 +5918,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36
 #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51
+#: ../../library/Class/Systeme/Report.php:190
 msgid "Activé"
 msgstr ""
 
@@ -6003,6 +6011,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:32
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:15
+#: ../../application/modules/admin/views/scripts/index/index.phtml:4
 msgid "Démonstrations vidéos"
 msgstr ""
 
@@ -6011,6 +6020,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:48
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:31
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 msgid "» Modifier «"
 msgstr ""
 
@@ -6019,6 +6029,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
 #: ../../application/modules/admin/views/scripts/index/index.phtml:42
 #: ../../application/modules/admin/views/scripts/index/index.phtml:36
+#: ../../application/modules/admin/views/scripts/index/index.phtml:25
 msgid "Etat du site"
 msgstr ""
 
@@ -6027,6 +6038,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #: ../../application/modules/admin/views/scripts/index/index.phtml:43
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
+#: ../../application/modules/admin/views/scripts/index/index.phtml:26
 msgid "Nom du domaine"
 msgstr ""
 
@@ -6035,6 +6047,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:77
 #: ../../application/modules/admin/views/scripts/index/index.phtml:66
 #: ../../application/modules/admin/views/scripts/index/index.phtml:60
+#: ../../application/modules/admin/views/scripts/index/index.phtml:49
 msgid "Participez à la communauté"
 msgstr ""
 
@@ -6043,6 +6056,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:79
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
 #: ../../application/modules/admin/views/scripts/index/index.phtml:62
+#: ../../application/modules/admin/views/scripts/index/index.phtml:51
 msgid "Site communautaire"
 msgstr ""
 
@@ -6051,6 +6065,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:80
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
 #: ../../application/modules/admin/views/scripts/index/index.phtml:63
+#: ../../application/modules/admin/views/scripts/index/index.phtml:52
 msgid "Google group Bokeh"
 msgstr ""
 
@@ -6059,6 +6074,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:81
 #: ../../application/modules/admin/views/scripts/index/index.phtml:70
 #: ../../application/modules/admin/views/scripts/index/index.phtml:64
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Wiki Bokeh"
 msgstr ""
 
@@ -6067,6 +6083,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:82
 #: ../../application/modules/admin/views/scripts/index/index.phtml:71
 #: ../../application/modules/admin/views/scripts/index/index.phtml:65
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 msgid "Code source"
 msgstr ""
 
@@ -6075,6 +6092,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:85
 #: ../../application/modules/admin/views/scripts/index/index.phtml:74
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
@@ -6083,6 +6101,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:86
 #: ../../application/modules/admin/views/scripts/index/index.phtml:75
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
+#: ../../application/modules/admin/views/scripts/index/index.phtml:58
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -6620,6 +6639,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:161
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../library/Class/Systeme/Report.php:163
 msgid "URL"
 msgstr ""
 
@@ -7311,6 +7331,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/RSS.php:29
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:382
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/Models.php:30
+#: ../../library/Class/Systeme/Report.php:162
 msgid "Type"
 msgstr ""
 
@@ -7407,6 +7428,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:306
 msgid "Dernière exécution"
 msgstr ""
 
@@ -7498,6 +7520,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Oui"
 msgstr ""
 
@@ -7527,6 +7550,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Non"
 msgstr ""
 
@@ -8039,6 +8063,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:64
 #: ../../application/modules/admin/controllers/IndexController.php:64
+#: ../../application/modules/admin/controllers/IndexController.php:55
 msgid "Gestion des variables"
 msgstr ""
 
@@ -8046,6 +8071,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:93
 #, php-format
 msgid "Modifier la variable: %s"
 msgstr ""
@@ -8054,6 +8080,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:110
+#: ../../application/modules/admin/controllers/IndexController.php:101
 #, php-format
 msgid "Variable %s sauvegardée"
 msgstr ""
@@ -8062,6 +8089,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:119
+#: ../../application/modules/admin/controllers/IndexController.php:110
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
@@ -8070,6 +8098,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:141
+#: ../../application/modules/admin/controllers/IndexController.php:132
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
@@ -8081,6 +8110,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 #: ../../application/modules/admin/controllers/IndexController.php:152
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../application/modules/admin/controllers/IndexController.php:143
 msgid "Mise à jour de la charte graphique"
 msgstr ""
 
@@ -8088,6 +8118,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:163
+#: ../../application/modules/admin/controllers/IndexController.php:154
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
@@ -8095,6 +8126,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:164
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -8861,6 +8893,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171
 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460
 #: ../../library/Class/AdminVar.php:465 ../../library/Class/AdminVar.php:468
+#: ../../library/Class/AdminVar.php:487
 msgid "Portail"
 msgstr ""
 
@@ -11002,21 +11035,25 @@ msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:29
 #: ../../application/modules/api/controllers/UserController.php:29
+#: ../../application/modules/api/controllers/UserController.php:50
 msgid "Autorisation non spécifiée"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:33
 #: ../../application/modules/api/controllers/UserController.php:33
+#: ../../application/modules/api/controllers/UserController.php:54
 msgid "Jeton d'autorisation non fourni"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:36
 #: ../../application/modules/api/controllers/UserController.php:36
+#: ../../application/modules/api/controllers/UserController.php:57
 msgid "Jeton d'autorisation invalide"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:39
 #: ../../application/modules/api/controllers/UserController.php:39
+#: ../../application/modules/api/controllers/UserController.php:60
 msgid "Utilisateur non trouvé"
 msgstr ""
 
@@ -11168,6 +11205,7 @@ msgstr ""
 #: ../../library/Class/Systeme/Report.php:222
 #: ../../application/modules/telephone/views/scripts/recherche/bibliotheque.phtml:4
 #: ../../library/Class/Systeme/Report.php:225
+#: ../../library/Class/Systeme/Report.php:227
 msgid "Coordonnées"
 msgstr ""
 
@@ -11430,6 +11468,8 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
+#: ../../library/Class/Systeme/Report.php:127
+#: ../../library/Class/Systeme/Report.php:148
 msgid "Tous"
 msgstr ""
 
@@ -11458,13 +11498,11 @@ msgstr ""
 msgid "Rechercher"
 msgstr ""
 
-#: ../../library/Class/User/Cards.php:67
-#: ../../library/Class/User/Cards.php:67
+#: ../../library/Class/User/Cards.php:67
 ../../library/Class/User/Cards.php:67
 msgid "Prêt introuvable"
 msgstr ""
 
-#: ../../library/Class/User/Cards.php:77
-#: ../../library/Class/User/Cards.php:77
+#: ../../library/Class/User/Cards.php:77
 ../../library/Class/User/Cards.php:77
 msgid "Réservation introuvable"
 msgstr ""
 
@@ -11579,8 +11617,7 @@ msgstr ""
 msgid "Mise à niveau de la base effectuée avec succès"
 msgstr ""
 
-#: ../../library/Class/NoticeOAI.php:230
-#: ../../library/Class/NoticeOAI.php:230
+#: ../../library/Class/NoticeOAI.php:230
 ../../library/Class/NoticeOAI.php:230
 msgid "Il n'y aucun mot assez significatif pour la recherche"
 msgstr ""
 
@@ -11663,6 +11700,7 @@ msgid "Impossible d'écrire le fichier sur le serveur au chemin [%s]"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:129
 ../../library/Class/AdminVar.php:130
+#: ../../library/Class/AdminVar.php:149
 msgid ""
 "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au "
 "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -11670,14 +11708,17 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:131
 ../../library/Class/AdminVar.php:132
+#: ../../library/Class/AdminVar.php:151
 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:133
 ../../library/Class/AdminVar.php:134
+#: ../../library/Class/AdminVar.php:153
 msgid "Activer ou désactiver la bibliothèque numérique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:134
 ../../library/Class/AdminVar.php:135
+#: ../../library/Class/AdminVar.php:154
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
 "de la bibliothèque numérique"
@@ -11689,202 +11730,214 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:143
 ../../library/Class/AdminVar.php:137
 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:140
 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:143
-#: ../../library/Class/AdminVar.php:144
+#: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:156
+#: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:159
+#: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:163
 msgid "Paramétrage CVS"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:138
 ../../library/Class/AdminVar.php:139
+#: ../../library/Class/AdminVar.php:158
 msgid "Libellé de regroupement des abonnés"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146
 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:166
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Numilog\">Numilog</a>"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:148
 ../../library/Class/AdminVar.php:149
+#: ../../library/Class/AdminVar.php:168
 msgid "Adresse du serveur OAI Cyberlibris"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:149
 ../../library/Class/AdminVar.php:150
+#: ../../library/Class/AdminVar.php:169
 msgid "Identifiant SSO Cyberlibris"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:151
 ../../library/Class/AdminVar.php:152
+#: ../../library/Class/AdminVar.php:171
 msgid "Login ARTE VOD"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:152
 ../../library/Class/AdminVar.php:153
+#: ../../library/Class/AdminVar.php:172
 msgid "Clé ARTE VOD"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:153
 ../../library/Class/AdminVar.php:154
+#: ../../library/Class/AdminVar.php:173
 msgid "Clé ARTE VOD Single Sign-On"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:156
 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:157
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:176
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:163
 ../../library/Class/AdminVar.php:164
-#: ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:180
 msgid "ID client Jamendo"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:164
 ../../library/Class/AdminVar.php:165
-#: ../../library/Class/AdminVar.php:162
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:181
 msgid "ID client SoundCloud"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:166
 ../../library/Class/AdminVar.php:167
-#: ../../library/Class/AdminVar.php:164
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:183
 msgid "Clé de sécurité Vodeclic"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:167
 ../../library/Class/AdminVar.php:168
-#: ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:184
 msgid "Identifiant partenaire Vodeclic"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:168
 ../../library/Class/AdminVar.php:169
-#: ../../library/Class/AdminVar.php:166
+#: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:185
 msgid "Identifiant code bibliothèque Vodeclic"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:170
 ../../library/Class/AdminVar.php:171
-#: ../../library/Class/AdminVar.php:168
+#: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:187
 msgid "Activation du PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:171
 ../../library/Class/AdminVar.php:172
-#: ../../library/Class/AdminVar.php:169
+#: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:188
 msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:172
 ../../library/Class/AdminVar.php:173
-#: ../../library/Class/AdminVar.php:170
+#: ../../library/Class/AdminVar.php:170 ../../library/Class/AdminVar.php:189
 msgid "Mot de passe de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:173
 ../../library/Class/AdminVar.php:174
-#: ../../library/Class/AdminVar.php:171
+#: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:190
 msgid "Contracteur du PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:174
 ../../library/Class/AdminVar.php:175
-#: ../../library/Class/AdminVar.php:172
+#: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:191
 msgid "Url du serveur PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:175
 ../../library/Class/AdminVar.php:176
-#: ../../library/Class/AdminVar.php:173
+#: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:192
 msgid ""
 "Liste des adresses IP publiques autorisées pour la consultation des documents"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:177
 ../../library/Class/AdminVar.php:178
-#: ../../library/Class/AdminVar.php:175
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:194
 msgid "Serveur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:178
 ../../library/Class/AdminVar.php:179
-#: ../../library/Class/AdminVar.php:176
+#: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:195
 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:179
 ../../library/Class/AdminVar.php:180
-#: ../../library/Class/AdminVar.php:177
+#: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:196
 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:180
 ../../library/Class/AdminVar.php:181
-#: ../../library/Class/AdminVar.php:178
+#: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:197
 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:181
 ../../library/Class/AdminVar.php:182
-#: ../../library/Class/AdminVar.php:179
+#: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:198
 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:182
 ../../library/Class/AdminVar.php:183
-#: ../../library/Class/AdminVar.php:180
+#: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:199
 msgid ""
 "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:183
 ../../library/Class/AdminVar.php:184
-#: ../../library/Class/AdminVar.php:181
+#: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:200
 msgid "Message d'avertissement affiché sur la popup d'emprunt"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:184
 ../../library/Class/AdminVar.php:185
-#: ../../library/Class/AdminVar.php:182
+#: ../../library/Class/AdminVar.php:182 ../../library/Class/AdminVar.php:201
 msgid ""
 "Votre compte sera mis à jour dans un délai de 15 minutes après le retour "
 "anticipé du document."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:185
 ../../library/Class/AdminVar.php:186
-#: ../../library/Class/AdminVar.php:183
+#: ../../library/Class/AdminVar.php:183 ../../library/Class/AdminVar.php:202
 msgid ""
 "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie "
 "par MyCOW.EU. Elle active la ressource numérique dans le portail."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:187
 ../../library/Class/AdminVar.php:188
-#: ../../library/Class/AdminVar.php:185
+#: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:204
 msgid "Adresse du serveur OAI 1D touch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:188
 ../../library/Class/AdminVar.php:189
-#: ../../library/Class/AdminVar.php:186
+#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:205
 msgid "Type de SSO OneDTouch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:192
 ../../library/Class/AdminVar.php:193
-#: ../../library/Class/AdminVar.php:190
+#: ../../library/Class/AdminVar.php:190 ../../library/Class/AdminVar.php:209
 msgid "Identifiant du portail chez 1D touch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:193
 ../../library/Class/AdminVar.php:194
-#: ../../library/Class/AdminVar.php:191
+#: ../../library/Class/AdminVar.php:191 ../../library/Class/AdminVar.php:210
 msgid "Adresse du serveur OAI Cité de la Musique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:194
 ../../library/Class/AdminVar.php:195
-#: ../../library/Class/AdminVar.php:192
+#: ../../library/Class/AdminVar.php:192 ../../library/Class/AdminVar.php:211
 msgid "Identifiant d'accès au serveur OAI Cité de la Musique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:195
 ../../library/Class/AdminVar.php:196
-#: ../../library/Class/AdminVar.php:193
+#: ../../library/Class/AdminVar.php:193 ../../library/Class/AdminVar.php:212
 msgid "Sets du serveur OAI Cité de la Musique à moissonner"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:197
 ../../library/Class/AdminVar.php:198
-#: ../../library/Class/AdminVar.php:195
+#: ../../library/Class/AdminVar.php:195 ../../library/Class/AdminVar.php:214
 msgid "Adresse du serveur Orphea"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:198
 ../../library/Class/AdminVar.php:199
-#: ../../library/Class/AdminVar.php:196
+#: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:215
 msgid "Nom de l'utilisateur Orphea"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:199
 ../../library/Class/AdminVar.php:200
-#: ../../library/Class/AdminVar.php:197
+#: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:216
 msgid "Mot de passe de l'utilisateur Orphea"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:200
 ../../library/Class/AdminVar.php:201
-#: ../../library/Class/AdminVar.php:198
+#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:217
 msgid ""
 "Paramètre permettant de choisir la langue des des ressources. La liste des "
 "codes disponibles se trouve à cette adresse http://help.orphea.com/43/"
@@ -11892,80 +11945,80 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:202
 ../../library/Class/AdminVar.php:203
-#: ../../library/Class/AdminVar.php:200
+#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:219
 msgid "Activation de la ressource numérique PlanetNemo"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:204
 ../../library/Class/AdminVar.php:205
-#: ../../library/Class/AdminVar.php:202
+#: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:221
 msgid "Adresse du serveur de la ressource numérique Orthodidacte"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:206
 ../../library/Class/AdminVar.php:207
-#: ../../library/Class/AdminVar.php:204
+#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:223
 msgid "Domaine utilisée par le serveur lectura pour authentification"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:208
 ../../library/Class/AdminVar.php:209
-#: ../../library/Class/AdminVar.php:206
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:225
 msgid "Version de Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:211
 ../../library/Class/AdminVar.php:212
-#: ../../library/Class/AdminVar.php:209
+#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:228
 msgid ""
 "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par "
 "Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:212
 ../../library/Class/AdminVar.php:213
-#: ../../library/Class/AdminVar.php:210
+#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:229
 msgid ""
 "Clé d'identification Kidilangues pour le portail. Cette clé doit être "
 "fournie par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:213
 ../../library/Class/AdminVar.php:214
-#: ../../library/Class/AdminVar.php:211
+#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:230
 msgid "Login du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:214
 ../../library/Class/AdminVar.php:215
-#: ../../library/Class/AdminVar.php:212
+#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:231
 msgid "Password du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:216
 ../../library/Class/AdminVar.php:217
-#: ../../library/Class/AdminVar.php:214
+#: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:233
 msgid ""
 "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit "
 "être fournie par Premier-Chapitre."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:217
 ../../library/Class/AdminVar.php:218
-#: ../../library/Class/AdminVar.php:215
+#: ../../library/Class/AdminVar.php:215 ../../library/Class/AdminVar.php:234
 msgid "Login du portail fourni par Premier-Chapitre."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:218
 ../../library/Class/AdminVar.php:219
-#: ../../library/Class/AdminVar.php:216
+#: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:235
 msgid "Password du portail fourni par Premier-Chapitre"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:224
 ../../library/Class/AdminVar.php:225
-#: ../../library/Class/AdminVar.php:222
+#: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:241
 msgid ""
 "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par "
 "défaut 30 jours)."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:225
 ../../library/Class/AdminVar.php:226
-#: ../../library/Class/AdminVar.php:223
+#: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:242
 msgid "Désactivation des suggestions d'achats"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:226
 ../../library/Class/AdminVar.php:227
-#: ../../library/Class/AdminVar.php:224
+#: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:243
 msgid ""
 "Les utilisateurs peuvent sélectionner des bibliothèques favorites pour leurs "
 "recherche"
@@ -11973,21 +12026,25 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:231
 ../../library/Class/AdminVar.php:232
 #: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231
+#: ../../library/Class/AdminVar.php:250
 msgid "Url du serveur redmine"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:232
 ../../library/Class/AdminVar.php:233
 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232
+#: ../../library/Class/AdminVar.php:251
 msgid "Url du proxy Redmine"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:233
 ../../library/Class/AdminVar.php:234
 #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233
+#: ../../library/Class/AdminVar.php:252
 msgid "Identifiant du project Redmine"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:238
 ../../library/Class/AdminVar.php:239
 #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238
+#: ../../library/Class/AdminVar.php:257
 msgid "Position de la pagination en résultat de recherche"
 msgstr ""
 
@@ -11997,11 +12054,13 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187
 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239
+#: ../../library/Class/AdminVar.php:258
 msgid "Position"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:241
 ../../library/Class/AdminVar.php:242
 #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241
+#: ../../library/Class/AdminVar.php:260
 msgid ""
 "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" "
 "entre les mots saisis"
@@ -12009,6 +12068,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:242
 ../../library/Class/AdminVar.php:243
 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242
+#: ../../library/Class/AdminVar.php:261
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche au survol de la "
 "couverture du document, calculé en temps réel."
@@ -12016,6 +12076,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:243
 ../../library/Class/AdminVar.php:244
 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243
+#: ../../library/Class/AdminVar.php:262
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche. Calculé grâce "
 "à la facette \"En rayon\"."
@@ -12023,6 +12084,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:244
 ../../library/Class/AdminVar.php:245
 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244
+#: ../../library/Class/AdminVar.php:263
 #, php-format
 msgid ""
 "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera "
@@ -12031,21 +12093,25 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:245
 ../../library/Class/AdminVar.php:246
 #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245
+#: ../../library/Class/AdminVar.php:264
 msgid "Nom du site"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:246
 ../../library/Class/AdminVar.php:247
 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246
+#: ../../library/Class/AdminVar.php:265
 msgid "Url de recherche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:247
 ../../library/Class/AdminVar.php:248
 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247
+#: ../../library/Class/AdminVar.php:266
 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:252
 ../../library/Class/AdminVar.php:253
 #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252
+#: ../../library/Class/AdminVar.php:271
 msgid ""
 "Le gestionnaire de contenu affiche les articles sous forme de liste paginée "
 "au lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12054,16 +12120,19 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:253
 ../../library/Class/AdminVar.php:254
 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253
+#: ../../library/Class/AdminVar.php:272
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:255
 ../../library/Class/AdminVar.php:256
 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255
+#: ../../library/Class/AdminVar.php:274
 msgid "Activation des formulaires"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:265
 ../../library/Class/AdminVar.php:266
 #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265
+#: ../../library/Class/AdminVar.php:284
 msgid ""
 "Contenu de l'email de notification d'article en attente de validation. "
 "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, "
@@ -12072,6 +12141,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:266
 ../../library/Class/AdminVar.php:267
 #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266
+#: ../../library/Class/AdminVar.php:285
 msgid ""
 "Contenu de l'email de notification de refus d'un article à valider. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -12079,6 +12149,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:267
 ../../library/Class/AdminVar.php:268
 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267
+#: ../../library/Class/AdminVar.php:286
 msgid ""
 "Contenu de l'email de notification de validation d'un article. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -12086,6 +12157,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:275
 ../../library/Class/AdminVar.php:276
 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275
+#: ../../library/Class/AdminVar.php:294
 msgid ""
 "Profil de la page de désinscription<br/>Par défaut : page d'accueil du "
 "portail"
@@ -12093,6 +12165,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:278
 ../../library/Class/AdminVar.php:279
 #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278
+#: ../../library/Class/AdminVar.php:297
 msgid ""
 "Texte de désinscription version texte<br/>Le lien est inséré à la place de "
 "{{URL}}<br/>Par défaut : Lien pour se désinscrire de cette lettre "
@@ -12101,11 +12174,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:279
 ../../library/Class/AdminVar.php:280
 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279
+#: ../../library/Class/AdminVar.php:298
 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:280
 ../../library/Class/AdminVar.php:281
 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280
+#: ../../library/Class/AdminVar.php:299
 msgid ""
 "Texte de désinscription version HTML<br/>Le lien de désinscription est "
 "appliqué sur tout ce texte<br/>Par défaut : Je ne veux plus recevoir cette "
@@ -12114,11 +12189,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:281
 ../../library/Class/AdminVar.php:282
 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281
+#: ../../library/Class/AdminVar.php:300
 msgid "Je ne veux plus recevoir cette lettre d'information"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:288
 ../../library/Class/AdminVar.php:289
 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288
+#: ../../library/Class/AdminVar.php:307
 msgid ""
 "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et "
 "la configuration appropriée du serveur Web"
@@ -12126,11 +12203,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:289
 ../../library/Class/AdminVar.php:290
 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:293
+#: ../../library/Class/AdminVar.php:312
 msgid "Nombre d'avis maximum à afficher par utilisateur."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:290
 ../../library/Class/AdminVar.php:291
 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:294
+#: ../../library/Class/AdminVar.php:313
 msgid ""
 "Clef d'activation pour le plan d'accès google map. <a target=\"_blank\" href="
 "\"http://code.google.com/apis/maps/signup.html\">Obtenir la clé google map</"
@@ -12139,26 +12218,31 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:291
 ../../library/Class/AdminVar.php:292
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:295
+#: ../../library/Class/AdminVar.php:314
 msgid "Texte visible par l'internaute après son inscription."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:292
 ../../library/Class/AdminVar.php:293
 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:296
+#: ../../library/Class/AdminVar.php:315
 msgid "Texte visible après l'envoi d'e-mail de demande de réservation."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:293
 ../../library/Class/AdminVar.php:294
 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:297
+#: ../../library/Class/AdminVar.php:316
 msgid "Désactiver pour passer le site en maintenance"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:294
 ../../library/Class/AdminVar.php:295
 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:298
+#: ../../library/Class/AdminVar.php:317
 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:295
 ../../library/Class/AdminVar.php:296
 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:299
+#: ../../library/Class/AdminVar.php:318
 msgid ""
 "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader."
 "readspeaker.com\">http://webreader.readspeaker.com</a>"
@@ -12166,6 +12250,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:296
 ../../library/Class/AdminVar.php:297
 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:300
+#: ../../library/Class/AdminVar.php:319
 msgid ""
 "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/"
 "home\">http://webthumb.bluga.net/home</a>"
@@ -12173,11 +12258,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:297
 ../../library/Class/AdminVar.php:298
 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:301
+#: ../../library/Class/AdminVar.php:320
 msgid "Texte d'aide affiché dans la fiche abonné"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:298
 ../../library/Class/AdminVar.php:299
 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:302
+#: ../../library/Class/AdminVar.php:321
 msgid ""
 "Supprime l'affichage du lien d'enregistrement dans les différents "
 "formulaires de connexion et interdit l'enregistrement d'utilisateurs"
@@ -12185,6 +12272,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:299
 ../../library/Class/AdminVar.php:300
 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:303
+#: ../../library/Class/AdminVar.php:322
 msgid ""
 "Liste des codes langue utilisées en plus du français séparées par des ;. "
 "Exemple: en;ro;es"
@@ -12192,51 +12280,61 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:303
 ../../library/Class/AdminVar.php:304
 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:307
+#: ../../library/Class/AdminVar.php:326
 msgid "Date du dernier vidage manuel du cache"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:305
 ../../library/Class/AdminVar.php:306
 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:309
+#: ../../library/Class/AdminVar.php:328
 msgid "Activer ou désactiver le module d'activité"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:307
 ../../library/Class/AdminVar.php:308
 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:311
+#: ../../library/Class/AdminVar.php:330
 msgid "URL du javascript Babelthèque à insérer dans l'OPAC"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:308
 ../../library/Class/AdminVar.php:309
 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:312
+#: ../../library/Class/AdminVar.php:331
 msgid "Clé publique pour le cryptage des données AFI-Multimédia"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:310
 ../../library/Class/AdminVar.php:311
 #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:314
+#: ../../library/Class/AdminVar.php:333
 msgid "Clé publique pour le cryptage des données Aesis Webkiosk"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:311
 ../../library/Class/AdminVar.php:312
 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:315
+#: ../../library/Class/AdminVar.php:334
 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:313
 ../../library/Class/AdminVar.php:314
 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:317
+#: ../../library/Class/AdminVar.php:336
 msgid "Activation des boîtes dans les menus"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:314
 ../../library/Class/AdminVar.php:315
 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:318
+#: ../../library/Class/AdminVar.php:337
 msgid "Interdire la modification de la fiche abonne"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:316
 ../../library/Class/AdminVar.php:317
 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:320
+#: ../../library/Class/AdminVar.php:339
 msgid "Url d'import d'un agenda TYPO3"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:317
 ../../library/Class/AdminVar.php:318
 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:321
+#: ../../library/Class/AdminVar.php:340
 msgid ""
 "Liste des champs que l'utilisateur peux modifier. <br/>Ex: nom;prenom;pseudo;"
 "adresse;<br/>code_postal;ville;mail;is_contact_mail;<br/>telephone;"
@@ -12245,16 +12343,19 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:318
 ../../library/Class/AdminVar.php:319
 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:322
+#: ../../library/Class/AdminVar.php:341
 msgid "Libellé pour la PCDM4"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:319
 ../../library/Class/AdminVar.php:320
 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:323
+#: ../../library/Class/AdminVar.php:342
 msgid "Libellé pour la Dewey"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:330
 ../../library/Class/AdminVar.php:331
 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:334
+#: ../../library/Class/AdminVar.php:353
 msgid ""
 "Liste des codes des facettes qui ne sont pas limitées à l'affichage dans le "
 "résultat de recherche<br/>Exemple : T => Type de doc, Y => Annexe, B => "
@@ -12263,27 +12364,32 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:331
 ../../library/Class/AdminVar.php:332
 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:335
+#: ../../library/Class/AdminVar.php:354
 msgid "Ajouter automatiquement une boîte panier dans la division flottante"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:332
 ../../library/Class/AdminVar.php:333
 #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:336
+#: ../../library/Class/AdminVar.php:355
 #, php-format
 msgid "Chemin vers les skins personnalisées, relatif à %s"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:333
 ../../library/Class/AdminVar.php:334
 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:337
+#: ../../library/Class/AdminVar.php:356
 msgid "Activation de la navigation collaborative"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:334
 ../../library/Class/AdminVar.php:335
 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:338
+#: ../../library/Class/AdminVar.php:357
 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:336
 ../../library/Class/AdminVar.php:337
 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:340
+#: ../../library/Class/AdminVar.php:359
 #, php-format
 msgid ""
 "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous "
@@ -12292,11 +12398,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:338
 ../../library/Class/AdminVar.php:339
 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:342
+#: ../../library/Class/AdminVar.php:361
 msgid "Activation des fonctions avancées du téléphone"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:340
 ../../library/Class/AdminVar.php:341
 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:344
+#: ../../library/Class/AdminVar.php:363
 msgid ""
 "Identifiant unique (attention: la modification de cette variable impactera "
 "les outils de suivi de cette installation)"
@@ -12304,35 +12412,37 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:341
 ../../library/Class/AdminVar.php:342
 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:345
+#: ../../library/Class/AdminVar.php:364
 msgid "URL destinataire du rapport d'état du système (0 pour désactiver)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:342
 ../../library/Class/AdminVar.php:343
 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:346
+#: ../../library/Class/AdminVar.php:365
 msgid "Liste des tags à ajouter au rapport d'état du système"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:348
 ../../library/Class/AdminVar.php:349
 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351
-#: ../../library/Class/AdminVar.php:354
+#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:373
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:349
 ../../library/Class/AdminVar.php:350
 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352
-#: ../../library/Class/AdminVar.php:355
+#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:374
 msgid "Nombre de caractères minimum autorisé à saisir dans les avis."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:350
 ../../library/Class/AdminVar.php:351
 #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353
-#: ../../library/Class/AdminVar.php:356
+#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:375
 msgid "Nombre de caractères maximum à afficher dans le bloc critiques."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:356
 ../../library/Class/AdminVar.php:357
 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359
-#: ../../library/Class/AdminVar.php:362
+#: ../../library/Class/AdminVar.php:362 ../../library/Class/AdminVar.php:381
 msgid ""
 "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente "
 "de validation<br /> Activé : affichage seulement après validation."
@@ -12340,7 +12450,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:357
 ../../library/Class/AdminVar.php:358
 #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360
-#: ../../library/Class/AdminVar.php:363
+#: ../../library/Class/AdminVar.php:363 ../../library/Class/AdminVar.php:382
 msgid ""
 "Modération des avis des bibliothécaires.<br />  Désactivé: affichage sans "
 "attente de validation<br /> Activé: affichage seulement après validation"
@@ -12348,7 +12458,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:358
 ../../library/Class/AdminVar.php:359
 #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361
-#: ../../library/Class/AdminVar.php:364
+#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:383
 msgid ""
 "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les "
 "bibliothécaires peuvent donner leur avis"
@@ -12356,7 +12466,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:359
 ../../library/Class/AdminVar.php:360
 #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362
-#: ../../library/Class/AdminVar.php:365
+#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:384
 msgid ""
 "Désactivé: ne requiert pas d'identification pour saisir des  commentaires. "
 "<br /> Activé: requiert l'identification pour saisir des commentaires."
@@ -12364,31 +12474,31 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:360
 ../../library/Class/AdminVar.php:361
 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363
-#: ../../library/Class/AdminVar.php:366
+#: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:385
 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:366
 ../../library/Class/AdminVar.php:367
 #: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369
-#: ../../library/Class/AdminVar.php:372
+#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:391
 msgid "Javascript code for statistics"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:367
 ../../library/Class/AdminVar.php:368
 #: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370
-#: ../../library/Class/AdminVar.php:373
+#: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:392
 msgid "PIWIK authentication token for widgets"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:373
 ../../library/Class/AdminVar.php:374
 #: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376
-#: ../../library/Class/AdminVar.php:379
+#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:398
 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:374
 ../../library/Class/AdminVar.php:375
 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377
-#: ../../library/Class/AdminVar.php:380
+#: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:399
 msgid ""
 "Seuil d'alerte en heures pour détecter que les traitements d'intégration "
 "prennent trop de temps. Par défaut: 2"
@@ -12396,7 +12506,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:381
 ../../library/Class/AdminVar.php:382
 #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384
-#: ../../library/Class/AdminVar.php:387
+#: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406
 msgid ""
 "Activation du serveur OAI: permet le moissonnage des domaines par d'autres "
 "logiciels via OAI"
@@ -12405,24 +12515,28 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:386
 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386
 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:394
+#: ../../library/Class/AdminVar.php:413
 msgid "Url du connecteur Le Social"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:387
 ../../library/Class/AdminVar.php:388
 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:395
+#: ../../library/Class/AdminVar.php:414
 msgid "Id du connecteur Le Social"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:392
 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418
 #: ../../library/Class/AdminVar.php:423 ../../library/Class/AdminVar.php:426
+#: ../../library/Class/AdminVar.php:445
 msgid "API utilisée pour les cartes statiques"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:393
 ../../library/Class/AdminVar.php:420
 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:427
+#: ../../library/Class/AdminVar.php:446
 msgid "API"
 msgstr ""
 
@@ -12498,6 +12612,7 @@ msgstr ""
 #: ../../library/Class/Exemplaire.php:269
 #: ../../library/Class/Exemplaire.php:274
 #: ../../library/Class/Exemplaire.php:290
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 msgid "Disponible"
 msgstr ""
 
@@ -12860,26 +12975,31 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:54
 msgid "En attente"
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
 msgid "Vérifiée"
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 msgid "Acceptée"
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 msgid "Rejetée"
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 msgid "Commandée"
 msgstr ""
 
@@ -12894,6 +13014,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:62
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:135
 #, php-format
 msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\""
 msgstr ""
@@ -12905,11 +13026,13 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:121
 msgid "Échec de la suggestion, une erreur inconnue est survenue."
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:124
 #, php-format
 msgid "Échec de la suggestion, le webservice a répondu \"%s\""
 msgstr ""
@@ -13287,7 +13410,7 @@ msgid "Le fichier dépasse la taille limite (upload_max_filesize de php.ini)"
 msgstr ""
 
 #: ../../library/Class/Upload.php:66 ../../library/Class/Upload.php:317
-#: ../../library/Class/Upload.php:317
+#: ../../library/Class/Upload.php:317 ../../library/Class/Upload.php:318
 msgid "La taille du fichier ne doit pas excéder "
 msgstr ""
 
@@ -13317,19 +13440,23 @@ msgid "Transfert impossible, champ de fichier introuvable"
 msgstr ""
 
 #: ../../library/Class/Upload.php:307
 ../../library/Class/Upload.php:307
+#: ../../library/Class/Upload.php:308
 msgid "Le fichier était vide ou un problème réseau est survenu"
 msgstr ""
 
 #: ../../library/Class/Upload.php:312
 ../../library/Class/Upload.php:312
+#: ../../library/Class/Upload.php:313
 msgid ""
 "Transfert impossible, le répertoire de destination n'a pas pu être créé."
 msgstr ""
 
 #: ../../library/Class/Upload.php:322
 ../../library/Class/Upload.php:322
+#: ../../library/Class/Upload.php:323
 msgid "Le fichier n'a pas de nom"
 msgstr ""
 
 #: ../../library/Class/Upload.php:332
 ../../library/Class/Upload.php:332
+#: ../../library/Class/Upload.php:329
 #, php-format
 msgid "Le fichier n'est pas de type %s"
 msgstr ""
@@ -13508,13 +13635,11 @@ msgstr ""
 msgid "Aucune information n'a été trouvée"
 msgstr ""
 
-#: ../../library/Class/NoticeHtml.php:69
-#: ../../library/Class/NoticeHtml.php:69
+#: ../../library/Class/NoticeHtml.php:69
 ../../library/Class/NoticeHtml.php:69
 msgid "Aucun article n'a été trouvé"
 msgstr ""
 
-#: ../../library/Class/NoticeHtml.php:82
-#: ../../library/Class/NoticeHtml.php:82
+#: ../../library/Class/NoticeHtml.php:82
 ../../library/Class/NoticeHtml.php:82
 msgid "Pagination"
 msgstr ""
 
@@ -14627,32 +14752,38 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:87
 #: ../../library/Class/Systeme/Report.php:90
+#: ../../library/Class/Systeme/Report.php:92
 msgid "URL principale"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:88
 #: ../../library/Class/Systeme/Report.php:91
+#: ../../library/Class/Systeme/Report.php:93
 msgid "Libellé principal"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:89
 #: ../../library/Class/Systeme/Report.php:92
+#: ../../library/Class/Systeme/Report.php:94
 msgid "Thèmes utilisés"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:159
 #: ../../library/Class/Systeme/Report.php:162
+#: ../../library/Class/Systeme/Report.php:164
 msgid "Etat de la communication"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:186
 #: ../../library/Class/Systeme/Report.php:189
 #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:62
+#: ../../library/Class/Systeme/Report.php:191
 msgid "Fonctionnalités"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:187
 #: ../../library/Class/Systeme/Report.php:190
+#: ../../library/Class/Systeme/Report.php:192
 msgid "Nombre d'albums"
 msgstr ""
 
@@ -14660,11 +14791,13 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
 #: ../../library/Class/Systeme/Report.php:221
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
+#: ../../library/Class/Systeme/Report.php:223
 msgid "Label"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:220
 #: ../../library/Class/Systeme/Report.php:223
+#: ../../library/Class/Systeme/Report.php:225
 msgid "CP"
 msgstr ""
 
@@ -14817,24 +14950,25 @@ msgid "Nombre maximum d'élément à ce niveau déjà atteint (%s)"
 msgstr ""
 
 #: ../../library/Class/Album.php:1126
 ../../library/Class/Album.php:1126
-#: ../../library/Class/Album.php:1131
+#: ../../library/Class/Album.php:1131 ../../library/Class/Album.php:1133
 #, php-format
 msgid "L'année doit être comprise entre %s et %s"
 msgstr ""
 
 #: ../../library/Class/Album.php:1131
 ../../library/Class/Album.php:1131
-#: ../../library/Class/Album.php:1136
+#: ../../library/Class/Album.php:1136 ../../library/Class/Album.php:1138
 msgid "Le titre est obligatoire"
 msgstr ""
 
 #: ../../library/Class/Album.php:1133
 ../../library/Class/Album.php:1133
-#: ../../library/Class/Album.php:1138
+#: ../../library/Class/Album.php:1138 ../../library/Class/Album.php:1140
 msgid "L'album doit avoir un type de document"
 msgstr ""
 
 #: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 #: ../../library/Class/Album.php:1604 ../../library/Class/Album.php:1614
 #: ../../library/Class/Album.php:1630 ../../library/Class/Album.php:1631
+#: ../../library/Class/Album.php:1633
 msgid "Domaine public"
 msgstr ""
 
@@ -15005,8 +15139,7 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
-#: ../../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/Library.php:263
@@ -15764,45 +15897,40 @@ msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:"
 msgstr ""
 
 #: ../../library/Class/Users.php:1132
 ../../library/Class/Users.php:1132
-#: ../../library/Class/User/LostPass.php:101
-#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120
-#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1127
-#: ../../library/Class/Users.php:1148
+#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141
+#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123
+#: ../../library/Class/Users.php:1127 ../../library/Class/Users.php:1148
 msgid "Vous avez fait une demande de mot de passe sur le portail."
 msgstr ""
 
 #: ../../library/Class/Users.php:1133
 ../../library/Class/Users.php:1133
-#: ../../library/Class/User/LostPass.php:102
-#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121
-#: ../../library/Class/Users.php:1124 ../../library/Class/Users.php:1128
-#: ../../library/Class/Users.php:1149
+#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142
+#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124
+#: ../../library/Class/Users.php:1128 ../../library/Class/Users.php:1149
 #, php-format
 msgid "Votre identifiant : %s\n"
 msgstr ""
 
 #: ../../library/Class/Users.php:1134
 ../../library/Class/Users.php:1134
-#: ../../library/Class/User/LostPass.php:103
-#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122
-#: ../../library/Class/Users.php:1125 ../../library/Class/Users.php:1129
-#: ../../library/Class/Users.php:1150
+#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143
+#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125
+#: ../../library/Class/Users.php:1129 ../../library/Class/Users.php:1150
 #, php-format
 msgid "Votre mot de passe : %s\n"
 msgstr ""
 
 #: ../../library/Class/Users.php:1135
 ../../library/Class/Users.php:1135
 #: ../../library/Class/User/LostPass.php:104
-#: ../../library/Class/User/LostPass.php:137
-#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123
-#: ../../library/Class/Users.php:1126 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1151
+#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144
+#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1151
 msgid "Bonne navigation sur le portail"
 msgstr ""
 
 #: ../../library/Class/Users.php:1142
 ../../library/Class/Users.php:1142
-#: ../../library/Class/User/LostPass.php:110
-#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1137
-#: ../../library/Class/Users.php:1158
+#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133
+#: ../../library/Class/Users.php:1137 ../../library/Class/Users.php:1158
 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion."
 msgstr ""
 
@@ -15820,19 +15948,16 @@ msgstr ""
 msgid "Mes paniers rattachés à un domaine"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:159
-#: ../../library/Class/FRBR/Link.php:159
+#: ../../library/Class/FRBR/Link.php:159
 ../../library/Class/FRBR/Link.php:159
 msgid "URL objet A est requis"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:160
-#: ../../library/Class/FRBR/Link.php:162
+#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162
 #: ../../library/Class/FRBR/Link.php:162
 msgid "N'est pas une url valide"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:161
-#: ../../library/Class/FRBR/Link.php:161
+#: ../../library/Class/FRBR/Link.php:161
 ../../library/Class/FRBR/Link.php:161
 msgid "URL objet B est requis"
 msgstr ""
 
@@ -16004,8 +16129,7 @@ msgstr ""
 msgid "Dimanche"
 msgstr ""
 
-#: ../../library/Class/Ouverture.php:180
-#: ../../library/Class/Ouverture.php:180
+#: ../../library/Class/Ouverture.php:180
 ../../library/Class/Ouverture.php:180
 #, php-format
 msgid "le %s"
 msgstr ""
@@ -22687,6 +22811,8 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:151
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:178
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:156
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:183
 #, php-format
 msgid "Vous n'avez pas la permission \"%s\""
 msgstr ""
@@ -24058,6 +24184,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:301
 msgid "Planification"
 msgstr ""
 
@@ -24143,6 +24270,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:437
 #: ../../application/modules/admin/controllers/BibController.php:432
 #: ../../application/modules/admin/controllers/BibController.php:433
+#: ../../application/modules/admin/controllers/BibController.php:436
 msgid "Configuration introuvable"
 msgstr ""
 
@@ -24150,6 +24278,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/BibController.php:450
 #: ../../application/modules/admin/controllers/BibController.php:445
 #: ../../application/modules/admin/controllers/BibController.php:446
+#: ../../application/modules/admin/controllers/BibController.php:447
 msgid "Les filtres par défaut ont été sauvegardés."
 msgstr ""
 
@@ -24241,6 +24370,7 @@ msgstr ""
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:265
 msgid "Voir l'album"
 msgstr ""
 
@@ -24312,18 +24442,21 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:313
 msgid "Désactiver la tâche"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:321
 msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
 msgstr ""
 
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:326
 msgid "Plannifier la tâche"
 msgstr ""
 
@@ -24680,6 +24813,7 @@ msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:165
 #: ../../application/modules/admin/controllers/IndexController.php:173
+#: ../../application/modules/admin/controllers/IndexController.php:164
 msgid ""
 "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité."
 msgstr ""
@@ -24687,6 +24821,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:170
 #: ../../application/modules/admin/controllers/UsersController.php:117
 #: ../../application/modules/admin/controllers/IndexController.php:178
+#: ../../application/modules/admin/controllers/IndexController.php:169
 msgid "Utilisateur invalide"
 msgstr ""
 
@@ -24696,6 +24831,8 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:190
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:198
+#: ../../application/modules/admin/controllers/IndexController.php:177
+#: ../../application/modules/admin/controllers/IndexController.php:189
 #, php-format
 msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\""
 msgstr ""
@@ -24746,26 +24883,26 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396
 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398
-#: ../../library/Class/AdminVar.php:401
+#: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420
 msgid "Taille du dossier userfiles en méga octets."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399
 #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401
-#: ../../library/Class/AdminVar.php:404
+#: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423
 msgid "Liste des extensions de fichiers disponibles à l'import."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403
 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405
-#: ../../library/Class/AdminVar.php:408
+#: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427
 msgid ""
 "Liste des dimensions disponibles pour retailler les images lors de l'import."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406
 #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408
-#: ../../library/Class/AdminVar.php:411
+#: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430
 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés."
 msgstr ""
 
@@ -24778,7 +24915,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412
 #: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414
-#: ../../library/Class/AdminVar.php:417
+#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436
 msgid ""
 "Compression d'image utilisée dans le redimensionnement et la compression des "
 "images."
@@ -24786,7 +24923,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415
 #: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417
-#: ../../library/Class/AdminVar.php:420
+#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439
 msgid ""
 "Facteur d'échantillonnage utilisé dans le redimensionnement et la "
 "compression des images."
@@ -24813,18 +24950,22 @@ msgid "Userfiles"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:272
+#: ../../library/Class/Systeme/Report.php:276
 msgid "Espace disque utilisé"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:273
+#: ../../library/Class/Systeme/Report.php:277
 msgid "Espace disque libre"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:274
+#: ../../library/Class/Systeme/Report.php:278
 msgid "Espace disque total"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:275
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Espace disque plein"
 msgstr ""
 
@@ -25590,6 +25731,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:175
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:194
+#: ../../application/modules/admin/controllers/IndexController.php:185
 msgid "Nom d'utilisateur ou mot de passe invalide"
 msgstr ""
 
@@ -25627,6 +25769,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380
 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388
+#: ../../library/Class/AdminVar.php:407
 msgid ""
 "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si "
 "vide sera [NOM DU SERVEUR] Oai repository"
@@ -25634,6 +25777,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381
 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389
+#: ../../library/Class/AdminVar.php:408
 msgid ""
 "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si "
 "vide sera tiré de la variable cosmogramme \"mail_admin\""
@@ -26029,7 +26173,7 @@ msgid "Modifier le domaine "
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411
-#: ../../library/Class/AdminVar.php:414
+#: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433
 msgid ""
 "Liste des extensions susceptibles d'être sélectionnées pour enrichir un "
 "contenu."
@@ -26093,10 +26237,12 @@ msgid "Jeudi 15 mars"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:81
+#: ../../application/modules/admin/controllers/IndexController.php:72
 msgid "Veuillez renseigner le paramètre \"cle\"."
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:86
+#: ../../application/modules/admin/controllers/IndexController.php:77
 #, php-format
 msgid "La clé \"%s\" n'existe pas."
 msgstr ""
@@ -26108,6 +26254,7 @@ msgid ""
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:26
+#: ../../application/modules/api/controllers/UserController.php:47
 msgid "Protocole HTTPS obligatoire"
 msgstr ""
 
@@ -26184,17 +26331,18 @@ msgstr ""
 msgid "Lien: "
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:225
+#: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:244
 msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:226
+#: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:245
 msgid ""
 "Les utilisateurs peuvent recevoir les nouveautés de leurs recherches "
 "favorites par email"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292
+#: ../../library/Class/AdminVar.php:311
 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)"
 msgstr ""
 
@@ -26443,130 +26591,160 @@ msgstr ""
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:165
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
 #, php-format
 msgid "Modifier \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:110
 msgid "Paramétrage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:115
 msgid "Gestion des  droits"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:118
 msgid ""
 "Veuillez activer la ressource pour pouvoir gérer les droits d'accès des "
 "groupes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
 msgid "Cette ressource ne prend pas en charge la gestion des droits"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:127
 #, php-format
 msgid "Nom de la permission à donner : \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:140
 msgid "Aucun groupe n'a de droits d'accès à la ressources"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:146
 msgid "Gérer les groupes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:152
 msgid "Groupes qui ont accès à la ressource"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:154
 msgid "Nombre de membres"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:176
 msgid "Aucun utilisateur rattaché aux groupes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:183
 msgid "Diagnostic SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:186
 msgid "Cette ressource ne prend pas en charge la connexion SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:191
 msgid ""
 "Veuillez configurer les droits de cette ressource pour obtenir une connexion "
 "SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:214
 msgid "Groupe créé pour ce test"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:216
 #, php-format
 msgid "Nom : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
 msgid "Utilisateur créé pour ce test"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:223
 #, php-format
 msgid "Login : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:224
 #, php-format
 msgid "Mot de passe : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:225
 #, php-format
 msgid "Groupes : %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:238
 #, php-format
 msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
 #, php-format
 msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:275
 msgid "Diagnostic moissonnage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:278
 msgid "Cette ressource ne prend pas en charge le moissonnage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:283
 msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:288
 msgid "Le moissonnage n'est pas programmé"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
 msgid "Activer le moissonnage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:300
 msgid "Batch"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:360
 msgid "Voir les albums"
 msgstr ""
 
@@ -26576,6 +26754,7 @@ msgid "Nombre d'albums présents : %d"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:368
 msgid "Aucun album présent pour cette ressource"
 msgstr ""
 
@@ -26614,11 +26793,11 @@ msgid ""
 "profils."
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:289
+#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:308
 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB."
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:291
+#: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:310
 msgid ""
 "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est "
 "désactivé."
@@ -26705,3 +26884,107 @@ msgstr ""
 msgid ""
 "La sauvegarde a échoué. Les modifications n'ont pas été prises en compte."
 msgstr ""
+
+#: ../../application/modules/admin/controllers/BibController.php:445
+msgid "Echec de la sauvegarde de la configuration des filtres par défaut"
+msgstr ""
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:79
+#, php-format
+msgid "URL \"%s\" invalide"
+msgstr ""
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:84
+#, php-format
+msgid "Impossible de télécharger l'image \"%s\" sur le serveur"
+msgstr ""
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:94
+#, php-format
+msgid "Impossible d'ajouter l'image \"%s\" à l'album \"%s\""
+msgstr ""
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:112
+#, php-format
+msgid "Impossible d'enregister l'image \"%s\" dans \"%s\""
+msgstr ""
+
+#: ../../library/Class/Systeme/Report.php:83
+msgid "PHP"
+msgstr ""
+
+#: ../../library/Class/Systeme/Report.php:228
+msgid "Compte forge"
+msgstr ""
+
+#: ../../library/Class/DigitalResource/AlbumViewHelper.php:44
+#, php-format
+msgid "Accéder à \"%s\" dans un nouvel onglet"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:108
+msgid ""
+"Veuillez vérifier le fichier config.php de la ressource pour pouvoir gérer "
+"le paramétrage"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:244
+msgid ""
+"Cette ressource ne prend pas en charge la validation du ticket de connexion "
+"SSO"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#, php-format
+msgid ""
+"URL de validation du ticket de connexion générée pour l'utilisateur \"%s\""
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:339
+msgid "URL de moissonnage générée pour la première page"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:343
+msgid ""
+"Cette ressource ne prend pas en charge l'affichage du l'url de moissonnage"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:346
+msgid "Image du type de document: "
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:366
+#, php-format
+msgid "Nombre d'albums présents dans Bokeh : %d"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:372
+#, php-format
+msgid "Tentative de vignettage de l'album \"%s\" : "
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:374
+#, php-format
+msgid "Image source : %s"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:377
+msgid "Le vignettage n'est pas testable sans album"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:386
+msgid "Voir les notices"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:393
+#, php-format
+msgid "Nombre de notices présentes dans Bokeh : %d"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:395
+msgid "Aucune notice présente pour cette ressource"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:406
+msgid "Vignette de l'album : "
+msgstr ""
diff --git a/library/translation/ro.po b/library/translation/ro.po
index 9c1a58f2c3084e379bfb13a1989225bf4d463b54..ce2d61031d6f1c8de5bd55b81dfca1b3f94be956 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: 2018-03-26 12:00+0200\n"
+"POT-Creation-Date: 2018-04-09 14:17+0200\n"
 "PO-Revision-Date: 2011-07-14 18:15+0200\n"
 "Last-Translator: Lupu Mariana <lupumariana@yahoo.com>\n"
 "Language-Team: Romanian\n"
@@ -954,12 +954,14 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:393
 ../../library/Class/AdminVar.php:420
 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:427
+#: ../../library/Class/AdminVar.php:446
 msgid "API"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:392
 ../../library/Class/AdminVar.php:419
 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418
 #: ../../library/Class/AdminVar.php:423 ../../library/Class/AdminVar.php:426
+#: ../../library/Class/AdminVar.php:445
 msgid "API utilisée pour les cartes statiques"
 msgstr ""
 
@@ -1057,6 +1059,7 @@ msgstr "Abonat sigb"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 msgid "Acceptée"
 msgstr ""
 
@@ -1203,6 +1206,11 @@ msgstr "Gestionare a resurselor"
 msgid "Accéder aux titres seulement"
 msgstr "Tip de document"
 
+#: ../../library/Class/DigitalResource/AlbumViewHelper.php:44
+#, fuzzy, php-format
+msgid "Accéder à \"%s\" dans un nouvel onglet"
+msgstr "Gestionare a resurselor"
+
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65
 #, php-format
@@ -1289,6 +1297,7 @@ msgstr "Acţiune"
 
 #: ../../library/Class/AdminVar.php:242
 ../../library/Class/AdminVar.php:243
 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242
+#: ../../library/Class/AdminVar.php:261
 #, fuzzy
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche au survol de la "
@@ -1297,6 +1306,7 @@ msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare"
 
 #: ../../library/Class/AdminVar.php:243
 ../../library/Class/AdminVar.php:244
 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243
+#: ../../library/Class/AdminVar.php:262
 #, fuzzy
 msgid ""
 "Activation de la disponibilite dans le resultat de recherche. Calculé grâce "
@@ -1305,39 +1315,43 @@ msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare"
 
 #: ../../library/Class/AdminVar.php:333
 ../../library/Class/AdminVar.php:334
 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:337
+#: ../../library/Class/AdminVar.php:356
 msgid "Activation de la navigation collaborative"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:202
 ../../library/Class/AdminVar.php:203
-#: ../../library/Class/AdminVar.php:200
+#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:219
 #, fuzzy
 msgid "Activation de la ressource numérique PlanetNemo"
 msgstr "Resurse OAI"
 
 #: ../../library/Class/AdminVar.php:313
 ../../library/Class/AdminVar.php:314
 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:317
+#: ../../library/Class/AdminVar.php:336
 msgid "Activation des boîtes dans les menus"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:338
 ../../library/Class/AdminVar.php:339
 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:342
+#: ../../library/Class/AdminVar.php:361
 msgid "Activation des fonctions avancées du téléphone"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:255
 ../../library/Class/AdminVar.php:256
 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255
+#: ../../library/Class/AdminVar.php:274
 #, fuzzy
 msgid "Activation des formulaires"
 msgstr "Moderare alerte"
 
 #: ../../library/Class/AdminVar.php:170
 ../../library/Class/AdminVar.php:171
-#: ../../library/Class/AdminVar.php:168
+#: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:187
 msgid "Activation du PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:381
 ../../library/Class/AdminVar.php:382
 #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384
-#: ../../library/Class/AdminVar.php:387
+#: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406
 msgid ""
 "Activation du serveur OAI: permet le moissonnage des domaines par d'autres "
 "logiciels via OAI"
@@ -1361,6 +1375,7 @@ msgid "Activer la tâche"
 msgstr "Adaugă o categorie"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
 msgid "Activer le moissonnage"
 msgstr ""
 
@@ -1387,12 +1402,14 @@ msgid "Activer ou désactiver : %s"
 msgstr "Adaugă o localizare"
 
 #: ../../library/Class/AdminVar.php:133
 ../../library/Class/AdminVar.php:134
+#: ../../library/Class/AdminVar.php:153
 #, fuzzy
 msgid "Activer ou désactiver la bibliothèque numérique"
 msgstr "Bibliotecă digitală"
 
 #: ../../library/Class/AdminVar.php:305
 ../../library/Class/AdminVar.php:306
 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:309
+#: ../../library/Class/AdminVar.php:328
 #, fuzzy
 msgid "Activer ou désactiver le module d'activité"
 msgstr "Adaugă o localizare"
@@ -1454,6 +1471,7 @@ msgstr "Acţiune"
 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36
 #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51
+#: ../../library/Class/Systeme/Report.php:190
 #, fuzzy
 msgid "Activé"
 msgstr "Acţiune"
@@ -1593,6 +1611,7 @@ msgstr ""
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:99
 #: ../../application/modules/opac/controllers/AbonneController.php:461
 #: ../../application/modules/opac/controllers/AbonneController.php:462
+#: ../../library/Class/Systeme/Report.php:224
 msgid "Adresse"
 msgstr "Adresă "
 
@@ -1627,26 +1646,27 @@ msgid "Adresse du destinataire absente."
 msgstr "Adresa destinatarului lipseÅŸte."
 
 #: ../../library/Class/AdminVar.php:187
 ../../library/Class/AdminVar.php:188
-#: ../../library/Class/AdminVar.php:185
+#: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:204
 msgid "Adresse du serveur OAI 1D touch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:193
 ../../library/Class/AdminVar.php:194
-#: ../../library/Class/AdminVar.php:191
+#: ../../library/Class/AdminVar.php:191 ../../library/Class/AdminVar.php:210
 msgid "Adresse du serveur OAI Cité de la Musique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:148
 ../../library/Class/AdminVar.php:149
+#: ../../library/Class/AdminVar.php:168
 msgid "Adresse du serveur OAI Cyberlibris"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:197
 ../../library/Class/AdminVar.php:198
-#: ../../library/Class/AdminVar.php:195
+#: ../../library/Class/AdminVar.php:195 ../../library/Class/AdminVar.php:214
 msgid "Adresse du serveur Orphea"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:204
 ../../library/Class/AdminVar.php:205
-#: ../../library/Class/AdminVar.php:202
+#: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:221
 msgid "Adresse du serveur de la ressource numérique Orthodidacte"
 msgstr ""
 
@@ -2211,6 +2231,7 @@ msgstr "Adaugă în coş"
 
 #: ../../library/Class/AdminVar.php:331
 ../../library/Class/AdminVar.php:332
 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:335
+#: ../../library/Class/AdminVar.php:354
 msgid "Ajouter automatiquement une boîte panier dans la division flottante"
 msgstr ""
 
@@ -3161,8 +3182,7 @@ msgstr "Tip de document"
 #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124
 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57
-#: ../../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/Library.php:263
@@ -3176,12 +3196,12 @@ msgid "Aucun"
 msgstr "nici o"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:368
 #, fuzzy
 msgid "Aucun album présent pour cette ressource"
 msgstr "Moderare"
 
-#: ../../library/Class/NoticeHtml.php:69
-#: ../../library/Class/NoticeHtml.php:69
+#: ../../library/Class/NoticeHtml.php:69
 ../../library/Class/NoticeHtml.php:69
 msgid "Aucun article n'a été trouvé"
 msgstr "Nu a fost găsit nici un articol"
 
@@ -3281,6 +3301,7 @@ msgid "Aucun fichier présent dans %s"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:140
 msgid "Aucun groupe n'a de droits d'accès à la ressources"
 msgstr ""
 
@@ -3360,6 +3381,7 @@ msgid "Aucun résumé"
 msgstr "Nici un rezultat găsit"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:176
 #, fuzzy
 msgid "Aucun utilisateur rattaché aux groupes"
 msgstr "Nici un articol găsit"
@@ -3460,6 +3482,11 @@ msgstr "Rezervări în curs"
 msgid "Aucune inscription validée"
 msgstr "Nici o critică recentă"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:395
+#, fuzzy
+msgid "Aucune notice présente pour cette ressource"
+msgstr "Moderare"
+
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 #: ../../library/ZendAfi/View/Helper/Telephone/ListeNotices.php:52
 msgid "Aucune notice trouvée"
@@ -3768,10 +3795,12 @@ msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:29
 #: ../../application/modules/api/controllers/UserController.php:29
+#: ../../application/modules/api/controllers/UserController.php:50
 msgid "Autorisation non spécifiée"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292
+#: ../../library/Class/AdminVar.php:311
 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)"
 msgstr ""
 
@@ -4047,6 +4076,7 @@ msgid "Base de données : "
 msgstr "Filtrare a datelor"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:300
 msgid "Batch"
 msgstr ""
 
@@ -4697,10 +4727,9 @@ msgstr ""
 
 #: ../../library/Class/Users.php:1135
 ../../library/Class/Users.php:1135
 #: ../../library/Class/User/LostPass.php:104
-#: ../../library/Class/User/LostPass.php:137
-#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123
-#: ../../library/Class/Users.php:1126 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1151
+#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144
+#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1151
 msgid "Bonne navigation sur le portail"
 msgstr "Navigare plăcută pe portal"
 
@@ -4717,6 +4746,7 @@ msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:220
 #: ../../library/Class/Systeme/Report.php:223
+#: ../../library/Class/Systeme/Report.php:225
 msgid "CP"
 msgstr ""
 
@@ -5219,15 +5249,29 @@ msgstr "Această instrucţiune nu are autor"
 msgid "Cette recherche ne vous appartient pas."
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:343
+msgid ""
+"Cette ressource ne prend pas en charge l'affichage du l'url de moissonnage"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:186
 msgid "Cette ressource ne prend pas en charge la connexion SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
 msgid "Cette ressource ne prend pas en charge la gestion des droits"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:244
+msgid ""
+"Cette ressource ne prend pas en charge la validation du ticket de connexion "
+"SSO"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:278
 msgid "Cette ressource ne prend pas en charge le moissonnage"
 msgstr ""
 
@@ -5415,6 +5459,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:332
 ../../library/Class/AdminVar.php:333
 #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:336
+#: ../../library/Class/AdminVar.php:355
 #, php-format
 msgid "Chemin vers les skins personnalisées, relatif à %s"
 msgstr ""
@@ -5550,6 +5595,7 @@ msgstr "Cheie"
 
 #: ../../library/Class/AdminVar.php:290
 ../../library/Class/AdminVar.php:291
 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:294
+#: ../../library/Class/AdminVar.php:313
 msgid ""
 "Clef d'activation pour le plan d'accès google map. <a target=\"_blank\" href="
 "\"http://code.google.com/apis/maps/signup.html\">Obtenir la clé google map</"
@@ -5595,16 +5641,19 @@ msgstr "Faceţi clic aici pentru a modifica"
 
 #: ../../library/Class/AdminVar.php:296
 ../../library/Class/AdminVar.php:297
 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:300
+#: ../../library/Class/AdminVar.php:319
 msgid ""
 "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/"
 "home\">http://webthumb.bluga.net/home</a>"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:152
 ../../library/Class/AdminVar.php:153
+#: ../../library/Class/AdminVar.php:172
 msgid "Clé ARTE VOD"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:153
 ../../library/Class/AdminVar.php:154
+#: ../../library/Class/AdminVar.php:173
 msgid "Clé ARTE VOD Single Sign-On"
 msgstr ""
 
@@ -5619,35 +5668,35 @@ msgid "Clé chapeau"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:211
 ../../library/Class/AdminVar.php:212
-#: ../../library/Class/AdminVar.php:209
+#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:228
 msgid ""
 "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par "
 "Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:212
 ../../library/Class/AdminVar.php:213
-#: ../../library/Class/AdminVar.php:210
+#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:229
 msgid ""
 "Clé d'identification Kidilangues pour le portail. Cette clé doit être "
 "fournie par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:185
 ../../library/Class/AdminVar.php:186
-#: ../../library/Class/AdminVar.php:183
+#: ../../library/Class/AdminVar.php:183 ../../library/Class/AdminVar.php:202
 msgid ""
 "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie "
 "par MyCOW.EU. Elle active la ressource numérique dans le portail."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:216
 ../../library/Class/AdminVar.php:217
-#: ../../library/Class/AdminVar.php:214
+#: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:233
 msgid ""
 "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit "
 "être fournie par Premier-Chapitre."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:166
 ../../library/Class/AdminVar.php:167
-#: ../../library/Class/AdminVar.php:164
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:183
 msgid "Clé de sécurité Vodeclic"
 msgstr ""
 
@@ -5659,11 +5708,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:308
 ../../library/Class/AdminVar.php:309
 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:312
+#: ../../library/Class/AdminVar.php:331
 msgid "Clé publique pour le cryptage des données AFI-Multimédia"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:310
 ../../library/Class/AdminVar.php:311
 #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:314
+#: ../../library/Class/AdminVar.php:333
 msgid "Clé publique pour le cryptage des données Aesis Webkiosk"
 msgstr ""
 
@@ -5735,6 +5786,7 @@ msgstr "Cod poÅŸtal"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:82
 #: ../../application/modules/admin/views/scripts/index/index.phtml:71
 #: ../../application/modules/admin/views/scripts/index/index.phtml:65
+#: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #, fuzzy
 msgid "Code source"
 msgstr "sursă"
@@ -5802,6 +5854,7 @@ msgstr "Comentarii :"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 msgid "Commandée"
 msgstr ""
 
@@ -5924,7 +5977,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412
 #: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414
-#: ../../library/Class/AdminVar.php:417
+#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436
 msgid ""
 "Compression d'image utilisée dans le redimensionnement et la compression des "
 "images."
@@ -5949,6 +6002,11 @@ msgstr ""
 msgid "Compte d'assistance: %s"
 msgstr "Număr de diviziuni"
 
+#: ../../library/Class/Systeme/Report.php:228
+#, fuzzy
+msgid "Compte forge"
+msgstr "Conectare "
+
 #: ../../library/Class/Feature/List.php:179
 #, fuzzy
 msgid "Compte lecteur"
@@ -6076,6 +6134,7 @@ msgstr "Rezultatul căutarii"
 #: ../../application/modules/admin/controllers/BibController.php:437
 #: ../../application/modules/admin/controllers/BibController.php:432
 #: ../../application/modules/admin/controllers/BibController.php:433
+#: ../../application/modules/admin/controllers/BibController.php:436
 #, fuzzy
 msgid "Configuration introuvable"
 msgstr "Rezervări de instrucţiuni"
@@ -6380,6 +6439,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:265
 ../../library/Class/AdminVar.php:266
 #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265
+#: ../../library/Class/AdminVar.php:284
 msgid ""
 "Contenu de l'email de notification d'article en attente de validation. "
 "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, "
@@ -6388,6 +6448,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:266
 ../../library/Class/AdminVar.php:267
 #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266
+#: ../../library/Class/AdminVar.php:285
 msgid ""
 "Contenu de l'email de notification de refus d'un article à valider. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6395,6 +6456,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:267
 ../../library/Class/AdminVar.php:268
 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267
+#: ../../library/Class/AdminVar.php:286
 msgid ""
 "Contenu de l'email de notification de validation d'un article. Termes "
 "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE"
@@ -6402,6 +6464,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381
 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389
+#: ../../library/Class/AdminVar.php:408
 msgid ""
 "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si "
 "vide sera tiré de la variable cosmogramme \"mail_admin\""
@@ -6409,6 +6472,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380
 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388
+#: ../../library/Class/AdminVar.php:407
 msgid ""
 "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si "
 "vide sera [NOM DU SERVEUR] Oai repository"
@@ -6451,7 +6515,7 @@ msgid "Contient"
 msgstr "conţine"
 
 #: ../../library/Class/AdminVar.php:173
 ../../library/Class/AdminVar.php:174
-#: ../../library/Class/AdminVar.php:171
+#: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:190
 msgid "Contracteur du PNB Dilicom"
 msgstr ""
 
@@ -6473,6 +6537,7 @@ msgstr "Coord."
 #: ../../library/Class/Systeme/Report.php:222
 #: ../../application/modules/telephone/views/scripts/recherche/bibliotheque.phtml:4
 #: ../../library/Class/Systeme/Report.php:225
+#: ../../library/Class/Systeme/Report.php:227
 #, fuzzy
 msgid "Coordonnées"
 msgstr "Coordonate hartă"
@@ -7081,12 +7146,13 @@ msgstr "Căsuţă de căutare"
 
 #: ../../library/Class/AdminVar.php:373
 ../../library/Class/AdminVar.php:374
 #: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376
-#: ../../library/Class/AdminVar.php:379
+#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:398
 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:303
 ../../library/Class/AdminVar.php:304
 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:307
+#: ../../library/Class/AdminVar.php:326
 msgid "Date du dernier vidage manuel du cache"
 msgstr ""
 
@@ -7141,7 +7207,7 @@ msgstr ""
 msgid "De B à A"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:291
+#: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:310
 msgid ""
 "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est "
 "désactivé."
@@ -7344,6 +7410,7 @@ msgstr "Criterii de indexare"
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:306
 #, fuzzy
 msgid "Dernière exécution"
 msgstr "Criterii de indexare"
@@ -7488,10 +7555,12 @@ msgid "Dewey / pcdm4"
 msgstr "Dewey / pcdm4"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:183
 msgid "Diagnostic SSO"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:275
 msgid "Diagnostic moissonnage"
 msgstr ""
 
@@ -7569,6 +7638,7 @@ msgstr "Discografie completă aparţinând lui"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:86
 #: ../../application/modules/admin/views/scripts/index/index.phtml:75
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
+#: ../../application/modules/admin/views/scripts/index/index.phtml:58
 msgid "Discutez avec les contributeurs de Bokeh en direct"
 msgstr ""
 
@@ -7591,6 +7661,7 @@ msgstr "Disponibilitate"
 #: ../../library/Class/Exemplaire.php:269
 #: ../../library/Class/Exemplaire.php:274
 #: ../../library/Class/Exemplaire.php:290
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59
 #, fuzzy
 msgid "Disponible"
 msgstr "Disponibilitate"
@@ -7768,12 +7839,13 @@ msgstr "Cataloguri dinamice"
 #: ../../library/Class/Album.php:1598 ../../library/Class/Album.php:1604
 #: ../../library/Class/Album.php:1604 ../../library/Class/Album.php:1614
 #: ../../library/Class/Album.php:1630 ../../library/Class/Album.php:1631
+#: ../../library/Class/Album.php:1633
 #, fuzzy
 msgid "Domaine public"
 msgstr "Cataloguri dinamice"
 
 #: ../../library/Class/AdminVar.php:206
 ../../library/Class/AdminVar.php:207
-#: ../../library/Class/AdminVar.php:204
+#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:223
 msgid "Domaine utilisée par le serveur lectura pour authentification"
 msgstr ""
 
@@ -7837,6 +7909,7 @@ msgstr "Exprimaţi-vă sau modificaţi-vă părerea"
 #: ../../application/modules/opac/controllers/RssController.php:219
 #: ../../application/modules/admin/views/scripts/index/index.phtml:46
 #: ../../application/modules/admin/views/scripts/index/index.phtml:40
+#: ../../application/modules/admin/views/scripts/index/index.phtml:29
 msgid "Données en attente de modération"
 msgstr "Date în aşteptarea moderării"
 
@@ -7986,7 +8059,7 @@ msgid "Durée de prêt en jours"
 msgstr "Împrumuturi în curs"
 
 #: ../../library/Class/AdminVar.php:180
 ../../library/Class/AdminVar.php:181
-#: ../../library/Class/AdminVar.php:178
+#: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:197
 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom"
 msgstr ""
 
@@ -8081,6 +8154,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:32
 #: ../../application/modules/admin/views/scripts/index/index.phtml:21
 #: ../../application/modules/admin/views/scripts/index/index.phtml:15
+#: ../../application/modules/admin/views/scripts/index/index.phtml:4
 msgid "Démonstrations vidéos"
 msgstr ""
 
@@ -8117,7 +8191,7 @@ msgid "Dépouillements"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:225
 ../../library/Class/AdminVar.php:226
-#: ../../library/Class/AdminVar.php:223
+#: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:242
 #, fuzzy
 msgid "Désactivation des suggestions d'achats"
 msgstr "Moderare alerte"
@@ -8130,11 +8204,13 @@ msgstr ""
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:313
 msgid "Désactiver la tâche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:293
 ../../library/Class/AdminVar.php:294
 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:297
+#: ../../library/Class/AdminVar.php:316
 msgid "Désactiver pour passer le site en maintenance"
 msgstr ""
 
@@ -8147,7 +8223,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:358
 ../../library/Class/AdminVar.php:359
 #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361
-#: ../../library/Class/AdminVar.php:364
+#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:383
 msgid ""
 "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les "
 "bibliothécaires peuvent donner leur avis"
@@ -8155,7 +8231,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:359
 ../../library/Class/AdminVar.php:360
 #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362
-#: ../../library/Class/AdminVar.php:365
+#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:384
 msgid ""
 "Désactivé: ne requiert pas d'identification pour saisir des  commentaires. "
 "<br /> Activé: requiert l'identification pour saisir des commentaires."
@@ -8363,6 +8439,10 @@ msgstr "Modificarea fiÅŸei dvs."
 msgid "Echec de la sauvegarde de la configuration de %s"
 msgstr ""
 
+#: ../../application/modules/admin/controllers/BibController.php:445
+msgid "Echec de la sauvegarde de la configuration des filtres par défaut"
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/planacces.phtml:84
 msgid "Echelle"
 msgstr "Scară"
@@ -8600,6 +8680,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:54
 msgid "En attente"
 msgstr ""
 
@@ -8935,6 +9016,7 @@ msgstr "Eroare"
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:156
 #: ../../application/modules/admin/controllers/IndexController.php:164
+#: ../../application/modules/admin/controllers/IndexController.php:155
 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur"
 msgstr ""
 
@@ -9069,6 +9151,7 @@ msgstr "Eroare"
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:111
 #: ../../application/modules/admin/controllers/IndexController.php:119
+#: ../../application/modules/admin/controllers/IndexController.php:110
 #, php-format
 msgid "Erreur(s) : %s, variable %s NON sauvegardée"
 msgstr ""
@@ -9136,18 +9219,22 @@ msgid "Erreurs"
 msgstr "Eroare"
 
 #: ../../library/Class/Systeme/Report.php:273
+#: ../../library/Class/Systeme/Report.php:277
 msgid "Espace disque libre"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:275
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Espace disque plein"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:274
+#: ../../library/Class/Systeme/Report.php:278
 msgid "Espace disque total"
 msgstr ""
 
 #: ../../library/Class/Systeme/Report.php:272
+#: ../../library/Class/Systeme/Report.php:276
 #, fuzzy
 msgid "Espace disque utilisé"
 msgstr "Temă"
@@ -9185,6 +9272,7 @@ msgstr "Stare"
 
 #: ../../library/Class/Systeme/Report.php:159
 #: ../../library/Class/Systeme/Report.php:162
+#: ../../library/Class/Systeme/Report.php:164
 #, fuzzy
 msgid "Etat de la communication"
 msgstr "An de publicare"
@@ -9194,6 +9282,7 @@ msgstr "An de publicare"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:53
 #: ../../application/modules/admin/views/scripts/index/index.phtml:42
 #: ../../application/modules/admin/views/scripts/index/index.phtml:36
+#: ../../application/modules/admin/views/scripts/index/index.phtml:25
 #, fuzzy
 msgid "Etat du site"
 msgstr "Export de coÅŸ"
@@ -9207,6 +9296,7 @@ msgstr "Export de coÅŸ"
 
 #: ../../library/Class/AdminVar.php:241
 ../../library/Class/AdminVar.php:242
 #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241
+#: ../../library/Class/AdminVar.php:260
 msgid ""
 "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" "
 "entre les mots saisis"
@@ -9225,6 +9315,7 @@ msgstr "Sunteţi sigur(ă) că vreţi să ştergeţi această rezervare?"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:321
 #, fuzzy
 msgid "Etes-vous sur de vouloir désactiver cette tâche ?"
 msgstr "Sunteţi sigur(ă) că vreţi să suprimaţi acest strat?"
@@ -9576,7 +9667,7 @@ msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare"
 
 #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415
 #: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417
-#: ../../library/Class/AdminVar.php:420
+#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439
 msgid ""
 "Facteur d'échantillonnage utilisé dans le redimensionnement et la "
 "compression des images."
@@ -9937,6 +10028,7 @@ msgstr "Acţiune"
 #: ../../library/Class/Systeme/Report.php:186
 #: ../../library/Class/Systeme/Report.php:189
 #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:62
+#: ../../library/Class/Systeme/Report.php:191
 #, fuzzy
 msgid "Fonctionnalités"
 msgstr "Actualităţi :"
@@ -9975,6 +10067,7 @@ msgstr "Fonduri"
 
 #: ../../library/Class/AdminVar.php:288
 ../../library/Class/AdminVar.php:289
 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288
+#: ../../library/Class/AdminVar.php:307
 msgid ""
 "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et "
 "la configuration appropriée du serveur Web"
@@ -10134,6 +10227,7 @@ msgid "Genres"
 msgstr "Genuri"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:115
 #, fuzzy
 msgid "Gestion des  droits"
 msgstr "Gestionare biblioteci"
@@ -10170,6 +10264,7 @@ msgstr "Gestionare utilizatori"
 
 #: ../../application/modules/admin/controllers/IndexController.php:64
 #: ../../application/modules/admin/controllers/IndexController.php:64
+#: ../../application/modules/admin/controllers/IndexController.php:55
 #, fuzzy
 msgid "Gestion des variables"
 msgstr "Gestionare biblioteci"
@@ -10189,7 +10284,7 @@ msgid "Gestionnaire de contenu"
 msgstr "Administrator de conţinut"
 
 #: ../../library/Class/AdminVar.php:171
 ../../library/Class/AdminVar.php:172
-#: ../../library/Class/AdminVar.php:169
+#: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:188
 msgid "Gln de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
@@ -10202,6 +10297,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:80
 #: ../../application/modules/admin/views/scripts/index/index.phtml:69
 #: ../../application/modules/admin/views/scripts/index/index.phtml:63
+#: ../../application/modules/admin/views/scripts/index/index.phtml:52
 msgid "Google group Bokeh"
 msgstr ""
 
@@ -10224,6 +10320,7 @@ msgid "Groupe \"%s\" supprimé"
 msgstr "Rezervări în curs"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:214
 msgid "Groupe créé pour ce test"
 msgstr ""
 
@@ -10258,6 +10355,7 @@ msgid "Groupes"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:225
 #, fuzzy, php-format
 msgid "Groupes : %s"
 msgstr "Sursă :"
@@ -10271,6 +10369,7 @@ msgid "Groupes destinataires"
 msgstr "Comentariu"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:152
 #, fuzzy
 msgid "Groupes qui ont accès à la ressource"
 msgstr "Gestionare a resurselor"
@@ -10346,6 +10445,7 @@ msgid "Généré pour la session d'activité %s"
 msgstr "la buletinul informativ"
 
 #: ../../library/Class/AdminVar.php:134
 ../../library/Class/AdminVar.php:135
+#: ../../library/Class/AdminVar.php:154
 msgid ""
 "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation "
 "de la bibliothèque numérique"
@@ -10361,6 +10461,7 @@ msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:146
 #, fuzzy
 msgid "Gérer les groupes"
 msgstr "Gestionare a resurselor"
@@ -10595,12 +10696,12 @@ msgid "ID"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:163
 ../../library/Class/AdminVar.php:164
-#: ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:180
 msgid "ID client Jamendo"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:164
 ../../library/Class/AdminVar.php:165
-#: ../../library/Class/AdminVar.php:162
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:181
 msgid "ID client SoundCloud"
 msgstr ""
 
@@ -10643,6 +10744,7 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:387
 ../../library/Class/AdminVar.php:388
 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:395
+#: ../../library/Class/AdminVar.php:414
 msgid "Id du connecteur Le Social"
 msgstr ""
 
@@ -10714,11 +10816,12 @@ msgid "Identifiant"
 msgstr "Nume de utilizator"
 
 #: ../../library/Class/AdminVar.php:149
 ../../library/Class/AdminVar.php:150
+#: ../../library/Class/AdminVar.php:169
 msgid "Identifiant SSO Cyberlibris"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:168
 ../../library/Class/AdminVar.php:169
-#: ../../library/Class/AdminVar.php:166
+#: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:185
 #, fuzzy
 msgid "Identifiant code bibliothèque Vodeclic"
 msgstr "Gestionare biblioteci"
@@ -10729,17 +10832,18 @@ msgid "Identifiant commence par"
 msgstr "Numele de utilizator începe cu     "
 
 #: ../../library/Class/AdminVar.php:194
 ../../library/Class/AdminVar.php:195
-#: ../../library/Class/AdminVar.php:192
+#: ../../library/Class/AdminVar.php:192 ../../library/Class/AdminVar.php:211
 msgid "Identifiant d'accès au serveur OAI Cité de la Musique"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:192
 ../../library/Class/AdminVar.php:193
-#: ../../library/Class/AdminVar.php:190
+#: ../../library/Class/AdminVar.php:190 ../../library/Class/AdminVar.php:209
 msgid "Identifiant du portail chez 1D touch"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:233
 ../../library/Class/AdminVar.php:234
 #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233
+#: ../../library/Class/AdminVar.php:252
 #, fuzzy
 msgid "Identifiant du project Redmine"
 msgstr "Numele de utilizator sau parola incorecte    "
@@ -10792,7 +10896,7 @@ msgid "Identifiant ou mot de passe incorrect."
 msgstr "Numele de utilizator sau parola incorecte    "
 
 #: ../../library/Class/AdminVar.php:167
 ../../library/Class/AdminVar.php:168
-#: ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:184
 msgid "Identifiant partenaire Vodeclic"
 msgstr ""
 
@@ -10804,6 +10908,7 @@ msgstr "Nume de utilizator"
 
 #: ../../library/Class/AdminVar.php:340
 ../../library/Class/AdminVar.php:341
 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:344
+#: ../../library/Class/AdminVar.php:363
 msgid ""
 "Identifiant unique (attention: la modification de cette variable impactera "
 "les outils de suivi de cette installation)"
@@ -10915,8 +11020,7 @@ msgstr "Nu mai există sub-nivel"
 msgid "Il n'y a plus de sous-niveau"
 msgstr "Nu mai există sub-nivel"
 
-#: ../../library/Class/NoticeOAI.php:230
-#: ../../library/Class/NoticeOAI.php:230
+#: ../../library/Class/NoticeOAI.php:230
 ../../library/Class/NoticeOAI.php:230
 msgid "Il n'y aucun mot assez significatif pour la recherche"
 msgstr "Nu există nici un cuvânt destul de semnifivativ pentru căutare"
 
@@ -10971,12 +11075,22 @@ msgstr "Imagine"
 msgid "Image de fond"
 msgstr "Imagine de fond"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:346
+#, fuzzy
+msgid "Image du type de document: "
+msgstr ", tip de document: %s"
+
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 #: ../../library/ZendAfi/Form/Configuration/JcarouselImgObject.php:37
 #, fuzzy
 msgid "Image par image"
 msgstr "Chioşc de instrucţiuni"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:374
+#, fuzzy, php-format
+msgid "Image source : %s"
+msgstr "Sursă :"
+
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 #: ../../application/modules/admin/views/scripts/album/import-ead.phtml:2
 #, fuzzy
@@ -11073,6 +11187,16 @@ msgstr ""
 msgid "Impossible d'afficher la carte"
 msgstr "Imposibil de afiÅŸat harta"
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:94
+#, fuzzy, php-format
+msgid "Impossible d'ajouter l'image \"%s\" à l'album \"%s\""
+msgstr "Imposibil de citit fluxul rss"
+
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:112
+#, fuzzy, php-format
+msgid "Impossible d'enregister l'image \"%s\" dans \"%s\""
+msgstr "Imposibil de găsit această adresă"
+
 #: ../../library/Class/UploadMover/LocalFile.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
 #: ../../library/Class/UploadMover/HttpPost.php:33
@@ -11154,6 +11278,11 @@ msgstr "Imposibil de citit fluxul rss"
 msgid "Impossible de trouver cette adresse"
 msgstr "Imposibil de găsit această adresă"
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:84
+#, fuzzy, php-format
+msgid "Impossible de télécharger l'image \"%s\" sur le serveur"
+msgstr "Imposibil de citit fluxul rss"
+
 #: ../../library/Class/Upload.php:68
 ../../library/Class/Upload.php:68
 #, fuzzy
 msgid ""
@@ -11536,6 +11665,7 @@ msgstr "Adaugă instrucţiunea în coş"
 
 #: ../../library/Class/AdminVar.php:314
 ../../library/Class/AdminVar.php:315
 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:318
+#: ../../library/Class/AdminVar.php:337
 msgid "Interdire la modification de la fiche abonne"
 msgstr ""
 
@@ -11676,24 +11806,27 @@ msgstr "Obiecte java-script"
 
 #: ../../library/Class/AdminVar.php:366
 ../../library/Class/AdminVar.php:367
 #: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369
-#: ../../library/Class/AdminVar.php:372
+#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:391
 msgid "Javascript code for statistics"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:281
 ../../library/Class/AdminVar.php:282
 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281
+#: ../../library/Class/AdminVar.php:300
 #, fuzzy
 msgid "Je ne veux plus recevoir cette lettre d'information"
 msgstr "Crearea unui buletin informativ"
 
 #: ../../application/modules/api/controllers/UserController.php:36
 #: ../../application/modules/api/controllers/UserController.php:36
+#: ../../application/modules/api/controllers/UserController.php:57
 #, fuzzy
 msgid "Jeton d'autorisation invalide"
 msgstr "Codul anti-spam este invalid."
 
 #: ../../application/modules/api/controllers/UserController.php:33
 #: ../../application/modules/api/controllers/UserController.php:33
+#: ../../application/modules/api/controllers/UserController.php:54
 msgid "Jeton d'autorisation non fourni"
 msgstr ""
 
@@ -11860,7 +11993,7 @@ msgid "L'album \"%s\" a été créé"
 msgstr ""
 
 #: ../../library/Class/Album.php:1133
 ../../library/Class/Album.php:1133
-#: ../../library/Class/Album.php:1138
+#: ../../library/Class/Album.php:1138 ../../library/Class/Album.php:1140
 msgid "L'album doit avoir un type de document"
 msgstr ""
 
@@ -11883,7 +12016,7 @@ msgid "L'annexe \"%s\" a été suppriméee"
 msgstr "Nu a fost găsit nici un articol"
 
 #: ../../library/Class/Album.php:1126
 ../../library/Class/Album.php:1126
-#: ../../library/Class/Album.php:1131
+#: ../../library/Class/Album.php:1131 ../../library/Class/Album.php:1133
 #, fuzzy, php-format
 msgid "L'année doit être comprise entre %s et %s"
 msgstr ""
@@ -12160,6 +12293,7 @@ msgid "La catégorie \"%s\" a été sauvegardée"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:86
+#: ../../application/modules/admin/controllers/IndexController.php:77
 #, php-format
 msgid "La clé \"%s\" n'existe pas."
 msgstr ""
@@ -12212,6 +12346,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:155
 #: ../../application/modules/admin/controllers/IndexController.php:163
+#: ../../application/modules/admin/controllers/IndexController.php:154
 msgid "La demande de mise à jour a été envoyée au serveur"
 msgstr ""
 
@@ -12374,7 +12509,7 @@ msgid "La taille du fichier doit être supérieur à \"%min%\""
 msgstr ""
 
 #: ../../library/Class/Upload.php:66 ../../library/Class/Upload.php:317
-#: ../../library/Class/Upload.php:317
+#: ../../library/Class/Upload.php:317 ../../library/Class/Upload.php:318
 msgid "La taille du fichier ne doit pas excéder "
 msgstr ""
 
@@ -12422,6 +12557,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
 #: ../../library/Class/Systeme/Report.php:221
 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:147
+#: ../../library/Class/Systeme/Report.php:223
 msgid "Label"
 msgstr ""
 
@@ -12609,6 +12745,7 @@ msgstr ""
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:133
 #: ../../application/modules/admin/controllers/IndexController.php:141
+#: ../../application/modules/admin/controllers/IndexController.php:132
 msgid "Le cache de Bokeh a été vidé"
 msgstr ""
 
@@ -12761,6 +12898,7 @@ msgid "Le fichier est trop petit : %s mo -> taille minimum attendue : %s mo"
 msgstr ""
 
 #: ../../library/Class/Upload.php:322
 ../../library/Class/Upload.php:322
+#: ../../library/Class/Upload.php:323
 msgid "Le fichier n'a pas de nom"
 msgstr ""
 
@@ -12769,6 +12907,7 @@ msgid "Le fichier n'a pu être téléchargé complètement"
 msgstr ""
 
 #: ../../library/Class/Upload.php:332
 ../../library/Class/Upload.php:332
+#: ../../library/Class/Upload.php:329
 #, php-format
 msgid "Le fichier n'est pas de type %s"
 msgstr ""
@@ -12804,6 +12943,7 @@ msgid "Le fichier reçu n'est pas valide"
 msgstr ""
 
 #: ../../library/Class/Upload.php:307
 ../../library/Class/Upload.php:307
+#: ../../library/Class/Upload.php:308
 msgid "Le fichier était vide ou un problème réseau est survenu"
 msgstr ""
 
@@ -12829,6 +12969,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:129
 ../../library/Class/AdminVar.php:130
+#: ../../library/Class/AdminVar.php:149
 msgid ""
 "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au "
 "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12837,6 +12978,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:252
 ../../library/Class/AdminVar.php:253
 #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252
+#: ../../library/Class/AdminVar.php:271
 msgid ""
 "Le gestionnaire de contenu affiche les articles sous forme de liste paginée "
 "au lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre "
@@ -12885,6 +13027,7 @@ msgid "Le modèle \"%s\" a été sauvegardé"
 msgstr "Nu a fost găsit nici un articol"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:288
 msgid "Le moissonnage n'est pas programmé"
 msgstr ""
 
@@ -13032,11 +13175,15 @@ msgid "Le territoire contient %s notices"
 msgstr "Teritoriul conţine %s instrucţiuni"
 
 #: ../../library/Class/Album.php:1131
 ../../library/Class/Album.php:1131
-#: ../../library/Class/Album.php:1136
+#: ../../library/Class/Album.php:1136 ../../library/Class/Album.php:1138
 #, fuzzy
 msgid "Le titre est obligatoire"
 msgstr "specificaţia este obligatorie."
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:377
+msgid "Le vignettage n'est pas testable sans album"
+msgstr ""
+
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 #: ../../application/modules/telephone/views/scripts/recherche/avis.phtml:14
 #, fuzzy
@@ -13060,7 +13207,7 @@ msgstr "Nu a fost găsit nici un articol"
 msgid "Les %s sélectionnés ont bien été supprimés"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:289
+#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:308
 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB."
 msgstr ""
 
@@ -13133,6 +13280,7 @@ msgstr "Rezultatele precedente"
 #: ../../application/modules/admin/controllers/BibController.php:450
 #: ../../application/modules/admin/controllers/BibController.php:445
 #: ../../application/modules/admin/controllers/BibController.php:446
+#: ../../application/modules/admin/controllers/BibController.php:447
 #, fuzzy
 msgid "Les filtres par défaut ont été sauvegardés."
 msgstr "Nu a fost găsit nici un articol"
@@ -13258,12 +13406,12 @@ msgstr "Întâlnirile"
 msgid "Les sites les plus récents"
 msgstr ""
 
-#: ../../library/Class/AdminVar.php:225
+#: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:244
 #, fuzzy
 msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris"
 msgstr "Puteţi selecta una sau mai multe biblioteci pentru a efectua o căutare"
 
-#: ../../library/Class/AdminVar.php:226
+#: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:245
 #, fuzzy
 msgid ""
 "Les utilisateurs peuvent recevoir les nouveautés de leurs recherches "
@@ -13271,7 +13419,7 @@ msgid ""
 msgstr "Puteţi selecta una sau mai multe biblioteci pentru a efectua o căutare"
 
 #: ../../library/Class/AdminVar.php:226
 ../../library/Class/AdminVar.php:227
-#: ../../library/Class/AdminVar.php:224
+#: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:243
 #, fuzzy
 msgid ""
 "Les utilisateurs peuvent sélectionner des bibliothèques favorites pour leurs "
@@ -13417,6 +13565,7 @@ msgstr "Specificaţie"
 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15
 #: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9
 #: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29
+#: ../../library/Class/Systeme/Report.php:189
 msgid "Libellé"
 msgstr "Specificaţie"
 
@@ -13456,6 +13605,7 @@ msgid "Libellé de la catégorie"
 msgstr "specificaţia conţine"
 
 #: ../../library/Class/AdminVar.php:138
 ../../library/Class/AdminVar.php:139
+#: ../../library/Class/AdminVar.php:158
 msgid "Libellé de regroupement des abonnés"
 msgstr ""
 
@@ -13520,18 +13670,21 @@ msgstr "Confirmaţi parola"
 
 #: ../../library/Class/AdminVar.php:319
 ../../library/Class/AdminVar.php:320
 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:323
+#: ../../library/Class/AdminVar.php:342
 #, fuzzy
 msgid "Libellé pour la Dewey"
 msgstr "Specificaţie"
 
 #: ../../library/Class/AdminVar.php:318
 ../../library/Class/AdminVar.php:319
 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:322
+#: ../../library/Class/AdminVar.php:341
 #, fuzzy
 msgid "Libellé pour la PCDM4"
 msgstr "Specificaţie"
 
 #: ../../library/Class/Systeme/Report.php:88
 #: ../../library/Class/Systeme/Report.php:91
+#: ../../library/Class/Systeme/Report.php:93
 #, fuzzy
 msgid "Libellé principal"
 msgstr "Modificare titlu coÅŸ"
@@ -13606,6 +13759,7 @@ msgstr "Link permanent"
 
 #: ../../library/Class/AdminVar.php:279
 ../../library/Class/AdminVar.php:280
 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279
+#: ../../library/Class/AdminVar.php:298
 #, fuzzy
 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}"
 msgstr "la buletinul informativ"
@@ -14089,7 +14243,7 @@ msgid "Liste de valeurs"
 msgstr "Aviz asupra instrucţiunilor"
 
 #: ../../library/Class/AdminVar.php:175
 ../../library/Class/AdminVar.php:176
-#: ../../library/Class/AdminVar.php:173
+#: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:192
 msgid ""
 "Liste des adresses IP publiques autorisées pour la consultation des documents"
 msgstr ""
@@ -14121,6 +14275,7 @@ msgstr "Adaugă o categorie"
 
 #: ../../library/Class/AdminVar.php:317
 ../../library/Class/AdminVar.php:318
 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:321
+#: ../../library/Class/AdminVar.php:340
 msgid ""
 "Liste des champs que l'utilisateur peux modifier. <br/>Ex: nom;prenom;pseudo;"
 "adresse;<br/>code_postal;ville;mail;is_contact_mail;<br/>telephone;"
@@ -14129,6 +14284,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:330
 ../../library/Class/AdminVar.php:331
 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:334
+#: ../../library/Class/AdminVar.php:353
 msgid ""
 "Liste des codes des facettes qui ne sont pas limitées à l'affichage dans le "
 "résultat de recherche<br/>Exemple : T => Type de doc, Y => Annexe, B => "
@@ -14137,6 +14293,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:299
 ../../library/Class/AdminVar.php:300
 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:303
+#: ../../library/Class/AdminVar.php:322
 msgid ""
 "Liste des codes langue utilisées en plus du français séparées par des ;. "
 "Exemple: en;ro;es"
@@ -14155,7 +14312,7 @@ msgstr "Lista ultimelor fluxuri RSS adăugate"
 
 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403
 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405
-#: ../../library/Class/AdminVar.php:408
+#: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427
 msgid ""
 "Liste des dimensions disponibles pour retailler les images lors de l'import."
 msgstr ""
@@ -14175,19 +14332,19 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399
 #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401
-#: ../../library/Class/AdminVar.php:404
+#: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423
 #, fuzzy
 msgid "Liste des extensions de fichiers disponibles à l'import."
 msgstr "Câmpuri disponibile"
 
 #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406
 #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408
-#: ../../library/Class/AdminVar.php:411
+#: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430
 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411
-#: ../../library/Class/AdminVar.php:414
+#: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433
 msgid ""
 "Liste des extensions susceptibles d'être sélectionnées pour enrichir un "
 "contenu."
@@ -14200,6 +14357,7 @@ msgstr "Rezervări de instrucţiuni"
 
 #: ../../library/Class/AdminVar.php:244
 ../../library/Class/AdminVar.php:245
 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244
+#: ../../library/Class/AdminVar.php:263
 #, php-format
 msgid ""
 "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera "
@@ -14208,6 +14366,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:342
 ../../library/Class/AdminVar.php:343
 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:346
+#: ../../library/Class/AdminVar.php:365
 msgid "Liste des tags à ajouter au rapport d'état du système"
 msgstr ""
 
@@ -14324,21 +14483,23 @@ msgid "Login"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:223
 #, fuzzy, php-format
 msgid "Login : %s"
 msgstr "Cota : %s"
 
 #: ../../library/Class/AdminVar.php:151
 ../../library/Class/AdminVar.php:152
+#: ../../library/Class/AdminVar.php:171
 msgid "Login ARTE VOD"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:213
 ../../library/Class/AdminVar.php:214
-#: ../../library/Class/AdminVar.php:211
+#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:230
 msgid "Login du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:217
 ../../library/Class/AdminVar.php:218
-#: ../../library/Class/AdminVar.php:215
+#: ../../library/Class/AdminVar.php:215 ../../library/Class/AdminVar.php:234
 msgid "Login du portail fourni par Premier-Chapitre."
 msgstr ""
 
@@ -14779,7 +14940,7 @@ msgid "Message au-dessous du champ de recherche"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:183
 ../../library/Class/AdminVar.php:184
-#: ../../library/Class/AdminVar.php:181
+#: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:200
 msgid "Message d'avertissement affiché sur la popup d'emprunt"
 msgstr ""
 
@@ -14943,6 +15104,7 @@ msgstr "Actualizare a localizării"
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104
 #: ../../application/modules/admin/controllers/IndexController.php:152
 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101
+#: ../../application/modules/admin/controllers/IndexController.php:143
 #, fuzzy
 msgid "Mise à jour de la charte graphique"
 msgstr "Actualizare a localizării"
@@ -15202,6 +15364,8 @@ msgstr "Modificare"
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:165
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
 #, fuzzy, php-format
 msgid "Modifier \"%s\""
 msgstr "Modificare bibliotecă: %s"
@@ -15367,6 +15531,7 @@ msgstr "Modifică fişa mea"
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:94
 #: ../../application/modules/admin/controllers/IndexController.php:102
+#: ../../application/modules/admin/controllers/IndexController.php:93
 #, fuzzy, php-format
 msgid "Modifier la variable: %s"
 msgstr "Modificare bibliotecă: %s"
@@ -15738,7 +15903,7 @@ msgstr "Moderare alerte"
 
 #: ../../library/Class/AdminVar.php:357
 ../../library/Class/AdminVar.php:358
 #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360
-#: ../../library/Class/AdminVar.php:363
+#: ../../library/Class/AdminVar.php:363 ../../library/Class/AdminVar.php:382
 msgid ""
 "Modération des avis des bibliothécaires.<br />  Désactivé: affichage sans "
 "attente de validation<br /> Activé: affichage seulement après validation"
@@ -15746,7 +15911,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:356
 ../../library/Class/AdminVar.php:357
 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359
-#: ../../library/Class/AdminVar.php:362
+#: ../../library/Class/AdminVar.php:362 ../../library/Class/AdminVar.php:381
 msgid ""
 "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente "
 "de validation<br /> Activé : affichage seulement après validation."
@@ -15948,23 +16113,24 @@ msgid "Mot de passe"
 msgstr "Parolă"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:224
 #, fuzzy, php-format
 msgid "Mot de passe : %s"
 msgstr "Parolă"
 
 #: ../../library/Class/AdminVar.php:179
 ../../library/Class/AdminVar.php:180
-#: ../../library/Class/AdminVar.php:177
+#: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:196
 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:199
 ../../library/Class/AdminVar.php:200
-#: ../../library/Class/AdminVar.php:197
+#: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:216
 #, fuzzy
 msgid "Mot de passe de l'utilisateur Orphea"
 msgstr "Gestionare utilizatori"
 
 #: ../../library/Class/AdminVar.php:172
 ../../library/Class/AdminVar.php:173
-#: ../../library/Class/AdminVar.php:170
+#: ../../library/Class/AdminVar.php:170 ../../library/Class/AdminVar.php:189
 msgid "Mot de passe de la collectivité, il est fourni par Dilicom."
 msgstr ""
 
@@ -16064,8 +16230,7 @@ msgstr "Sitotecă"
 msgid "N'envoie pas de données"
 msgstr "Nu trimite date"
 
-#: ../../library/Class/FRBR/Link.php:160
-#: ../../library/Class/FRBR/Link.php:162
+#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162
 #: ../../library/Class/FRBR/Link.php:162
 msgid "N'est pas une url valide"
 msgstr ""
@@ -16165,6 +16330,7 @@ msgid "Ne pas créer de nouveau dossier"
 msgstr "coÅŸ nou"
 
 #: ../../library/Class/AdminVar.php:131
 ../../library/Class/AdminVar.php:132
+#: ../../library/Class/AdminVar.php:151
 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi"
 msgstr ""
 
@@ -16408,6 +16574,7 @@ msgid "Nom :"
 msgstr "Nume :"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:216
 #, fuzzy, php-format
 msgid "Nom : %s"
 msgstr "Nume :"
@@ -16420,12 +16587,14 @@ msgstr "Numele începe cu"
 #: ../../application/modules/admin/controllers/IndexController.php:175
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:194
+#: ../../application/modules/admin/controllers/IndexController.php:185
 #, fuzzy
 msgid "Nom d'utilisateur ou mot de passe invalide"
 msgstr "Numele de utilizator sau parola incorecte    "
 
 #: ../../library/Class/AdminVar.php:247
 ../../library/Class/AdminVar.php:248
 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247
+#: ../../library/Class/AdminVar.php:266
 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr"
 msgstr ""
 
@@ -16436,7 +16605,7 @@ msgid "Nom de famille"
 msgstr "Vedeţi instrucţiunea"
 
 #: ../../library/Class/AdminVar.php:198
 ../../library/Class/AdminVar.php:199
-#: ../../library/Class/AdminVar.php:196
+#: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:215
 #, fuzzy
 msgid "Nom de l'utilisateur Orphea"
 msgstr "Utilizatori"
@@ -16450,10 +16619,12 @@ msgstr "Plan al bibliotecii: %s"
 
 #: ../../library/Class/AdminVar.php:294
 ../../library/Class/AdminVar.php:295
 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:298
+#: ../../library/Class/AdminVar.php:317
 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:127
 #, fuzzy, php-format
 msgid "Nom de la permission à donner : \"%s\""
 msgstr "Nu aţi introdus un nume de utilizator."
@@ -16463,6 +16634,7 @@ msgstr "Nu aţi introdus un nume de utilizator."
 #: ../../application/modules/admin/views/scripts/index/index.phtml:54
 #: ../../application/modules/admin/views/scripts/index/index.phtml:43
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
+#: ../../application/modules/admin/views/scripts/index/index.phtml:26
 #, fuzzy
 msgid "Nom du domaine"
 msgstr "Export de coÅŸ"
@@ -16486,6 +16658,7 @@ msgstr "Numele responsabilului"
 
 #: ../../library/Class/AdminVar.php:245
 ../../library/Class/AdminVar.php:246
 #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245
+#: ../../library/Class/AdminVar.php:264
 #, fuzzy
 msgid "Nom du site"
 msgstr "Export de coÅŸ"
@@ -16522,6 +16695,7 @@ msgstr "Chioşc de instrucţiuni"
 
 #: ../../library/Class/Systeme/Report.php:187
 #: ../../library/Class/Systeme/Report.php:190
+#: ../../library/Class/Systeme/Report.php:192
 #, fuzzy
 msgid "Nombre d'albums"
 msgstr "Categorie înrudită"
@@ -16531,6 +16705,11 @@ msgstr "Categorie înrudită"
 msgid "Nombre d'albums présents : %d"
 msgstr "Categorie înrudită"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:366
+#, fuzzy, php-format
+msgid "Nombre d'albums présents dans Bokeh : %d"
+msgstr "Categorie înrudită"
+
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5
 #, fuzzy
@@ -16577,6 +16756,7 @@ msgstr "Număr de diviziuni"
 
 #: ../../library/Class/AdminVar.php:289
 ../../library/Class/AdminVar.php:290
 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:293
+#: ../../library/Class/AdminVar.php:312
 #, fuzzy
 msgid "Nombre d'avis maximum à afficher par utilisateur."
 msgstr "Întoarcere la listă"
@@ -16664,19 +16844,19 @@ msgstr "Număr de diviziuni"
 
 #: ../../library/Class/AdminVar.php:348
 ../../library/Class/AdminVar.php:349
 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351
-#: ../../library/Class/AdminVar.php:354
+#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:373
 msgid "Nombre de caractères maximum autorisé à saisir dans les avis."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:350
 ../../library/Class/AdminVar.php:351
 #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353
-#: ../../library/Class/AdminVar.php:356
+#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:375
 msgid "Nombre de caractères maximum à afficher dans le bloc critiques."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:349
 ../../library/Class/AdminVar.php:350
 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352
-#: ../../library/Class/AdminVar.php:355
+#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:374
 msgid "Nombre de caractères minimum autorisé à saisir dans les avis."
 msgstr ""
 
@@ -16743,7 +16923,7 @@ msgstr "Moderare alerte"
 
 #: ../../library/Class/AdminVar.php:360
 ../../library/Class/AdminVar.php:361
 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363
-#: ../../library/Class/AdminVar.php:366
+#: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:385
 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site"
 msgstr ""
 
@@ -16755,6 +16935,7 @@ msgid "Nombre de jours restant sur la licence"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:154
 #, fuzzy
 msgid "Nombre de membres"
 msgstr "Situaţi ca exemplar"
@@ -16772,6 +16953,11 @@ msgstr "Chioşc de instrucţiuni"
 msgid "Nombre de notices par page"
 msgstr "Chioşc de instrucţiuni"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:393
+#, fuzzy, php-format
+msgid "Nombre de notices présentes dans Bokeh : %d"
+msgstr "Chioşc de instrucţiuni"
+
 #: ../../library/ZendAfi/View/Helper/RenderSession.php:110
 #: ../../library/Class/SessionActivity.php:482
 #: ../../library/Class/SessionActivity.php:482
@@ -16802,13 +16988,13 @@ msgid "Nombre de prêts simultanés"
 msgstr "Număr de diviziuni"
 
 #: ../../library/Class/AdminVar.php:182
 ../../library/Class/AdminVar.php:183
-#: ../../library/Class/AdminVar.php:180
+#: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:199
 msgid ""
 "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:181
 ../../library/Class/AdminVar.php:182
-#: ../../library/Class/AdminVar.php:179
+#: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:198
 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom"
 msgstr ""
 
@@ -16891,6 +17077,7 @@ msgstr "Număr de diviziuni"
 
 #: ../../library/Class/AdminVar.php:253
 ../../library/Class/AdminVar.php:254
 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253
+#: ../../library/Class/AdminVar.php:272
 msgid "Nombre maximum d'articles  en sélection multiple"
 msgstr ""
 
@@ -16955,6 +17142,7 @@ msgstr "Chioşc de instrucţiuni"
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12
+#: ../../library/Class/Systeme/Report.php:279
 #, fuzzy
 msgid "Non"
 msgstr "Nume"
@@ -17467,6 +17655,7 @@ msgstr "Vedeţi instrucţiunea"
 
 #: ../../library/Class/AdminVar.php:295
 ../../library/Class/AdminVar.php:296
 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:299
+#: ../../library/Class/AdminVar.php:318
 msgid ""
 "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader."
 "readspeaker.com\">http://webreader.readspeaker.com</a>"
@@ -17772,6 +17961,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11
 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5
 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5
+#: ../../library/Class/Systeme/Report.php:279
 msgid "Oui"
 msgstr ""
 
@@ -17888,9 +18078,13 @@ msgstr "Selecţie de biblioteci"
 msgid "Où le trouver dans mes bibliothèques favorites"
 msgstr "Gestionare biblioteci"
 
+#: ../../library/Class/Systeme/Report.php:83
+msgid "PHP"
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:367
 ../../library/Class/AdminVar.php:368
 #: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370
-#: ../../library/Class/AdminVar.php:373
+#: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:392
 msgid "PIWIK authentication token for widgets"
 msgstr ""
 
@@ -17979,8 +18173,7 @@ msgstr ""
 msgid "Page: "
 msgstr ""
 
-#: ../../library/Class/NoticeHtml.php:82
-#: ../../library/Class/NoticeHtml.php:82
+#: ../../library/Class/NoticeHtml.php:82
 ../../library/Class/NoticeHtml.php:82
 msgid "Pagination"
 msgstr "Paginaţie"
 
@@ -18163,7 +18356,7 @@ msgid "Paramètrage du tableau des exemplaires"
 msgstr "Proprietăţile modulului"
 
 #: ../../library/Class/AdminVar.php:200
 ../../library/Class/AdminVar.php:201
-#: ../../library/Class/AdminVar.php:198
+#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:217
 msgid ""
 "Paramètre permettant de choisir la langue des des ressources. La liste des "
 "codes disponibles se trouve à cette adresse http://help.orphea.com/43/"
@@ -18180,6 +18373,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:26
 #: ../../application/modules/admin/views/scripts/index/index.phtml:20
+#: ../../application/modules/admin/views/scripts/index/index.phtml:9
 msgid "Paramètres du site"
 msgstr "Parametrii site-ului"
 
@@ -18188,12 +18382,15 @@ msgid "Paramètres manquants dans la requête de suppression"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:110
 msgid "Paramétrage"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146
 ../../library/Class/AdminVar.php:145
 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147
+#: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:165
+#: ../../library/Class/AdminVar.php:166
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Numilog\">Numilog</a>"
@@ -18201,6 +18398,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:156
 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:157
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:176
 msgid ""
 "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/"
 "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>"
@@ -18212,7 +18410,10 @@ msgstr ""
 #: ../../library/Class/AdminVar.php:143
 ../../library/Class/AdminVar.php:137
 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:140
 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:143
-#: ../../library/Class/AdminVar.php:144
+#: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:156
+#: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:159
+#: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:161
+#: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:163
 msgid "Paramétrage CVS"
 msgstr ""
 
@@ -18258,6 +18459,7 @@ msgstr "Număr de diviziuni"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:77
 #: ../../application/modules/admin/views/scripts/index/index.phtml:66
 #: ../../application/modules/admin/views/scripts/index/index.phtml:60
+#: ../../application/modules/admin/views/scripts/index/index.phtml:49
 msgid "Participez à la communauté"
 msgstr ""
 
@@ -18329,12 +18531,12 @@ msgid "Pas encore de nouveauté."
 msgstr "Dată noutăţi"
 
 #: ../../library/Class/AdminVar.php:214
 ../../library/Class/AdminVar.php:215
-#: ../../library/Class/AdminVar.php:212
+#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:231
 msgid "Password du portail fourni par Kidilangues."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:218
 ../../library/Class/AdminVar.php:219
-#: ../../library/Class/AdminVar.php:216
+#: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:235
 msgid "Password du portail fourni par Premier-Chapitre"
 msgstr ""
 
@@ -18641,6 +18843,7 @@ msgstr "Plan de acces"
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:301
 #, fuzzy
 msgid "Planification"
 msgstr "Publicare"
@@ -18666,6 +18869,7 @@ msgstr "Modificare bibliotecă: %s"
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:326
 msgid "Plannifier la tâche"
 msgstr ""
 
@@ -18736,6 +18940,7 @@ msgstr "Punct"
 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171
 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460
 #: ../../library/Class/AdminVar.php:465 ../../library/Class/AdminVar.php:468
+#: ../../library/Class/AdminVar.php:487
 msgid "Portail"
 msgstr "Portal"
 
@@ -18745,6 +18950,7 @@ msgstr "Portal"
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185
 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187
 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239
+#: ../../library/Class/AdminVar.php:258
 #, fuzzy
 msgid "Position"
 msgstr "Paginaţie"
@@ -18759,6 +18965,7 @@ msgstr "Rezultatul căutarii"
 
 #: ../../library/Class/AdminVar.php:238
 ../../library/Class/AdminVar.php:239
 #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238
+#: ../../library/Class/AdminVar.php:257
 #, fuzzy
 msgid "Position de la pagination en résultat de recherche"
 msgstr "Rezultatul căutarii"
@@ -19019,6 +19226,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:275
 ../../library/Class/AdminVar.php:276
 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275
+#: ../../library/Class/AdminVar.php:294
 msgid ""
 "Profil de la page de désinscription<br/>Par défaut : page d'accueil du "
 "portail"
@@ -19250,6 +19458,7 @@ msgid "Protocole HTTP obligatoire"
 msgstr ""
 
 #: ../../application/modules/api/controllers/UserController.php:26
+#: ../../application/modules/api/controllers/UserController.php:47
 msgid "Protocole HTTPS obligatoire"
 msgstr ""
 
@@ -19397,7 +19606,7 @@ msgid "Présentation"
 msgstr "Rezervări în curs"
 
 #: ../../library/Class/AdminVar.php:224
 ../../library/Class/AdminVar.php:225
-#: ../../library/Class/AdminVar.php:222
+#: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:241
 msgid ""
 "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par "
 "défaut 30 jours)."
@@ -19445,8 +19654,7 @@ msgstr "Rezultatul căutarii"
 msgid "Prêt"
 msgstr "ÃŽmprumut"
 
-#: ../../library/Class/User/Cards.php:67
-#: ../../library/Class/User/Cards.php:67
+#: ../../library/Class/User/Cards.php:67
 ../../library/Class/User/Cards.php:67
 #, fuzzy
 msgid "Prêt introuvable"
 msgstr "Utilizator"
@@ -20010,6 +20218,7 @@ msgstr "Resurse OAI"
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:58
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:57
 msgid "Rejetée"
 msgstr ""
 
@@ -20047,6 +20256,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:336
 ../../library/Class/AdminVar.php:337
 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:340
+#: ../../library/Class/AdminVar.php:359
 #, php-format
 msgid ""
 "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous "
@@ -20688,8 +20898,7 @@ msgstr ""
 msgid "Réservation interdite pour l'abonné."
 msgstr "Rezervări în curs"
 
-#: ../../library/Class/User/Cards.php:77
-#: ../../library/Class/User/Cards.php:77
+#: ../../library/Class/User/Cards.php:77
 ../../library/Class/User/Cards.php:77
 #, fuzzy
 msgid "Réservation introuvable"
 msgstr "Rezervări de instrucţiuni"
@@ -20947,6 +21156,7 @@ msgstr ""
 #: ../../application/modules/admin/views/scripts/index/index.phtml:85
 #: ../../application/modules/admin/views/scripts/index/index.phtml:74
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
+#: ../../application/modules/admin/views/scripts/index/index.phtml:57
 msgid "Salle de discussion #Bokeh"
 msgstr ""
 
@@ -21125,7 +21335,7 @@ msgid ""
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:177
 ../../library/Class/AdminVar.php:178
-#: ../../library/Class/AdminVar.php:175
+#: ../../library/Class/AdminVar.php:175 ../../library/Class/AdminVar.php:194
 msgid "Serveur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
@@ -21245,13 +21455,13 @@ msgid "Session non trouvée"
 msgstr "Lucrarea nu a fost găsită"
 
 #: ../../library/Class/AdminVar.php:195
 ../../library/Class/AdminVar.php:196
-#: ../../library/Class/AdminVar.php:193
+#: ../../library/Class/AdminVar.php:193 ../../library/Class/AdminVar.php:212
 msgid "Sets du serveur OAI Cité de la Musique à moissonner"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:374
 ../../library/Class/AdminVar.php:375
 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377
-#: ../../library/Class/AdminVar.php:380
+#: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:399
 msgid ""
 "Seuil d'alerte en heures pour détecter que les traitements d'intégration "
 "prennent trop de temps. Par défaut: 2"
@@ -21345,6 +21555,7 @@ msgstr "Rezervări în curs"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:79
 #: ../../application/modules/admin/views/scripts/index/index.phtml:68
 #: ../../application/modules/admin/views/scripts/index/index.phtml:62
+#: ../../application/modules/admin/views/scripts/index/index.phtml:51
 #, fuzzy
 msgid "Site communautaire"
 msgstr "Consultare"
@@ -21830,6 +22041,7 @@ msgstr "Ștergeţi această rezervare"
 
 #: ../../library/Class/AdminVar.php:298
 ../../library/Class/AdminVar.php:299
 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:302
+#: ../../library/Class/AdminVar.php:321
 msgid ""
 "Supprime l'affichage du lien d'enregistrement dans les différents "
 "formulaires de connexion et interdit l'enregistrement d'utilisateurs"
@@ -22323,6 +22535,7 @@ msgstr "Tag(uri)"
 #: ../../library/ZendAfi/Form/Album.php:205
 #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:55
 #: ../../library/ZendAfi/Form/Album.php:204
+#: ../../library/Class/Systeme/Report.php:95
 msgid "Tags"
 msgstr "Taguri"
 
@@ -22362,7 +22575,7 @@ msgstr "Dimensiune :"
 
 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396
 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398
-#: ../../library/Class/AdminVar.php:401
+#: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420
 msgid "Taille du dossier userfiles en méga octets."
 msgstr ""
 
@@ -22392,6 +22605,11 @@ msgstr "Validare selecţie"
 msgid "Temps de traitement "
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:372
+#, php-format
+msgid "Tentative de vignettage de l'album \"%s\" : "
+msgstr ""
+
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:67
 #: ../../application/modules/admin/views/scripts/bib/_form.phtml:71
 #: ../../application/modules/admin/views/scripts/zone/_form.phtml:14
@@ -22523,6 +22741,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:297
 ../../library/Class/AdminVar.php:298
 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:301
+#: ../../library/Class/AdminVar.php:320
 msgid "Texte d'aide affiché dans la fiche abonné"
 msgstr ""
 
@@ -22551,6 +22770,7 @@ msgstr "Eroare de configurare"
 
 #: ../../library/Class/AdminVar.php:280
 ../../library/Class/AdminVar.php:281
 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280
+#: ../../library/Class/AdminVar.php:299
 msgid ""
 "Texte de désinscription version HTML<br/>Le lien de désinscription est "
 "appliqué sur tout ce texte<br/>Par défaut : Je ne veux plus recevoir cette "
@@ -22559,6 +22779,7 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:278
 ../../library/Class/AdminVar.php:279
 #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278
+#: ../../library/Class/AdminVar.php:297
 msgid ""
 "Texte de désinscription version texte<br/>Le lien est inséré à la place de "
 "{{URL}}<br/>Par défaut : Lien pour se désinscrire de cette lettre "
@@ -22572,11 +22793,13 @@ msgstr ""
 
 #: ../../library/Class/AdminVar.php:292
 ../../library/Class/AdminVar.php:293
 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:296
+#: ../../library/Class/AdminVar.php:315
 msgid "Texte visible après l'envoi d'e-mail de demande de réservation."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:291
 ../../library/Class/AdminVar.php:292
 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:295
+#: ../../library/Class/AdminVar.php:314
 msgid "Texte visible par l'internaute après son inscription."
 msgstr ""
 
@@ -22617,6 +22840,7 @@ msgstr "Temă"
 
 #: ../../library/Class/Systeme/Report.php:89
 #: ../../library/Class/Systeme/Report.php:92
+#: ../../library/Class/Systeme/Report.php:94
 #, fuzzy
 msgid "Thèmes utilisés"
 msgstr "Temă"
@@ -22975,6 +23199,8 @@ msgstr "Toţi"
 #: ../../library/ZendAfi/Form/Configuration/Widget/Search.php:93
 #: ../../library/ZendAfi/View/Helper/TreeView.php:74
 #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38
+#: ../../library/Class/Systeme/Report.php:127
+#: ../../library/Class/Systeme/Report.php:148
 msgid "Tous"
 msgstr "Toţi"
 
@@ -23214,6 +23440,7 @@ msgid "Transfert impossible, champ de fichier introuvable"
 msgstr ""
 
 #: ../../library/Class/Upload.php:312
 ../../library/Class/Upload.php:312
+#: ../../library/Class/Upload.php:313
 msgid ""
 "Transfert impossible, le répertoire de destination n'a pas pu être créé."
 msgstr ""
@@ -23289,6 +23516,7 @@ msgstr ""
 #: ../../library/ZendAfi/Form/Configuration/Widget/RSS.php:29
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:382
 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/Models.php:30
+#: ../../library/Class/Systeme/Report.php:162
 msgid "Type"
 msgstr "Tip"
 
@@ -23314,7 +23542,7 @@ msgid "Type d'interface"
 msgstr "Tip de interfaţă"
 
 #: ../../library/Class/AdminVar.php:188
 ../../library/Class/AdminVar.php:189
-#: ../../library/Class/AdminVar.php:186
+#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:205
 #, fuzzy
 msgid "Type de SSO OneDTouch"
 msgstr "Tip de doc."
@@ -23738,9 +23966,15 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55
 #: ../../library/Class/Systeme/Report.php:161
 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36
+#: ../../library/Class/Systeme/Report.php:163
 msgid "URL"
 msgstr ""
 
+#: ../../library/Class/WebService/BibNumerique/Vignette.php:79
+#, php-format
+msgid "URL \"%s\" invalide"
+msgstr ""
+
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 #: ../../library/ZendAfi/Form/FRBR/Link.php:30
 msgid "URL Objet A"
@@ -23752,11 +23986,13 @@ msgid "URL Objet B"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:238
 #, php-format
 msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\""
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259
 #, php-format
 msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\""
 msgstr ""
@@ -23769,6 +24005,7 @@ msgstr "Biografii"
 
 #: ../../library/Class/AdminVar.php:311
 ../../library/Class/AdminVar.php:312
 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:315
+#: ../../library/Class/AdminVar.php:334
 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk"
 msgstr ""
 
@@ -23799,13 +24036,25 @@ msgstr ""
 msgid "URL de la vignette"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:339
+msgid "URL de moissonnage générée pour la première page"
+msgstr ""
+
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#, php-format
+msgid ""
+"URL de validation du ticket de connexion générée pour l'utilisateur \"%s\""
+msgstr ""
+
 #: ../../library/Class/AdminVar.php:341
 ../../library/Class/AdminVar.php:342
 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:345
+#: ../../library/Class/AdminVar.php:364
 msgid "URL destinataire du rapport d'état du système (0 pour désactiver)"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:307
 ../../library/Class/AdminVar.php:308
 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:311
+#: ../../library/Class/AdminVar.php:330
 msgid "URL du javascript Babelthèque à insérer dans l'OPAC"
 msgstr ""
 
@@ -23824,13 +24073,11 @@ msgstr "ÅŸi profil"
 msgid "URL du site web"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:159
-#: ../../library/Class/FRBR/Link.php:159
+#: ../../library/Class/FRBR/Link.php:159
 ../../library/Class/FRBR/Link.php:159
 msgid "URL objet A est requis"
 msgstr ""
 
-#: ../../library/Class/FRBR/Link.php:161
-#: ../../library/Class/FRBR/Link.php:161
+#: ../../library/Class/FRBR/Link.php:161
 ../../library/Class/FRBR/Link.php:161
 msgid "URL objet B est requis"
 msgstr ""
 
@@ -23842,6 +24089,7 @@ msgstr "Câmpuri selectate"
 
 #: ../../library/Class/Systeme/Report.php:87
 #: ../../library/Class/Systeme/Report.php:90
+#: ../../library/Class/Systeme/Report.php:92
 #, fuzzy
 msgid "URL principale"
 msgstr "Modificare titlu coÅŸ"
@@ -23916,10 +24164,9 @@ msgid "Un libellé est requis"
 msgstr "specificaţia este obligatorie."
 
 #: ../../library/Class/Users.php:1142
 ../../library/Class/Users.php:1142
-#: ../../library/Class/User/LostPass.php:110
-#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130
-#: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1137
-#: ../../library/Class/Users.php:1158
+#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151
+#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133
+#: ../../library/Class/Users.php:1137 ../../library/Class/Users.php:1158
 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion."
 msgstr "Tocmai v-a fost trimis un email cu datele dvs. de conectare."
 
@@ -24133,6 +24380,7 @@ msgstr "Plan de acces"
 
 #: ../../library/Class/AdminVar.php:316
 ../../library/Class/AdminVar.php:317
 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:320
+#: ../../library/Class/AdminVar.php:339
 msgid "Url d'import d'un agenda TYPO3"
 msgstr ""
 
@@ -24143,6 +24391,7 @@ msgstr "Adaugă resurse"
 
 #: ../../library/Class/AdminVar.php:246
 ../../library/Class/AdminVar.php:247
 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246
+#: ../../library/Class/AdminVar.php:265
 #, fuzzy
 msgid "Url de recherche"
 msgstr "Tip de căutare"
@@ -24150,6 +24399,7 @@ msgstr "Tip de căutare"
 #: ../../library/Class/AdminVar.php:386
 ../../library/Class/AdminVar.php:387
 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386
 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:394
+#: ../../library/Class/AdminVar.php:413
 msgid "Url du connecteur Le Social"
 msgstr ""
 
@@ -24160,17 +24410,19 @@ msgstr "Export de coÅŸ"
 
 #: ../../library/Class/AdminVar.php:232
 ../../library/Class/AdminVar.php:233
 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232
+#: ../../library/Class/AdminVar.php:251
 #, fuzzy
 msgid "Url du proxy Redmine"
 msgstr "Numele de utilizator sau parola incorecte    "
 
 #: ../../library/Class/AdminVar.php:174
 ../../library/Class/AdminVar.php:175
-#: ../../library/Class/AdminVar.php:172
+#: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:191
 msgid "Url du serveur PNB Dilicom"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:231
 ../../library/Class/AdminVar.php:232
 #: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231
+#: ../../library/Class/AdminVar.php:250
 msgid "Url du serveur redmine"
 msgstr ""
 
@@ -24206,7 +24458,7 @@ msgid "Utilisateur"
 msgstr "Utilizator"
 
 #: ../../library/Class/AdminVar.php:178
 ../../library/Class/AdminVar.php:179
-#: ../../library/Class/AdminVar.php:176
+#: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:195
 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom"
 msgstr ""
 
@@ -24223,6 +24475,7 @@ msgid "Utilisateur courant : %s"
 msgstr "CoÅŸurile dvs. de documente"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221
 #, fuzzy
 msgid "Utilisateur créé pour ce test"
 msgstr "CoÅŸurile dvs. de documente"
@@ -24243,12 +24496,14 @@ msgstr "Utilizator"
 #: ../../application/modules/admin/controllers/IndexController.php:170
 #: ../../application/modules/admin/controllers/UsersController.php:117
 #: ../../application/modules/admin/controllers/IndexController.php:178
+#: ../../application/modules/admin/controllers/IndexController.php:169
 #, fuzzy
 msgid "Utilisateur invalide"
 msgstr "Utilizator"
 
 #: ../../application/modules/api/controllers/UserController.php:39
 #: ../../application/modules/api/controllers/UserController.php:39
+#: ../../application/modules/api/controllers/UserController.php:60
 #, fuzzy
 msgid "Utilisateur non trouvé"
 msgstr "Taguri de utilizator"
@@ -24447,6 +24702,7 @@ msgstr "Variabilă"
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:102
 #: ../../application/modules/admin/controllers/IndexController.php:110
+#: ../../application/modules/admin/controllers/IndexController.php:101
 #, fuzzy, php-format
 msgid "Variable %s sauvegardée"
 msgstr "Nu a fost găsit nici un articol"
@@ -24481,6 +24737,7 @@ msgstr "Alegeţi media"
 #: ../../library/Class/AdminVar.php:210
 #: ../../library/Class/Systeme/Report.php:72
 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:207
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:226
 msgid "Version"
 msgstr "Versiune"
 
@@ -24505,7 +24762,7 @@ msgid "Version de : \"%s\""
 msgstr "Ștergere categorie"
 
 #: ../../library/Class/AdminVar.php:208
 ../../library/Class/AdminVar.php:209
-#: ../../library/Class/AdminVar.php:206
+#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:225
 msgid "Version de Kidilangues."
 msgstr ""
 
@@ -24566,10 +24823,12 @@ msgid "Versions de l'article : \"%s\""
 msgstr "Ștergere categorie"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:283
 msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage"
 msgstr ""
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:118
 msgid ""
 "Veuillez activer la ressource pour pouvoir gérer les droits d'accès des "
 "groupes"
@@ -24588,6 +24847,7 @@ msgid "Veuillez choisir une notice"
 msgstr "Trebuie să introduceţi un titlu         "
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:191
 msgid ""
 "Veuillez configurer les droits de cette ressource pour obtenir une connexion "
 "SSO"
@@ -24626,6 +24886,7 @@ msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT"
 msgstr ""
 
 #: ../../application/modules/admin/controllers/IndexController.php:81
+#: ../../application/modules/admin/controllers/IndexController.php:72
 msgid "Veuillez renseigner le paramètre \"cle\"."
 msgstr ""
 
@@ -24671,6 +24932,12 @@ msgstr "Selecţie de biblioteci"
 msgid "Veuillez sélectionner une boite"
 msgstr "Selecţie de biblioteci"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:108
+msgid ""
+"Veuillez vérifier le fichier config.php de la ressource pour pouvoir gérer "
+"le paramétrage"
+msgstr ""
+
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 #: ../../library/ZendAfi/View/Helper/Plugin/MultiSelection/Widget.php:65
 #, fuzzy
@@ -24736,6 +25003,11 @@ msgstr ""
 msgid "Vignette + frame + lien vers le document"
 msgstr ""
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:406
+#, fuzzy
+msgid "Vignette de l'album : "
+msgstr "etichetă a sitului"
+
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #: ../../application/modules/admin/controllers/RecordsController.php:35
 #, php-format
@@ -24799,6 +25071,7 @@ msgstr "Etichetă"
 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114
 #: ../../application/modules/opac/controllers/AbonneController.php:463
 #: ../../application/modules/opac/controllers/AbonneController.php:464
+#: ../../library/Class/Systeme/Report.php:226
 msgid "Ville"
 msgstr "OraÅŸ"
 
@@ -24885,6 +25158,7 @@ msgstr "Vedeţi"
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/Class/TableDescription/PNBItems.php:39
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:265
 #, fuzzy
 msgid "Voir l'album"
 msgstr "Modificare bibliotecă: %s"
@@ -24972,6 +25246,7 @@ msgid "Voir le site"
 msgstr "Vedeţi site-ul"
 
 #: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:360
 #, fuzzy
 msgid "Voir les albums"
 msgstr "Modificare bibliotecă: %s"
@@ -24998,6 +25273,11 @@ msgstr "Vedeţi planul"
 msgid "Voir les fils RSS sélectionnés"
 msgstr "Vedeţi fluxurile RSS selectate"
 
+#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:386
+#, fuzzy
+msgid "Voir les notices"
+msgstr "Aviz asupra instrucţiunilor"
+
 #: ../../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
@@ -25246,7 +25526,7 @@ msgid "Votre compte n'a pas d'email. Pour continuer vous devez le renseigner."
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:184
 ../../library/Class/AdminVar.php:185
-#: ../../library/Class/AdminVar.php:182
+#: ../../library/Class/AdminVar.php:182 ../../library/Class/AdminVar.php:201
 msgid ""
 "Votre compte sera mis à jour dans un délai de 15 minutes après le retour "
 "anticipé du document."
@@ -25288,10 +25568,9 @@ msgid "Votre fiche"
 msgstr "FiÅŸa dvs.       "
 
 #: ../../library/Class/Users.php:1133
 ../../library/Class/Users.php:1133
-#: ../../library/Class/User/LostPass.php:102
-#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121
-#: ../../library/Class/Users.php:1124 ../../library/Class/Users.php:1128
-#: ../../library/Class/Users.php:1149
+#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142
+#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124
+#: ../../library/Class/Users.php:1128 ../../library/Class/Users.php:1149
 #, fuzzy, php-format
 msgid "Votre identifiant : %s\n"
 msgstr "Numele dvs. de utilizator: %s"
@@ -25343,10 +25622,9 @@ msgid "Votre message : "
 msgstr "Mesajul dvs. :"
 
 #: ../../library/Class/Users.php:1134
 ../../library/Class/Users.php:1134
-#: ../../library/Class/User/LostPass.php:103
-#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122
-#: ../../library/Class/Users.php:1125 ../../library/Class/Users.php:1129
-#: ../../library/Class/Users.php:1150
+#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143
+#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125
+#: ../../library/Class/Users.php:1129 ../../library/Class/Users.php:1150
 #, fuzzy, php-format
 msgid "Votre mot de passe : %s\n"
 msgstr "Parola dvs. :%s"
@@ -25567,10 +25845,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:"
 msgstr "Aţi făcut o cerere de înscriere pe portal."
 
 #: ../../library/Class/Users.php:1132
 ../../library/Class/Users.php:1132
-#: ../../library/Class/User/LostPass.php:101
-#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120
-#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1127
-#: ../../library/Class/Users.php:1148
+#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141
+#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123
+#: ../../library/Class/Users.php:1127 ../../library/Class/Users.php:1148
 msgid "Vous avez fait une demande de mot de passe sur le portail."
 msgstr "Aţi făcut o cerere de parolă pe portal."
 
@@ -25961,6 +26238,8 @@ msgstr "Nu aţi introdus o solicitare."
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:151
 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:178
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:156
+#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:183
 #, fuzzy, php-format
 msgid "Vous n'avez pas la permission \"%s\""
 msgstr "Nu aţi introdus un nume de utilizator."
@@ -26001,6 +26280,7 @@ msgstr "Nu aţi introdus o solicitare."
 
 #: ../../application/modules/admin/controllers/IndexController.php:165
 #: ../../application/modules/admin/controllers/IndexController.php:173
+#: ../../application/modules/admin/controllers/IndexController.php:164
 #, fuzzy
 msgid ""
 "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité."
@@ -26203,6 +26483,8 @@ msgstr "la buletinul informativ"
 #: ../../application/modules/admin/controllers/IndexController.php:190
 #: ../../application/modules/admin/controllers/IndexController.php:186
 #: ../../application/modules/admin/controllers/IndexController.php:198
+#: ../../application/modules/admin/controllers/IndexController.php:177
+#: ../../application/modules/admin/controllers/IndexController.php:189
 #, php-format
 msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\""
 msgstr ""
@@ -26220,11 +26502,13 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:56
+#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:55
 msgid "Vérifiée"
 msgstr ""
 
 #: ../../library/Class/AdminVar.php:334
 ../../library/Class/AdminVar.php:335
 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:338
+#: ../../library/Class/AdminVar.php:357
 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites"
 msgstr ""
 
@@ -26238,6 +26522,7 @@ msgstr "Web"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:81
 #: ../../application/modules/admin/views/scripts/index/index.phtml:70
 #: ../../application/modules/admin/views/scripts/index/index.phtml:64
+#: ../../application/modules/admin/views/scripts/index/index.phtml:53
 msgid "Wiki Bokeh"
 msgstr ""
 
@@ -27040,8 +27325,7 @@ msgstr "De la %s la %s"
 msgid "jusqu'à"
 msgstr "până la"
 
-#: ../../library/Class/Ouverture.php:180
-#: ../../library/Class/Ouverture.php:180
+#: ../../library/Class/Ouverture.php:180
 ../../library/Class/Ouverture.php:180
 #, fuzzy, php-format
 msgid "le %s"
 msgstr "%s"
@@ -27990,6 +28274,7 @@ msgstr "Nici un conţinut"
 #: ../../application/modules/admin/views/scripts/index/index.phtml:48
 #: ../../application/modules/admin/views/scripts/index/index.phtml:37
 #: ../../application/modules/admin/views/scripts/index/index.phtml:31
+#: ../../application/modules/admin/views/scripts/index/index.phtml:20
 #, fuzzy
 msgid "» Modifier «"
 msgstr "Modificare"
@@ -28045,6 +28330,7 @@ msgstr ""
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:62
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:135
 #, php-format
 msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\""
 msgstr ""
@@ -28087,12 +28373,14 @@ msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:124
 #, php-format
 msgid "Échec de la suggestion, le webservice a répondu \"%s\""
 msgstr ""
 
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120
+#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:121
 msgid "Échec de la suggestion, une erreur inconnue est survenue."
 msgstr ""
 
diff --git a/public/opac/js/renderFilters/ajaxifyFilters.js b/public/opac/js/renderFilters/ajaxifyFilters.js
index 7f742be348c601835cbda6404a46475874008ffd..351d4370b6d7a5e8bafae852f0aaa4764eaffb3a 100644
--- a/public/opac/js/renderFilters/ajaxifyFilters.js
+++ b/public/opac/js/renderFilters/ajaxifyFilters.js
@@ -27,10 +27,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();
@@ -40,7 +40,9 @@
     var onLoadComplete = function() {
       if ('onLoadComplete' in options)
         options.onLoadComplete(widget);
-      
+
+      initializePopups();
+      setupAnchorsTarget();
       widget.ajaxifyFilters(options);
     };
 
diff --git a/tests/application/modules/AbstractControllerTestCase.php b/tests/application/modules/AbstractControllerTestCase.php
index c172e4af10fccd49c489d03760b106c7efe63891..8d082ec22b9ab0b5ed55684886d7bc1ccc8ee2ae 100644
--- a/tests/application/modules/AbstractControllerTestCase.php
+++ b/tests/application/modules/AbstractControllerTestCase.php
@@ -191,6 +191,8 @@ abstract class AbstractControllerTestCase extends Zend_Test_PHPUnit_ControllerTe
     Class_Url::setBaseUrl(null);
     Class_Url::setPhpMode(null);
     Class_AdminVar::set('NOM_DOMAINE', '');
+    Class_Log::resetInstance();
+    Class_WebService_BibNumerique_Vignette::resetInstance();
   }
 
 
diff --git a/tests/library/Class/MoteurRechercheTest.php b/tests/library/Class/MoteurRechercheTest.php
index e5f2aafbb8ca7aa4e2e17a84a96b1d816dae99e4..0f005ac9f49ca275ec8c67a0a2c0a893aeec2e92 100644
--- a/tests/library/Class/MoteurRechercheTest.php
+++ b/tests/library/Class/MoteurRechercheTest.php
@@ -309,13 +309,13 @@ class MoteurRechercheSimpleTest extends MoteurRechercheTestCase {
             [['expressionRecherche' => '',
               'digital_lib' => '1'],
              'nb_mots'=> 0,
-             'req_liste' => 'select id_notice, facettes from notices Where (type_doc in (\'100\',\'101\',\'102\',\'103\',\'104\',\'105\',\'106\',\'107\',\'108\',\'109\',\'110\',\'111\',\'112\',\'114\',\'113\',\'115\',\'116\',\'117\',\'119\',\'Assimil\',\'LaSourisQuiRaconte\',\'Lekiosk\',\'Musicme\',\'Omeka\',\'Skilleos\'))'],
+             'req_liste' => "select id_notice, facettes from notices Where (type_doc in ('100','101','102','103','104','105','106','107','108','109','110','111','112','114','113','115','116','117','119','Assimil','LaSourisQuiRaconte','Lekiosk','Musicme','Omeka','Skilleos','StoryPlayR'))"],
 
 
             [['expressionRecherche' => 'logo',
               'digital_lib' => '1'],
              'nb_mots'=> 1,
-             'req_liste' => "select id_notice, facettes from notices Where " . $match_axes . " AGAINST('+(LOGO LOGOS LOGO)' IN BOOLEAN MODE) and (type_doc in ('100','101','102','103','104','105','106','107','108','109','110','111','112','114','113','115','116','117','119','Assimil','LaSourisQuiRaconte','Lekiosk','Musicme','Omeka','Skilleos')) order by (MATCH(alpha_titre) AGAINST(' LOGO') * 1.5) + (MATCH(alpha_auteur) AGAINST(' LOGO')) desc"],
+             'req_liste' => "select id_notice, facettes from notices Where " . $match_axes . " AGAINST('+(LOGO LOGOS LOGO)' IN BOOLEAN MODE) and (type_doc in ('100','101','102','103','104','105','106','107','108','109','110','111','112','114','113','115','116','117','119','Assimil','LaSourisQuiRaconte','Lekiosk','Musicme','Omeka','Skilleos','StoryPlayR')) order by (MATCH(alpha_titre) AGAINST(' LOGO') * 1.5) + (MATCH(alpha_auteur) AGAINST(' LOGO')) desc"],
 
             [['expressionRecherche' => '',
               'id_panier' => 4],
diff --git a/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php b/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php
index 8267dae8d37f01798e5626598b4ee17447df2d56..d9972e11d634617f73df06825b171f2dc9c1f0c7 100644
--- a/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php
+++ b/tests/library/ZendAfi/View/Helper/Accueil/LibraryTest.php
@@ -73,8 +73,10 @@ abstract class ZendAfi_View_Helper_Accueil_LibraryTestCase extends ViewHelperTes
                'division' => 2,
                'preferences' => $preferences];
 
+    $this->view->setScriptPath('application/modules/opac/views/scripts');
+
     $this->_helper = new ZendAfi_View_Helper_Accueil_Library(2, $params);
-    $this->_helper->setView(new ZendAfi_Controller_Action_Helper_View());
+    $this->_helper->setView($this->view);
 
     $this->html = $this->_helper->getBoite();
   }
@@ -197,16 +199,18 @@ class ZendAfi_View_Helper_Accueil_LibraryAlphaOrderDisplayTest extends ZendAfi_V
 
 
 
-class ZendAfi_View_Helper_Accueil_LibrarySelectionOrderDisplayTest extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+class ZendAfi_View_Helper_Accueil_LibrarySelectionOrderDisplayTest
+  extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+
   public function setUp() {
     parent::setUp();
 
-    Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Bib')
-      ->whenCalled('findAllBy')
-      ->with(['id_site' => ['4', '1', '2'],
-              'order' => 'FIELD (id_site, 4,1,2)'])
-      ->answers([$this->meythet, $this->annecy, $this->cran])
-      ->beStrict();
+    $this->onLoaderOfModel('Class_Bib')
+         ->whenCalled('findAllBy')
+         ->with(['id_site' => ['4', '1', '2'],
+                 'order' => 'FIELD (id_site, 4,1,2)'])
+         ->answers([$this->meythet, $this->annecy, $this->cran])
+         ->beStrict();
 
     $this->_generateLibrary(['titre' => 'Bibliotheques',
                              'libraries' => '4;1;2',
@@ -283,7 +287,8 @@ class ZendAfi_View_Helper_Accueil_LibraryFieldsDisplayTest extends ZendAfi_View_
 
 
 
-class ZendAfi_View_Helper_Accueil_LibraryCustomFieldsDisplayTest extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+class ZendAfi_View_Helper_Accueil_LibraryCustomFieldsDisplayTest
+  extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
 
   public function setUp() {
     parent::setUp();
@@ -362,3 +367,23 @@ class ZendAfi_View_Helper_Accueil_LibraryCustomFieldsDisplayTest extends ZendAfi
                           $js);
   }
 }
+
+
+
+
+class ZendAfi_View_Helper_Accueil_LibraryPaginatorTest
+  extends ZendAfi_View_Helper_Accueil_LibraryTestCase {
+
+  public function setUp() {
+    parent::setUp();
+    $this->_generateLibrary(['titre' => 'Bibliotheques',
+                             'libraries' => '4;1;2',
+                             'nb_aff' => 1]);
+  }
+
+
+  /** @test */
+  public function linkToPage2ShouldBeRenderAjax() {
+    $this->assertXPathContentContains($this->html, '//div[@class="paginationControl"]//a[contains(@href, "/render/ajax")]', '2');
+  }
+}
diff --git a/tests/library/ZendAfi/View/Helper/Status/HtmlTest.php b/tests/library/ZendAfi/View/Helper/Status/HtmlTest.php
index 7f7e792f8f67929dd67e0d6e3ef8139c976b9b4e..77dd3482f75854f200596410f296399af7fe8609 100644
--- a/tests/library/ZendAfi/View/Helper/Status/HtmlTest.php
+++ b/tests/library/ZendAfi/View/Helper/Status/HtmlTest.php
@@ -28,7 +28,7 @@ class ZendAfi_View_Helper_Status_HtmlTest extends ZendAfi_View_Helper_Status_Tes
   public function setUp() {
     parent::setUp();
 
-    $disk = Storm_Test_ObjectWrapper::mock()
+    $disk = $this->mock()
       ->whenCalled('diskSpaceInfo')
       ->answers((new Class_Entity)
                 ->setFree('0 o')
@@ -66,6 +66,14 @@ class ZendAfi_View_Helper_Status_HtmlTest extends ZendAfi_View_Helper_Status_Tes
   }
 
 
+  /** @test */
+  public function phpVersionShouldBePresent() {
+    $this->assertXPathContentContains($this->_html,
+                                      '//dl/dd[preceding-sibling::dt[text()="PHP"]]',
+                                      PHP_VERSION);
+  }
+
+
   /** @test */
   public function uniqueIdentifierShouldBe2345abc() {
     $this->assertXPathContentContains($this->_html,
@@ -196,6 +204,12 @@ class ZendAfi_View_Helper_Status_HtmlTest extends ZendAfi_View_Helper_Status_Tes
   }
 
 
+  /** @test */
+  public function libraryAstaingRedmineLoginShouldBePresent() {
+    $this->assertXPathContentContains($this->_html, '//td', '@account@sigb-opac');
+  }
+
+
   /** @test */
   public function variableOnOffBibnumShouldBeDisplayed() {
      $this->assertXPathContentContains($this->_html,
diff --git a/tests/library/ZendAfi/View/Helper/Status/JsonTest.php b/tests/library/ZendAfi/View/Helper/Status/JsonTest.php
index 31b40663fa242d4725d2ab4df66be98e371d832d..f1ac191cb07aa0d993f8bd6d5a6dfa29348df0d1 100644
--- a/tests/library/ZendAfi/View/Helper/Status/JsonTest.php
+++ b/tests/library/ZendAfi/View/Helper/Status/JsonTest.php
@@ -57,6 +57,12 @@ class ZendAfi_View_Helper_Status_JsonTest extends ZendAfi_View_Helper_Status_Tes
   }
 
 
+  /** @test */
+  public function phpVersionShouldBePresent() {
+    $this->assertEquals(PHP_VERSION, $this->_report['headers']['php']);
+  }
+
+
   /** @test */
   public function headersBUIDShouldBeGenerated() {
     $this->assertNotEmpty($this->_report['headers']['buid']);
@@ -369,16 +375,15 @@ class ZendAfi_View_Helper_Status_JsonTest extends ZendAfi_View_Helper_Status_Tes
   /** @test */
   public function librayAnstaingShouldDisplayAdressAndCoordinates() {
     $this->assertContains(['label' => 'Anstaing / Bibliothèque municipale',
-                           'address' => "Place Jules Guesde",
-                           'postal_code' => "59152",
-                           "city" =>  "Anstaing",
-                           "coordinates" => [
-                                             "latitude"=> "11111",
-                                             "longitude"  => "22222"]
+                           'address' => 'Place Jules Guesde',
+                           'postal_code' => '59152',
+                           'city' =>  'Anstaing',
+                           'coordinates' => [
+                                             'latitude'=> '11111',
+                                             'longitude'  => '22222'],
+                           'redmine_login' => '@account@sigb-opac',
                            ],
                           $this->_report['libraries']);
-
-
   }
 
 
diff --git a/tests/library/ZendAfi/View/Helper/Status/TestCase.php b/tests/library/ZendAfi/View/Helper/Status/TestCase.php
index 1db5574cd8fe959c2df04013b7036ea110305298..00e8ad51d2910ffd04d85f56a738ff089cfb73e5 100644
--- a/tests/library/ZendAfi/View/Helper/Status/TestCase.php
+++ b/tests/library/ZendAfi/View/Helper/Status/TestCase.php
@@ -142,7 +142,8 @@ abstract class ZendAfi_View_Helper_Status_TestCase extends ViewHelperTestCase {
                                  'adresse' => 'Place Jules Guesde',
                                  'cp' => '59152', 'ville' => 'Anstaing',
                                  'lieu' => $anstaing,
-                                 'visibilite' => 2]);
+                                 'visibilite' => 2,
+                                 'redmine_login' => '@account@sigb-opac']);
 
     Class_AdminVar::newInstanceWithId('KOHA_MULTI_SITES', ['valeur' => '' ]);
     return $this;
diff --git a/tests/scenarios/MobileApplication/UserAccountTest.php b/tests/scenarios/MobileApplication/UserAccountTest.php
index f79ec7ec28ac709d99b556f8932d33b3cac9879f..1106b77ecc80507ab00c6787b1d1673f40d79b1d 100644
--- a/tests/scenarios/MobileApplication/UserAccountTest.php
+++ b/tests/scenarios/MobileApplication/UserAccountTest.php
@@ -29,6 +29,8 @@ abstract class Scenario_MobileApplication_UserAccountTestCase extends AbstractCo
 
     $puppy = $this->fixture('Class_Users',
                             ['id' => 345,
+                             'pseudo' => 'Puppy',
+                             'date_fin' => '2018-02-12',
                              'login' => 'puppy',
                              'password' => 'opied',
                              'role_level' => ZendAfi_Acl_AdminControllerRoles::ABONNE_SIGB,
@@ -73,7 +75,7 @@ abstract class Scenario_MobileApplication_UserAccountTestCase extends AbstractCo
 
 
 
-class Scenario_MobileApplication_UserAccountWithTokenTest extends Scenario_MobileApplication_UserAccountTestCase {
+class Scenario_MobileApplication_UserAccountLoansWithTokenTest extends Scenario_MobileApplication_UserAccountTestCase {
   protected
     $_json;
 
@@ -118,11 +120,11 @@ class Scenario_MobileApplication_UserAccountWithTokenTest extends Scenario_Mobil
 
 
 
-class Scenario_MobileApplication_UserAccountWithoutTokenTest extends Scenario_MobileApplication_UserAccountTestCase {
+class Scenario_MobileApplication_UserAccountLoansWithoutTokenTest extends Scenario_MobileApplication_UserAccountTestCase {
   /** @test */
   public function withoutAuthorizationShouldAnswerInvalidRequest() {
     $this->dispatch('/api/user/loans',
-                    true,
+                    false,
                     ["Content-Type" => "application/json"]);
 
     $this->assertEquals(['error' => 'invalid_request',
@@ -134,7 +136,7 @@ class Scenario_MobileApplication_UserAccountWithoutTokenTest extends Scenario_Mo
   /** @test */
   public function withWrongAuthorizationTypeShouldAnswerInvalidRequest() {
     $this->dispatch('/api/user/loans',
-                    true,
+                    false,
                     ["Authorization" => 'Catch nonos',
                      "Content-Type" => "application/json"]);
 
@@ -147,7 +149,7 @@ class Scenario_MobileApplication_UserAccountWithoutTokenTest extends Scenario_Mo
   /** @test */
   public function withWrongAuthorizationTokenShouldAnswerInvalidRequest() {
     $this->dispatch('/api/user/loans',
-                    true,
+                    false,
                     ["Authorization" => 'Bearer veget@ble',
                      "Content-Type" => "application/json"]);
 
@@ -165,7 +167,7 @@ class Scenario_MobileApplication_UserAccountWithoutTokenTest extends Scenario_Mo
                     'user_id' => 987]);
 
     $this->dispatch('/api/user/loans',
-                    true,
+                    false,
                     ["Authorization" => 'Bearer veget@ble',
                      "Content-Type" => "application/json"]);
 
@@ -180,7 +182,7 @@ class Scenario_MobileApplication_UserAccountWithoutTokenTest extends Scenario_Mo
     unset($_SERVER['HTTPS']);
 
     $this->dispatch('/api/user/loans',
-                    true,
+                    false,
                     ["Authorization" => "Bearer nonos" ,
                      "Content-Type" => "application/json"]);
 
@@ -365,4 +367,33 @@ class Scenario_MobileApplication_UserAccountOAuthPostLoginSuccessTest extends Sc
     $this->assertEquals('My mobile bokeh', $token->getClientId());
   }
 }
+
+
+
+
+class Scenario_MobileApplication_UserAccountWithTokenTest extends Scenario_MobileApplication_UserAccountTestCase {
+  protected
+    $_json;
+
+  public function setUp() {
+    parent::setUp();
+
+    $this->dispatch('/api/user/account',
+                    true,
+                    ["Authorization" => "Bearer nonos" ,
+                     "Content-Type" => "application/json"]);
+    $this->_json = json_decode($this->_response->getBody(), true);
+  }
+
+
+  /** @test */
+  public function responseShouldContainsCardValidityAndLabel() {
+    $this->assertEquals(['label' => 'Puppy',
+                         'card' => [
+                                    'id' =>  '234',
+                                    'expire_at' => '2018-02-12']
+                         ],
+                        $this->_json['account']);
+  }
+}
 ?>
\ No newline at end of file
diff --git a/tests/scenarios/RawRecordHistory/RawRecordVersionTest.php b/tests/scenarios/RawRecordHistory/RawRecordVersionTest.php
new file mode 100644
index 0000000000000000000000000000000000000000..08534617a10c63216d7a0aa49a942dc3bd134603
--- /dev/null
+++ b/tests/scenarios/RawRecordHistory/RawRecordVersionTest.php
@@ -0,0 +1,50 @@
+<?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 RawRecordUnimarcVersionTest extends ModelTestCase {
+  protected
+    $_storm_default_to_volatile = true,
+    $_record;
+
+  public function setUp() {
+    parent::setUp();
+
+    $marc = file_get_contents(__DIR__ . '/audiard_herosdiscret.uni');
+    $this->_record = new Class_Cosmogramme_Integration_RawRecord($marc, '694479', 12);
+  }
+
+
+  /** @test */
+  public function whenNotActivatedShouldNotHaveCreatedOneVersion() {
+    Class_AdminVar::set('KEEP_LAST_SIGB_RECORD', 0);
+    $this->_record->save();
+    $this->assertEquals(0, $this->_record->numberOfVersions());
+  }
+
+
+  /** @test */
+  public function whenActivatedShouldHaveCreatedOneVersion() {
+    Class_AdminVar::set('KEEP_LAST_SIGB_RECORD', 1);
+    $this->_record->save();
+    $this->assertEquals(1, $this->_record->numberOfVersions());
+  }
+}
diff --git a/tests/scenarios/RawRecordHistory/audiard_herosdiscret.uni b/tests/scenarios/RawRecordHistory/audiard_herosdiscret.uni
new file mode 100644
index 0000000000000000000000000000000000000000..602bdcce7151f8d2b11b93c83f4bdcd181f26234
--- /dev/null
+++ b/tests/scenarios/RawRecordHistory/audiard_herosdiscret.uni
@@ -0,0 +1 @@
+01518ngm0 2200349   450 001000700000071002700007073001800034100001300052200004500065210001900110215001600129300013500145345001800280606002200298686001300320686004100333686003500374700007300409702005300482702005200535702004800587702004500635702004900680702005300729702003400782702003300816702003800849801001700887932001000904992012500914995012901039694479  a826030-9bStudio Canal  a5050582603095  a201411061 aUn héros très discretfJacques Audiard  cAliceleod1996  a1 DVD, 1h41  aD'après le roman de Jean-François Deniau. - Bonus : interview du réalisateur et Alain Le Henry. Scènes commentées. Making of.  b826030-9cDVD  acinéma français  aF2PCDM4  aFictiontFiction2Code_Statistique_1  aFilmtFilm2Code_Statistique_2 1aAudiardbJacques31000251106g3006Metteur en scène ou réalisateur 1aDesplatbAlexandre3100025081142306Compositeur 1aDeniaubJean-François3100013496740706Auteur 1aKassovitzbMathieu3100021986940056Acteur 1aGrinbergbAnouk3130350006040056Acteur 1aKiberlainbSandrine310003627044005gActeur 1aTrintignantbJean-Louis3100022982340056Acteur 1aDupontelbAlbert40056Acteur 1aBarentinbNadia40056Acteur 1aLe HenrybAlain40006Intervenant 2aFrc20150829  aDrame  uhttp://ecx.images-amazon.com/images/I/51%2BE27GCzjL._SL160_.jpgvhttp://ecx.images-amazon.com/images/I/51%2BE27GCzjL.jpg  aMédiathèquef31879003220456kF AUDm20150829qdrgfopv12[DISPO][Disponible][0][1][][0][0][0][0]42015-02-1367778197
\ No newline at end of file