diff --git a/VERSIONS b/VERSIONS index 64f1711ee2981bc70637cdb57d68fe2ab4f01287..046c4c4cc58515526cc5e947b4a7e81f0f3e55ec 100644 --- a/VERSIONS +++ b/VERSIONS @@ -1,3 +1,37 @@ +11/10/2018 - v7.12.39 + + - ticket #80455 : Cosmogramme : correction d'un libellé de format de date de nouveauté + + - ticket #79363 : Lieux : Abandon de l'API Google pour la géolocalisation, fourniture d'un service AFI pour génération des cartes statiques basées sur OpenStreetMap + + - ticket #80427 : Résultate de recherche : n'affiche plus le bloc CVS lorsqu'on est connecté en administrateur système + + + +08/10/2018 - v7.12.38 + + - ticket #59497 : Sélection multiple de notices pour impression, export et sauvegarde + + - ticket #73067 : Webservice Koha : option permettant de faire les réservations à l'exemplaire puis à la notice en cas d'échec. + + - ticket #80020 : Numilog : Prise en charge des notices marquées supprimées lors du moissonnage + + - ticket #80134 : Cosmogramme : Correction d'une erreur survenant lorsqu'un fichier de suppression d'exemplaire contenait un exemplaire non présent dans la base de données + + - ticket #79132 : LeKiosk : correction du lien vers la ressource en mode CAS et en moissonnage HTTP + + + +01/10/2018 - v7.12.37 + + - ticket #79969 : SIGB Orphée : Prise en charge de la fonction "mot de passe oublié" en mode sécurisé (RGPD) + + - ticket #77621 : PNB Dilicom : Correction de l'affichage de la limite du nombre de prêts simultanés dans le tableau de bord pour des commandes sans limite du nombre de prêts. + + - ticket #79660 : Intégrations : Prise en charge des libellés d'emplacement jusqu'à 255 caractères + + + 24/09/2018 - v7.12.36 - ticket #68187 : Ressources numériques : modification du connecteur PNB Dilicom pour être compatible avec la version 3 du prestataire. diff --git a/application/modules/opac/controllers/PanierController.php b/application/modules/opac/controllers/PanierController.php index b5e5e366dcd432de5e1ee147c75d8d1634089c57..d32ce2de1e9e11f7f34387b53c7ad02ddc87deb9 100644 --- a/application/modules/opac/controllers/PanierController.php +++ b/application/modules/opac/controllers/PanierController.php @@ -97,34 +97,37 @@ class PanierController extends ZendAfi_Controller_Action { public function addAction() { - $this->_prepareAdd($this->view->url(['controller' => 'panier', - 'action' => 'add']), - function() { - return $this->_redirect($this->view->absoluteUrl(['action' => 'index', - 'render' => null, - 'id_panier' => null])); - }); + $this->_addFormAndSave(['controller' => 'panier', + 'action' => 'add'], + + ['controller' => 'panier', + 'action' => 'index', + 'render' => null, + 'id_panier' => null]); } public function addAjaxAction() { - $this->_prepareAdd($this->view->url(['controller' => 'panier', - 'action' => 'add-ajax']), - function() { - return $this->_redirect($this->view->absoluteUrl(['action' => 'add-record-ajax', - 'render' => null, - 'id_panier' => null])); - }); + $after_save_url = ['controller' => 'panier', + 'action' => $this->_getParam('selection') ? 'add-selection' : 'add-record-ajax', + 'render' => null, + 'selection' => null, + 'id_panier' => null]; + + $this->_addFormAndSave(['controller' => 'panier', + 'action' => 'add-ajax'], + + $after_save_url); } - protected function _prepareAdd($action, $callback) { + protected function _addFormAndSave($action, $after_save_url) { $this->view->titre = $this->view->_('Créer un panier'); $this->view->form = ZendAfi_Form_Panier::newWith($this->_request->getParams()); - $this->view->form->setAction($action); + $this->view->form->setAction($this->view->url($action)); if($this->saveModelWithForm(Class_PanierNotice::newForUser($this->_user), $this->view->form)) { - call_user_func($callback); + $this->_redirect($this->view->url($after_save_url)); } } @@ -158,9 +161,14 @@ class PanierController extends ZendAfi_Controller_Action { public function switchAjaxAction() { return $this->_switchAndRedirect('switch-ajax', - $this->view->absoluteUrl(['action' => 'add-record-ajax', - 'render' => null, - 'id_panier' => null])); + + ['controller' => 'panier', + 'action' => ($this->_getParam('selection') + ? 'add-selection' + : 'add-record-ajax'), + 'render' => null, + 'selection' => null, + 'id_panier' => null]); } @@ -184,7 +192,7 @@ class PanierController extends ZendAfi_Controller_Action { } return $url - ? $this->_redirect($url) + ? $this->_redirect($this->view->url($url)) : $this->_redirectClose($this->_getReferer()); } @@ -200,6 +208,30 @@ class PanierController extends ZendAfi_Controller_Action { } + public function addSelectionAction() { + $this->view->titre = $this->_('Mettre la sélection dans un panier'); + + if(!$this->_user) + return $this->_forward('popup-login', 'auth', 'opac', ['redirect' => $this->view->url()]); + + $this->view->panier = $panier = $this->_user->getPanierCourant(); + + if (!$this->_request->isPost()) + return; + + $records = Class_Notice::findAllBy(['id_notice' => (new Class_RecordSelection)->values()]); + array_map(function($record) use($panier) { $panier->addNotice($record); }, + $records); + + $panier->save(); + $panier->index(); + + $this->_helper->notify($this->_('Sélection ajoutée dans le panier "%s"', $panier->getLibelle())); + + $this->_redirectClose($this->_getReferer()); + } + + public function addRecordAjaxAction() { $this->view->titre = $popup_title = $this->_('Ajouter un document dans un panier'); diff --git a/application/modules/opac/controllers/RechercheController.php b/application/modules/opac/controllers/RechercheController.php index 849d7061d867fd21072d1af7f8627698f766627c..86188d06a74153d603f06d076e68f1de217d9d61 100644 --- a/application/modules/opac/controllers/RechercheController.php +++ b/application/modules/opac/controllers/RechercheController.php @@ -39,7 +39,7 @@ class RechercheController extends ZendAfi_Controller_Action { public function getPlugins() { - return ['ZendAfi_Controller_Plugin_Printer_ModelFusion', + return ['ZendAfi_Controller_Plugin_Printer_SearchResult', 'ZendAfi_Controller_Plugin_Mailer_SearchResult']; } @@ -140,7 +140,13 @@ class RechercheController extends ZendAfi_Controller_Action { if ('atom' == $this->_getParam('format', '')) return $this->_renderAtomResult($search_result); - $this->preferences['liste_format'] = $this->_getParam('liste_format', $this->preferences['liste_format']); + $this->preferences['liste_format'] = $this->_getParam('liste_format', + $this->preferences['liste_format']); + + if (Class_AdminVar::isModuleEnabled('ENABLE_SEARCH_MULTIPLE_RECORD_SELECTION')) { + $this->preferences['display_add_to_cart'] = false; + $this->preferences['display_select_record'] = true; + } $this->view->titre = $this->getTitreRechercheSimple($criteres_recherche); diff --git a/application/modules/opac/controllers/RecordsController.php b/application/modules/opac/controllers/RecordsController.php new file mode 100644 index 0000000000000000000000000000000000000000..2d3530daeedc9c26ae0029b43405527ffdf5e649 --- /dev/null +++ b/application/modules/opac/controllers/RecordsController.php @@ -0,0 +1,65 @@ +<?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 RecordsController extends ZendAfi_Controller_Action { + protected $_selection; + + public function preDispatch() { + parent::preDispatch(); + $this->_selection = new Class_RecordSelection(); + } + + + public function selectToggleAction() { + $this->_selection->toggle(Class_Notice::find($this->_getParam('id'))); + $this->_helper->json(['count' => $this->_selection->count()]); + } + + + public function selectClearAction() { + $this->_selection->clear(); + $this->_helper->json(['count' => $this->_selection->count()]); + } + + + public function selectPageAction() { + $this->_selection->addAll($this + ->_helper + ->searchRecords() + ->fetchRecords()); + $this->_helper->json(['count' => $this->_selection->count()]); + } + + + public function selectAllAction() { + $this->_selection->addAllIds($this + ->_helper + ->searchRecords() + ->fetchAllRecordsIds()); + $this->_helper->json(['count' => $this->_selection->count()]); + } + + + public function selectViewAction() { + + } +} diff --git a/application/modules/opac/views/scripts/index/planaccess.phtml b/application/modules/opac/views/scripts/index/planaccess.phtml deleted file mode 100644 index d62458f8e95620291f6cfe5039ae8ff22683ff5f..0000000000000000000000000000000000000000 --- a/application/modules/opac/views/scripts/index/planaccess.phtml +++ /dev/null @@ -1,52 +0,0 @@ -<script src="<?php echo URL_JS?>plan_acces.js"> </script> -<?php echo $this->mapEvents(); ?> -<script - src="https://maps.google.com/maps?file=api&v=2&key=<?php echo $this->googleKey?>" - type="text/javascript"></script> - -<link rel="stylesheet" - type="text/css" media="screen" - href="<?php echo URL_ADMIN_CSS;?>map.css" /> - -<script type="text/javascript"> -function initOCouches() -{ -<?php echo $this->oCouches; ?> -return oCouches; -} - -function initHIcone() -{ -<?php echo $this->hIcone; ?> -return hIcone; -} - -</script> -<div> -<span id="abonne_erreur" class="abonne"><?php echo $this->traduire($this->message); ?></span> - -<?php $this->openBoite("Plan d'accès")?> -<table class="map"> - <tr> - <td> - <ul class="map"> - - <?php for($couche=1; $couche<=count($this->map["couches"]); $couche++) - { - echo ('<a href="javascript:afficher_couche('.$couche.')"><li>'.stripslashes($this->map["couches"][$couche]["titre"]).'</li></a>'); - } ?> - - </ul> - </td> - </tr> - - <tr> - <td> - <div id="map" style="width: 630px; height: 570px"></div> - </td> - </tr> - -</table> -</div> - -<?php $this->closeBoite(); ?> diff --git a/application/modules/opac/views/scripts/panier/add-record-ajax.phtml b/application/modules/opac/views/scripts/panier/add-record-ajax.phtml index a5174c12336d80d4c1e279c4eea5ffb4e9639db8..28a5e0ef3b7d89ca783d90d104ddd9e93cb44cb0 100644 --- a/application/modules/opac/views/scripts/panier/add-record-ajax.phtml +++ b/application/modules/opac/views/scripts/panier/add-record-ajax.phtml @@ -20,7 +20,7 @@ echo $this->tag('div', $this->_('Ajouter %s au panier %s ?', $this->tag('b', $this->notice->getTitrePrincipal()), $this->tag('b', $this->panier->getLibelle())), - ['class' => 'center']) + ['class' => 'center']) . $actions); diff --git a/application/modules/opac/views/scripts/panier/add-selection.phtml b/application/modules/opac/views/scripts/panier/add-selection.phtml new file mode 100644 index 0000000000000000000000000000000000000000..16548345ae66b638107bc8a03a5a13242dbf0178 --- /dev/null +++ b/application/modules/opac/views/scripts/panier/add-selection.phtml @@ -0,0 +1,32 @@ +<?php +$actions = $this->tag('div', $this->tagAnchor($this->url(['controller' => 'panier', + 'action' => 'add-ajax', + 'selection' => '1']), + $this->_('Nouveau panier'), + ['class' => 'bouton', + 'data-popup' => 'true']) . + + $this->tagAnchor($this->url(['controller' => 'panier', + 'action' => 'switch-ajax', + 'id_panier' => $this->panier->getId(), + 'selection' => '1']), + $this->_('Changer de panier'), + ['class' => 'bouton', + 'data-popup' => 'true']), + ['class' => 'boutons']); + +echo $this->tag('div', + $this->tag('p', + $this->_('Ajouter ma sélection au panier "%s" ?', + $this->panier->getLibelle()), + ['class' => 'center']) + . $actions); + +echo $this->renderForm(ZendAfi_Form::newWith([]) + ->setAction($this->url(['controller'=>'panier', + 'action'=>'add-selection', + 'id_panier'=>$this->panier->getId()], + null, + true))); + +?> diff --git a/application/modules/opac/views/scripts/recherche/viewnotice.phtml b/application/modules/opac/views/scripts/recherche/viewnotice.phtml index 5582487bd6749f03d8d7d0f718fe0870564dba87..86b0313a47c2e7802f37905cdfee8154d9a1b1f2 100644 --- a/application/modules/opac/views/scripts/recherche/viewnotice.phtml +++ b/application/modules/opac/views/scripts/recherche/viewnotice.phtml @@ -18,9 +18,13 @@ $script_loader = Class_ScriptLoader::getInstance() ['title' => $this->_('Retourner au résultat de recherche'), 'class' => 'retour']); - echo $this->tagPrintLink((new Class_Entity()) - ->setModels([$this->notice]) - ->setStrategy('Notice_View')); + echo Class_ModeleFusion::canPrintRecordInProfile(Class_Profil::getCurrentProfil()) + ? $this->tagAnchor(['controller' => 'recherche', + 'action' => 'print'], + $this->_('Imprimer'), + ['title' => $this->_('Imprimer "%s"', $this->notice->getTitrePrincipal()), + 'target' => '_blank']) + : ''; echo $this->tagAnchor($this->url_panier, $this->_('Ajouter au panier'), diff --git a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php index b386b05112b0c7c0e7e62541fcdecedf9990a085..b1c7897270f206d2c22fd7d080581d34fd1d5af3 100644 --- a/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php +++ b/cosmogramme/cosmozend/tests/application/modules/cosmo/controllers/DataProfileControllerTest.php @@ -256,6 +256,12 @@ class Cosmo_DataProfileControllerEditUnimarcKohaTest extends Cosmo_DataProfileCo } + /** @test */ + public function nouveauteFormatAAAAMMJJShouldExists() { + $this->assertXPathContentContains('//select[@id="nouveaute_format"]/option', 'AAAAMMJJ'); + } + + /** @test */ public function multiInputNouveauteValeursShouldBePresent() { $this->assertXPath('//form//div[@id="multi_inputs_nouveaute_valeurs"]'); diff --git a/cosmogramme/php/classes/classe_notice_integration.php b/cosmogramme/php/classes/classe_notice_integration.php index ac0c46bd3834f70c135aad0381d00c90e19f2319..8cf7be343c2e26cf9d3406c101ec2b258c34e21d 100644 --- a/cosmogramme/php/classes/classe_notice_integration.php +++ b/cosmogramme/php/classes/classe_notice_integration.php @@ -763,7 +763,8 @@ class notice_integration { public function supprimerExemplaire($id_notice,$ex) { - if(!$id_notice) { + if((!$id_notice) || + !($notice = Class_Notice::find($id_notice))) { $this->statut = static::RECORD_REJECT; $this->erreur="notice de l'exemplaire à supprimer non trouvée"; return false; @@ -778,7 +779,6 @@ class notice_integration { return false; } - $notice = Class_Notice::find($id_notice); foreach($exemplaires as $exemplaire) { $notice->removeExemplaire($exemplaire); } diff --git a/cosmogramme/sql/patch/patch_354.php b/cosmogramme/sql/patch/patch_354.php index 2bbc87df02a1fc6bb6ec05eb24690b4831fb0355..5a8c6f25c0b717e953223cf7dcf3050b8a1bc242 100644 --- a/cosmogramme/sql/patch/patch_354.php +++ b/cosmogramme/sql/patch/patch_354.php @@ -1,10 +1,3 @@ <?php -try { - $adapter = Zend_Db_Table_Abstract::getDefaultAdapter(); - - if (!$adapter->query('select valeur from bib_admin_var where clef="MATOMO_AUTH_TOKEN" and valeur<>""')->fetch()) { - $adapter->query('delete from bib_admin_var where CLEF="MATOMO_AUTH_TOKEN"'); - $adapter->query('update bib_admin_var set CLEF="MATOMO_AUTH_TOKEN" where CLEF="PIWIK_AUTH_TOKEN"'); - } - -} catch(Exception $e) {var_dump($e);} +Zend_Db_Table_Abstract::getDefaultAdapter() + ->query('alter table codif_emplacement change id_emplacement id_emplacement int not null auto_increment, change libelle libelle varchar(255) not null'); diff --git a/cosmogramme/sql/patch/patch_355.php b/cosmogramme/sql/patch/patch_355.php new file mode 100644 index 0000000000000000000000000000000000000000..4ca530e9da3e4bf7bbd8a0c6830ce52b986295d6 --- /dev/null +++ b/cosmogramme/sql/patch/patch_355.php @@ -0,0 +1,3 @@ +<?php +Zend_Db_Table_Abstract::getDefaultAdapter() + ->query('update bib_admin_var set valeur="https://smap.afi-sa.net/staticmap.php" where clef="STATIC_MAP"'); diff --git a/cosmogramme/sql/patch/patch_356.php b/cosmogramme/sql/patch/patch_356.php new file mode 100644 index 0000000000000000000000000000000000000000..e26d8e47475191bec2b50c8ebf424f701ae06531 --- /dev/null +++ b/cosmogramme/sql/patch/patch_356.php @@ -0,0 +1,2 @@ +<?php +(new Class_Migration_PiwikToMatomo)->run(); \ No newline at end of file diff --git a/library/Class/AdminVar.php b/library/Class/AdminVar.php index f5ff50d9ad0262df787040e72392dd5e9e489d27..249c29fae59fe0d28905f28ba9fe196cc7bf6661 100644 --- a/library/Class/AdminVar.php +++ b/library/Class/AdminVar.php @@ -241,18 +241,27 @@ class Class_AdminVarLoader extends Storm_Model_Loader { protected function _getSearchVars() { - return ['SEARCH_PAGINATE_POSITION' => Class_AdminVar_Meta::newCombo($this->_('Position de la pagination en résultat de recherche'), - ['options' => ['selectOptions' => ['label' => $this->_('Position'), - 'multioptions' => ['BOTTOM' => 'en bas', 'TOP' => 'en haut', 'BOTH' => 'en haut et en bas']]]]), - 'EXTENDED_SEARCH' => Class_AdminVar_Meta::newOnOff($this->_('Etendre automatiquement le résultat de recherche en rajoutant des "OU" entre les mots saisis'), ['value' => 1]), - 'AFFICHER_DISPONIBILITE_SUR_RECHERCHE' => Class_AdminVar_Meta::newOnOff($this->_('Activation de la disponibilite dans le resultat de recherche au survol de la couverture du document, calculé en temps réel.')), - 'AFFICHER_DISPONIBILITE_SUR_RECHERCHE_MODE_FACETTE' => Class_AdminVar_Meta::newOnOff($this->_('Activation de la disponibilite dans le resultat de recherche. Calculé grâce à la facette "En rayon".')), - 'SEARCH_ALSO_IN' => Class_AdminVar_Meta::newMultiInput($this->_('Liste des sites de recherche élargie (la chaine \'%s\' dans l\'url sera remplacée par le terme de recherche)'), - [ 'options' => ['fields' => [['name' => 'site_label', 'label' => $this->_('Nom du site')], - ['name' => 'site_url', 'label' => $this->_('Url de recherche')] ]]]), - 'NOM_DOMAINE' => Class_AdminVar_Meta::newDefault($this->_('Nom de domaine principal de l\'OPAC, ex: monopac.macommune.fr')), + return + [ + 'SEARCH_PAGINATE_POSITION' => Class_AdminVar_Meta::newCombo($this->_('Position de la pagination en résultat de recherche'), + ['options' => ['selectOptions' => ['label' => $this->_('Position'), + 'multioptions' => ['BOTTOM' => 'en bas', + 'TOP' => 'en haut', + 'BOTH' => 'en haut et en bas']]]]), + + 'EXTENDED_SEARCH' => Class_AdminVar_Meta::newOnOff($this->_('Etendre automatiquement le résultat de recherche en rajoutant des "OU" entre les mots saisis'), + ['value' => 1]), + + 'AFFICHER_DISPONIBILITE_SUR_RECHERCHE' => Class_AdminVar_Meta::newOnOff($this->_('Activation de la disponibilite dans le resultat de recherche au survol de la couverture du document, calculé en temps réel.')), + 'AFFICHER_DISPONIBILITE_SUR_RECHERCHE_MODE_FACETTE' => Class_AdminVar_Meta::newOnOff($this->_('Activation de la disponibilite dans le resultat de recherche. Calculé grâce à la facette "En rayon".')), + 'SEARCH_ALSO_IN' => Class_AdminVar_Meta::newMultiInput($this->_('Liste des sites de recherche élargie (la chaine \'%s\' dans l\'url sera remplacée par le terme de recherche)'), + [ 'options' => ['fields' => [['name' => 'site_label', 'label' => $this->_('Nom du site')], + ['name' => 'site_url', 'label' => $this->_('Url de recherche')] ]]]), + 'NOM_DOMAINE' => Class_AdminVar_Meta::newDefault($this->_('Nom de domaine principal de l\'OPAC, ex: monopac.macommune.fr')), - 'CUSTOM_SEARCH_FORM' => Class_AdminVar_Meta::newOnOff($this->_('Activer les formulaires de recherche configurables'))->bePrivate()]; + 'CUSTOM_SEARCH_FORM' => Class_AdminVar_Meta::newOnOff($this->_('Activer les formulaires de recherche configurables'))->bePrivate(), + 'ENABLE_SEARCH_MULTIPLE_RECORD_SELECTION' => Class_AdminVar_Meta::newOnOff($this->_('Activer la sélection multiple de notices dans le résultat de recherche')) + ]; } @@ -300,7 +309,6 @@ class Class_AdminVarLoader extends Storm_Model_Loader { . $this->_('De plus, à la connexion, l\'enregistrement des mots de passes des abonnés est désactivé.'))->bePrivate(), 'OAUTH_ACCEPT_HTTP' => Class_AdminVar_Meta::newOnOff($this->_('Autoriser l\'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)'), ['value' => 0]), 'NB_AFFICH_AVIS_PAR_AUTEUR' => Class_AdminVar_Meta::newDefault($this->_('Nombre d\'avis maximum à afficher par utilisateur.')), - 'CLEF_GOOGLE_MAP' => Class_AdminVar_Meta::newDefault($this->_('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</a>')), 'REGISTER_OK' => Class_AdminVar_Meta::newEncodedData($this->_('Texte visible par l\'internaute après son inscription.')), 'RESA_CONDITION' => Class_AdminVar_Meta::newEncodedData($this->_('Texte visible après l\'envoi d\'e-mail de demande de réservation.')), 'SITE_OK' => Class_AdminVar_Meta::newOnOff($this->_('Désactiver pour passer le site en maintenance')), @@ -344,7 +352,8 @@ class Class_AdminVarLoader extends Storm_Model_Loader { 'BOITE_PANIER_AUTO' => Class_AdminVar_Meta::newOnOff($this->_('Ajouter automatiquement une boîte panier dans la division flottante')), 'EXTRA_SKIN_PATH' => Class_AdminVar_Meta::newDefault($this->_('Chemin vers les skins personnalisées, relatif à %s', Class_Profil_Skin::EXTRA_PATH)), 'ENABLE_COLLABORATIVE_BROWSING' => Class_AdminVar_Meta::newOnOff($this->_('Activation de la navigation collaborative')), - 'KOHA_MULTI_SITES' => Class_AdminVar_Meta::newOnOff($this->_('WS KOHA : Reservation d\'exemplaires pour les multi sites')), + 'KOHA_MULTI_SITES' => Class_AdminVar_Meta::newOnOff($this->_('WS KOHA : Réservation d\'exemplaires pour les multi sites à l\'exemplaire. (Uniquement "HoldItem")')), + 'KOHA_TRY_HOLD_ITEM' => Class_AdminVar_Meta::newOnOff($this->_('WS KOHA : Tentative de réservation à l\'exemplaires puis à la notice. ("HoldItem" puis "HoldTitle")')), 'TEXT_REPLACEMENTS' => Class_AdminVar_Meta::newRawText($this->_('Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous avez %%d paniers;Vous avez %%d sélections')), 'URL_COSMOGRAMME' => Class_AdminVar_Meta::newDefault('')->bePrivate(), @@ -439,10 +448,8 @@ class Class_AdminVarLoader extends Storm_Model_Loader { protected function _getStaticMapVars() { - return ['STATIC_MAP' => Class_AdminVar_Meta::newCombo($this->_('API utilisée pour les cartes statiques'), - ['options' => ['selectOptions' => ['label' => $this->_('API'), - 'value' => Class_Map::GOOGLE_API, - 'multioptions' => (new Class_Map())->getAPIs()]]])->bePrivate()]; + return ['STATIC_MAP' => Class_AdminVar_Meta::newDefault($this->_('URL utilisée pour les cartes statiques, doit être compatible avec https://github.com/dfacts/staticmaplite'), + ['value' => 'https://smap.afi-sa.net/staticmap.php'])->bePrivate()]; } @@ -559,13 +566,6 @@ class Class_AdminVarLoader extends Storm_Model_Loader { } - public function getStaticMapApi() { - return ($api = static::get('STATIC_MAP')) - ? $api - : Class_Map::GOOGLE_API; - } - - /** * @return bool */ diff --git a/library/Class/CollectionFusion.php b/library/Class/CollectionFusion.php index a480dd02718b43bc7b0a250ebfe588501c10b930..912975af979e71a3749d897592c1274a2de9a665 100644 --- a/library/Class/CollectionFusion.php +++ b/library/Class/CollectionFusion.php @@ -25,7 +25,7 @@ class Class_CollectionFusion extends Storm_Model_Abstract{ public function __construct($elements) { - $this->_elements=$elements; + $this->_elements = array_filter($elements); } @@ -38,4 +38,3 @@ class Class_CollectionFusion extends Storm_Model_Abstract{ return '<div style="brackground:red;padding:50px;width:100%;height:100%;"></div>'; } } -?> \ No newline at end of file diff --git a/library/Class/CriteresRecherche.php b/library/Class/CriteresRecherche.php index f735b5ae7e25ad5fcf4a8ec138780db0a3214503..6005e19285bd216aad980be17d858a8c8d2feff4 100644 --- a/library/Class/CriteresRecherche.php +++ b/library/Class/CriteresRecherche.php @@ -128,7 +128,8 @@ class Class_CriteresRecherche { 'fil', 'bib_select', 'serie', - 'from']); + 'from', + 'selection']); } @@ -266,6 +267,7 @@ class Class_CriteresRecherche { public function getFiltres() { $filtres = []; if (!$this->isRecherchePanier() + && !$this->isSelection() && !$this->isRechercheCatalogueEmpty() && $this->_profil) { $filtres = array_merge($filtres, @@ -385,6 +387,13 @@ class Class_CriteresRecherche { } + public function getSelection() { + return $this->isSelection() + ? new Class_RecordSelection() + : null; + } + + public function visitCatalogue($visitor, $catalogue) { $visitor->visitCatalogue($catalogue); @@ -465,8 +474,20 @@ class Class_CriteresRecherche { } - public function isRechercheCatalogueOuPanier() { - return ($this->isRechercheCatalogue() || $this->isRecherchePanier()); + public function isSelection() { + return (bool)$this->getParam('selection'); + } + + + public function isEmptySelection() { + return $this->isSelection() && $this->getSelection()->isEmpty(); + } + + + public function isRechercheCatalogueOuPanierOuSelection() { + return $this->isRechercheCatalogue() + || $this->isRecherchePanier() + || $this->isSelection(); } @@ -476,7 +497,7 @@ class Class_CriteresRecherche { public function visitPanierCatalogue($visitor) { - if (!$this->isRechercheCatalogueOuPanier()) + if (!$this->isRechercheCatalogueOuPanierOuSelection()) return $this; if ($catalogue = $this->getCatalogue()) { @@ -489,6 +510,11 @@ class Class_CriteresRecherche { return $this; } + if ($selection = $this->getSelection()) { + $visitor->visitSelection($selection); + return $this; + } + $visitor->setErreur($this->_('La sélection ne contient aucune notice')); return $this; } diff --git a/library/Class/Feature/List.php b/library/Class/Feature/List.php index 9dbeeab2a914e76ac93a11b1388daad1631cc702..714cda3869de04298c569a4f873414b6025d329d 100644 --- a/library/Class/Feature/List.php +++ b/library/Class/Feature/List.php @@ -482,6 +482,17 @@ class Class_Feature_List { 'Test' => '', 'Date' => '2018-09-04'], + '59497' => + ['Label' => $this->_('Sélection multiple de notices pour impression, export et sauvegarde'), + 'Desc' => $this->_('Ajoutez librement des notices dans une sélection temporaire'), + 'Image' => '', + 'Video' => 'https://youtu.be/9vFTH2NcdGk', + 'Category' => $this->_('Recherche'), + 'Right' => function($feature_description, $user) {return true;}, + 'Wiki' => 'http://wiki.bokeh-library-portal.org/index.php?title=S%C3%A9lection_de_notices_dans_un_r%C3%A9sultat_de_recherche', + 'Test' => '', + 'Date' => '2018-09-25'], + ]; } } \ No newline at end of file diff --git a/library/Class/IntProfilDonnees.php b/library/Class/IntProfilDonnees.php index 1922cf6731d2b9775e232ef2d8d66bb49d5257e9..161307b1d541f20713ad2c8fe0731ebd05b9f573 100644 --- a/library/Class/IntProfilDonnees.php +++ b/library/Class/IntProfilDonnees.php @@ -193,7 +193,7 @@ class IntProfilDonneesLoader extends Storm_Model_Loader { public function getDateFormats() { return [Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_NONE => '', Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_AAAA_MM_JJ => 'AAAA-MM-JJ', - Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_AAAAMMJJ => 'AAAMMJJ', + Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_AAAAMMJJ => 'AAAAMMJJ', Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_VALUES => $this->_('Valeur(s)'), Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_JJ_MM_AAAA => 'JJ-MM-AAAA', Class_IntProfilDonnees::NOVELTY_DATE_FORMAT_SLASHED_JMAAAA => 'J/M/AAAA']; diff --git a/library/Class/Map.php b/library/Class/Map.php index 7aad6b65e7a7f12be49bc8d0ba1c135d77bfb77f..47395d0dbedfcf64b5f48f8b2f830786cf378706 100644 --- a/library/Class/Map.php +++ b/library/Class/Map.php @@ -21,46 +21,28 @@ class Class_Map extends Class_Entity { - const - ZOOM = 15, - GOOGLE_API = 'maps.googleapis.com', - OSM_API = 'staticmap.openstreetmap.de'; - - - public static function getAPIs() { - $apis = [static::GOOGLE_API, - static::OSM_API]; - return array_combine($apis, $apis); - } - + const ZOOM = 15; public static function newWith($location) { - $class = Class_AdminVar::getStaticMapApi() == static::GOOGLE_API - ? 'Class_Map_Google' - : 'Class_Map_OSM'; - - return (new $class()) - ->setLocation($location); + return (new static())->setLocation($location); } -} - -class Class_Map_OSM extends Class_Map { public function __construct() { $this->setLabel('osm'); } public function getStaticMapUrl($params) { - if(!$full_adress = $this->getFullAdress()) + if (!$full_adress = $this->getFullAdress()) return ''; $params = array_merge(['center' => $full_adress, 'markers' => $full_adress], $params); - return sprintf('http://staticmap.openstreetmap.de/staticmap.php?%s', http_build_query($params)); + + return Class_AdminVar::getValueOrDefault('STATIC_MAP') . '?' . http_build_query($params); } @@ -88,43 +70,3 @@ class Class_Map_OSM extends Class_Map { return sprintf('https://openstreetmap.org/?%s', http_build_query($params)); } } - - - -class Class_Map_Google extends Class_Map { - public function __construct() { - $this->setLabel('google'); - } - - - public function getStaticMapUrl($params) { - if(!$full_adress = $this->getFullAdress()) - return ''; - - $params = array_merge(['sensor' => 'false', - 'center' => $full_adress, - 'markers' => $full_adress], - $params); - - return sprintf('https://maps.googleapis.com/maps/api/staticmap?%s', http_build_query($params)); - } - - - public function getFullAdress() { - if(!$location = $this->getLocation()) - return ''; - - if (($latitude = $location->getLatitude()) && ($longitude = $location->getLongitude())) - return $latitude . ',' . $longitude; - - return implode(',', [$location->getAdresse(), - $location->getCodePostal(), - $location->getVille(), - $location->getPays()]); - } - - - public function getFullMapUrl() { - return sprintf('https://maps.google.com/maps?%s', http_build_query(['q' => $this->getFullAdress()])); - } -} \ No newline at end of file diff --git a/library/Class/Migration/PiwikToMatomo.php b/library/Class/Migration/PiwikToMatomo.php new file mode 100644 index 0000000000000000000000000000000000000000..957587717e5c484318c637497244aa91d835eb35 --- /dev/null +++ b/library/Class/Migration/PiwikToMatomo.php @@ -0,0 +1,34 @@ +<?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_Migration_PiwikToMatomo { + + public function run() { + if(!$old_var = Class_AdminVar::find('PIWIK_AUTH_TOKEN')) + return $this; + + $old_var->delete(); + + Class_AdminVAr::set('MATOMO_AUTH_TOKEN', $old_var->getValeur()); + return $this; + } +} \ No newline at end of file diff --git a/library/Class/ModeleFusion.php b/library/Class/ModeleFusion.php index fd129a3839f6a50067eeb5fbc17272fb039f6014..478fdc983a88f066546cbde476da9b5f38e28285 100644 --- a/library/Class/ModeleFusion.php +++ b/library/Class/ModeleFusion.php @@ -43,8 +43,20 @@ class Class_ModeleFusionLoader extends Storm_Model_Loader { public function getFusionForStrategy($strategy) { - return $this->findFirstBy(['type' => $strategy, - 'profil_ids' => '']); + return Class_ModeleFusion::findFirstBy(['type' => $strategy, + 'profil_ids' => '']); + } + + + public function canPrintRecordsInProfile($profile) { + return null !== Class_ModeleFusion::getFusionForStrategyAndProfilOrDefault(Class_ModeleFusion::RECORDS_TEMPLATE, + $profile); + } + + + public function canPrintRecordInProfile($profile) { + return null !== Class_ModeleFusion::getFusionForStrategyAndProfilOrDefault(Class_ModeleFusion::RECORD_TEMPLATE, + $profile); } @@ -59,14 +71,26 @@ class Class_ModeleFusionLoader extends Storm_Model_Loader { } + public function getFusionForStrategyAndProfilOrDefault($strategy, $profil) { + if ($model_fusion = Class_ModeleFusion::getFusionForStrategyAndProfil($strategy, + $profil->getId())) + return $model_fusion; + + return Class_ModeleFusion::getFusionForStrategy($strategy); + } + + public function getFusionForStrategyAndProfil($strategy,$id_profil) { - $models =array_filter($this->findAllBy(['type' => $strategy]), - function($model) use ($id_profil) { - if (!$ids=$model->getProfilIds()) - return false; - if (in_array($id_profil,explode(';',$ids))) - return $model; - }); + $models = array_filter( + Class_ModeleFusion::findAllBy(['type' => $strategy]), + function($model) use ($id_profil) { + if (!$ids=$model->getProfilIds()) + return false; + + if (in_array($id_profil,explode(';',$ids))) + return $model; + }); + return reset($models); } @@ -81,7 +105,7 @@ class Class_ModeleFusionLoader extends Storm_Model_Loader { public function getTemplates() { - if ($models= Class_ModeleFusion::findAll()) + if ($models = Class_ModeleFusion::findAll()) return array_filter($models, function($model) { return !$model->isForActivity(); @@ -128,7 +152,8 @@ class Class_ModeleFusion extends Storm_Model_Abstract { RECORD_TEMPLATE = 'Notice_View', LOANS_TEMPLATE = 'Loans_List'; - protected $_table_name = 'modele_fusion', + protected + $_table_name = 'modele_fusion', $_loader_class = 'Class_ModeleFusionLoader', $_table_primary = 'id', $_default_attribute_values = ['nom' => '', diff --git a/library/Class/MoteurRecherche.php b/library/Class/MoteurRecherche.php index 2b8b62063ae00227a7b6e8f28e8b159bea7d0d37..de281f3fb37246a41eb68a4b63fa372fd8180a73 100644 --- a/library/Class/MoteurRecherche.php +++ b/library/Class/MoteurRecherche.php @@ -443,11 +443,17 @@ class Class_MoteurRecherche { if ($this->all_facettes) $this->setCondition("MATCH(facettes) AGAINST('" . trim($this->all_facettes)."' IN BOOLEAN MODE)"); - if($this->criteres_recherche->hasEmptyDomain() && !$this->criteres_recherche->isSearchInBasket()){ + if($this->criteres_recherche->hasEmptyDomain() + && !$this->criteres_recherche->isSearchInBasket()){ return ['statut' => 'erreur', 'erreur' => $this->_('Domaine non paramétré')]; } + if($this->criteres_recherche->isEmptySelection()){ + return ['statut' => 'erreur', + 'erreur' => $this->_('La sélection courante est vide')]; + } + return self::getConditionsForRequest($this->conditions, $this->_or_conditions, $this->_filter_domain_conditions); } @@ -682,4 +688,12 @@ class Class_MoteurRecherche { if ($diff = array_diff($version->getData(), $previous->getData())) $this->setCondition('clef_alpha in (\'' . implode('\', \'', $diff) . '\')'); } + + + public function visitSelection($selection) { + if (!$selection || $selection->isEmpty()) + return; + + $this->setCondition('id_notice in (' . implode(',', $selection->values()). ')'); + } } \ No newline at end of file diff --git a/library/Class/RecordSelection.php b/library/Class/RecordSelection.php new file mode 100644 index 0000000000000000000000000000000000000000..2efe35dd3e63be20f397e151bde21c132fe973cd --- /dev/null +++ b/library/Class/RecordSelection.php @@ -0,0 +1,99 @@ +<?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_RecordSelection { + + protected function _getSelection() { + return (array)Zend_Registry::get('session')->search_record_selection; + } + + + protected function _setSelection($values) { + Zend_Registry::get('session')->search_record_selection = array_keys(array_flip($values)); + return $this; + } + + + public function count() { + return count($this->_getSelection()); + } + + + public function isEmpty() { + return 0 === $this->count(); + } + + + public function values() { + return $this->_getSelection(); + } + + + public function includes($record) { + return in_array($record->getId(), $this->_getSelection()); + } + + + public function remove($record) { + return $this->_setSelection( array_diff($this->_getSelection(), + [$record->getId()]) ); + } + + + public function add($record) { + return $this->addId($record->getId()); + } + + + public function addAll($records) { + $ids = array_map(function($record) { return $record->getId(); }, + $records); + return $this->addAllIds($ids); + } + + + public function addAllIds($ids) { + return $this->_setSelection(array_merge($this->_getSelection(), $ids)); + } + + + public function addId($id) { + $selection = $this->_getSelection(); + $selection []= $id; + return $this->_setSelection($selection); + } + + + public function toggle($record) { + if (!$record) + return $this; + + return $this->includes($record) + ? $this->remove($record) + : $this->add($record); + } + + + public function clear() { + $this->_setSelection([]); + } +} diff --git a/library/Class/Systeme/ModulesAppli.php b/library/Class/Systeme/ModulesAppli.php index a540518b21f3a4d40453b337cedeb69fa9469746..3ba3de66167c1967bf126177b15368167e37cd96 100644 --- a/library/Class/Systeme/ModulesAppli.php +++ b/library/Class/Systeme/ModulesAppli.php @@ -25,7 +25,7 @@ class Class_Systeme_ModulesAppli extends Class_Systeme_ModulesAbstract { const ONGLETS_KEY = 'onglets'; const LISTE_FORMAT_TABLEAU = 1; - const LISTE_FORMAT_ACCORDEON = 2; + const LISTE_FORMAT_LIST = 2; const LISTE_FORMAT_VIGNETTES = 3; const LISTE_FORMAT_MUR = 4; const LISTE_FORMAT_CHRONO = 5; @@ -155,7 +155,6 @@ class Class_Systeme_ModulesAppli extends Class_Systeme_ModulesAbstract { public static function getAvailableListeNoticeFormat() { return [Class_Systeme_ModulesAppli::LISTE_FORMAT_TABLEAU => 'Tableau', - Class_Systeme_ModulesAppli::LISTE_FORMAT_ACCORDEON => 'Liste en mode accordéon', Class_Systeme_ModulesAppli::LISTE_FORMAT_VIGNETTES => 'Vignettes', Class_Systeme_ModulesAppli::LISTE_FORMAT_MUR => 'Mur', Class_Systeme_ModulesAppli::LISTE_FORMAT_CHRONO => 'Chronologique']; @@ -165,7 +164,7 @@ class Class_Systeme_ModulesAppli extends Class_Systeme_ModulesAbstract { public static function getAvailableListeDomainsFormat() { return [ - Class_Systeme_ModulesAppli::LISTE_FORMAT_ACCORDEON => 'Liste', + Class_Systeme_ModulesAppli::LISTE_FORMAT_LIST => 'Liste', Class_Systeme_ModulesAppli::LISTE_FORMAT_MUR => 'Mur' ]; diff --git a/library/Class/TableDescription/PNBItems.php b/library/Class/TableDescription/PNBItems.php index 68d36b78ef9649a826c7d5ca3f587b368fe42352..6c4de84050ac0753d96dbbf236619b75273eb943 100644 --- a/library/Class/TableDescription/PNBItems.php +++ b/library/Class/TableDescription/PNBItems.php @@ -75,9 +75,7 @@ class Class_TableDescription_PNBItems extends Class_TableDescription { public function getLiveQuantity($model) { return $this->loanCountOrLocalOngoing($model) . ' / ' - . $this->quantityOrInfinite($this->isInfiniteLoan($model) - ? 9999 - : $model->getLoanAllowedNumberOfUsers()); + . $model->getLoanAllowedNumberOfUsers(); } diff --git a/library/Class/UserAgent.php b/library/Class/UserAgent.php index e0421a8ab34966cea22df3c4810ca63b4404e02b..4c71d7ea5ed2b0098efed98f059b79ed6721a846 100644 --- a/library/Class/UserAgent.php +++ b/library/Class/UserAgent.php @@ -32,7 +32,7 @@ class Class_UserAgent { public function isBot() { - return 0 !== preg_match('/(bot\/|sistrix|voilabot|slurp)/i', + return 0 !== preg_match('/(bot\/|sistrix|voilabot|slurp|mauibot|ahrefsbot|semrushbot)/i', $this->_user_agent_string); } @@ -83,4 +83,4 @@ class Class_UserAgent { or preg_match($regex_match, strtolower($this->_user_agent_string))); } } -?> \ No newline at end of file +?> diff --git a/library/Class/WebService/BibNumerique/Numilog.php b/library/Class/WebService/BibNumerique/Numilog.php index 4f5e9da30c51c8bf7113a06cc6d4f8afb83845fc..a5ca1d15baa0d40742680132e5d9d504c80c6268 100644 --- a/library/Class/WebService/BibNumerique/Numilog.php +++ b/library/Class/WebService/BibNumerique/Numilog.php @@ -37,14 +37,18 @@ class Class_WebService_BibNumerique_Numilog extends Class_WebService_BibNumeriqu * @return array of harvested ids */ protected function _importRessources($ressources) { + $harvestedIds = []; $this->_albums = []; foreach ($ressources as $ressource) { + if ($ressource->isDeleted()) { + continue; + } $harvestedIds[] = $ressource->getId(); if ($ressource->isAlreadyHarvested()) continue; - - $this->_albums[] = $ressource->import(); + if ($album = $ressource->import()) + $this->_albums[] = $album; } return $harvestedIds; diff --git a/library/Class/WebService/BibNumerique/RessourceNumerique.php b/library/Class/WebService/BibNumerique/RessourceNumerique.php index 61e040ec2fb240f77782566b3c9400c24753edfa..e9248fb6aa535902790dc09e2608c3c23efdb4cc 100644 --- a/library/Class/WebService/BibNumerique/RessourceNumerique.php +++ b/library/Class/WebService/BibNumerique/RessourceNumerique.php @@ -44,7 +44,8 @@ class Class_WebService_BibNumerique_RessourceNumerique { $_ressources = [], $_zones = [], $_bibliotheques='', - $_authors = []; + $_authors = [], + $_is_deleted = false; static public function getLogger() { @@ -286,10 +287,21 @@ class Class_WebService_BibNumerique_RessourceNumerique { $resource_log = '"' . $this->getTitle() . '" (' . $this->getId() . ')'; if ($album = $this->findAlbumInDB()) { + if ($this->isDeleted()) { + $this->_debug('delete [' . $album->getId() . '] with ' . $resource_log) ; + + $album->delete(); + return ; + } $this->_debug('update [' . $album->getId() . '] with ' . $resource_log) ; return $this->updateAlbum($album); } + if ($this->isDeleted()) { + $this->_debug('already deleted '.$resource_log) ; + return ; + } + $this->_debug('create ' . $resource_log) ; return $this->createAlbum(Class_Album::newInstance()); } @@ -441,4 +453,13 @@ class Class_WebService_BibNumerique_RessourceNumerique { public function getRessources() { return $this->_ressources; } + + public function isDeleted() { + return $this->_is_deleted; + } + + public function setDeleted($is_deleted=true) { + $this->_is_deleted = $is_deleted; + return $this; + } } diff --git a/library/Class/WebService/OAI/DublinCoreParser.php b/library/Class/WebService/OAI/DublinCoreParser.php index 89078de8c20b8cb7cbc831680aef5320ba67caf2..c4c48ee87e9fc1b83a80ec6ca47ca07b969613dc 100644 --- a/library/Class/WebService/OAI/DublinCoreParser.php +++ b/library/Class/WebService/OAI/DublinCoreParser.php @@ -31,6 +31,9 @@ class Class_WebService_OAI_DublinCoreParser extends Class_WebService_OAI_ParserAbstract { protected $_record; + + + public function endns1_record($data) { $this->endRecord($data); } @@ -55,7 +58,8 @@ class Class_WebService_OAI_DublinCoreParser extends Class_WebService_OAI_ParserA 'type' => [], 'rights' => [], 'source' => [], - 'language' => []]; + 'language' => [], + 'deleted' => false]; } diff --git a/library/Class/WebService/OAI/DublinCoreParser/ForRessourceNumerique.php b/library/Class/WebService/OAI/DublinCoreParser/ForRessourceNumerique.php index 63233ea5b4565ea6129a0f52df95e18e345d24d6..89ad01f534b229990411f03c33644de8744fcd69 100644 --- a/library/Class/WebService/OAI/DublinCoreParser/ForRessourceNumerique.php +++ b/library/Class/WebService/OAI/DublinCoreParser/ForRessourceNumerique.php @@ -91,7 +91,8 @@ class Class_WebService_OAI_DublinCoreParser_ForRessourceNumerique extends Class_ ->setEditeur($first_editor) ->setYear(substr($this->_record['date'], 0, 4)) ->setDescription($first_description) - ->setRights($this->_record['rights']); + ->setRights($this->_record['rights']) + ->setDeleted(isset($this->_record['deleted']) ? $this->_record['deleted']: false ); foreach($this->_record['auteur'] as $author) $resource->addAuthor($author); diff --git a/library/Class/WebService/OAI/ParserAbstract.php b/library/Class/WebService/OAI/ParserAbstract.php index 3aa83f10c95fa18484615401a1c19688d3e207f0..a96d53048104e8cb22be70a5855fd93930d0e90e 100644 --- a/library/Class/WebService/OAI/ParserAbstract.php +++ b/library/Class/WebService/OAI/ParserAbstract.php @@ -40,6 +40,13 @@ abstract class Class_WebService_OAI_ParserAbstract { } + public function startHeader($attributes) { + if (isset($attributes['STATUS']) + && ($attributes['STATUS'] == 'deleted')) + $this->_record['deleted'] = true; + } + + public function startResumptionToken($attributes) { $this->_resumptionToken = new Class_WebService_ResumptionToken(); if (isset($attributes['COMPLETELISTSIZE'])) @@ -70,7 +77,7 @@ abstract class Class_WebService_OAI_ParserAbstract { public function endRecord($data) { - $this->_records[] = $this->getLastRecord($data); + $this->_records[] = $this->getLastRecord($data); } diff --git a/library/Class/WebService/SIGB/AbstractRESTService.php b/library/Class/WebService/SIGB/AbstractRESTService.php index c9476e05555266f52be2041a64e67e18e88f1713..3b681672b16c600d9c59f928b25140133e36db36 100644 --- a/library/Class/WebService/SIGB/AbstractRESTService.php +++ b/library/Class/WebService/SIGB/AbstractRESTService.php @@ -271,12 +271,20 @@ abstract class Class_WebService_SIGB_AbstractRESTService extends Class_WebServic if (0 === strpos($xml, '<html>')) return $this->_getNetworkErrorLabel(); + if ($error = $this->_xmlError($xml)) + return $error; + return ($error = $this->_findErrorTagInXml($xml, $tag)) ? $this->_getErrorFromCode($error, $message) : null; } + protected function _xmlError($xml) { + return ''; + } + + /** * @return array */ diff --git a/library/Class/WebService/SIGB/Koha/Service.php b/library/Class/WebService/SIGB/Koha/Service.php index e599466a4c1320428631290c72279830b731ec5e..40457d7e1099c845f9072ce64faa26318a59067f 100644 --- a/library/Class/WebService/SIGB/Koha/Service.php +++ b/library/Class/WebService/SIGB/Koha/Service.php @@ -146,7 +146,26 @@ class Class_WebService_SIGB_Koha_Service extends Class_WebService_SIGB_AbstractR if (1 == Class_AdminVar::get('KOHA_MULTI_SITES')) return $this->holdItem($user, $exemplaire, $code_annexe); - return $this->ilsdiHoldTitle($this->_setPickupLocation(['patron_id' => $user->getIdSigb(), + if (Class_AdminVar::isModuleEnabled('KOHA_TRY_HOLD_ITEM')) + return $this->_tryHoldItem($user, $exemplaire, $code_annexe); + + return $this->_holdTitle($user,$exemplaire, $code_annexe); + } + + + protected function _tryHoldItem($user, $exemplaire, $code_annexe) { + $response = $this->holdItem($user, $exemplaire, $code_annexe); + + if (isset($response['statut']) && false == $response['statut']) + return $this->_holdTitle($user,$exemplaire, $code_annexe); + + return $response; + } + + + protected function _holdTitle($user, $exemplaire, $code_annexe) { + return $this->ilsdiHoldTitle( + $this->_setPickupLocation(['patron_id' => $user->getIdSigb(), 'bib_id' => $exemplaire->getIdOrigine(), 'request_location' => '127.0.0.1'], $code_annexe), @@ -154,6 +173,13 @@ class Class_WebService_SIGB_Koha_Service extends Class_WebService_SIGB_AbstractR } + protected function _xmlError($xml) { + return (false !== strpos($xml, 'OpacItemHoldNotAllowed')) + ? $this->_('La réservation à l\'exemplaire est interdite') + : ''; + } + + protected function _setPickupLocation($args, $code) { if (trim($code) && $annexe = Class_CodifAnnexe::findFirstBy(['code' => $code])) $args['pickup_location'] = $annexe->getIdOrigine(); diff --git a/library/Class/WebService/SIGB/Orphee/Service.php b/library/Class/WebService/SIGB/Orphee/Service.php index c24d3cc91a6a400018e303d76c3a8b2904b5ff94..e2a9906a0a8e804da706e3e454344ad0822cbfc5 100644 --- a/library/Class/WebService/SIGB/Orphee/Service.php +++ b/library/Class/WebService/SIGB/Orphee/Service.php @@ -124,7 +124,7 @@ class Class_WebService_SIGB_Orphee_Service extends Class_WebService_SIGB_Abstrac public function providesChangePasswordService() { return - $this->_search_client->hasFunction('SetPwdAdh') + $this->getSearchClient()->hasFunction('SetPwdAdh') && Class_AdminVar::isLoginThroughSigbOnlyEnabled(); } diff --git a/library/Trait/SearchCriteriaVisitor.php b/library/Trait/SearchCriteriaVisitor.php index 46c4ddbd452a8df2c87e0c50f5c6722894036571..f52cd242d2a5cc3e7c15c54ff4adbaa0fab29cb9 100644 --- a/library/Trait/SearchCriteriaVisitor.php +++ b/library/Trait/SearchCriteriaVisitor.php @@ -46,6 +46,7 @@ trait Trait_SearchCriteriaVisitor { public function setErreur($error) {} public function visitSearchUrl($params) {} public function visitPanier($panier) {} + public function visitSelection($selection) {} public function visitFacetteDomainForOrConditions($catalog_id) {} public function visitFilterOnDomain($criteria) {} diff --git a/library/ZendAfi/Acl/AdminControllerRoles.php b/library/ZendAfi/Acl/AdminControllerRoles.php index d95fe0bcf58a2b5abbede66c11c31337003532b3..1f58989f51d3c0065eef955c5f5fd9790a615d57 100644 --- a/library/ZendAfi/Acl/AdminControllerRoles.php +++ b/library/ZendAfi/Acl/AdminControllerRoles.php @@ -57,7 +57,6 @@ class ZendAfi_Acl_AdminControllerRoles extends Zend_Acl { $this->add(new Zend_Acl_Resource('modo')); $this->add(new Zend_Acl_Resource('nouveaute')); $this->add(new Zend_Acl_Resource('panier')); - $this->add(new Zend_Acl_Resource('planaccess')); $this->add(new Zend_Acl_Resource('rss')); $this->add(new Zend_Acl_Resource('sito')); $this->add(new Zend_Acl_Resource('menus')); diff --git a/library/ZendAfi/Controller/Action/Helper/SearchRecords.php b/library/ZendAfi/Controller/Action/Helper/SearchRecords.php new file mode 100644 index 0000000000000000000000000000000000000000..c23518792803e77b427639a02e683c099ea07886 --- /dev/null +++ b/library/ZendAfi/Controller/Action/Helper/SearchRecords.php @@ -0,0 +1,37 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class ZendAfi_Controller_Action_Helper_SearchRecords extends Zend_Controller_Action_Helper_Abstract { + public function searchRecords() { + $criteria = (new Class_CriteresRecherche()) + ->setParams($this->getRequest()->getParams()); + + return Class_MoteurRecherche::getInstance() + ->lancerRecherche($criteria); + } + + + public function direct() { + return $this->searchRecords(); + } +} +?> \ No newline at end of file diff --git a/library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php b/library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php index b50076ad2ac8a213ea718f915626409cbeb09872..68f548bc915826fa00af253e429e7b1ee4278a42 100644 --- a/library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php +++ b/library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php @@ -20,21 +20,50 @@ */ -class ZendAfi_Controller_Plugin_Mailer_SearchResult extends ZendAfi_Controller_Plugin_Mailer_ModelFusion { +class ZendAfi_Controller_Plugin_Mailer_SearchResult + extends ZendAfi_Controller_Plugin_Mailer_ModelFusion { protected function _getSubject() { + $term = $this->_getSelection()->isEmpty() + ? $this->_view->tagSearchTerm($this->_getCriteria(), + function($term) { return $term; }) + : $this->_('dans ma sélection'); + return $this->_('%s : Documents %s', Class_Profil::getCurrentProfil()->getTitreSite(), - $this->_getParam('subject', parent::_getSubject())); + $term); + } + + + protected function _getCriteria() { + return (new Class_CriteresRecherche())->setParams($this->_request->getParams()); + } + + + protected function _getSelection() { + return new Class_RecordSelection(); } protected function _getHtml() { - $criteria = (new Class_CriteresRecherche())->setParams($this->_request->getParams()); + $model_fusion = Class_ModeleFusion::getFusionForStrategyAndProfilOrDefault(Class_ModeleFusion::RECORDS_TEMPLATE, + Class_Profil::getCurrentProfil()); + + if (!$ids = $this->_getSelection()->values()) + $ids = $this->_helper->searchRecords()->fetchAllRecordsIds(); + + $params = (new Class_Entity) + ->setStrategy($model_fusion->getType()) + ->setModelFusion($model_fusion->getId()) + ->setIds(implode(';', array_slice($ids, 0, 200))); + + $criteria = $this->_getCriteria(); + return $this->_view->tag('p', - $this->_view->tagAnchor(Class_Url::absolute($criteria->getUrlRetourListe(), null, true), + $this->_view->tagAnchor(Class_Url::absolute($this->_getCriteria() + ->getUrlRetourListe(), + null, true), $this->_('Voir le résultat de recherche complet'))) - . parent::_getHtml(); - + . $this->_view->tagModelFusion($params); } } \ No newline at end of file diff --git a/library/ZendAfi/Controller/Plugin/Printer/SearchResult.php b/library/ZendAfi/Controller/Plugin/Printer/SearchResult.php new file mode 100644 index 0000000000000000000000000000000000000000..0037e60454dac5b03d50a3c88e87090e9be382c8 --- /dev/null +++ b/library/ZendAfi/Controller/Plugin/Printer/SearchResult.php @@ -0,0 +1,56 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class ZendAfi_Controller_Plugin_Printer_SearchResult + extends ZendAfi_Controller_Plugin_Printer_ModelFusion { + + protected function _getPrinterConfig() { + return $this->_getParam('id') + ? $this->_getOnePrinterConfig() + : $this->_getManyPrinterConfig(); + } + + + protected function _getOnePrinterConfig() { + $model_fusion = Class_ModeleFusion::getFusionForStrategyAndProfilOrDefault(Class_ModeleFusion::RECORD_TEMPLATE, + Class_Profil::getCurrentProfil()); + + return parent::_getPrinterConfig() + ->setStrategy($model_fusion->getType()) + ->setModelFusion($model_fusion->getId()) + ->setId($this->_getParam('id')); + } + + + protected function _getManyPrinterConfig() { + $model_fusion = Class_ModeleFusion::getFusionForStrategyAndProfilOrDefault(Class_ModeleFusion::RECORDS_TEMPLATE, + Class_Profil::getCurrentProfil()); + + if (!$ids = (new Class_RecordSelection())->values()) + $ids = $this->_helper->searchRecords()->fetchAllRecordsIds(); + + return parent::_getPrinterConfig() + ->setStrategy($model_fusion->getType()) + ->setModelFusion($model_fusion->getId()) + ->setIds(implode(';', array_slice($ids, 0, 200))); + } +} \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/ListeNotices.php b/library/ZendAfi/View/Helper/ListeNotices.php index a48e848c12f5ae69045bf17a89aec989a7b661fb..9c936f1bec935f59d10c3a659d42f0cc925d79de 100644 --- a/library/ZendAfi/View/Helper/ListeNotices.php +++ b/library/ZendAfi/View/Helper/ListeNotices.php @@ -23,7 +23,7 @@ class ZendAfi_View_Helper_ListeNotices extends ZendAfi_View_Helper_BaseHelper { public function listeNotices($search_result) { $criteres_recherche = $search_result->getCriteresRecherche(); - $notices = $search_result->getRecords(); + $notices = $search_result->fetchRecords(); $nombre_resultats = $search_result->getRecordsCount(); $page = $criteres_recherche->getPage(); $preferences = $search_result->getSettings(); @@ -63,7 +63,6 @@ class ZendAfi_View_Helper_ListeNotices extends ZendAfi_View_Helper_BaseHelper { protected function _displayList($notices, $preferences) { $helpers = [Class_Systeme_ModulesAppli::LISTE_FORMAT_TABLEAU => 'ListeNotices_Tableau', - Class_Systeme_ModulesAppli::LISTE_FORMAT_ACCORDEON => 'ListeNotices_Accordeon', Class_Systeme_ModulesAppli::LISTE_FORMAT_VIGNETTES => 'ListeNotices_Vignettes', Class_Systeme_ModulesAppli::LISTE_FORMAT_MUR => 'ListeNotices_Mur', Class_Systeme_ModulesAppli::LISTE_FORMAT_CHRONO => 'ListeNotices_Chrono']; diff --git a/library/ZendAfi/View/Helper/ListeNotices/Abstract.php b/library/ZendAfi/View/Helper/ListeNotices/Abstract.php index 6059efda377aead92cd4e45e6cfc2d65d5da69d8..79595eabf9cb1baad7bf8c6161827f3104f5c7b5 100644 --- a/library/ZendAfi/View/Helper/ListeNotices/Abstract.php +++ b/library/ZendAfi/View/Helper/ListeNotices/Abstract.php @@ -20,6 +20,13 @@ */ abstract class ZendAfi_View_Helper_ListeNotices_Abstract extends ZendAfi_View_Helper_BaseHelper { + protected function _updatePreferences($preferences) { + return array_merge(['liste_codes' => 'TANE', + 'display_add_to_cart' => true, + 'display_select_record' => false], + $preferences); + } + protected function _divRecord($html, $record, $class) { return $this->_tag('div', $html, diff --git a/library/ZendAfi/View/Helper/ListeNotices/Accordeon.php b/library/ZendAfi/View/Helper/ListeNotices/Accordeon.php deleted file mode 100644 index 61f376f7ee82d7ca299a3ff3bddd2035c1cc78e1..0000000000000000000000000000000000000000 --- a/library/ZendAfi/View/Helper/ListeNotices/Accordeon.php +++ /dev/null @@ -1,65 +0,0 @@ -<?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 ZendAfi_View_Helper_ListeNotices_Accordeon extends ZendAfi_View_Helper_ListeNotices_Abstract { - public function listeNotices_Accordeon($data, $preferences=[]) { - // Javascripts pour affichage localisation - $html ='<link rel="stylesheet" type="text/css" media="screen" href="'.URL_ADMIN_JS.'slimbox/slimbox2.css">'; - $html.='<link rel="stylesheet" type="text/css" media="screen" href="'.URL_ADMIN_JS.'jquery_ui/css/jquery.ui.all.css">'; - $html.='<link rel="stylesheet" type="text/css" media="screen" href="'.URL_ADMIN_JS.'rating/jquery.rating.css">'; - - $html.='<script type="text/javascript" src="'.URL_ADMIN_JS.'slimbox/slimbox2.js"> </script>'; - $html.='<script type="text/javascript" src="'.URL_ADMIN_JS.'rating/jquery.rating.pack.js"> </script>'; - - // Notices - $notice_html= new Class_NoticeHtml(""); - $lig=0; - foreach ($data as $notice) { - $html.='<table cellspacing="0" cellpadding="3" border="0" width="100%">'; - if($lig % 2) $style_css="listeImpaire"; else $style_css="listePaire"; - $div_notice="N".$notice->getId(); - $type_doc = $notice->getTypeDoc(); - $onclick="deployer_contracter('".$div_notice."');getNoticeAjax('".$div_notice."','".$div_notice."','".$type_doc."')"; - $html.='<tr>'; - $html.=sprintf('<td class="%s" width="10" style="text-align:center"><img id="I'.$div_notice.'" src="'.URL_IMG.'bouton/plus_carre.gif" border="0" onclick="%s" style="cursor:pointer" alt="%s"/></td>', - $style_css, - $onclick, - $this->translate()->_('déplier')); - - $html.=sprintf('<td class="%s" width="26" style="text-align:center">%s</td>', - $style_css, - $this->view->iconeSupport($type_doc)); - - $html.='<td class="'. $style_css .'" width="100%"><a href="#" onclick="'.$onclick.'">'.$notice->getTitrePrincipal().'</a>'; - $html.=' / '.$notice->getAuteurPrincipal().'</td>'; - $html.='</tr>'; - - // container notice - $patience=sprintf('<table><tr><td><img border="0" src="'.URL_IMG.'patience.gif" alt="%s" /></td><td>%s...</td></tr></table>', - $this->translate()->_('Chargement en cours'), - $this->translate()->_('Veuillez patienter : traitement en cours')); - - $html.='<tr><td colspan="10">'.$notice_html->getConteneurNotice($notice->getId()).'</td></tr>'; - $html.='</table>'; - } - return $html.='</div>'; - } -} -?> \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/ListeNotices/Mur.php b/library/ZendAfi/View/Helper/ListeNotices/Mur.php index 77fd78699552bac5d70eed5e4265da185d4b297e..7f449efbc625190a51d6bcc2e437c884f5c84b3a 100644 --- a/library/ZendAfi/View/Helper/ListeNotices/Mur.php +++ b/library/ZendAfi/View/Helper/ListeNotices/Mur.php @@ -22,6 +22,7 @@ class ZendAfi_View_Helper_ListeNotices_Mur extends ZendAfi_View_Helper_ListeNoti public function ListeNotices_Mur($data, $preferences=[]) { $this->loadScript(); + $preferences = $this->_updatePreferences($preferences); $notices = []; foreach($data as $notice) @@ -35,9 +36,7 @@ class ZendAfi_View_Helper_ListeNotices_Mur extends ZendAfi_View_Helper_ListeNoti protected function _notice_mur($notice, $preferences=[]) { - $champs = isset($preferences['liste_codes']) - ? $preferences['liste_codes'] - : 'TANE'; + $champs = $preferences['liste_codes']; $datas = [$this->_tag('span', $this->view->tagAnchor($this->view->urlNotice($notice, $preferences), @@ -63,7 +62,7 @@ class ZendAfi_View_Helper_ListeNotices_Mur extends ZendAfi_View_Helper_ListeNoti . $this->_tag('div', implode($datas), ['class' => 'titre_auteur']) - . $this->barreDeLien($notice); + . $this->barreDeLien($notice, $preferences); $html = $this->_divRecord($html, $notice, 'notice'); @@ -73,11 +72,12 @@ class ZendAfi_View_Helper_ListeNotices_Mur extends ZendAfi_View_Helper_ListeNoti } - protected function barreDeLien($notice){ + protected function barreDeLien($notice, $preferences){ $html = [$this->_usersReviews($notice), $this->_adminsReviews($notice), $this->_socialNetwork($notice), - $this->barreDeLienPanier($notice), + $this->barreDeLienPanier($notice, $preferences), + $this->barreDeLienSelectCheckbox($notice, $preferences), $this->barreDeLienReserver($notice)]; return implode([$this->_recordAvailability($notice), @@ -143,7 +143,19 @@ class ZendAfi_View_Helper_ListeNotices_Mur extends ZendAfi_View_Helper_ListeNoti } - protected function barreDeLienPanier($notice) { - return $this->view->tag('li', $this->view->tagAddToCart($notice)); + protected function barreDeLienPanier($notice, $preferences) { + return ($preferences['display_add_to_cart']) + ? $this->view->tag('li', + $this->view->tagAddToCart($notice), + ['class' => 'add_to_cart']) + : ''; } + + + protected function barreDeLienSelectCheckbox($record, $preferences) { + return ($preferences['display_select_record']) + ? $this->_tag('li', $this->view->tagSelectRecord($record)) + : ''; + } + } \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/ListeNotices/Tableau.php b/library/ZendAfi/View/Helper/ListeNotices/Tableau.php index 0de54e98e0faab3d31bf1308f9878eef36aa685f..652e435e8676a1326c71933a678fcbb4366801db 100644 --- a/library/ZendAfi/View/Helper/ListeNotices/Tableau.php +++ b/library/ZendAfi/View/Helper/ListeNotices/Tableau.php @@ -18,71 +18,93 @@ * along with BOKEH; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ + class ZendAfi_View_Helper_ListeNotices_Tableau extends ZendAfi_View_Helper_ListeNotices_Abstract { public function listeNotices_Tableau($data, $preferences=[]) { - $champs = isset($preferences['liste_codes']) - ? $preferences['liste_codes'] - : 'TANE'; - - // Entête - $html='<table cellspacing="0" cellpadding="3" border="0" width="100%">'; - $html.='<tr><td class="listeTitre" width="26px"> </td>'; - for($i=0; $i < strlen($champs); $i++) - { - $champ=Class_Codification::getInstance()->getNomChamp($champs[$i]); - $html.='<td class="listeTitre">'.$champ.'</td>'; - } - $html.='</tr>'; - - // Notices - $lig=0; + $preferences = $this->_updatePreferences($preferences); + $codes = $this->_filterCodes($preferences['liste_codes']); + + return $this->_tag('table', + $this->_header($codes) + . $this->_body($data, $codes), + ['cellspacing' => '0', + 'cellpadding' => '3', + 'border' => '0', + 'width' => '100%']); + } + + + protected function _filterCodes($codes) { + return array_filter(str_split($codes), + function($code) { return !in_array($code, [';', '-']); }); + } + + protected function _header($codes) { + $columns = ['<td class="listeTitre" width="26px"> </td>']; + $codifications = Class_Codification::getInstance(); + foreach($codes as $code) + $columns[] = $this->_tag('td', $codifications->getNomChamp($code), + ['class' => 'listeTitre']); + + return $this->_tag('tr', implode($columns)); + } + + + protected function _body($data, $codes) { + $lig=0; + $rows = []; foreach ($data as $notice) { - if($lig % 2) $style_css="listeImpaire"; else $style_css="listePaire"; - $html.='<tr>'; - $html.=sprintf('<td class="%s" style="text-align:center">%s</td>', - $style_css, - $this->view->iconeSupport($notice->getTypeDoc())); - - for($i=0; $i < strlen($champs); $i++) - { - $champ=$champs[$i]; - - if($champ=="J") - $html.= sprintf('<td class="%s"><a href="%s">%s</a></td>', - $style_css, - $this->view->urlNotice($notice), - $notice->getTitrePrincipal()); - else if($champ=="A") { - $html.= sprintf('<td class="%s">%s</td>', - $style_css, - $this->view->notice_LienRebondAuteur($notice)); - } - else { - if (!$value = $notice->getChampNotice($champ, $notice->getFacettes())) { - $html .='<td class="'. $style_css .'"></td>'; - continue; - } - - - if (is_array($value)) - $value = $value[0]; - - if (is_array($value) && array_key_exists('libelle',$value)) - $value = $value['libelle']; - - if (is_object($value)) - $value = $value->renderOn($this->view); - - if($champ == "N") $align='style="text-align:center"'; else $align=""; - $html.='<td class="'. $style_css .'" '.$align.'>'.$value.'</td>'; - } - $lig++; - } - $html.='</tr>'; - } - $html.='</table>'; - return $html; + $style = 'liste' . ((0 === $lig % 2) ? 'Impaire' : 'Paire'); + $rows[] = $this->_record($notice, $codes, $style); + $lig++; + } + + return implode($rows); + } + + + protected function _record($notice, $codes, $style) { + $columns = [$this->_td($this->view->iconeSupport($notice->getTypeDoc()), + $style, + ['style' => 'text-align:center'])]; + + foreach ($codes as $code) + $columns[] = $this->_field($code, $notice, $style); + + return $this->_tag('tr', implode($columns)); + } + + + protected function _field($code, $notice, $style) { + if ('J' === $code) + return $this->_td($this->_tag('a', $notice->getTitrePrincipal(), + ['href' => $this->view->urlNotice($notice)]), + $style); + + if ('A' === $code) + return $this->_td($this->view->notice_LienRebondAuteur($notice), + $style); + + if (!$value = $notice->getChampNotice($code, $notice->getFacettes())) + return $this->_td('', $style); + + if (is_array($value)) + $value = $value[0]; + + if (is_array($value) && array_key_exists('libelle', $value)) + $value = $value['libelle']; + + if (is_object($value)) + $value = $value->renderOn($this->view); + + return $this->_td($value, $style, + ('N' === $code) ? ['style' => 'text-align:center'] : []); + } + + + protected function _td($content, $style, $attribs=[]) { + return $this->_tag('td', $content, + array_merge(['class' => $style], $attribs)); } } -?> \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/ListeNotices/Vignettes.php b/library/ZendAfi/View/Helper/ListeNotices/Vignettes.php index cd4e51f08c0a43635ffa4067d2514cd4c8c17813..cb9b011393aabe8ac1cef6fe4dec653864407b0d 100644 --- a/library/ZendAfi/View/Helper/ListeNotices/Vignettes.php +++ b/library/ZendAfi/View/Helper/ListeNotices/Vignettes.php @@ -25,30 +25,35 @@ class ZendAfi_View_Helper_ListeNotices_Vignettes extends ZendAfi_View_Helper_Lis public function listeNotices_Vignettes($data, $preferences=[]) { $this->loadScript(); - $champs = isset($preferences['liste_codes']) ? $preferences['liste_codes'] : 'TANE'; + $preferences = $this->_updatePreferences($preferences); $html = ''; foreach($data as $notice){ $type_doc = $notice->getTypeDoc(); - $html .= $this->_vignetteHtml($notice, $type_doc, $champs, $preferences); + $html .= $this->_vignetteHtml($notice, + $type_doc, + $preferences); } - return $this->_tag('div', $html, ['class' => 'liste_vignettes']); + return $this->_tag('div', + $html, + ['class' => 'liste_vignettes']); } - protected function _vignetteHtml($notice, $type_doc, $champs, $preferences){ + protected function _vignetteHtml($notice, $type_doc, $preferences){ $url_notice = $this->view->urlNotice($notice, $preferences); $html = [$this->_hold($notice), - $this->_cart($notice), + $this->_cart($notice, $preferences), + $this->_selectCheckbox($notice, $preferences), $this->_recordAvailability($notice), $this->_title($notice, $url_notice), $this->_author($notice, $url_notice), $this->_docType($notice, $type_doc), $this->_link($notice, $type_doc), $this->_image($notice, $preferences), - $this->_info($notice, $champs), + $this->_info($notice, $preferences), $this->_pcTag($notice), $this->_xsl($notice)]; @@ -74,9 +79,20 @@ class ZendAfi_View_Helper_ListeNotices_Vignettes extends ZendAfi_View_Helper_Lis } - protected function _cart($record) { - return $this->_tag('div', $this->view->tagAddToCart($record), - ['class' => 'vignette_lien_panier']); + protected function _cart($record, $preferences) { + return ($preferences['display_add_to_cart']) + ? $this->_tag('div', $this->view->tagAddToCart($record), + ['class' => 'vignette_lien_panier']) + : ''; + } + + + protected function _selectCheckbox($record, $preferences) { + return ($preferences['display_select_record']) + ? $this->_tag('div', + $this->view->tagSelectRecord($record), + ['class' => 'vignette_select_record']) + : ''; } @@ -113,7 +129,8 @@ class ZendAfi_View_Helper_ListeNotices_Vignettes extends ZendAfi_View_Helper_Lis } - protected function _info($record, $fields) { + protected function _info($record, $preferences) { + $fields = $preferences['liste_codes']; return $this ->_tag('div', $this->view->notice_Entete($record, diff --git a/library/ZendAfi/View/Helper/ModeleFusion/Link.php b/library/ZendAfi/View/Helper/ModeleFusion/Link.php index c48e55fddd177f09584f66f96407f267243695b4..4323592464bd52eb109862f64354551a98b4754b 100644 --- a/library/ZendAfi/View/Helper/ModeleFusion/Link.php +++ b/library/ZendAfi/View/Helper/ModeleFusion/Link.php @@ -23,14 +23,11 @@ class ZendAfi_View_Helper_ModeleFusion_Link extends ZendAfi_View_Helper_BaseHelper { public function ModeleFusion_Link($instance) { - if(!$instance) + if (!$instance) return ''; - if(!$model_fusion = - (($model_fusion = Class_ModeleFusion::getFusionForStrategyAndProfil($instance->getStrategy(), - Class_Profil::getCurrentProfil()->getId())) - ? $model_fusion - : Class_ModeleFusion::getFusionForStrategy($instance->getStrategy()))) + if (!$model_fusion = Class_ModeleFusion::getFusionForStrategyAndProfilOrDefault($instance->getStrategy(), + Class_Profil::getCurrentProfil())) return ''; $models = $instance->getModels(); diff --git a/library/ZendAfi/View/Helper/Search/Header.php b/library/ZendAfi/View/Helper/Search/Header.php index 7c3424054c935de956ff0726c3444ec06c7d670a..43f4bed600be077a9e3c9250a278b40497099c01 100644 --- a/library/ZendAfi/View/Helper/Search/Header.php +++ b/library/ZendAfi/View/Helper/Search/Header.php @@ -40,7 +40,8 @@ class ZendAfi_View_Helper_Search_Header extends ZendAfi_View_Helper_BaseHelper { $this->_tagCriteria(), $this->_tagDomainBrowser(), $this->_tagSearchActions(), - $this->view->tagSearchExtension($this->_criteria)]; + $this->view->tagSearchExtension($this->_criteria), + $this->_tagRecordSelectionCount()]; return $this->_tag('div', implode( @@ -93,12 +94,6 @@ class ZendAfi_View_Helper_Search_Header extends ZendAfi_View_Helper_BaseHelper { protected function _tagSearchActions() { - $instance = (new Class_Entity()) - ->setSubject(strip_tags($this->view->tagSearchTerm($this->_criteria))) - ->setModels($this->_search_result->fetchRecords()) - ->setIds(implode(';', array_slice($this->_search_result->fetchAllRecordsIds(), 0, 200))) - ->setStrategy(Class_ModeleFusion::RECORDS_TEMPLATE); - $actions = [$this->_tag('span', $this->view->tagAnchor($this->view->url($this->_criteria->getUrlRetourRechercheInitiale(), null, true), $this->_('Retour à la recherche initiale'), @@ -113,13 +108,9 @@ class ZendAfi_View_Helper_Search_Header extends ZendAfi_View_Helper_BaseHelper { $this->_tagBookmarkSearch(), - $this->_tag('span', - $this->view->tagPrintLink($instance), - ['class' => 'print']), + $this->_tagPrintLink(), - $this->_tag('span', - $this->view->tagSendMail($instance), - ['class' => 'mail']), + $this->_tagSendMail(), ]; return $this->_tag('div', @@ -139,8 +130,37 @@ class ZendAfi_View_Helper_Search_Header extends ZendAfi_View_Helper_BaseHelper { } + protected function _tagPrintLink() { + if (!Class_ModeleFusion::canPrintRecordsInProfile(Class_Profil::getCurrentProfil())) + return ''; + + return $this->_tag('span', + $this->view->tagAnchor(['controller' => 'recherche', + 'action' => 'print'], + $this->_('Imprimer'), + ['title' => $this->_('Imprimer le résultat'), + 'target' => '_blank']), + ['class' => 'print']); + } + + + protected function _tagSendMail() { + if (!Class_ModeleFusion::canPrintRecordsInProfile(Class_Profil::getCurrentProfil())) + return ''; + + return $this->_tag('span', + $this->view->tagAnchor(['controller' => 'recherche', + 'action' => 'send-mail'], + $this->_('Partager par email'), + ['title' => $this->_('Partager le résultat par email'), + 'data-popup' => 'true']), + ['class' => 'mail']); + } + + protected function _tagBookmarkSearch() { - if(!Class_AdminVar::isBookmarkSearchesReady()) + if(!Class_AdminVar::isBookmarkSearchesReady() + || $this->_criteria->isSelection()) return ''; return $this->_tag('span', @@ -151,4 +171,10 @@ class ZendAfi_View_Helper_Search_Header extends ZendAfi_View_Helper_BaseHelper { 'data-popup' => true]), ['class' => 'save']); } + + + protected function _tagRecordSelectionCount() { + return $this->view->getHelper('TagSelectRecord') + ->tagRecordSelectionCount($this->_criteria); + } } \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/TagCriteresRecherche.php b/library/ZendAfi/View/Helper/TagCriteresRecherche.php index 9d5bf6d22e4f0de9228b3c8af306a6b3d4fe86dc..bad61c909e0f0531f7f822a28ba2f82da75be4e3 100644 --- a/library/ZendAfi/View/Helper/TagCriteresRecherche.php +++ b/library/ZendAfi/View/Helper/TagCriteresRecherche.php @@ -168,6 +168,13 @@ class ZendAfi_View_Helper_TagCriteresRecherche extends ZendAfi_View_Helper_BaseH } + public function visitSelection($selection) { + $this + ->htmlAppend($this->getSuppressionImgUrlForLibelle($this->_('Sélection courante'), + $this->_criteres_recherche->getUrlCriteresWithoutElement('selection'))); + } + + public function visitSection($section) { $url = $this->_criteres_recherche->getUrlCriteresWithoutElement('section'); $libelle = $this->_('Section: %s', Class_Codification::getInstance()->getLibelleFacette('S'.$section)); diff --git a/library/ZendAfi/View/Helper/TagSearchTerm.php b/library/ZendAfi/View/Helper/TagSearchTerm.php index 2ef9b6202ebf4da7959e2be175e59ee791079bea..3fed54cbfb0a2b20ac7ca58e6c8287ae3e618ee6 100644 --- a/library/ZendAfi/View/Helper/TagSearchTerm.php +++ b/library/ZendAfi/View/Helper/TagSearchTerm.php @@ -21,46 +21,29 @@ class ZendAfi_View_Helper_TagSearchTerm extends ZendAfi_View_Helper_BaseHelper { - public function tagSearchTerm($criteres_recherche) { - if($term = $this->_getInputOrStaticSearchTerm($criteres_recherche)) - return $this->_('pour : %s', $this->_addClassExpressionRecherche($term)); + public function tagSearchTerm($criteria, $decorator=null) { + if (!$decorator) + $decorator = $this->_getDefaultDecorator(); - if($domain = $criteres_recherche->getCatalogue()) - return $this->_('dans le catalogue : %s', - $this->_addClassExpressionRecherche($domain->getLibelle())); + if ($term = $criteria->getExpressionRecherche()) + return $this->_('pour : %s', $decorator($term)); - if($selection = $criteres_recherche->getPanier()) - return $this->_('dans le panier : %s', - $this->_addClassExpressionRecherche($selection->getLibelle())); + if ($domain = $criteria->getCatalogue()) + return $this->_('dans le catalogue : %s', $decorator($domain->getLibelle())); - if($serie = $criteres_recherche->getSerie()) - return $this->_('dans la serie : %s', - $this->_addClassExpressionRecherche($serie)); - - return ''; - } + if ($selection = $criteria->getPanier()) + return $this->_('dans le panier : %s', $decorator($selection->getLibelle())); + if ($serie = $criteria->getSerie()) + return $this->_('dans la serie : %s', $decorator($serie)); - protected function _getInputOrStaticSearchTerm($criteres_recherche) { - if (!Class_Profil::getCurrentProfil()->isSearchTermEditable()) - return $this->view->escape($criteres_recherche->getExpressionRecherche()); - - $expression = $criteres_recherche->getExpressionRecherche(); - $input = $this->view->formText('expressionRecherche', - $expression, - ['class' => 'expressionRecherche', - 'placeholder' => $expression]); - return $this->view->tag('form', - $input, - ['method' => 'get', - 'style' => 'display: inline-block', - 'action' => $this->view->url(['expressionRecherche' => null])]); + return ''; } - protected function _addClassExpressionRecherche($expression_recherche) { - return $this->_tag('div', $expression_recherche, ['class' => 'expression-recherche']); + protected function _getDefaultDecorator() { + return function($value) { + return $this->view->tagWrappedSearchTerm($value); + }; } - } -?> \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/TagSelectRecord.php b/library/ZendAfi/View/Helper/TagSelectRecord.php new file mode 100644 index 0000000000000000000000000000000000000000..9f862b9011e38337327defe121ec653daa985f6b --- /dev/null +++ b/library/ZendAfi/View/Helper/TagSelectRecord.php @@ -0,0 +1,172 @@ +<?php +/** + * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class ZendAfi_View_Helper_TagSelectRecord extends ZendAfi_View_Helper_BaseHelper { + public function tagSelectRecord($record) { + $checked = (new Class_RecordSelection())->includes($record); + + $url = Class_url::relative(['module' => 'opac', + 'controller' => 'records', + 'action' => 'select-toggle', + 'id' => $record->getId()]); + + return $this->view->formCheckbox('select_record_' . $record->getId(), + $record->getId(), + ['title' => $this->_('Sélectionner "%s" pour impression, export ou sauvegarde', + $record->getTitrePrincipal()), + 'checked' => $checked, + 'onclick' => '$.get(\'' . $url . '\', updateRecordSelectionCount)' + ]); + } + + + public function tagRecordSelectionCount($criteria) { + if (!Class_AdminVar::isModuleEnabled('ENABLE_SEARCH_MULTIPLE_RECORD_SELECTION')) + return ''; + + Class_ScriptLoader::getInstance() + ->addInlineScript('function updateRecordSelectionCount(data) {' + . '$(\'.record-selection span\').text(data.count); ' + . '}') + ->addJQueryReady('$(\'.record-selection > a\').click(function(event) {' + . '$(event.target).parent().find(\'ul\').slideToggle();' + . 'event.preventDefault();' + .'})'); + + $record_count = (new Class_RecordSelection())->count(); + return $this->_tag('div', + $this->_tag('a', + $this->_('Sélection : ') + . $this->_tag('span', + $record_count), + ['class' => 'bouton', + 'href' => '#', + 'title' => implode(' ' , + [$this->_('Ouvrir le menu des actions de sélection.'), + $this->_plural($record_count, + 'Aucune notice sélectionnée', + 'Une notice sélectionné', + '%d notices sélectionnées', + $record_count)])]) + . $this->_tag('ul', + implode(array_map(function($content) { return $this->_tag('li', $content);}, + [$this->_addSelectionToCartLink(), + $this->_selectPageLink($criteria), + $this->_selectAllLink($criteria), + $this->_selectViewLink($criteria), + $this->_clearSelectionLink()]))), + ['class' => 'record-selection']); + } + + + protected function _clearSelectionLink() { + Class_ScriptLoader::getInstance() + ->addInlineScript('function updateRecordSelectionCountAndClear(data) { ' + .'updateRecordSelectionCount(data);' + .'$(\'input[id^=select_record_]\').prop(\'checked\', false);' + .'}'); + + $url_clear = Class_url::relative(['module' => 'opac', + 'controller' => 'records', + 'action' => 'select-clear']); + + + return $this->_tag('a', + $this->_('Vider la sélection'), + ['href' => $url_clear, + 'onclick' => sprintf('$.get(\'%s\', updateRecordSelectionCountAndClear); return false', + $url_clear), + 'title' => $this->_('Retirer toute les notices présente dans votre sélection')]); + } + + + protected function _selectPageLink($criteria) { + Class_ScriptLoader::getInstance() + ->addInlineScript('function updateRecordSelectionCountAndCheckAll(data) { ' + .'updateRecordSelectionCount(data);' + .'$(\'input[id^=select_record_]\').prop(\'checked\', true);' + .'}'); + + $url_select_page = Class_Url::relative(array_merge($criteria->getUrlCriteresWithFacettes(), + ['controller' => 'records', + 'action' => 'select-page'])); + + + return $this->_tag('a', + $this->_('Sélectionner toute la page'), + ['href' => $url_select_page, + 'onclick' => sprintf('$.get(\'%s\', updateRecordSelectionCountAndCheckAll); return false', + $url_select_page), + 'title' => $this->_('Ajouter toutes les notices de la page de résultat courante dans votre sélection') + ]); + } + + + protected function _addSelectionToCartLink() { + $url_add = Class_Url::relative(['controller' => 'panier', + 'action' => 'add-selection']); + + + return $this->_tag('a', + $this->_('Mettre dans un panier'), + ['href' => $url_add, + 'data-popup' => 'true', + 'title' => $this->_('Ajouter toutes les notices de la sélection à un panier') + ]); + } + + + protected function _selectAllLink($criteria) { + Class_ScriptLoader::getInstance() + ->addInlineScript('function updateRecordSelectionCountAndCheckAll(data) { ' + .'updateRecordSelectionCount(data);' + .'$(\'input[id^=select_record_]\').prop(\'checked\', true);' + .'}'); + + $url_select_page = Class_Url::relative(array_merge($criteria->getUrlCriteresWithFacettes(), + ['controller' => 'records', + 'action' => 'select-all'])); + + + return $this->_tag('a', + $this->_('Sélectionner tous les résultats'), + ['href' => $url_select_page, + 'onclick' => sprintf('$.get(\'%s\', updateRecordSelectionCountAndCheckAll); return false', + $url_select_page), + 'title' => $this->_('Ajouter toutes les notices du résultat dans votre sélection') + ]); + } + + + protected function _selectViewLink($criteria) { + return $this->_tag('a', + $this->_('Voir la sélection'), + ['href' => Class_Url::relative(['controller' => 'recherche', + 'action' => 'simple', + 'tri' => $criteria->getTri(), + 'liste_format' => $criteria->getFormat(), + 'page_size' => $criteria->getPageSize(), + 'selection' => 1], null, true), + 'title' => $this->_('Afficher un résultat de recherche incluant uniquement les notices de votre sélection'), + ]); + } +} diff --git a/library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php b/library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php index 29d3a400a492078ed3826fcd2dd104325301967d..2f1d2e13ffa98add6bf7f7a024b0013559bd6b3a 100644 --- a/library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php +++ b/library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php @@ -23,7 +23,7 @@ class ZendAfi_View_Helper_TagTitreEtNombreDeResultats extends ZendAfi_View_Helpe public function tagTitreEtNombreDeResultats($search_result){ $search_duration = $search_result->getDuration(); $criteres_recherche = $search_result->getCriteresRecherche(); - $expression_recherche = $this->view->tagSearchTerm($criteres_recherche); + $expression_recherche = $this->_getSearchTerm($criteres_recherche); $nombre_resultats = $search_result->getRecordsCount(); @@ -61,5 +61,28 @@ class ZendAfi_View_Helper_TagTitreEtNombreDeResultats extends ZendAfi_View_Helpe protected function _islimited($count, $limit) { return $limit && ($count == $limit); } + + + protected function _getSearchTerm($criteria) { + if (($term = $criteria->getExpressionRecherche()) + && Class_Profil::getCurrentProfil()->isSearchTermEditable()) + return $this->_('pour : %s', $this->_getInputSearchTerm($term)); + + return $this->view->tagSearchTerm($criteria); + } + + + protected function _getInputSearchTerm($term) { + $input = $this->view->formText('expressionRecherche', + $term, + ['class' => 'expressionRecherche', + 'placeholder' => $term]); + $form = $this->_tag('form', + $input, + ['method' => 'get', + 'style' => 'display: inline-block', + 'action' => $this->view->url(['expressionRecherche' => null])]); + + return $this->view->tagWrappedSearchTerm($form, false); + } } -?> \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/TagSendMail.php b/library/ZendAfi/View/Helper/TagWrappedSearchTerm.php similarity index 64% rename from library/ZendAfi/View/Helper/TagSendMail.php rename to library/ZendAfi/View/Helper/TagWrappedSearchTerm.php index 36420ea032b081bb480dc9ab08a2e5d3ddfd03e0..b842401071df8510552111b80a8a77aa4e122450 100644 --- a/library/ZendAfi/View/Helper/TagSendMail.php +++ b/library/ZendAfi/View/Helper/TagWrappedSearchTerm.php @@ -1,6 +1,6 @@ <?php /** - * Copyright (c) 2012-2014, Agence Française Informatique (AFI). All rights reserved. + * 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 @@ -20,15 +20,10 @@ */ -class ZendAfi_View_Helper_TagSendMail extends ZendAfi_View_Helper_BaseHelper { - public function tagSendMail($instance) { - $instance - ->setAction('send-mail') - ->setLink($this->_('Partager par email')) - ->setAttribs(['title' => $this->_('Aperçu de l\'email'), - 'data-popup' => 'true']); - - return $this->view->ModeleFusion_Link($instance); +class ZendAfi_View_Helper_TagWrappedSearchTerm extends ZendAfi_View_Helper_BaseHelper { + public function tagWrappedSearchTerm($term, $should_escape=true) { + return $this->_tag('div', + $should_escape ? $this->view->escape($term) : $term, + ['class' => 'expression-recherche']); } } -?> \ No newline at end of file diff --git a/library/digital_resources/Cvs/View/Helper/Widget.php b/library/digital_resources/Cvs/View/Helper/Widget.php index 859a0173b1b35efdc2adbbf9c543518b305eb4ca..7008a95b7a4293d2c584e17555ce0769e915d573 100644 --- a/library/digital_resources/Cvs/View/Helper/Widget.php +++ b/library/digital_resources/Cvs/View/Helper/Widget.php @@ -23,6 +23,10 @@ class Cvs_View_Helper_Widget extends ZendAfi_View_Helper_BaseHelper { public function widget($settings, $criteria) { $config = Cvs_Config::getInstance(); + + if (!$config->isEnabled()) + return ''; + if (!$config->hasRightAccess(Class_Users::getIdentity())) return ''; diff --git a/library/digital_resources/Cvs/controllers/SearchController.php b/library/digital_resources/Cvs/controllers/SearchController.php index 88afbb895f1b1622706f249a7dc8aa4ad6092b0f..91cfd1fa1e33788af1480b8ed00f977dbd7dcf50 100644 --- a/library/digital_resources/Cvs/controllers/SearchController.php +++ b/library/digital_resources/Cvs/controllers/SearchController.php @@ -50,6 +50,9 @@ class Cvs_Plugin_SearchController extends Class_DigitalResource_Controller { $service = (new Cvs_Service)->setUser($user); $this->view->result = $service->find($query, $criteria->getPage(), $preferences['cvs_nb_result']); + + $preferences['display_add_to_cart'] = false; + $preferences['display_select_record'] = false; $this->view->preferences = $preferences; } } \ No newline at end of file diff --git a/library/digital_resources/Cvs/tests/CvsTest.php b/library/digital_resources/Cvs/tests/CvsTest.php index 7e3c20bd5a78d05f8abe35aaaa2f291d40b8c196..22ffc17cd190ff578983e4d4a7265a2a82e82de6 100644 --- a/library/digital_resources/Cvs/tests/CvsTest.php +++ b/library/digital_resources/Cvs/tests/CvsTest.php @@ -313,9 +313,20 @@ class CvsRecordsSearchCuissonTest extends CvsSearchWithResultTestCase { public function resultFormatShouldBeVignetteMode() { $this->assertXPath('//div[@class="liste_vignettes"]'); } -} + /** @test */ + public function pageShouldNotIncludeLinkAddRecordAjaxOnBasket() { + $this->assertNotXPath('//a[contains(@href, "panier/add-record-ajax/")]'); + } + + + /** @test */ + public function pageShouldNotIncludeCheckboxToSelectRecord() { + $this->assertNotXPath('//input[@type="checkbox"]'); + } +} + @@ -395,6 +406,37 @@ class CvsRechercheControllerSimpleActionWithCvsActivatedTest extends CvsSearchWi +class CvsRechercheControllerSimpleActionWithCvsDeactivatedTest extends CvsSearchWithResultTestCase { + public function setUp() { + parent::setUp(); + + Class_AdminVar::set('Cvs_BMKEY', ''); + + Class_Profil::getCurrentProfil() + ->setCfgModules(['recherche' => + ['resultatsimple' => ['cvs_autres_resultats' => 'Results from opac', + 'cvs_resultat_titre' => 'CVS Ressources', + 'cvs_nb_result' => '5', + 'cvs_display_position' => '1']]]); + + $this->dispatch('/recherche/simple/expressionRecherche/pomme/tri/alpha_auteur',true); + + } + + protected function _returnedXML() { + return ''; + } + + + /** @test **/ + public function pageShouldNotIncludeCvs() { + $this->assertNotXPath('//div[contains(@class,"cvs")]'); + } +} + + + + class CvsRechercheControllerSimpleActionWithCvsActivatedAndPreferencesHiddenTest extends CvsActivatedBorrowerLoggedTestCase { public function setUp() { diff --git a/library/digital_resources/DiMusic/tests/DiMusicTest.php b/library/digital_resources/DiMusic/tests/DiMusicTest.php index 9efa819efc4536afc4add679c359f7f93651b25a..d7e84caa5d2eca79319891728a5bdc9f6515aba5 100644 --- a/library/digital_resources/DiMusic/tests/DiMusicTest.php +++ b/library/digital_resources/DiMusic/tests/DiMusicTest.php @@ -462,8 +462,8 @@ class DiMusicIncTest extends DiMusicActivatedTestCase { /** @test */ - public function debugLogShouldContainsTitleMandatory() { - $this->assertContains('errors: Le titre est obligatoire', $this->_debug_log); + public function debugLogShouldContainsAlreadyDeleted() { + $this->assertContains('already deleted', $this->_debug_log); } diff --git a/library/digital_resources/Lekiosk/Link.php b/library/digital_resources/Lekiosk/Link.php index cd1c2ecba1d38ff4d13c4b02d0c9e058f361056a..8fcce9be8612f432cc1a1bc15d9368b193ff8c74 100644 --- a/library/digital_resources/Lekiosk/Link.php +++ b/library/digital_resources/Lekiosk/Link.php @@ -43,7 +43,7 @@ class Lekiosk_Link extends Lekiosk_LinkAbstract { if (!$album) return $url; - return $url . '&ReturnUrl=' . $this->_getReturnURL($album); + return $url . '&ReturnUrl=' . urlencode($this->_getReturnURL($album)); } diff --git a/library/digital_resources/Lekiosk/LinkAbstract.php b/library/digital_resources/Lekiosk/LinkAbstract.php index fb227908a859d9c8ae6f4f9c40f8266e08d3bed8..e8f92023566bb13a7c0825742198dc7c159af653 100644 --- a/library/digital_resources/Lekiosk/LinkAbstract.php +++ b/library/digital_resources/Lekiosk/LinkAbstract.php @@ -24,7 +24,7 @@ abstract class Lekiosk_LinkAbstract { protected function _getReturnURL($album) { if (!$album) return ''; - preg_match('|.*ReturnUrl=(.*)|', $album->getExternalUri(), $matches); + preg_match('|.*ReturnUrl=(.*)|i', $album->getExternalUri(), $matches); return $matches[1]; } } \ No newline at end of file diff --git a/library/digital_resources/Lekiosk/View/Helper/Album.php b/library/digital_resources/Lekiosk/View/Helper/Album.php index 344ff9233ff684f00ea00b42a01c9cd42decab46..39fc9a6016bb0a6bf7fb2119fcfc1a144c9bf45a 100644 --- a/library/digital_resources/Lekiosk/View/Helper/Album.php +++ b/library/digital_resources/Lekiosk/View/Helper/Album.php @@ -20,10 +20,11 @@ */ class Lekiosk_View_Helper_Album extends ZendAfi_View_Helper_TagRessourceNumerique { - protected $_album; + protected $_config, $_album; public function album($album) { $this->_album = $album; + $this->_config = Lekiosk_Config::getInstance(); return $this->_tag('p', $this->_renderSSOLink()) . $this->_renderPreview(); } @@ -31,18 +32,21 @@ class Lekiosk_View_Helper_Album extends ZendAfi_View_Helper_TagRessourceNumeriqu protected function _renderSSOLink() { if (!$this->canAccessRessourceNumerique()) - return $this->view->tagAnchor($this->view->url(['module' => 'opac', - 'controller' => 'modules', - 'action' => 'lekiosk', - 'album_id' => $this->_album->getId()], null, true), - $this->_('Vous devez être connecté sous un compte avec abonnement valide pour lire le magazine'), ['class' => 'bouton']); + return $this->view + ->tagAnchor($this->view->url(['module' => 'opac', + 'controller' => 'modules', + 'action' => 'lekiosk', + 'album_id' => $this->_album->getId()], + null, true), + $this->_('Vous devez être connecté sous un compte avec abonnement valide pour lire le magazine'), + ['class' => 'bouton']); - return $this->view->tagAnchor(Lekiosk_Config::getInstance() - ->getSsoUrl(Class_Users::getIdentity(), $this->_album), - $this->_('Lire le magazine %s sur le site LeKiosk', - $this->_album->getTitre()), - ['target' => '_blank', - 'class' => 'bouton']); + return $this->view + ->tagAnchor($this->_config->getSsoUrl(Class_Users::getIdentity(), $this->_album), + $this->_('Lire le magazine %s sur le site LeKiosk', + $this->_album->getTitre()), + ['target' => '_blank', + 'class' => 'bouton']); } @@ -69,6 +73,6 @@ class Lekiosk_View_Helper_Album extends ZendAfi_View_Helper_TagRessourceNumeriqu protected function hasRightAccesRessourcesNumeriques($user) { - return Lekiosk_Config::getInstance()->hasRightAccess($user); + return $this->_config->hasRightAccess($user); } } \ No newline at end of file diff --git a/library/digital_resources/Lekiosk/tests/LekioskTest.php b/library/digital_resources/Lekiosk/tests/LekioskTest.php index 2824a63f181add75adb492ad87f82db253249a78..f864e789e3f26d6b2db573fb379a8941fb86a24a 100644 --- a/library/digital_resources/Lekiosk/tests/LekioskTest.php +++ b/library/digital_resources/Lekiosk/tests/LekioskTest.php @@ -547,7 +547,7 @@ class LekioskJsonReport extends ZendAfi_View_Helper_Status_TestCase { -class LekioskServiceHttpHarvestingTestCase extends AbstractControllerTestCase { +abstract class LekioskServiceHttpHarvestingTestCase extends AbstractControllerTestCase { protected $_storm_default_to_volatile = true; @@ -587,8 +587,12 @@ class LekioskServiceHttpHarvestingTestCase extends AbstractControllerTestCase { Class_Album::clearCache(); } +} + + +class LekioskServiceHttpHarvestingTest extends LekioskServiceHttpHarvestingTestCase { /** @test */ public function contextShouldExpectation() { $this->assertEquals(3, Class_Album::countBy(['type_doc_id' => 'Lekiosk'])); @@ -605,7 +609,84 @@ class LekioskServiceHttpHarvestingTestCase extends AbstractControllerTestCase { public function firstAlbumTitleShouldBe10NationalSport() { $this->assertEquals('Le 10 Sport National n°431 : 11 janvier 2018', Class_Album::find(1)->getTitre()); } +} + + + + +class LekioskServiceHttpHarvestingNoticeAjaxTest extends LekioskServiceHttpHarvestingTestCase { + public function setUp() { + parent::setUp(); + Class_AdminVar::set('Lekiosk_SSO_MODE', 'CAS'); + + $user = Class_Users::getIdentity() + ->beAbonneSIGB() + ->setDateFin('9999-01-01'); + $group = $this->fixture('Class_UserGroup', + ['id' => 1]); + + Lekiosk_Config::getInstance()->getPermissions(); + $lekiosk_permission_id = Class_Permission::findFirstBy(['code' => 'Lekiosk'])->getId(); + + $this->fixture('Class_UserGroup_Permission', + ['id' => 1, + 'id_group' => 1, + 'id_permission' => $lekiosk_permission_id, + 'id_model' => null, + 'model_class' => null + ]); + + $user->setUserGroups([$group]); + + Class_Album::find(1)->index(); + } + + + protected function _dispatchAlbum() { + $this->dispatch('/noticeajax/resnumeriques/id/1', true); + } + + + /** @test */ + public function iframeSrcForPreviewShouldBeReader851749_1962566() { + $this->_dispatchAlbum(); + $this->assertXPath('//iframe[@src="https://www2.lekiosk.com/fr/reader/851749/2052615"]', + $this->_response->getBody()); + } + + /** @test */ + public function withoutRightsShouldDisplayErrorMessage() { + ZendAfi_Auth::getInstance()->clearIdentity(); + $this->_dispatchAlbum(); + $this->assertXPathContentContains('//a[contains(@href, "/modules/lekiosk/album_id/1")]', + utf8_encode('Vous devez être connecté')); + } + + + /** @test */ + public function linkCasShouldContainsAlbumSSOUrl() { + $this->_dispatchAlbum(); + $url = 'https://apipros.lekiosk.com/login/cas?' + .'cas_fournisseur=' . urlencode(Class_Url::absolute('/cas-server-v10')) + .'&id=29' + .'&ReturnUrl='. urlencode('/fr/pageproduct/851749/2052615'); + + $this->assertXPath('//a[@href="' . $url . '"]', $this->_response->getBody()); + } + + + /** @test */ + public function linkSSONoCASShouldContainsLekioskSSo() { + Class_AdminVar::set('Lekiosk_SSO_MODE', ''); + $this->_dispatchAlbum(); + $url = 'https://pros.lekiosk.com/login/accesshash?' + . 'email=18ca3d8ad40255ce09d5d20debc1e069' + . '&id=29' + . '&AccessHash=69436bc8e1ea7a85b3a7c9d2d764077e3519a6c5' + . '&ReturnUrl='.urlencode('/fr/pageproduct/851749/2052615'); + $this->assertXPath('//a[@href="' . $url . '"]', $this->_response->getBody()); + } } diff --git a/library/startup.php b/library/startup.php index 4088e147d306f38168973dfb55f90c3765b552d0..7e0bdbb3dfea76fdaf098ecf3904d573de1ae555 100644 --- a/library/startup.php +++ b/library/startup.php @@ -81,7 +81,7 @@ class Bokeh_Engine { function setupConstants() { defineConstant('BOKEH_MAJOR_VERSION','7.12'); - defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.36'); + defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.39'); defineConstant('BOKEH_REMOTE_FILES', 'http://git.afi-sa.fr/afi/opacce/'); diff --git a/library/translation/ca.mo b/library/translation/ca.mo index 54ae2f842310b951ee33f6aed8f311553af8a593..953201b1ebed52708f372713b88f09705df404d9 100644 Binary files a/library/translation/ca.mo and b/library/translation/ca.mo differ diff --git a/library/translation/ca.po b/library/translation/ca.po index 2bb319106fd77879c3627628b8bfcc0379bb24d5..8f69c596d241f85f5da52aa79a974b5a3fae3f19 100644 --- a/library/translation/ca.po +++ b/library/translation/ca.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Bokeh 2018\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-09-24 14:45+0200\n" +"POT-Creation-Date: 2018-10-08 09:33+0200\n" "Language: ca\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,7 @@ msgstr " ( %d de retard)" #: ../../application/modules/opac/controllers/RechercheController.php:142 #: ../../application/modules/opac/controllers/RechercheController.php:139 #: ../../application/modules/opac/controllers/RechercheController.php:148 +#: ../../application/modules/opac/controllers/RechercheController.php:154 msgid " (recherche élargie triée par pertinence)" msgstr " (Cerca estesa ordenada per rellevà ncia)" @@ -59,6 +60,8 @@ msgstr " Modificar la seva fitxa" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:195 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:217 msgid " OU " msgstr " O" @@ -252,6 +255,7 @@ msgstr " el butlletà de notÃcies: " #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:250 +#: ../../library/Class/ModeleFusion.php:275 msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "!! error en el model, atribut indefinit:" @@ -321,6 +325,7 @@ msgstr " %d %B %Y %Hh %Mn %Ss" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:232 msgid "%d %B %Y" msgstr " %d %B %Y" @@ -437,6 +442,7 @@ msgstr " %s %s: %s" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:32 #, fuzzy, php-format msgid "%s : Documents %s" msgstr "documents emesos" @@ -477,6 +483,15 @@ msgstr "Afegir una platja oberta" msgid "%s : plages horaire de réservation multimedia" msgstr " %s: horari per a l'ús de recursos multimèdia" +#: ../../library/Class/Feature/List.php:465 +#, php-format +msgid "" +"%s Historiquement constitué autour de la musique, diMusic propose un " +"catalogue composé d'1 million de titres où toutes les esthétiques musicales " +"sont représentées, du métal au classique en passant par le rap, la chanson " +"française, le reggae, l'électro ou encore la musique pour enfants." +msgstr "" + #: ../../library/Class/FileManager/FileSystem.php:114 #, php-format msgid "%s Ko" @@ -1059,6 +1074,7 @@ msgstr "Aquest servei no pot pruebarse" #: ../../library/Class/AdminVar.php:446 ../../library/Class/AdminVar.php:451 #: ../../library/Class/AdminVar.php:454 ../../library/Class/AdminVar.php:448 #: ../../library/Class/AdminVar.php:449 ../../library/Class/AdminVar.php:443 +#: ../../library/Class/AdminVar.php:453 msgid "API" msgstr "API" @@ -1068,6 +1084,7 @@ msgstr "API" #: ../../library/Class/AdminVar.php:445 ../../library/Class/AdminVar.php:450 #: ../../library/Class/AdminVar.php:453 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:448 ../../library/Class/AdminVar.php:442 +#: ../../library/Class/AdminVar.php:452 msgid "API utilisée pour les cartes statiques" msgstr "API usat per a mapes està tics" @@ -1229,6 +1246,7 @@ msgstr "acceptada" #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:43 #: ../../library/Class/MoteurRecherche.php:611 #: ../../library/ZendAfi/View/Helper/ComboProfils.php:107 +#: ../../library/Class/MoteurRecherche.php:617 msgid "Accueil" msgstr "Inici" @@ -1291,6 +1309,7 @@ msgstr "No hi han categories" #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:100 msgid "Accéder au formulaire de recherche pré-rempli avec les critères actuels" msgstr "Accediu al formulari de cerca amb els criteris actuals" @@ -1470,7 +1489,7 @@ msgstr "Determinació de la disponibilitat en el resultat de cerca" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:358 #: ../../library/Class/AdminVar.php:361 ../../library/Class/AdminVar.php:353 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:355 msgid "Activation de la navigation collaborative" msgstr "Determinació de la navegació col·laborativa" @@ -1486,7 +1505,7 @@ msgstr "Activació del recurs digital PlanetNemo" #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:331 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:335 msgid "Activation des boîtes dans les menus" msgstr "Determinació de les blocs en els menús" @@ -1505,6 +1524,7 @@ msgstr "Determinació de les funcions avancadas del télefono" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:270 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:272 msgid "Activation des formulaires" msgstr "Activació dels formularis" @@ -1524,7 +1544,7 @@ msgstr "Activació dels formularis" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:414 #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:409 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:413 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1553,6 +1573,11 @@ msgstr "Activa la disposició responsive" msgid "Activer la redirection vers la liste d'articles" msgstr "Activa la redirecció a la llista d'articles" +#: ../../library/Class/AdminVar.php:263 +#, fuzzy +msgid "Activer la sélection multiple de notices dans le résultat de recherche" +msgstr "Determinació de la disponibilitat en el resultat de cerca" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 msgid "Activer la tâche" @@ -1608,7 +1633,7 @@ msgstr "Activa la biblioteca digital" #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:325 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:323 -#: ../../library/Class/AdminVar.php:318 +#: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:327 msgid "Activer ou désactiver le module d'activité" msgstr "Activa el mòdul de formació" @@ -2016,6 +2041,7 @@ msgstr "fixar" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:45 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:97 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:59 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:44 #, fuzzy, php-format msgid "Afficher \"%s\"" msgstr "fixar" @@ -2032,21 +2058,25 @@ msgstr "Veure agenda" #: ../../library/Class/Systeme/ModulesAppli.php:179 #: ../../library/Class/Systeme/ModulesAppli.php:179 +#: ../../library/Class/Systeme/ModulesAppli.php:178 msgid "Afficher au dessous des facettes" msgstr "Vegi a continuació les facetes" #: ../../library/Class/Systeme/ModulesAppli.php:181 #: ../../library/Class/Systeme/ModulesAppli.php:181 +#: ../../library/Class/Systeme/ModulesAppli.php:180 msgid "Afficher au dessous des résultats" msgstr "Consulteu a continuació els resultats" #: ../../library/Class/Systeme/ModulesAppli.php:178 #: ../../library/Class/Systeme/ModulesAppli.php:178 +#: ../../library/Class/Systeme/ModulesAppli.php:177 msgid "Afficher au dessus des facettes" msgstr "Veure les facetes anteriors" #: ../../library/Class/Systeme/ModulesAppli.php:180 #: ../../library/Class/Systeme/ModulesAppli.php:180 +#: ../../library/Class/Systeme/ModulesAppli.php:179 msgid "Afficher au dessus des résultats" msgstr "Veure resultats anteriors" @@ -2284,6 +2314,12 @@ msgstr "Veure totes les edicions d'aquest document" msgid "Afficher un nouveau domaine" msgstr "Proveu amb una nova selecció" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:169 +msgid "" +"Afficher un résultat de recherche incluant uniquement les notices de votre " +"sélection" +msgstr "" + #: ../../library/Class/Systeme/ModulesNotice.php:41 #: ../../library/Class/Systeme/ModulesNotice.php:41 msgid "Afficher une ligne par exemplaire" @@ -2436,6 +2472,7 @@ msgstr "Afegir a la cistella" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:32 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:36 #, php-format msgid "Ajouter \"%s\" dans un panier" msgstr "Afegir \"%s\" a la cistella" @@ -2461,6 +2498,7 @@ msgstr "Mètode de selecció dels usuaris" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:26 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:30 msgid "Ajouter au panier" msgstr "Afegir a la cistella" @@ -2469,7 +2507,7 @@ msgstr "Afegir a la cistella" #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:356 #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:351 #: ../../library/Class/AdminVar.php:352 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:344 +#: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:353 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "Afegir automà ticament una bloc cistella en la divisió flotant" @@ -2506,6 +2544,11 @@ msgstr "Afegir registre al" msgid "Ajouter les utilisateurs sélectionnés" msgstr "Afegir usuaris seleccionats" +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:20 +#, fuzzy, php-format +msgid "Ajouter ma sélection au panier \"%s\" ?" +msgstr "¿Afegir %s a la cistella %s?" + #: ../../library/Class/MultiSelection/Album.php:113 #: ../../library/Class/MultiSelection/Album.php:113 #, php-format @@ -2518,6 +2561,23 @@ msgstr "Afegeix tots els à lbums de la categoria %s a la selecció del à lbums" msgid "Ajouter tous les articles de la catégorie %s à la sélection d'articles" msgstr "Afegir tots els articles i la categoria %s a la selecció d'articles" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:119 +#, fuzzy +msgid "" +"Ajouter toutes les notices de la page de résultat courante dans votre " +"sélection" +msgstr "Afegir tots els articles i la categoria %s a la selecció d'articles" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:133 +#, fuzzy +msgid "Ajouter toutes les notices de la sélection à un panier" +msgstr "Afegir tots els articles i la categoria %s a la selecció d'articles" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:155 +#, fuzzy +msgid "Ajouter toutes les notices du résultat dans votre sélection" +msgstr "Afegir tots els articles i la categoria %s a la selecció d'articles" + #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 msgid "Ajouter un agenda" @@ -2559,6 +2619,7 @@ msgstr "Afegir un catà leg" #: ../../application/modules/opac/controllers/PanierController.php:204 #: ../../application/modules/opac/controllers/PanierController.php:204 +#: ../../application/modules/opac/controllers/PanierController.php:236 msgid "Ajouter un document dans un panier" msgstr "Afegir una registre al cistell" @@ -3181,6 +3242,7 @@ msgstr "La publicació d'anys - des" #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/CriteresRecherche.php:144 +#: ../../library/Class/CriteresRecherche.php:145 msgid "Année de publication" msgstr "Data de publicació" @@ -3486,6 +3548,7 @@ msgstr "Tipus de document" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125 #: ../../library/ZendAfi/Form/Album.php:234 #: ../../library/ZendAfi/Form/Admin/Library.php:270 +#: ../../library/Class/ModeleFusion.php:99 msgid "Aucun" msgstr "no" @@ -3671,6 +3734,7 @@ msgstr "Cap resultat en els meus favorits" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67 #: ../../library/Class/MoteurRecherche.php:485 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:60 +#: ../../library/Class/MoteurRecherche.php:491 msgid "Aucun résultat trouvé" msgstr "No hi ha resultats" @@ -4002,6 +4066,7 @@ msgstr "No es van trobar vÃdeos" #: ../../library/Class/CriteresRecherche.php:143 #: ../../library/Class/Profil/Preferences/Loans.php:453 #: ../../library/Class/Profil/Preferences/Loans.php:454 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Auteur" msgstr "Autor" @@ -4130,7 +4195,7 @@ msgstr "Autorització inespecificada" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:310 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" msgstr "Permetre l'accés a les API de OAuth a través d'HTTP (no segur: obsolet" @@ -4621,6 +4686,7 @@ msgstr "Biblioteca Destinació" #: ../../library/Class/Feature/List.php:368 #: ../../library/Class/Feature/List.php:166 #: ../../library/Class/Feature/List.php:413 +#: ../../library/Class/Feature/List.php:469 msgid "Bibliothèque numérique" msgstr "Biblioteca Digital" @@ -5879,6 +5945,8 @@ msgstr "Camps per mostrar" #: ../../application/modules/opac/controllers/PanierController.php:168 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:13 #: ../../application/modules/opac/controllers/PanierController.php:168 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:13 +#: ../../application/modules/opac/controllers/PanierController.php:176 msgid "Changer de panier" msgstr "Canviar de cistella" @@ -5925,7 +5993,7 @@ msgstr "ruta" #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:357 #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:352 #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:345 +#: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:354 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "Camà de les mà scares personalitzada, relatives a %s" @@ -6065,7 +6133,7 @@ msgstr "Clau" #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:310 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:312 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</" @@ -6113,7 +6181,7 @@ msgstr "Feu clic aquà per veure la llista completa" #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:321 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:314 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:318 msgid "" "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/" "home\">http://webthumb.bluga.net/home</a>" @@ -6208,7 +6276,7 @@ msgstr "clau obra" #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:326 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:330 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "Clau pública per xifrat de dades AFI-Multimèdia" @@ -6217,7 +6285,7 @@ msgstr "Clau pública per xifrat de dades AFI-Multimèdia" #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:335 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:328 -#: ../../library/Class/AdminVar.php:323 +#: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:332 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "Clau pública per al xifrat de dades Aesis Webkiosk" @@ -6541,7 +6609,7 @@ msgstr "Comprimeixi la imatge \" %s\" mantenint les mateixes dimensions." #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:444 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:439 -#: ../../library/Class/AdminVar.php:433 +#: ../../library/Class/AdminVar.php:433 ../../library/Class/AdminVar.php:443 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -6654,6 +6722,7 @@ msgstr "Configuració de la pà gina: %s" #: ../../application/modules/opac/controllers/RechercheController.php:157 #: ../../application/modules/opac/controllers/RechercheController.php:154 #: ../../application/modules/opac/controllers/RechercheController.php:163 +#: ../../application/modules/opac/controllers/RechercheController.php:169 msgid "Configuration de la recherche" msgstr "Mostrar els resultats de cerca" @@ -6890,6 +6959,11 @@ msgstr "connectors" msgid "Connecteur StoryPlay*r" msgstr "connectors" +#: ../../library/Class/Feature/List.php:464 +#, fuzzy +msgid "Connecteur diMusic" +msgstr "connectors" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 msgid "Connecteurs" @@ -6906,6 +6980,7 @@ msgstr "Inicia sessió" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:407 #: ../../library/Class/AdminVar.php:399 ../../library/Class/AdminVar.php:401 #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:406 msgid "" "Conserve le dernier fichier transmis par le SIGB pour chaque notice. Celui-" "ci est téléchargeable à partir de l'Inspecteur Gadget." @@ -6952,6 +7027,7 @@ msgstr "Constitució del pla d'accés" #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 #: ../../library/Class/CriteresRecherche.php:147 +#: ../../library/Class/CriteresRecherche.php:148 msgid "Consultation" msgstr "consulta" @@ -7069,6 +7145,7 @@ msgstr "Contingut del comentari modificat" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:280 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:282 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -7084,6 +7161,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:283 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" @@ -7098,6 +7176,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:283 #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:284 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -7111,6 +7190,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:413 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:405 +#: ../../library/Class/AdminVar.php:415 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -7123,6 +7203,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:407 ../../library/Class/AdminVar.php:412 #: ../../library/Class/AdminVar.php:415 ../../library/Class/AdminVar.php:409 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:404 +#: ../../library/Class/AdminVar.php:414 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -7544,6 +7625,7 @@ msgstr "Crear una nova cistella" #: ../../application/modules/opac/controllers/PanierController.php:122 #: ../../application/modules/opac/controllers/PanierController.php:122 +#: ../../application/modules/opac/controllers/PanierController.php:125 msgid "Créer un panier" msgstr "Crear una nova bloc de llum" @@ -7768,6 +7850,7 @@ msgstr "Data de nascimiento" #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 #: ../../library/Class/CriteresRecherche.php:146 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:301 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Date de nouveauté" msgstr "Data de novetat" @@ -7809,6 +7892,7 @@ msgstr "Data de suggeriment" #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:405 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:394 +#: ../../library/Class/AdminVar.php:404 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "Data de l'última importació de ususaris (modificada pel cosmograma)" @@ -7817,7 +7901,7 @@ msgstr "Data de l'última importació de ususaris (modificada pel cosmograma)" #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:321 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:325 msgid "Date du dernier vidage manuel du cache" msgstr "Data de l'últim buidatge manual del caixet" @@ -7873,6 +7957,7 @@ msgstr "de B a A" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:309 msgid "" "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est " "désactivé." @@ -8552,6 +8637,7 @@ msgstr "Temes de recerca" #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:448 +#: ../../library/Class/MoteurRecherche.php:449 msgid "Domaine non paramétré" msgstr "Selecció no parametritzada" @@ -8968,7 +9054,7 @@ msgstr "Desactivar la tasca" #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:311 -#: ../../library/Class/AdminVar.php:306 +#: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:315 msgid "Désactiver pour passer le site en maintenance" msgstr "Posar el portal en manteniment" @@ -8987,6 +9073,7 @@ msgstr "Deshabilitat" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:390 #: ../../library/Class/AdminVar.php:382 ../../library/Class/AdminVar.php:384 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:389 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" @@ -9000,6 +9087,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:388 ../../library/Class/AdminVar.php:391 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:385 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:390 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -9654,10 +9742,12 @@ msgid "Enregistrer comme filtres par défaut" msgstr "Desa filtres per defecte" #: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:169 msgid "Enregistrer ma recherche" msgstr "Comença la cerca" #: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:170 msgid "Enregistrer ma recherche dans mes favoris" msgstr "Ampliar la cerca a totes les paraules" @@ -9849,6 +9939,7 @@ msgstr "Enviar per email" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:137 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:128 msgid "Envoyer une demande d'achat de document" msgstr "Envia un suggeriment de compra" @@ -10659,7 +10750,7 @@ msgstr "Facilita la indexació del seu portal en els motors de cerca" #: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439 #: ../../library/Class/AdminVar.php:444 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:442 -#: ../../library/Class/AdminVar.php:436 +#: ../../library/Class/AdminVar.php:436 ../../library/Class/AdminVar.php:446 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -11059,7 +11150,7 @@ msgstr "Fons" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:297 +#: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:306 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -11464,6 +11555,7 @@ msgstr "La generació actual" #: ../../application/modules/admin/views/scripts/print/index.phtml:8 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:65 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:69 msgid "Générer" msgstr "General" @@ -11815,6 +11907,7 @@ msgstr "Icona de l'explorador" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:416 #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:411 +#: ../../library/Class/AdminVar.php:421 msgid "Id du connecteur Le Social" msgstr "Connector Aneu The Social" @@ -12441,15 +12534,27 @@ msgstr "Deixar de rebre el butlletà de notÃcies:" #: ../../library/Class/Profil/Preferences/LoansHistory.php:103 #: ../../library/Class/Profil/Preferences/Loans.php:258 #: ../../library/Class/Profil/Preferences/Loans.php:259 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:24 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:140 msgid "Imprimer" msgstr "Imprimir" +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:25 +#, fuzzy, php-format +msgid "Imprimer \"%s\"" +msgstr "Traieu" + #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #, fuzzy, php-format msgid "Imprimer %s" msgstr "Traieu" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:141 +#, fuzzy +msgid "Imprimer le résultat" +msgstr "Nombre de resultats per mostrar" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8 #: ../../library/Class/IntProfilDonnees.php:83 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 @@ -12819,7 +12924,7 @@ msgstr "Afegir una registre al cistell" #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:334 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:332 -#: ../../library/Class/AdminVar.php:327 +#: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:336 msgid "Interdire la modification de la fiche abonne" msgstr "Convertir la fitxa d'usuari a només lectura" @@ -12968,6 +13073,7 @@ msgstr "Javascript" #: ../../library/Class/AdminVar.php:395 ../../library/Class/AdminVar.php:398 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:397 msgid "Javascript code for statistics" msgstr "Codi Javascript per a estadÃstiques" @@ -12977,6 +13083,7 @@ msgstr "Codi Javascript per a estadÃstiques" #: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:298 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "Ja no vull rebre aquest butlletÃ" @@ -13749,6 +13856,10 @@ msgstr "La sol·licitud ha de ser POST" msgid "La règle n'est pas de la forme 686$a" msgstr "La regla no és de la forma 686 $ a" +#: ../../library/Class/WebService/SIGB/Koha/Service.php:178 +msgid "La réservation à l'exemplaire est interdite" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:129 msgid "" "La sauvegarde a échoué. Les modifications n'ont pas été prises en compte." @@ -13794,6 +13905,11 @@ msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "La suma dels amples de les parts no ha d'excedir l'amplada del lloc." +#: ../../library/Class/MoteurRecherche.php:454 +#, fuzzy +msgid "La sélection courante est vide" +msgstr "La selecció no conté cap registre" + #: ../../library/Class/CriteresRecherche.php:450 #: ../../library/Class/CriteresRecherche.php:454 #: ../../library/Class/CriteresRecherche.php:476 @@ -13801,6 +13917,7 @@ msgstr "La suma dels amples de les parts no ha d'excedir l'amplada del lloc." #: ../../library/Class/CriteresRecherche.php:478 #: ../../library/Class/CriteresRecherche.php:491 #: ../../library/Class/CriteresRecherche.php:492 +#: ../../library/Class/CriteresRecherche.php:518 msgid "La sélection ne contient aucune notice" msgstr "La selecció no conté cap registre" @@ -13943,6 +14060,7 @@ msgstr "Enviar totes les" #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:105 msgid "Lancer une recherche avec réinitialisation des paramètres" msgstr "Iniciar una cerca amb tots els parà metres per defecte" @@ -13973,6 +14091,7 @@ msgstr "idioma" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:305 msgid "Langue par défaut" msgstr "Permisos per defecte" @@ -14393,6 +14512,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:260 +#: ../../library/Class/AdminVar.php:269 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 " @@ -14705,6 +14825,7 @@ msgstr "Els %s seleccionats han estat eliminats" #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:307 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB." msgstr "Els subscriptors poden connectar només a través del servei web d'IMS." @@ -15205,7 +15326,7 @@ msgstr "confirmar contrasenya" #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:344 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:337 -#: ../../library/Class/AdminVar.php:332 +#: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:341 msgid "Libellé pour la Dewey" msgstr "Etiqueta per Dewey" @@ -15214,7 +15335,7 @@ msgstr "Etiqueta per Dewey" #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:343 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:336 -#: ../../library/Class/AdminVar.php:331 +#: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:340 msgid "Libellé pour la PCDM4" msgstr "Etiqueta per PCDM4" @@ -15300,6 +15421,7 @@ msgstr "Permalink" #: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:287 +#: ../../library/Class/AdminVar.php:296 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "Enllaç per donar-se de baixa d'aquest butlletÃ: {{URL}}" @@ -15782,7 +15904,7 @@ msgstr "Llista de categories" #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:342 #: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:337 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:335 -#: ../../library/Class/AdminVar.php:330 +#: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:339 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;" @@ -15797,7 +15919,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:355 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:350 #: ../../library/Class/AdminVar.php:351 ../../library/Class/AdminVar.php:348 -#: ../../library/Class/AdminVar.php:343 +#: ../../library/Class/AdminVar.php:343 ../../library/Class/AdminVar.php:352 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 => " @@ -15812,7 +15934,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:324 #: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:317 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:321 msgid "" "Liste des codes langue utilisées en plus du français séparées par des ;. " "Exemple: en;ro;es" @@ -15835,7 +15957,7 @@ msgstr "Últims RSS" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:435 #: ../../library/Class/AdminVar.php:429 ../../library/Class/AdminVar.php:430 -#: ../../library/Class/AdminVar.php:424 +#: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:434 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -15861,7 +15983,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423 #: ../../library/Class/AdminVar.php:428 ../../library/Class/AdminVar.php:431 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:426 -#: ../../library/Class/AdminVar.php:420 +#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:430 msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "Llista donis connectors disponibles" @@ -15870,7 +15992,7 @@ msgstr "Llista donis connectors disponibles" #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:438 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:433 -#: ../../library/Class/AdminVar.php:427 +#: ../../library/Class/AdminVar.php:427 ../../library/Class/AdminVar.php:437 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "Llista d'extensions d'arxius que es poden canviar de mida." @@ -15878,7 +16000,7 @@ msgstr "Llista d'extensions d'arxius que es poden canviar de mida." #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:441 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:436 -#: ../../library/Class/AdminVar.php:430 +#: ../../library/Class/AdminVar.php:430 ../../library/Class/AdminVar.php:440 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." @@ -15886,6 +16008,7 @@ msgstr "" "Llista d'extensions que es poden seleccionar per enriquir el contingut." #: ../../library/Class/ModeleFusion.php:79 +#: ../../library/Class/ModeleFusion.php:103 #, fuzzy msgid "Liste des prêts" msgstr "Historial de préstecs" @@ -16108,6 +16231,7 @@ msgstr "MARC-XML" #: ../../library/Class/CriteresRecherche.php:973 #: ../../library/Class/CriteresRecherche.php:980 +#: ../../library/Class/CriteresRecherche.php:1006 #, fuzzy, php-format msgid "Ma recherche \"%s\"" msgstr "Cerca Tipus" @@ -16659,6 +16783,11 @@ msgstr "Missatge ..." msgid "Metadonnées" msgstr "metadades" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:130 +#, fuzzy +msgid "Mettre dans un panier" +msgstr "TÃtol cistella" + #: ../../library/Class/Feature/List.php:163 msgid "" "Mettre en place un accès à des ressources libres de droit et fournir aux " @@ -16671,6 +16800,11 @@ msgstr "" msgid "Mettre en place une newsletter" msgstr "Edita miniatures" +#: ../../application/modules/opac/controllers/PanierController.php:212 +#, fuzzy +msgid "Mettre la sélection dans un panier" +msgstr "Crear una nova bloc de llum" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 #: ../../application/modules/admin/controllers/PremierChapitreController.php:143 #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 @@ -17012,6 +17146,7 @@ msgstr "Reservi una estació multimèdia" #: ../../library/ZendAfi/Controller/Plugin/Manager/SearchForm.php:28 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:481 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:508 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:59 msgid "Modifier" msgstr "Editar" @@ -17227,6 +17362,7 @@ msgstr "Edita la miniatura" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:58 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:61 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:56 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:60 #, php-format msgid "Modifier la vignette de la notice \"%s\"" msgstr "Canvia la miniatura del registre \"%s\"" @@ -17569,10 +17705,12 @@ msgstr "Plantilla \" %s\" eliminada" #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:96 +#: ../../library/Class/ModeleFusion.php:120 msgid "Modèle par défaut : liste d'articles" msgstr "Divisió per defecte Transmissió" #: ../../library/Class/ModeleFusion.php:98 +#: ../../library/Class/ModeleFusion.php:122 #, fuzzy msgid "Modèle par défaut : liste de prêts" msgstr "Divisió per defecte Transmissió" @@ -17580,12 +17718,14 @@ msgstr "Divisió per defecte Transmissió" #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:94 +#: ../../library/Class/ModeleFusion.php:118 msgid "Modèle par défaut : résultat de recherche" msgstr "Mostrar els resultats de cerca" #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:95 +#: ../../library/Class/ModeleFusion.php:119 msgid "Modèle par défaut : une notice" msgstr "Plantilla per defecte: un registre" @@ -17622,6 +17762,7 @@ msgstr "Moderació d'alertes" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389 #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:383 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:378 +#: ../../library/Class/AdminVar.php:388 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" @@ -17636,6 +17777,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:377 +#: ../../library/Class/AdminVar.php:387 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -18071,6 +18213,7 @@ msgstr "Nombre de registres per pà gina" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:146 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:111 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:115 +#: ../../library/Class/Systeme/ModulesAppli.php:176 msgid "Ne pas afficher" msgstr "No mostrar" @@ -18404,7 +18547,7 @@ msgstr "Nom de biblioteca" #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:312 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:316 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "Nom de la biblioteca en bibliosurf (minúscula)" @@ -18548,7 +18691,7 @@ msgstr "Avisos de subscriptors: %s" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:302 +#: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:311 msgid "Nombre d'avis maximum à afficher par utilisateur." msgstr "Nombre mà xim de visites per mostrar per usuari." @@ -18633,6 +18776,7 @@ msgstr "Avisos de subscriptors: %s" #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:380 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:374 #: ../../library/Class/AdminVar.php:375 ../../library/Class/AdminVar.php:369 +#: ../../library/Class/AdminVar.php:379 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "Nombre mà xim de carà cters permesos en avisos." @@ -18642,6 +18786,7 @@ msgstr "Nombre mà xim de carà cters permesos en avisos." #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:376 #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:381 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "Nombre mà xim de carà cters per mostrar al bloc crÃtic." @@ -18651,6 +18796,7 @@ msgstr "Nombre mà xim de carà cters per mostrar al bloc crÃtic." #: ../../library/Class/AdminVar.php:378 ../../library/Class/AdminVar.php:381 #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:375 #: ../../library/Class/AdminVar.php:376 ../../library/Class/AdminVar.php:370 +#: ../../library/Class/AdminVar.php:380 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "Nombre mÃnim de carà cters permesos per a ser ingressats en avisos." @@ -18716,6 +18862,7 @@ msgstr "Nombre de formes: %s" #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:386 #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:391 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "Nombre de dies de validesa dels nous registres en el lloc" @@ -18876,6 +19023,7 @@ msgstr "Nombre de divisions" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:261 +#: ../../library/Class/AdminVar.php:270 msgid "Nombre maximum d'articles en sélection multiple" msgstr "Quantitat mà xima d'articles en selecció múltiple" @@ -19028,6 +19176,7 @@ msgstr "Nota (s)" #: ../../application/modules/opac/controllers/PanierController.php:249 #: ../../application/modules/opac/controllers/PanierController.php:249 +#: ../../application/modules/opac/controllers/PanierController.php:281 #, php-format msgid "Notice \"%s\" retirée du panier" msgstr "Note \" %s\" eliminat del carret" @@ -19209,6 +19358,7 @@ msgstr "Nova contrasenya" #: ../../library/Class/PanierNotice.php:29 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:5 #: ../../library/Class/PanierNotice.php:29 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:5 msgid "Nouveau panier" msgstr "Nova cistella" @@ -19248,6 +19398,7 @@ msgstr "Resultats de la cerca TÃtol" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:56 msgid "Nouveauté" msgstr "novetat" @@ -19317,6 +19468,7 @@ msgstr "Nou a:" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:231 #, fuzzy, php-format msgid "Nouveautés du %s" msgstr "NotÃcies" @@ -19360,6 +19512,7 @@ msgstr "Nova tasca" #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:104 msgid "Nouvelle recherche" msgstr "Nova cerca" @@ -19463,7 +19616,7 @@ msgstr "Número de targeta invà lid" #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:320 #: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:313 -#: ../../library/Class/AdminVar.php:308 +#: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:317 msgid "" "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader." "readspeaker.com\">http://webreader.readspeaker.com</a>" @@ -19702,6 +19855,7 @@ msgstr "Col·legi de divisió" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:138 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Ordre du panier" msgstr "TÃtol cistella" @@ -19869,9 +20023,14 @@ msgstr "Obrir la pà gina \" %s\" a una pestanya" #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:145 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:162 msgid "Ouvrir le lien dans un nouvel onglet" msgstr "Obriu l'enllaç en una nova pestanya" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:64 +msgid "Ouvrir le menu des actions de sélection." +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 msgid "Ouvrir le site dans un nouvel onglet" @@ -19921,6 +20080,7 @@ msgstr "PHP" #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:393 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:388 +#: ../../library/Class/AdminVar.php:398 msgid "PIWIK authentication token for widgets" msgstr "Token d'autenticació Piwik per widgets" @@ -19957,6 +20117,7 @@ msgstr "L'ample total de la pà gina" #: ../../library/Class/ModeleFusion.php:76 #: ../../library/Class/ModeleFusion.php:76 +#: ../../library/Class/ModeleFusion.php:100 msgid "Page d'articles" msgstr "Pà gina d'articles" @@ -19967,6 +20128,7 @@ msgstr "autenticació" #: ../../library/Class/ModeleFusion.php:78 #: ../../library/Class/ModeleFusion.php:78 +#: ../../library/Class/ModeleFusion.php:102 msgid "Page de notice" msgstr "Pà gina d'avÃs" @@ -20046,6 +20208,7 @@ msgstr "Cistelles %s guardada" #: ../../application/modules/opac/controllers/PanierController.php:196 #: ../../application/modules/opac/controllers/PanierController.php:196 +#: ../../application/modules/opac/controllers/PanierController.php:204 #, php-format msgid "Panier %s supprimé" msgstr "Cistella eliminat %s" @@ -20057,6 +20220,7 @@ msgstr "Cistella :" #: ../../application/modules/opac/controllers/PanierController.php:183 #: ../../application/modules/opac/controllers/PanierController.php:183 +#: ../../application/modules/opac/controllers/PanierController.php:191 #, php-format msgid "Panier courant : %s" msgstr "Cistella corrent: %s" @@ -20068,6 +20232,7 @@ msgstr "Cistella dels Premiers Chapitres" #: ../../application/modules/opac/controllers/PanierController.php:274 #: ../../application/modules/opac/controllers/PanierController.php:274 +#: ../../application/modules/opac/controllers/PanierController.php:306 #, fuzzy, php-format msgid "Panier n°%s introuvable" msgstr "Usuari no trobat" @@ -20400,8 +20565,14 @@ msgstr "compartint" msgid "Partager \"%s\" sur les réseaux sociaux" msgstr "Comparteix \" %s\" a les xarxes socials" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:155 +#, fuzzy +msgid "Partager le résultat par email" +msgstr "quota per e-mail" + #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:154 msgid "Partager par email" msgstr "quota per e-mail" @@ -20680,6 +20851,7 @@ msgstr "Deixar de rebre el butlletà de notÃcies:" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:139 +#: ../../library/Class/CriteresRecherche.php:140 msgid "Pertinence" msgstr "rellevà ncia" @@ -21000,6 +21172,7 @@ msgstr "Punt" #: ../../library/Class/AdminVar.php:495 ../../library/Class/AdminVar.php:489 #: ../../library/Class/AdminVar.php:490 #: ../../library/ZendAfi/View/Helper/TagListeCoches.php:278 +#: ../../library/Class/AdminVar.php:497 msgid "Portail" msgstr "Portal" @@ -21015,7 +21188,7 @@ msgstr "Portal" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:250 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:156 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Position" msgstr "posició" @@ -21031,7 +21204,7 @@ msgstr "Posició de la paginació" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Position de la pagination en résultat de recherche" msgstr "Posició de la paginació en el resultat de cerca" @@ -21346,6 +21519,7 @@ msgstr "No es troben el perfil de dades %s ( %d)" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:292 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -21813,6 +21987,16 @@ msgstr "Determinació de la disponibilitat en el resultat de cerca" msgid "Prêt" msgstr "Préstec" +#: ../../library/Class/Feature/List.php:475 +msgid "Prêt Numérique en Bibliothqe avec diliCOM" +msgstr "" + +#: ../../library/Class/Feature/List.php:476 +msgid "" +"Prêt Numérique en Bibliothèque (PNB) est un dispositif interprofessionnel " +"d'accès à la lecture numérique en bibliothèques publiques." +msgstr "" + #: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 msgid "Prêt introuvable" msgstr "Usuari no trobat" @@ -22600,6 +22784,7 @@ msgstr "recursos digitals" #: ../../library/Class/Codification.php:232 #: ../../library/Class/Codification.php:232 #: ../../library/Class/Profil/Preferences/SearchResult.php:54 +#: ../../library/Class/Feature/List.php:479 msgid "Ressources numériques" msgstr "recursos digitals" @@ -22626,6 +22811,7 @@ msgstr "Limitat a:" #: ../../library/Class/ModeleFusion.php:77 #: ../../library/Class/ModeleFusion.php:77 +#: ../../library/Class/ModeleFusion.php:101 msgid "Resultats de recherche" msgstr "Resultats de cerca" @@ -22647,6 +22833,11 @@ msgstr "veure facetes" msgid "Retirer le critère: %s" msgstr "Anar al lloc %s" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:98 +#, fuzzy +msgid "Retirer toute les notices présente dans votre sélection" +msgstr "Nombre de registres per pà gina" + #: ../../library/Class/WebService/SIGB/Dynix/TitleInfoResponseReader.php:172 #, fuzzy msgid "Retiré" @@ -22824,6 +23015,7 @@ msgstr "Tornar a la llista de biblioteques" #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:99 msgid "Retour à la recherche initiale" msgstr "Tornar a la cerca inicial" @@ -23562,6 +23754,7 @@ msgstr "Secció" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:180 #, php-format msgid "Section: %s" msgstr "Secció: %s" @@ -23637,6 +23830,7 @@ msgstr "servidor OAI" #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:267 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:280 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:289 +#: ../../library/Class/WebService/SIGB/AbstractRESTService.php:297 msgid "Service indisponible" msgstr "Servei no disponible" @@ -23759,6 +23953,7 @@ msgstr "Direcció del servidor OAI Cyberlibris" #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:398 ../../library/Class/AdminVar.php:400 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:395 +#: ../../library/Class/AdminVar.php:405 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -24262,6 +24457,7 @@ msgstr "Suggeriments no admeses per aquest connector" #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 #: ../../library/ZendAfi/View/Helper/Search/Header.php:136 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:127 msgid "Suggérer un achat" msgstr "Enllaç \"Suggerir una Compra\"" @@ -24372,7 +24568,7 @@ msgstr "Préstecs i reserves:" #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:316 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:320 msgid "" "Supprime l'affichage du lien d'enregistrement dans les différents " "formulaires de connexion et interdit l'enregistrement d'utilisateurs" @@ -24506,6 +24702,7 @@ msgstr "administrar preferits" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:67 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:71 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:66 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #, php-format msgid "Supprimer et re-générer la vignette de la notice \"%s\"" msgstr "Suprimiu i torneu a generar la miniatura del registre \"%s\"" @@ -24713,6 +24910,21 @@ msgstr "Generació del Lloc" msgid "Sélection" msgstr "selecció" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:58 +#, fuzzy +msgid "Sélection : " +msgstr "selecció" + +#: ../../application/modules/opac/controllers/PanierController.php:229 +#, fuzzy, php-format +msgid "Sélection ajoutée dans le panier \"%s\"" +msgstr "Crear una nova bloc de llum" + +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#, fuzzy +msgid "Sélection courante" +msgstr "secció" + #: ../../library/Class/MultiSelection/Album.php:49 #: ../../library/Class/MultiSelection/Album.php:49 msgid "Sélection d'albums" @@ -24770,6 +24982,11 @@ msgstr "secció" msgid "Sélectionner \"%s\"" msgstr "Secció: %s" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:34 +#, php-format +msgid "Sélectionner \"%s\" pour impression, export ou sauvegarde" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 msgid "Sélectionner la bibliothèque" @@ -24780,6 +24997,16 @@ msgstr "ubicacions Biblioteca" msgid "Sélectionner les groupes destinaires" msgstr "Seleccioneu grups de destÃ" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:151 +#, fuzzy +msgid "Sélectionner tous les résultats" +msgstr "Crear una nova bloc de llum" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:115 +#, fuzzy +msgid "Sélectionner toute la page" +msgstr "Crear una nova bloc de llum" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 msgid "Sélectionner un autre panier" @@ -24924,7 +25151,7 @@ msgstr "Mida :" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:428 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:423 -#: ../../library/Class/AdminVar.php:417 +#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:427 msgid "Taille du dossier userfiles en méga octets." msgstr "Mida de carpeta d'arxius d'usuari en megabytes." @@ -25130,7 +25357,7 @@ msgstr "Text d'ajuda" #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:322 #: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:315 -#: ../../library/Class/AdminVar.php:310 +#: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:319 msgid "Texte d'aide affiché dans la fiche abonné" msgstr "Convertir la fitxa d'usuari a només lectura" @@ -25160,6 +25387,7 @@ msgstr "Error de configuració" #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:297 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 " @@ -25175,6 +25403,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:295 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 " @@ -25195,7 +25424,7 @@ msgstr "Text del breadcrumb" #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:312 #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:310 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:314 msgid "Texte visible après l'envoi d'e-mail de demande de réservation." msgstr "" "Text visible després d'enviar una sol·licitud de reserva per correu " @@ -25206,7 +25435,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:311 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:309 -#: ../../library/Class/AdminVar.php:304 +#: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:313 msgid "Texte visible par l'internaute après son inscription." msgstr "Text visible per l'usuari després del seu registre." @@ -25476,6 +25705,7 @@ msgstr "aleatori" #: ../../library/ZendAfi/Form/Configuration/Loans.php:30 #: ../../library/Class/Profil/Preferences/Loans.php:396 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:54 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Titre" msgstr "TÃtol" @@ -26059,6 +26289,7 @@ msgstr "Tipus de document: %s" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:202 #: ../../library/ZendAfi/Form/AdvancedSearch.php:65 #: ../../library/ZendAfi/View/Helper/LegacyAdvancedSearch.php:123 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Type de document" msgstr "Tipus de document: %s" @@ -26482,7 +26713,7 @@ msgstr "Biografia de l'autor" #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:331 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:329 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:333 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "Reserva un missatge Webkiosk" @@ -26546,7 +26777,7 @@ msgstr "URL de destinació de l'informe d'estat del sistema (0 per desactivar)" #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:332 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:327 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:325 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:329 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "URL de la Babelthèque javascript per inserir en l'OPAC" @@ -26685,6 +26916,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:328 +#: ../../library/Class/ModeleFusion.php:353 #, php-format msgid "Un modèle a déjà le même nom : %s" msgstr "Una plantilla ja té el mateix nom: %s" @@ -26925,7 +27157,7 @@ msgstr "Pla d'accés" #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:341 #: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:334 -#: ../../library/Class/AdminVar.php:329 +#: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:338 msgid "Url d'import d'un agenda TYPO3" msgstr "Url per importar un calendari TYPO3" @@ -26948,6 +27180,7 @@ msgstr "No hi han categories" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:418 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:415 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 +#: ../../library/Class/AdminVar.php:420 msgid "Url du connecteur Le Social" msgstr "Connector Aneu The Social" @@ -27413,11 +27646,13 @@ msgstr "Habiliteu el recurs per administrar els drets d'accés de grup" #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 +#: ../../application/modules/opac/controllers/PanierController.php:247 msgid "Veuillez choisir un panier" msgstr "Si us plau triï una cistella" #: ../../application/modules/opac/controllers/PanierController.php:211 #: ../../application/modules/opac/controllers/PanierController.php:211 +#: ../../application/modules/opac/controllers/PanierController.php:243 msgid "Veuillez choisir une notice" msgstr "Si us plau esculli un registre" @@ -27523,6 +27758,11 @@ msgstr "Comproveu que la mida del fitxer no excedeixi el mà xim permès %s" msgid "Vider" msgstr "* Buit *" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:94 +#, fuzzy +msgid "Vider la sélection" +msgstr "Confirmar la selecció" + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 @@ -27797,6 +28037,11 @@ msgstr "llegir més" msgid "Voir la réponse." msgstr "Escriu una resposta." +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:162 +#, fuzzy +msgid "Voir la sélection" +msgstr "Confirmar la selecció" + #: ../../application/modules/admin/views/scripts/feature/index.phtml:64 #: ../../application/modules/admin/views/scripts/feature/index.phtml:75 #, php-format @@ -27838,6 +28083,7 @@ msgstr "Resultat de la cerca" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:66 msgid "Voir le résultat de recherche complet" msgstr "Resultat de la cerca" @@ -28964,6 +29210,7 @@ msgstr "No té el dret de modificar aquesta cistella" #: ../../application/modules/opac/controllers/PanierController.php:221 #: ../../application/modules/opac/controllers/PanierController.php:221 +#: ../../application/modules/opac/controllers/PanierController.php:253 #, php-format msgid "Vous n'avez pas le droit de modifier le panier %s" msgstr "No té dret a editar la cistella %s" @@ -29280,6 +29527,19 @@ msgstr "verificat" msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "WS Koha: reserva de còpies per a múltiples llocs" +#: ../../library/Class/AdminVar.php:356 +#, fuzzy +msgid "" +"WS KOHA : Réservation d'exemplaires pour les multi sites à l'exemplaire. " +"(Uniquement \"HoldItem\")" +msgstr "WS Koha: reserva de còpies per a múltiples llocs" + +#: ../../library/Class/AdminVar.php:357 +msgid "" +"WS KOHA : Tentative de réservation à l'exemplaires puis à la notice. " +"(\"HoldItem\" puis \"HoldTitle\")" +msgstr "" + #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 msgid "Web" @@ -29641,22 +29901,30 @@ msgstr "còpia" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:38 #, fuzzy, php-format msgid "dans la serie : %s" msgstr "Descripció general de la carta:" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:32 #, fuzzy, php-format msgid "dans le catalogue : %s" msgstr "Catà leg: & nbsp;" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:35 #, fuzzy, php-format msgid "dans le panier : %s" msgstr "Edita la cistella" +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:30 +#, fuzzy +msgid "dans ma sélection" +msgstr "Confirmar la selecció" + #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 msgid "dans_panier" @@ -30812,6 +31080,8 @@ msgstr "per %smn" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 +#: ../../library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php:69 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #, php-format msgid "pour : %s" msgstr "per: %s" diff --git a/library/translation/en.mo b/library/translation/en.mo index a25d2c1e9aae669c7ac686d9369e4ef8a3af2aad..e8658892c412da42a2ca7bcd909035de7b1b167f 100644 Binary files a/library/translation/en.mo and b/library/translation/en.mo differ diff --git a/library/translation/en.po b/library/translation/en.po index 15dd2d7d1a068a3d3fce0436d4e481a5d8863cab..e870d05fa9810b8dbd945b0465b8cb3760ef3e7b 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-09-24 14:45+0200\n" -"PO-Revision-Date: 2018-09-24 13:07+0000\n" +"POT-Creation-Date: 2018-10-08 09:33+0200\n" +"PO-Revision-Date: 2018-10-08 09:22+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: English <http://weblate.afi-sa.net/projects/bokeh/bokeh-" "master/en/>\n" @@ -44,6 +44,7 @@ msgstr " (%d late)" #: ../../application/modules/opac/controllers/RechercheController.php:142 #: ../../application/modules/opac/controllers/RechercheController.php:139 #: ../../application/modules/opac/controllers/RechercheController.php:148 +#: ../../application/modules/opac/controllers/RechercheController.php:154 msgid " (recherche élargie triée par pertinence)" msgstr " (extended search sorted by relevance )" @@ -79,6 +80,8 @@ msgstr " Edit my profile" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:195 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:217 msgid " OU " msgstr " OR " @@ -272,6 +275,7 @@ msgstr " to the newsletter: " #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:250 +#: ../../library/Class/ModeleFusion.php:275 msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "!!Error in model, undefined attribute:" @@ -340,6 +344,7 @@ msgstr "%A %B %d at %Hh%M" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:232 msgid "%d %B %Y" msgstr "%B %d %Y" @@ -456,6 +461,7 @@ msgstr "%s : %s (%d)" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:32 #, php-format msgid "%s : Documents %s" msgstr "%s : %s documents" @@ -496,6 +502,19 @@ msgstr "%s : opening ranges" msgid "%s : plages horaire de réservation multimedia" msgstr "%s: multimedia opening ranges" +#: ../../library/Class/Feature/List.php:465 +#, php-format +msgid "" +"%s Historiquement constitué autour de la musique, diMusic propose un " +"catalogue composé d'1 million de titres où toutes les esthétiques musicales " +"sont représentées, du métal au classique en passant par le rap, la chanson " +"française, le reggae, l'électro ou encore la musique pour enfants." +msgstr "" +"%s Historiquement constitué autour de la musique, diMusic propose un " +"catalogue composé d'1 million de titres où toutes les esthétiques musicales " +"sont représentées, du métal au classique en passant par le rap, la chanson " +"française, le reggae, l'électro ou encore la musique pour enfants." + #: ../../library/Class/FileManager/FileSystem.php:114 #, php-format msgid "%s Ko" @@ -1062,6 +1081,7 @@ msgstr "AFI-Multimedia is not enabled" #: ../../library/Class/AdminVar.php:446 ../../library/Class/AdminVar.php:451 #: ../../library/Class/AdminVar.php:454 ../../library/Class/AdminVar.php:448 #: ../../library/Class/AdminVar.php:449 ../../library/Class/AdminVar.php:443 +#: ../../library/Class/AdminVar.php:453 msgid "API" msgstr "API" @@ -1071,6 +1091,7 @@ msgstr "API" #: ../../library/Class/AdminVar.php:445 ../../library/Class/AdminVar.php:450 #: ../../library/Class/AdminVar.php:453 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:448 ../../library/Class/AdminVar.php:442 +#: ../../library/Class/AdminVar.php:452 msgid "API utilisée pour les cartes statiques" msgstr "API used for static maps" @@ -1231,6 +1252,7 @@ msgstr "Validated" #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:43 #: ../../library/Class/MoteurRecherche.php:611 #: ../../library/ZendAfi/View/Helper/ComboProfils.php:107 +#: ../../library/Class/MoteurRecherche.php:617 msgid "Accueil" msgstr "Home" @@ -1292,6 +1314,7 @@ msgstr "Advanced search form" #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:100 msgid "Accéder au formulaire de recherche pré-rempli avec les critères actuels" msgstr "Open the pre-filled search form with the current criteria" @@ -1474,7 +1497,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:358 #: ../../library/Class/AdminVar.php:361 ../../library/Class/AdminVar.php:353 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:355 msgid "Activation de la navigation collaborative" msgstr "Enable collaborative navigation" @@ -1490,7 +1513,7 @@ msgstr "Enable PlanetNemo digital ressource" #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:331 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:335 msgid "Activation des boîtes dans les menus" msgstr "Enable widgets inside menus" @@ -1509,6 +1532,7 @@ msgstr "Enable phone advanced functions" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:270 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:272 msgid "Activation des formulaires" msgstr "Enable forms" @@ -1528,7 +1552,7 @@ msgstr "Enable forms" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:414 #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:409 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:413 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1554,6 +1578,10 @@ msgstr "Enable responsive design" msgid "Activer la redirection vers la liste d'articles" msgstr "Allow articles list redirect" +#: ../../library/Class/AdminVar.php:263 +msgid "Activer la sélection multiple de notices dans le résultat de recherche" +msgstr "Enable multiple records selection in search results" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 msgid "Activer la tâche" @@ -1609,7 +1637,7 @@ msgstr "Enable or disable digital library" #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:325 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:323 -#: ../../library/Class/AdminVar.php:318 +#: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:327 msgid "Activer ou désactiver le module d'activité" msgstr "Enable or disable activity module" @@ -2017,6 +2045,7 @@ msgstr "Display " #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:45 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:97 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:59 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:44 #, php-format msgid "Afficher \"%s\"" msgstr "Display \"%s\"" @@ -2033,21 +2062,25 @@ msgstr "Show Calendar" #: ../../library/Class/Systeme/ModulesAppli.php:179 #: ../../library/Class/Systeme/ModulesAppli.php:179 +#: ../../library/Class/Systeme/ModulesAppli.php:178 msgid "Afficher au dessous des facettes" msgstr "Display under facets" #: ../../library/Class/Systeme/ModulesAppli.php:181 #: ../../library/Class/Systeme/ModulesAppli.php:181 +#: ../../library/Class/Systeme/ModulesAppli.php:180 msgid "Afficher au dessous des résultats" msgstr "See below results" #: ../../library/Class/Systeme/ModulesAppli.php:178 #: ../../library/Class/Systeme/ModulesAppli.php:178 +#: ../../library/Class/Systeme/ModulesAppli.php:177 msgid "Afficher au dessus des facettes" msgstr "Display above facets" #: ../../library/Class/Systeme/ModulesAppli.php:180 #: ../../library/Class/Systeme/ModulesAppli.php:180 +#: ../../library/Class/Systeme/ModulesAppli.php:179 msgid "Afficher au dessus des résultats" msgstr "See above results" @@ -2282,6 +2315,12 @@ msgstr "Show all editions of this document" msgid "Afficher un nouveau domaine" msgstr "Display a new domain" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:169 +msgid "" +"Afficher un résultat de recherche incluant uniquement les notices de votre " +"sélection" +msgstr "Display a search result limited to your selection records" + #: ../../library/Class/Systeme/ModulesNotice.php:41 #: ../../library/Class/Systeme/ModulesNotice.php:41 msgid "Afficher une ligne par exemplaire" @@ -2432,6 +2471,7 @@ msgstr "Add \"%s\" to selection" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:32 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:36 #, php-format msgid "Ajouter \"%s\" dans un panier" msgstr "Add \"%s\" to selection" @@ -2457,6 +2497,7 @@ msgstr "Add %s to selected articles" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:26 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:30 msgid "Ajouter au panier" msgstr "Add to selection" @@ -2465,7 +2506,7 @@ msgstr "Add to selection" #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:356 #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:351 #: ../../library/Class/AdminVar.php:352 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:344 +#: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:353 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "Automatically add a selection box in the floating division" @@ -2499,6 +2540,11 @@ msgstr "Add the record to selection" msgid "Ajouter les utilisateurs sélectionnés" msgstr "Add selected users" +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:20 +#, php-format +msgid "Ajouter ma sélection au panier \"%s\" ?" +msgstr "Add your selection to basket \"%s\" ?" + #: ../../library/Class/MultiSelection/Album.php:113 #: ../../library/Class/MultiSelection/Album.php:113 #, php-format @@ -2511,6 +2557,20 @@ msgstr "Add all albums of %s category to selected albums" msgid "Ajouter tous les articles de la catégorie %s à la sélection d'articles" msgstr "Add all articles from %s category to selected articles" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:119 +msgid "" +"Ajouter toutes les notices de la page de résultat courante dans votre " +"sélection" +msgstr "Add all records in this result page to your selection" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:133 +msgid "Ajouter toutes les notices de la sélection à un panier" +msgstr "Add all search result records to a basket" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:155 +msgid "Ajouter toutes les notices du résultat dans votre sélection" +msgstr "Add all records in search result to your selection" + #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 msgid "Ajouter un agenda" @@ -2552,6 +2612,7 @@ msgstr "Add a catalog" #: ../../application/modules/opac/controllers/PanierController.php:204 #: ../../application/modules/opac/controllers/PanierController.php:204 +#: ../../application/modules/opac/controllers/PanierController.php:236 msgid "Ajouter un document dans un panier" msgstr "Add a record to a selection" @@ -3168,6 +3229,7 @@ msgstr "Publication year - to" #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/CriteresRecherche.php:144 +#: ../../library/Class/CriteresRecherche.php:145 msgid "Année de publication" msgstr "Publication year" @@ -3469,6 +3531,7 @@ msgstr "To doc type(s)" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125 #: ../../library/ZendAfi/Form/Album.php:234 #: ../../library/ZendAfi/Form/Admin/Library.php:270 +#: ../../library/Class/ModeleFusion.php:99 msgid "Aucun" msgstr "No" @@ -3653,6 +3716,7 @@ msgstr "No match in my favorites" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67 #: ../../library/Class/MoteurRecherche.php:485 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:60 +#: ../../library/Class/MoteurRecherche.php:491 msgid "Aucun résultat trouvé" msgstr "No results" @@ -3980,6 +4044,7 @@ msgstr "No video found" #: ../../library/Class/CriteresRecherche.php:143 #: ../../library/Class/Profil/Preferences/Loans.php:453 #: ../../library/Class/Profil/Preferences/Loans.php:454 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Auteur" msgstr "Author" @@ -4107,7 +4172,7 @@ msgstr "Unspecified authorization" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:310 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)" @@ -4598,6 +4663,7 @@ msgstr "Library membership" #: ../../library/Class/Feature/List.php:368 #: ../../library/Class/Feature/List.php:166 #: ../../library/Class/Feature/List.php:413 +#: ../../library/Class/Feature/List.php:469 msgid "Bibliothèque numérique" msgstr "digital library" @@ -5844,6 +5910,8 @@ msgstr "Fields to display" #: ../../application/modules/opac/controllers/PanierController.php:168 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:13 #: ../../application/modules/opac/controllers/PanierController.php:168 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:13 +#: ../../application/modules/opac/controllers/PanierController.php:176 msgid "Changer de panier" msgstr "Change selection" @@ -5890,7 +5958,7 @@ msgstr "Path" #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:357 #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:352 #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:345 +#: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:354 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "Path to personalized skins, from %s" @@ -6030,7 +6098,7 @@ msgstr "Key" #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:310 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:312 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</" @@ -6078,7 +6146,7 @@ msgstr "Click here to see the full list" #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:321 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:314 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:318 msgid "" "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/" "home\">http://webthumb.bluga.net/home</a>" @@ -6173,7 +6241,7 @@ msgstr "Artwork key" #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:326 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:330 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "Public key for AFI-Multimedia encryption datas" @@ -6182,7 +6250,7 @@ msgstr "Public key for AFI-Multimedia encryption datas" #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:335 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:328 -#: ../../library/Class/AdminVar.php:323 +#: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:332 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "Public key for AESIS Webkiosk encryption datas" @@ -6500,7 +6568,7 @@ msgstr "Compress image \"%s\" and keep same geometry." #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:444 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:439 -#: ../../library/Class/AdminVar.php:433 +#: ../../library/Class/AdminVar.php:433 ../../library/Class/AdminVar.php:443 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -6613,6 +6681,7 @@ msgstr "Page settings: %s" #: ../../application/modules/opac/controllers/RechercheController.php:157 #: ../../application/modules/opac/controllers/RechercheController.php:154 #: ../../application/modules/opac/controllers/RechercheController.php:163 +#: ../../application/modules/opac/controllers/RechercheController.php:169 msgid "Configuration de la recherche" msgstr "Search configuration" @@ -6846,6 +6915,10 @@ msgstr "Skilleos connector" msgid "Connecteur StoryPlay*r" msgstr "StoryPlay*R connector" +#: ../../library/Class/Feature/List.php:464 +msgid "Connecteur diMusic" +msgstr "DiMusic connector" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 msgid "Connecteurs" @@ -6862,6 +6935,7 @@ msgstr "Connection" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:407 #: ../../library/Class/AdminVar.php:399 ../../library/Class/AdminVar.php:401 #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:406 msgid "" "Conserve le dernier fichier transmis par le SIGB pour chaque notice. Celui-" "ci est téléchargeable à partir de l'Inspecteur Gadget." @@ -6908,6 +6982,7 @@ msgstr "Constitution of the map" #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 #: ../../library/Class/CriteresRecherche.php:147 +#: ../../library/Class/CriteresRecherche.php:148 msgid "Consultation" msgstr "Consultation" @@ -7026,6 +7101,7 @@ msgstr "Review content modified" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:280 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:282 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -7041,6 +7117,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:283 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" @@ -7054,6 +7131,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:283 #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:284 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -7066,6 +7144,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:413 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:405 +#: ../../library/Class/AdminVar.php:415 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -7078,6 +7157,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:407 ../../library/Class/AdminVar.php:412 #: ../../library/Class/AdminVar.php:415 ../../library/Class/AdminVar.php:409 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:404 +#: ../../library/Class/AdminVar.php:414 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -7495,6 +7575,7 @@ msgstr "Create a new selection" #: ../../application/modules/opac/controllers/PanierController.php:122 #: ../../application/modules/opac/controllers/PanierController.php:122 +#: ../../application/modules/opac/controllers/PanierController.php:125 msgid "Créer un panier" msgstr "Create a new selection" @@ -7717,6 +7798,7 @@ msgstr "Birthdate" #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 #: ../../library/Class/CriteresRecherche.php:146 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:301 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Date de nouveauté" msgstr "date of new ithem" @@ -7758,6 +7840,7 @@ msgstr "Suggestion date" #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:405 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:394 +#: ../../library/Class/AdminVar.php:404 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "Last patron import date" @@ -7766,7 +7849,7 @@ msgstr "Last patron import date" #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:321 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:325 msgid "Date du dernier vidage manuel du cache" msgstr "Last manual clear cache" @@ -7822,6 +7905,7 @@ msgstr "B to A" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:309 msgid "" "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est " "désactivé." @@ -8490,6 +8574,7 @@ msgstr "Search domain" #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:448 +#: ../../library/Class/MoteurRecherche.php:449 msgid "Domaine non paramétré" msgstr "Unset domain" @@ -8902,7 +8987,7 @@ msgstr "Disable this task" #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:311 -#: ../../library/Class/AdminVar.php:306 +#: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:315 msgid "Désactiver pour passer le site en maintenance" msgstr "Deactivate to put site offline" @@ -8921,6 +9006,7 @@ msgstr "Disabled" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:390 #: ../../library/Class/AdminVar.php:382 ../../library/Class/AdminVar.php:384 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:389 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" @@ -8934,6 +9020,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:388 ../../library/Class/AdminVar.php:391 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:385 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:390 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -9570,10 +9657,12 @@ msgid "Enregistrer comme filtres par défaut" msgstr "Save as default filters" #: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:169 msgid "Enregistrer ma recherche" msgstr "Bookmark this search" #: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:170 msgid "Enregistrer ma recherche dans mes favoris" msgstr "Bookmark this search" @@ -9761,6 +9850,7 @@ msgstr "Send by e-mail" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:137 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:128 msgid "Envoyer une demande d'achat de document" msgstr "Send a document purchase request" @@ -10563,7 +10653,7 @@ msgstr "Facilitate indexation of your site by search engines" #: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439 #: ../../library/Class/AdminVar.php:444 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:442 -#: ../../library/Class/AdminVar.php:436 +#: ../../library/Class/AdminVar.php:436 ../../library/Class/AdminVar.php:446 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -10961,7 +11051,7 @@ msgstr "Fonds" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:297 +#: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:306 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -11362,6 +11452,7 @@ msgstr "Processing in progress" #: ../../application/modules/admin/views/scripts/print/index.phtml:8 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:65 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:69 msgid "Générer" msgstr "Generate" @@ -11709,6 +11800,7 @@ msgstr "Browser icon" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:416 #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:411 +#: ../../library/Class/AdminVar.php:421 msgid "Id du connecteur Le Social" msgstr "Conector id Le Social" @@ -12332,15 +12424,26 @@ msgstr "Prints for %s session of \"%s\" activity" #: ../../library/Class/Profil/Preferences/LoansHistory.php:103 #: ../../library/Class/Profil/Preferences/Loans.php:258 #: ../../library/Class/Profil/Preferences/Loans.php:259 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:24 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:140 msgid "Imprimer" msgstr "Print" +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:25 +#, php-format +msgid "Imprimer \"%s\"" +msgstr "Print \"%s\"" + #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #, php-format msgid "Imprimer %s" msgstr "Print %s" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:141 +msgid "Imprimer le résultat" +msgstr "Print search result" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8 #: ../../library/Class/IntProfilDonnees.php:83 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 @@ -12708,7 +12811,7 @@ msgstr "Insert a kiosk in an article" #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:334 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:332 -#: ../../library/Class/AdminVar.php:327 +#: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:336 msgid "Interdire la modification de la fiche abonne" msgstr "Make patron form read only" @@ -12857,6 +12960,7 @@ msgstr "Javascript" #: ../../library/Class/AdminVar.php:395 ../../library/Class/AdminVar.php:398 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:397 msgid "Javascript code for statistics" msgstr "Javascript code for statistics" @@ -12866,6 +12970,7 @@ msgstr "Javascript code for statistics" #: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:298 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "I want to unsuscribe to this newsletter" @@ -13622,6 +13727,10 @@ msgstr "Request method must be POST" msgid "La règle n'est pas de la forme 686$a" msgstr "The rule is not unimarc 686%a compliant" +#: ../../library/Class/WebService/SIGB/Koha/Service.php:178 +msgid "La réservation à l'exemplaire est interdite" +msgstr "Item hold is forbidden" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:129 msgid "" "La sauvegarde a échoué. Les modifications n'ont pas été prises en compte." @@ -13668,6 +13777,10 @@ msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "Sum of divisions widths should not exceed site width." +#: ../../library/Class/MoteurRecherche.php:454 +msgid "La sélection courante est vide" +msgstr "Current selection does not contain any record" + #: ../../library/Class/CriteresRecherche.php:450 #: ../../library/Class/CriteresRecherche.php:454 #: ../../library/Class/CriteresRecherche.php:476 @@ -13675,6 +13788,7 @@ msgstr "Sum of divisions widths should not exceed site width." #: ../../library/Class/CriteresRecherche.php:478 #: ../../library/Class/CriteresRecherche.php:491 #: ../../library/Class/CriteresRecherche.php:492 +#: ../../library/Class/CriteresRecherche.php:518 msgid "La sélection ne contient aucune notice" msgstr "The selection does not contain any record" @@ -13814,6 +13928,7 @@ msgstr "Run at" #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:105 msgid "Lancer une recherche avec réinitialisation des paramètres" msgstr "Start search with reseted settings" @@ -13844,6 +13959,7 @@ msgstr "Language" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:305 msgid "Langue par défaut" msgstr "Default language" @@ -14256,6 +14372,7 @@ msgstr "The CMS displays albums as a paged list instead of a treeview" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:260 +#: ../../library/Class/AdminVar.php:269 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 " @@ -14559,6 +14676,7 @@ msgstr "Selected %s were correctly deleted" #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:307 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB." msgstr "Loaners can only connect with ILS webservice." @@ -15046,7 +15164,7 @@ msgstr "Password label" #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:344 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:337 -#: ../../library/Class/AdminVar.php:332 +#: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:341 msgid "Libellé pour la Dewey" msgstr "Label for Dewey" @@ -15055,7 +15173,7 @@ msgstr "Label for Dewey" #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:343 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:336 -#: ../../library/Class/AdminVar.php:331 +#: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:340 msgid "Libellé pour la PCDM4" msgstr "Label for Musical thesaurus" @@ -15141,6 +15259,7 @@ msgstr "Permalink" #: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:287 +#: ../../library/Class/AdminVar.php:296 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "Click here to unsubscribe to this newsletter: : {{URL}}" @@ -15622,7 +15741,7 @@ msgstr "Categories list" #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:342 #: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:337 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:335 -#: ../../library/Class/AdminVar.php:330 +#: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:339 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;" @@ -15636,7 +15755,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:355 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:350 #: ../../library/Class/AdminVar.php:351 ../../library/Class/AdminVar.php:348 -#: ../../library/Class/AdminVar.php:343 +#: ../../library/Class/AdminVar.php:343 ../../library/Class/AdminVar.php:352 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 => " @@ -15650,7 +15769,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:324 #: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:317 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:321 msgid "" "Liste des codes langue utilisées en plus du français séparées par des ;. " "Exemple: en;ro;es" @@ -15671,7 +15790,7 @@ msgstr "List of last RSS feeds" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:435 #: ../../library/Class/AdminVar.php:429 ../../library/Class/AdminVar.php:430 -#: ../../library/Class/AdminVar.php:424 +#: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:434 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "Geometries available for image resize on upload." @@ -15693,7 +15812,7 @@ msgstr "List of image extensions that can be selected to enrich content." #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423 #: ../../library/Class/AdminVar.php:428 ../../library/Class/AdminVar.php:431 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:426 -#: ../../library/Class/AdminVar.php:420 +#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:430 msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "Available file extensions on upload." @@ -15702,7 +15821,7 @@ msgstr "Available file extensions on upload." #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:438 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:433 -#: ../../library/Class/AdminVar.php:427 +#: ../../library/Class/AdminVar.php:427 ../../library/Class/AdminVar.php:437 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "List of file extensions that can be resized." @@ -15710,13 +15829,14 @@ msgstr "List of file extensions that can be resized." #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:441 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:436 -#: ../../library/Class/AdminVar.php:430 +#: ../../library/Class/AdminVar.php:430 ../../library/Class/AdminVar.php:440 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." msgstr "Selectable file extensions for content enrichment." #: ../../library/Class/ModeleFusion.php:79 +#: ../../library/Class/ModeleFusion.php:103 msgid "Liste des prêts" msgstr "Loan history" @@ -15936,6 +16056,7 @@ msgstr "MARC-XML" #: ../../library/Class/CriteresRecherche.php:973 #: ../../library/Class/CriteresRecherche.php:980 +#: ../../library/Class/CriteresRecherche.php:1006 #, php-format msgid "Ma recherche \"%s\"" msgstr "My search \"%s\"" @@ -16480,6 +16601,10 @@ msgstr "Message ..." msgid "Metadonnées" msgstr "Metadata" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:130 +msgid "Mettre dans un panier" +msgstr "Add to a basket" + #: ../../library/Class/Feature/List.php:163 msgid "" "Mettre en place un accès à des ressources libres de droit et fournir aux " @@ -16492,6 +16617,10 @@ msgstr "" msgid "Mettre en place une newsletter" msgstr "Manage newsletter" +#: ../../application/modules/opac/controllers/PanierController.php:212 +msgid "Mettre la sélection dans un panier" +msgstr "Add selection to a basket" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 #: ../../application/modules/admin/controllers/PremierChapitreController.php:143 #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 @@ -16832,6 +16961,7 @@ msgstr "Edit multimedia location \"%s\"" #: ../../library/ZendAfi/Controller/Plugin/Manager/SearchForm.php:28 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:481 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:508 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:59 msgid "Modifier" msgstr "Edit" @@ -17046,6 +17176,7 @@ msgstr "Edit the thumbnail" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:58 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:61 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:56 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:60 #, php-format msgid "Modifier la vignette de la notice \"%s\"" msgstr "Edit thumbnail \"%s\"" @@ -17386,22 +17517,26 @@ msgstr "Template \"%s\" deleted" #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:96 +#: ../../library/Class/ModeleFusion.php:120 msgid "Modèle par défaut : liste d'articles" msgstr "Default template: article list" #: ../../library/Class/ModeleFusion.php:98 +#: ../../library/Class/ModeleFusion.php:122 msgid "Modèle par défaut : liste de prêts" msgstr "Default template: loans list" #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:94 +#: ../../library/Class/ModeleFusion.php:118 msgid "Modèle par défaut : résultat de recherche" msgstr "Default template: search result" #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:95 +#: ../../library/Class/ModeleFusion.php:119 msgid "Modèle par défaut : une notice" msgstr "Default template: record" @@ -17437,6 +17572,7 @@ msgstr "Moderation alerts" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389 #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:383 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:378 +#: ../../library/Class/AdminVar.php:388 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" @@ -17450,6 +17586,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:377 +#: ../../library/Class/AdminVar.php:387 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -17881,6 +18018,7 @@ msgstr "Number per page" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:146 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:111 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:115 +#: ../../library/Class/Systeme/ModulesAppli.php:176 msgid "Ne pas afficher" msgstr "Do not show" @@ -18212,7 +18350,7 @@ msgstr "Library's name" #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:312 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:316 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "Bibliosurf library name (lowercase)" @@ -18356,7 +18494,7 @@ msgstr "Nb of patron reviews : %s" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:302 +#: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:311 msgid "Nombre d'avis maximum à afficher par utilisateur." msgstr "Max number of reviews to display per user." @@ -18441,6 +18579,7 @@ msgstr "Nombre d'évènements mis à jour : %s\n" #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:380 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:374 #: ../../library/Class/AdminVar.php:375 ../../library/Class/AdminVar.php:369 +#: ../../library/Class/AdminVar.php:379 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "Max number of chars allows in reviews." @@ -18450,6 +18589,7 @@ msgstr "Max number of chars allows in reviews." #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:376 #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:381 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "Max number of chars to display in reviews box." @@ -18459,6 +18599,7 @@ msgstr "Max number of chars to display in reviews box." #: ../../library/Class/AdminVar.php:378 ../../library/Class/AdminVar.php:381 #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:375 #: ../../library/Class/AdminVar.php:376 ../../library/Class/AdminVar.php:370 +#: ../../library/Class/AdminVar.php:380 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "Minimum caracters to type in reviews." @@ -18524,6 +18665,7 @@ msgstr "%s forms" #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:386 #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:391 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "# of days of validity of new registrations on the site" @@ -18682,6 +18824,7 @@ msgstr "Known thumbnails count" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:261 +#: ../../library/Class/AdminVar.php:270 msgid "Nombre maximum d'articles en sélection multiple" msgstr "Maximum number of articles for multiple selection" @@ -18834,6 +18977,7 @@ msgstr "Notes" #: ../../application/modules/opac/controllers/PanierController.php:249 #: ../../application/modules/opac/controllers/PanierController.php:249 +#: ../../application/modules/opac/controllers/PanierController.php:281 #, php-format msgid "Notice \"%s\" retirée du panier" msgstr "Record \"%s\" removed from selection" @@ -19012,6 +19156,7 @@ msgstr "New password" #: ../../library/Class/PanierNotice.php:29 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:5 #: ../../library/Class/PanierNotice.php:29 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:5 msgid "Nouveau panier" msgstr "New selection" @@ -19051,6 +19196,7 @@ msgstr "New result(s) for your search %s" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:56 msgid "Nouveauté" msgstr "New" @@ -19120,6 +19266,7 @@ msgstr "Novelty less than: " #: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:231 #, php-format msgid "Nouveautés du %s" msgstr "Novelties from %s" @@ -19163,6 +19310,7 @@ msgstr "New comment" #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:104 msgid "Nouvelle recherche" msgstr "New search" @@ -19265,7 +19413,7 @@ msgstr "Wrong card number" #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:320 #: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:313 -#: ../../library/Class/AdminVar.php:308 +#: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:317 msgid "" "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader." "readspeaker.com\">http://webreader.readspeaker.com</a>" @@ -19503,6 +19651,7 @@ msgstr "Order of divisions" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:138 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Ordre du panier" msgstr "Selection sort order" @@ -19669,9 +19818,14 @@ msgstr "Open page \"%s\" in a new tab" #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:145 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:162 msgid "Ouvrir le lien dans un nouvel onglet" msgstr "Open the link in a new tab" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:64 +msgid "Ouvrir le menu des actions de sélection." +msgstr "Open selection actions menu." + #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 msgid "Ouvrir le site dans un nouvel onglet" @@ -19721,6 +19875,7 @@ msgstr "PHP" #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:393 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:388 +#: ../../library/Class/AdminVar.php:398 msgid "PIWIK authentication token for widgets" msgstr "PIWIK authentication token for widgets" @@ -19757,6 +19912,7 @@ msgstr "Website home page" #: ../../library/Class/ModeleFusion.php:76 #: ../../library/Class/ModeleFusion.php:76 +#: ../../library/Class/ModeleFusion.php:100 msgid "Page d'articles" msgstr "Article page" @@ -19767,6 +19923,7 @@ msgstr "Authentication page" #: ../../library/Class/ModeleFusion.php:78 #: ../../library/Class/ModeleFusion.php:78 +#: ../../library/Class/ModeleFusion.php:102 msgid "Page de notice" msgstr "Record page" @@ -19846,6 +20003,7 @@ msgstr "Selection %s saved" #: ../../application/modules/opac/controllers/PanierController.php:196 #: ../../application/modules/opac/controllers/PanierController.php:196 +#: ../../application/modules/opac/controllers/PanierController.php:204 #, php-format msgid "Panier %s supprimé" msgstr "Selection # %s deleted" @@ -19857,6 +20015,7 @@ msgstr "Selection :" #: ../../application/modules/opac/controllers/PanierController.php:183 #: ../../application/modules/opac/controllers/PanierController.php:183 +#: ../../application/modules/opac/controllers/PanierController.php:191 #, php-format msgid "Panier courant : %s" msgstr "Current selection: %s" @@ -19868,6 +20027,7 @@ msgstr "Selection of Premier-Chapitre records" #: ../../application/modules/opac/controllers/PanierController.php:274 #: ../../application/modules/opac/controllers/PanierController.php:274 +#: ../../application/modules/opac/controllers/PanierController.php:306 #, php-format msgid "Panier n°%s introuvable" msgstr "Selection n°%s not found" @@ -20186,8 +20346,13 @@ msgstr "Share \"%s\" on %s" msgid "Partager \"%s\" sur les réseaux sociaux" msgstr "Share \"%s\" on social networks" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:155 +msgid "Partager le résultat par email" +msgstr "Share result by E-mail" + #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:154 msgid "Partager par email" msgstr "Share by E-mail" @@ -20457,6 +20622,7 @@ msgstr "People were present at \"%s\" activity session at %s" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:139 +#: ../../library/Class/CriteresRecherche.php:140 msgid "Pertinence" msgstr "Relevance" @@ -20772,6 +20938,7 @@ msgstr "Point" #: ../../library/Class/AdminVar.php:495 ../../library/Class/AdminVar.php:489 #: ../../library/Class/AdminVar.php:490 #: ../../library/ZendAfi/View/Helper/TagListeCoches.php:278 +#: ../../library/Class/AdminVar.php:497 msgid "Portail" msgstr "Portal" @@ -20787,7 +20954,7 @@ msgstr "Portal" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:250 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:156 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Position" msgstr "Location" @@ -20803,7 +20970,7 @@ msgstr "Pager position" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Position de la pagination en résultat de recherche" msgstr "Pager position on search results page" @@ -21107,6 +21274,7 @@ msgstr "Data profile %s (%d) not set or misconfigured" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:292 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -21565,6 +21733,18 @@ msgstr "Preview of the selection %s in the search result" msgid "Prêt" msgstr "Loan" +#: ../../library/Class/Feature/List.php:475 +msgid "Prêt Numérique en Bibliothqe avec diliCOM" +msgstr "Digital loan by Dilicom" + +#: ../../library/Class/Feature/List.php:476 +msgid "" +"Prêt Numérique en Bibliothèque (PNB) est un dispositif interprofessionnel " +"d'accès à la lecture numérique en bibliothèques publiques." +msgstr "" +"Prêt Numérique en Bibliothèque (PNB) est un dispositif interprofessionnel " +"d'accès à la lecture numérique en bibliothèques publiques." + #: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 msgid "Prêt introuvable" msgstr "Unknown loan" @@ -22348,6 +22528,7 @@ msgstr "Digital ressources" #: ../../library/Class/Codification.php:232 #: ../../library/Class/Codification.php:232 #: ../../library/Class/Profil/Preferences/SearchResult.php:54 +#: ../../library/Class/Feature/List.php:479 msgid "Ressources numériques" msgstr "Digital ressources" @@ -22374,6 +22555,7 @@ msgstr "Limited to:" #: ../../library/Class/ModeleFusion.php:77 #: ../../library/Class/ModeleFusion.php:77 +#: ../../library/Class/ModeleFusion.php:101 msgid "Resultats de recherche" msgstr "Search results" @@ -22395,6 +22577,10 @@ msgstr "Remove facet : \"%s\"" msgid "Retirer le critère: %s" msgstr "Remove criteria : \"%s\"" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:98 +msgid "Retirer toute les notices présente dans votre sélection" +msgstr "Remove all records from current selection" + #: ../../library/Class/WebService/SIGB/Dynix/TitleInfoResponseReader.php:172 msgid "Retiré" msgstr "Withdraw" @@ -22571,6 +22757,7 @@ msgstr "Back to libraries list" #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:99 msgid "Retour à la recherche initiale" msgstr "Back to original search" @@ -23298,6 +23485,7 @@ msgstr "Section" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:180 #, php-format msgid "Section: %s" msgstr "Sections: %s" @@ -23372,6 +23560,7 @@ msgstr "OAI server" #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:267 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:280 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:289 +#: ../../library/Class/WebService/SIGB/AbstractRESTService.php:297 msgid "Service indisponible" msgstr "Service unavalaible" @@ -23493,6 +23682,7 @@ msgstr "Server Sets OAI \"La Cité de la Musique\" harvesting" #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:398 ../../library/Class/AdminVar.php:400 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:395 +#: ../../library/Class/AdminVar.php:405 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -23992,6 +24182,7 @@ msgstr "Suggestions not compliant with this connector" #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 #: ../../library/ZendAfi/View/Helper/Search/Header.php:136 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:127 msgid "Suggérer un achat" msgstr "Suggest a Purchase" @@ -24102,7 +24293,7 @@ msgstr "Delete hold" #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:316 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:320 msgid "" "Supprime l'affichage du lien d'enregistrement dans les différents " "formulaires de connexion et interdit l'enregistrement d'utilisateurs" @@ -24234,6 +24425,7 @@ msgstr "Remove from my favorites" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:67 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:71 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:66 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #, php-format msgid "Supprimer et re-générer la vignette de la notice \"%s\"" msgstr "Delete and re-generate thumbnail of record \"%s\"" @@ -24441,6 +24633,19 @@ msgstr "Account securisation" msgid "Sélection" msgstr "Selection" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:58 +msgid "Sélection : " +msgstr "Selection: " + +#: ../../application/modules/opac/controllers/PanierController.php:229 +#, php-format +msgid "Sélection ajoutée dans le panier \"%s\"" +msgstr "Selection added to basket \"%s\"" + +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +msgid "Sélection courante" +msgstr "Current selection" + #: ../../library/Class/MultiSelection/Album.php:49 #: ../../library/Class/MultiSelection/Album.php:49 msgid "Sélection d'albums" @@ -24498,6 +24703,11 @@ msgstr "Select" msgid "Sélectionner \"%s\"" msgstr "Select \"%s\"" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:34 +#, php-format +msgid "Sélectionner \"%s\" pour impression, export ou sauvegarde" +msgstr "Add \"%s\" in your selection to print, export or save" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 msgid "Sélectionner la bibliothèque" @@ -24508,6 +24718,14 @@ msgstr "Select library" msgid "Sélectionner les groupes destinaires" msgstr "Select recipients groups" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:151 +msgid "Sélectionner tous les résultats" +msgstr "Select all records" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:115 +msgid "Sélectionner toute la page" +msgstr "Select this page" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 msgid "Sélectionner un autre panier" @@ -24651,7 +24869,7 @@ msgstr "Size : :" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:428 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:423 -#: ../../library/Class/AdminVar.php:417 +#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:427 msgid "Taille du dossier userfiles en méga octets." msgstr "Userfiles folder size (mb)." @@ -24853,7 +25071,7 @@ msgstr "Help text" #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:322 #: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:315 -#: ../../library/Class/AdminVar.php:310 +#: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:319 msgid "Texte d'aide affiché dans la fiche abonné" msgstr "Patron form help text" @@ -24883,6 +25101,7 @@ msgstr "Confirmation text" #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:297 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 " @@ -24897,6 +25116,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:295 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 " @@ -24916,7 +25136,7 @@ msgstr "Breadcrumb text" #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:312 #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:310 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:314 msgid "Texte visible après l'envoi d'e-mail de demande de réservation." msgstr "Text displayed upon holding confirmation email sent." @@ -24925,7 +25145,7 @@ msgstr "Text displayed upon holding confirmation email sent." #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:311 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:309 -#: ../../library/Class/AdminVar.php:304 +#: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:313 msgid "Texte visible par l'internaute après son inscription." msgstr "Text displayed upon registration." @@ -25196,6 +25416,7 @@ msgstr "Random" #: ../../library/ZendAfi/Form/Configuration/Loans.php:30 #: ../../library/Class/Profil/Preferences/Loans.php:396 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:54 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Titre" msgstr "Title" @@ -25774,6 +25995,7 @@ msgstr "Forced doc type: %s" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:202 #: ../../library/ZendAfi/Form/AdvancedSearch.php:65 #: ../../library/ZendAfi/View/Helper/LegacyAdvancedSearch.php:123 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Type de document" msgstr "Doc type" @@ -26195,7 +26417,7 @@ msgstr "Author's wikepedia URL" #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:331 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:329 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:333 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "Search URL" @@ -26258,7 +26480,7 @@ msgstr "URL to publish system status report (set to 0 to disable)" #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:332 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:327 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:325 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:329 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "Babelio URL" @@ -26391,6 +26613,7 @@ msgstr "An email just sent to you with a reset password link." #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:328 +#: ../../library/Class/ModeleFusion.php:353 #, php-format msgid "Un modèle a déjà le même nom : %s" msgstr "A template with the same name already exists : %s" @@ -26623,7 +26846,7 @@ msgstr "Direct access URL" #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:341 #: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:334 -#: ../../library/Class/AdminVar.php:329 +#: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:338 msgid "Url d'import d'un agenda TYPO3" msgstr "TYPO3 feed URL" @@ -26646,6 +26869,7 @@ msgstr "search URL" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:418 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:415 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 +#: ../../library/Class/AdminVar.php:420 msgid "Url du connecteur Le Social" msgstr "Le Social URL" @@ -27111,11 +27335,13 @@ msgstr "Please activate this resource to be able to manage its access rights" #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 +#: ../../application/modules/opac/controllers/PanierController.php:247 msgid "Veuillez choisir un panier" msgstr "Choose a selection" #: ../../application/modules/opac/controllers/PanierController.php:211 #: ../../application/modules/opac/controllers/PanierController.php:211 +#: ../../application/modules/opac/controllers/PanierController.php:243 msgid "Veuillez choisir une notice" msgstr "Please select a record" @@ -27223,6 +27449,10 @@ msgstr "Check for the file size. Can not be more than %s" msgid "Vider" msgstr "Empty" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:94 +msgid "Vider la sélection" +msgstr "Empty selection" + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 @@ -27497,6 +27727,10 @@ msgstr "Show request" msgid "Voir la réponse." msgstr "See the answer." +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:162 +msgid "Voir la sélection" +msgstr "Show selection" + #: ../../application/modules/admin/views/scripts/feature/index.phtml:64 #: ../../application/modules/admin/views/scripts/feature/index.phtml:75 #, php-format @@ -27538,6 +27772,7 @@ msgstr "See search result" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:66 msgid "Voir le résultat de recherche complet" msgstr "Display complete search result" @@ -28658,6 +28893,7 @@ msgstr "You do not have sufficient rights to edit this selection" #: ../../application/modules/opac/controllers/PanierController.php:221 #: ../../application/modules/opac/controllers/PanierController.php:221 +#: ../../application/modules/opac/controllers/PanierController.php:253 #, php-format msgid "Vous n'avez pas le droit de modifier le panier %s" msgstr "You do not have sufficient rights to edit selection %s" @@ -28967,6 +29203,20 @@ msgstr "Checked" msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "Multi-site items booking for Koha ws" +#: ../../library/Class/AdminVar.php:356 +msgid "" +"WS KOHA : Réservation d'exemplaires pour les multi sites à l'exemplaire. " +"(Uniquement \"HoldItem\")" +msgstr "KOHA WS: Hold for multi site by item. (Only call ILSDI \"HoldItem\")" + +#: ../../library/Class/AdminVar.php:357 +msgid "" +"WS KOHA : Tentative de réservation à l'exemplaires puis à la notice. " +"(\"HoldItem\" puis \"HoldTitle\")" +msgstr "" +"KOHA WS: Try to hold by item then by record. (ILSDI \"HoldItem\" then \"" +"HoldTitle\")" + #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 msgid "Web" @@ -29324,22 +29574,29 @@ msgstr "copy" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:38 #, php-format msgid "dans la serie : %s" msgstr "in the serie : %s" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:32 #, php-format msgid "dans le catalogue : %s" msgstr "in catalog : %s" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:35 #, php-format msgid "dans le panier : %s" msgstr "in selection : %s" +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:30 +msgid "dans ma sélection" +msgstr "in my selection" + #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 msgid "dans_panier" @@ -30492,6 +30749,8 @@ msgstr "for %smn" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 +#: ../../library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php:69 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #, php-format msgid "pour : %s" msgstr "for: %s" @@ -31811,9 +32070,6 @@ msgstr "listen" #~ msgid "Mode de sélection" #~ msgstr "Selection mode" -#~ msgid "Mode sélection" -#~ msgstr "Selection mode" - #~ msgid "Modifer les informations du panier" #~ msgstr "Edit information selection" @@ -31881,9 +32137,6 @@ msgstr "listen" #~ msgid "Notice" #~ msgstr "Record" -#~ msgid "Notice \"%s\" ajoutée au panier \"%s\"" -#~ msgstr "Record \"%s\" removed from the selection \"%s\"" - #~ msgid "Nouvelle inscription à la formation \"%s\"" #~ msgstr "Subscription to training \"%s\"" @@ -32165,9 +32418,6 @@ msgstr "listen" #~ msgid "Visualisations de notices" #~ msgstr "Records display" -#~ msgid "Voir la sélection" -#~ msgstr "Show selection" - #~ msgid "Voir les " #~ msgstr "See " diff --git a/library/translation/es.mo b/library/translation/es.mo index f40eeeebd2cffb1b0462fd2029f337f0d8c42c7c..8a7e0b2f82ceaf59a216d8aa38488b1657f6a201 100644 Binary files a/library/translation/es.mo and b/library/translation/es.mo differ diff --git a/library/translation/es.po b/library/translation/es.po index 1622ccd092acfb1b12f3b7eb139cffa57167adc7..10a7bca12d9aebc3606f080c40100147a60bc45c 100644 --- a/library/translation/es.po +++ b/library/translation/es.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: Bokeh 2018\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-09-24 14:45+0200\n" +"POT-Creation-Date: 2018-10-08 09:33+0200\n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,6 +24,7 @@ msgstr " (%d de retraso)" #: ../../application/modules/opac/controllers/RechercheController.php:142 #: ../../application/modules/opac/controllers/RechercheController.php:139 #: ../../application/modules/opac/controllers/RechercheController.php:148 +#: ../../application/modules/opac/controllers/RechercheController.php:154 msgid " (recherche élargie triée par pertinence)" msgstr " ( Búsqueda extendida ordenada por relevancia)" @@ -59,6 +60,8 @@ msgstr " Cambiar mi" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:195 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:217 msgid " OU " msgstr " O " @@ -252,6 +255,7 @@ msgstr " el boletÃn de noticias:" #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:250 +#: ../../library/Class/ModeleFusion.php:275 msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "!!error en el modelo, atributo indefinido:" @@ -321,6 +325,7 @@ msgstr "%d %B %Y %H:%M:%S" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:232 msgid "%d %B %Y" msgstr "%d %B %Y" @@ -437,6 +442,7 @@ msgstr "%s%s : %s" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:32 #, fuzzy, php-format msgid "%s : Documents %s" msgstr "Documentos emitidos" @@ -477,6 +483,15 @@ msgstr "Añadir una playa abierta" msgid "%s : plages horaire de réservation multimedia" msgstr "%s: horario para el uso de recursos multimedia" +#: ../../library/Class/Feature/List.php:465 +#, php-format +msgid "" +"%s Historiquement constitué autour de la musique, diMusic propose un " +"catalogue composé d'1 million de titres où toutes les esthétiques musicales " +"sont représentées, du métal au classique en passant par le rap, la chanson " +"française, le reggae, l'électro ou encore la musique pour enfants." +msgstr "" + #: ../../library/Class/FileManager/FileSystem.php:114 #, php-format msgid "%s Ko" @@ -1067,6 +1082,7 @@ msgstr "Este servicio no puede pruebarse" #: ../../library/Class/AdminVar.php:446 ../../library/Class/AdminVar.php:451 #: ../../library/Class/AdminVar.php:454 ../../library/Class/AdminVar.php:448 #: ../../library/Class/AdminVar.php:449 ../../library/Class/AdminVar.php:443 +#: ../../library/Class/AdminVar.php:453 msgid "API" msgstr "API" @@ -1076,6 +1092,7 @@ msgstr "API" #: ../../library/Class/AdminVar.php:445 ../../library/Class/AdminVar.php:450 #: ../../library/Class/AdminVar.php:453 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:448 ../../library/Class/AdminVar.php:442 +#: ../../library/Class/AdminVar.php:452 msgid "API utilisée pour les cartes statiques" msgstr "API usado para mapas estáticos" @@ -1238,6 +1255,7 @@ msgstr "Aceptada" #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:43 #: ../../library/Class/MoteurRecherche.php:611 #: ../../library/ZendAfi/View/Helper/ComboProfils.php:107 +#: ../../library/Class/MoteurRecherche.php:617 msgid "Accueil" msgstr "Inicio" @@ -1302,6 +1320,7 @@ msgstr "Formulario de búsqueda" #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:100 msgid "Accéder au formulaire de recherche pré-rempli avec les critères actuels" msgstr "Acceda al formulario de búsqueda con los criterios actuales" @@ -1492,7 +1511,7 @@ msgstr "Activación de la disponibilidad en el resultado de búsqueda" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:358 #: ../../library/Class/AdminVar.php:361 ../../library/Class/AdminVar.php:353 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:355 msgid "Activation de la navigation collaborative" msgstr "Activación de la navegación colaborativa" @@ -1508,7 +1527,7 @@ msgstr "Activación del recurso digital PlanetNemo" #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:331 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:335 msgid "Activation des boîtes dans les menus" msgstr "Activación de las bloques en los menús" @@ -1527,6 +1546,7 @@ msgstr "Activación de las funciones avancadas del télefono" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:270 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:272 msgid "Activation des formulaires" msgstr "Activación de los formularios" @@ -1547,7 +1567,7 @@ msgstr "Activación de los formularios" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:414 #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:409 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:413 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1576,6 +1596,11 @@ msgstr "Activar la disposición responsive" msgid "Activer la redirection vers la liste d'articles" msgstr "Activar la redirección a la lista de artÃculos" +#: ../../library/Class/AdminVar.php:263 +#, fuzzy +msgid "Activer la sélection multiple de notices dans le résultat de recherche" +msgstr "Activación de la disponibilidad en el resultado de búsqueda" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 #, fuzzy @@ -1633,7 +1658,7 @@ msgstr "Activar la biblioteca digital" #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:325 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:323 -#: ../../library/Class/AdminVar.php:318 +#: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:327 #, fuzzy msgid "Activer ou désactiver le module d'activité" msgstr "Activar el módulo de formación" @@ -2050,6 +2075,7 @@ msgstr "Fijar" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:45 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:97 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:59 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:44 #, fuzzy, php-format msgid "Afficher \"%s\"" msgstr "Fijar" @@ -2066,21 +2092,25 @@ msgstr "Ver Agenda" #: ../../library/Class/Systeme/ModulesAppli.php:179 #: ../../library/Class/Systeme/ModulesAppli.php:179 +#: ../../library/Class/Systeme/ModulesAppli.php:178 msgid "Afficher au dessous des facettes" msgstr "Vea a continuación las facetas" #: ../../library/Class/Systeme/ModulesAppli.php:181 #: ../../library/Class/Systeme/ModulesAppli.php:181 +#: ../../library/Class/Systeme/ModulesAppli.php:180 msgid "Afficher au dessous des résultats" msgstr "Consulte a continuación los resultados" #: ../../library/Class/Systeme/ModulesAppli.php:178 #: ../../library/Class/Systeme/ModulesAppli.php:178 +#: ../../library/Class/Systeme/ModulesAppli.php:177 msgid "Afficher au dessus des facettes" msgstr "Ver las facetas anteriores" #: ../../library/Class/Systeme/ModulesAppli.php:180 #: ../../library/Class/Systeme/ModulesAppli.php:180 +#: ../../library/Class/Systeme/ModulesAppli.php:179 msgid "Afficher au dessus des résultats" msgstr "Ver resultados anteriores" @@ -2328,6 +2358,12 @@ msgstr "Ver todas las ediciones de este documento" msgid "Afficher un nouveau domaine" msgstr "Pruebe con una nueva selección" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:169 +msgid "" +"Afficher un résultat de recherche incluant uniquement les notices de votre " +"sélection" +msgstr "" + #: ../../library/Class/Systeme/ModulesNotice.php:41 #: ../../library/Class/Systeme/ModulesNotice.php:41 msgid "Afficher une ligne par exemplaire" @@ -2485,6 +2521,7 @@ msgstr "Añadir a la cesta" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:32 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:36 #, fuzzy, php-format msgid "Ajouter \"%s\" dans un panier" msgstr "Añadir a la cesta" @@ -2510,6 +2547,7 @@ msgstr "Método de selección de los usuarios" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:26 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:30 msgid "Ajouter au panier" msgstr "Añadir a la cesta" @@ -2518,7 +2556,7 @@ msgstr "Añadir a la cesta" #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:356 #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:351 #: ../../library/Class/AdminVar.php:352 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:344 +#: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:353 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "Añadir automáticamente una bloque cesta en la division flotante" @@ -2554,6 +2592,11 @@ msgstr "Añadir registro a la" msgid "Ajouter les utilisateurs sélectionnés" msgstr "Agregar usuarios seleccionados" +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:20 +#, fuzzy, php-format +msgid "Ajouter ma sélection au panier \"%s\" ?" +msgstr "Añadir a la cesta" + #: ../../library/Class/MultiSelection/Album.php:113 #: ../../library/Class/MultiSelection/Album.php:113 #, php-format @@ -2568,6 +2611,26 @@ msgid "Ajouter tous les articles de la catégorie %s à la sélection d'articles msgstr "" "Añadir todos los artÃculos e la categorÃa %s a la selección de artÃculos" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:119 +#, fuzzy +msgid "" +"Ajouter toutes les notices de la page de résultat courante dans votre " +"sélection" +msgstr "" +"Añadir todos los artÃculos e la categorÃa %s a la selección de artÃculos" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:133 +#, fuzzy +msgid "Ajouter toutes les notices de la sélection à un panier" +msgstr "" +"Añadir todos los artÃculos e la categorÃa %s a la selección de artÃculos" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:155 +#, fuzzy +msgid "Ajouter toutes les notices du résultat dans votre sélection" +msgstr "" +"Añadir todos los artÃculos e la categorÃa %s a la selección de artÃculos" + #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 msgid "Ajouter un agenda" @@ -2610,6 +2673,7 @@ msgstr "Añadir Catálogo" #: ../../application/modules/opac/controllers/PanierController.php:204 #: ../../application/modules/opac/controllers/PanierController.php:204 +#: ../../application/modules/opac/controllers/PanierController.php:236 #, fuzzy msgid "Ajouter un document dans un panier" msgstr "Agregar una registro a la cesta" @@ -3251,6 +3315,7 @@ msgstr "La publicación de años - desde" #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/CriteresRecherche.php:144 +#: ../../library/Class/CriteresRecherche.php:145 msgid "Année de publication" msgstr "Fecha de publicación" @@ -3561,6 +3626,7 @@ msgstr "Tipo de documento" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125 #: ../../library/ZendAfi/Form/Album.php:234 #: ../../library/ZendAfi/Form/Admin/Library.php:270 +#: ../../library/Class/ModeleFusion.php:99 msgid "Aucun" msgstr "No" @@ -3750,6 +3816,7 @@ msgstr "Ningún resultado en mis favoritos" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67 #: ../../library/Class/MoteurRecherche.php:485 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:60 +#: ../../library/Class/MoteurRecherche.php:491 msgid "Aucun résultat trouvé" msgstr "No hay resultados" @@ -4091,6 +4158,7 @@ msgstr "No se encontraron videos" #: ../../library/Class/CriteresRecherche.php:143 #: ../../library/Class/Profil/Preferences/Loans.php:453 #: ../../library/Class/Profil/Preferences/Loans.php:454 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Auteur" msgstr "Autor" @@ -4220,7 +4288,7 @@ msgstr "Autorización no especificada" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:310 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" msgstr "" "Permitir el acceso a las API de OAUTH a través de HTTP (no seguro: obsoleto" @@ -4727,6 +4795,7 @@ msgstr "Biblioteca Destino" #: ../../library/Class/Feature/List.php:368 #: ../../library/Class/Feature/List.php:166 #: ../../library/Class/Feature/List.php:413 +#: ../../library/Class/Feature/List.php:469 msgid "Bibliothèque numérique" msgstr "Biblioteca Digital" @@ -6036,6 +6105,8 @@ msgstr "Campos para mostrar" #: ../../application/modules/opac/controllers/PanierController.php:168 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:13 #: ../../application/modules/opac/controllers/PanierController.php:168 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:13 +#: ../../application/modules/opac/controllers/PanierController.php:176 msgid "Changer de panier" msgstr "Cambiar Basket" @@ -6083,7 +6154,7 @@ msgstr "Ruta" #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:357 #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:352 #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:345 +#: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:354 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "Ruta a las máscaras personalizada, relativas a %s" @@ -6230,7 +6301,7 @@ msgstr "Clave" #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:310 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:312 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</" @@ -6281,7 +6352,7 @@ msgstr "Haga clic aquà para cambiar" #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:321 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:314 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:318 msgid "" "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/" "home\">http://webthumb.bluga.net/home</a>" @@ -6377,7 +6448,7 @@ msgstr "Llave obra" #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:326 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:330 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "Clave pública para cifrado de datos AFI-Multimedia" @@ -6386,7 +6457,7 @@ msgstr "Clave pública para cifrado de datos AFI-Multimedia" #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:335 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:328 -#: ../../library/Class/AdminVar.php:323 +#: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:332 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "Clave pública para el cifrado de datos Aesis Webkiosk" @@ -6715,7 +6786,7 @@ msgstr "Comprima la imagen \"%s \" manteniendo las mismas dimensiones." #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:444 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:439 -#: ../../library/Class/AdminVar.php:433 +#: ../../library/Class/AdminVar.php:433 ../../library/Class/AdminVar.php:443 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -6835,6 +6906,7 @@ msgstr "Moderación de revisar los registros" #: ../../application/modules/opac/controllers/RechercheController.php:157 #: ../../application/modules/opac/controllers/RechercheController.php:154 #: ../../application/modules/opac/controllers/RechercheController.php:163 +#: ../../application/modules/opac/controllers/RechercheController.php:169 #, fuzzy msgid "Configuration de la recherche" msgstr "Mostrar resultados de búsqueda" @@ -7085,6 +7157,11 @@ msgstr "Conectores" msgid "Connecteur StoryPlay*r" msgstr "Conectores" +#: ../../library/Class/Feature/List.php:464 +#, fuzzy +msgid "Connecteur diMusic" +msgstr "Conectores" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 msgid "Connecteurs" @@ -7101,6 +7178,7 @@ msgstr "Iniciar sesión" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:407 #: ../../library/Class/AdminVar.php:399 ../../library/Class/AdminVar.php:401 #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:406 msgid "" "Conserve le dernier fichier transmis par le SIGB pour chaque notice. Celui-" "ci est téléchargeable à partir de l'Inspecteur Gadget." @@ -7148,6 +7226,7 @@ msgstr "Constitución del plan de acceso" #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 #: ../../library/Class/CriteresRecherche.php:147 +#: ../../library/Class/CriteresRecherche.php:148 msgid "Consultation" msgstr "Consulta" @@ -7270,6 +7349,7 @@ msgstr "Contenido del aviso cambiaron" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:280 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:282 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -7285,6 +7365,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:283 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" @@ -7299,6 +7380,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:283 #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:284 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -7312,6 +7394,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:413 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:405 +#: ../../library/Class/AdminVar.php:415 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -7324,6 +7407,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:407 ../../library/Class/AdminVar.php:412 #: ../../library/Class/AdminVar.php:415 ../../library/Class/AdminVar.php:409 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:404 +#: ../../library/Class/AdminVar.php:414 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -7753,6 +7837,7 @@ msgstr "Crear una nueva bloque de luz" #: ../../application/modules/opac/controllers/PanierController.php:122 #: ../../application/modules/opac/controllers/PanierController.php:122 +#: ../../application/modules/opac/controllers/PanierController.php:125 #, fuzzy msgid "Créer un panier" msgstr "Crear una nueva bloque de luz" @@ -7979,6 +8064,7 @@ msgstr "Fecha de nascimiento" #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 #: ../../library/Class/CriteresRecherche.php:146 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:301 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Date de nouveauté" msgstr "Fecha de novedad" @@ -8022,6 +8108,7 @@ msgstr "Fecha de sugerencia" #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:405 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:394 +#: ../../library/Class/AdminVar.php:404 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" "Fecha de la última importación de ususarios (modificada por el cosmograma)" @@ -8031,7 +8118,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:321 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:325 msgid "Date du dernier vidage manuel du cache" msgstr "Fecha del último vaciado manual del caché" @@ -8090,6 +8177,7 @@ msgstr "de B a A" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:309 msgid "" "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est " "désactivé." @@ -8787,6 +8875,7 @@ msgstr "Temas de búsqueda" #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:448 +#: ../../library/Class/MoteurRecherche.php:449 msgid "Domaine non paramétré" msgstr "Selección no parametrizada" @@ -9211,7 +9300,7 @@ msgstr "Desactivar la tarea" #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:311 -#: ../../library/Class/AdminVar.php:306 +#: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:315 msgid "Désactiver pour passer le site en maintenance" msgstr "Poner el portal en mantenimiento" @@ -9230,6 +9319,7 @@ msgstr "Deshabilitat" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:390 #: ../../library/Class/AdminVar.php:382 ../../library/Class/AdminVar.php:384 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:389 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" @@ -9243,6 +9333,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:388 ../../library/Class/AdminVar.php:391 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:385 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:390 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -9909,11 +10000,13 @@ msgid "Enregistrer comme filtres par défaut" msgstr "Guardar como filtros por defecto" #: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:169 #, fuzzy msgid "Enregistrer ma recherche" msgstr "Iniciar la búsqueda" #: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:170 #, fuzzy msgid "Enregistrer ma recherche dans mes favoris" msgstr "Ampliar su búsqueda a todas las palabras" @@ -10110,6 +10203,7 @@ msgstr "Email" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:137 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:128 msgid "Envoyer une demande d'achat de document" msgstr "Enviar una sugerencia de compra" @@ -10942,7 +11036,7 @@ msgstr "Facilita la indexación de su sitio en los motores de búsqueda" #: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439 #: ../../library/Class/AdminVar.php:444 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:442 -#: ../../library/Class/AdminVar.php:436 +#: ../../library/Class/AdminVar.php:436 ../../library/Class/AdminVar.php:446 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -11359,7 +11453,7 @@ msgstr "Fondos" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:297 +#: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:306 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -11779,6 +11873,7 @@ msgstr "La generación actual" #: ../../application/modules/admin/views/scripts/print/index.phtml:8 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:65 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:69 #, fuzzy msgid "Générer" msgstr "General" @@ -12144,6 +12239,7 @@ msgstr "Icono del explorador" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:416 #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:411 +#: ../../library/Class/AdminVar.php:421 msgid "Id du connecteur Le Social" msgstr "Connector Id The Social" @@ -12788,15 +12884,27 @@ msgstr "Dejar de recibir el boletÃn de noticias:" #: ../../library/Class/Profil/Preferences/LoansHistory.php:103 #: ../../library/Class/Profil/Preferences/Loans.php:258 #: ../../library/Class/Profil/Preferences/Loans.php:259 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:24 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:140 msgid "Imprimer" msgstr "Imprimir" +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:25 +#, fuzzy, php-format +msgid "Imprimer \"%s\"" +msgstr "Retire" + #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #, fuzzy, php-format msgid "Imprimer %s" msgstr "Retire" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:141 +#, fuzzy +msgid "Imprimer le résultat" +msgstr "Número de resultados para mostrar" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8 #: ../../library/Class/IntProfilDonnees.php:83 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 @@ -13176,7 +13284,7 @@ msgstr "Agregar una registro a la cesta" #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:334 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:332 -#: ../../library/Class/AdminVar.php:327 +#: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:336 msgid "Interdire la modification de la fiche abonne" msgstr "Convertir la ficha de usuario a solo lectura" @@ -13328,6 +13436,7 @@ msgstr "Javascript" #: ../../library/Class/AdminVar.php:395 ../../library/Class/AdminVar.php:398 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:397 msgid "Javascript code for statistics" msgstr "Código Javascript para estadÃsticas" @@ -13337,6 +13446,7 @@ msgstr "Código Javascript para estadÃsticas" #: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:298 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "Ya no quiero recibir este boletÃn" @@ -14122,6 +14232,10 @@ msgstr "La solicitud debe ser POST" msgid "La règle n'est pas de la forme 686$a" msgstr "La regla no es de la forma 686$a" +#: ../../library/Class/WebService/SIGB/Koha/Service.php:178 +msgid "La réservation à l'exemplaire est interdite" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:129 msgid "" "La sauvegarde a échoué. Les modifications n'ont pas été prises en compte." @@ -14168,6 +14282,11 @@ msgid "" msgstr "" "La suma de los anchos de las partes no debe exceder el ancho del sitio." +#: ../../library/Class/MoteurRecherche.php:454 +#, fuzzy +msgid "La sélection courante est vide" +msgstr "La selección no contiene ningún registro" + #: ../../library/Class/CriteresRecherche.php:450 #: ../../library/Class/CriteresRecherche.php:454 #: ../../library/Class/CriteresRecherche.php:476 @@ -14175,6 +14294,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:478 #: ../../library/Class/CriteresRecherche.php:491 #: ../../library/Class/CriteresRecherche.php:492 +#: ../../library/Class/CriteresRecherche.php:518 msgid "La sélection ne contient aucune notice" msgstr "La selección no contiene ningún registro" @@ -14322,6 +14442,7 @@ msgstr "Enviar todas las" #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:105 msgid "Lancer une recherche avec réinitialisation des paramètres" msgstr "Iniciar una búsqueda con todos los parámetros por defecto" @@ -14352,6 +14473,7 @@ msgstr "Idioma" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:305 #, fuzzy msgid "Langue par défaut" msgstr "Permisos por defecto" @@ -14785,6 +14907,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:260 +#: ../../library/Class/AdminVar.php:269 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 " @@ -15103,6 +15226,7 @@ msgstr "Los %s seleccionados han sido eliminados" #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:307 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB." msgstr "" "Los suscriptores pueden conectarse solo a través del servicio web de IMS." @@ -15623,7 +15747,7 @@ msgstr "Confirmar Contraseña" #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:344 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:337 -#: ../../library/Class/AdminVar.php:332 +#: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:341 msgid "Libellé pour la Dewey" msgstr "Etiqueta para Dewey" @@ -15632,7 +15756,7 @@ msgstr "Etiqueta para Dewey" #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:343 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:336 -#: ../../library/Class/AdminVar.php:331 +#: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:340 msgid "Libellé pour la PCDM4" msgstr "Etiqueta para PCDM4" @@ -15719,6 +15843,7 @@ msgstr "Permalink" #: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:287 +#: ../../library/Class/AdminVar.php:296 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "Enlace para darse de baja de este boletÃn: {{URL}}" @@ -16243,7 +16368,7 @@ msgstr "Lista de categorÃas" #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:342 #: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:337 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:335 -#: ../../library/Class/AdminVar.php:330 +#: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:339 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;" @@ -16258,7 +16383,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:355 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:350 #: ../../library/Class/AdminVar.php:351 ../../library/Class/AdminVar.php:348 -#: ../../library/Class/AdminVar.php:343 +#: ../../library/Class/AdminVar.php:343 ../../library/Class/AdminVar.php:352 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 => " @@ -16273,7 +16398,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:324 #: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:317 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:321 msgid "" "Liste des codes langue utilisées en plus du français séparées par des ;. " "Exemple: en;ro;es" @@ -16296,7 +16421,7 @@ msgstr "Ultimos RSS" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:435 #: ../../library/Class/AdminVar.php:429 ../../library/Class/AdminVar.php:430 -#: ../../library/Class/AdminVar.php:424 +#: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:434 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -16322,7 +16447,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423 #: ../../library/Class/AdminVar.php:428 ../../library/Class/AdminVar.php:431 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:426 -#: ../../library/Class/AdminVar.php:420 +#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:430 #, fuzzy msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "Lista des conectores disponibles" @@ -16332,7 +16457,7 @@ msgstr "Lista des conectores disponibles" #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:438 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:433 -#: ../../library/Class/AdminVar.php:427 +#: ../../library/Class/AdminVar.php:427 ../../library/Class/AdminVar.php:437 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "Lista de extensiones de archivos que se pueden cambiar de tamaño." @@ -16340,7 +16465,7 @@ msgstr "Lista de extensiones de archivos que se pueden cambiar de tamaño." #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:441 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:436 -#: ../../library/Class/AdminVar.php:430 +#: ../../library/Class/AdminVar.php:430 ../../library/Class/AdminVar.php:440 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." @@ -16348,6 +16473,7 @@ msgstr "" "Lista de extensiones que se pueden seleccionar para enriquecer el contenido." #: ../../library/Class/ModeleFusion.php:79 +#: ../../library/Class/ModeleFusion.php:103 #, fuzzy msgid "Liste des prêts" msgstr "Historial de préstamos" @@ -16571,6 +16697,7 @@ msgstr "MARC-XML" #: ../../library/Class/CriteresRecherche.php:973 #: ../../library/Class/CriteresRecherche.php:980 +#: ../../library/Class/CriteresRecherche.php:1006 #, fuzzy, php-format msgid "Ma recherche \"%s\"" msgstr "Búsqueda Tipo" @@ -17148,6 +17275,11 @@ msgstr "Mensaje ..." msgid "Metadonnées" msgstr "Metadatos" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:130 +#, fuzzy +msgid "Mettre dans un panier" +msgstr "TÃtulo cesta" + #: ../../library/Class/Feature/List.php:163 msgid "" "Mettre en place un accès à des ressources libres de droit et fournir aux " @@ -17161,6 +17293,11 @@ msgstr "" msgid "Mettre en place une newsletter" msgstr "Editar miniaturas" +#: ../../application/modules/opac/controllers/PanierController.php:212 +#, fuzzy +msgid "Mettre la sélection dans un panier" +msgstr "Crear una nueva bloque de luz" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 #: ../../application/modules/admin/controllers/PremierChapitreController.php:143 #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 @@ -17514,6 +17651,7 @@ msgstr "Reserve una estación multimedia" #: ../../library/ZendAfi/Controller/Plugin/Manager/SearchForm.php:28 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:481 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:508 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:59 msgid "Modifier" msgstr "Cambiar" @@ -17737,6 +17875,7 @@ msgstr "Editar miniaturas" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:58 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:61 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:56 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:60 #, fuzzy, php-format msgid "Modifier la vignette de la notice \"%s\"" msgstr "miniatura de registro" @@ -18091,11 +18230,13 @@ msgstr "Plantilla \"% s\" eliminada" #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:96 +#: ../../library/Class/ModeleFusion.php:120 #, fuzzy msgid "Modèle par défaut : liste d'articles" msgstr "División por defecto Transmisión" #: ../../library/Class/ModeleFusion.php:98 +#: ../../library/Class/ModeleFusion.php:122 #, fuzzy msgid "Modèle par défaut : liste de prêts" msgstr "División por defecto Transmisión" @@ -18103,6 +18244,7 @@ msgstr "División por defecto Transmisión" #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:94 +#: ../../library/Class/ModeleFusion.php:118 #, fuzzy msgid "Modèle par défaut : résultat de recherche" msgstr "Mostrar resultados de búsqueda" @@ -18110,6 +18252,7 @@ msgstr "Mostrar resultados de búsqueda" #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:95 +#: ../../library/Class/ModeleFusion.php:119 msgid "Modèle par défaut : une notice" msgstr "Plantilla predeterminada: un registro" @@ -18146,6 +18289,7 @@ msgstr "Alertas de moderación" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389 #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:383 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:378 +#: ../../library/Class/AdminVar.php:388 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" @@ -18160,6 +18304,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:377 +#: ../../library/Class/AdminVar.php:387 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -18605,6 +18750,7 @@ msgstr "Número de registros por página" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:146 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:111 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:115 +#: ../../library/Class/Systeme/ModulesAppli.php:176 msgid "Ne pas afficher" msgstr "No mostrar" @@ -18944,7 +19090,7 @@ msgstr "Nombre de biblioteca" #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:312 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:316 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "Nombre de la biblioteca en bibliosurf (minúscula)" @@ -19094,7 +19240,7 @@ msgstr "Avisos de suscriptores: %s" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:302 +#: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:311 msgid "Nombre d'avis maximum à afficher par utilisateur." msgstr "Número máximo de vistas para mostrar por usuario." @@ -19186,6 +19332,7 @@ msgstr "Avisos de suscriptores: %s" #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:380 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:374 #: ../../library/Class/AdminVar.php:375 ../../library/Class/AdminVar.php:369 +#: ../../library/Class/AdminVar.php:379 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "Número máximo de caracteres permitidos en avisos." @@ -19195,6 +19342,7 @@ msgstr "Número máximo de caracteres permitidos en avisos." #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:376 #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:381 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "Número máximo de caracteres para mostrar en el bloque de comentarios." @@ -19204,6 +19352,7 @@ msgstr "Número máximo de caracteres para mostrar en el bloque de comentarios." #: ../../library/Class/AdminVar.php:378 ../../library/Class/AdminVar.php:381 #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:375 #: ../../library/Class/AdminVar.php:376 ../../library/Class/AdminVar.php:370 +#: ../../library/Class/AdminVar.php:380 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "Número mÃnimo de caracteres permitidos ​​en avisos." @@ -19274,6 +19423,7 @@ msgstr "Número de formas: %s" #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:386 #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:391 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "Número de dÃas de validez de los nuevos registros en el portal" @@ -19443,6 +19593,7 @@ msgstr "Número de divisiones" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:261 +#: ../../library/Class/AdminVar.php:270 msgid "Nombre maximum d'articles en sélection multiple" msgstr "Cantidad máxima de artÃculos en selección múltiple" @@ -19597,6 +19748,7 @@ msgstr "Nota (s)" #: ../../application/modules/opac/controllers/PanierController.php:249 #: ../../application/modules/opac/controllers/PanierController.php:249 +#: ../../application/modules/opac/controllers/PanierController.php:281 #, php-format msgid "Notice \"%s\" retirée du panier" msgstr "Note \"%s\" eliminado del carrito" @@ -19782,6 +19934,7 @@ msgstr "Nueva contraseña" #: ../../library/Class/PanierNotice.php:29 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:5 #: ../../library/Class/PanierNotice.php:29 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:5 msgid "Nouveau panier" msgstr "Nueva cesta" @@ -19822,6 +19975,7 @@ msgstr "Resultados de la búsqueda TÃtulo" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:56 msgid "Nouveauté" msgstr "Novedad" @@ -19897,6 +20051,7 @@ msgstr "Nuevo en:" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:231 #, fuzzy, php-format msgid "Nouveautés du %s" msgstr "Noticias" @@ -19942,6 +20097,7 @@ msgstr "Nueva tarea" #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:104 msgid "Nouvelle recherche" msgstr "Nueva búsqueda" @@ -20048,7 +20204,7 @@ msgstr "Número de carnet no válido" #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:320 #: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:313 -#: ../../library/Class/AdminVar.php:308 +#: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:317 msgid "" "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader." "readspeaker.com\">http://webreader.readspeaker.com</a>" @@ -20293,6 +20449,7 @@ msgstr "Colegio de división" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:138 +#: ../../library/Class/CriteresRecherche.php:139 #, fuzzy msgid "Ordre du panier" msgstr "TÃtulo cesta" @@ -20465,9 +20622,14 @@ msgstr "Abrir la página \"%s\" en una pestaña" #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:145 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:162 msgid "Ouvrir le lien dans un nouvel onglet" msgstr "Abra el enlace en una nueva pestaña" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:64 +msgid "Ouvrir le menu des actions de sélection." +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 msgid "Ouvrir le site dans un nouvel onglet" @@ -20519,6 +20681,7 @@ msgstr "PHP" #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:393 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:388 +#: ../../library/Class/AdminVar.php:398 msgid "PIWIK authentication token for widgets" msgstr "Token de autenticación PIWIK para widgets" @@ -20556,6 +20719,7 @@ msgstr "El ancho total de la página" #: ../../library/Class/ModeleFusion.php:76 #: ../../library/Class/ModeleFusion.php:76 +#: ../../library/Class/ModeleFusion.php:100 msgid "Page d'articles" msgstr "Página de artÃculos" @@ -20567,6 +20731,7 @@ msgstr "Autenticación" #: ../../library/Class/ModeleFusion.php:78 #: ../../library/Class/ModeleFusion.php:78 +#: ../../library/Class/ModeleFusion.php:102 #, fuzzy msgid "Page de notice" msgstr "Página de registro" @@ -20648,6 +20813,7 @@ msgstr "Cestas %s guardada" #: ../../application/modules/opac/controllers/PanierController.php:196 #: ../../application/modules/opac/controllers/PanierController.php:196 +#: ../../application/modules/opac/controllers/PanierController.php:204 #, php-format msgid "Panier %s supprimé" msgstr "Cesta eliminado %s" @@ -20659,6 +20825,7 @@ msgstr "Carro de la compra:" #: ../../application/modules/opac/controllers/PanierController.php:183 #: ../../application/modules/opac/controllers/PanierController.php:183 +#: ../../application/modules/opac/controllers/PanierController.php:191 #, php-format msgid "Panier courant : %s" msgstr "Cesta corriente: %s" @@ -20670,6 +20837,7 @@ msgstr "Cesta de los Premiers Chapitres" #: ../../application/modules/opac/controllers/PanierController.php:274 #: ../../application/modules/opac/controllers/PanierController.php:274 +#: ../../application/modules/opac/controllers/PanierController.php:306 #, fuzzy, php-format msgid "Panier n°%s introuvable" msgstr "Usuario no encontrado" @@ -21009,8 +21177,14 @@ msgstr "Compartiendo" msgid "Partager \"%s\" sur les réseaux sociaux" msgstr "Comparte \"%s\" en las redes sociales" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:155 +#, fuzzy +msgid "Partager le résultat par email" +msgstr "cuota por e-mail" + #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:154 #, fuzzy msgid "Partager par email" msgstr "cuota por e-mail" @@ -21300,6 +21474,7 @@ msgstr "Dejar de recibir el boletÃn de noticias:" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:139 +#: ../../library/Class/CriteresRecherche.php:140 msgid "Pertinence" msgstr "Relevancia" @@ -21629,6 +21804,7 @@ msgstr "Punto" #: ../../library/Class/AdminVar.php:495 ../../library/Class/AdminVar.php:489 #: ../../library/Class/AdminVar.php:490 #: ../../library/ZendAfi/View/Helper/TagListeCoches.php:278 +#: ../../library/Class/AdminVar.php:497 msgid "Portail" msgstr "Portal" @@ -21644,7 +21820,7 @@ msgstr "Portal" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:250 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:156 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Position" msgstr "Posición" @@ -21660,7 +21836,7 @@ msgstr "Posición de la paginación" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Position de la pagination en résultat de recherche" msgstr "Posición de la paginación en el resultado de la búsqueda" @@ -21978,6 +22154,7 @@ msgstr "No se encuentran el perfil de datos %s (%d)" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:292 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -22460,6 +22637,16 @@ msgstr "Activación de la disponibilidad en el resultado de búsqueda" msgid "Prêt" msgstr "Préstamo" +#: ../../library/Class/Feature/List.php:475 +msgid "Prêt Numérique en Bibliothqe avec diliCOM" +msgstr "" + +#: ../../library/Class/Feature/List.php:476 +msgid "" +"Prêt Numérique en Bibliothèque (PNB) est un dispositif interprofessionnel " +"d'accès à la lecture numérique en bibliothèques publiques." +msgstr "" + #: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 #, fuzzy msgid "Prêt introuvable" @@ -23267,6 +23454,7 @@ msgstr "Recursos digitales" #: ../../library/Class/Codification.php:232 #: ../../library/Class/Codification.php:232 #: ../../library/Class/Profil/Preferences/SearchResult.php:54 +#: ../../library/Class/Feature/List.php:479 msgid "Ressources numériques" msgstr "Recursos digitales" @@ -23295,6 +23483,7 @@ msgstr "Limitado a:" #: ../../library/Class/ModeleFusion.php:77 #: ../../library/Class/ModeleFusion.php:77 +#: ../../library/Class/ModeleFusion.php:101 msgid "Resultats de recherche" msgstr "Resultados de la búsqueda" @@ -23316,6 +23505,11 @@ msgstr "Ver facetas" msgid "Retirer le critère: %s" msgstr "Ir al sitio %s" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:98 +#, fuzzy +msgid "Retirer toute les notices présente dans votre sélection" +msgstr "Número de registros por página" + #: ../../library/Class/WebService/SIGB/Dynix/TitleInfoResponseReader.php:172 #, fuzzy msgid "Retiré" @@ -23497,6 +23691,7 @@ msgstr "Volver a la lista de bibliotecas" #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:99 msgid "Retour à la recherche initiale" msgstr "Volver a la búsqueda inicial" @@ -24252,6 +24447,7 @@ msgstr "Sección" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:180 #, php-format msgid "Section: %s" msgstr "Sección: %s" @@ -24328,6 +24524,7 @@ msgstr "Servidor OAI" #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:267 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:280 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:289 +#: ../../library/Class/WebService/SIGB/AbstractRESTService.php:297 msgid "Service indisponible" msgstr "Servicio no disponible" @@ -24452,6 +24649,7 @@ msgstr "Dirección del servidor OAI Cyberlibris" #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:398 ../../library/Class/AdminVar.php:400 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:395 +#: ../../library/Class/AdminVar.php:405 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -24977,6 +25175,7 @@ msgstr "Sugerencias no admitidas por este conector" #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 #: ../../library/ZendAfi/View/Helper/Search/Header.php:136 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:127 #, fuzzy msgid "Suggérer un achat" msgstr "Enlace \"Sugerir una Compra\"" @@ -25093,7 +25292,7 @@ msgstr "Préstamos y reservas:" #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:316 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:320 msgid "" "Supprime l'affichage du lien d'enregistrement dans les différents " "formulaires de connexion et interdit l'enregistrement d'utilisateurs" @@ -25230,6 +25429,7 @@ msgstr "Administrar favoritos" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:67 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:71 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:66 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #, fuzzy, php-format msgid "Supprimer et re-générer la vignette de la notice \"%s\"" msgstr "miniatura de registro" @@ -25452,6 +25652,21 @@ msgstr "Generación del Sitio" msgid "Sélection" msgstr "Selección" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:58 +#, fuzzy +msgid "Sélection : " +msgstr "Selección" + +#: ../../application/modules/opac/controllers/PanierController.php:229 +#, fuzzy, php-format +msgid "Sélection ajoutée dans le panier \"%s\"" +msgstr "Crear una nueva bloque de luz" + +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#, fuzzy +msgid "Sélection courante" +msgstr "Sección" + #: ../../library/Class/MultiSelection/Album.php:49 #: ../../library/Class/MultiSelection/Album.php:49 #, fuzzy @@ -25513,6 +25728,11 @@ msgstr "Sección" msgid "Sélectionner \"%s\"" msgstr "Sección: %s" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:34 +#, php-format +msgid "Sélectionner \"%s\" pour impression, export ou sauvegarde" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #, fuzzy @@ -25525,6 +25745,16 @@ msgstr "Ubicaciones Biblioteca" msgid "Sélectionner les groupes destinaires" msgstr "Destinatario" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:151 +#, fuzzy +msgid "Sélectionner tous les résultats" +msgstr "Crear una nueva bloque de luz" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:115 +#, fuzzy +msgid "Sélectionner toute la page" +msgstr "Crear una nueva bloque de luz" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 #, fuzzy @@ -25677,7 +25907,7 @@ msgstr "Familia" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:428 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:423 -#: ../../library/Class/AdminVar.php:417 +#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:427 msgid "Taille du dossier userfiles en méga octets." msgstr "Tamaño de carpeta de archivos de usuario en megabytes." @@ -25891,7 +26121,7 @@ msgstr "Texto de ayuda" #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:322 #: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:315 -#: ../../library/Class/AdminVar.php:310 +#: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:319 #, fuzzy msgid "Texte d'aide affiché dans la fiche abonné" msgstr "Convertir la ficha de usuario a solo lectura" @@ -25926,6 +26156,7 @@ msgstr "Error de configuración" #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:297 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 " @@ -25941,6 +26172,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:295 #, fuzzy msgid "" "Texte de désinscription version texte<br/>Le lien est inséré à la place de " @@ -25962,7 +26194,7 @@ msgstr "Texto del breadcrumb" #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:312 #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:310 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:314 msgid "Texte visible après l'envoi d'e-mail de demande de réservation." msgstr "" "Texto visible después de enviar una solicitud de reserva por correo " @@ -25973,7 +26205,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:311 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:309 -#: ../../library/Class/AdminVar.php:304 +#: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:313 msgid "Texte visible par l'internaute après son inscription." msgstr "Texto visible por el usuario después de su registro." @@ -26246,6 +26478,7 @@ msgstr "Aleatorio" #: ../../library/ZendAfi/Form/Configuration/Loans.php:30 #: ../../library/Class/Profil/Preferences/Loans.php:396 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:54 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Titre" msgstr "TÃtulo" @@ -26856,6 +27089,7 @@ msgstr "Tipo de documento: %s" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:202 #: ../../library/ZendAfi/Form/AdvancedSearch.php:65 #: ../../library/ZendAfi/View/Helper/LegacyAdvancedSearch.php:123 +#: ../../library/Class/CriteresRecherche.php:146 #, fuzzy msgid "Type de document" msgstr "Tipo de documento: %s" @@ -27303,7 +27537,7 @@ msgstr "BiografÃa del autor" #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:331 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:329 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:333 #, fuzzy msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "Reserve un mensaje Webkiosk" @@ -27370,7 +27604,7 @@ msgstr "URL de destino del informe de estado del sistema (0 para deshabilitar)" #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:332 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:327 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:325 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:329 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "URL de la Babelthèque javascript para insertar en el OPAC" @@ -27521,6 +27755,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:328 +#: ../../library/Class/ModeleFusion.php:353 #, php-format msgid "Un modèle a déjà le même nom : %s" msgstr "Una plantilla ya tiene el mismo nombre: %s" @@ -27767,7 +28002,7 @@ msgstr "Plano de acceso" #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:341 #: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:334 -#: ../../library/Class/AdminVar.php:329 +#: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:338 msgid "Url d'import d'un agenda TYPO3" msgstr "Url para importar un calendario TYPO3" @@ -27792,6 +28027,7 @@ msgstr "Formulario de búsqueda" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:418 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:415 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 +#: ../../library/Class/AdminVar.php:420 #, fuzzy msgid "Url du connecteur Le Social" msgstr "Connector Id The Social" @@ -28286,11 +28522,13 @@ msgstr "Habilite el recurso para administrar los derechos de acceso de grupo" #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 +#: ../../application/modules/opac/controllers/PanierController.php:247 msgid "Veuillez choisir un panier" msgstr "Por favor elija una cesta" #: ../../application/modules/opac/controllers/PanierController.php:211 #: ../../application/modules/opac/controllers/PanierController.php:211 +#: ../../application/modules/opac/controllers/PanierController.php:243 msgid "Veuillez choisir une notice" msgstr "Por favor elija un registro" @@ -28402,6 +28640,11 @@ msgstr "Verifique que el tamaño del archivo no exceda el máximo autorizado %s" msgid "Vider" msgstr "* vacÃo *" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:94 +#, fuzzy +msgid "Vider la sélection" +msgstr "Confirmar la selección" + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 @@ -28685,6 +28928,11 @@ msgstr "Leer más" msgid "Voir la réponse." msgstr "Escribe una respuesta." +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:162 +#, fuzzy +msgid "Voir la sélection" +msgstr "Confirmar la selección" + #: ../../application/modules/admin/views/scripts/feature/index.phtml:64 #: ../../application/modules/admin/views/scripts/feature/index.phtml:75 #, php-format @@ -28729,6 +28977,7 @@ msgstr "Resultado de la búsqueda" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:66 #, fuzzy msgid "Voir le résultat de recherche complet" msgstr "Resultado de la búsqueda" @@ -29907,6 +30156,7 @@ msgstr "Usted no tiene permisos para modificar la cesta" #: ../../application/modules/opac/controllers/PanierController.php:221 #: ../../application/modules/opac/controllers/PanierController.php:221 +#: ../../application/modules/opac/controllers/PanierController.php:253 #, php-format msgid "Vous n'avez pas le droit de modifier le panier %s" msgstr "No tiene permisos para editar la cesta %s" @@ -30231,6 +30481,19 @@ msgstr "Verificado" msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "WS KOHA: reserva de ejemplares para múltiples bibliotecas" +#: ../../library/Class/AdminVar.php:356 +#, fuzzy +msgid "" +"WS KOHA : Réservation d'exemplaires pour les multi sites à l'exemplaire. " +"(Uniquement \"HoldItem\")" +msgstr "WS KOHA: reserva de ejemplares para múltiples bibliotecas" + +#: ../../library/Class/AdminVar.php:357 +msgid "" +"WS KOHA : Tentative de réservation à l'exemplaires puis à la notice. " +"(\"HoldItem\" puis \"HoldTitle\")" +msgstr "" + #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 msgid "Web" @@ -30619,22 +30882,30 @@ msgstr "copia" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:38 #, fuzzy, php-format msgid "dans la serie : %s" msgstr "Descripción general de la carta:" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:32 #, fuzzy, php-format msgid "dans le catalogue : %s" msgstr "Catálogo: " #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:35 #, fuzzy, php-format msgid "dans le panier : %s" msgstr "Editar la Cesta" +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:30 +#, fuzzy +msgid "dans ma sélection" +msgstr "Confirmar la selección" + #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 #, fuzzy @@ -31872,6 +32143,8 @@ msgstr "para %smn" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 +#: ../../library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php:69 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #, fuzzy, php-format msgid "pour : %s" msgstr "por: %s" diff --git a/library/translation/fr.mo b/library/translation/fr.mo index 227f27029e742ca038b39c79c3cfda8571cf6c0c..eef7b055242927e8c2661e7fdde346e7e3de7853 100644 Binary files a/library/translation/fr.mo and b/library/translation/fr.mo differ diff --git a/library/translation/fr.po b/library/translation/fr.po index 2c489a058b94cd53b94e057be16849971abc0ade..8f6f0bc857813e61c281f580850e31d25c9c781c 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-09-24 14:45+0200\n" +"POT-Creation-Date: 2018-10-08 09:33+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" @@ -31,6 +31,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:142 #: ../../application/modules/opac/controllers/RechercheController.php:139 #: ../../application/modules/opac/controllers/RechercheController.php:148 +#: ../../application/modules/opac/controllers/RechercheController.php:154 msgid " (recherche élargie triée par pertinence)" msgstr "" @@ -66,6 +67,8 @@ msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:195 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:217 msgid " OU " msgstr "" @@ -259,6 +262,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:250 +#: ../../library/Class/ModeleFusion.php:275 msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "" @@ -327,6 +331,7 @@ msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:232 msgid "%d %B %Y" msgstr "" @@ -443,6 +448,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:32 #, php-format msgid "%s : Documents %s" msgstr "" @@ -483,6 +489,15 @@ msgstr "" msgid "%s : plages horaire de réservation multimedia" msgstr "" +#: ../../library/Class/Feature/List.php:465 +#, php-format +msgid "" +"%s Historiquement constitué autour de la musique, diMusic propose un " +"catalogue composé d'1 million de titres où toutes les esthétiques musicales " +"sont représentées, du métal au classique en passant par le rap, la chanson " +"française, le reggae, l'électro ou encore la musique pour enfants." +msgstr "" + #: ../../library/Class/FileManager/FileSystem.php:114 #, php-format msgid "%s Ko" @@ -1042,6 +1057,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:446 ../../library/Class/AdminVar.php:451 #: ../../library/Class/AdminVar.php:454 ../../library/Class/AdminVar.php:448 #: ../../library/Class/AdminVar.php:449 ../../library/Class/AdminVar.php:443 +#: ../../library/Class/AdminVar.php:453 msgid "API" msgstr "" @@ -1051,6 +1067,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:445 ../../library/Class/AdminVar.php:450 #: ../../library/Class/AdminVar.php:453 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:448 ../../library/Class/AdminVar.php:442 +#: ../../library/Class/AdminVar.php:452 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -1213,6 +1230,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:43 #: ../../library/Class/MoteurRecherche.php:611 #: ../../library/ZendAfi/View/Helper/ComboProfils.php:107 +#: ../../library/Class/MoteurRecherche.php:617 msgid "Accueil" msgstr "" @@ -1275,6 +1293,7 @@ msgstr "Vous avez attein le nombre maximum de réservations" #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:100 msgid "Accéder au formulaire de recherche pré-rempli avec les critères actuels" msgstr "" @@ -1454,7 +1473,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:358 #: ../../library/Class/AdminVar.php:361 ../../library/Class/AdminVar.php:353 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:355 msgid "Activation de la navigation collaborative" msgstr "" @@ -1470,7 +1489,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:331 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:335 msgid "Activation des boîtes dans les menus" msgstr "" @@ -1489,6 +1508,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:270 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:272 msgid "Activation des formulaires" msgstr "" @@ -1508,7 +1528,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:414 #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:409 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:413 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1534,6 +1554,10 @@ msgstr "" msgid "Activer la redirection vers la liste d'articles" msgstr "" +#: ../../library/Class/AdminVar.php:263 +msgid "Activer la sélection multiple de notices dans le résultat de recherche" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 msgid "Activer la tâche" @@ -1589,7 +1613,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:325 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:323 -#: ../../library/Class/AdminVar.php:318 +#: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:327 msgid "Activer ou désactiver le module d'activité" msgstr "" @@ -1997,6 +2021,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:45 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:97 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:59 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:44 #, php-format msgid "Afficher \"%s\"" msgstr "" @@ -2013,21 +2038,25 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:179 #: ../../library/Class/Systeme/ModulesAppli.php:179 +#: ../../library/Class/Systeme/ModulesAppli.php:178 msgid "Afficher au dessous des facettes" msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:181 #: ../../library/Class/Systeme/ModulesAppli.php:181 +#: ../../library/Class/Systeme/ModulesAppli.php:180 msgid "Afficher au dessous des résultats" msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:178 #: ../../library/Class/Systeme/ModulesAppli.php:178 +#: ../../library/Class/Systeme/ModulesAppli.php:177 msgid "Afficher au dessus des facettes" msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:180 #: ../../library/Class/Systeme/ModulesAppli.php:180 +#: ../../library/Class/Systeme/ModulesAppli.php:179 msgid "Afficher au dessus des résultats" msgstr "" @@ -2263,6 +2292,12 @@ msgstr "" msgid "Afficher un nouveau domaine" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:169 +msgid "" +"Afficher un résultat de recherche incluant uniquement les notices de votre " +"sélection" +msgstr "" + #: ../../library/Class/Systeme/ModulesNotice.php:41 #: ../../library/Class/Systeme/ModulesNotice.php:41 msgid "Afficher une ligne par exemplaire" @@ -2413,6 +2448,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:32 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:36 #, php-format msgid "Ajouter \"%s\" dans un panier" msgstr "" @@ -2438,6 +2474,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:26 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:30 msgid "Ajouter au panier" msgstr "" @@ -2446,7 +2483,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:356 #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:351 #: ../../library/Class/AdminVar.php:352 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:344 +#: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:353 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "" @@ -2480,6 +2517,11 @@ msgstr "" msgid "Ajouter les utilisateurs sélectionnés" msgstr "" +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:20 +#, fuzzy, php-format +msgid "Ajouter ma sélection au panier \"%s\" ?" +msgstr "Vous avez attein le nombre maximum de réservations" + #: ../../library/Class/MultiSelection/Album.php:113 #: ../../library/Class/MultiSelection/Album.php:113 #, php-format @@ -2492,6 +2534,20 @@ msgstr "" msgid "Ajouter tous les articles de la catégorie %s à la sélection d'articles" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:119 +msgid "" +"Ajouter toutes les notices de la page de résultat courante dans votre " +"sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:133 +msgid "Ajouter toutes les notices de la sélection à un panier" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:155 +msgid "Ajouter toutes les notices du résultat dans votre sélection" +msgstr "" + #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 msgid "Ajouter un agenda" @@ -2533,6 +2589,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:204 #: ../../application/modules/opac/controllers/PanierController.php:204 +#: ../../application/modules/opac/controllers/PanierController.php:236 msgid "Ajouter un document dans un panier" msgstr "" @@ -3152,6 +3209,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/CriteresRecherche.php:144 +#: ../../library/Class/CriteresRecherche.php:145 msgid "Année de publication" msgstr "" @@ -3451,6 +3509,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125 #: ../../library/ZendAfi/Form/Album.php:234 #: ../../library/ZendAfi/Form/Admin/Library.php:270 +#: ../../library/Class/ModeleFusion.php:99 msgid "Aucun" msgstr "" @@ -3636,6 +3695,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67 #: ../../library/Class/MoteurRecherche.php:485 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:60 +#: ../../library/Class/MoteurRecherche.php:491 msgid "Aucun résultat trouvé" msgstr "" @@ -3965,6 +4025,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:143 #: ../../library/Class/Profil/Preferences/Loans.php:453 #: ../../library/Class/Profil/Preferences/Loans.php:454 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Auteur" msgstr "" @@ -4093,7 +4154,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:310 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" msgstr "" @@ -4584,6 +4645,7 @@ msgstr "" #: ../../library/Class/Feature/List.php:368 #: ../../library/Class/Feature/List.php:166 #: ../../library/Class/Feature/List.php:413 +#: ../../library/Class/Feature/List.php:469 msgid "Bibliothèque numérique" msgstr "" @@ -5804,6 +5866,8 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:168 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:13 #: ../../application/modules/opac/controllers/PanierController.php:168 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:13 +#: ../../application/modules/opac/controllers/PanierController.php:176 msgid "Changer de panier" msgstr "" @@ -5850,7 +5914,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:357 #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:352 #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:345 +#: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:354 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "" @@ -5988,7 +6052,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:310 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:312 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</" @@ -6034,7 +6098,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:321 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:314 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:318 msgid "" "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/" "home\">http://webthumb.bluga.net/home</a>" @@ -6119,7 +6183,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:326 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:330 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "" @@ -6128,7 +6192,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:335 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:328 -#: ../../library/Class/AdminVar.php:323 +#: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:332 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "" @@ -6450,7 +6514,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:444 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:439 -#: ../../library/Class/AdminVar.php:433 +#: ../../library/Class/AdminVar.php:433 ../../library/Class/AdminVar.php:443 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -6563,6 +6627,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:157 #: ../../application/modules/opac/controllers/RechercheController.php:154 #: ../../application/modules/opac/controllers/RechercheController.php:163 +#: ../../application/modules/opac/controllers/RechercheController.php:169 msgid "Configuration de la recherche" msgstr "" @@ -6804,6 +6869,10 @@ msgstr "" msgid "Connecteur StoryPlay*r" msgstr "" +#: ../../library/Class/Feature/List.php:464 +msgid "Connecteur diMusic" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 msgid "Connecteurs" @@ -6820,6 +6889,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:407 #: ../../library/Class/AdminVar.php:399 ../../library/Class/AdminVar.php:401 #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:406 msgid "" "Conserve le dernier fichier transmis par le SIGB pour chaque notice. Celui-" "ci est téléchargeable à partir de l'Inspecteur Gadget." @@ -6864,6 +6934,7 @@ msgstr "" #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 #: ../../library/Class/CriteresRecherche.php:147 +#: ../../library/Class/CriteresRecherche.php:148 msgid "Consultation" msgstr "" @@ -6981,6 +7052,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:280 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:282 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -6993,6 +7065,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:283 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" @@ -7004,6 +7077,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:283 #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:284 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -7014,6 +7088,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:413 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:405 +#: ../../library/Class/AdminVar.php:415 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -7024,6 +7099,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:407 ../../library/Class/AdminVar.php:412 #: ../../library/Class/AdminVar.php:415 ../../library/Class/AdminVar.php:409 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:404 +#: ../../library/Class/AdminVar.php:414 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -7439,6 +7515,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:122 #: ../../application/modules/opac/controllers/PanierController.php:122 +#: ../../application/modules/opac/controllers/PanierController.php:125 msgid "Créer un panier" msgstr "" @@ -7662,6 +7739,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 #: ../../library/Class/CriteresRecherche.php:146 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:301 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Date de nouveauté" msgstr "" @@ -7703,6 +7781,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:405 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:394 +#: ../../library/Class/AdminVar.php:404 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" @@ -7711,7 +7790,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:321 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:325 msgid "Date du dernier vidage manuel du cache" msgstr "" @@ -7767,6 +7846,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:309 msgid "" "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est " "désactivé." @@ -8436,6 +8516,7 @@ msgstr "" #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:448 +#: ../../library/Class/MoteurRecherche.php:449 msgid "Domaine non paramétré" msgstr "" @@ -8850,7 +8931,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:311 -#: ../../library/Class/AdminVar.php:306 +#: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:315 msgid "Désactiver pour passer le site en maintenance" msgstr "" @@ -8869,6 +8950,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:390 #: ../../library/Class/AdminVar.php:382 ../../library/Class/AdminVar.php:384 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:389 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" @@ -8880,6 +8962,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:388 ../../library/Class/AdminVar.php:391 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:385 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:390 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -9512,10 +9595,12 @@ msgid "Enregistrer comme filtres par défaut" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:169 msgid "Enregistrer ma recherche" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:170 msgid "Enregistrer ma recherche dans mes favoris" msgstr "" @@ -9704,6 +9789,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:137 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:128 msgid "Envoyer une demande d'achat de document" msgstr "" @@ -10505,7 +10591,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439 #: ../../library/Class/AdminVar.php:444 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:442 -#: ../../library/Class/AdminVar.php:436 +#: ../../library/Class/AdminVar.php:436 ../../library/Class/AdminVar.php:446 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -10903,7 +10989,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:297 +#: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:306 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -11304,6 +11390,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/print/index.phtml:8 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:65 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:69 msgid "Générer" msgstr "" @@ -11651,6 +11738,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:416 #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:411 +#: ../../library/Class/AdminVar.php:421 msgid "Id du connecteur Le Social" msgstr "" @@ -12272,15 +12360,27 @@ msgstr "" #: ../../library/Class/Profil/Preferences/LoansHistory.php:103 #: ../../library/Class/Profil/Preferences/Loans.php:258 #: ../../library/Class/Profil/Preferences/Loans.php:259 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:24 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:140 msgid "Imprimer" msgstr "" +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:25 +#, fuzzy, php-format +msgid "Imprimer \"%s\"" +msgstr "Entrez votre identité S.V.P." + #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #, php-format msgid "Imprimer %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:141 +#, fuzzy +msgid "Imprimer le résultat" +msgstr "Vous avez attein le nombre maximum de réservations" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8 #: ../../library/Class/IntProfilDonnees.php:83 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 @@ -12646,7 +12746,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:334 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:332 -#: ../../library/Class/AdminVar.php:327 +#: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:336 msgid "Interdire la modification de la fiche abonne" msgstr "" @@ -12796,6 +12896,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:395 ../../library/Class/AdminVar.php:398 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:397 msgid "Javascript code for statistics" msgstr "" @@ -12805,6 +12906,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:298 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" @@ -13547,6 +13649,10 @@ msgstr "" msgid "La règle n'est pas de la forme 686$a" msgstr "" +#: ../../library/Class/WebService/SIGB/Koha/Service.php:178 +msgid "La réservation à l'exemplaire est interdite" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:129 msgid "" "La sauvegarde a échoué. Les modifications n'ont pas été prises en compte." @@ -13592,6 +13698,10 @@ msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "" +#: ../../library/Class/MoteurRecherche.php:454 +msgid "La sélection courante est vide" +msgstr "" + #: ../../library/Class/CriteresRecherche.php:450 #: ../../library/Class/CriteresRecherche.php:454 #: ../../library/Class/CriteresRecherche.php:476 @@ -13599,6 +13709,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:478 #: ../../library/Class/CriteresRecherche.php:491 #: ../../library/Class/CriteresRecherche.php:492 +#: ../../library/Class/CriteresRecherche.php:518 msgid "La sélection ne contient aucune notice" msgstr "" @@ -13735,6 +13846,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:105 msgid "Lancer une recherche avec réinitialisation des paramètres" msgstr "" @@ -13765,6 +13877,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:305 msgid "Langue par défaut" msgstr "" @@ -14174,6 +14287,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:260 +#: ../../library/Class/AdminVar.php:269 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 " @@ -14463,6 +14577,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:307 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB." msgstr "" @@ -14951,7 +15066,7 @@ msgstr "Entrez votre identité S.V.P." #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:344 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:337 -#: ../../library/Class/AdminVar.php:332 +#: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:341 msgid "Libellé pour la Dewey" msgstr "" @@ -14960,7 +15075,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:343 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:336 -#: ../../library/Class/AdminVar.php:331 +#: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:340 msgid "Libellé pour la PCDM4" msgstr "" @@ -15047,6 +15162,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:287 +#: ../../library/Class/AdminVar.php:296 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" @@ -15532,7 +15648,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:342 #: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:337 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:335 -#: ../../library/Class/AdminVar.php:330 +#: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:339 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;" @@ -15544,7 +15660,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:355 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:350 #: ../../library/Class/AdminVar.php:351 ../../library/Class/AdminVar.php:348 -#: ../../library/Class/AdminVar.php:343 +#: ../../library/Class/AdminVar.php:343 ../../library/Class/AdminVar.php:352 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 => " @@ -15556,7 +15672,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:324 #: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:317 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:321 msgid "" "Liste des codes langue utilisées en plus du français séparées par des ;. " "Exemple: en;ro;es" @@ -15577,7 +15693,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:435 #: ../../library/Class/AdminVar.php:429 ../../library/Class/AdminVar.php:430 -#: ../../library/Class/AdminVar.php:424 +#: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:434 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -15599,7 +15715,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423 #: ../../library/Class/AdminVar.php:428 ../../library/Class/AdminVar.php:431 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:426 -#: ../../library/Class/AdminVar.php:420 +#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:430 msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "" @@ -15608,7 +15724,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:438 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:433 -#: ../../library/Class/AdminVar.php:427 +#: ../../library/Class/AdminVar.php:427 ../../library/Class/AdminVar.php:437 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "" @@ -15616,13 +15732,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:441 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:436 -#: ../../library/Class/AdminVar.php:430 +#: ../../library/Class/AdminVar.php:430 ../../library/Class/AdminVar.php:440 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." msgstr "" #: ../../library/Class/ModeleFusion.php:79 +#: ../../library/Class/ModeleFusion.php:103 msgid "Liste des prêts" msgstr "" @@ -15842,6 +15959,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:973 #: ../../library/Class/CriteresRecherche.php:980 +#: ../../library/Class/CriteresRecherche.php:1006 #, php-format msgid "Ma recherche \"%s\"" msgstr "" @@ -16384,6 +16502,11 @@ msgstr "" msgid "Metadonnées" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:130 +#, fuzzy +msgid "Mettre dans un panier" +msgstr "Entrez votre identité S.V.P." + #: ../../library/Class/Feature/List.php:163 msgid "" "Mettre en place un accès à des ressources libres de droit et fournir aux " @@ -16394,6 +16517,11 @@ msgstr "" msgid "Mettre en place une newsletter" msgstr "" +#: ../../application/modules/opac/controllers/PanierController.php:212 +#, fuzzy +msgid "Mettre la sélection dans un panier" +msgstr "Vous avez attein le nombre maximum de réservations" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 #: ../../application/modules/admin/controllers/PremierChapitreController.php:143 #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 @@ -16732,6 +16860,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/SearchForm.php:28 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:481 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:508 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:59 msgid "Modifier" msgstr "" @@ -16949,6 +17078,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:58 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:61 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:56 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:60 #, php-format msgid "Modifier la vignette de la notice \"%s\"" msgstr "" @@ -17295,22 +17425,26 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:96 +#: ../../library/Class/ModeleFusion.php:120 msgid "Modèle par défaut : liste d'articles" msgstr "" #: ../../library/Class/ModeleFusion.php:98 +#: ../../library/Class/ModeleFusion.php:122 msgid "Modèle par défaut : liste de prêts" msgstr "" #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:94 +#: ../../library/Class/ModeleFusion.php:118 msgid "Modèle par défaut : résultat de recherche" msgstr "" #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:95 +#: ../../library/Class/ModeleFusion.php:119 msgid "Modèle par défaut : une notice" msgstr "" @@ -17346,6 +17480,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389 #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:383 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:378 +#: ../../library/Class/AdminVar.php:388 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" @@ -17357,6 +17492,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:377 +#: ../../library/Class/AdminVar.php:387 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -17784,6 +17920,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:146 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:111 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:115 +#: ../../library/Class/Systeme/ModulesAppli.php:176 msgid "Ne pas afficher" msgstr "" @@ -18117,7 +18254,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:312 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:316 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "" @@ -18261,7 +18398,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:302 +#: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:311 msgid "Nombre d'avis maximum à afficher par utilisateur." msgstr "" @@ -18346,6 +18483,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:380 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:374 #: ../../library/Class/AdminVar.php:375 ../../library/Class/AdminVar.php:369 +#: ../../library/Class/AdminVar.php:379 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "" @@ -18355,6 +18493,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:376 #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:381 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "" @@ -18364,6 +18503,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:378 ../../library/Class/AdminVar.php:381 #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:375 #: ../../library/Class/AdminVar.php:376 ../../library/Class/AdminVar.php:370 +#: ../../library/Class/AdminVar.php:380 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "" @@ -18429,6 +18569,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:386 #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:391 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "" @@ -18587,6 +18728,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:261 +#: ../../library/Class/AdminVar.php:270 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -18739,6 +18881,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:249 #: ../../application/modules/opac/controllers/PanierController.php:249 +#: ../../application/modules/opac/controllers/PanierController.php:281 #, php-format msgid "Notice \"%s\" retirée du panier" msgstr "" @@ -18919,6 +19062,7 @@ msgstr "" #: ../../library/Class/PanierNotice.php:29 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:5 #: ../../library/Class/PanierNotice.php:29 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:5 msgid "Nouveau panier" msgstr "" @@ -18958,6 +19102,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:56 msgid "Nouveauté" msgstr "" @@ -19027,6 +19172,7 @@ msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:231 #, php-format msgid "Nouveautés du %s" msgstr "" @@ -19070,6 +19216,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:104 msgid "Nouvelle recherche" msgstr "" @@ -19172,7 +19319,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:320 #: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:313 -#: ../../library/Class/AdminVar.php:308 +#: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:317 msgid "" "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader." "readspeaker.com\">http://webreader.readspeaker.com</a>" @@ -19409,6 +19556,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:138 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Ordre du panier" msgstr "" @@ -19576,9 +19724,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:145 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:162 msgid "Ouvrir le lien dans un nouvel onglet" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:64 +msgid "Ouvrir le menu des actions de sélection." +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 msgid "Ouvrir le site dans un nouvel onglet" @@ -19628,6 +19781,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:393 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:388 +#: ../../library/Class/AdminVar.php:398 msgid "PIWIK authentication token for widgets" msgstr "" @@ -19664,6 +19818,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:76 #: ../../library/Class/ModeleFusion.php:76 +#: ../../library/Class/ModeleFusion.php:100 msgid "Page d'articles" msgstr "" @@ -19674,6 +19829,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:78 #: ../../library/Class/ModeleFusion.php:78 +#: ../../library/Class/ModeleFusion.php:102 msgid "Page de notice" msgstr "" @@ -19753,6 +19909,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:196 #: ../../application/modules/opac/controllers/PanierController.php:196 +#: ../../application/modules/opac/controllers/PanierController.php:204 #, php-format msgid "Panier %s supprimé" msgstr "" @@ -19764,6 +19921,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:183 #: ../../application/modules/opac/controllers/PanierController.php:183 +#: ../../application/modules/opac/controllers/PanierController.php:191 #, php-format msgid "Panier courant : %s" msgstr "" @@ -19775,6 +19933,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:274 #: ../../application/modules/opac/controllers/PanierController.php:274 +#: ../../application/modules/opac/controllers/PanierController.php:306 #, php-format msgid "Panier n°%s introuvable" msgstr "" @@ -20092,8 +20251,13 @@ msgstr "" msgid "Partager \"%s\" sur les réseaux sociaux" msgstr "" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:155 +msgid "Partager le résultat par email" +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:154 msgid "Partager par email" msgstr "" @@ -20365,6 +20529,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:139 +#: ../../library/Class/CriteresRecherche.php:140 msgid "Pertinence" msgstr "" @@ -20680,6 +20845,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:495 ../../library/Class/AdminVar.php:489 #: ../../library/Class/AdminVar.php:490 #: ../../library/ZendAfi/View/Helper/TagListeCoches.php:278 +#: ../../library/Class/AdminVar.php:497 msgid "Portail" msgstr "" @@ -20695,7 +20861,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:250 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:156 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Position" msgstr "" @@ -20711,7 +20877,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Position de la pagination en résultat de recherche" msgstr "" @@ -21010,6 +21176,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:292 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -21466,6 +21633,16 @@ msgstr "" msgid "Prêt" msgstr "" +#: ../../library/Class/Feature/List.php:475 +msgid "Prêt Numérique en Bibliothqe avec diliCOM" +msgstr "" + +#: ../../library/Class/Feature/List.php:476 +msgid "" +"Prêt Numérique en Bibliothèque (PNB) est un dispositif interprofessionnel " +"d'accès à la lecture numérique en bibliothèques publiques." +msgstr "" + #: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 msgid "Prêt introuvable" msgstr "" @@ -22248,6 +22425,7 @@ msgstr "" #: ../../library/Class/Codification.php:232 #: ../../library/Class/Codification.php:232 #: ../../library/Class/Profil/Preferences/SearchResult.php:54 +#: ../../library/Class/Feature/List.php:479 msgid "Ressources numériques" msgstr "" @@ -22274,6 +22452,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:77 #: ../../library/Class/ModeleFusion.php:77 +#: ../../library/Class/ModeleFusion.php:101 msgid "Resultats de recherche" msgstr "" @@ -22295,6 +22474,10 @@ msgstr "" msgid "Retirer le critère: %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:98 +msgid "Retirer toute les notices présente dans votre sélection" +msgstr "" + #: ../../library/Class/WebService/SIGB/Dynix/TitleInfoResponseReader.php:172 msgid "Retiré" msgstr "" @@ -22471,6 +22654,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:99 msgid "Retour à la recherche initiale" msgstr "" @@ -23199,6 +23383,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:180 #, php-format msgid "Section: %s" msgstr "" @@ -23273,6 +23458,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:267 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:280 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:289 +#: ../../library/Class/WebService/SIGB/AbstractRESTService.php:297 msgid "Service indisponible" msgstr "" @@ -23394,6 +23580,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:398 ../../library/Class/AdminVar.php:400 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:395 +#: ../../library/Class/AdminVar.php:405 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -23887,6 +24074,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 #: ../../library/ZendAfi/View/Helper/Search/Header.php:136 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:127 msgid "Suggérer un achat" msgstr "" @@ -23997,7 +24185,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:316 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:320 msgid "" "Supprime l'affichage du lien d'enregistrement dans les différents " "formulaires de connexion et interdit l'enregistrement d'utilisateurs" @@ -24129,6 +24317,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:67 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:71 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:66 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #, php-format msgid "Supprimer et re-générer la vignette de la notice \"%s\"" msgstr "" @@ -24337,6 +24526,19 @@ msgstr "" msgid "Sélection" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:58 +msgid "Sélection : " +msgstr "" + +#: ../../application/modules/opac/controllers/PanierController.php:229 +#, php-format +msgid "Sélection ajoutée dans le panier \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +msgid "Sélection courante" +msgstr "" + #: ../../library/Class/MultiSelection/Album.php:49 #: ../../library/Class/MultiSelection/Album.php:49 msgid "Sélection d'albums" @@ -24394,6 +24596,11 @@ msgstr "" msgid "Sélectionner \"%s\"" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:34 +#, php-format +msgid "Sélectionner \"%s\" pour impression, export ou sauvegarde" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 msgid "Sélectionner la bibliothèque" @@ -24404,6 +24611,14 @@ msgstr "" msgid "Sélectionner les groupes destinaires" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:151 +msgid "Sélectionner tous les résultats" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:115 +msgid "Sélectionner toute la page" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 msgid "Sélectionner un autre panier" @@ -24547,7 +24762,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:428 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:423 -#: ../../library/Class/AdminVar.php:417 +#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:427 msgid "Taille du dossier userfiles en méga octets." msgstr "" @@ -24749,7 +24964,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:322 #: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:315 -#: ../../library/Class/AdminVar.php:310 +#: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:319 msgid "Texte d'aide affiché dans la fiche abonné" msgstr "" @@ -24779,6 +24994,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:297 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 " @@ -24791,6 +25007,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:295 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 " @@ -24808,7 +25025,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:312 #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:310 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:314 msgid "Texte visible après l'envoi d'e-mail de demande de réservation." msgstr "" @@ -24817,7 +25034,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:311 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:309 -#: ../../library/Class/AdminVar.php:304 +#: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:313 msgid "Texte visible par l'internaute après son inscription." msgstr "" @@ -25088,6 +25305,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Loans.php:30 #: ../../library/Class/Profil/Preferences/Loans.php:396 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:54 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Titre" msgstr "" @@ -25665,6 +25883,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:202 #: ../../library/ZendAfi/Form/AdvancedSearch.php:65 #: ../../library/ZendAfi/View/Helper/LegacyAdvancedSearch.php:123 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Type de document" msgstr "" @@ -26086,7 +26305,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:331 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:329 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:333 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "" @@ -26149,7 +26368,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:332 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:327 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:325 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:329 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "" @@ -26278,6 +26497,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:328 +#: ../../library/Class/ModeleFusion.php:353 #, php-format msgid "Un modèle a déjà le même nom : %s" msgstr "" @@ -26508,7 +26728,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:341 #: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:334 -#: ../../library/Class/AdminVar.php:329 +#: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:338 msgid "Url d'import d'un agenda TYPO3" msgstr "" @@ -26531,6 +26751,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:418 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:415 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 +#: ../../library/Class/AdminVar.php:420 msgid "Url du connecteur Le Social" msgstr "" @@ -27002,11 +27223,13 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 +#: ../../application/modules/opac/controllers/PanierController.php:247 msgid "Veuillez choisir un panier" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:211 #: ../../application/modules/opac/controllers/PanierController.php:211 +#: ../../application/modules/opac/controllers/PanierController.php:243 msgid "Veuillez choisir une notice" msgstr "" @@ -27113,6 +27336,11 @@ msgstr "" msgid "Vider" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:94 +#, fuzzy +msgid "Vider la sélection" +msgstr "Entrez votre identité S.V.P." + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 @@ -27387,6 +27615,11 @@ msgstr "" msgid "Voir la réponse." msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:162 +#, fuzzy +msgid "Voir la sélection" +msgstr "Entrez votre identité S.V.P." + #: ../../application/modules/admin/views/scripts/feature/index.phtml:64 #: ../../application/modules/admin/views/scripts/feature/index.phtml:75 #, php-format @@ -27428,6 +27661,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:66 msgid "Voir le résultat de recherche complet" msgstr "" @@ -28530,6 +28764,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:221 #: ../../application/modules/opac/controllers/PanierController.php:221 +#: ../../application/modules/opac/controllers/PanierController.php:253 #, php-format msgid "Vous n'avez pas le droit de modifier le panier %s" msgstr "" @@ -28827,6 +29062,18 @@ msgstr "" msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "" +#: ../../library/Class/AdminVar.php:356 +msgid "" +"WS KOHA : Réservation d'exemplaires pour les multi sites à l'exemplaire. " +"(Uniquement \"HoldItem\")" +msgstr "" + +#: ../../library/Class/AdminVar.php:357 +msgid "" +"WS KOHA : Tentative de réservation à l'exemplaires puis à la notice. " +"(\"HoldItem\" puis \"HoldTitle\")" +msgstr "" + #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 msgid "Web" @@ -29184,22 +29431,30 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:38 #, php-format msgid "dans la serie : %s" msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:32 #, php-format msgid "dans le catalogue : %s" msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:35 #, fuzzy, php-format msgid "dans le panier : %s" msgstr "Entrez votre identité S.V.P." +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:30 +#, fuzzy +msgid "dans ma sélection" +msgstr "Vous avez attein le nombre maximum de réservations" + #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 msgid "dans_panier" @@ -30352,6 +30607,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 +#: ../../library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php:69 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #, php-format msgid "pour : %s" msgstr "" diff --git a/library/translation/fr.pot b/library/translation/fr.pot index a8bf19b2b7a8d42c8eaff7150980f538afb3714e..1f2a696aa3e1a368a34ea8b3d463d841ddd69ca4 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-09-24 14:45+0200\n" +"POT-Creation-Date: 2018-10-08 09:33+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" @@ -65,6 +65,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:43 #: ../../library/Class/MoteurRecherche.php:611 #: ../../library/ZendAfi/View/Helper/ComboProfils.php:107 +#: ../../library/Class/MoteurRecherche.php:617 msgid "Accueil" msgstr "" @@ -1508,6 +1509,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Loans.php:30 #: ../../library/Class/Profil/Preferences/Loans.php:396 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:54 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Titre" msgstr "" @@ -3161,6 +3163,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/SearchForm.php:28 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:481 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:508 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:59 msgid "Modifier" msgstr "" @@ -5636,6 +5639,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:143 #: ../../library/Class/Profil/Preferences/Loans.php:453 #: ../../library/Class/Profil/Preferences/Loans.php:454 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Auteur" msgstr "" @@ -6867,6 +6871,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/print/index.phtml:8 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:65 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:69 msgid "Générer" msgstr "" @@ -7198,6 +7203,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:146 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:111 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:115 +#: ../../library/Class/Systeme/ModulesAppli.php:176 msgid "Ne pas afficher" msgstr "" @@ -9239,6 +9245,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:495 ../../library/Class/AdminVar.php:489 #: ../../library/Class/AdminVar.php:490 #: ../../library/ZendAfi/View/Helper/TagListeCoches.php:278 +#: ../../library/Class/AdminVar.php:497 msgid "Portail" msgstr "" @@ -9401,12 +9408,14 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:26 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:30 msgid "Ajouter au panier" msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:32 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:36 #, php-format msgid "Ajouter \"%s\" dans un panier" msgstr "" @@ -9415,6 +9424,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:58 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:61 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:56 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:60 #, php-format msgid "Modifier la vignette de la notice \"%s\"" msgstr "" @@ -9428,6 +9438,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:67 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:71 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:66 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #, php-format msgid "Supprimer et re-générer la vignette de la notice \"%s\"" msgstr "" @@ -9713,6 +9724,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:202 #: ../../library/ZendAfi/Form/AdvancedSearch.php:65 #: ../../library/ZendAfi/View/Helper/LegacyAdvancedSearch.php:123 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Type de document" msgstr "" @@ -9904,6 +9916,7 @@ msgstr "" #: ../../library/Class/PanierNotice.php:29 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:5 #: ../../library/Class/PanierNotice.php:29 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:5 msgid "Nouveau panier" msgstr "" @@ -9911,6 +9924,8 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:168 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:13 #: ../../application/modules/opac/controllers/PanierController.php:168 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:13 +#: ../../application/modules/opac/controllers/PanierController.php:176 msgid "Changer de panier" msgstr "" @@ -10264,6 +10279,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 #: ../../library/ZendAfi/View/Helper/Search/Header.php:136 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:127 msgid "Suggérer un achat" msgstr "" @@ -10396,6 +10412,7 @@ msgstr "" #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 #: ../../library/Class/CriteresRecherche.php:147 +#: ../../library/Class/CriteresRecherche.php:148 msgid "Consultation" msgstr "" @@ -11121,6 +11138,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:142 #: ../../application/modules/opac/controllers/RechercheController.php:139 #: ../../application/modules/opac/controllers/RechercheController.php:148 +#: ../../application/modules/opac/controllers/RechercheController.php:154 msgid " (recherche élargie triée par pertinence)" msgstr "" @@ -11635,50 +11653,59 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:122 #: ../../application/modules/opac/controllers/PanierController.php:122 +#: ../../application/modules/opac/controllers/PanierController.php:125 msgid "Créer un panier" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:183 #: ../../application/modules/opac/controllers/PanierController.php:183 +#: ../../application/modules/opac/controllers/PanierController.php:191 #, php-format msgid "Panier courant : %s" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:196 #: ../../application/modules/opac/controllers/PanierController.php:196 +#: ../../application/modules/opac/controllers/PanierController.php:204 #, php-format msgid "Panier %s supprimé" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:204 #: ../../application/modules/opac/controllers/PanierController.php:204 +#: ../../application/modules/opac/controllers/PanierController.php:236 msgid "Ajouter un document dans un panier" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:211 #: ../../application/modules/opac/controllers/PanierController.php:211 +#: ../../application/modules/opac/controllers/PanierController.php:243 msgid "Veuillez choisir une notice" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 +#: ../../application/modules/opac/controllers/PanierController.php:247 msgid "Veuillez choisir un panier" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:221 #: ../../application/modules/opac/controllers/PanierController.php:221 +#: ../../application/modules/opac/controllers/PanierController.php:253 #, php-format msgid "Vous n'avez pas le droit de modifier le panier %s" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:249 #: ../../application/modules/opac/controllers/PanierController.php:249 +#: ../../application/modules/opac/controllers/PanierController.php:281 #, php-format msgid "Notice \"%s\" retirée du panier" msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:274 #: ../../application/modules/opac/controllers/PanierController.php:274 +#: ../../application/modules/opac/controllers/PanierController.php:306 #, php-format msgid "Panier n°%s introuvable" msgstr "" @@ -12352,6 +12379,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67 #: ../../library/Class/MoteurRecherche.php:485 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:60 +#: ../../library/Class/MoteurRecherche.php:491 msgid "Aucun résultat trouvé" msgstr "" @@ -12882,7 +12910,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Position de la pagination en résultat de recherche" msgstr "" @@ -12898,7 +12926,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:250 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:156 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Position" msgstr "" @@ -12980,6 +13008,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:260 +#: ../../library/Class/AdminVar.php:269 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 " @@ -12992,6 +13021,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:261 +#: ../../library/Class/AdminVar.php:270 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -13001,6 +13031,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:270 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:272 msgid "Activation des formulaires" msgstr "" @@ -13010,6 +13041,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:280 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:282 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -13022,6 +13054,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:283 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" @@ -13033,6 +13066,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:283 #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:284 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -13044,6 +13078,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:292 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -13055,6 +13090,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:295 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 " @@ -13067,6 +13103,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:287 +#: ../../library/Class/AdminVar.php:296 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" @@ -13076,6 +13113,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:297 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 " @@ -13088,6 +13126,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:298 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" @@ -13096,7 +13135,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:297 +#: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:306 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -13107,7 +13146,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:302 +#: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:311 msgid "Nombre d'avis maximum à afficher par utilisateur." msgstr "" @@ -13116,7 +13155,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:310 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:312 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</" @@ -13128,7 +13167,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:311 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:309 -#: ../../library/Class/AdminVar.php:304 +#: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:313 msgid "Texte visible par l'internaute après son inscription." msgstr "" @@ -13137,7 +13176,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:312 #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:310 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:314 msgid "Texte visible après l'envoi d'e-mail de demande de réservation." msgstr "" @@ -13146,7 +13185,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:311 -#: ../../library/Class/AdminVar.php:306 +#: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:315 msgid "Désactiver pour passer le site en maintenance" msgstr "" @@ -13155,7 +13194,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:312 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:316 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "" @@ -13164,7 +13203,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:320 #: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:313 -#: ../../library/Class/AdminVar.php:308 +#: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:317 msgid "" "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader." "readspeaker.com\">http://webreader.readspeaker.com</a>" @@ -13175,7 +13214,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:321 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:314 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:318 msgid "" "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/" "home\">http://webthumb.bluga.net/home</a>" @@ -13186,7 +13225,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:322 #: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:315 -#: ../../library/Class/AdminVar.php:310 +#: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:319 msgid "Texte d'aide affiché dans la fiche abonné" msgstr "" @@ -13195,7 +13234,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:316 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:320 msgid "" "Supprime l'affichage du lien d'enregistrement dans les différents " "formulaires de connexion et interdit l'enregistrement d'utilisateurs" @@ -13206,7 +13245,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:324 #: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:317 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:321 msgid "" "Liste des codes langue utilisées en plus du français séparées par des ;. " "Exemple: en;ro;es" @@ -13217,7 +13256,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:321 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:325 msgid "Date du dernier vidage manuel du cache" msgstr "" @@ -13226,7 +13265,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:325 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:323 -#: ../../library/Class/AdminVar.php:318 +#: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:327 msgid "Activer ou désactiver le module d'activité" msgstr "" @@ -13235,7 +13274,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:332 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:327 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:325 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:329 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "" @@ -13244,7 +13283,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:326 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:330 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "" @@ -13253,7 +13292,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:335 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:328 -#: ../../library/Class/AdminVar.php:323 +#: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:332 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "" @@ -13262,7 +13301,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:331 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:329 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:333 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "" @@ -13271,7 +13310,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:331 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:335 msgid "Activation des boîtes dans les menus" msgstr "" @@ -13280,7 +13319,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:334 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:332 -#: ../../library/Class/AdminVar.php:327 +#: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:336 msgid "Interdire la modification de la fiche abonne" msgstr "" @@ -13289,7 +13328,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:341 #: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:334 -#: ../../library/Class/AdminVar.php:329 +#: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:338 msgid "Url d'import d'un agenda TYPO3" msgstr "" @@ -13298,7 +13337,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:342 #: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:337 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:335 -#: ../../library/Class/AdminVar.php:330 +#: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:339 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;" @@ -13310,7 +13349,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:343 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:336 -#: ../../library/Class/AdminVar.php:331 +#: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:340 msgid "Libellé pour la PCDM4" msgstr "" @@ -13319,7 +13358,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:344 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:337 -#: ../../library/Class/AdminVar.php:332 +#: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:341 msgid "Libellé pour la Dewey" msgstr "" @@ -13328,7 +13367,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:355 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:350 #: ../../library/Class/AdminVar.php:351 ../../library/Class/AdminVar.php:348 -#: ../../library/Class/AdminVar.php:343 +#: ../../library/Class/AdminVar.php:343 ../../library/Class/AdminVar.php:352 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 => " @@ -13340,7 +13379,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:356 #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:351 #: ../../library/Class/AdminVar.php:352 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:344 +#: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:353 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "" @@ -13349,7 +13388,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:357 #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:352 #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:345 +#: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:354 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "" @@ -13359,7 +13398,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:358 #: ../../library/Class/AdminVar.php:361 ../../library/Class/AdminVar.php:353 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:355 msgid "Activation de la navigation collaborative" msgstr "" @@ -13428,6 +13467,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:380 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:374 #: ../../library/Class/AdminVar.php:375 ../../library/Class/AdminVar.php:369 +#: ../../library/Class/AdminVar.php:379 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "" @@ -13437,6 +13477,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:378 ../../library/Class/AdminVar.php:381 #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:375 #: ../../library/Class/AdminVar.php:376 ../../library/Class/AdminVar.php:370 +#: ../../library/Class/AdminVar.php:380 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "" @@ -13446,6 +13487,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:376 #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:381 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "" @@ -13455,6 +13497,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:377 +#: ../../library/Class/AdminVar.php:387 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -13466,6 +13509,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389 #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:383 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:378 +#: ../../library/Class/AdminVar.php:388 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" @@ -13477,6 +13521,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:390 #: ../../library/Class/AdminVar.php:382 ../../library/Class/AdminVar.php:384 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:389 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" @@ -13488,6 +13533,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:388 ../../library/Class/AdminVar.php:391 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:385 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:390 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -13499,6 +13545,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:386 #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:391 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "" @@ -13508,6 +13555,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:395 ../../library/Class/AdminVar.php:398 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:397 msgid "Javascript code for statistics" msgstr "" @@ -13517,6 +13565,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:393 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:388 +#: ../../library/Class/AdminVar.php:398 msgid "PIWIK authentication token for widgets" msgstr "" @@ -13526,6 +13575,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:405 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:394 +#: ../../library/Class/AdminVar.php:404 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" @@ -13535,6 +13585,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:398 ../../library/Class/AdminVar.php:400 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:395 +#: ../../library/Class/AdminVar.php:405 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -13545,7 +13596,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:414 #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:409 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:413 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -13557,6 +13608,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:418 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:415 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 +#: ../../library/Class/AdminVar.php:420 msgid "Url du connecteur Le Social" msgstr "" @@ -13566,6 +13618,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:416 #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:411 +#: ../../library/Class/AdminVar.php:421 msgid "Id du connecteur Le Social" msgstr "" @@ -13575,6 +13628,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:445 ../../library/Class/AdminVar.php:450 #: ../../library/Class/AdminVar.php:453 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:448 ../../library/Class/AdminVar.php:442 +#: ../../library/Class/AdminVar.php:452 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -13584,6 +13638,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:446 ../../library/Class/AdminVar.php:451 #: ../../library/Class/AdminVar.php:454 ../../library/Class/AdminVar.php:448 #: ../../library/Class/AdminVar.php:449 ../../library/Class/AdminVar.php:443 +#: ../../library/Class/AdminVar.php:453 msgid "API" msgstr "" @@ -14020,6 +14075,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:267 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:280 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:289 +#: ../../library/Class/WebService/SIGB/AbstractRESTService.php:297 msgid "Service indisponible" msgstr "" @@ -14028,6 +14084,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/CriteresRecherche.php:144 +#: ../../library/Class/CriteresRecherche.php:145 msgid "Année de publication" msgstr "" @@ -14396,6 +14453,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:56 msgid "Nouveauté" msgstr "" @@ -14444,6 +14502,7 @@ msgstr "" #: ../../library/Class/Codification.php:232 #: ../../library/Class/Codification.php:232 #: ../../library/Class/Profil/Preferences/SearchResult.php:54 +#: ../../library/Class/Feature/List.php:479 msgid "Ressources numériques" msgstr "" @@ -15936,21 +15995,25 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:178 #: ../../library/Class/Systeme/ModulesAppli.php:178 +#: ../../library/Class/Systeme/ModulesAppli.php:177 msgid "Afficher au dessus des facettes" msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:179 #: ../../library/Class/Systeme/ModulesAppli.php:179 +#: ../../library/Class/Systeme/ModulesAppli.php:178 msgid "Afficher au dessous des facettes" msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:180 #: ../../library/Class/Systeme/ModulesAppli.php:180 +#: ../../library/Class/Systeme/ModulesAppli.php:179 msgid "Afficher au dessus des résultats" msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:181 #: ../../library/Class/Systeme/ModulesAppli.php:181 +#: ../../library/Class/Systeme/ModulesAppli.php:180 msgid "Afficher au dessous des résultats" msgstr "" @@ -16299,51 +16362,60 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125 #: ../../library/ZendAfi/Form/Album.php:234 #: ../../library/ZendAfi/Form/Admin/Library.php:270 +#: ../../library/Class/ModeleFusion.php:99 msgid "Aucun" msgstr "" #: ../../library/Class/ModeleFusion.php:76 #: ../../library/Class/ModeleFusion.php:76 +#: ../../library/Class/ModeleFusion.php:100 msgid "Page d'articles" msgstr "" #: ../../library/Class/ModeleFusion.php:77 #: ../../library/Class/ModeleFusion.php:77 +#: ../../library/Class/ModeleFusion.php:101 msgid "Resultats de recherche" msgstr "" #: ../../library/Class/ModeleFusion.php:78 #: ../../library/Class/ModeleFusion.php:78 +#: ../../library/Class/ModeleFusion.php:102 msgid "Page de notice" msgstr "" #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:94 +#: ../../library/Class/ModeleFusion.php:118 msgid "Modèle par défaut : résultat de recherche" msgstr "" #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:95 +#: ../../library/Class/ModeleFusion.php:119 msgid "Modèle par défaut : une notice" msgstr "" #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:96 +#: ../../library/Class/ModeleFusion.php:120 msgid "Modèle par défaut : liste d'articles" msgstr "" #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:250 +#: ../../library/Class/ModeleFusion.php:275 msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "" #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:328 +#: ../../library/Class/ModeleFusion.php:353 #, php-format msgid "Un modèle a déjà le même nom : %s" msgstr "" @@ -16631,12 +16703,14 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:138 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Ordre du panier" msgstr "" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:139 +#: ../../library/Class/CriteresRecherche.php:140 msgid "Pertinence" msgstr "" @@ -16647,6 +16721,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 #: ../../library/Class/CriteresRecherche.php:146 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:301 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Date de nouveauté" msgstr "" @@ -16657,6 +16732,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:478 #: ../../library/Class/CriteresRecherche.php:491 #: ../../library/Class/CriteresRecherche.php:492 +#: ../../library/Class/CriteresRecherche.php:518 msgid "La sélection ne contient aucune notice" msgstr "" @@ -16705,6 +16781,7 @@ msgstr "" #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:448 +#: ../../library/Class/MoteurRecherche.php:449 msgid "Domaine non paramétré" msgstr "" @@ -20571,6 +20648,8 @@ msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:195 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:217 msgid " OU " msgstr "" @@ -20904,6 +20983,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:154 msgid "Partager par email" msgstr "" @@ -21380,6 +21460,7 @@ msgstr "" #: ../../library/Class/Feature/List.php:368 #: ../../library/Class/Feature/List.php:166 #: ../../library/Class/Feature/List.php:413 +#: ../../library/Class/Feature/List.php:469 msgid "Bibliothèque numérique" msgstr "" @@ -21959,6 +22040,8 @@ msgstr "" #: ../../library/Class/Profil/Preferences/LoansHistory.php:103 #: ../../library/Class/Profil/Preferences/Loans.php:258 #: ../../library/Class/Profil/Preferences/Loans.php:259 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:24 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:140 msgid "Imprimer" msgstr "" @@ -22266,6 +22349,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:45 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:97 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:59 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:44 #, php-format msgid "Afficher \"%s\"" msgstr "" @@ -22642,27 +22726,32 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:99 msgid "Retour à la recherche initiale" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:100 msgid "Accéder au formulaire de recherche pré-rempli avec les critères actuels" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:104 msgid "Nouvelle recherche" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:105 msgid "Lancer une recherche avec réinitialisation des paramètres" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:137 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:128 msgid "Envoyer une demande d'achat de document" msgstr "" @@ -23125,6 +23214,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:180 #, php-format msgid "Section: %s" msgstr "" @@ -23595,6 +23685,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:145 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:162 msgid "Ouvrir le lien dans un nouvel onglet" msgstr "" @@ -23996,24 +24087,29 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 +#: ../../library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php:69 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #, php-format msgid "pour : %s" msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:32 #, php-format msgid "dans le catalogue : %s" msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:35 #, php-format msgid "dans le panier : %s" msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:38 #, php-format msgid "dans la serie : %s" msgstr "" @@ -25219,12 +25315,14 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:32 #, php-format msgid "%s : Documents %s" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:66 msgid "Voir le résultat de recherche complet" msgstr "" @@ -26491,7 +26589,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:428 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:423 -#: ../../library/Class/AdminVar.php:417 +#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:427 msgid "Taille du dossier userfiles en méga octets." msgstr "" @@ -26500,7 +26598,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423 #: ../../library/Class/AdminVar.php:428 ../../library/Class/AdminVar.php:431 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:426 -#: ../../library/Class/AdminVar.php:420 +#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:430 msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "" @@ -26509,7 +26607,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:435 #: ../../library/Class/AdminVar.php:429 ../../library/Class/AdminVar.php:430 -#: ../../library/Class/AdminVar.php:424 +#: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:434 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -26519,7 +26617,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:438 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:433 -#: ../../library/Class/AdminVar.php:427 +#: ../../library/Class/AdminVar.php:427 ../../library/Class/AdminVar.php:437 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "" @@ -26535,7 +26633,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:444 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:439 -#: ../../library/Class/AdminVar.php:433 +#: ../../library/Class/AdminVar.php:433 ../../library/Class/AdminVar.php:443 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -26546,7 +26644,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439 #: ../../library/Class/AdminVar.php:444 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:442 -#: ../../library/Class/AdminVar.php:436 +#: ../../library/Class/AdminVar.php:436 ../../library/Class/AdminVar.php:446 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -27257,6 +27355,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:157 #: ../../application/modules/opac/controllers/RechercheController.php:154 #: ../../application/modules/opac/controllers/RechercheController.php:163 +#: ../../application/modules/opac/controllers/RechercheController.php:169 msgid "Configuration de la recherche" msgstr "" @@ -27488,6 +27587,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:407 ../../library/Class/AdminVar.php:412 #: ../../library/Class/AdminVar.php:415 ../../library/Class/AdminVar.php:409 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:404 +#: ../../library/Class/AdminVar.php:414 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -27498,6 +27598,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:413 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:405 +#: ../../library/Class/AdminVar.php:415 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -27942,7 +28043,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:441 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:436 -#: ../../library/Class/AdminVar.php:430 +#: ../../library/Class/AdminVar.php:430 ../../library/Class/AdminVar.php:440 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." @@ -28151,7 +28252,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:310 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" msgstr "" @@ -28193,6 +28294,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:973 #: ../../library/Class/CriteresRecherche.php:980 +#: ../../library/Class/CriteresRecherche.php:1006 #, php-format msgid "Ma recherche \"%s\"" msgstr "" @@ -28226,11 +28328,13 @@ msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:232 msgid "%d %B %Y" msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:231 #, php-format msgid "Nouveautés du %s" msgstr "" @@ -28653,10 +28757,12 @@ msgid "Pour: %s " msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:169 msgid "Enregistrer ma recherche" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:170 msgid "Enregistrer ma recherche dans mes favoris" msgstr "" @@ -28678,6 +28784,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:307 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB." msgstr "" @@ -28685,6 +28792,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:309 msgid "" "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est " "désactivé." @@ -29178,6 +29286,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:407 #: ../../library/Class/AdminVar.php:399 ../../library/Class/AdminVar.php:401 #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:406 msgid "" "Conserve le dernier fichier transmis par le SIGB pour chaque notice. Celui-" "ci est téléchargeable à partir de l'Inspecteur Gadget." @@ -29501,6 +29610,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:305 msgid "Langue par défaut" msgstr "" @@ -30007,10 +30117,12 @@ msgid "Codification" msgstr "" #: ../../library/Class/ModeleFusion.php:79 +#: ../../library/Class/ModeleFusion.php:103 msgid "Liste des prêts" msgstr "" #: ../../library/Class/ModeleFusion.php:98 +#: ../../library/Class/ModeleFusion.php:122 msgid "Modèle par défaut : liste de prêts" msgstr "" @@ -30833,3 +30945,142 @@ msgstr "" #: ../../library/Class/WebService/BibNumerique/Dilicom/Hub.php:366 msgid "Pas d'emprunt en cours pour cet album." msgstr "" + +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:25 +#, php-format +msgid "Imprimer \"%s\"" +msgstr "" + +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:20 +#, php-format +msgid "Ajouter ma sélection au panier \"%s\" ?" +msgstr "" + +#: ../../application/modules/opac/controllers/PanierController.php:212 +msgid "Mettre la sélection dans un panier" +msgstr "" + +#: ../../application/modules/opac/controllers/PanierController.php:229 +#, php-format +msgid "Sélection ajoutée dans le panier \"%s\"" +msgstr "" + +#: ../../library/Class/WebService/SIGB/Koha/Service.php:178 +msgid "La réservation à l'exemplaire est interdite" +msgstr "" + +#: ../../library/Class/MoteurRecherche.php:454 +msgid "La sélection courante est vide" +msgstr "" + +#: ../../library/Class/AdminVar.php:263 +msgid "Activer la sélection multiple de notices dans le résultat de recherche" +msgstr "" + +#: ../../library/Class/AdminVar.php:356 +msgid "" +"WS KOHA : Réservation d'exemplaires pour les multi sites à l'exemplaire. " +"(Uniquement \"HoldItem\")" +msgstr "" + +#: ../../library/Class/AdminVar.php:357 +msgid "" +"WS KOHA : Tentative de réservation à l'exemplaires puis à la notice. " +"(\"HoldItem\" puis \"HoldTitle\")" +msgstr "" + +#: ../../library/Class/Feature/List.php:464 +msgid "Connecteur diMusic" +msgstr "" + +#: ../../library/Class/Feature/List.php:465 +#, php-format +msgid "" +"%s Historiquement constitué autour de la musique, diMusic propose un " +"catalogue composé d'1 million de titres où toutes les esthétiques musicales " +"sont représentées, du métal au classique en passant par le rap, la chanson " +"française, le reggae, l'électro ou encore la musique pour enfants." +msgstr "" + +#: ../../library/Class/Feature/List.php:475 +msgid "Prêt Numérique en Bibliothqe avec diliCOM" +msgstr "" + +#: ../../library/Class/Feature/List.php:476 +msgid "" +"Prêt Numérique en Bibliothèque (PNB) est un dispositif interprofessionnel " +"d'accès à la lecture numérique en bibliothèques publiques." +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:30 +msgid "dans ma sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +msgid "Sélection courante" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:141 +msgid "Imprimer le résultat" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:155 +msgid "Partager le résultat par email" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:34 +#, php-format +msgid "Sélectionner \"%s\" pour impression, export ou sauvegarde" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:58 +msgid "Sélection : " +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:64 +msgid "Ouvrir le menu des actions de sélection." +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:94 +msgid "Vider la sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:98 +msgid "Retirer toute les notices présente dans votre sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:115 +msgid "Sélectionner toute la page" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:119 +msgid "" +"Ajouter toutes les notices de la page de résultat courante dans votre " +"sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:130 +msgid "Mettre dans un panier" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:133 +msgid "Ajouter toutes les notices de la sélection à un panier" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:151 +msgid "Sélectionner tous les résultats" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:155 +msgid "Ajouter toutes les notices du résultat dans votre sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:162 +msgid "Voir la sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:169 +msgid "" +"Afficher un résultat de recherche incluant uniquement les notices de votre " +"sélection" +msgstr "" diff --git a/library/translation/ro.mo b/library/translation/ro.mo index 08a7a1a5e251397aebaad672454688197e95fdc2..a1a75f4b59ea930ccd03e9eaf0acee3539c44923 100644 Binary files a/library/translation/ro.mo and b/library/translation/ro.mo differ diff --git a/library/translation/ro.po b/library/translation/ro.po index 4ddc9fa150f5d0628f0c1fb6d0bec9d81f9d6504..36b38964a54080dd9396a779030609ad7873b966 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-09-24 14:45+0200\n" +"POT-Creation-Date: 2018-10-08 09:33+0200\n" "PO-Revision-Date: 2011-07-14 18:15+0200\n" "Last-Translator: Lupu Mariana <lupumariana@yahoo.com>\n" "Language-Team: Romanian\n" @@ -32,6 +32,7 @@ msgstr "(%d în întârziere)" #: ../../application/modules/opac/controllers/RechercheController.php:142 #: ../../application/modules/opac/controllers/RechercheController.php:139 #: ../../application/modules/opac/controllers/RechercheController.php:148 +#: ../../application/modules/opac/controllers/RechercheController.php:154 msgid " (recherche élargie triée par pertinence)" msgstr "(căutare avansată prin triere în funcÅ£ie de pertinenţă)" @@ -67,6 +68,8 @@ msgstr "Modifică fiÅŸa mea" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:195 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:217 msgid " OU " msgstr "" @@ -265,6 +268,7 @@ msgstr "la buletinul informativ" #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:235 #: ../../library/Class/ModeleFusion.php:250 +#: ../../library/Class/ModeleFusion.php:275 msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "" @@ -334,6 +338,7 @@ msgstr "între %s ÅŸi %s" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:232 msgid "%d %B %Y" msgstr "" @@ -450,6 +455,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:26 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:32 #, fuzzy, php-format msgid "%s : Documents %s" msgstr "Documente apărute" @@ -490,6 +496,15 @@ msgstr "Adaugă o categorie" msgid "%s : plages horaire de réservation multimedia" msgstr "" +#: ../../library/Class/Feature/List.php:465 +#, php-format +msgid "" +"%s Historiquement constitué autour de la musique, diMusic propose un " +"catalogue composé d'1 million de titres où toutes les esthétiques musicales " +"sont représentées, du métal au classique en passant par le rap, la chanson " +"française, le reggae, l'électro ou encore la musique pour enfants." +msgstr "" + #: ../../library/Class/FileManager/FileSystem.php:114 #, php-format msgid "%s Ko" @@ -1064,6 +1079,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:446 ../../library/Class/AdminVar.php:451 #: ../../library/Class/AdminVar.php:454 ../../library/Class/AdminVar.php:448 #: ../../library/Class/AdminVar.php:449 ../../library/Class/AdminVar.php:443 +#: ../../library/Class/AdminVar.php:453 msgid "API" msgstr "" @@ -1073,6 +1089,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:445 ../../library/Class/AdminVar.php:450 #: ../../library/Class/AdminVar.php:453 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:448 ../../library/Class/AdminVar.php:442 +#: ../../library/Class/AdminVar.php:452 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -1238,6 +1255,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/Nav.php:43 #: ../../library/Class/MoteurRecherche.php:611 #: ../../library/ZendAfi/View/Helper/ComboProfils.php:107 +#: ../../library/Class/MoteurRecherche.php:617 msgid "Accueil" msgstr "Pagină iniÅ£ială" @@ -1302,6 +1320,7 @@ msgstr "Căsuţă de căutare" #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 #: ../../library/ZendAfi/View/Helper/Search/Header.php:105 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:100 msgid "Accéder au formulaire de recherche pré-rempli avec les critères actuels" msgstr "" @@ -1496,7 +1515,7 @@ msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:358 #: ../../library/Class/AdminVar.php:361 ../../library/Class/AdminVar.php:353 #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:355 msgid "Activation de la navigation collaborative" msgstr "" @@ -1513,7 +1532,7 @@ msgstr "Resurse OAI" #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:331 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:335 msgid "Activation des boîtes dans les menus" msgstr "" @@ -1532,6 +1551,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:270 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:272 #, fuzzy msgid "Activation des formulaires" msgstr "Moderare alerte" @@ -1553,7 +1573,7 @@ msgstr "Moderare alerte" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:414 #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:409 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:413 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1580,6 +1600,11 @@ msgstr "" msgid "Activer la redirection vers la liste d'articles" msgstr "" +#: ../../library/Class/AdminVar.php:263 +#, fuzzy +msgid "Activer la sélection multiple de notices dans le résultat de recherche" +msgstr "Rezultatul căutarii" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:37 #, fuzzy @@ -1638,7 +1663,7 @@ msgstr "Bibliotecă digitală" #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:325 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:323 -#: ../../library/Class/AdminVar.php:318 +#: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:327 #, fuzzy msgid "Activer ou désactiver le module d'activité" msgstr "Adaugă o localizare" @@ -2066,6 +2091,7 @@ msgstr "AfiÅŸează Agenda" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:45 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:97 #: ../../library/ZendAfi/View/Helper/Notice/Vignette.php:59 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:44 #, fuzzy, php-format msgid "Afficher \"%s\"" msgstr "AfiÅŸează Agenda" @@ -2082,23 +2108,27 @@ msgstr "AfiÅŸează Agenda" #: ../../library/Class/Systeme/ModulesAppli.php:179 #: ../../library/Class/Systeme/ModulesAppli.php:179 +#: ../../library/Class/Systeme/ModulesAppli.php:178 #, fuzzy msgid "Afficher au dessous des facettes" msgstr "AfiÅŸează mai multe instrucÅ£iuni" #: ../../library/Class/Systeme/ModulesAppli.php:181 #: ../../library/Class/Systeme/ModulesAppli.php:181 +#: ../../library/Class/Systeme/ModulesAppli.php:180 msgid "Afficher au dessous des résultats" msgstr "" #: ../../library/Class/Systeme/ModulesAppli.php:178 #: ../../library/Class/Systeme/ModulesAppli.php:178 +#: ../../library/Class/Systeme/ModulesAppli.php:177 #, fuzzy msgid "Afficher au dessus des facettes" msgstr "AfiÅŸează mai multe instrucÅ£iuni" #: ../../library/Class/Systeme/ModulesAppli.php:180 #: ../../library/Class/Systeme/ModulesAppli.php:180 +#: ../../library/Class/Systeme/ModulesAppli.php:179 msgid "Afficher au dessus des résultats" msgstr "" @@ -2357,6 +2387,12 @@ msgstr "AfiÅŸează toate editările acestui document" msgid "Afficher un nouveau domaine" msgstr "coÅŸ nou" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:169 +msgid "" +"Afficher un résultat de recherche incluant uniquement les notices de votre " +"sélection" +msgstr "" + #: ../../library/Class/Systeme/ModulesNotice.php:41 #: ../../library/Class/Systeme/ModulesNotice.php:41 #, fuzzy @@ -2517,6 +2553,7 @@ msgstr "Adaugă în coÅŸ" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:37 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:32 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:36 #, fuzzy, php-format msgid "Ajouter \"%s\" dans un panier" msgstr "Adaugă în coÅŸ" @@ -2542,6 +2579,7 @@ msgstr "Gestionare utilizatori" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:31 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:26 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:30 #, fuzzy msgid "Ajouter au panier" msgstr "Adaugă în coÅŸ" @@ -2551,7 +2589,7 @@ msgstr "Adaugă în coÅŸ" #: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:356 #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:351 #: ../../library/Class/AdminVar.php:352 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:344 +#: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:353 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "" @@ -2589,6 +2627,11 @@ msgstr "Adaugă instrucÅ£iunea în coÅŸ" msgid "Ajouter les utilisateurs sélectionnés" msgstr "VedeÅ£i fluxurile RSS selectate" +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:20 +#, fuzzy, php-format +msgid "Ajouter ma sélection au panier \"%s\" ?" +msgstr "Adaugă în coÅŸ" + #: ../../library/Class/MultiSelection/Album.php:113 #: ../../library/Class/MultiSelection/Album.php:113 #, php-format @@ -2601,6 +2644,21 @@ msgstr "" msgid "Ajouter tous les articles de la catégorie %s à la sélection d'articles" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:119 +msgid "" +"Ajouter toutes les notices de la page de résultat courante dans votre " +"sélection" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:133 +#, fuzzy +msgid "Ajouter toutes les notices de la sélection à un panier" +msgstr "Adaugă instrucÅ£iunea în coÅŸ" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:155 +msgid "Ajouter toutes les notices du résultat dans votre sélection" +msgstr "" + #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:3 #, fuzzy @@ -2645,6 +2703,7 @@ msgstr "Adaugă un catalog" #: ../../application/modules/opac/controllers/PanierController.php:204 #: ../../application/modules/opac/controllers/PanierController.php:204 +#: ../../application/modules/opac/controllers/PanierController.php:236 #, fuzzy msgid "Ajouter un document dans un panier" msgstr "Adaugă instrucÅ£iunea în coÅŸ" @@ -3308,6 +3367,7 @@ msgstr "An de publicaÅ£ie - din" #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/CriteresRecherche.php:144 +#: ../../library/Class/CriteresRecherche.php:145 msgid "Année de publication" msgstr "An de publicare" @@ -3620,6 +3680,7 @@ msgstr "Tip de document" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:125 #: ../../library/ZendAfi/Form/Album.php:234 #: ../../library/ZendAfi/Form/Admin/Library.php:270 +#: ../../library/Class/ModeleFusion.php:99 #, fuzzy msgid "Aucun" msgstr "nici o" @@ -3817,6 +3878,7 @@ msgstr "Nici un rezultat găsit" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:67 #: ../../library/Class/MoteurRecherche.php:485 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:60 +#: ../../library/Class/MoteurRecherche.php:491 msgid "Aucun résultat trouvé" msgstr "Nici un rezultat găsit" @@ -4163,6 +4225,7 @@ msgstr "Nu a fost găsită nici o înregistrare video" #: ../../library/Class/CriteresRecherche.php:143 #: ../../library/Class/Profil/Preferences/Loans.php:453 #: ../../library/Class/Profil/Preferences/Loans.php:454 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Auteur" msgstr "Autor" @@ -4293,7 +4356,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:310 msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" msgstr "" @@ -4807,6 +4870,7 @@ msgstr "Bibliotecă :" #: ../../library/Class/Feature/List.php:368 #: ../../library/Class/Feature/List.php:166 #: ../../library/Class/Feature/List.php:413 +#: ../../library/Class/Feature/List.php:469 msgid "Bibliothèque numérique" msgstr "Bibliotecă digitală" @@ -6097,6 +6161,8 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:168 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:13 #: ../../application/modules/opac/controllers/PanierController.php:168 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:13 +#: ../../application/modules/opac/controllers/PanierController.php:176 #, fuzzy msgid "Changer de panier" msgstr "Exportă acest coÅŸ" @@ -6145,7 +6211,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:357 #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:352 #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:345 +#: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:354 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "" @@ -6293,7 +6359,7 @@ msgstr "Cheie" #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:310 #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:312 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</" @@ -6342,7 +6408,7 @@ msgstr "FaceÅ£i clic aici pentru a modifica" #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:321 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:314 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:318 msgid "" "Clé API Bluga Webthumb <a target=\"_blank\" href=\"http://webthumb.bluga.net/" "home\">http://webthumb.bluga.net/home</a>" @@ -6427,7 +6493,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:333 #: ../../library/Class/AdminVar.php:336 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:326 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:330 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "" @@ -6436,7 +6502,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:333 ../../library/Class/AdminVar.php:335 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:330 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:328 -#: ../../library/Class/AdminVar.php:323 +#: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:332 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "" @@ -6771,7 +6837,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:436 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:444 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:439 -#: ../../library/Class/AdminVar.php:433 +#: ../../library/Class/AdminVar.php:433 ../../library/Class/AdminVar.php:443 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -6890,6 +6956,7 @@ msgstr "Configurare" #: ../../application/modules/opac/controllers/RechercheController.php:157 #: ../../application/modules/opac/controllers/RechercheController.php:154 #: ../../application/modules/opac/controllers/RechercheController.php:163 +#: ../../application/modules/opac/controllers/RechercheController.php:169 #, fuzzy msgid "Configuration de la recherche" msgstr "Rezultatul căutarii" @@ -7145,6 +7212,11 @@ msgstr "Conectare " msgid "Connecteur StoryPlay*r" msgstr "Conectare " +#: ../../library/Class/Feature/List.php:464 +#, fuzzy +msgid "Connecteur diMusic" +msgstr "Conectare " + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:77 #, fuzzy @@ -7163,6 +7235,7 @@ msgstr "Căsuţă de conectare" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:407 #: ../../library/Class/AdminVar.php:399 ../../library/Class/AdminVar.php:401 #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:406 msgid "" "Conserve le dernier fichier transmis par le SIGB pour chaque notice. Celui-" "ci est téléchargeable à partir de l'Inspecteur Gadget." @@ -7211,6 +7284,7 @@ msgstr "Constituire a planului de acces" #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 #: ../../library/Class/CriteresRecherche.php:147 +#: ../../library/Class/CriteresRecherche.php:148 msgid "Consultation" msgstr "Consultare" @@ -7336,6 +7410,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:280 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:282 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -7348,6 +7423,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:281 #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:283 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" @@ -7359,6 +7435,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:283 #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:284 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -7369,6 +7446,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:413 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:405 +#: ../../library/Class/AdminVar.php:415 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -7379,6 +7457,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:407 ../../library/Class/AdminVar.php:412 #: ../../library/Class/AdminVar.php:415 ../../library/Class/AdminVar.php:409 #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:404 +#: ../../library/Class/AdminVar.php:414 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -7819,6 +7898,7 @@ msgstr "coÅŸ nou" #: ../../application/modules/opac/controllers/PanierController.php:122 #: ../../application/modules/opac/controllers/PanierController.php:122 +#: ../../application/modules/opac/controllers/PanierController.php:125 #, fuzzy msgid "Créer un panier" msgstr "coÅŸ nou" @@ -8057,6 +8137,7 @@ msgstr "Căsuţă de căutare" #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 #: ../../library/Class/CriteresRecherche.php:146 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:301 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Date de nouveauté" msgstr "Dată noutăţi" @@ -8103,6 +8184,7 @@ msgstr "Căsuţă de căutare" #: ../../library/Class/AdminVar.php:402 ../../library/Class/AdminVar.php:405 #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:394 +#: ../../library/Class/AdminVar.php:404 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" @@ -8111,7 +8193,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:328 #: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:321 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:325 msgid "Date du dernier vidage manuel du cache" msgstr "" @@ -8171,6 +8253,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:309 msgid "" "De plus, à la connexion, l'enregistrement des mots de passes des abonnés est " "désactivé." @@ -8875,6 +8958,7 @@ msgstr "Căsuţă de căutare" #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:445 #: ../../library/Class/MoteurRecherche.php:448 +#: ../../library/Class/MoteurRecherche.php:449 #, fuzzy msgid "Domaine non paramétré" msgstr "Cataloguri dinamice" @@ -9310,7 +9394,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:311 -#: ../../library/Class/AdminVar.php:306 +#: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:315 msgid "Désactiver pour passer le site en maintenance" msgstr "" @@ -9329,6 +9413,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:390 #: ../../library/Class/AdminVar.php:382 ../../library/Class/AdminVar.php:384 #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:389 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" @@ -9340,6 +9425,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:388 ../../library/Class/AdminVar.php:391 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:385 #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:390 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -9997,11 +10083,13 @@ msgid "Enregistrer comme filtres par défaut" msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:169 #, fuzzy msgid "Enregistrer ma recherche" msgstr "Lansare căutare" #: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:170 #, fuzzy msgid "Enregistrer ma recherche dans mes favoris" msgstr "ExtindeÅ£i căutarea la toate cuvintele" @@ -10201,6 +10289,7 @@ msgstr "TrimiteÅ£i prin email" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:137 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:128 msgid "Envoyer une demande d'achat de document" msgstr "" @@ -11049,7 +11138,7 @@ msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare" #: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:439 #: ../../library/Class/AdminVar.php:444 ../../library/Class/AdminVar.php:447 #: ../../library/Class/AdminVar.php:441 ../../library/Class/AdminVar.php:442 -#: ../../library/Class/AdminVar.php:436 +#: ../../library/Class/AdminVar.php:436 ../../library/Class/AdminVar.php:446 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -11480,7 +11569,7 @@ msgstr "Fonduri" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:297 +#: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:306 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -11911,6 +12000,7 @@ msgstr "Rezervări în curs" #: ../../application/modules/admin/views/scripts/print/index.phtml:8 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:65 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:69 #, fuzzy msgid "Générer" msgstr "Criterii generale" @@ -12281,6 +12371,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:416 #: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:411 +#: ../../library/Class/AdminVar.php:421 msgid "Id du connecteur Le Social" msgstr "" @@ -12933,16 +13024,28 @@ msgstr "la buletinul informativ" #: ../../library/Class/Profil/Preferences/LoansHistory.php:103 #: ../../library/Class/Profil/Preferences/Loans.php:258 #: ../../library/Class/Profil/Preferences/Loans.php:259 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:24 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:140 #, fuzzy msgid "Imprimer" msgstr "Åžtergere" +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:25 +#, fuzzy, php-format +msgid "Imprimer \"%s\"" +msgstr "Åžtergere" + #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #: ../../application/modules/admin/views/scripts/session-activity/impressions.phtml:20 #, fuzzy, php-format msgid "Imprimer %s" msgstr "Åžtergere" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:141 +#, fuzzy +msgid "Imprimer le résultat" +msgstr "Număr de diviziuni" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:8 #: ../../library/Class/IntProfilDonnees.php:83 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 @@ -13334,7 +13437,7 @@ msgstr "Adaugă instrucÅ£iunea în coÅŸ" #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:334 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:332 -#: ../../library/Class/AdminVar.php:327 +#: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:336 msgid "Interdire la modification de la fiche abonne" msgstr "" @@ -13489,6 +13592,7 @@ msgstr "Obiecte java-script" #: ../../library/Class/AdminVar.php:395 ../../library/Class/AdminVar.php:398 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:397 msgid "Javascript code for statistics" msgstr "" @@ -13498,6 +13602,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:298 #, fuzzy msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "Crearea unui buletin informativ" @@ -14267,6 +14372,10 @@ msgstr "" msgid "La règle n'est pas de la forme 686$a" msgstr "" +#: ../../library/Class/WebService/SIGB/Koha/Service.php:178 +msgid "La réservation à l'exemplaire est interdite" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:129 msgid "" "La sauvegarde a échoué. Les modifications n'ont pas été prises en compte." @@ -14312,6 +14421,11 @@ msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "" +#: ../../library/Class/MoteurRecherche.php:454 +#, fuzzy +msgid "La sélection courante est vide" +msgstr "Acest meniu nu conÅ£ine date" + #: ../../library/Class/CriteresRecherche.php:450 #: ../../library/Class/CriteresRecherche.php:454 #: ../../library/Class/CriteresRecherche.php:476 @@ -14319,6 +14433,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:478 #: ../../library/Class/CriteresRecherche.php:491 #: ../../library/Class/CriteresRecherche.php:492 +#: ../../library/Class/CriteresRecherche.php:518 #, fuzzy msgid "La sélection ne contient aucune notice" msgstr "Acest meniu nu conÅ£ine date" @@ -14461,6 +14576,7 @@ msgstr "AlegeÅ£i media" #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 #: ../../library/ZendAfi/View/Helper/Search/Header.php:110 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:105 msgid "Lancer une recherche avec réinitialisation des paramètres" msgstr "" @@ -14491,6 +14607,7 @@ msgstr "Limba " #: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:304 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:305 msgid "Langue par défaut" msgstr "" @@ -14919,6 +15036,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:260 +#: ../../library/Class/AdminVar.php:269 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 " @@ -15219,6 +15337,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:313 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:307 msgid "Les abonnées peuvent se connecter uniquement via le webservice du SIGB." msgstr "" @@ -15730,7 +15849,7 @@ msgstr "ConfirmaÅ£i parola" #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:344 #: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:339 #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:337 -#: ../../library/Class/AdminVar.php:332 +#: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:341 #, fuzzy msgid "Libellé pour la Dewey" msgstr "SpecificaÅ£ie" @@ -15740,7 +15859,7 @@ msgstr "SpecificaÅ£ie" #: ../../library/Class/AdminVar.php:341 ../../library/Class/AdminVar.php:343 #: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:338 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:336 -#: ../../library/Class/AdminVar.php:331 +#: ../../library/Class/AdminVar.php:331 ../../library/Class/AdminVar.php:340 #, fuzzy msgid "Libellé pour la PCDM4" msgstr "SpecificaÅ£ie" @@ -15828,6 +15947,7 @@ msgstr "Link permanent" #: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:287 +#: ../../library/Class/AdminVar.php:296 #, fuzzy msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "la buletinul informativ" @@ -16365,7 +16485,7 @@ msgstr "Adaugă o categorie" #: ../../library/Class/AdminVar.php:340 ../../library/Class/AdminVar.php:342 #: ../../library/Class/AdminVar.php:345 ../../library/Class/AdminVar.php:337 #: ../../library/Class/AdminVar.php:338 ../../library/Class/AdminVar.php:335 -#: ../../library/Class/AdminVar.php:330 +#: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:339 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;" @@ -16377,7 +16497,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:353 ../../library/Class/AdminVar.php:355 #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:350 #: ../../library/Class/AdminVar.php:351 ../../library/Class/AdminVar.php:348 -#: ../../library/Class/AdminVar.php:343 +#: ../../library/Class/AdminVar.php:343 ../../library/Class/AdminVar.php:352 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 => " @@ -16389,7 +16509,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:324 #: ../../library/Class/AdminVar.php:327 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:317 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:321 msgid "" "Liste des codes langue utilisées en plus du français séparées par des ;. " "Exemple: en;ro;es" @@ -16411,7 +16531,7 @@ msgstr "Lista ultimelor fluxuri RSS adăugate" #: ../../library/Class/AdminVar.php:408 ../../library/Class/AdminVar.php:427 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:435 #: ../../library/Class/AdminVar.php:429 ../../library/Class/AdminVar.php:430 -#: ../../library/Class/AdminVar.php:424 +#: ../../library/Class/AdminVar.php:424 ../../library/Class/AdminVar.php:434 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -16434,7 +16554,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:423 #: ../../library/Class/AdminVar.php:428 ../../library/Class/AdminVar.php:431 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:426 -#: ../../library/Class/AdminVar.php:420 +#: ../../library/Class/AdminVar.php:420 ../../library/Class/AdminVar.php:430 #, fuzzy msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "Câmpuri disponibile" @@ -16444,7 +16564,7 @@ msgstr "Câmpuri disponibile" #: ../../library/Class/AdminVar.php:411 ../../library/Class/AdminVar.php:430 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:438 #: ../../library/Class/AdminVar.php:432 ../../library/Class/AdminVar.php:433 -#: ../../library/Class/AdminVar.php:427 +#: ../../library/Class/AdminVar.php:427 ../../library/Class/AdminVar.php:437 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "" @@ -16452,13 +16572,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:414 ../../library/Class/AdminVar.php:433 #: ../../library/Class/AdminVar.php:438 ../../library/Class/AdminVar.php:441 #: ../../library/Class/AdminVar.php:435 ../../library/Class/AdminVar.php:436 -#: ../../library/Class/AdminVar.php:430 +#: ../../library/Class/AdminVar.php:430 ../../library/Class/AdminVar.php:440 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." msgstr "" #: ../../library/Class/ModeleFusion.php:79 +#: ../../library/Class/ModeleFusion.php:103 #, fuzzy msgid "Liste des prêts" msgstr "Critici redactate de %s" @@ -16686,6 +16807,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:973 #: ../../library/Class/CriteresRecherche.php:980 +#: ../../library/Class/CriteresRecherche.php:1006 #, fuzzy, php-format msgid "Ma recherche \"%s\"" msgstr "Tip de căutare" @@ -17260,6 +17382,11 @@ msgstr "Mesaj..." msgid "Metadonnées" msgstr "Coordonate hartă" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:130 +#, fuzzy +msgid "Mettre dans un panier" +msgstr "Modificare titlu coÅŸ" + #: ../../library/Class/Feature/List.php:163 msgid "" "Mettre en place un accès à des ressources libres de droit et fournir aux " @@ -17271,6 +17398,11 @@ msgstr "" msgid "Mettre en place une newsletter" msgstr "Modifică fiÅŸa mea" +#: ../../application/modules/opac/controllers/PanierController.php:212 +#, fuzzy +msgid "Mettre la sélection dans un panier" +msgstr "Acest meniu nu conÅ£ine date" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 #: ../../application/modules/admin/controllers/PremierChapitreController.php:143 #: ../../application/modules/admin/controllers/PremierChapitreController.php:119 @@ -17638,6 +17770,7 @@ msgstr "Modificarea fiÅŸei dvs." #: ../../library/ZendAfi/Controller/Plugin/Manager/SearchForm.php:28 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:481 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:508 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:59 msgid "Modifier" msgstr "Modificare" @@ -17864,6 +17997,7 @@ msgstr "Modifică fiÅŸa mea" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:58 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:61 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:56 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:60 #, fuzzy, php-format msgid "Modifier la vignette de la notice \"%s\"" msgstr "etichetă a instrucÅ£iunii" @@ -18232,11 +18366,13 @@ msgstr "Rezervări în curs" #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:95 #: ../../library/Class/ModeleFusion.php:96 +#: ../../library/Class/ModeleFusion.php:120 #, fuzzy msgid "Modèle par défaut : liste d'articles" msgstr "Căsuţă setări iniÅ£iale pentru diviziune" #: ../../library/Class/ModeleFusion.php:98 +#: ../../library/Class/ModeleFusion.php:122 #, fuzzy msgid "Modèle par défaut : liste de prêts" msgstr "Căsuţă setări iniÅ£iale pentru diviziune" @@ -18244,6 +18380,7 @@ msgstr "Căsuţă setări iniÅ£iale pentru diviziune" #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:93 #: ../../library/Class/ModeleFusion.php:94 +#: ../../library/Class/ModeleFusion.php:118 #, fuzzy msgid "Modèle par défaut : résultat de recherche" msgstr "Rezultatul căutarii" @@ -18251,6 +18388,7 @@ msgstr "Rezultatul căutarii" #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:94 #: ../../library/Class/ModeleFusion.php:95 +#: ../../library/Class/ModeleFusion.php:119 msgid "Modèle par défaut : une notice" msgstr "" @@ -18287,6 +18425,7 @@ msgstr "Moderare alerte" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:389 #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:383 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:378 +#: ../../library/Class/AdminVar.php:388 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" @@ -18298,6 +18437,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:385 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:380 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:377 +#: ../../library/Class/AdminVar.php:387 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -18751,6 +18891,7 @@ msgstr "ChioÅŸc de instrucÅ£iuni" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:146 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:111 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:115 +#: ../../library/Class/Systeme/ModulesAppli.php:176 msgid "Ne pas afficher" msgstr "" @@ -19092,7 +19233,7 @@ msgstr "Plan al bibliotecii: %s" #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:319 #: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:312 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:316 msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "" @@ -19244,7 +19385,7 @@ msgstr "Număr de diviziuni" #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:314 #: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:309 #: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:302 +#: ../../library/Class/AdminVar.php:302 ../../library/Class/AdminVar.php:311 #, fuzzy msgid "Nombre d'avis maximum à afficher par utilisateur." msgstr "ÃŽntoarcere la listă" @@ -19338,6 +19479,7 @@ msgstr "Număr de diviziuni" #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:380 #: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:374 #: ../../library/Class/AdminVar.php:375 ../../library/Class/AdminVar.php:369 +#: ../../library/Class/AdminVar.php:379 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "" @@ -19347,6 +19489,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:382 #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:376 #: ../../library/Class/AdminVar.php:377 ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:381 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "" @@ -19356,6 +19499,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:378 ../../library/Class/AdminVar.php:381 #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:375 #: ../../library/Class/AdminVar.php:376 ../../library/Class/AdminVar.php:370 +#: ../../library/Class/AdminVar.php:380 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "" @@ -19426,6 +19570,7 @@ msgstr "Moderare alerte" #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:392 #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:386 #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:391 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "" @@ -19598,6 +19743,7 @@ msgstr "Număr de diviziuni" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:268 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:261 +#: ../../library/Class/AdminVar.php:270 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -19756,6 +19902,7 @@ msgstr "Note" #: ../../application/modules/opac/controllers/PanierController.php:249 #: ../../application/modules/opac/controllers/PanierController.php:249 +#: ../../application/modules/opac/controllers/PanierController.php:281 #, fuzzy, php-format msgid "Notice \"%s\" retirée du panier" msgstr "Modificare titlu coÅŸ" @@ -19943,6 +20090,7 @@ msgstr "Parolă nouă" #: ../../library/Class/PanierNotice.php:29 #: ../../application/modules/opac/views/scripts/panier/add-record-ajax.phtml:5 #: ../../library/Class/PanierNotice.php:29 +#: ../../application/modules/opac/views/scripts/panier/add-selection.phtml:5 #, fuzzy msgid "Nouveau panier" msgstr "coÅŸ nou" @@ -19987,6 +20135,7 @@ msgstr "Rezultatul căutarii" #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:56 #, fuzzy msgid "Nouveauté" msgstr "Noutăţi" @@ -20064,6 +20213,7 @@ msgstr "Noutăţi de mai puÅ£in de" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:231 #, fuzzy, php-format msgid "Nouveautés du %s" msgstr "Noutăţi" @@ -20111,6 +20261,7 @@ msgstr "Nouă căutare" #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 #: ../../library/ZendAfi/View/Helper/Search/Header.php:109 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:104 msgid "Nouvelle recherche" msgstr "Nouă căutare" @@ -20222,7 +20373,7 @@ msgstr "VedeÅ£i instrucÅ£iunea" #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:320 #: ../../library/Class/AdminVar.php:323 ../../library/Class/AdminVar.php:315 #: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:313 -#: ../../library/Class/AdminVar.php:308 +#: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:317 msgid "" "Numéro de client Read Speaker <a target=\"_blank\" href=\"http://webreader." "readspeaker.com\">http://webreader.readspeaker.com</a>" @@ -20473,6 +20624,7 @@ msgstr "Număr de diviziuni" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:138 +#: ../../library/Class/CriteresRecherche.php:139 #, fuzzy msgid "Ordre du panier" msgstr "Modificare titlu coÅŸ" @@ -20645,9 +20797,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:145 +#: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:162 msgid "Ouvrir le lien dans un nouvel onglet" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:64 +msgid "Ouvrir le menu des actions de sélection." +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 #: ../../library/ZendAfi/View/Helper/TagWebSite.php:41 msgid "Ouvrir le site dans un nouvel onglet" @@ -20699,6 +20856,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:399 #: ../../library/Class/AdminVar.php:391 ../../library/Class/AdminVar.php:393 #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:388 +#: ../../library/Class/AdminVar.php:398 msgid "PIWIK authentication token for widgets" msgstr "" @@ -20737,6 +20895,7 @@ msgstr "Dimensiune totală a site-ului" #: ../../library/Class/ModeleFusion.php:76 #: ../../library/Class/ModeleFusion.php:76 +#: ../../library/Class/ModeleFusion.php:100 #, fuzzy msgid "Page d'articles" msgstr "Categorie înrudită" @@ -20749,6 +20908,7 @@ msgstr "Identificare" #: ../../library/Class/ModeleFusion.php:78 #: ../../library/Class/ModeleFusion.php:78 +#: ../../library/Class/ModeleFusion.php:102 #, fuzzy msgid "Page de notice" msgstr "ChioÅŸc de instrucÅ£iuni" @@ -20832,6 +20992,7 @@ msgstr "Nu a fost găsit nici un articol" #: ../../application/modules/opac/controllers/PanierController.php:196 #: ../../application/modules/opac/controllers/PanierController.php:196 +#: ../../application/modules/opac/controllers/PanierController.php:204 #, php-format msgid "Panier %s supprimé" msgstr "" @@ -20843,6 +21004,7 @@ msgstr "CoÅŸ :" #: ../../application/modules/opac/controllers/PanierController.php:183 #: ../../application/modules/opac/controllers/PanierController.php:183 +#: ../../application/modules/opac/controllers/PanierController.php:191 #, fuzzy, php-format msgid "Panier courant : %s" msgstr "CoÅŸurile dvs. de documente" @@ -20854,6 +21016,7 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:274 #: ../../application/modules/opac/controllers/PanierController.php:274 +#: ../../application/modules/opac/controllers/PanierController.php:306 #, fuzzy, php-format msgid "Panier n°%s introuvable" msgstr "Utilizator" @@ -21186,8 +21349,14 @@ msgstr "împărtăşiÅ£i pe " msgid "Partager \"%s\" sur les réseaux sociaux" msgstr "" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:155 +#, fuzzy +msgid "Partager le résultat par email" +msgstr "împărtăşiÅ£i pe " + #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 #: ../../library/ZendAfi/View/Helper/TagSendMail.php:27 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:154 #, fuzzy msgid "Partager par email" msgstr "împărtăşiÅ£i pe " @@ -21480,6 +21649,7 @@ msgstr "la buletinul informativ" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:139 +#: ../../library/Class/CriteresRecherche.php:140 msgid "Pertinence" msgstr "" @@ -21810,6 +21980,7 @@ msgstr "Punct" #: ../../library/Class/AdminVar.php:495 ../../library/Class/AdminVar.php:489 #: ../../library/Class/AdminVar.php:490 #: ../../library/ZendAfi/View/Helper/TagListeCoches.php:278 +#: ../../library/Class/AdminVar.php:497 msgid "Portail" msgstr "Portal" @@ -21825,7 +21996,7 @@ msgstr "Portal" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:250 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:156 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 #, fuzzy msgid "Position" msgstr "PaginaÅ£ie" @@ -21843,7 +22014,7 @@ msgstr "Rezultatul căutarii" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 #, fuzzy msgid "Position de la pagination en résultat de recherche" msgstr "Rezultatul căutarii" @@ -22153,6 +22324,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:292 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -22633,6 +22805,16 @@ msgstr "Rezultatul căutarii" msgid "Prêt" msgstr "ÃŽmprumut" +#: ../../library/Class/Feature/List.php:475 +msgid "Prêt Numérique en Bibliothqe avec diliCOM" +msgstr "" + +#: ../../library/Class/Feature/List.php:476 +msgid "" +"Prêt Numérique en Bibliothèque (PNB) est un dispositif interprofessionnel " +"d'accès à la lecture numérique en bibliothèques publiques." +msgstr "" + #: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 #, fuzzy msgid "Prêt introuvable" @@ -23463,6 +23645,7 @@ msgstr "Resurse OAI" #: ../../library/Class/Codification.php:232 #: ../../library/Class/Codification.php:232 #: ../../library/Class/Profil/Preferences/SearchResult.php:54 +#: ../../library/Class/Feature/List.php:479 #, fuzzy msgid "Ressources numériques" msgstr "Resurse OAI" @@ -23491,6 +23674,7 @@ msgstr "" #: ../../library/Class/ModeleFusion.php:77 #: ../../library/Class/ModeleFusion.php:77 +#: ../../library/Class/ModeleFusion.php:101 #, fuzzy msgid "Resultats de recherche" msgstr "Rezultatul căutarii" @@ -23513,6 +23697,11 @@ msgstr "AfiÅŸează mai multe instrucÅ£iuni" msgid "Retirer le critère: %s" msgstr "Modificare bibliotecă: %s" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:98 +#, fuzzy +msgid "Retirer toute les notices présente dans votre sélection" +msgstr "ChioÅŸc de instrucÅ£iuni" + #: ../../library/Class/WebService/SIGB/Dynix/TitleInfoResponseReader.php:172 msgid "Retiré" msgstr "" @@ -23694,6 +23883,7 @@ msgstr "Gestionare biblioteci" #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 #: ../../library/ZendAfi/View/Helper/Search/Header.php:104 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:99 msgid "Retour à la recherche initiale" msgstr "ÃŽntoarcere la căutarea iniÅ£ială" @@ -24461,6 +24651,7 @@ msgstr "SecÅ£ie" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:180 #, fuzzy, php-format msgid "Section: %s" msgstr "SecÅ£ii" @@ -24537,6 +24728,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:267 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:280 #: ../../library/Class/WebService/SIGB/AbstractRESTService.php:289 +#: ../../library/Class/WebService/SIGB/AbstractRESTService.php:297 #, fuzzy msgid "Service indisponible" msgstr "Serviciu indisponibil" @@ -24662,6 +24854,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:406 #: ../../library/Class/AdminVar.php:398 ../../library/Class/AdminVar.php:400 #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:395 +#: ../../library/Class/AdminVar.php:405 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -25181,6 +25374,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 #: ../../library/ZendAfi/View/Helper/Search/Header.php:136 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:127 msgid "Suggérer un achat" msgstr "" @@ -25295,7 +25489,7 @@ msgstr "ȘtergeÅ£i această rezervare" #: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:323 #: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:318 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:316 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:320 msgid "" "Supprime l'affichage du lien d'enregistrement dans les différents " "formulaires de connexion et interdit l'enregistrement d'utilisateurs" @@ -25429,6 +25623,7 @@ msgstr "Gestionare media" #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:67 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:71 #: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:66 +#: ../../application/modules/opac/views/scripts/recherche/viewnotice.phtml:70 #, fuzzy, php-format msgid "Supprimer et re-générer la vignette de la notice \"%s\"" msgstr "etichetă a instrucÅ£iunii" @@ -25650,6 +25845,21 @@ msgstr "SelecÅ£ie de site-uri" msgid "Sélection" msgstr "SecÅ£ie" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:58 +#, fuzzy +msgid "Sélection : " +msgstr "SecÅ£ie" + +#: ../../application/modules/opac/controllers/PanierController.php:229 +#, fuzzy, php-format +msgid "Sélection ajoutée dans le panier \"%s\"" +msgstr "Acest meniu nu conÅ£ine date" + +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 +#, fuzzy +msgid "Sélection courante" +msgstr "SecÅ£ie" + #: ../../library/Class/MultiSelection/Album.php:49 #: ../../library/Class/MultiSelection/Album.php:49 #, fuzzy @@ -25711,6 +25921,11 @@ msgstr "SecÅ£ie" msgid "Sélectionner \"%s\"" msgstr "Câmpuri selectate" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:34 +#, php-format +msgid "Sélectionner \"%s\" pour impression, export ou sauvegarde" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #, fuzzy @@ -25723,6 +25938,16 @@ msgstr "SelecÅ£ie de biblioteci" msgid "Sélectionner les groupes destinaires" msgstr "Acest meniu nu conÅ£ine date" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:151 +#, fuzzy +msgid "Sélectionner tous les résultats" +msgstr "SelecÅ£ie de site-uri" + +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:115 +#, fuzzy +msgid "Sélectionner toute la page" +msgstr "Acest meniu nu conÅ£ine date" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:78 #, fuzzy @@ -25872,7 +26097,7 @@ msgstr "Dimensiune :" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:425 ../../library/Class/AdminVar.php:428 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:423 -#: ../../library/Class/AdminVar.php:417 +#: ../../library/Class/AdminVar.php:417 ../../library/Class/AdminVar.php:427 msgid "Taille du dossier userfiles en méga octets." msgstr "" @@ -26085,7 +26310,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:322 #: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:318 ../../library/Class/AdminVar.php:315 -#: ../../library/Class/AdminVar.php:310 +#: ../../library/Class/AdminVar.php:310 ../../library/Class/AdminVar.php:319 msgid "Texte d'aide affiché dans la fiche abonné" msgstr "" @@ -26118,6 +26343,7 @@ msgstr "Eroare de configurare" #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:296 #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:297 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 " @@ -26130,6 +26356,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:295 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 " @@ -26147,7 +26374,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:315 ../../library/Class/AdminVar.php:317 #: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:312 #: ../../library/Class/AdminVar.php:313 ../../library/Class/AdminVar.php:310 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:314 msgid "Texte visible après l'envoi d'e-mail de demande de réservation." msgstr "" @@ -26156,7 +26383,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:314 ../../library/Class/AdminVar.php:316 #: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:311 #: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:309 -#: ../../library/Class/AdminVar.php:304 +#: ../../library/Class/AdminVar.php:304 ../../library/Class/AdminVar.php:313 msgid "Texte visible par l'internaute après son inscription." msgstr "" @@ -26427,6 +26654,7 @@ msgstr "Criterii de selecÅ£ie" #: ../../library/ZendAfi/Form/Configuration/Loans.php:30 #: ../../library/Class/Profil/Preferences/Loans.php:396 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:54 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Titre" msgstr "Titlu" @@ -27039,6 +27267,7 @@ msgstr "Tip de document : %s " #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:202 #: ../../library/ZendAfi/Form/AdvancedSearch.php:65 #: ../../library/ZendAfi/View/Helper/LegacyAdvancedSearch.php:123 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Type de document" msgstr "Tip de document" @@ -27483,7 +27712,7 @@ msgstr "Biografii" #: ../../library/Class/AdminVar.php:334 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:331 #: ../../library/Class/AdminVar.php:332 ../../library/Class/AdminVar.php:329 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:333 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "" @@ -27547,7 +27776,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:330 ../../library/Class/AdminVar.php:332 #: ../../library/Class/AdminVar.php:335 ../../library/Class/AdminVar.php:327 #: ../../library/Class/AdminVar.php:328 ../../library/Class/AdminVar.php:325 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:329 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "" @@ -27682,6 +27911,7 @@ msgstr "Tocmai v-a fost trimis un email cu datele dvs. de conectare." #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:313 #: ../../library/Class/ModeleFusion.php:328 +#: ../../library/Class/ModeleFusion.php:353 #, php-format msgid "Un modèle a déjà le même nom : %s" msgstr "" @@ -27918,7 +28148,7 @@ msgstr "Plan de acces" #: ../../library/Class/AdminVar.php:339 ../../library/Class/AdminVar.php:341 #: ../../library/Class/AdminVar.php:344 ../../library/Class/AdminVar.php:336 #: ../../library/Class/AdminVar.php:337 ../../library/Class/AdminVar.php:334 -#: ../../library/Class/AdminVar.php:329 +#: ../../library/Class/AdminVar.php:329 ../../library/Class/AdminVar.php:338 msgid "Url d'import d'un agenda TYPO3" msgstr "" @@ -27943,6 +28173,7 @@ msgstr "Tip de căutare" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:418 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:415 #: ../../library/Class/AdminVar.php:416 ../../library/Class/AdminVar.php:410 +#: ../../library/Class/AdminVar.php:420 msgid "Url du connecteur Le Social" msgstr "" @@ -28435,12 +28666,14 @@ msgstr "" #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 +#: ../../application/modules/opac/controllers/PanierController.php:247 #, fuzzy msgid "Veuillez choisir un panier" msgstr "Trebuie să introduceÅ£i un titlu " #: ../../application/modules/opac/controllers/PanierController.php:211 #: ../../application/modules/opac/controllers/PanierController.php:211 +#: ../../application/modules/opac/controllers/PanierController.php:243 #, fuzzy msgid "Veuillez choisir une notice" msgstr "Trebuie să introduceÅ£i un titlu " @@ -28552,6 +28785,11 @@ msgstr "" msgid "Vider" msgstr "Validare" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:94 +#, fuzzy +msgid "Vider la sélection" +msgstr "Validare selecÅ£ie" + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:16 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:14 @@ -28836,6 +29074,11 @@ msgstr "VedeÅ£i instrucÅ£iunea" msgid "Voir la réponse." msgstr "VedeÅ£i instrucÅ£iunea" +#: ../../library/ZendAfi/View/Helper/TagSelectRecord.php:162 +#, fuzzy +msgid "Voir la sélection" +msgstr "Validare selecÅ£ie" + #: ../../application/modules/admin/views/scripts/feature/index.phtml:64 #: ../../application/modules/admin/views/scripts/feature/index.phtml:75 #, fuzzy, php-format @@ -28880,6 +29123,7 @@ msgstr "Rezultatul căutarii" #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:66 #, fuzzy msgid "Voir le résultat de recherche complet" msgstr "Rezultatul căutarii" @@ -30031,6 +30275,7 @@ msgstr "Nu aÅ£i introdus o solicitare." #: ../../application/modules/opac/controllers/PanierController.php:221 #: ../../application/modules/opac/controllers/PanierController.php:221 +#: ../../application/modules/opac/controllers/PanierController.php:253 #, fuzzy, php-format msgid "Vous n'avez pas le droit de modifier le panier %s" msgstr "Nu aÅ£i introdus o solicitare." @@ -30336,6 +30581,18 @@ msgstr "" msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "" +#: ../../library/Class/AdminVar.php:356 +msgid "" +"WS KOHA : Réservation d'exemplaires pour les multi sites à l'exemplaire. " +"(Uniquement \"HoldItem\")" +msgstr "" + +#: ../../library/Class/AdminVar.php:357 +msgid "" +"WS KOHA : Tentative de réservation à l'exemplaires puis à la notice. " +"(\"HoldItem\" puis \"HoldTitle\")" +msgstr "" + #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 #: ../../application/modules/opac/views/scripts/bib/zoneview.phtml:26 msgid "Web" @@ -30717,22 +30974,30 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:37 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:38 #, fuzzy, php-format msgid "dans la serie : %s" msgstr "CoÅŸurile dvs." #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:32 #, fuzzy, php-format msgid "dans le catalogue : %s" msgstr "Se indexează articolul din catalog?" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:33 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:35 #, fuzzy, php-format msgid "dans le panier : %s" msgstr "CoÅŸurile dvs." +#: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:30 +#, fuzzy +msgid "dans ma sélection" +msgstr "Criterii de selecÅ£ie" + #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 #: ../../library/ZendAfi/View/Helper/Notice/Flags.php:39 #, fuzzy @@ -31953,6 +32218,8 @@ msgstr "Sursă :" #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 #: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:26 +#: ../../library/ZendAfi/View/Helper/TagTitreEtNombreDeResultats.php:69 +#: ../../library/ZendAfi/View/Helper/TagSearchTerm.php:29 #, fuzzy, php-format msgid "pour : %s" msgstr "Sursă :" @@ -32765,10 +33032,6 @@ msgstr "" #~ msgid "Afficher le profil courant dans la barre de navigation" #~ msgstr "AfiÅŸează bara de navigaÅ£ie" -#, fuzzy -#~ msgid "Ajout d'une notice à un panier" -#~ msgstr "Adaugă instrucÅ£iunea în coÅŸ" - #, fuzzy #~ msgid "Ajout panier" #~ msgstr "Adaugă în coÅŸ" @@ -33159,10 +33422,6 @@ msgstr "" #~ msgid "Mode de sélection" #~ msgstr "Criterii de selecÅ£ie" -#, fuzzy -#~ msgid "Mode sélection" -#~ msgstr "Criterii de selecÅ£ie" - #, fuzzy #~ msgid "Modifer les informations du panier" #~ msgstr "Modificare titlu coÅŸ" @@ -33477,10 +33736,6 @@ msgstr "" #~ msgid "Visualisations de notices" #~ msgstr "Vizualizare instrucÅ£iuni" -#, fuzzy -#~ msgid "Voir la sélection" -#~ msgstr "Validare selecÅ£ie" - #, fuzzy #~ msgid "Voir les " #~ msgstr "VedeÅ£i planul" diff --git a/public/opac/css/global.css b/public/opac/css/global.css index 516939685e4b3a505a9418d65e655e6ab5b58f4a..9399658dc5a93d39f84b6330696aa34c1bf8d4ab 100644 --- a/public/opac/css/global.css +++ b/public/opac/css/global.css @@ -1558,7 +1558,23 @@ body.abonne_multimedia-hold-view .actions a { } -.recherche_actions, .search_extensions { +.record-selection > a { + background: url(../images/buttons/burger_dots.png) no-repeat right 5px center; + padding-right: 20px; +} + + +.record-selection ul { + position: absolute; + background: white; + margin: 0; + list-style: none; + padding: 0 5px 5px 5px; + display: none; +} + + +.recherche_actions, .record-selection, .search_extensions { margin-top: 10px; clear: both; } @@ -2072,7 +2088,8 @@ div.suggestion-achat-liste dl{ } -.vignette_lien_panier { +.vignette_lien_panier, +.vignette_select_record { clear:both; float: right; margin-top:5px; @@ -2493,7 +2510,7 @@ button.vodeclic_link + img { background: url(../images/bouton/partager.png) no-repeat center center; } -.barre-de-lien li:first-child+li+li+li{ +.barre-de-lien li.add_to_cart { background: url(../../admin/images/picto/paniers_16.png) no-repeat center center; } diff --git a/public/opac/images/buttons/burger_dots.png b/public/opac/images/buttons/burger_dots.png new file mode 100644 index 0000000000000000000000000000000000000000..761e09d42436abc7021a10fd9be8a78c0a2893f8 Binary files /dev/null and b/public/opac/images/buttons/burger_dots.png differ diff --git a/scripts/emacs/phafi-mode.el b/scripts/emacs/phafi-mode.el index 8047e84e9612191b275dd47227f9e61ca66cff10..f7621c5e8b5a28fe60320a23e4729e855ae6ab7a 100644 --- a/scripts/emacs/phafi-mode.el +++ b/scripts/emacs/phafi-mode.el @@ -666,6 +666,7 @@ "update mysql.proc set definer='root@localhost';" "replace into bib_admin_var (clef, valeur) values('ENABLE_COLLABORATIVE_BROWSING', '0');" "replace into bib_admin_var (clef, valeur) values('STATUS_REPORT_PUSH_URL', 'no');" + "replace into bib_admin_var (clef, valeur) values('FORCE_HTTPS', '0');" "drop trigger datemaj_notices_update;") mysql-connection-info) diff --git a/tests/application/modules/admin/controllers/LieuControllerTest.php b/tests/application/modules/admin/controllers/LieuControllerTest.php index eb86104220b8794b1530990ff62400ee057ce60b..638832ff8c484024858aa5d4241edf7cc20706e3 100644 --- a/tests/application/modules/admin/controllers/LieuControllerTest.php +++ b/tests/application/modules/admin/controllers/LieuControllerTest.php @@ -25,6 +25,7 @@ abstract class LieuControllerTestCase extends AbstractControllerTestCase { parent::setUp(); Class_AdminVar::set('ACTIVITY', 0); + $this->afi_annecy = $this->fixture('Class_Lieu', ['id' => 3, 'libelle' => 'AFI Annecy', @@ -43,12 +44,6 @@ abstract class LieuControllerTestCase extends AbstractControllerTestCase { 'latitude' => '48,825853', 'longitude' => '2,630163']); } - - - public function tearDown() { - Class_AdminVar::set('STATIC_MAP', Class_Map::GOOGLE_API); - parent::tearDown(); - } } @@ -287,12 +282,6 @@ class LieuControllerEditAnnecyTest extends LieuControllerTestCase { public function villeShouldContainsAnnecy() { $this->assertXPath('//input[@name="ville"][@value="Annecy"]'); } - - - /** @test */ - public function pageShouldContainsStaticGoogleImage() { - $this->assertXPath('//img[@src="https://maps.googleapis.com/maps/api/staticmap?sensor=false¢er=11%2C+boulevard+du+fier%2C74000%2CAnnecy%2CFrance&markers=11%2C+boulevard+du+fier%2C74000%2CAnnecy%2CFrance&zoom=15&size=200x200"]'); - } } @@ -317,8 +306,8 @@ class LieuControllerEditLognesTest extends LieuControllerTestCase { /** @test */ - public function pageShouldContainsStaticGoogleImage() { - $this->assertXPath('//img[@src="https://maps.googleapis.com/maps/api/staticmap?sensor=false¢er=48%2C825853%2C2%2C630163&markers=48%2C825853%2C2%2C630163&zoom=15&size=200x200"]', + public function pageShouldContainsStaticImage() { + $this->assertXPath('//img[@src="https://smap.afi-sa.net/staticmap.php?center=48%2C825853%2C2%2C630163&markers=48%2C825853%2C2%2C630163&zoom=15&size=200x200"]', $this->_response->getBody()); } } @@ -523,7 +512,6 @@ class LieuControllerUpdateCoordinatesForLocationActionTest extends LieuControlle class LieuControllerStaticMapOsmTest extends LieuControllerTestCase { public function setUp() { parent::setUp(); - Class_AdminVar::set('STATIC_MAP', Class_Map::OSM_API); $this->afi_annecy->setLatitude('45.798789') ->setLongitude('6.456123'); $this->dispatch('/admin/lieu/edit/id/3', true); @@ -532,7 +520,7 @@ class LieuControllerStaticMapOsmTest extends LieuControllerTestCase { /** @test */ public function pageShouldContainsStaticOSMImage() { - $this->assertXPath('//img[@src="http://staticmap.openstreetmap.de/staticmap.php?center=45.798789%2C6.456123&markers=45.798789%2C6.456123&zoom=15&size=200x200"]', + $this->assertXPath('//img[@src="https://smap.afi-sa.net/staticmap.php?center=45.798789%2C6.456123&markers=45.798789%2C6.456123&zoom=15&size=200x200"]', $this->_response->getBody()); } } \ No newline at end of file diff --git a/tests/application/modules/opac/controllers/AbonneControllerActivitiesTest.php b/tests/application/modules/opac/controllers/AbonneControllerActivitiesTest.php index aad574bb0c609e3de6e2d5f7938e77f1f07be8ca..752d13fd0eaaaf33fd2a8b0b4be31f93a0edc0dc 100644 --- a/tests/application/modules/opac/controllers/AbonneControllerActivitiesTest.php +++ b/tests/application/modules/opac/controllers/AbonneControllerActivitiesTest.php @@ -993,7 +993,7 @@ class AbonneControllerActivitiesSessionFevrierJavaTest extends AbstractAbonneCon /** @test */ - function ddShouldContainsAdresseBonlieu() { + public function ddShouldContainsAdresseBonlieu() { $this->assertXPathContentContains('//dd', 'Bonlieu'); $this->assertXPathContentContains('//dd', '1, rue Jean-Jaures'); $this->assertXPathContentContains('//dd', '74007 Annecy'); @@ -1001,8 +1001,8 @@ class AbonneControllerActivitiesSessionFevrierJavaTest extends AbstractAbonneCon /** @test */ - function ddShouldContainsGoogleMap() { - $this->assertXPath('//dd//img[@src="https://maps.googleapis.com/maps/api/staticmap?sensor=false¢er=45.902179%2C6.128715&markers=45.902179%2C6.128715&zoom=15&size=300x300"]'); + public function ddShouldContainsStaticMap() { + $this->assertXPath('//dd//img[@src="https://smap.afi-sa.net/staticmap.php?center=45.902179%2C6.128715&markers=45.902179%2C6.128715&zoom=15&size=300x300"]'); } } diff --git a/tests/application/modules/opac/controllers/ActivitiesControllerTest.php b/tests/application/modules/opac/controllers/ActivitiesControllerTest.php index 7eba5cbc44c0751f8b3ada5894ce5a3d404d798b..94ce8f1958ff246dfc5620e92e5de3324f94ba90 100644 --- a/tests/application/modules/opac/controllers/ActivitiesControllerTest.php +++ b/tests/application/modules/opac/controllers/ActivitiesControllerTest.php @@ -103,7 +103,7 @@ class ActivitiesControllerActivitiesSessionFevrierJavaTest extends AbstractActiv /** @test */ public function pageShouldContainsPopupLinkToInscrire() { $this->assertXPathContentContains('//a[contains(@href, "auth/popup-login/")]', - 'S\'inscrire', $this->_response->getBody()); + 'S\'inscrire'); } @@ -114,7 +114,7 @@ class ActivitiesControllerActivitiesSessionFevrierJavaTest extends AbstractActiv /** @test */ - function ddShouldContainsAdresseBonlieu() { + public function ddShouldContainsAdresseBonlieu() { $this->assertXPathContentContains('//dd', 'Bonlieu'); $this->assertXPathContentContains('//dd', '1, rue Jean-Jaures'); $this->assertXPathContentContains('//dd', '74007 Annecy'); @@ -122,8 +122,8 @@ class ActivitiesControllerActivitiesSessionFevrierJavaTest extends AbstractActiv /** @test */ - function ddShouldContainsGoogleMap() { - $this->assertXPath('//dd//img[@src="https://maps.googleapis.com/maps/api/staticmap?sensor=false¢er=45.902179%2C6.128715&markers=45.902179%2C6.128715&zoom=15&size=300x300"]'); + public function ddShouldContainsStaticMap() { + $this->assertXPath('//dd//img[@src="https://smap.afi-sa.net/staticmap.php?center=45.902179%2C6.128715&markers=45.902179%2C6.128715&zoom=15&size=300x300"]'); } } diff --git a/tests/application/modules/opac/controllers/CmsControllerTest.php b/tests/application/modules/opac/controllers/CmsControllerTest.php index 0ecf66622edfc2be6361ddbd0a936f3346b298ea..feef5c25d60d76932ef266a482d8d7b791b14e19 100644 --- a/tests/application/modules/opac/controllers/CmsControllerTest.php +++ b/tests/application/modules/opac/controllers/CmsControllerTest.php @@ -823,7 +823,9 @@ abstract class CmsControllerWithFeteDeLaFriteTestCase extends AbstractController ['id' => '4156465', 'libelle' => 'Annecy', 'adresse' => 'Rue des tomates', - 'code_postal' => '74000']); + 'code_postal' => '74000', + 'latitude' => '45.9262592', + 'longitude' => '6.1459837']); $alimentaire = $this->fixture ( 'Class_ArticleCategorie', ['id' => 1, 'libelle' => 'Alimentaire', @@ -1148,7 +1150,7 @@ class CmsControllerArticleViewTest extends CmsControllerWithFeteDeLaFriteTestCas /** @test */ - function withCurrentLocaleEnShouldReturnEnglishTranslation() { + public function withCurrentLocaleEnShouldReturnEnglishTranslation() { $this->bootstrap(); Zend_Registry::get('session')->language = 'en'; $this->dispatch('/cms/articleview/id/224'); @@ -1163,14 +1165,14 @@ class CmsControllerArticleViewTest extends CmsControllerWithFeteDeLaFriteTestCas /** @test */ - function divShouldContainsAdresseBonlieu() { + public function divShouldContainsAdresseBonlieu() { $this->assertXPathContentContains('//div[@class="lieu"]', 'Annecy'); } /** @test */ - function divShouldContainsGoogleMap() { - $this->assertXPath('//div[@class="lieu"]//img[contains(@src,"https://maps.googleapis.com/maps")]'); + public function divShouldContainsStaticMap() { + $this->assertXPath('//div[@class="lieu"]//img[contains(@src,"https://smap.afi-sa.net/staticmap.php")]'); } diff --git a/tests/application/modules/opac/controllers/PanierControllerTest.php b/tests/application/modules/opac/controllers/PanierControllerTest.php index 18791e37ccd42f9670743f8224f32f669653cc0f..8ae056dded830f19986cc6bb28bb83303be23037 100644 --- a/tests/application/modules/opac/controllers/PanierControllerTest.php +++ b/tests/application/modules/opac/controllers/PanierControllerTest.php @@ -118,10 +118,11 @@ abstract class PanierControllerTestCase extends AbstractControllerTestCase { 'panier_notice_catalogues' => [$panier_domaine_histoire]])) ->setCatalogue($this->fixture('Class_Catalogue', ['id' => 97, - 'libelle' => 'histoire'])) + 'libelle' => 'histoire', + 'indexer' => 1, + 'auteur' => '1'])) ->save(); - $panier_domaine_bd = $this->fixture('Class_PanierNoticeCatalogue', ['id' => 72]); $panier_domaine_bd @@ -252,15 +253,20 @@ class PanierControllerAsSimpleUserActionTest extends PanierControllerSimpleLogge $this->dispatch('/opac/panier', true); } + + /** @test */ public function panierDomaineBDShouldBeVisibleForSimpleUser() { $this->assertXPathCount('//td[contains(text(), "Mes BD")]', 1,$this->_response->getBody()); } + /** @test */ public function forInviteShouldContainsOnePanier() { $this->assertXPathCount('//span[contains(text(), "Vous avez 1 panier")]', 1); } + + /** @test */ public function panierDomaineSelectionJeunesseShouldNotBeVisibleForSimpleUser() { $this->assertNotXPathCount('//td[contains(text(), "selection jeunesse")]', 1,$this->_response->getBody()); @@ -274,9 +280,7 @@ class PanierControllerIndexAsRedacteurActionTest extends PanierControllerTestCas parent::setUp(); $this->manon->changeRoleTo(ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL); - $this->dispatch('/opac/panier', true); - } @@ -286,6 +290,7 @@ class PanierControllerIndexAsRedacteurActionTest extends PanierControllerTestCas 'Vous avez 2 paniers'); } + /** @test */ public function panierDomaineShouldContainLinkToCreerPanier(){ $this->assertNotXPath('//a[contains(@href,"panier/creer-panier")]',$this->response->getBody()); @@ -320,6 +325,7 @@ class PanierControllerIndexWithPanierIdFifteenTest extends PanierControllerTestC $this->assertAction('index'); } + /** @test */ public function panierMesBDShouldBeVisible() { $this->assertQueryContentContains('td', 'Mes BD'); @@ -593,6 +599,25 @@ class PanierControllerAjoutNoticeBlackSadToPanierDomaineHistoireTest extends Pan +class PanierControllerAjoutNoticeBlackSadToPanierDomaineHistoirePostTest extends PanierControllerTestCase { + public function setUp() { + parent::setUp(); + $this->manon + ->changeRoleTo(ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL) + ->setPanierCourant(Class_PanierNotice::find(38)); + $this->postDispatch('/panier/add-record-ajax/id_notice/12', []); + Class_PanierNotice::clearCache(); + } + + /** @test */ + public function cardDomainShouldBeIndexedInRecord() { + $this->assertContains('Q97', Class_Notice::find(12)->getFacettes()); + } +} + + + + class PanierControllerModifierTitrePanierMesRomansToMesLivresTest extends PanierControllerTestCase { public function setUp() { parent::setUp(); @@ -1076,7 +1101,7 @@ class PanierControllerAjouterNoticeDansBoitePanierTest extends AbstractControlle } /** @test */ - public function contextShouldExpectation() { + public function postDispatchIdNotice4ShouldaddLeMontespanToMyCart() { $panier = $this->fixture('Class_PanierNotice', ['id' => 1, 'titre' => 'my cart', @@ -1793,7 +1818,7 @@ class PanierControllerSwitchAjaxPostActionTest extends PanierControllerSimpleLog /** @test */ public function shouldRedirect() { - $this->assertRedirectTo('http://localhost' . BASE_URL . '/panier/add-record-ajax'); + $this->assertRedirectTo('/panier/add-record-ajax'); } } diff --git a/tests/application/modules/opac/controllers/RechercheControllerPrintActionTest.php b/tests/application/modules/opac/controllers/RechercheControllerPrintActionTest.php index a912af20b20c2ed63ca82f0b859f405b9fdcd747..2a493eeae163fe7de9a19f42befa25d00430478d 100644 --- a/tests/application/modules/opac/controllers/RechercheControllerPrintActionTest.php +++ b/tests/application/modules/opac/controllers/RechercheControllerPrintActionTest.php @@ -30,31 +30,28 @@ class RechercheControllerPrintActionLinkTest extends AbstractControllerTestCase 'contenu' => '<p> {notices.each[<img src="{url_vignette}"/> {titre_principal} <div>{article.contenu}</div> ]}</p>', 'type' => 'Notice_List']); - - $this->fixture('Class_Catalogue', - ['id'=>3, - 'libelle' => 'Nouveautés', - 'auteur' => 'Paul']); - $mock_sql = $this->mock() ->whenCalled('fetchAll') - ->with("select id_notice, facettes from notices Where MATCH(facettes) AGAINST('+(APaul)' IN BOOLEAN MODE) order by annee desc", true, false) - ->answers([ [1, ''] ]) - - ->whenCalled('fetchAll') - ->answers([$this->fixture('Class_Notice', - ['id' => 1])->toArray()]) - ->beStrict(); + ->answers([ [1, ''] ]); Zend_Registry::set('sql', $mock_sql); - $this->dispatch('/recherche/simple/id_catalogue/3/id_module/9/aleatoire/1', true); + $this->dispatch('/recherche/simple/expressionRecherche/pomme/facettes/T3/tri/*', true); } /** @test */ - public function printLinkShouldBePresent() { - $this->assertXPathContentContains('//a[contains(@href, "/recherche/print/id_catalogue/3/id_module/9/aleatoire/1/ids/1/subject/pour+%3A+/strategy/Notice_List/modele_fusion/1")][@target="_blank"]', - 'Imprimer'); + public function pageShouldContainsPrintLinkWithSearchCriteria() { + $this->assertXPathContentContains('//a[contains(@href, "/recherche/print/expressionRecherche/pomme/facettes/T3/tri/%2A")][@target="_blank"]', + 'Imprimer', + $this->_response->getBody()); + } + + + /** @test */ + public function pageShouldContainsSendMailLinkWithSearchCriteria() { + $this->assertXPathContentContains('//a[@href="/recherche/send-mail/expressionRecherche/pomme/facettes/T3/tri/%2A"]', + 'Partager par email', + $this->_response->getBody()); } } @@ -66,11 +63,6 @@ class RechercheControllerPrintActionWithRecordsTest extends AbstractControllerTe public function setUp() { parent::setUp(); - $this->fixture('Class_ModeleFusion', ['id' => 1, - 'nom' => 'recherche', - 'contenu' => '<p> {notices.each[<img src="{url_vignette}"/> <h1>{titre_principal}</h1> <div>{article.contenu}</div> <div>{resume}</div> -]}</p>']); - Class_Indexation_PseudoNotice::index( $this->fixture('Class_Article' , ['id' => 10, 'titre' => 'pomme', 'contenu' => '<p>blabla</p>', @@ -84,7 +76,27 @@ class RechercheControllerPrintActionWithRecordsTest extends AbstractControllerTe 'notice' => new Class_Notice(), 'type_doc_id' => Class_TypeDoc::ARTICLE])); - $this->dispatch("/recherche/print/expressionRecherche/pomme/strategy/Notice_List/ids/2;1/modele_fusion/1",true); + $mock_sql = $this->mock() + ->whenCalled('fetchAll') + ->with("select id_notice, facettes from notices Where MATCH(titres, auteurs, editeur, collection, matieres, dewey) AGAINST('+(POMME POMMES POM)' IN BOOLEAN MODE) and MATCH(facettes) AGAINST('+T3' IN BOOLEAN MODE) order by (MATCH(alpha_titre) AGAINST(' POMME') * 1.5) + (MATCH(alpha_auteur) AGAINST(' POMME')) desc", + true, + false) + ->answers([ + [2, ''], + [1, ''] + ]) + ->beStrict(); + Zend_Registry::set('sql', $mock_sql); + + $this->fixture('Class_ModeleFusion', ['id' => 1, + 'nom' => 'recherche', + 'contenu' => '<p> {notices.each[<img src="{url_vignette}"/> <h1>{titre_principal}</h1> <div>{article.contenu}</div> <div>{resume}</div> +]}</p>', + 'type' => 'Notice_List']); + + + + $this->dispatch("/recherche/print/expressionRecherche/pomme/facettes/T3/tri/*",true); } @@ -109,7 +121,7 @@ class RechercheControllerPrintActionWithRecordsTest extends AbstractControllerTe /** @test */ public function contenuShouldContainsTransmetropolitan() { - $this->assertXPathContentContains("//div//h1[1]", "transmetropolitan"); + $this->assertXPathContentContains("//h1[1]", "transmetropolitan", $this->_response->getBody()); } @@ -128,7 +140,7 @@ class RechercheControllerPrintActionWithRecordsTest extends AbstractControllerTe -class RechercheControllerViewNoticePrintActionWithRecordsTest extends AbstractControllerTestCase { +class RechercheControllerPrintActionViewNoticeWithRecordsTest extends AbstractControllerTestCase { protected $_storm_default_to_volatile = true; public function setUp() { @@ -141,7 +153,7 @@ class RechercheControllerViewNoticePrintActionWithRecordsTest extends AbstractCo <div>{notice.resume} </div> {notice.avis[<p>{avis}</p>]} </p>', - 'type' => 'Notice_View']); + 'type' => Class_ModeleFusion::RECORD_TEMPLATE]); Class_Indexation_PseudoNotice::index( $this->fixture('Class_Article' , ['id' => 12, diff --git a/tests/application/modules/opac/controllers/RechercheControllerTest.php b/tests/application/modules/opac/controllers/RechercheControllerTest.php index d1b3bc7f4fb2a7abf8e0406cc31cc400e01c1c1d..da6e83cb7ed758fd08c3dcdf1377c90ba0b00b1e 100644 --- a/tests/application/modules/opac/controllers/RechercheControllerTest.php +++ b/tests/application/modules/opac/controllers/RechercheControllerTest.php @@ -18,7 +18,6 @@ * along with BOKEH; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -require_once 'AbstractControllerTestCase.php'; abstract class RechercheControllerNoticeTestCase extends AbstractControllerTestCase { protected $_storm_default_to_volatile = true; @@ -110,7 +109,7 @@ class RechercheControllerPrintTest extends RechercheControllerNoticeTestCase { {notice.avis[<p>{avis}</p>]} </p>', 'profil_ids' => '3;4', - 'type' =>'Notice_View']); + 'type' => Class_ModeleFusion::RECORD_TEMPLATE]); Class_AdminVar::newInstanceWithId('BABELTHEQUE_JS')->setValeur(''); } @@ -1903,25 +1902,6 @@ class RechercheControllerSimpleActionWithListeFormatChronoTest extends Recherche -class RechercheControllerSimpleActionWithListeFormatAccordeonTest extends RechercheControllerSimpleActionListeFormatTestCase { - protected $_liste_format = Class_Systeme_ModulesAppli::LISTE_FORMAT_ACCORDEON; - - - public function setUp() { - parent::setUp(); - $this->dispatch('/recherche/simple/expressionRecherche/potter/facettes/T1/facette/B1/page/2', true); - } - - - /** @test */ - public function ajaxToGetNotice() { - $this->assertXPath('//img[contains(@onclick, "getNoticeAjax")]'); - } -} - - - - class RechercheControllerSimpleActionWithListeFormatTableauTest extends RechercheControllerSimpleActionListeFormatTestCase { protected $_liste_format = Class_Systeme_ModulesAppli::LISTE_FORMAT_TABLEAU; diff --git a/tests/db/UpgradeDBTest.php b/tests/db/UpgradeDBTest.php index 833654beb9a8458ed78d0b07a4198c718f6d20e5..706d9e1b1ec0187364872b4ca917b8b2dbea9944 100644 --- a/tests/db/UpgradeDBTest.php +++ b/tests/db/UpgradeDBTest.php @@ -2223,24 +2223,61 @@ class UpgradeDB_353_Test extends UpgradeDBTestCase { class UpgradeDB_354_Test extends UpgradeDBTestCase { public function prepare() { - $this->query('replace into bib_admin_var (clef, valeur) values - ("MATOMO_AUTH_TOKEN", ""), - ("PIWIK_AUTH_TOKEN", "TESTAUTH"), - ("JS_STAT", "<script> http://piwik.biblibre.com</script>")'); + $this->silentQuery('alter table codif_emplacement ' + .'change id_emplacement id_emplacement smallint not null auto_increment,' + .'change libelle libelle varchar(50) not null'); } - /** @test */ - public function piwikBecomeMatomo() { - $this->assertEquals("TESTAUTH", $this->query('select valeur from bib_admin_var where clef = "MATOMO_AUTH_TOKEN"')->fetch()['valeur']); + public function datas() { + return + [ + ['mail_site', 'varchar(255)'], + ['libelle', 'varchar(255)'], + ['commentaire', 'mediumtext'] + ]; + } + + /** + * @test + */ + public function codifEmplacementIDShouldBeMigratedToInteger() { + $this->assertFieldType('codif_emplacement', 'id_emplacement', 'int(11)'); + } + + + /** + * @test + */ + public function codifEmplacementLibelleShouldBeMigratedToVarchar255() { + $this->assertFieldType('codif_emplacement', 'libelle', 'varchar(255)'); + } +} + + + + +class UpgradeDB_355_Test extends UpgradeDBTestCase { + public function prepare() { + $this->silentQuery('update bib_admin_var set valeur="static.openstreetmap.de" where clef="STATIC_MAP"'); } /** @test */ - public function piwikBecomeJsMatomo() { - $data =$this->query('select valeur from bib_admin_var where clef = "JS_STAT"')->fetch(); - $this->assertContains('piwik.biblibre.com',$data['valeur']); + public function staticMapShouldDefaultToAfiServer() { + $datas = $this->query('select valeur from bib_admin_var where clef="STATIC_MAP"')->fetch(); + $this->assertEquals('https://smap.afi-sa.net/staticmap.php', + $datas['valeur']); } +} + + + +class UpgradeDB_356_Test extends UpgradeDBTestCase { + public function prepare() {} + + /** @test */ + public function placeholderForPiwikToMatomoMigrationPatch() {} } \ No newline at end of file diff --git a/tests/fixtures/numilog_with_deleted.xml b/tests/fixtures/numilog_with_deleted.xml new file mode 100644 index 0000000000000000000000000000000000000000..6389967fe97834bd4c424087c4cb2919c34be3f3 --- /dev/null +++ b/tests/fixtures/numilog_with_deleted.xml @@ -0,0 +1,105 @@ +<?xml version="1.0" encoding="UTF-8"?> +<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"> +<responseDate>2013-06-05T12:09:40Z</responseDate> +<request set="bib:495" verb="ListRecords" metadataPrefix="oai_dc">http://oai.numilog.com/OAI.ashx</request> +<ListRecords> +<record> + <header status="deleted"> + <identifier>oai:numilog.com:9782246804383</identifier> + <datestamp>2013-05-22T11:50:01Z</datestamp> + </header> +<metadata> +<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"> +<dc:identifier>oai:numilog.com:9782246804383</dc:identifier> +<dc:title><![CDATA[Combien veux-tu m'épouser ?]]></dc:title> +<dc:creator><![CDATA[Saphia Azzeddine]]></dc:creator> +<dc:publisher><![CDATA[Grasset]]></dc:publisher> +<dc:date>2013-05</dc:date> +<dc:description><![CDATA[<p align='justify'>Une île privée des Seychelles. Tatiana, « bécasse sentimentale », rencontre Philip, un garçon bien de sa personne ; ils sont beaux, elle est riche, ils s'aiment et décident de se marier. Leur histoire a tout du conte de fées, oui... mais celui-ci est écrit par Saphia Azzeddine, experte en démolitions.<br/>Des plages de sable fin aux coulisses du mariage, de Los Angeles à Paris, et de la meilleure copine à la femme de ménage, chaque personnage prend la parole, comme un chÅ“ur de pleureuses, et décrit ce couple en chemin vers l'autel. Sur la scène mondaine, les acteurs de cet univers d'ultra-riches et d'égoïstes liftés s'affrontent et s'esquivent dans une satire sociale aussi drôle que cruelle.</p>]]></dc:description> +<dc:subject>Littérature étrangère</dc:subject> +<dc:language>fre</dc:language> +<dc:rights xml:lang="fre">sous droits</dc:rights> +<dc:rights xml:lang="eng">right protected</dc:rights> +<dc:format>application/EPUB</dc:format> +<dc:relation>http://www.numilog.com/bibliotheque/BM-Enghien-les-Bains/fiche_livre.asp?idprod=330541</dc:relation> +</oai_dc:dc> +</metadata> +</record> +<record> +<header status="ok"> +<identifier>oai:numilog.com:9782246803195</identifier> +<datestamp>2013-05-22T11:50:01Z</datestamp> +</header> +<metadata> +<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"> +<dc:identifier>oai:numilog.com:9782246803195</dc:identifier> +<dc:title><![CDATA[Chroniques de New York]]></dc:title> +<dc:creator><![CDATA[Cécile David-Weill]]></dc:creator> +<dc:publisher><![CDATA[Grasset]]></dc:publisher> +<dc:date>2013-05</dc:date> +<dc:description><![CDATA[<p>New York, première destination touristique des Français, mais aussi mirage américain : une ville plus « cool », plus facile, plus rapide ?<br/>Il suffit de lire ces chroniques cocasses et surprenantes pour comprendre qu'il n'en est rien. Car l'auteur, qui y vit, nous livre une série de cas concrets et de problèmes, dont les réponses ne se trouvent dans aucun guide ! Quels sont les obstacles à surmonter pour ouvrir un compte en banque dans la « Grosse Pomme » ? Pourquoi est-ce un luxe d'y posséder un lave-linge ? Comment inscrire les enfants à l'école ? La copropriété est-elle une tyrannie ? Que se passe-t-il dans le bus en direction des Hamptons ?<br/>Dix illustrations éclairent d'un sourire à la <em>New Yorker</em> ces chroniques qui vous seront utiles, pour une semaine de vacances ou toute la vie.</p>]]></dc:description> +<dc:subject>Romans et Nouvelles</dc:subject> +<dc:language>fre</dc:language> +<dc:rights xml:lang="fre">sous droits</dc:rights> +<dc:rights xml:lang="eng">right protected</dc:rights> +<dc:format>application/EPUB</dc:format> +<dc:relation>http://www.numilog.com/bibliotheque/BM-Enghien-les-Bains/fiche_livre.asp?idprod=330540</dc:relation> +</oai_dc:dc> +</metadata> +</record> +<record> +<header status="deleted"> +<identifier>oai:numilog.com:9782212540147</identifier> +<datestamp>2010-12-17T15:59:42Z</datestamp> +</header> +<metadata> +<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"> +<dc:identifier>oai:numilog.com:9782212540147</dc:identifier> +<dc:title><![CDATA[Stress et burnout au travail]]></dc:title> +<dc:creator><![CDATA[Elisabeth Grebot]]></dc:creator> +<dc:publisher><![CDATA[Editions d'Organisation]]></dc:publisher> +<dc:date>20110707</dc:date> +<dc:description><![CDATA[<h4>Stressé, harcelé, "burnouté" ? +<br />26 questionnaires pour faire le point</h4> + +<p><strong>Trois salariés français sur quatre se disent stressés. Il est aujourd'hui reconnu que le travail est une source de stress. Mais que désigne le stress exactement ? Pourquoi survient-il ? Quand devient-il nocif ?</strong></p> + +<p>Ce guide dresse un état des lieux du stress au travail : ce qu'il est, ce qu'il n'est pas, ses manifestations, son coût pour l'entreprise, l'individu et la société... Il propose au lecteur un ensemble de questionnaires pour identifier son profil de stressé et l'invite notamment à distinguer le stress professionnel géré sainement de celui qui conduit au <em>burnout</em> ou au harcèlement moral.</p> + +<p>À l'entreprise, il suggère des pistes d'action pour mettre en place des modes d'organisation favorables à la santé physique et mentale des salariés. Au salarié stressé, il prescrit diverses techniques individuelles pour modérer son stress : la relaxation, l'exposition, la restructuration cognitive, etc.</p>]]></dc:description> +<dc:subject>Psychologie</dc:subject> +<dc:subject>Métiers et Formations</dc:subject> +<dc:subject>Management</dc:subject> +<dc:language>fre</dc:language> +<dc:rights xml:lang="fre">sous droits</dc:rights> +<dc:rights xml:lang="eng">right protected</dc:rights> +<dc:format>application/PDF</dc:format> +<dc:relation>http://www.numilog.com/bibliotheque/agglo-sqy/fiche_livre.asp?idprod=67312</dc:relation> +</oai_dc:dc> +</metadata> +</record> + +<record> +<header status="deleted"> +<identifier>oai:numilog.com:9782234074385</identifier> +<datestamp>2013-05-22T11:50:01Z</datestamp> +</header> +<metadata> +<oai_dc:dc xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/"> +<dc:identifier>oai:numilog.com:9782234074385</dc:identifier> +<dc:title><![CDATA[Quand les colombes disparurent]]></dc:title> +<dc:creator><![CDATA[Sofi Oksanen]]></dc:creator> +<dc:publisher><![CDATA[Stock]]></dc:publisher> +<dc:date>2013-05</dc:date> +<dc:description><![CDATA[Occupation, résistance et collaboration sont les ressorts de ce roman puissant, dans une Estonie prise tour à tour au piège des communistes et des Allemands. Pour répondre aux errances de l’Histoire, chacun devra choisir un camp, un chemin. Roland, le juste, combat sans relâche l’envahisseur ; son cousin Edgar, véritable caméléon, épouse successivement l’idéologie du pouvoir ; enfi n Juudit, sa femme, est écartelée entre son amour sincère pour un offi cier allemand et l’hypocrisie suffocante d’un mariage raté. Mais qui sera le vainqueur de cette lutte acharnée ?]]></dc:description> +<dc:subject>Littérature étrangère</dc:subject> +<dc:language>fre</dc:language> +<dc:rights xml:lang="fre">sous droits</dc:rights> +<dc:rights xml:lang="eng">right protected</dc:rights> +<dc:format>application/EPUB</dc:format> +<dc:relation>http://www.numilog.com/bibliotheque/BM-Enghien-les-Bains/fiche_livre.asp?idprod=330539</dc:relation> +</oai_dc:dc> +</metadata> +</record> +<resumptionToken completeListSize="75" cursor="71">769701498!500!oai_dc!bib:44!</resumptionToken> +</ListRecords></OAI-PMH> diff --git a/tests/library/Class/WebService/NumilogTest.php b/tests/library/Class/WebService/NumilogTest.php index a4a272971df06cce63dddd2145eb2477ece967ee..80239763c01192d4ae4daa0e5af368430072b834 100644 --- a/tests/library/Class/WebService/NumilogTest.php +++ b/tests/library/Class/WebService/NumilogTest.php @@ -19,7 +19,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -class NumilogTest extends ModelTestCase { +abstract class AbstractNumilogCatalogueTest extends ModelTestCase { protected $_storm_default_to_volatile = true; public function setUp() { @@ -33,18 +33,17 @@ class NumilogTest extends ModelTestCase { Class_AdminVar::newInstanceWithId('NUMILOG_URL', ['valeur' => 'http://numilog-oai-url']); Class_AdminVar::newInstanceWithId('NUMILOG_OAI_IDBIB', ['valeur' => '44']); - $catalogue_xml = file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/numilog_catalogue.xml'); $catalogue_end_xml = file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/numilog_end.xml'); $this->_http_client = $this->mock() ->whenCalled('open_url') ->with('http://numilog-oai-url?verb=ListRecords&metadataPrefix=oai_dc&set=bib%3A44') - ->answers($catalogue_xml) - + ->answers($this->_getXml()) + ->whenCalled('open_url') ->with('http://numilog-oai-url?verb=ListRecords&resumptionToken=769701498%21500%21oai_dc%21bib%3A44%21') ->answers($catalogue_end_xml) - + ->beStrict(); $codif_type_doc = $this->fixture('Class_CodifTypeDoc', @@ -78,7 +77,7 @@ class NumilogTest extends ModelTestCase { ->whenCalled('execTimedScript') ->answers('')); Class_WebService_BibNumerique_Numilog::setDefaultHttpClient($this->_http_client); - + $this->_numilog->harvest(''); $this->_first_livre_numerique = $this->_numilog->loadPage(1)->getRessourcesNumeriques()[0]; @@ -87,6 +86,9 @@ class NumilogTest extends ModelTestCase { $this->_third_album = $this->_numilog->getAlbums()[2]; } + protected function _getXml() { + return file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/numilog_catalogue.xml'); + } public function tearDown() { Class_WebService_BibNumerique_RessourceNumerique::setCommand(null); @@ -94,7 +96,10 @@ class NumilogTest extends ModelTestCase { parent::tearDown(); } +} + +class NumilogCatalogueTest extends AbstractNumilogCatalogueTest { /** * @test */ @@ -228,3 +233,30 @@ class NumilogTest extends ModelTestCase { $this->assertEquals('18;19',$this->_third_album->getSections()); } } + + +class NumilogDeletedTest extends AbstractNumilogCatalogueTest { + + protected function _getXml() { + return file_get_contents(realpath(dirname(__FILE__)). '/../../../fixtures/numilog_with_deleted.xml'); + } + + + /** @test */ + public function firstAlbumIdOrigineShouldBeDeleted() { + $this->assertNotEquals('9782246804383', $this->_first_album->getIdOrigine()); + } + + /** @test */ + public function numberfBooksShouldBe7() { + $this->assertEquals(7, count($this->_numilog->loadPage(1)->getRessourcesNumeriques())); + } + + + /** @test */ + public function numberfBookImportedShouldBe4() { + $this->assertEquals(4, count(Class_Album::findAll())); + } + + +} \ No newline at end of file diff --git a/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php b/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php index 859967d4a16b2d2447c789f08377fa227b532514..1a67fbd70b5c0cee80c57474cbcb42687ded92d8 100644 --- a/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php +++ b/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php @@ -1464,4 +1464,30 @@ class OrpheeServiceProlongetPretTest extends OrpheeServiceTestCase { } -?> + + +class Class_WebService_SIGB_Orphee_ServiceForChangePasswordTesting extends Class_WebService_SIGB_Orphee_Service { + public function getSearchClient() { + return Storm_Test_ObjectWrapper::mock() + ->whenCalled('hasFunction') + ->with('SetPwdAdh') + ->answers(true); + } +} + + + +class OrpheeServiceChangePasswordWithoutClientTest extends ModelTestCase { + /** @test */ + public function providesChangePasswordServiceShouldReturnTrue() { + Class_AdminVar::set('LOGIN_THROUGH_SIGB_ONLY', 1); + $this->assertTrue((new Class_WebService_SIGB_Orphee_ServiceForChangePasswordTesting('wsdl', null, true, [])) + ->providesChangePasswordService()); + } + + + public function tearDown() { + Class_AdminVar::set('LOGIN_THROUGH_SIGB_ONLY', 0); + parent::tearDown(); + } +} diff --git a/tests/library/ZendAfi/View/Helper/Accueil/DomainBrowserTest.php b/tests/library/ZendAfi/View/Helper/Accueil/DomainBrowserTest.php index 8188ca48a247ea6236b9d0dc93516c6b2e861888..0f434f62e92a76a11c24e91f8a2e006135466118 100644 --- a/tests/library/ZendAfi/View/Helper/Accueil/DomainBrowserTest.php +++ b/tests/library/ZendAfi/View/Helper/Accueil/DomainBrowserTest.php @@ -80,7 +80,7 @@ class ZendAfi_View_Helper_Accueil_DomainBrowserWithRootDomainTest extends ZendAf 'preferences' => [ 'boite' => '', 'titre' => 'Browse Jazz domain', - 'display_mode' => Class_Systeme_ModulesAppli::LISTE_FORMAT_ACCORDEON, + 'display_mode' => Class_Systeme_ModulesAppli::LISTE_FORMAT_VIGNETTES, 'root_domain_id' => '2']]); $helper->setView(new ZendAfi_Controller_Action_Helper_View()); @@ -108,7 +108,7 @@ class ZendAfi_View_Helper_Accueil_DomainBrowserWithRootDomainTest extends ZendAf -abstract class ZendAfi_View_Helper_Accueil_DomainBrowserViewAccordionTestCase extends ZendAfi_View_Helper_Accueil_DomainBrowserTestCase { +abstract class ZendAfi_View_Helper_Accueil_DomainBrowserViewThumbnailsTestCase extends ZendAfi_View_Helper_Accueil_DomainBrowserTestCase { public function setUp() { parent::setUp(); @@ -116,7 +116,7 @@ abstract class ZendAfi_View_Helper_Accueil_DomainBrowserViewAccordionTestCase ex 'division' => 1, 'type_module' => 'DOMAIN_BROWSER', 'preferences' => [ - 'display_mode' => Class_Systeme_ModulesAppli::LISTE_FORMAT_ACCORDEON + 'display_mode' => Class_Systeme_ModulesAppli::LISTE_FORMAT_VIGNETTES ]]); $this->helper->setView(new ZendAfi_Controller_Action_Helper_View()); @@ -126,7 +126,7 @@ abstract class ZendAfi_View_Helper_Accueil_DomainBrowserViewAccordionTestCase ex -class ZendAfi_View_Helper_Accueil_DomainBrowserViewAccordionTest extends ZendAfi_View_Helper_Accueil_DomainBrowserViewAccordionTestCase { +class ZendAfi_View_Helper_Accueil_DomainBrowserViewThumbnailsTest extends ZendAfi_View_Helper_Accueil_DomainBrowserViewThumbnailsTestCase { /** @test */ public function linkForDomainMetalShouldBePresent() { $this->assertXPath($this->_html, '//div[contains(@class,"domains")]//ul[@class="children"]//li//a[contains(@href, "/recherche/simple/id_catalogue/1/id_module/9/tri/annee+desc")]', $this->_html); @@ -173,7 +173,7 @@ class ZendAfi_View_Helper_Accueil_DomainBrowserWithNoBreadcrumbSettingsTest exte -class ZendAfi_View_Helper_Accueil_DomainBrowserWithDisplayModeSettingTest extends ZendAfi_View_Helper_Accueil_DomainBrowserViewAccordionTestCase { +class ZendAfi_View_Helper_Accueil_DomainBrowserWithDisplayModeSettingTest extends ZendAfi_View_Helper_Accueil_DomainBrowserViewThumbnailsTestCase { public function setup() { parent::setup(); $this->_html = $this->helper->getBoite(); diff --git a/tests/library/ZendAfi/View/Helper/ListeNotices/MurTest.php b/tests/library/ZendAfi/View/Helper/ListeNotices/MurTest.php index 37d747b3deceff924a1387c4492e89390bbc2fab..f8fb8e50367d5d041d45ad138b6e10433521552a 100644 --- a/tests/library/ZendAfi/View/Helper/ListeNotices/MurTest.php +++ b/tests/library/ZendAfi/View/Helper/ListeNotices/MurTest.php @@ -255,7 +255,7 @@ class ZendAfi_View_Helper_ListeNotices_Mur_BarreDeLienTest extends ZendAfi_View_ /** @test */ public function barreDeLienShouldContainUrlAjoutPanier() { - $this->assertXPath($this->_html, '//a[contains(@href, "panier/add-record-ajax/id_notice/34")]', $this->_html); + $this->assertXPath($this->_html, '//li[@class="add_to_cart"]//a[contains(@href, "panier/add-record-ajax/id_notice/34")]', $this->_html); } diff --git a/tests/library/ZendAfi/View/Helper/ListeNotices/TableauTest.php b/tests/library/ZendAfi/View/Helper/ListeNotices/TableauTest.php new file mode 100644 index 0000000000000000000000000000000000000000..9bd900deaaeeda0cafab8a8fce9a83b45170350e --- /dev/null +++ b/tests/library/ZendAfi/View/Helper/ListeNotices/TableauTest.php @@ -0,0 +1,53 @@ +<?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_View_Helper_ListeNotices_TableauTest extends ViewHelperTestCase { + protected + $_storm_default_to_volatile = true, + $_html = '', + $_helper; + + + public function setUp() { + parent::setUp(); + $this->_helper = new ZendAfi_View_Helper_ListeNotices_Tableau(); + $this->_helper->setView($this->view); + + $data = [$this->fixture('Class_Notice', + ['id' => 42, + 'titre_principal' => 'Le grand livre de Beatrix Potter'])]; + + $this->_html = $this->_helper->listeNotices_Tableau($data, ['liste_codes' => 'J;A;F;C;N']); + } + + + /** @test */ + public function pageShouldContainsTitleColumn() { + $this->assertXPathContentContains($this->_html, '//td[@class="listeTitre"]', 'Titre'); + } + + + /** @test */ + public function pageShouldContainsBeatrixPotter() { + $this->assertXPathContentContains($this->_html, '//td', 'Beatrix Potter'); + } +} \ No newline at end of file diff --git a/tests/scenarios/HandleBranchcode/HandleBranchcodeTest.php b/tests/scenarios/HandleBranchcode/HandleBranchcodeTest.php index ba005a0bc4f0f6c5d55b3b62cf010b9ced9faff3..9b3d3a40fcba75c415c30eae7adb447a4ea9db18 100644 --- a/tests/scenarios/HandleBranchcode/HandleBranchcodeTest.php +++ b/tests/scenarios/HandleBranchcode/HandleBranchcodeTest.php @@ -103,7 +103,7 @@ class HandleBranchcodeBorrowerTest extends HandleBranchcodeTestCase { -class HandleBranchcodeSuggestionTest extends HandleBranchcodeTestCase { +class HandleBranchcodeHoldItemTest extends HandleBranchcodeTestCase { protected $expected_call = false; public function setUp() { @@ -118,7 +118,6 @@ class HandleBranchcodeSuggestionTest extends HandleBranchcodeTestCase { ->with($this->ilsdi . '?service=HoldItem&item_id=&pickup_location=CHY-GB') ->willDo(function() {$this->expected_call = true;}); - $this->fixture('Class_Exemplaire', ['id' => 16]); } @@ -137,4 +136,90 @@ class HandleBranchcodeSuggestionTest extends HandleBranchcodeTestCase { $this->dispatch('/opac/recherche/reservation-pickup-ajax/id_notice/15/id_int_bib/1/id_bib/1/copy_id/16/code_annexe/CHYGB', true); $this->assertTrue($this->expected_call); } +} + + + + +class HandleBranchcodeHoldItemAndHoldTitleTest extends HandleBranchcodeTestCase { + + protected $expected_call = []; + + + /** @test */ + public function wsKohaShouldBeCallTwiceWithUnavailabeStatus() { + Class_AdminVar::set('KOHA_TRY_HOLD_ITEM', 1); + + $this->mock_web_client + ->whenCalled('open_url') + ->with($this->ilsdi . '?service=HoldItem&item_id=&pickup_location=CHY-GB') + ->willDo(function() {$this->expected_call [] = 1;}) + + ->whenCalled('open_url') + ->with($this->ilsdi . '?service=HoldTitle&request_location=127.0.0.1&pickup_location=CHY-GB') + ->willDo(function() {$this->expected_call [] = 2;}) + + ->beStrict(); + + $this->fixture('Class_Exemplaire', + ['id' => 16]); + + $this->dispatch('/opac/recherche/reservation-pickup-ajax/id_notice/15/id_int_bib/1/id_bib/1/copy_id/16/code_annexe/CHYGB', true); + + $this->assertEquals([1,2], $this->expected_call); + } + + + /** @test */ + public function wsKohaShouldBeCallTwiceWithItemHoldNotAllowed() { + Class_AdminVar::set('KOHA_TRY_HOLD_ITEM', 1); + + $this->mock_web_client + ->whenCalled('open_url') + ->with($this->ilsdi . '?service=HoldItem&item_id=&pickup_location=CHY-GB') + ->willDo(function() {$this->expected_call [] = 1; + return '<HoldTitle> + <title>Mireille l\'abeille</title> + <pickup_location>Bibliothèque Départementale de la Meuse</pickup_location> + <HoldItem>OpacItemHoldNotAllowed</HoldItem> + </HoldTitle>'; + }) + + ->whenCalled('open_url') + ->with($this->ilsdi . '?service=HoldTitle&request_location=127.0.0.1&pickup_location=CHY-GB') + ->willDo(function() {$this->expected_call [] = 2;}) + + ->beStrict(); + + $this->fixture('Class_Exemplaire', + ['id' => 16]); + + $this->dispatch('/opac/recherche/reservation-pickup-ajax/id_notice/15/id_int_bib/1/id_bib/1/copy_id/16/code_annexe/CHYGB', true); + + $this->assertEquals([1,2], $this->expected_call); + } + + + /** @test */ + public function wsKohaShouldBeCallOnceWithItemHold() { + Class_AdminVar::set('KOHA_TRY_HOLD_ITEM', 1); + + $this->mock_web_client + ->whenCalled('open_url') + ->with($this->ilsdi . '?service=HoldItem&item_id=&pickup_location=CHY-GB') + ->willDo(function() {$this->expected_call [] = 1; + return '<HoldTitle> + <title>Mireille l\'abeille</title> + <pickup_location>Bibliothèque Départementale de la Meuse</pickup_location> + </HoldTitle>'; + }) + ->beStrict(); + + $this->fixture('Class_Exemplaire', + ['id' => 16]); + + $this->dispatch('/opac/recherche/reservation-pickup-ajax/id_notice/15/id_int_bib/1/id_bib/1/copy_id/16/code_annexe/CHYGB', true); + + $this->assertEquals([1], $this->expected_call); + } } \ No newline at end of file diff --git a/tests/scenarios/Mailer/MailerTest.php b/tests/scenarios/Mailer/MailerTest.php index f9938f711b9aba74e4635f0f2cbd54b1fb1abd56..7b41c6e06b4ec3ee4b94df063c392bff95bcb22c 100644 --- a/tests/scenarios/Mailer/MailerTest.php +++ b/tests/scenarios/Mailer/MailerTest.php @@ -41,92 +41,159 @@ abstract class MailerWithUserConnectedTestCase extends AbstractControllerTestCas ZendAfi_Auth::getInstance()->logUser($this->_guest); $this->fixture('Class_ModeleFusion', - ['id' => 6]); + ['id' => 6, + 'type' => Class_ModeleFusion::RECORDS_TEMPLATE, + 'contenu' => '{notices.each[<strong>{titre_principal}</strong>]}']); } } - -class MailerSearchResultSimpleTest extends MailerWithUserConnectedTestCase { - +class MailerSearchResultWarmupTest extends MailerWithUserConnectedTestCase { /** @test */ - public function authLoginformShouldBePresent() { + public function withoutUserPageShouldContainsAuthLoginForm() { ZendAfi_Auth::getInstance()->clearIdentity(); - $this->dispatch('/recherche/send-mail/expressionRecherche/il+%C3%A9tait+une+fois+dans+l%27ouest/tri/%2A/code_rebond/A26874/ids/6731%3B6877%3B6917%3B7528%3B7574%3B8648%3B11793%3B11972%3B13994%3B14010/strategy/Notice_List/modele_fusion/6', true); - + $this->dispatch('/recherche/send-mail/expressionRecherche/il+%C3%A9tait+une+fois+dans+l%27ouest/tri/%2A/code_rebond/A26874', true); $this->assertContains('<input type=\"submit\" name=\"login\"', $this->_response->getBody()); } /** @test */ - public function subjectShouldBeIlEtaitUneFoisDansLOuest() { - $this->dispatch('/recherche/send-mail/expressionRecherche/il+%C3%A9tait+une+fois+dans+l%27ouest/tri/%2A/code_rebond/A26874/ids/6731%3B6877%3B6917%3B7528%3B7574%3B8648%3B11793%3B11972%3B13994%3B14010/strategy/Notice_List/modele_fusion/6/subject/il+%C3%A9tait+une+fois+dans+l%27ouest', true); - $this->assertXPath('//form//input[@type="text"][@value="PHP Unit : Documents il était une fois dans l\'ouest"]'); - } - - - /** @test */ - public function emailFromShouldBeDisplay() { + public function withoutUserMailpageShouldContainsSenderEmailInput() { $this->_guest->setMail(''); - $this->dispatch('/recherche/send-mail/expressionRecherche/il+%C3%A9tait+une+fois+dans+l%27ouest/tri/%2A/code_rebond/A26874/ids/6731%3B6877%3B6917%3B7528%3B7574%3B8648%3B11793%3B11972%3B13994%3B14010/strategy/Notice_List/modele_fusion/6/subject/il+%C3%A9tait+une+fois+dans+l%27ouest', true); + $this->dispatch('/recherche/send-mail/expressionRecherche/il+%C3%A9tait+une+fois+dans+l%27ouest/tri/%2A/code_rebond/A26874', true); $this->assertContains('<input type=\"email\" name=\"email\"', $this->_response->getBody()); } } +abstract class MailerSearchResultSendMailTestCase extends MailerWithUserConnectedTestCase { + public function setUp() { + parent::setUp(); -class MailerSearchResultPostTest extends MailerWithUserConnectedTestCase { + $this->fixture('Class_Notice', + ['id' => 3, + 'titre_principal' => 'Il était une fois dans l\'ouest']); - public function setup() { + + $this->fixture('Class_Notice', + ['id' => 6, + 'titre_principal' => 'Il était une autre fois dans l\'ouest']); + + $this->mock_sql = $this->mock() + ->whenCalled('fetchAll') + ->answers([ [3, ''], [6, ''] ]); + + Zend_Registry::set('sql', $this->mock_sql); + } +} + + + +class MailerSearchResultSendMailWithoutSelectionTest extends MailerSearchResultSendMailTestCase { + public function setUp() { parent::setUp(); - Zend_Mail::setDefaultTransport($this->_mock_transport = new MockMailTransport()); + $this->dispatch('/recherche/send-mail/expressionRecherche/il+%C3%A9tait+une+fois+dans+l%27ouest/tri/%2A/code_rebond/A26874', true); + } - $this->postDispatch('/opac/recherche/send-mail', - ['subject' => 'search result from libray Boutheon for "One upon a time"', - 'recipient' => 'gloas@afi-sa.fr', - 'content' => '<html><body><div>record</div></body></html>']); + + /** @test */ + public function pageShouldContainsSubjectIlEtaitUneFoisDansLOuest() { + $this->assertXPath('//form//input[@type="text"][@value="PHP Unit : Documents pour : il était une fois dans l\'ouest"]'); } /** @test */ - public function shouldContainsScriptToRedirect() { - $this->assertXPathContentContains('//script', 'location.reload()'); + public function pageShouldContainsRecipientInput() { + $this->assertXPath('//form//input[@type="email"][@name="recipient"]'); } /** @test */ - public function senderShouldBeTreizeAtBdDotCom() { - $this->assertEquals('treize@bd.com', $this->_mock_transport->getSentMails()[0]->getFrom()); + public function pageShouldContainsIlEtaitUneFoisDansLOuestInMergedContent() { + $this->assertXPathContentContains('//form//textarea[@name="content"]', + '<strong>Il était une fois dans l\'ouest</strong>', + $this->_response->getBody()); } -} + /** @test */ + public function pageShouldContainsIlEtaitUneAutreFoisDansLOuestInMergedContent() { + $this->assertXPathContentContains('//form//textarea[@name="content"]', + '<strong>Il était une autre fois dans l\'ouest</strong>', + $this->_response->getBody()); + } +} -class MailerLinkInSearchResultTest extends AbstractControllerTestCase { - protected $_storm_default_to_volatile = true; +class MailerSearchResultSendMailWithSelectionTest extends MailerSearchResultSendMailTestCase { public function setUp() { parent::setUp(); - $this->fixture('Class_ModeleFusion', - ['id' => 6, - 'type' => 'Notice_List']); + Zend_Registry::get('session')->search_record_selection = [6]; + $this->mock_sql + ->whenCalled('fetchAll') + ->with('select id_notice, facettes from notices Where id_notice in (6)', + true, false) + ->answers([ [6, '']]) + ->beStrict(); + + $this->dispatch('/recherche/send-mail/expressionRecherche/il+%C3%A9tait+une+fois+dans+l%27ouest/tri/%2A/code_rebond/A26874', true); + } - $this->dispatch('/recherche/simple/expressionRecherche/seven+deadly+sins', true); + + /** @test */ + public function pageShouldContainsSubjectDansMaSelection() { + $this->assertXPath('//form//input[@type="text"][@value="PHP Unit : Documents dans ma sélection"]'); } /** @test */ - public function shareByMAilShouldBePresent() { - $this->assertXPath('//div//a[contains(@href,"/recherche/send-mail/expressionRecherche/seven+deadly+sins/ids/")][contains(@href,"/subject/pour+%3A+/strategy/Notice_List/modele_fusion/6")]'); + public function pageShouldNotContainsIlEtaitUneFoisDansLOuestInMergedContent() { + $this->assertNotXPathContentContains('//form//textarea[@name="content"]', + '<strong>Il était une fois dans l\'ouest</strong>', + $this->_response->getBody()); + } + + + /** @test */ + public function pageShouldContainsIlEtaitUneAutreFoisDansLOuestInMergedContent() { + $this->assertXPathContentContains('//form//textarea[@name="content"]', + '<strong>Il était une autre fois dans l\'ouest</strong>', + $this->_response->getBody()); } } +class MailerSearchResultPostTest extends MailerWithUserConnectedTestCase { + + public function setup() { + parent::setUp(); + Zend_Mail::setDefaultTransport($this->_mock_transport = new MockMailTransport()); + + $this->postDispatch('/opac/recherche/send-mail', + ['subject' => 'search result from libray Boutheon for "One upon a time"', + 'recipient' => 'gloas@afi-sa.fr', + 'content' => '<html><body><div>record</div></body></html>']); + } + + + /** @test */ + public function shouldContainsScriptToRedirect() { + $this->assertXPathContentContains('//script', 'location.reload()'); + } + + + /** @test */ + public function senderShouldBeTreizeAtBdDotCom() { + $this->assertEquals('treize@bd.com', $this->_mock_transport->getSentMails()[0]->getFrom()); + } +} + + class MailerPopupEmailPostTest extends MailerWithUserConnectedTestCase { diff --git a/tests/scenarios/PnbDilicom/PnbDilicomTest.php b/tests/scenarios/PnbDilicom/PnbDilicomTest.php index 62068969f74c12c3df37ca37b2168575dfdc2531..3e19387ef419d0f8f47dbc7c9dc81a375f9e31f9 100644 --- a/tests/scenarios/PnbDilicom/PnbDilicomTest.php +++ b/tests/scenarios/PnbDilicom/PnbDilicomTest.php @@ -3027,7 +3027,7 @@ class PnbDilicomAdminAlbumControllerImportDilicomTest extends PnbDilicomAdminAlb /** @test */ public function nbOfEternityLiveLoansShouldBe1OnInfinite() { - $this->assertXPathContentContains('//table//tr[3]/td[3]', '1 / ∞'); + $this->assertXPathContentContains('//table//tr[3]/td[3]', '1 / 1'); } @@ -3200,7 +3200,7 @@ class PnbDilicomAdminAlbumControllerExportCsvTest extends PnbDilicomAdminAlbumCo $this->assertEquals('Titre;"Prêts / Droits";"Nombre de prêts";"Prêts simultanés / Droits";"Prêts simultanés";"Durée de prêt en jours";"Nombre de jours restant sur la licence";"Date de commande";Auteur;Éditeur;Collection;Année;Genre;Section;Catégorie "Being human being";"10 / 30";10;"2 / 15";2;45;2095;30/03/2015;;;;;;;"Albums non classés" "Being human being";"20 / 20";20;"5 / 15";5;20;19902;29/08/2015;;;;;;;"Albums non classés" -"Hell is from here to eternity";"2 / ∞";2;"1 / ∞";1;359;∞;30/03/2015;"Iron Maiden";EMI;"Temple Of Rock";1992;"Heavy Metal";"Espace métal";Fondu +"Hell is from here to eternity";"2 / ∞";2;"1 / 1";1;359;∞;30/03/2015;"Iron Maiden";EMI;"Temple Of Rock";1992;"Heavy Metal";"Espace métal";Fondu ', $this->_response->getBody()); } } diff --git a/tests/scenarios/SearchSelection/SearchSelectionTest.php b/tests/scenarios/SearchSelection/SearchSelectionTest.php new file mode 100644 index 0000000000000000000000000000000000000000..cedd474ccd013c1e355f067cc54585899c45dedb --- /dev/null +++ b/tests/scenarios/SearchSelection/SearchSelectionTest.php @@ -0,0 +1,611 @@ +<?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 + */ + + +abstract class SearchSelectionTestCase extends AbstractControllerTestCase { + protected $_storm_default_to_volatile = true; + + public function setUp() { + parent::setUp(); + + Class_AdminVar::set('ENABLE_SEARCH_MULTIPLE_RECORD_SELECTION', 1); + + $this->mock_sql = $this->mock() + ->whenCalled('fetchAll')->answers([[8, ''], [9, ''], [10, '']]) + ; + Zend_Registry::set('sql', $this->mock_sql); + + Class_Profil::getCurrentProfil() + ->setCfgModules(['recherche' => + ['resultatsimple' => + [ + 'liste_format' => Class_Systeme_ModulesAppli::LISTE_FORMAT_VIGNETTES, + 'liste_codes' => "TAN9"]]]); + + $this->fixture('Class_Notice', + ['id' => 8, + 'clef_alpha'=>'HARRY_POTTER_ROWLING_1', + 'titre_principal' => 'Harry Potter', + 'clef_oeuvre' =>'HARRY_POTTER', + 'url_vignette'=>'no', + 'url_image'=>'no', + 'date_creation'=> '2013-12-30']); + + $this->fixture('Class_Notice', + ['id' => 9, + 'clef_alpha'=>'MILLENIUM_LARSSON_1', + 'titre_principal' => 'Millenium', + 'clef_oeuvre' =>'MILLENIUM_LARSSON', + 'url_vignette'=>'no', + 'url_image'=>'no', + 'date_creation'=> '2013-12-30']); + + $this->fixture('Class_Notice', + ['id' => 10, + 'clef_alpha'=>'INTERSTELLAR_NOLAN_3', + 'titre_principal' => 'Interstellar', + 'clef_oeuvre' =>'INTERSTALLAR_NOLAN', + 'url_vignette'=>'no', + 'url_image'=>'no', + 'date_creation'=> '2015-11-28']); + } +} + + + +class SearchSelectionNotActivatedTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + Class_AdminVar::set('ENABLE_SEARCH_MULTIPLE_RECORD_SELECTION', 0); + + $this->dispatch('/recherche/simple/expressionRecherche/*', true); + } + + + /** @test */ + public function pageShouldNotContainsselectionMenu() { + $this->assertNotXPath('//div[@class="record-selection"]/a[text()="Sélection : "]'); + } +} + + + + +class SearchSelectionWithEmptySessionTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + $this->dispatch('/recherche/simple/expressionRecherche/*', true); + } + + + /** @test */ + public function pageShouldNotHaveAnyCheckedCheckbox() { + $this->assertNotXPath('//input[@checked]'); + } +} + + + + +class SearchSelectionWithSessionTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + Zend_Registry::get('session')->search_record_selection = [8, 10]; + + $this->dispatch('/recherche/simple/expressionRecherche/pomme/facettes/T3/page/1/liste_format/3/page_size/20/tri/alpha_titre', true); + } + + + /** @test */ + public function pageShouldContainsRecordMillenium() { + $this->assertXPathContentContains('//div[@class="vignette_titre"]//a', 'Millenium'); + } + + + /** @test */ + public function pageShouldNotIncludeLinkAddRecordAjaxOnBasket() { + $this->assertNotXPath('//a[contains(@href, "panier/add-record-ajax/")]'); + } + + + /** @test */ + public function pageShouldContainsUncheckedCheckboxToSelectMilleniumRecord() { + $this->assertXPath('//div[@class="vignette_select_record"]/input[@type="checkbox"][@value="9"][@name="select_record_9"][@title=\'Sélectionner "Millenium" pour impression, export ou sauvegarde\'][not(@checked)]'); + } + + + /** @test */ + public function pageShouldContainsCheckedCheckboxToUnselectHarryPotterRecord() { + $this->assertXPath('//div[@class="vignette_select_record"]/input[@type="checkbox"][@value="8"][@name="select_record_8"][@checked]'); + } + + + /** @test */ + public function checkboxOnClickShouldAjaxGetRecordsSelectToggle() { + $url = Class_url::relative(['module' => 'opac', + 'controller' => 'records', + 'action' => 'select-toggle', + 'id' => 8]); + + $this->assertXPath('//input[@onclick="$.get(\''. $url .'\', updateRecordSelectionCount)"]'); + } + + + /** @test */ + public function selectionMenuShouldContainsTwoRecordsSelected() { + $this->assertXPathContentContains('//div[@class="record-selection"]/a[text()="Sélection : "]/span', '2'); + } + + + /** @test */ + public function selectionMenuShouldContainsActionToClearSelection() { + $url = Class_url::relative(['module' => 'opac', + 'controller' => 'records', + 'action' => 'select-clear']); + + $this->assertXPathContentContains('//div[@class="record-selection"]/ul/li/a[@href="' . $url . '"][@onclick="$.get(\'' . $url . '\', updateRecordSelectionCountAndClear); return false"]', + 'Vider la sélection'); + } + + + + /** @test */ + public function selectionMenuShouldContainsActionToAddToBasket() { + $url = Class_url::relative(['module' => 'opac', + 'controller' => 'panier', + 'action' => 'add-selection']); + + $this->assertXPathContentContains('//div[@class="record-selection"]/ul/li/a[@href="' . $url . '"][@data-popup="true"]', + 'Mettre dans un panier'); + } + + + /** @test */ + public function selectionMenuShouldContainsActionToSelectPage() { + $url = Class_url::relative(['module' => 'opac', + 'controller' => 'records', + 'action' => 'select-page', + 'expressionRecherche' => 'pomme', + 'tri' => 'alpha_titre', + 'page' => '1', + 'page_size' => 20, + 'liste_format' => 3, + 'facettes' => 'T3']); + + $this->assertXPathContentContains('//div[@class="record-selection"]/ul/li/a[@href="' . $url . '"][@onclick="$.get(\'' . $url . '\', updateRecordSelectionCountAndCheckAll); return false"]', + 'Sélectionner toute la page', + $this->_response->getBody()); + } + + + /** @test */ + public function selectionMenuShouldContainsActionToSelectAllResults() { + $url = Class_url::relative(['module' => 'opac', + 'controller' => 'records', + 'action' => 'select-all', + 'expressionRecherche' => 'pomme', + 'tri' => 'alpha_titre', + 'page' => '1', + 'page_size' => 20, + 'liste_format' => 3, + 'facettes' => 'T3']); + + $this->assertXPathContentContains('//div[@class="record-selection"]/ul/li/a[@href="' . $url . '"][@onclick="$.get(\'' . $url . '\', updateRecordSelectionCountAndCheckAll); return false"]', + 'Sélectionner tous les résultats', + $this->_response->getBody()); + } + + + /** @test */ + public function selectionMenuShouldContainsActionToViewSelection() { + $url = Class_url::relative(['module' => 'opac', + 'controller' => 'recherche', + 'action' => 'simple', + 'tri' => 'alpha_titre', + 'liste_format' => 3, + 'page_size' => 20, + 'selection' => 1]); + + $this->assertXPathContentContains('//div[@class="record-selection"]/ul/li/a[@href="' . $url . '"]', + 'Voir la sélection', + $this->_response->getBody()); + } +} + + + + +class SearchSelectionSelectToggleRecordMilleniumTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + Zend_Registry::get('session')->search_record_selection = [8, 10]; + } + + + /** @test */ + public function toggleRecordNineShouldAddItToSession() { + $this->dispatch('/records/select-toggle/id/9', true); + $this->assertEquals([8, 10, 9], + Zend_Registry::get('session')->search_record_selection); + return $this->_response->getBody(); + } + + + /** + * @depends toggleRecordNineShouldAddItToSession + * @test + */ + public function toggleRecordNineShouldAnswerJsonCountThree($response) { + $this->assertEquals(3, json_decode($response)->count); + } + + + /** @test */ + public function toggleRecordHeightShouldRemoteItFromSession() { + $this->dispatch('/records/select-toggle/id/8', true); + $this->assertEquals([10], + Zend_Registry::get('session')->search_record_selection); + } +} + + + +class SearchSelectionSelectClearTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + Zend_Registry::get('session')->search_record_selection = [8, 10]; + $this->dispatch('/records/select-clear', true); + } + + + /** @test */ + public function recordsSelectionShouldBeEmpty() { + $this->assertEmpty(Zend_Registry::get('session')->search_record_selection); + } + + + /** @test */ + public function answerShouldContainsCountZero() { + $this->assertEquals(0, json_decode($this->_response->getBody())->count); + } +} + + + + +class SearchSelectionSelectPageTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + Zend_Registry::get('session')->search_record_selection = [8, 10]; + $this->dispatch('/records/select-page/expressionRecherche/pomme/facettes/T3/page/1/page_size/2', true); + } + + + /** @test */ + public function sessionShouldContainsNine() { + $this->assertEquals([8, 10, 9], + Zend_Registry::get('session')->search_record_selection); + return $this->_response->getBody(); + } +} + + + +class SearchSelectionSelectAllTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + $this->dispatch('/records/select-all/expressionRecherche/pomme/facettes/T3/page/1/page_size/2', true); + } + + + /** @test */ + public function sessionShouldContainsAll() { + $this->assertEquals([8, 9, 10], + Zend_Registry::get('session')->search_record_selection); + return $this->_response->getBody(); + } +} + + + +class SearchSelectionSelectViewWithSelectionTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + Zend_Registry::get('session')->search_record_selection = [8, 10]; + $this->mock_sql + ->whenCalled('fetchAll') + ->with('select id_notice, facettes from notices Where id_notice in (8,10)', + true, false) + ->answers([ [8, ''], [10, '']]) + ->beStrict(); + + $this->fixture('Class_AdminVar', + ['id' => 'ENABLE_BOOKMARKABLE_SEARCHES', + 'valeur' => 1]); + + $this->dispatch('/recherche/simple/selection/1', true); + } + + + /** @test */ + public function pageShouldContainsRecordMillenium() { + $this->assertXPathContentContains('//div[@class="vignette_titre"]//a', 'Interstellar'); + } + + + /** @test */ + public function pageShouldContainsRemovableCriteriaSelectionCourante() { + $this->assertXPathContentContains('//div[@class="criteres_recherche"]//a', 'Sélection courante'); + } + + + /** @test */ + public function pageShouldNotContainsSearchSaveLink() { + $this->assertNotXPath('//a[contains(@href, "/bookmarked-searches/add")]'); + } +} + + + +class SearchSelectionSelectViewWithoutSelectionTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + $this->mock_sql->beStrict(); + $this->dispatch('/recherche/simple/selection/1', true); + } + + + /** @test */ + public function pageShouldContainsRemovableCriteriaSelectionCourante() { + $this->assertXPathContentContains('//div[@class="criteres_recherche"]//a', 'Sélection courante'); + } + + + /** @test */ + public function pageShouldContainsNoRecords() { + $this->assertXPathContentContains('//div', 'Aucun résultat trouvé'); + } +} + + + + +class SearchSelectionAdminVarsTest extends Admin_AbstractControllerTestCase { + protected $_storm_default_to_volatile = true; + + public function setUp() { + parent::setUp(); + $this->dispatch('/admin/index/adminvar', true); + } + + + /** @test */ + public function pageShouldContainsAdminVarENABLE_SEARCH_MULTIPLE_RECORD_SELECTION() { + $this->assertXpathContentContains('//td', 'ENABLE_SEARCH_MULTIPLE_RECORD_SELECTION'); + } +} + + + +class SearchSelectionAddToCartWithoutUserTest extends SearchSelectionTestCase { + /** @test */ + public function withoutUserSessionShouldDisplayLoginPage() { + ZendAfi_Auth::getInstance()->clearIdentity(); + $this->dispatch('/panier/add-selection', true); + $this->assertController('auth'); + } +} + + + +abstract class SearchSelectionAddToCartWithUserTestCase extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + + $histoire = $this->fixture('Class_Catalogue', + ['id' => 97, + 'libelle' => 'histoire', + 'indexer' => 1, + 'auteur' => '1']); + + $this->cart = $this->fixture('Class_PanierNotice', + ['id' => 15, + 'id_panier' => 2, + 'libelle' => 'my cart', + 'date_maj' => '25/05/2010', + 'notices' => '', + 'user' => $this->user, + 'catalogues' => [$histoire]]); + + $this->user = $this->fixture('Class_Users', + ['id' => 23, + 'pseudo' => 'zorn', + 'nom' => 'john', + 'login' => 'jzorn', + 'password' => '123', + 'panier_courant' => $this->cart]); + + ZendAfi_Auth::getInstance()->logUser($this->user); + } +} + + + + +class SearchSelectionAddToCartTest extends SearchSelectionAddToCartWithUserTestCase { + public function setUp() { + parent::setUp(); + $this->dispatch('/panier/add-selection', true); + } + + + /** @test */ + public function titleShouldBeAddSelectionToCart() { + $this->assertXPathContentContains('//title', 'Mettre la sélection dans un panier'); + } + + + /** @test */ + public function pageShouldContainsLinkAddToMyCart() { + $this->assertXPathContentContains('//p', 'Ajouter ma sélection au panier "my cart"'); + } + + + /** @test */ + public function pageShouldContainsLinkAddToCreateCart() { + $this->assertXPathContentContains('//a[contains(@href, "panier/add-ajax/selection/1")]', + 'Nouveau panier'); + } + + + /** @test */ + public function pageShouldContainsLinkToSwitchCart() { + $this->assertXPathContentContains('//a[contains(@href, "panier/switch-ajax/id_panier/15/selection/1")]', + 'Changer de panier'); + } + + + /** @test */ + public function pageShouldContainsFormToAddSelection() { + $this->assertXPath('//form[contains(@action, "/panier/add-selection/id_panier/15")]'); + } +} + + + + +class SearchSelectionPostAddSelectionToCartTest extends SearchSelectionAddToCartWithUserTestCase { + public function setUp() { + parent::setUp(); + Zend_Registry::get('session')->search_record_selection = [8, 10]; + $this->postDispatch('/panier/add-selection/id_panier/15', + []); + + Class_PanierNotice::clearCache(); + } + + + /** @test */ + public function cartShouldContainsRecordsPotterAndInterstellar() { + $this->assertEquals(['HARRY_POTTER_ROWLING_1', 'INTERSTELLAR_NOLAN_3'], + Class_PanierNotice::find(15)->getClesNotices()); + } + + + /** @test */ + public function cartDomainShouldBeIndexedInRecord() { + $this->assertContains('Q97', Class_Notice::find(8)->getFacettes()); + } +} + + + + +class SearchSelectionPostNewCartSelectionTest extends SearchSelectionAddToCartWithUserTestCase { + public function setUp() { + parent::setUp(); + + $this->postDispatch('/panier/add-ajax/selection/1', + ['libelle' => 'my new selection']); + } + + + /** @test */ + public function responseShouldBeARedirectToAddSelection() { + $this->assertRedirectTo('/panier/add-selection'); + } +} + + + +class SearchSelectionPostSwitchCartTest extends SearchSelectionAddToCartWithUserTestCase { + public function setUp() { + parent::setUp(); + + $this->postDispatch('/panier/switch-ajax/id_panier/2/selection/1', + ['id_panier' => 15]); + } + + + /** @test */ + public function responseShouldBeARedirectToAddSelection() { + $this->assertRedirectTo('/panier/add-selection'); + } +} + + + +class SearchSelectionWithSessionViewWallModeTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + + Class_Profil::getCurrentProfil() + ->setCfgModules(['recherche' => + ['resultatsimple' => + [ + 'liste_format' => Class_Systeme_ModulesAppli::LISTE_FORMAT_MUR, + 'liste_codes' => "TAN9"]]]); + + $this->dispatch('/recherche/simple/expressionRecherche/pomme/facettes/T3/page/1', true); + } + + + /** @test */ + public function pageShouldContainsUCheckboxToSelectMilleniumRecord() { + $this->assertXPath('//ul[@class="barre-de-lien"]/li/input[@type="checkbox"][@value="9"][@name="select_record_9"]'); + } + + + /** @test */ + public function pageShouldNotIncludeLinkAddRecordAjaxOnBasket() { + $this->assertNotXPath('//a[contains(@href, "panier/add-record-ajax/")]'); + } +} + + + + +class SearchSelectionPrintWithSelectionTest extends SearchSelectionTestCase { + public function setUp() { + parent::setUp(); + + Zend_Registry::get('session')->search_record_selection = [8, 10]; + $this->mock_sql + ->whenCalled('fetchAll') + ->with('select id_notice, facettes from notices Where id_notice in (8,10)', + true, false) + ->answers([ [8, ''], [10, '']]) + ->beStrict(); + + $this->fixture('Class_ModeleFusion', ['id' => 1, + 'nom' => 'recherche', + 'contenu' => '{notices.each[<h1>{titre_principal}</h1>]}', + 'type' => 'Notice_List']); + + $this->dispatch('/recherche/print/expressionRecherche/pomme', true); + } + + + /** @test */ + public function printPreviewShouldContainsInterstellar() { + $this->assertXPathContentContains('//h1', 'Interstellar', $this->_response->getBody()); + } +} \ No newline at end of file