diff --git a/VERSIONS b/VERSIONS index 90c34f3a0eae49528705ec3b8130da6d9d1dd5da..cbd4292ff82cc2442dd245c08a2983577a3c02a7 100644 --- a/VERSIONS +++ b/VERSIONS @@ -1,3 +1,34 @@ +18/11/2016 - v7.7.17 + + - ticket #47691 : Administration : le rôle rédacteur bibliothèque peut choisir son thème admin + + - ticket #50010 : Suggestions d'achats avec Koha : remplacement de la colonne PatronReason par Note + + - hackfest : ticket #50472 : suggestions d'achat Koha/Nanook : ajout d'un sélecteur pour le type de document + + - hackfest : ticket #50471 : ajout d'un sélecteur de domaines dans la boîte de recherche simple + + - hackfest : Administration : le bouton vider le cache regénère les fichiers css et js + + - hackfest : Accueil de l'administration : Ajout d'un bloc d'information sur l'état de l'intégration des données + + - hackfest : Administration : la colonne créateur ainsi que la date de mise à jour ont été ajoutées dans la liste d'articles mode paginés + + - hackfest : Administration : ajout d'un lien "appliquer comme filtres par défaut" dans la boite bibliothèque. + + - hackfest : Administration : harmonistation des boutons de validation + + - hackgest : ticket #31469 : Administration : Amélioration de la validation des articles et autres formulaires en ayant les boutons "Valider" et "retour" également en entête de page + + - hackfest : Administration : Ckeditor : ajout du bouton caratères spéciaux + + +07/11/2016 - v7.7.16 + + - ticket #49273 : Module formation : envoi de notifications mail lors des inscriptions/désinscription + + - ticket #50177 : Authentification : corretion de la bibliothèque de rattachement lors du processus d'authentification + - ticket #50042 : correction du fichier de traduction anglais - ticket #47691 : Administration : le rôle rédacteur bibliothèque peut choisir son thème admin diff --git a/VERSIONS_HOTLINE/50177 b/VERSIONS_HOTLINE/50177 deleted file mode 100644 index 9e3e92383517119b935bd219ef5dd66b4db72872..0000000000000000000000000000000000000000 --- a/VERSIONS_HOTLINE/50177 +++ /dev/null @@ -1 +0,0 @@ - - ticket #50177 : Authentification : corretion de la bibliothèque de rattachement lors du processus d'authentification \ No newline at end of file diff --git a/VERSIONS_WIP/49273 b/VERSIONS_WIP/49273 deleted file mode 100644 index 081d24bac5eb3e95e4c5f808634fc0e193d6c25c..0000000000000000000000000000000000000000 --- a/VERSIONS_WIP/49273 +++ /dev/null @@ -1 +0,0 @@ - - ticket #49273 : 21/55 Inscription à une formation : envoi d'un mail \ No newline at end of file diff --git a/application/modules/admin/controllers/IndexController.php b/application/modules/admin/controllers/IndexController.php index 1e233270629cc565600e054b164664938c85479c..a8014fdfece292da500779b3b0649b3c73540f4f 100644 --- a/application/modules/admin/controllers/IndexController.php +++ b/application/modules/admin/controllers/IndexController.php @@ -20,7 +20,13 @@ */ class Admin_IndexController extends ZendAfi_Controller_Action { public function indexAction() { - $this->view->titre = $this->_('Accueil'); + $this->view->titre = $this->_('Accueil') + . $this->view->tag('span', + $this->_(' version %s', + $this->view->tag('a', BOKEH_RELEASE_NUMBER, + ['href' => BOKEH_REMOTE_FILES . 'blob/' . BOKEH_VERSION . '/VERSIONS'])), + ['class' => 'version']); + $this->view->user = Class_Users::getIdentity(); // Activation - désactivation du site @@ -105,6 +111,8 @@ class Admin_IndexController extends ZendAfi_Controller_Action { public function clearcacheAction() { (new Storm_Cache())->clean(); + Class_AdminVar::set('CACHE_DATE', (new Class_TimeSource())->dateFormat('Y-m-d H:i:s')); + Class_ScriptLoader::getInstance()->resetCacheHash(); $this->_helper->notify($this->_('Le cache de Bokeh a été vidé')); $this->_redirectToReferer(); } diff --git a/application/modules/admin/views/scripts/accueil/rechsimple.phtml b/application/modules/admin/views/scripts/accueil/rechsimple.phtml index fe0f1d579f63a18181b3075fb7f0d606c89e695c..57f513ed60835eb131b201028638f6756b3a535e 100644 --- a/application/modules/admin/views/scripts/accueil/rechsimple.phtml +++ b/application/modules/admin/views/scripts/accueil/rechsimple.phtml @@ -1,122 +1,5 @@ -<center> -<h1>Propriétés de la boîte de recherche simple</h1><br> -<div class="formTable"> - <form method="post" action="<?php echo $this->url ?>"> - - <fieldset> - <legend>Affichage</legend> - <table cellspacing="2"> - - <tr> - <td class="droite">Style de boite </td> - <td class="gauche"><?php echo $this->combo_templates ?></td> - </tr> - - <tr> - <td class="droite">Largeur du champ de saisie </td> - <td class="gauche"><?php echo $this->tagSlider("largeur",$this->preferences["largeur"],100,300,1) ?></td> - </tr> - - </table> - </fieldset> - <br> - - <fieldset> - <legend>Généralités</legend> - <table cellspacing="2"> - - <tr> - <td class="droite">Titre </td> - <td class="gauche"><input type="text" name="titre" size="55" value="<?php print($this->preferences["titre"]); ?>"></td> - </tr> - - <tr> - <td class="droite">Proposer la sélection de bibliothèques </td> - <td class="gauche"><?php echo $this->formSelect("select_bib",$this->preferences["select_bib"],"",array("1" => "oui","0"=>"non")) ?></td> - </tr> - - <?php - if (Class_CodifAnnexe::countBy(['invisible' => 0])) - { - echo '<tr>'; - echo '<td class="droite">Proposer la sélection de sites</td>'; - echo '<td class="gauche">'.$this->formSelect("select_annexe",$this->preferences["select_annexe"],"",array("1" => "oui","0"=>"non")).'</td>'; - echo '</tr>'; - } - ?> - - <tr> - <td class="droite">Proposer la sélection de types de docs </td> - <td class="gauche"><?php echo $this->formSelect("select_doc",$this->preferences["select_doc"],"",array("1" => "oui","0"=>"non")) ?></td> - </tr> - - <tr> - <td class="droite">Message du bouton pour rechercher </td> - <td class="gauche"><input type="text" name="search_button" size="55" value="<?php print($this->preferences["search_button"]); ?>"></td> - </tr> - - <tr> - <td class="droite">Message au-dessus du champ de saisie </td> - <td class="gauche"><input type="text" name="message" size="55" value="<?php print($this->preferences["message"]); ?>"></td> - </tr> - - <tr> - <td class="droite">Message d'exemple dans le champ de saisie </td> - <td class="gauche"><input type="text" name="placeholder" size="55" value="<?php print($this->preferences["placeholder"]); ?>"></td> - </tr> - - <tr> - <td class="droite">Message au-dessous du champ de recherche </td> - <td class="gauche"><input type="text" name="exemple" size="55" value="<?php print($this->preferences["exemple"]); ?>"></td> - </tr> - - - <tr> - <td class="droite">Afficher le lien recherche avancée </td> - <td class="gauche"> - <?php echo $this->formCheckbox('recherche_avancee', - $this->preferences["recherche_avancee"], - null, - array('on', 'off')); ?> - </td> - </tr> - - - <tr> - <td class="droite">Tri du résultat de recherche </td> - <td class="gauche"> - <?php echo $this->formSelect('tri', - $this->preferences['tri'], - '', - (new Class_CriteresRecherche())->getListeTris()); ?> - </td> - </tr> - - - <tr> - <td class="droite">Basculer automatiquement sur le profil: </td> - <td class="gauche"> - <?php - echo $this->ComboProfils('ALL', 'ALL', $this->preferences['profil_redirect']); - ?> - </td> - </tr> - - </table> - </fieldset> - - <br> - <fieldset> - <legend>Filtres</legend> - <table cellspacing="2"> - <tr> - <td class="droite">Type de document </td> - <td class="gauche"><?php echo Class_Codification::getInstance()->getComboTypesDocs($this->preferences["type_doc"],"",true) ?></td> - </tr> - - </table> - </fieldset> - - <?php echo $this->formSubmit("Valider","Valider",array("class" => "bouton")) ?> - </form> - </div> +<?php +$form = ZendAfi_Form_Configuration_SearchWidget::newWith($this->preferences); +$form->setAction($this->url); +echo $this->renderForm($form); +?> diff --git a/application/modules/admin/views/scripts/head.phtml b/application/modules/admin/views/scripts/head.phtml index 999fa04d47d673505f1f13ee8cf174069887cd85..2d9406df7da5094429dbbfba9fbeb34cec1fbdfb 100644 --- a/application/modules/admin/views/scripts/head.phtml +++ b/application/modules/admin/views/scripts/head.phtml @@ -2,7 +2,7 @@ <html lang="fr-FR"> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> - <title><?php echo $this->getTitre(); ?></title> + <title><?php echo strip_tags($this->getTitre()); ?></title> <?php $head_scripts = Class_ScriptLoader::newInstance() diff --git a/application/modules/admin/views/scripts/index/index.phtml b/application/modules/admin/views/scripts/index/index.phtml index 351d936a34549eedf6e40846a18e018b1eb5d814..bcf809c458b6b247ef6f6ba2b91a4cc635853303 100644 --- a/application/modules/admin/views/scripts/index/index.phtml +++ b/application/modules/admin/views/scripts/index/index.phtml @@ -1,58 +1,32 @@ +<h2><?php echo $this->_('Paramètres du site');?> :</h2> <?php -echo $this->tag('h2', - $this->_('Version') . ' : ' . $this->tag('a', - BOKEH_RELEASE_NUMBER, - ['href' => BOKEH_REMOTE_FILES . 'blob/' . BOKEH_VERSION . '/VERSIONS'])); -?> - - - <h2><?php echo $this->traduire('Paramètres du site');?> :</h2> -<?php -$profil = Class_Profil::getCurrentProfil(); -$lien_edit_site = $lien = $edit_domain_name = ''; +$lien = $edit_domain_name = ''; if ($this->user->isAdmin()) { $lien = sprintf('<a href="admin?setsiteok=%s" style="margin-left:30px">» %s «</a>', $this->href_site, $this->lien_site); - $lien_edit_site = sprintf('<a href="%s" style="margin-left:30px" >» Paramétrer «</a>', - $this->url(array('controller' => 'profil', - 'action' => 'accueil', - 'id_profil' => $profil->getId()))); $edit_domain_name = $this->tagAnchor($this->url(['module' => 'admin', 'controller' => 'index', 'action' => 'adminvaredit', 'cle'=> 'NOM_DOMAINE']), - '» Modifier «', + $this->_('» Modifier «'), ['style' => 'margin-left: 30px;', 'data-popup' => 'true']); } -echo $this->ligneInfos("Etat du site", $this->etat_site . $lien) - . $this->ligneInfos("Profil", $profil->getLibelle() . $lien_edit_site) - . $this->ligneInfos("Thème", $profil->getSkin()) - . $this->ligneInfos('Nom du domaine', Class_AdminVar::get('NOM_DOMAINE') . $edit_domain_name); +echo $this->ligneInfos($this->_('Etat du site'), $this->etat_site . $lien) + . $this->ligneInfos($this->_('Nom du domaine'), Class_AdminVar::get('NOM_DOMAINE') . $edit_domain_name); ?> -<h2><?php echo $this->traduire('Accès');?> :</h2> +<h2><?php echo $this->_('Données en attente de modération');?> : + <a class="rss" href="<?php + echo $this->url(array('module' => 'opac', + 'controller' => 'rss', + 'action' => 'moderations')); + ?>"><img src="<?php echo URL_ADMIN_IMG;?>/rss.gif" alt="RSS"/></a> +</h2> <?php -$acl = new ZendAfi_Acl_AdminControllerRoles(); -echo $this->ligneInfos($this->traduire("Utilisateur"), $this->user->getLogin()); -echo $this->ligneInfos("Pseudo", $this->user->getNomAff()); -echo $this->ligneInfos("Rôle", $acl->getLibelleRole($this->user->getRoleLevel())); -$bib = $this->user->getBib(); -$bib = (!$bib) ? $this->_('Portail') : $bib->getLibelle(); -echo $this->ligneInfos("Bibliothèque", $bib); -?> - -<h2><?php echo $this->traduire('Données en attente de modération');?> : -<a class="rss" href="<?php -echo $this->url(array('module' => 'opac', - 'controller' => 'rss', - 'action' => 'moderations')); -?>"><img src="<?php echo URL_ADMIN_IMG;?>/rss.gif" alt="RSS"/></a> - </h2> -<?php - $moderer = new Class_Moderer(); +$moderer = new Class_Moderer(); $modstats = $moderer->getModerationStats(); foreach ($modstats as $stat) { $nombre = ($stat['count']) ? $stat['count'] : 'aucun'; @@ -62,27 +36,30 @@ foreach ($modstats as $stat) { } ?> +<?php echo $this->cosmoStatus(); ?> + <h2><?php echo $this->_('Participez à la communauté'); ?> !</h2> <div class='ligne_info'> - <a onclick="window.open(this.href); return false" href="http://bokeh-library-portal.org">Site communautaire</a> - - <a onclick="window.open(this.href); return false" href="https://groups.google.com/group/utilisateurs-bokeh">Google group Bokeh</a> - - <a onclick="window.open(this.href); return false" href="http://wiki.bokeh-library-portal.org">Wiki Bokeh</a> - - <a onclick="window.open(this.href); return false" href="http://git.afi-sa.fr/afi/opacce/tree/master">Code source</a> + <a onclick="window.open(this.href); return false" href="http://bokeh-library-portal.org"><?php echo $this->_('Site communautaire');?></a> - + <a onclick="window.open(this.href); return false" href="https://groups.google.com/group/utilisateurs-bokeh"><?php echo $this->_('Google group Bokeh');?></a> - + <a onclick="window.open(this.href); return false" href="http://wiki.bokeh-library-portal.org"><?php echo $this->_('Wiki Bokeh');?></a> - + <a onclick="window.open(this.href); return false" href="http://git.afi-sa.fr/afi/opacce/tree/master"><?php echo $this->_('Code source');?></a> </div> - <h2><?php echo $this->_('Salle de discussion #Bokeh'); ?> :</h2> - <?php echo $this->ligneInfos($this->_('Discutez avec les contributeurs de Bokeh en direct'), '<a href="http://wiki.bokeh-library-portal.org/index.php/Salle_de_discussion_bokeh" target="_blank"><img src="'.BASE_URL.'/public/admin/images/ico/help.png"></img></a>') ?> +<h2><?php echo $this->_('Salle de discussion #Bokeh'); ?> :</h2> +<?php echo $this->ligneInfos($this->_('Discutez avec les contributeurs de Bokeh en direct'), + '<a href="http://wiki.bokeh-library-portal.org/index.php/Salle_de_discussion_bokeh" target="_blank"><img src="'.BASE_URL.'/public/admin/images/ico/help.png"></img></a>') ?> <br> - <iframe src="https://kiwiirc.com/client/irc.freenode.net/?nick=votrenom-?#bokeh" style="border:0; width:100%; height:450px;"></iframe> +<iframe src="https://kiwiirc.com/client/irc.freenode.net/?nick=votrenom-?#bokeh" style="border:0; width:100%; height:450px;"></iframe> <script> -(function() { - function supportsCanvas() { - return !!document.createElement('canvas').getContext; - } + (function() { + function supportsCanvas() { + return !!document.createElement('canvas').getContext; + } - if (!supportsCanvas()) - showNotification({message: 'Votre navigateur ne permet pas d\'utiliser pleinement l\'interface d\'administration. Pour un fonctionnement optimal, nous recommandons d\'utiliser une version récente de Firefox, Chrome, Safari ou Internet Explorer', - type: 'error'}); -})(); + if (!supportsCanvas()) + showNotification({message: 'Votre navigateur ne permet pas d\'utiliser pleinement l\'interface d\'administration. Pour un fonctionnement optimal, nous recommandons d\'utiliser une version récente de Firefox, Chrome, Safari ou Internet Explorer', + type: 'error'}); + })(); </script> diff --git a/application/modules/opac/controllers/BibController.php b/application/modules/opac/controllers/BibController.php index 4ca5cd844ae6ae478b1867e5f9d475c49cc6affb..2214620b3c580e07e84ab7a5ed18dfd183f24df7 100644 --- a/application/modules/opac/controllers/BibController.php +++ b/application/modules/opac/controllers/BibController.php @@ -34,7 +34,7 @@ class BibController extends ZendAfi_Controller_Action { $bibs = array_merge($bibs, $zone->getVisibleBibs()); $this->view->articles = $this->_getArticlesForBibs($bibs); -- $this->view->global_map_path = sprintf("%s/photobib/global.jpg", USERFILESURL); + $this->view->global_map_path = sprintf("%s/photobib/global.jpg", USERFILESURL); $this->view->zones = $zones; } @@ -212,6 +212,7 @@ class BibController extends ZendAfi_Controller_Action { public function widgetPageAction() { $viewRenderer = $this->getHelper('ViewRenderer'); + if ($this->_getParam('render') === 'ajax') $viewRenderer->setLayoutScript('empty.phtml'); @@ -219,18 +220,35 @@ class BibController extends ZendAfi_Controller_Action { $id_division = (int)$this->_getParam('id_division'); $page = (int)$this->_getParam('page'); + $helper = (new ZendAfi_View_Helper_Accueil_Library($id_module, + $this->_getSettingsFor($id_division, $id_module))) + ->setView($this->view) + ->setPage($page) + ->setSelectedFilters($this->_getSelectedFilters()); + + $this->view->lib_helper = $helper; + } + + + protected function _getSelectedFilters() { $filter_keys = (new Class_Systeme_ModulesAccueil_Library())->getStaticFiltersKeys(); - $selected_filters = $this->_helper->selectedFilters($filter_keys); + return $this->_helper->selectedFilters($filter_keys); + } + - $module_params = Class_Profil::getCurrentProfil() + protected function _getSettingsFor($id_division, $id_module) { + $settings = Class_Profil::getCurrentProfil() ->getBoitesDivision($id_division)[$id_module]; - $helper = new ZendAfi_View_Helper_Accueil_Library($id_module, $module_params); - $helper->setView($this->view); - $helper->setPage($page); - $helper->setSelectedFilters($selected_filters); + if(!Class_Users::isCurrentUserCanAccesBackend() || !$this->_getParam('default_filters')) + return $settings; - $this->view->lib_helper = $helper; + $settings['preferences']['default_filters'] = $this->_getSelectedFilters(); + Class_Profil::getCurrentProfil() + ->updateModuleConfigAccueil($id_module, $settings) + ->save(); + + return $settings; } diff --git a/cosmogramme/php/integre_traite_main.php b/cosmogramme/php/integre_traite_main.php index 2ec8fe031cb4c91caeecb7ffc3a28a7a038cedd7..af80b939a9fec51e04c84bc8faf0a6dece51ae9f 100644 --- a/cosmogramme/php/integre_traite_main.php +++ b/cosmogramme/php/integre_traite_main.php @@ -128,7 +128,6 @@ if ($_REQUEST['reprise'] == 'oui') { exit; } - setVariable('integration_date', $date); (new maj_auto())->supprimerEntetesPergame(); // ---------------------------------------------------------------- diff --git a/library/Class/AdminVar.php b/library/Class/AdminVar.php index 18832351e6272d52edc3d605f2ad3a8133aea3f8..d47339a06604b897c041d32f2b6cd2f07ab1fc7f 100644 --- a/library/Class/AdminVar.php +++ b/library/Class/AdminVar.php @@ -126,6 +126,7 @@ class Class_AdminVarLoader extends Storm_Model_Loader { 'CACHE_ACTIF' => Class_AdminVar_Meta::newOnOff(implode('<br/>', ['Activer le cache des boîtes (meilleure performance mais mise à jour toutes les ' . CACHE_LIFETIME / 60 . 'mn)', '<a href="' . Class_Url::baseUrl() . '/admin/index/clearcache" >Vider le cache</a>']))->bePrivate(), + 'CACHE_DATE' => Class_AdminVar_Meta::newDefault($this->_('Date du dernier vidage manuel du cache'))->bePrivate(), 'FORMATIONS' => Class_AdminVar_Meta::newOnOff($this->_('Activer ou désactiver le module formation'))->bePrivate(), diff --git a/library/Class/Codification.php b/library/Class/Codification.php index 6e4d109eee1ea2a4b47a401b4db7adda87a1623d..adf46e4519da031c0e1b49282c638cbf18846308 100644 --- a/library/Class/Codification.php +++ b/library/Class/Codification.php @@ -69,8 +69,9 @@ class Class_Codification { CODE_AVAILABILITY='V'; - protected $_nom_champs, $_nom_onglets; - + protected + $_nom_champs, + $_nom_onglets; public function getTypesDocs() { @@ -78,33 +79,6 @@ class Class_Codification { } - public function getComboTypesDocs($valeur, $events='', $tous=false) - { - /* - * Attention: utilisé dans la sélection type doc recherche simple et certains suppriment des types de - * docs dans cosmogramme pour ne pas les avoir dans la liste des types de doc - * - */ - $data=fetchOne("select liste from variables where clef='types_docs'"); - if($events > "") $events=" ".$events; - $combo='<select name="type_doc" '.$events.'>'; - if($tous == true) $combo.='<option value="">tous</option>'; - $v=explode(chr(13).chr(10),$data); - for($i=0; $i<count($v); $i++) - { - $elem=explode(":",$v[$i]); - if(trim($elem[0])>"") - { - if($valeur==$elem[0]) $selected=" selected"; else $selected=""; - $combo.='<option value="'.$elem[0].'"'.$selected.'>'.stripSlashes($elem[1]).'</option>'; - } - } - $combo.='</select>'; - return $combo; - } - - - public function getCodesLibellesFacette($concatenated_facettes) { return Class_Notice_RubriqueFacette::parseRubriquesFromPreferenceField($concatenated_facettes); } diff --git a/library/Class/Cosmogramme/Integration/PhasePrepareIntegrations.php b/library/Class/Cosmogramme/Integration/PhasePrepareIntegrations.php index c11810e66afe154fb2902f2106dcf7e8bc68846a..05a460aadf5dea2b3013bfe76d624b42d9140ad6 100644 --- a/library/Class/Cosmogramme/Integration/PhasePrepareIntegrations.php +++ b/library/Class/Cosmogramme/Integration/PhasePrepareIntegrations.php @@ -52,6 +52,9 @@ class Class_Cosmogramme_Integration_PhasePrepareIntegrations extends Class_Cosmo $this->_runOne($majauto); $this->_log->ecrire('</table>'); + + Class_CosmoVar::setValueOf('integration_date', + $this->getTimeSource()->dateDayAndHours()); } diff --git a/library/Class/FilterSettings.php b/library/Class/FilterSettings.php index 72f82fa2561957bb79a59b3074cd950c80c6be18..e97fb0aabb7def64fd274bcfcec3cbb1a79100c7 100644 --- a/library/Class/FilterSettings.php +++ b/library/Class/FilterSettings.php @@ -69,5 +69,13 @@ class Class_FilterSettings extends Class_Entity { $module = $this->getModule(); return $this->getFiltersPosition() == $module::POSITION_RIGHT; } + + + public function getActiveFilters() { + if($this->getUseDefaultFilters()) + return $this->getDefaultFilters(); + + return $this->getSelectedFilters(); + } } ?> \ No newline at end of file diff --git a/library/Class/ScriptLoader.php b/library/Class/ScriptLoader.php index aff66e1aa5fe759e3bf747377b47041f103962f0..d3ca72ec45e7681638f9f29a35084b77f82c4ba9 100644 --- a/library/Class/ScriptLoader.php +++ b/library/Class/ScriptLoader.php @@ -731,18 +731,22 @@ class Class_ScriptLoader { * @return string */ protected function _addVersionParam($file) { - return $file . ((false == strpos($file, '?')) ? '?' : '&') . 'v=' . $this->getVersionPergameHash(); + return $file . ((false == strpos($file, '?')) ? '?' : '&') . 'v=' . $this->getCacheHash(); } - - protected function getVersionPergameHash() { + public function getCacheHash() { if (null == $this->_version_pergame_hash) - $this->_version_pergame_hash = md5(BOKEH_MAJOR_VERSION); + $this->_version_pergame_hash = $this->resetCacheHash(); return $this->_version_pergame_hash; } + public function resetCacheHash() { + return $this->_version_pergame_hash = md5(BOKEH_MAJOR_VERSION . Class_AdminVar::get('CACHE_DATE')); + } + + public function loadTreeSelect() { return $this ->loadJQueryUI() diff --git a/library/Class/SuggestionAchat.php b/library/Class/SuggestionAchat.php index 699d81d5d3d6b7c377861269a9f2290c68ca4b5a..40f0033bacab9d2cb7643aa479bd6abb75cfdf3f 100644 --- a/library/Class/SuggestionAchat.php +++ b/library/Class/SuggestionAchat.php @@ -24,9 +24,9 @@ class Class_SuggestionAchat extends Storm_Model_Abstract { protected $_table_name = 'suggestion_achat'; protected $_belongs_to = ['user' => ['model' => 'Class_Users', - 'referenced_in' => 'user_id'], + 'referenced_in' => 'user_id'], - 'type_doc' => ['model' => 'Class_TypeDoc']]; + 'type_doc' => ['model' => 'Class_TypeDoc']]; protected $_default_attribute_values = ['date_creation' => '', 'titre' => '', diff --git a/library/Class/Systeme/ModulesAccueil/Library.php b/library/Class/Systeme/ModulesAccueil/Library.php index 58439504c4ae17a29c2815c3c213ba4352b0c45e..67a1a7441e627404e810fe8c6a5c25e0c7aa9836 100644 --- a/library/Class/Systeme/ModulesAccueil/Library.php +++ b/library/Class/Systeme/ModulesAccueil/Library.php @@ -73,6 +73,7 @@ class Class_Systeme_ModulesAccueil_Library extends Class_Systeme_ModulesAccueil_ 'filters' => '', 'filters_display_modes' => self::DISPLAY_LIST, 'filters_position' => self::POSITION_RIGHT, + 'default_filters' => [], 'linked' => 0, 'osm_map' => 0]; @@ -138,7 +139,6 @@ class Class_Systeme_ModulesAccueil_Library extends Class_Systeme_ModulesAccueil_ protected function _getCustomFields() { $custom_fields = Class_CustomField_Model::getModel('Bib')->getFields(); $custom_fields_list = []; - foreach ($custom_fields as $field) $custom_fields_list['custom_field_' . $field->getId()] = $field->getLabel(); diff --git a/library/Class/Systeme/ModulesAccueil/RechercheSimple.php b/library/Class/Systeme/ModulesAccueil/RechercheSimple.php index 315f52e33c547d810b000f12b48f1a1212497e7e..33ad55bf441ad4fe3850d7cc70c9babe78ec6602 100644 --- a/library/Class/Systeme/ModulesAccueil/RechercheSimple.php +++ b/library/Class/Systeme/ModulesAccueil/RechercheSimple.php @@ -19,6 +19,11 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ class Class_Systeme_ModulesAccueil_RechercheSimple extends Class_Systeme_ModulesAccueil_Null{ + + const + DOMAIN_SELECT_SELECT = 'select', + DOMAIN_SELECT_CHECKBOX = 'checkbox'; + /** @var string */ protected $_group = Class_Systeme_ModulesAccueil::GROUP_RECH; @@ -52,7 +57,9 @@ class Class_Systeme_ModulesAccueil_RechercheSimple extends Class_Systeme_Modules 'tri' => '*', 'profil_redirect' => 0, //type de profil vers lequel basculer lors d'une recherche 'placeholder' => '', //message d'exemple dans le champ de recherche - 'search_button' => ''//search button text value + 'search_button' => '', //search button text value, + 'domain_ids' => '', // list of domains user can choose to restrict search + 'domain_select_style' => self::DOMAIN_SELECT_SELECT // type of domain selection (select / checkbox) ]; } ?> \ No newline at end of file diff --git a/library/Class/TimeSource.php b/library/Class/TimeSource.php index 5045e4662fdc87322aa59bcd1cd805ea88a90a5d..54bc37b228bc3b4c748a80ccdfaedc13fa50adbc 100644 --- a/library/Class/TimeSource.php +++ b/library/Class/TimeSource.php @@ -31,7 +31,12 @@ class Class_TimeSource { public function dateYmd() { - return date('Y-m-d', $this->time()); + return $this->dateFormat('Y-m-d'); + } + + + public function dateDayAndHours() { + return $this->dateFormat('Y-m-d H:i:s'); } @@ -83,5 +88,9 @@ class Class_TimeSource { $time = $this->time(); return date('Y', $time) - 1 . date('-m-d', $time); } -} -?> \ No newline at end of file + + + public function daysFrom($time) { + return (int)(($this->time() - $time) / 3660 / 24); + } +} \ No newline at end of file diff --git a/library/Class/Users.php b/library/Class/Users.php index efe95ee1a4fb036c5f6aa3b166856c27514ea1b6..b9bf1e30d41d86df620581b4a3b54ffa8b149f28 100644 --- a/library/Class/Users.php +++ b/library/Class/Users.php @@ -718,7 +718,8 @@ class Class_Users extends Storm_Model_Abstract { if ($this->hasIdabon()) $groupes[]='abonne'; - $groupes[]=$this->getLibelleRole(); + + $groupes[] = $this->getNomRole(); return $groupes; } @@ -776,10 +777,11 @@ class Class_Users extends Storm_Model_Abstract { /** * @return string */ - public function getLibelleRole(){ - return ZendAfi_Acl_AdminControllerRoles::getNomRole($this->getRoleLevel()); + public function getLibelleRole() { + return ZendAfi_Acl_AdminControllerRoles::getLibelleRole($this->getRoleLevel()); } + /** * @return array */ @@ -798,10 +800,7 @@ class Class_Users extends Storm_Model_Abstract { } - /** - * @return int - */ - public function getRole() { + public function getNomRole() { return ZendAfi_Acl_AdminControllerRoles::getNomRole($this->getRoleLevel()); } diff --git a/library/Class/WebService/SIGB/Koha/BuySuggestForm.php b/library/Class/WebService/SIGB/Koha/BuySuggestForm.php index 284913b71077ad4622afc3a62d516841de19b557..0925c8593772c7b500366f2472b3a85c57d5528f 100644 --- a/library/Class/WebService/SIGB/Koha/BuySuggestForm.php +++ b/library/Class/WebService/SIGB/Koha/BuySuggestForm.php @@ -30,6 +30,10 @@ class Class_WebService_SIGB_Koha_BuySuggestForm extends ZendAfi_Form_SuggestionA public function init() { parent::init(); + + $sorted_type_docs = Class_TypeDoc::getUserFriendlyTypeDocs(); + asort($sorted_type_docs, SORT_NATURAL | SORT_FLAG_CASE); + $this ->addElement('text', 'Title', ['label' => $this->_('Titre').' *', @@ -54,7 +58,7 @@ class Class_WebService_SIGB_Koha_BuySuggestForm extends ZendAfi_Form_SuggestionA 'placeholder' => '2015', 'validators' => ['Int']]) - ->addElement('textarea', 'PatronReason', ['label' => '', + ->addElement('textarea', 'Note', ['label' => '', 'cols' => 70, 'rows' => 10]) @@ -62,7 +66,12 @@ class Class_WebService_SIGB_Koha_BuySuggestForm extends ZendAfi_Form_SuggestionA 'value' => Class_Users::getIdentity()->getLibraryLabel(), 'disabled' => true]) - ->addDisplayGroup(['Title', + ->addElement('select', 'DocType', ['label' => $this->_('Type de document').' *', + 'multioptions' => $sorted_type_docs, + 'value' => Class_TypeDoc::LIVRE]) + + ->addDisplayGroup(['DocType', + 'Title', 'Author', 'Isbn', 'PublicationYear', @@ -70,7 +79,7 @@ class Class_WebService_SIGB_Koha_BuySuggestForm extends ZendAfi_Form_SuggestionA 'suggestion', ['legend' => $this->_('Informations sur le document')]) - ->addDisplayGroup(['PatronReason'], + ->addDisplayGroup(['Note'], 'notes_group', ['legend' => $this->_('Notes')]) diff --git a/library/Class/WebService/SIGB/Koha/RestfulService.php b/library/Class/WebService/SIGB/Koha/RestfulService.php index 4f7b3108130f97cb77c4de7b70e5a87819e81620..476d9a0c52466fb62bf155ae5c86c5ebf6775e59 100644 --- a/library/Class/WebService/SIGB/Koha/RestfulService.php +++ b/library/Class/WebService/SIGB/Koha/RestfulService.php @@ -100,11 +100,16 @@ class Class_WebService_SIGB_Koha_RestfulService public function suggest($suggestion) { + $doc_type = Class_TypeDoc::find($suggestion->getDocType()); + $doctype_label = $doc_type + ? ' [' . $doc_type->getLibelle() . ']' + : ''; + $datas = ['suggestedby' => $suggestion->getUser()->getIdSigb(), - 'title' => $suggestion->getTitle(), + 'title' => $suggestion->getTitle() . $doctype_label, 'author' => $suggestion->getAuthor(), 'isbn' => $suggestion->getIsbn(), - 'patronreason' => $suggestion->getPatronReason(), + 'note' => $suggestion->getNote(), 'publicationyear' => $suggestion->getPublicationYear(), 'branchcode' => $suggestion->getUser()->getLibraryCode()]; diff --git a/library/Class/WebService/SIGB/Koha/SuggestionsReader.php b/library/Class/WebService/SIGB/Koha/SuggestionsReader.php index 68829492f6fb748af32d29a47286f29b350f14f2..fa8a43cea3a68b3ee37970654764c593709fa576 100644 --- a/library/Class/WebService/SIGB/Koha/SuggestionsReader.php +++ b/library/Class/WebService/SIGB/Koha/SuggestionsReader.php @@ -40,7 +40,6 @@ class Class_WebService_SIGB_Koha_SuggestionsReader { ->setLibrary($library ? $library->getLibelle() : '') ->setDate(trim($data->suggesteddate)) ->setNote(trim($data->note)) - ->setPatronReason(trim($data->patronreason)) ->setStatus($this->_statusLabelFor($data)); return $suggestion; diff --git a/library/Class/WebService/SIGB/Nanook/BuySuggestForm.php b/library/Class/WebService/SIGB/Nanook/BuySuggestForm.php index 5dc73e84220111c9705139985b5c94a60a0663cb..d8f5427e83ea728c91fa0e2e7285244b07035427 100644 --- a/library/Class/WebService/SIGB/Nanook/BuySuggestForm.php +++ b/library/Class/WebService/SIGB/Nanook/BuySuggestForm.php @@ -30,6 +30,10 @@ class Class_WebService_SIGB_Nanook_BuySuggestForm extends ZendAfi_Form_Suggestio public function init() { parent::init(); + + $sorted_type_docs = Class_TypeDoc::getUserFriendlyTypeDocs(); + asort($sorted_type_docs, SORT_NATURAL | SORT_FLAG_CASE); + $this ->addElement('text', 'Title', ['label' => $this->_('Titre').' *', @@ -60,7 +64,12 @@ class Class_WebService_SIGB_Nanook_BuySuggestForm extends ZendAfi_Form_Suggestio 'value' => Class_Users::getIdentity()->getLibelleBib(), 'disabled' => true]) - ->addDisplayGroup(['Title', + ->addElement('select', 'DocType', ['label' => $this->_('Type de document').' *', + 'multioptions' => $sorted_type_docs, + 'value' => Class_TypeDoc::LIVRE]) + + ->addDisplayGroup(['DocType', + 'Title', 'Author', 'Isbn', 'Library'], @@ -75,4 +84,4 @@ class Class_WebService_SIGB_Nanook_BuySuggestForm extends ZendAfi_Form_Suggestio ->addElement('submit', 'submit', ['label' => $this->_('Envoyer')]); } } -?> \ No newline at end of file +?> diff --git a/library/Class/WebService/SIGB/Nanook/Service.php b/library/Class/WebService/SIGB/Nanook/Service.php index 039f0a2da3975ff7e094d014cd43fdffd9e576da..e3b9ad3042d3a18c27f451f60bd47be4855c0a94 100644 --- a/library/Class/WebService/SIGB/Nanook/Service.php +++ b/library/Class/WebService/SIGB/Nanook/Service.php @@ -107,8 +107,10 @@ class Class_Webservice_SIGB_Nanook_Service extends Class_WebService_SIGB_Abstrac $url = $this->buildQueryURL(['service' => 'CreateSuggest', 'patronId' => $suggestion->getUser()->getIdSigb()]); + $doctype_label = Class_TypeDoc::find($suggestion->getDocType())->getLibelle(); + $post_data = ['site' => (($user = Class_Users::getIdentity()) ? $user->getLibraryId() : 0), - 'title' => $suggestion->getTitle(), + 'title' => '[' . $doctype_label . '] ' . $suggestion->getTitle(), 'author' => $suggestion->getAuthor(), 'isbnean' => $suggestion->getIsbn(), 'desclink' => $suggestion->getUrl(), @@ -269,4 +271,4 @@ class Class_Webservice_SIGB_Nanook_Service extends Class_WebService_SIGB_Abstrac return $this->_error_codes[$code]; } } -?> \ No newline at end of file +?> diff --git a/library/Class/WebService/SIGB/Suggestion.php b/library/Class/WebService/SIGB/Suggestion.php index 220427a65ca83ef3b2a7bb5163b36393522036d0..7233eef5377e80481f55b2a42eda1195617b8ee6 100644 --- a/library/Class/WebService/SIGB/Suggestion.php +++ b/library/Class/WebService/SIGB/Suggestion.php @@ -69,7 +69,7 @@ class Class_WebService_SIGB_Suggestion extends Class_Entity { ->visitField($this->_('Date de publication'), $this->getPublicationYear()) ->visitField($this->_('Bibliothèque'), $this->getLibrary()) ->visitField($this->_('Date de suggestion'), $this->getDate()) - ->visitField($this->_('Note'), $this->getPatronReason()) + ->visitField($this->_('Note'), $this->getNote()) ->visitField($this->_('Statut'), $this->getStatus()); return $this; diff --git a/library/ZendAfi/Acl/AdminControllerGroup.php b/library/ZendAfi/Acl/AdminControllerGroup.php index 15e8a63711ca9ada9c6431b468da9af0a6013a79..e6c9fadd1dad69ad41bf74ff8d2d67dbff3242aa 100644 --- a/library/ZendAfi/Acl/AdminControllerGroup.php +++ b/library/ZendAfi/Acl/AdminControllerGroup.php @@ -38,7 +38,7 @@ class ZendAfi_Acl_AdminControllerGroup { 'oai' => Class_UserGroup::RIGHT_USER_BIB_NUM, 'frbr-link' => Class_UserGroup::RIGHT_USER_NOTICES_LIEES, 'users' => Class_UserGroup::RIGHT_USER_SIGB_USER_READ, - 'users/change-admin-skins' => null + 'users/change-admin-skin' => null ], $_activated = []; @@ -86,11 +86,11 @@ class ZendAfi_Acl_AdminControllerGroup { return $this->_isAllowedByGroup($user, $right); $acl = $this->getAcl(); - if ($acl->isAllowed($user->getRole(), + if ($acl->isAllowed($user->getNomRole(), $acl->has($controller . '/' . $action) ? $controller . '/' . $action : null)) return true; - return $acl->isAllowed($user->getRole(), + return $acl->isAllowed($user->getNomRole(), $acl->has($controller) ? $controller : null); } diff --git a/library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php b/library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php index 2983391772f4910301661ea468d5c1335dbc41eb..a88d32a5370a60f0add5765b9d6b138c119bb4d0 100644 --- a/library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php +++ b/library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php @@ -24,7 +24,8 @@ class ZendAfi_Controller_Action_Helper_ArticleListViewMode extends ZendAfi_Contr use Trait_Translator; const STRATEGY = 'article'; - protected $_filtred_categories_ids = []; + protected $_filtred_categories_ids = [], + $_search_params; public function articleListViewMode($params) { $this->_params = $params; @@ -59,6 +60,7 @@ class ZendAfi_Controller_Action_Helper_ArticleListViewMode extends ZendAfi_Contr return 'id_cat'; } + protected function getAllParentCatIds($id_cat) { return array_merge([$id_cat], array_map(function($model) { return $model->getId();}, @@ -121,10 +123,76 @@ class ZendAfi_Controller_Action_Helper_ArticleListViewMode extends ZendAfi_Contr } + public function buildWhereParams() { + $terms = explode(' ', $this->getSearch()); + $conditions = []; + + foreach($terms as $term) + $conditions[] = $this->buildConditionWith($term); + + return $this->buildWhereStringWith($conditions); + } + + + protected function buildConditionWith($term) { + $search_term = Zend_Db_Table::getDefaultAdapter()->quote('%' . $term . '%'); + + if(strtotime($term)) + return sprintf('((date_maj like %s) or (titre like %s))', + $search_term, + $search_term); + + if($user_condition = $this->userConditionWith($term, $search_term)) + return $user_condition; + + return sprintf('(titre like %s)', + $search_term); + } + + + protected function buildWhereStringWith($conditions) { + if(!$conditions) + return ''; + + return implode(' and ', $conditions); + } + + + protected function userConditionWith($term, $search_term) { + if(is_numeric($term)) + return ''; + + $criteria = + (new Class_User_SearchCriteria(['search_search_for' => $term, + 'search_role_level' => [ZendAfi_Acl_AdminControllerRoles::MODO_BIB, + ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL, + ZendAfi_Acl_AdminControllerRoles::ADMIN_PORTAIL, + ZendAfi_Acl_AdminControllerRoles::ADMIN_BIB, + ZendAfi_Acl_AdminControllerRoles::SUPER_ADMIN]])); + + if(!$users_ids = (new Storm_Model_Collection($criteria->findPage(1)))->collect('id')->getArrayCopy()) + return ''; + + return sprintf('((titre like %s) or (id_user in (%s)))', + $search_term, + implode(',', $users_ids)); + } + + + protected function getMultipleSearchParams() { + return ['where' => $this->buildWhereParams(), + 'order' => 'titre']; + } + + protected function getSearchParams() { + if($this->_search_params) + return $this->_search_params; + if (count($filtered_ids=$this->getFilteredCategoriesIds())>0) - return array_merge(parent::getSearchParams(),['id_cat' => $filtered_ids]); - return parent::getSearchParams(); + return $this->_search_params = array_merge($this->getMultipleSearchParams(), + ['id_cat' => $filtered_ids]); + return $this->_search_params = $this->getMultipleSearchParams(); } @@ -243,12 +311,16 @@ class ZendAfi_Controller_Action_Helper_ArticleListViewMode extends ZendAfi_Contr public function getItemsCols() { - return [$this->_('Liste des articles')]; + return [$this->_('Liste des articles'), + $this->_('Date de mise à jour'), + $this->_('Créateur')]; } - public function getItemsLabelAttrib() { - return 'titre'; + public function getItemsAttribs() { + return ['titre', + 'date_maj', + 'author-name']; } diff --git a/library/ZendAfi/Form/Configuration/SearchWidget.php b/library/ZendAfi/Form/Configuration/SearchWidget.php new file mode 100644 index 0000000000000000000000000000000000000000..50e440d21fc1f37245b72e6184746ab88abbcd9e --- /dev/null +++ b/library/ZendAfi/Form/Configuration/SearchWidget.php @@ -0,0 +1,146 @@ +<?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_Form_Configuration_SearchWidget extends ZendAfi_Form { + public function init() { + parent::init(); + $this + ->setAttrib('id', + 'configuration_searchWidget') + ->addElement('select', + 'boite', + ['label' => $this->_('Style de boite'), + 'multiOptions' => ( + new Class_Profil_Templates( + Class_Profil::getCurrentProfil()))->toArray()]) + ->addElement('slider', + 'largeur', + ['label' => $this->_('Largeur du champ de saisie'), + 'min' => 100, + 'max' => 300, + 'step' => 1]) + ->addElement('text', + 'titre', + ['label' => $this->_('Titre'), + 'size' => '55']) + ->addElement('checkbox', + 'select_bib', + ['label' => $this->_('Proposer la sélection de bibliothèques'), + 'multiOptions' => [1,0]]); + + if (Class_CodifAnnexe::countBy(['invisible' => 0])) { + $this->addElement('checkbox', + 'select_annexe', + ['label' => $this->_('Proposer la sélection de sites'), + 'multiOptions' => [1,0]]); + } + + $this + ->addElement('checkbox', + 'select_doc', + ['label' => $this->_('Proposer la sélection de types de doc'), + 'multiOptions' => [1,0]]) + + ->addElement('text', + 'search_button', + ['label' => $this->_('Message du bouton pour rechercher'), + 'size' => 55]) + + ->addElement('text', + 'message', + ['label' => $this->_('Message au dessus du champ de saisie'), + 'size' => 55]) + + ->addElement('text', + 'placeholder', + ['label' => $this->_('Message d\'exemple dans le champ de saisie'), + 'size' => 55]) + + ->addElement('text', + 'exemple', + ['label' => $this->_('Message au-dessous du champ de recherche'), + 'size' => 55]) + + ->addElement('checkbox', + 'recherche_avancee', + ['label' => $this->_('Afficher le lien recherche avancée'), + 'multiOptions' => ['on', 'off']]) + + ->addElement('select', + 'tri', + ['label' => $this->_('Tri du résultat de recherche'), + 'multiOptions' => (new Class_CriteresRecherche())->getListeTris()]) + + ->addElement('comboProfils', + 'profil_redirect', + ['label' => $this->_('Basculer automatiquement sur le profil')]) + + ->addElement('select', + 'type_doc', + ['label' => $this->_('Type de document'), + 'multiOptions' => (['' => $this->_('Tous')] + Class_TypeDoc::allByIdLabel())]) + + ->addElement('domainSelect', + 'domain_ids', + ['label' => $this->_('Domaines sélectionnables'), + 'url' => Class_Url::assemble(['module' => 'opac', + 'controller' => 'abonne', + 'action' => 'viewable-domains-json'])]) + + ->addElement('radio', + 'domain_select_style', + ['label' => $this->_('Mode de sélection'), + 'multiOptions' => [Class_Systeme_ModulesAccueil_RechercheSimple::DOMAIN_SELECT_SELECT => $this->_('Sélection dans une liste déroulante'), + Class_Systeme_ModulesAccueil_RechercheSimple::DOMAIN_SELECT_CHECKBOX => $this->_('Sélection multiple par cases à cocher')]]) + + ->addDisplayGroup(['boite', 'largeur'], + 'display', + ['legend' => $this->_('Affichage')]) + + ->addDisplayGroup(['titre', + 'select_bib', + 'select_annexe', + 'select_doc', + 'search_button', + 'message', + 'placeholder', + 'exemple', + 'recherche_avancee', + 'tri', + 'profil_redirect'], + 'general', + ['legend' => $this->_('Généralités')]) + + ->addDisplayGroup(['type_doc'], + 'filters', + ['legend' => $this->_('Filtres')]) + + ->addDisplayGroup(['domain_ids', + 'domain_select_style'], + 'domains', + ['legend' => '']); + + + + } +} + +?> \ No newline at end of file diff --git a/library/ZendAfi/Form/Decorator/Slider.php b/library/ZendAfi/Form/Decorator/Slider.php new file mode 100644 index 0000000000000000000000000000000000000000..27b2f4f1c1db3776caeaac22f44d2d0378c61d16 --- /dev/null +++ b/library/ZendAfi/Form/Decorator/Slider.php @@ -0,0 +1,39 @@ +<?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_Form_Decorator_Slider extends Zend_Form_Decorator_Abstract { + /** + * @param string $content + * @return string + */ + public function render($content) { + $widget = $this->_element + ->getView() + ->tagSlider($this->_element->getName(), + $this->_element->getValue(), + $this->_element->min, + $this->_element->max, + $this->_element->step + ); + return $content . $widget; + + } +} +?> \ No newline at end of file diff --git a/library/ZendAfi/Form/Element/Slider.php b/library/ZendAfi/Form/Element/Slider.php new file mode 100644 index 0000000000000000000000000000000000000000..5370a7885c6c95ebca179ed87a68a56ffdf269f3 --- /dev/null +++ b/library/ZendAfi/Form/Element/Slider.php @@ -0,0 +1,25 @@ +<?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_Form_Element_Slider extends ZendAfi_Form_Element_XhtmlOnViewHelper { + protected + $_decorator_name = 'Slider'; +} \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/Accueil/Library.php b/library/ZendAfi/View/Helper/Accueil/Library.php index 9c9734ba81a2d36f0b24920954ec517db766b283..1f17931b44a74f99468e3ed724f94eaf339d7a08 100644 --- a/library/ZendAfi/View/Helper/Accueil/Library.php +++ b/library/ZendAfi/View/Helper/Accueil/Library.php @@ -24,8 +24,10 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba protected $page, $_filters, $_selected_filters = [], + $_use_default_filters = true, $_filter_settings; + public function shouldCacheContent() { return false; } @@ -38,6 +40,22 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba } + protected function _addToDefaultFiltersLink() { + if(!Class_Users::isCurrentUserCanAccesBackend()) + return ''; + return $this->view->tagAnchor($this->view->url(array_merge( + $this->_getBaseUrl(), + ['default_filters' => 1, + 'render' => null])), + Class_Admin_Skin::current() + ->renderMenuIconOn('moderation', + $this->view, + ['title' => $this->view->_('Enregistrer comme filtres par défaut')]), + ['class' => 'default_filters']); + + } + + public function getContent() { $nb_aff = $this->preferences['nb_aff'] ? $this->preferences['nb_aff'] @@ -47,9 +65,9 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba ? $this->preferences['pagination'] : $this->_getDefaultPreference('pagination'); - $libraries = $this->_filterLibraries($this->_loadLibraries()); + $libraries = $this->_loadLibraries(); $content = $this->_renderFilters(); - + $libraries = $this->_filterLibraries($libraries); $content .= $this->preferences['osm_map'] ? $this->view->librariesMap(Class_Bib::filterByCoordinates($libraries), '#boite_' . $this->getIdModule(), @@ -66,16 +84,17 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba $pagination == Class_Systeme_ModulesAccueil_Library::PAGINATION_BOTH) $content .= $this->_getPaginator($libraries, $nb_aff, $this->page); - return $content; + return $this->_addToDefaultFiltersLink() . $content; } public function setSelectedFilters($filters) { $this->_selected_filters = $filters; + $this->_use_default_filters = false; + return $this; } - protected function _filterLibraries($libraries) { $filters = (new Class_Systeme_ModulesAccueil_Library())->getAvailableFilters(); @@ -90,10 +109,10 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba $params[] = $filter_key; } - if (!isset($this->_selected_filters[$filter_key])) + if (!isset($this->_getActiveFilters()[$filter_key])) continue; - $params[] = $this->_selected_filters[$filter_key]; + $params[] = $this->_getActiveFilters()[$filter_key]; $libraries = call_user_func_array([$this, $func_name], $params); } @@ -191,6 +210,10 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba $this->_filter_settings ->setFilters($this->_filters) ->setSelectedFilters($this->_selected_filters) + ->setDefaultFilters(isset($this->preferences['default_filters']) + ? $this->preferences['default_filters'] + : []) + ->setUseDefaultFilters($this->_use_default_filters) ->setModelLabel('Bib') ->setUrlParams($this->_getBaseUrl()) ->setFiltersDisplayMode($this->preferences['filters_display_modes']) @@ -208,19 +231,27 @@ class ZendAfi_View_Helper_Accueil_Library extends ZendAfi_View_Helper_Accueil_Ba protected function _getBaseUrl() { $filters = []; - foreach ($this->_selected_filters as $id => $values) { + foreach ($this->_getActiveFilters() as $id => $values) { $filter_key = is_int($id) ? 'custom_field_' . $id : $id; $filters[$filter_key] = implode(';', $values); } return array_merge(['controller' => 'bib', 'action' => 'widget-page', + 'default_filters' => null, 'id_module' => $this->getIdModule(), 'id_division' => $this->division], $filters); } + protected function _getActiveFilters() { + if(!$this->_filter_settings) + return []; + return $this->_filter_settings->getActiveFilters(); + } + + protected function _getDefaultPreference($name) { return (new Class_Systeme_ModulesAccueil_Library())->getDefaultValues()[$name]; } diff --git a/library/ZendAfi/View/Helper/Admin/CosmoStatus.php b/library/ZendAfi/View/Helper/Admin/CosmoStatus.php new file mode 100644 index 0000000000000000000000000000000000000000..8a5de250265bc5d9c928bb265dc94929799574be --- /dev/null +++ b/library/ZendAfi/View/Helper/Admin/CosmoStatus.php @@ -0,0 +1,109 @@ +<?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_Admin_CosmoStatus extends ZendAfi_View_Helper_BaseHelper { + use Trait_TimeSource; + + protected + $_date_integration, + $_clef_traitement; + + public function cosmoStatus() { + if (!$this->canAccess()) + return ''; + + $this->_date_integration = Class_CosmoVar::getValueOf('integration_date'); + $this->_clef_traitement = Class_CosmoVar::getValueOf('clef_traitements'); + + return $this->title() + . $this->lastRun() + . $this->currentRun() + . $this->lag() + . $this->tasksWaiting(); + } + + + protected function title() { + return $this->_tag('h2', $this->_('Intégration des données : ')); + } + + + protected function lastRun() { + return !$this->isRunning() + ? $this->info($this->_('Dernier traitement d\'intégration effectué le'), + Class_Date::getHumanDate($this->_date_integration, 'd MMMM yyyy')) + : ''; + } + + + protected function currentRun() { + return $this->isRunning() + ? $this->info($this->_('Traitement en cours depuis le'), + Class_Date::getHumanDate($this->_date_integration) + . ' (' . Class_CosmoVar::getValueOf('traitement_phase') . ')') + : ''; + } + + + protected function lag() { + if (!$this->_date_integration + || (!$frequence = (int)Class_CosmoVar::getValueOf('integration_frequence'))) + return ''; + + $diff = $this->getTimeSource()->daysFrom(strtotime($this->_date_integration)); + $late = $diff - $frequence; + + return $frequence < $diff + ? $this->error($this->_('Traitements d\'intégration en retard de'), + $this->_('%s jours', $late)) + : ''; + } + + + protected function tasksWaiting() { + $count = Class_Cosmogramme_Integration::countBy(['traite' => 'non']); + + return $this->info($this->_('Fichier(s) en file d\'attente'), + $count ? $count : $this->_('aucun')); + } + + + protected function error($label, $value) { + return $this->view->ligneInfos($label, $value, 'error'); + } + + + protected function info($label, $value) { + return $this->view->ligneInfos($label, $value); + } + + + protected function isRunning() { + return '1' == $this->_clef_traitement; + } + + + protected function canAccess() { + $user = Class_Users::getIdentity(); + return $user->isAdmin() || $user->isAdminBib(); + } +} \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/Admin/LigneInfos.php b/library/ZendAfi/View/Helper/Admin/LigneInfos.php index 402284f2ffb28341d60e99223864251d18b250af..fee4321128708a2a6f88e32f63a2f232b1986333 100644 --- a/library/ZendAfi/View/Helper/Admin/LigneInfos.php +++ b/library/ZendAfi/View/Helper/Admin/LigneInfos.php @@ -16,16 +16,29 @@ * * 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 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -////////////////////////////////////////////////////////////////////////////////////////// -// OPAC3 : Affichage d'une information dans la page admin index -////////////////////////////////////////////////////////////////////////////////////////// + class ZendAfi_View_Helper_Admin_LigneInfos extends ZendAfi_View_Helper_BaseHelper { - public function LigneInfos($masque,$valeur) { - $html = '<div class="ligne_info">'; - if($masque) $html .= $masque.' : '; - if($valeur) $html .= '<b>'.$valeur.'</b>'; - return $html .= '</div>'; + + public function ligneInfos($label, $value, $class='') { + return $this + ->_tag('div', + $this->label($label) . $this->value($value), + ['class' => 'ligne_info ' . $class]); + } + + + protected function label($label) { + return $label + ? ($label.' : ') + : ''; + } + + + protected function value($value) { + return $value + ? $this->_tag('b', $value) + : ''; } } diff --git a/library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php b/library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php index 490f260321ac6cab612427303aa70236269bbc14..dfa069e33ec45e7bcb68971f16cb72769c1a0488 100644 --- a/library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php +++ b/library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php @@ -18,9 +18,7 @@ * along with BOKEH; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -////////////////////////////////////////////////////////////////////////////////////////// -// OPAC3 - Menu admin horizontal -////////////////////////////////////////////////////////////////////////////////////////// + class ZendAfi_View_Helper_Admin_MenuHorizontalAdmin extends ZendAfi_View_Helper_BaseHelper { protected $_current_skin; @@ -28,7 +26,6 @@ class ZendAfi_View_Helper_Admin_MenuHorizontalAdmin extends ZendAfi_View_Helper_ public function menuHorizontalAdmin() { $this->_current_skin = Class_Admin_Skin::current(); - $redmine = Class_AdminVar::isRedmineEnabled() ? ['icon' => 'redmine', 'label' => $this->_('Assistance'), @@ -38,6 +35,7 @@ class ZendAfi_View_Helper_Admin_MenuHorizontalAdmin extends ZendAfi_View_Helper_ 'action' => 'index'], null, true)] : []; + $identity = Class_Users::getIdentity(); $menus = [ ['icon' => 'home', 'label' => $this->_('Accueil'), @@ -50,11 +48,11 @@ class ZendAfi_View_Helper_Admin_MenuHorizontalAdmin extends ZendAfi_View_Helper_ 'url' => $this->view->url(['id_profil' => Class_Profil::getCurrentProfil()->getId()], null, true)], ['icon' => 'identity', - 'label' => Class_Users::getIdentity()->getLogin(), + 'label' => $identity->getLogin() . ' (' . $identity->getLibelleRole() . ')', 'url' => $this->view->url(['module' => 'admin', 'controller' => 'users', 'action' => 'edit', - 'id' => Class_Users::getIdentity()->ID_USER], null, true)], + 'id' => $identity->ID_USER], null, true)], $redmine, diff --git a/library/ZendAfi/View/Helper/Bouton.php b/library/ZendAfi/View/Helper/Bouton.php index 8a80e9db543f3cc5e8a35ae84e6197e153378dc5..8d53127b23d2bf6e1b1187124f3f61c35fda8b64 100644 --- a/library/ZendAfi/View/Helper/Bouton.php +++ b/library/ZendAfi/View/Helper/Bouton.php @@ -73,7 +73,7 @@ class ZendAfi_View_Helper_Bouton extends ZendAfi_View_Helper_BaseHelper { if(!$largeur) $largeur="120px"; - $onclick = 'var form=$(this).parents(\'form\'); if (!form.size()) form=$(this).parents(\'.boutons\').prevAll(\'form\');'; + $onclick = 'var form=$(this).parents(\'form\'); if (!form.size()) form=$(this).parents(\'.boutons\').prevAll(\'form\');if (!form.size()) form=$(this).parents(\'.boutons\').nextAll(\'form\');'; if ($this->_render_popup) $onclick .= 'initializeAjaxFormSubmit(form);'; $onclick .= 'form.submit(); return false;'; @@ -119,4 +119,4 @@ class ZendAfi_View_Helper_Bouton extends ZendAfi_View_Helper_BaseHelper { return implode("", $html); } -} \ No newline at end of file +} diff --git a/library/ZendAfi/View/Helper/CkEditor.php b/library/ZendAfi/View/Helper/CkEditor.php index 395c7f26b28a3116d2ef0e107519ac0a384188f1..6beb989f124848f4bc8281454ca11d7ca2e3a4d4 100644 --- a/library/ZendAfi/View/Helper/CkEditor.php +++ b/library/ZendAfi/View/Helper/CkEditor.php @@ -50,7 +50,7 @@ class ZendAfi_View_Helper_CkEditor extends ZendAfi_View_Helper_BaseHelper '/', ['HorizontalRule'], ['Link','Unlink','Anchor'], - ['Image','Flash','Table','Iframe','oembed','Slideshow'], + ['Image','Flash','Table','Iframe','oembed','Slideshow', 'SpecialChar'], ]; $config['extraAllowedContent'] = [ @@ -83,11 +83,13 @@ class ZendAfi_View_Helper_CkEditor extends ZendAfi_View_Helper_BaseHelper $config['toolbar'][]=['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField']; } - $config['toolbar']=array_merge($config['toolbar'],['/', - ['Styles','FontSize','TextColor','BGColor'], - ['Bold','Italic','Underline','Strike'], - ['NumberedList','BulletedList','-','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock']]); + $config['toolbar']=array_merge($config['toolbar'], + ['/', + ['Styles','FontSize','TextColor','BGColor'], + ['Bold','Italic','Underline','Strike'], + ['NumberedList','BulletedList','-','Outdent','Indent'], + ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'] + ]); $config['extraPlugins'] = 'colordialog'; diff --git a/library/ZendAfi/View/Helper/Filters/Element.php b/library/ZendAfi/View/Helper/Filters/Element.php index 2e4e959de135181501e1e10dfb45c6cfe59d156a..1d6836f68e9bb56080ae5a152fcc0b76af487fdd 100644 --- a/library/ZendAfi/View/Helper/Filters/Element.php +++ b/library/ZendAfi/View/Helper/Filters/Element.php @@ -68,7 +68,7 @@ abstract class ZendAfi_View_Helper_Filters_Element extends ZendAfi_View_Helper_B public function render($settings) { - $this->_active_filters = $settings->getSelectedFilters(); + $this->_active_filters = $settings->getActiveFilters(); $this->_url_params = $settings->getUrlParams(); $this->_model_label = $settings->getModelLabel(); $this->_available_filters = $settings->getAvailableFilters(); diff --git a/library/ZendAfi/View/Helper/Filters/Strategy/Elements.php b/library/ZendAfi/View/Helper/Filters/Strategy/Elements.php index 3e71b453d22fa54baa1eee41887e73fae3c85859..87845f426715029d8ed011017b7595e7e5f6fc34 100644 --- a/library/ZendAfi/View/Helper/Filters/Strategy/Elements.php +++ b/library/ZendAfi/View/Helper/Filters/Strategy/Elements.php @@ -50,8 +50,10 @@ abstract class ZendAfi_View_Helper_Filters_Strategy_Elements extends ZendAfi_Vie protected function _getSelectedElementsLabel() { $labels = []; foreach ($this->_getElements() as $value => $label) { - if ($this->_isSelected($value)) - $labels [] = $label; + if (!$this->_isSelected($value)) + continue; + + $labels [] = $label; } return $labels; diff --git a/library/ZendAfi/View/Helper/RenderForm.php b/library/ZendAfi/View/Helper/RenderForm.php index 68ef7506bbee76b23f46428243cb8d2c12918853..f159cecb0460ca059692ba2291cad7b9b41fe237 100644 --- a/library/ZendAfi/View/Helper/RenderForm.php +++ b/library/ZendAfi/View/Helper/RenderForm.php @@ -47,7 +47,9 @@ class ZendAfi_View_Helper_RenderForm extends ZendAfi_View_Helper_BaseHelper { ->addAdminScript('controle_maj') ->addJQueryReady('$("form input").change(function(){setFlagMaj(true)})'); - return $form->render() . $this->_buttonsFor($form, $buttons); + return $form->render() + . $this->_buttonsFor($form, $buttons) + . $this->_cloneButtons(); } @@ -169,4 +171,10 @@ class ZendAfi_View_Helper_RenderForm extends ZendAfi_View_Helper_BaseHelper { $form->getAttrib('data-backurl') : $this->view->url(['action' => 'index']); } -} \ No newline at end of file + + + protected function _cloneButtons() { + Class_ScriptLoader::getInstance() + ->addJQueryReady('$("#opac-dialog form + .boutons, .modules form + .boutons").clone().insertBefore("#opac-dialog form.form, .modules form.form");'); + } +} diff --git a/library/ZendAfi/View/Helper/TagRechercheSimple.php b/library/ZendAfi/View/Helper/TagRechercheSimple.php index 870480a22afb04e5c81b1b0496f7001f0f750068..64915c5f866b4cd66f2bae047f3753fab8e4ba75 100644 --- a/library/ZendAfi/View/Helper/TagRechercheSimple.php +++ b/library/ZendAfi/View/Helper/TagRechercheSimple.php @@ -30,9 +30,11 @@ class ZendAfi_View_Helper_TagRechercheSimple extends Zend_View_Helper_HtmlElemen $this->division = $division; $this->id_module = $id_module; - return $this->renderForm($this->renderInputTypeDoc(). + return $this->renderForm( + $this->renderInputTypeDoc(). $this->renderInputTri(). $this->renderChampSaisie(). + $this->renderDomainSelect(). $this->renderSelectionBib()). $this->renderRechercheAvancee(). '<div class="clear"></div>'; @@ -144,6 +146,57 @@ class ZendAfi_View_Helper_TagRechercheSimple extends Zend_View_Helper_HtmlElemen } + public function renderDomainSelect() { + $domain_ids = array_filter(explode('-', trim($this->preferences['domain_ids'])), 'is_numeric'); + if (!$domain_ids) + return ''; + + + if (!$domains = Class_Catalogue::findAllBy(['id_catalogue' => $domain_ids, + 'order' => 'libelle'])) + return ''; + + $domain_labels = []; + foreach($domains as $domain) { + if ($th = Class_CodifThesaurus::findThesaurusForCatalogue($domain->getId())) + $domain_labels[$th->getFacetteIndex()]= $th->getLibelleFacette(); + } + + return $this->preferences['domain_select_style'] == Class_Systeme_ModulesAccueil_RechercheSimple::DOMAIN_SELECT_CHECKBOX + ? $this->_renderDomainSelectAsCheckbox($domain_labels) + : $this->_renderDomainSelectAsSelect($domain_labels); + } + + + protected function _renderDomainSelectAsCheckbox($domains) { + $html = ''; + foreach($domains as $id => $label) { + $html .= + $this->view->tag('li', + $this->view->formCheckbox('multifacet_' . $id, + null, + []) + . $this->view->tag('label', $label)); + } + + return $this->view->tag('fieldset', + $this->view->tag('legend', $this->view->_('Restreindre à ')) + . + $this->view->tag('ul', $html), + ['class' => 'domains']); + } + + + protected function _renderDomainSelectAsSelect($domains) { + $domains = [0 => $this->view->_('Partout')] + $domains; + return $this->view->formSelect( + 'facettes', + 0, + ['title' => $this->view->_('Domaine de recherche')], + $domains); + } + + public function renderInputTypeDoc() { return isset($this->preferences["type_doc"]) ? '<input type="hidden" name="type_doc" value="'.$this->preferences["type_doc"].'" />' @@ -165,7 +218,7 @@ class ZendAfi_View_Helper_TagRechercheSimple extends Zend_View_Helper_HtmlElemen $action_url['id_profil'] = $this->preferences["profil_redirect"]; return - '<form name="form" role="search" action="'.$this->view->url($action_url, null, true).'" method="get" class="rechSimpleForm">' + '<form name="form" role="search" action="'.$this->view->url($action_url, null, true).'" method="POST" class="rechSimpleForm">' .'<div>'.$content.'</div>' .'</form>'; } @@ -183,7 +236,8 @@ class ZendAfi_View_Helper_TagRechercheSimple extends Zend_View_Helper_HtmlElemen 'style' => 'width:'.$this->preferences["largeur"].'px', 'onkeypress' => 'if (event.keyCode == 13) {this.form.submit();return false;}']; $search_button_value=isset($this->preferences['search_button']) ? $this->preferences['search_button'] :""; - $ret= '<input '.$this->_htmlAttribs($attribs).' />'. + + $ret = '<input '.$this->_htmlAttribs($attribs).' />'. '<input name="button" type="submit" class="submit" value="'.$search_button_value.'" />'; if ($this->preferences["exemple"]) diff --git a/library/startup.php b/library/startup.php index 04ba49eed35a5b6770b9807fab3aba9101884eb8..2f23eefba8bd436d2cdf513e02d28a4c01bc10cc 100644 --- a/library/startup.php +++ b/library/startup.php @@ -83,7 +83,7 @@ class Bokeh_Engine { function setupConstants() { defineConstant('BOKEH_MAJOR_VERSION','7.7'); - defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.15'); + defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.17'); defineConstant('BOKEH_REMOTE_FILES', 'http://git.afi-sa.fr/afi/opacce/'); diff --git a/library/translation/en.mo b/library/translation/en.mo index fe07dd9c3d314e5e55f7a496123515132991da73..1190b4de1b2a837a0a2baa826c263ac1f0092e00 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 9d2835f620315c901217b00f28e8a2ba3dc96bd4..ba4dcc2e0abe4a11f70951b77939f7c62db8a94f 100644 --- a/library/translation/en.po +++ b/library/translation/en.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: Bokeh master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-07 15:21+0100\n" +"POT-Creation-Date: 2016-11-21 12:10+0100\n" "PO-Revision-Date: 2016-11-07 14:46+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: English <http://weblate.afi-sa.net/projects/bokeh/bokeh/en/>\n" @@ -280,6 +280,11 @@ msgstr " except " msgid " sur " msgstr " on " +#: ../../application/modules/admin/controllers/IndexController.php:25 +#, fuzzy, php-format +msgid " version %s" +msgstr "Version:" + #: ../../library/ZendAfi/View/Helper/TagArticleEvent.php:56 #, php-format msgid " à %s" @@ -543,6 +548,11 @@ msgstr "%s in new window" msgid "%s fichier(s) à traiter dans %s" msgstr "%s file(s) to process in %s" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:77 +#, fuzzy, php-format +msgid "%s jours" +msgstr "In progress" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:136 #, php-format msgid "%s le panier %s contient %d document" @@ -1044,12 +1054,12 @@ msgid "AFI-Multimédia n'est pas activé" msgstr "AFI-Multimedia is not enabled" #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:212 +#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:213 msgid "API" msgstr "API" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:211 +#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:212 msgid "API utilisée pour les cartes statiques" msgstr "API used for static maps" @@ -1141,6 +1151,7 @@ msgid "Abonnés de la lettre: %s" msgstr "Letter subscribers: %s" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 msgid "Acceptée" msgstr "Validated" @@ -1178,6 +1189,7 @@ msgstr "Validated" #: ../../library/Class/MoteurRecherche.php:594 #: ../../library/Class/MoteurRecherche.php:599 #: ../../library/Class/MoteurRecherche.php:605 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:41 msgid "Accueil" msgstr "Home" @@ -1295,44 +1307,49 @@ msgstr "Actions" #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:153 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:156 +#: ../../library/Class/AdminVar.php:157 msgid "Activation de la disponibilite dans le resultat de recherche." msgstr "Enable availability in search results" #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:161 #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:164 +#: ../../library/Class/AdminVar.php:165 msgid "Activation de la navigation collaborative" msgstr "Enable collaborative navigation" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:304 msgid "Activation de la ressource numérique PlanetNemo" msgstr "Enable PlanetNemo digital ressource" #: ../../library/Class/AdminVar.php:137 ../../library/Class/AdminVar.php:135 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:138 +#: ../../library/Class/AdminVar.php:139 msgid "Activation des boîtes dans les menus" msgstr "Enable widgets inside menus" #: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:166 #: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:169 +#: ../../library/Class/AdminVar.php:170 msgid "Activation des fonctions avancées du téléphone" msgstr "Enable phone advanced functions" #: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:184 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:187 -#: ../../library/Class/AdminVar.php:188 +#: ../../library/Class/AdminVar.php:188 ../../library/Class/AdminVar.php:189 msgid "Activation des formulaires" msgstr "Enable forms" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:240 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:271 +#: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:272 msgid "Activation du PNB Dilicom" msgstr "Enable Dilicom digital loan" #: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:169 #: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:172 +#: ../../library/Class/AdminVar.php:173 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1360,7 +1377,7 @@ msgstr "Enable accessibility tools" #: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:203 #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:206 -#: ../../library/Class/AdminVar.php:234 +#: ../../library/Class/AdminVar.php:234 ../../library/Class/AdminVar.php:235 msgid "Activer ou désactiver la bibliothèque numérique" msgstr "Enable or disable digital library" @@ -1370,6 +1387,7 @@ msgstr "Enable or disable the digital resource Assimil" #: ../../library/Class/AdminVar.php:129 ../../library/Class/AdminVar.php:127 #: ../../library/Class/AdminVar.php:130 ../../library/Class/AdminVar.php:130 +#: ../../library/Class/AdminVar.php:131 msgid "Activer ou désactiver le module formation" msgstr "Enable or disable training module" @@ -1470,6 +1488,7 @@ msgstr "Administer the AFI-Multimedia Server" #: ../../library/ZendAfi/Form/Admin/Library.php:172 #: ../../application/modules/opac/controllers/AbonneController.php:453 #: ../../application/modules/opac/controllers/AbonneController.php:455 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 msgid "Adresse" msgstr "Enable accessibility tools" @@ -1500,36 +1519,37 @@ msgstr "Address of the recipient absent." #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:257 #: ../../library/Class/AdminVar.php:261 ../../library/Class/AdminVar.php:261 -#: ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 msgid "Adresse du serveur OAI 1D touch" msgstr "1D Touch OAI server address" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:294 +#: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:295 msgid "Adresse du serveur OAI Cité de la Musique" msgstr "Cyberlibris OAI server address" #: ../../library/Class/AdminVar.php:221 ../../library/Class/AdminVar.php:219 #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:222 -#: ../../library/Class/AdminVar.php:249 +#: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:250 msgid "Adresse du serveur OAI Cyberlibris" msgstr "Cyberlibris OAI server address" #: ../../library/Class/AdminVar.php:262 ../../library/Class/AdminVar.php:264 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:271 -#: ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:299 msgid "Adresse du serveur Orphea" msgstr "Orphea server address" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:278 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 msgid "Adresse du serveur de la ressource numérique Orthodidacte" msgstr "Orthodidacte server address" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:103 msgid "Adresse mail" msgstr "Email" @@ -1555,6 +1575,7 @@ msgstr "Email" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:153 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:189 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:272 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:116 msgid "Affichage" msgstr "Display" @@ -1729,6 +1750,11 @@ msgstr "Display map" msgid "Afficher la notice" msgstr "Display record" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:84 +#, fuzzy +msgid "Afficher le lien recherche avancée" +msgstr "Display in search results" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:203 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:259 @@ -2020,6 +2046,7 @@ msgstr "Add to site map" #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:159 #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:162 +#: ../../library/Class/AdminVar.php:163 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "Automatically add a selection box in the floating division" @@ -2434,6 +2461,7 @@ msgstr "Cancelled" #: ../../application/modules/telephone/views/scripts/recherche/viewnotice.phtml:16 #: ../../library/Class/Codification.php:173 #: ../../library/Class/Codification.php:161 +#: ../../library/Class/Codification.php:135 msgid "Année" msgstr "Year" @@ -2465,6 +2493,7 @@ msgstr "Publication year - from" #: ../../library/Class/CriteresRecherche.php:127 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/Class/CriteresRecherche.php:140 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 msgid "Année de publication" msgstr "Publication year" @@ -2546,6 +2575,7 @@ msgstr "Archive" #: ../../library/Class/Codification.php:216 #: ../../library/Class/Codification.php:268 #: ../../library/Class/Codification.php:256 +#: ../../library/Class/Codification.php:230 msgid "Archives vidéo" msgstr "Video archives" @@ -2640,6 +2670,7 @@ msgstr "Visual aspect" #: ../../application/modules/admin/controllers/RedmineController.php:26 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:34 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:31 msgid "Assistance" msgstr "Help" @@ -2690,8 +2721,8 @@ msgstr "No" #: ../../library/Class/NoticeHtml.php:228 #: ../../library/Class/NoticeHtml.php:219 #: ../../library/Class/NoticeHtml.php:259 -#: ../../library/Class/NoticeHtml.php:129 ../../library/Class/NoticeHtml.php:77 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/Class/NoticeHtml.php:129 +#: ../../library/Class/NoticeHtml.php:77 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "No article found" @@ -2988,7 +3019,8 @@ msgstr "No data to moderate" #: ../../library/Class/NoticeHtml.php:204 #: ../../library/Class/NoticeHtml.php:195 #: ../../library/Class/NoticeHtml.php:235 -#: ../../library/Class/NoticeHtml.php:105 ../../library/Class/NoticeHtml.php:61 +#: ../../library/Class/NoticeHtml.php:105 +#: ../../library/Class/NoticeHtml.php:61 #: ../../library/ZendAfi/View/Helper/Biographie.php:59 #: ../../library/Class/NoticeHtml.php:50 #: ../../library/ZendAfi/View/Helper/Biographie.php:58 @@ -3167,6 +3199,9 @@ msgstr "No user found" #: ../../library/Class/CriteresRecherche.php:138 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/ZendAfi/Form/Admin/News.php:61 +#: ../../library/Class/Codification.php:123 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:45 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:45 msgid "Auteur" msgstr "Author" @@ -3208,6 +3243,7 @@ msgstr "Main author" #: ../../library/Class/Codification.php:124 #: ../../library/Class/Codification.php:161 #: ../../library/Class/Codification.php:149 +#: ../../library/Class/Codification.php:123 msgid "Auteur(s)" msgstr "Author(s)" @@ -3407,6 +3443,7 @@ msgstr "April" #: ../../library/Class/Codification.php:218 #: ../../library/Class/Codification.php:270 #: ../../library/Class/Codification.php:258 +#: ../../library/Class/Codification.php:232 msgid "Babelthèque" msgstr "Babeltheque : only in France" @@ -3428,6 +3465,7 @@ msgstr "User tag (without brackets)" #: ../../application/modules/telephone/controllers/RechercheController.php:47 #: ../../library/Class/Codification.php:254 #: ../../application/modules/telephone/controllers/RechercheController.php:60 +#: ../../library/Class/Codification.php:228 msgid "Bande-annonce" msgstr "Teaser" @@ -3460,6 +3498,11 @@ msgstr "Full width horizontal bar" msgid "Barre verticale" msgstr "Vertical bar" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:94 +#, fuzzy +msgid "Basculer automatiquement sur le profil" +msgstr "On sign in : switch automatically to this profile" + #: ../../library/ZendAfi/Form/Redmine/Issue.php:211 msgid "Base de données : " msgstr "Database :" @@ -3585,6 +3628,7 @@ msgstr "Bibliographies" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:164 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:183 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:50 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque" msgstr "Library" @@ -3642,6 +3686,7 @@ msgstr "Library to display" #: ../../library/Class/Codification.php:125 #: ../../library/Class/Codification.php:162 #: ../../library/Class/Codification.php:150 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque(s)" msgstr "Librarie(s)" @@ -3719,6 +3764,7 @@ msgstr "Biography" #: ../../application/modules/telephone/controllers/RechercheController.php:36 #: ../../library/Class/Codification.php:248 #: ../../application/modules/telephone/controllers/RechercheController.php:67 +#: ../../library/Class/Codification.php:222 msgid "Biographie de l'auteur" msgstr "Author biography" @@ -3822,6 +3868,7 @@ msgstr "" #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1013 #: ../../library/Class/Users.php:1043 ../../library/Class/Users.php:1061 #: ../../library/Class/Users.php:1056 ../../library/Class/Users.php:1090 +#: ../../library/Class/Users.php:1089 msgid "Bonjour," msgstr "Hello," @@ -3852,6 +3899,7 @@ msgstr "" #: ../../library/Class/Users.php:1040 ../../library/Class/Users.php:1066 #: ../../library/Class/Users.php:1096 ../../library/Class/Users.php:1114 #: ../../library/Class/Users.php:1109 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1142 msgid "Bonne navigation sur le portail" msgstr "Good surf on Bokeh" @@ -3949,6 +3997,7 @@ msgstr "Map" #: ../../application/modules/opac/controllers/BibController.php:244 #: ../../application/modules/opac/controllers/BibController.php:238 +#: ../../application/modules/opac/controllers/BibController.php:256 msgid "Carte des bibliothèques" msgstr "Libraries map" @@ -4079,6 +4128,7 @@ msgstr "Albums categories" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:215 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:235 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:236 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:304 msgid "Catégories d'articles" msgstr "Articles categories" @@ -4160,6 +4210,7 @@ msgstr "" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre d'intérêt" msgstr "Interests" @@ -4170,6 +4221,7 @@ msgstr "Interests" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre(s) d'intérêt" msgstr "Interests" @@ -4200,6 +4252,7 @@ msgstr "This article is a draft" #: ../../library/Class/Users.php:970 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1067 +#: ../../library/Class/Users.php:1066 msgid "Cet identifiant existe déjà ." msgstr "This identifier already exists." @@ -4414,7 +4467,8 @@ msgid "Chargement" msgstr "Loading" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:131 -#: ../../library/Class/NoticeHtml.php:81 ../../library/Class/NoticeHtml.php:122 +#: ../../library/Class/NoticeHtml.php:81 +#: ../../library/Class/NoticeHtml.php:122 #: ../../library/Class/NoticeHtml.php:176 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:159 #: ../../library/Class/NoticeHtml.php:181 @@ -4422,7 +4476,8 @@ msgstr "Loading" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:183 #: ../../library/Class/NoticeHtml.php:172 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:182 -#: ../../library/Class/NoticeHtml.php:87 ../../library/Class/NoticeHtml.php:158 +#: ../../library/Class/NoticeHtml.php:87 +#: ../../library/Class/NoticeHtml.php:158 #: ../../library/Class/NoticeHtml.php:211 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:199 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:63 @@ -4432,7 +4487,8 @@ msgstr "Loading" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:175 #: ../../library/Class/NoticeHtml.php:48 #: ../../library/ZendAfi/View/Helper/ListeNotices/Accordeon.php:56 -#: ../../library/Class/NoticeHtml.php:42 ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 msgid "Chargement en cours" msgstr "Loading in progress" @@ -4445,6 +4501,7 @@ msgstr "Loading..." #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:160 #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:163 +#: ../../library/Class/AdminVar.php:164 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "Path to personalized skins, from %s" @@ -4455,6 +4512,7 @@ msgid "Chercher dans le menu " msgstr "Search in menu" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:70 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:72 msgid "Chercher dans les bibliothèques de votre choix" msgstr "Search in libraries of your choice" @@ -4616,13 +4674,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:223 #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:226 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 msgid "Clé ARTE VOD" msgstr "ARTE VOD Key" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:224 #: ../../library/Class/AdminVar.php:227 ../../library/Class/AdminVar.php:227 -#: ../../library/Class/AdminVar.php:254 +#: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:255 msgid "Clé ARTE VOD Single Sign-On" msgstr "ARTE VOD Single Sign-On Key" @@ -4632,7 +4690,7 @@ msgstr "Alpha key" #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:285 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292 -#: ../../library/Class/AdminVar.php:319 +#: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:320 msgid "" "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par " "Kidilangues." @@ -4642,7 +4700,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:286 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:293 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:321 msgid "" "Clé d'identification Kidilangues pour le portail. Cette clé doit être " "fournie par Kidilangues." @@ -4652,7 +4710,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:255 #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:259 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:287 msgid "" "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie " "par MyCOW.EU. Elle active la ressource numérique dans le portail." @@ -4662,7 +4720,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:325 msgid "" "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit " "être fournie par Premier-Chapitre." @@ -4672,7 +4730,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:236 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:240 -#: ../../library/Class/AdminVar.php:267 +#: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 msgid "Clé de sécurité Vodeclic" msgstr "Vodeclic security key" @@ -4682,11 +4740,13 @@ msgstr "Artwork key" #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:130 #: ../../library/Class/AdminVar.php:133 ../../library/Class/AdminVar.php:133 +#: ../../library/Class/AdminVar.php:134 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "Public key for AFI-Multimedia encryption datas" #: ../../library/Class/AdminVar.php:134 ../../library/Class/AdminVar.php:132 #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:135 +#: ../../library/Class/AdminVar.php:136 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "Public key for AESIS Webkiosk encryption datas" @@ -4722,12 +4782,19 @@ msgstr "Anti-spam code:" msgid "Code postal" msgstr "ZIP code" +#: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#, fuzzy +msgid "Code source" +msgstr "source" + #: ../../library/ZendAfi/Form/SuggestionAchat.php:42 #: ../../library/ZendAfi/Form/SuggestionAchat.php:40 #: ../../library/ZendAfi/Form/SuggestionAchat.php:44 #: ../../library/ZendAfi/Form/SuggestionAchat.php:34 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:47 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:47 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:51 msgid "Code-barres / ISBN" msgstr "Barcode / ISBN" @@ -4739,6 +4806,7 @@ msgstr "Barcode / ISBN" #: ../../library/Class/Codification.php:133 #: ../../library/Class/Codification.php:170 #: ../../library/Class/Codification.php:158 +#: ../../library/Class/Codification.php:132 msgid "Collation" msgstr "Collation" @@ -4761,6 +4829,7 @@ msgstr "Collation" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:55 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:57 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59 +#: ../../library/Class/Codification.php:125 msgid "Collection" msgstr "Collections" @@ -4772,6 +4841,7 @@ msgstr "Collections" #: ../../library/Class/Codification.php:126 #: ../../library/Class/Codification.php:163 #: ../../library/Class/Codification.php:151 +#: ../../library/Class/Codification.php:125 msgid "Collection(s)" msgstr "Collection(s)" @@ -4791,6 +4861,7 @@ msgid "Colonnes à afficher" msgstr "Columns to display" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 msgid "Commandée" msgstr "ordered" @@ -5162,7 +5233,7 @@ msgstr "Review content modified" #: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:194 #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:197 -#: ../../library/Class/AdminVar.php:198 +#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:199 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -5174,7 +5245,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:195 #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:198 -#: ../../library/Class/AdminVar.php:199 +#: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:200 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" @@ -5184,7 +5255,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:196 #: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:199 -#: ../../library/Class/AdminVar.php:200 +#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:201 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -5202,12 +5273,13 @@ msgstr "Content related to Article" #: ../../library/ZendAfi/View/Helper/Notice/Analytics.php:71 #: ../../library/Class/Codification.php:260 +#: ../../library/Class/Codification.php:234 msgid "Contient" msgstr "Contains" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:243 #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:274 ../../library/Class/AdminVar.php:275 msgid "Contracteur du PNB Dilicom" msgstr "Dilicom PBN contractor" @@ -5378,6 +5450,7 @@ msgstr "Review" #: ../../application/modules/telephone/controllers/RechercheController.php:32 #: ../../library/Class/Codification.php:244 #: ../../application/modules/telephone/controllers/RechercheController.php:63 +#: ../../library/Class/Codification.php:218 msgid "Critiques" msgstr "Reviews" @@ -5438,6 +5511,11 @@ msgstr "Selection criteria" msgid "Critères généraux" msgstr "General criteria" +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:316 +#, fuzzy +msgid "Créateur" +msgstr "Creating selection" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:53 msgid "Création / nouveauté" msgstr "creation / novelty" @@ -5629,6 +5707,11 @@ msgstr "The deadline for registration has passed" msgid "Date de limite d'inscription: " msgstr "Subscription limit date" +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:315 +#, fuzzy +msgid "Date de mise à jour" +msgstr "Request update" + #: ../../library/ZendAfi/Form/Admin/User.php:149 #: ../../library/ZendAfi/Form/Admin/User.php:159 #: ../../library/ZendAfi/Form/PreRegistration.php:46 @@ -5666,9 +5749,14 @@ msgstr "Suggestion date" #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:158 #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:161 +#: ../../library/Class/AdminVar.php:162 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "Last patron import date" +#: ../../library/Class/AdminVar.php:129 +msgid "Date du dernier vidage manuel du cache" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Date nouveaté" msgstr "new ithem's date" @@ -5778,6 +5866,10 @@ msgstr "Tickets filtered for the project " msgid "Demandeur" msgstr "Applicant" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:52 +msgid "Dernier traitement d'intégration effectué le" +msgstr "" + #: ../../application/modules/opac/controllers/CmsController.php:145 #: ../../application/modules/opac/controllers/CmsController.php:129 #: ../../application/modules/opac/controllers/CmsController.php:128 @@ -5910,6 +6002,7 @@ msgstr "Description" #: ../../application/modules/telephone/controllers/RechercheController.php:30 #: ../../library/Class/Codification.php:243 #: ../../application/modules/telephone/controllers/RechercheController.php:61 +#: ../../library/Class/Codification.php:217 msgid "Description du document" msgstr "Document description" @@ -5987,6 +6080,7 @@ msgstr "Order" #: ../../library/Class/Codification.php:212 #: ../../library/Class/Codification.php:264 #: ../../library/Class/Codification.php:252 +#: ../../library/Class/Codification.php:226 msgid "Discographie" msgstr "Discoraphy" @@ -6003,6 +6097,7 @@ msgid "Discographie complète de" msgstr "Complete discography" #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:50 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "Chat live with the Bokeh community" @@ -6033,6 +6128,7 @@ msgstr "Availability" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:65 #: ../../library/Class/Exemplaire.php:229 #: ../../library/Class/Exemplaire.php:230 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 msgid "Disponible" msgstr "Available" @@ -6066,6 +6162,7 @@ msgstr "Next document" #: ../../library/Class/Codification.php:209 #: ../../library/Class/Codification.php:261 #: ../../library/Class/Codification.php:249 +#: ../../library/Class/Codification.php:223 msgid "Documents de la même série" msgstr "Documents of the same series" @@ -6098,6 +6195,7 @@ msgstr "Documents issued" #: ../../application/modules/telephone/controllers/RechercheController.php:37 #: ../../library/Class/Codification.php:251 #: ../../application/modules/telephone/controllers/RechercheController.php:68 +#: ../../library/Class/Codification.php:225 msgid "Documents similaires" msgstr "Similar documents" @@ -6138,6 +6236,11 @@ msgstr "Domain %s added" msgid "Domaine %s sauvegardé" msgstr "Domain %s saved" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:195 +#, fuzzy +msgid "Domaine de recherche" +msgstr "Search box" + #: ../../library/Class/MoteurRecherche.php:383 #: ../../library/Class/MoteurRecherche.php:405 #: ../../library/Class/MoteurRecherche.php:408 @@ -6162,7 +6265,7 @@ msgstr "Public domain" #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:273 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 msgid "Domaine utilisée par le serveur lectura pour authentification" msgstr "Domain used by Lectura server for identification" @@ -6186,7 +6289,8 @@ msgstr "Domain used by Lectura server for identification" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:66 #: ../../library/Trait/JsonDomain.php:33 ../../library/Class/Catalogue.php:565 #: ../../library/Class/Catalogue.php:1162 -#: ../../library/Class/Catalogue.php:1200 ../../library/Class/Catalogue.php:576 +#: ../../library/Class/Catalogue.php:1200 +#: ../../library/Class/Catalogue.php:576 #: ../../library/Class/Catalogue.php:1173 #: ../../library/Class/Catalogue.php:1211 #: ../../library/Class/Catalogue.php:1144 @@ -6196,6 +6300,11 @@ msgstr "Domain used by Lectura server for identification" msgid "Domaines" msgstr "Domains" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:103 +#, fuzzy +msgid "Domaines sélectionnables" +msgstr "Selected facets" + #: ../../library/ZendAfi/View/Helper/AvisCms.php:38 msgid "Donner ou modifier votre avis" msgstr "Give or edit your review" @@ -6223,12 +6332,14 @@ msgstr "Write or edit review" #: ../../application/modules/opac/controllers/RssController.php:233 #: ../../application/modules/admin/views/scripts/index/index.phtml:36 #: ../../application/modules/admin/views/scripts/index/index.phtml:47 +#: ../../application/modules/admin/views/scripts/index/index.phtml:21 msgid "Données en attente de modération" msgstr "Data waiting for moderation" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:135 msgid "Droite" msgstr "Right" @@ -6337,7 +6448,7 @@ msgstr "Loan duration in days" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:250 #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:281 +#: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom" msgstr "Max duration (in days) of a PNB loan" @@ -6411,7 +6522,7 @@ msgstr "Serials articles" #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:301 -#: ../../library/Class/AdminVar.php:205 +#: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:206 msgid "Désactivation des suggestions d'achats" msgstr "Deactivate acquisitions suggestions" @@ -6619,6 +6730,7 @@ msgstr "Listen to the album" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58 +#: ../../library/Class/Codification.php:127 msgid "Editeur" msgstr "Publisher" @@ -6655,6 +6767,7 @@ msgstr "Publisher: %s" #: ../../library/Class/Codification.php:128 #: ../../library/Class/Codification.php:165 #: ../../library/Class/Codification.php:153 +#: ../../library/Class/Codification.php:127 msgid "Editeur(s)" msgstr "Publisher(s)" @@ -6774,6 +6887,7 @@ msgstr "Loan the ePub" #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59 msgid "En attente" msgstr "Waiting" @@ -6797,18 +6911,21 @@ msgstr "Waiting since %s" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 msgid "En bas" msgstr "Bottom" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:88 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 msgid "En haut" msgstr "Top" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 msgid "En haut et en bas" msgstr "Top and bottom" @@ -6820,6 +6937,7 @@ msgstr "You accept the use of cookies. <a href=\"" #: ../../library/Class/Codification.php:182 #: ../../library/Class/Codification.php:170 +#: ../../library/Class/Codification.php:144 msgid "En rayon" msgstr "in section" @@ -6836,6 +6954,10 @@ msgstr "Character encoding" msgid "Enregistrer" msgstr "Sign up" +#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53 +msgid "Enregistrer comme filtres par défaut" +msgstr "" + #: ../../application/modules/admin/views/scripts/oai/index.phtml:25 msgid "Entrepot" msgstr "Repository" @@ -6978,6 +7100,8 @@ msgstr "Send newsletters" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:75 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:77 #: ../../application/modules/admin/controllers/SystemeController.php:286 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:84 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:86 msgid "Envoyer" msgstr "Send" @@ -7035,6 +7159,7 @@ msgstr "Error" #: ../../application/modules/admin/controllers/IndexController.php:130 #: ../../application/modules/admin/controllers/IndexController.php:131 +#: ../../application/modules/admin/controllers/IndexController.php:139 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "Error: The update request could not be sent to the server" @@ -7145,6 +7270,7 @@ msgid "Erreur(s) : %s" msgstr "Error : %s" #: ../../application/modules/admin/controllers/IndexController.php:84 +#: ../../application/modules/admin/controllers/IndexController.php:90 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "Error(s) : %s, variable %s unsaved" @@ -7171,6 +7297,11 @@ msgstr "And" msgid "Etat" msgstr "State" +#: ../../application/modules/admin/views/scripts/index/index.phtml:17 +#, fuzzy +msgid "Etat du site" +msgstr "Website name" + #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:55 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:48 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:52 @@ -7254,6 +7385,7 @@ msgstr "Item not bookable in this library" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:231 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:228 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 +#: ../../library/Class/Codification.php:219 msgid "Exemplaires" msgstr "Copies" @@ -7326,6 +7458,7 @@ msgstr "Expression" #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:12 #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:31 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:181 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:234 msgid "Expression recherchée" msgstr "Search expression" @@ -7466,7 +7599,8 @@ msgstr "Close" #: ../../library/Class/NoticeHtml.php:188 #: ../../library/Class/NoticeHtml.php:193 #: ../../library/Class/NoticeHtml.php:184 -#: ../../library/Class/NoticeHtml.php:224 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:224 +#: ../../library/Class/NoticeHtml.php:94 msgid "Fermer les onglets" msgstr "Close tabs" @@ -7543,6 +7677,10 @@ msgstr "Photo file: %s" msgid "Fichier total à traiter : %s" msgstr "All file to process : %s" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:85 +msgid "Fichier(s) en file d'attente" +msgstr "" + #: ../../library/Class/Batch/DilicomJobOnix.php:190 #, php-format msgid "Fichiers incrémentaux à traiter : %s" @@ -7627,6 +7765,11 @@ msgstr "Filter variables" msgid "Filtrer par statut : " msgstr "Filter by status:" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:134 +#, fuzzy +msgid "Filtres" +msgstr "Filter" + #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:46 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:54 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:34 @@ -7832,6 +7975,7 @@ msgstr "GLN (PNB Dilicom)" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:132 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 msgid "Gauche" msgstr "Left" @@ -7848,6 +7992,7 @@ msgstr "Left" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:104 #: ../../library/Class/Codification.php:167 #: ../../library/Class/Codification.php:155 +#: ../../library/Class/Codification.php:129 msgid "Genre" msgstr "Form" @@ -7887,6 +8032,7 @@ msgid "Gestion des utilisateurs" msgstr "User management" #: ../../application/modules/admin/controllers/IndexController.php:58 +#: ../../application/modules/admin/controllers/IndexController.php:64 msgid "Gestion des variables" msgstr "Variable management" @@ -7901,10 +8047,15 @@ msgstr "Content Manager" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:272 +#: ../../library/Class/AdminVar.php:272 ../../library/Class/AdminVar.php:273 msgid "Gln de la collectivité, il est fourni par Dilicom." msgstr "City GLN" +#: ../../application/modules/admin/views/scripts/index/index.phtml:44 +#, fuzzy +msgid "Google group Bokeh" +msgstr "Bokeh forum" + #: ../../application/modules/admin/controllers/UsergroupController.php:132 #: ../../application/modules/admin/controllers/UsergroupController.php:159 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:45 @@ -7992,6 +8143,7 @@ msgstr "General" #: ../../library/ZendAfi/Form/Configuration/DomainWidget.php:31 #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:108 #: ../../library/ZendAfi/Form/Panier.php:38 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:130 msgid "Généralités" msgstr "General" @@ -8024,7 +8176,7 @@ msgstr "Generated from the address" #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:204 #: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:207 -#: ../../library/Class/AdminVar.php:235 +#: ../../library/Class/AdminVar.php:235 ../../library/Class/AdminVar.php:236 msgid "" "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation " "de la bibliothèque numérique" @@ -8140,6 +8292,7 @@ msgstr "Schedules" #: ../../application/modules/opac/controllers/AbonneController.php:849 #: ../../application/modules/opac/controllers/AbonneController.php:867 #: ../../application/modules/opac/controllers/AbonneController.php:869 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:100 msgid "Horaires" msgstr "Hours" @@ -8154,12 +8307,12 @@ msgstr "Simplified Html" #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:234 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:237 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:265 msgid "ID client Jamendo" msgstr "Jamendo client ID" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:238 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 msgid "ID client SoundCloud" msgstr "Jamendo client ID" @@ -8189,7 +8342,7 @@ msgstr "Browser icon" #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:210 +#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:211 msgid "Id du connecteur Le Social" msgstr "Conector id Le Social" @@ -8230,18 +8383,19 @@ msgstr "Origin id" #: ../../library/ZendAfi/Form/Register.php:36 #: ../../library/ZendAfi/Form/Login.php:130 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:73 +#: ../../library/Class/Codification.php:130 msgid "Identifiant" msgstr "Login" #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:223 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:251 msgid "Identifiant SSO Cyberlibris" msgstr "Cyberlibris SSO ID" #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:269 +#: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:270 msgid "Identifiant code bibliothèque Vodeclic" msgstr "Vodeclic library code ID" @@ -8253,25 +8407,25 @@ msgid "Identifiant commence par" msgstr "Login starts with" #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:295 +#: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:296 msgid "Identifiant d'accès au serveur OAI Cité de la Musique" msgstr "Access identifier OAI \"La Cité de la Musique\" server" #: ../../library/Class/AdminVar.php:260 ../../library/Class/AdminVar.php:262 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:293 +#: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:294 msgid "Identifiant du portail chez 1D touch" msgstr "1D touch ID" #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:304 -#: ../../library/Class/AdminVar.php:208 +#: ../../library/Class/AdminVar.php:208 ../../library/Class/AdminVar.php:209 msgid "Identifiant du project Redmine" msgstr "Redmine ID" #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:310 msgid "Identifiant fournit par lekiosk.com" msgstr "Lekiosk.com ID" @@ -8291,7 +8445,7 @@ msgstr "Username or password not found" #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:237 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:241 -#: ../../library/Class/AdminVar.php:268 +#: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:269 msgid "Identifiant partenaire Vodeclic" msgstr "Vodeclic partnership ID" @@ -8777,6 +8931,8 @@ msgstr "Other informations" #: ../../library/ZendAfi/Form/SuggestionAchat.php:55 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:68 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:71 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:77 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:80 msgid "Informations sur le document" msgstr "Document properties" @@ -8867,6 +9023,7 @@ msgstr "Subscribers" #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:136 #: ../../library/Class/AdminVar.php:139 ../../library/Class/AdminVar.php:139 +#: ../../library/Class/AdminVar.php:140 msgid "Interdire la modification de la fiche abonne" msgstr "Make patron form read only" @@ -8900,6 +9057,11 @@ msgstr "Prohibit bookings" msgid "Intervenants" msgstr "Speakers" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:46 +#, fuzzy +msgid "Intégration des données : " +msgstr "Data warming" + msgid "Invalid type given, value should be a string" msgstr "Given such invalid, value shoulds be a string" @@ -8971,6 +9133,7 @@ msgstr "Javascript code for statistics" #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:177 #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:180 +#: ../../library/Class/AdminVar.php:181 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "I want to unsuscribe to this newsletter" @@ -9129,6 +9292,7 @@ msgstr "Item does not exists" #: ../../library/Class/Users.php:928 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:978 ../../library/Class/Users.php:996 #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1025 +#: ../../library/Class/Users.php:1024 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "The username you chose already exists." @@ -9176,8 +9340,8 @@ msgid "" "L'usager <a href=\"%s\">%s (courriel: %s)</a> vient de s'inscrire à la " "formation <a href=\"%s\">%s</a>" msgstr "" -"User <a href=\"%s\">%s (mail: %s)</a> has subscribed to training <a href=\"%" -"s\">%s</a>" +"User <a href=\"%s\">%s (mail: %s)</a> has subscribed to training <a href=\"%s" +"\">%s</a>" #: ../../application/modules/admin/controllers/UsersController.php:30 #, php-format @@ -9252,6 +9416,7 @@ msgstr "The library contains %s records." #: ../../library/Class/Users.php:937 ../../library/Class/Users.php:957 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1033 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "The library is required for the role:%s" @@ -9306,6 +9471,7 @@ msgstr "Command %s failed : %s" #: ../../application/modules/admin/controllers/IndexController.php:129 #: ../../application/modules/admin/controllers/IndexController.php:130 +#: ../../application/modules/admin/controllers/IndexController.php:138 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "The update request has been sent to the server" @@ -9391,6 +9557,8 @@ msgstr "Search in those areas: %s." #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:81 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:84 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 msgid "La recherche s'effectue dans tout le réseau." msgstr "Search in all libraries" @@ -9517,6 +9685,7 @@ msgstr "Start searching : %s" #: ../../library/Class/Codification.php:171 #: ../../library/ZendAfi/Form/Album.php:173 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue" msgstr "Language" @@ -9538,6 +9707,7 @@ msgstr "Basic Language : %s" #: ../../library/Class/Codification.php:134 #: ../../library/Class/Codification.php:171 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue(s)" msgstr "Language(s)" @@ -9558,6 +9728,11 @@ msgstr "Languages" msgid "Largeur" msgstr "Width" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:36 +#, fuzzy +msgid "Largeur du champ de saisie" +msgstr "Total site width" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:156 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:165 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 @@ -9581,6 +9756,7 @@ msgid "Le %s" msgstr "%s" #: ../../application/modules/admin/controllers/IndexController.php:108 +#: ../../application/modules/admin/controllers/IndexController.php:116 msgid "Le cache de Bokeh a été vidé" msgstr "Bokeh cache cleared" @@ -9638,6 +9814,7 @@ msgstr "The \"day\" field must be completed with a date" #: ../../library/Class/Users.php:924 ../../library/Class/Users.php:944 #: ../../library/Class/Users.php:974 ../../library/Class/Users.php:992 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1021 +#: ../../library/Class/Users.php:1020 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "The field 'id' should be less than 50 characters" @@ -9645,7 +9822,7 @@ msgstr "The field 'id' should be less than 50 characters" #: ../../library/Class/Users.php:885 ../../library/Class/Users.php:932 #: ../../library/Class/Users.php:952 ../../library/Class/Users.php:982 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:995 -#: ../../library/Class/Users.php:1029 +#: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1028 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "The password must be under 255 caracters" @@ -9777,7 +9954,7 @@ msgstr "Feed must be in iCalendar format" #: ../../library/Class/AdminVar.php:201 ../../library/Class/AdminVar.php:199 #: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:202 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:231 msgid "" "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au " "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre " @@ -9786,6 +9963,7 @@ msgstr "The CMS displays albums as a paged list instead of a treeview" #: ../../library/Class/AdminVar.php:184 ../../library/Class/AdminVar.php:182 #: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:185 +#: ../../library/Class/AdminVar.php:186 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 " @@ -9856,6 +10034,7 @@ msgstr "The number of tags must be between %s ans %s" #: ../../library/Class/Users.php:942 ../../library/Class/Users.php:962 #: ../../library/Class/Users.php:992 ../../library/Class/Users.php:1010 #: ../../library/Class/Users.php:1005 ../../library/Class/Users.php:1039 +#: ../../library/Class/Users.php:1038 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "The card number is required for subscribers identified in an ILS." @@ -9906,10 +10085,12 @@ msgid "Le site \"%s\" a été supprimé" msgstr "The site \"%s\" was deleted" #: ../../application/modules/admin/controllers/IndexController.php:36 +#: ../../application/modules/admin/controllers/IndexController.php:42 msgid "Le site est en ligne" msgstr "The website is online" #: ../../application/modules/admin/controllers/IndexController.php:37 +#: ../../application/modules/admin/controllers/IndexController.php:43 msgid "Le site est indisponible" msgstr "The website is offline" @@ -10146,7 +10327,7 @@ msgstr "Category label" #: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:208 #: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:211 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:240 msgid "Libellé de regroupement des abonnés" msgstr "CVS Patron group" @@ -10198,11 +10379,13 @@ msgstr "Label for Holdings" #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:141 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:144 +#: ../../library/Class/AdminVar.php:145 msgid "Libellé pour la Dewey" msgstr "Label for Dewey" #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:140 #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:143 +#: ../../library/Class/AdminVar.php:144 msgid "Libellé pour la PCDM4" msgstr "Label for Musical thesaurus" @@ -10251,6 +10434,7 @@ msgstr "Map link : :" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Lien internet" msgstr "Internet link" @@ -10290,6 +10474,7 @@ msgstr "Permalink" #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:175 #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:178 +#: ../../library/Class/AdminVar.php:179 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "Click here to unsubscribe to this newsletter: : {{URL}}" @@ -10309,6 +10494,7 @@ msgstr "Link to" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Liens internet" msgstr "Web Links" @@ -10454,6 +10640,7 @@ msgstr "Read more" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:57 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:129 msgid "Liste" msgstr "List" @@ -10475,7 +10662,7 @@ msgstr "Values list" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:245 #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:277 msgid "" "Liste des adresses IP publiques autorisées pour la consultation des documents" msgstr "Libraries public IP addresses" @@ -10487,6 +10674,7 @@ msgstr "Albums list" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:225 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:245 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:246 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:314 msgid "Liste des articles" msgstr "Articles list" @@ -10500,6 +10688,7 @@ msgstr "Categories list" #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:139 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:142 +#: ../../library/Class/AdminVar.php:143 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;" @@ -10510,6 +10699,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:154 ../../library/Class/AdminVar.php:152 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:155 +#: ../../library/Class/AdminVar.php:156 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 => " @@ -10552,6 +10742,7 @@ msgstr "Items list" #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:154 #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:157 +#: ../../library/Class/AdminVar.php:158 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -10581,6 +10772,8 @@ msgstr "Digitized book" #: ../../library/Class/Codification.php:164 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:152 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:126 msgid "Livres et Vidéos" msgstr "Dewey" @@ -10661,19 +10854,19 @@ msgstr "Login" #: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:222 #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:225 -#: ../../library/Class/AdminVar.php:252 +#: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 msgid "Login ARTE VOD" msgstr "ARTE VOD account" #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:287 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:294 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:322 msgid "Login du portail fourni par Kidilangues." msgstr "Kidilangue login" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:298 -#: ../../library/Class/AdminVar.php:325 +#: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:326 msgid "Login du portail fourni par Premier-Chapitre." msgstr "Premier-Chapitre login" @@ -10872,6 +11065,7 @@ msgstr "My last selections" #: ../../library/Class/Users.php:1465 ../../library/Class/Users.php:1486 #: ../../library/Class/Users.php:1520 ../../library/Class/Users.php:1528 #: ../../library/Class/Users.php:1523 ../../library/Class/Users.php:1557 +#: ../../library/Class/Users.php:1556 msgid "Mes paniers" msgstr "My selections" @@ -10884,6 +11078,7 @@ msgstr "My selections" #: ../../library/Class/Users.php:1498 ../../library/Class/Users.php:1519 #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1561 #: ../../library/Class/Users.php:1556 ../../library/Class/Users.php:1590 +#: ../../library/Class/Users.php:1589 msgid "Mes paniers rattachés à un domaine" msgstr "My selectons attached to a domain" @@ -10933,12 +11128,27 @@ msgstr "Message 1" msgid "Message au dessus de la boite" msgstr "Message over the box" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:69 +#, fuzzy +msgid "Message au dessus du champ de saisie" +msgstr "Message over the box" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:79 +#, fuzzy +msgid "Message au-dessous du champ de recherche" +msgstr "Message over the box" + #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:257 -#: ../../library/Class/AdminVar.php:284 +#: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:285 msgid "Message d'avertissement affiché sur la popup d'emprunt" msgstr "Warnning message displayed on the loan popup" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:74 +#, fuzzy +msgid "Message d'exemple dans le champ de saisie" +msgstr "Password field example text" + #: ../../library/ZendAfi/Form/Admin/News.php:158 #: ../../library/ZendAfi/Form/Admin/News.php:167 #: ../../library/ZendAfi/Form/Admin/News.php:194 @@ -10951,6 +11161,10 @@ msgstr "Refusal message" msgid "Message de bienvenue" msgstr "Welcome message" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:64 +msgid "Message du bouton pour rechercher" +msgstr "" + #: ../../application/modules/opac/controllers/RechercheController.php:459 #: ../../application/modules/opac/controllers/RechercheController.php:492 #: ../../application/modules/opac/controllers/RechercheController.php:517 @@ -11053,6 +11267,7 @@ msgstr "Update database" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:103 #: ../../application/modules/admin/controllers/IndexController.php:119 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:127 msgid "Mise à jour de la charte graphique" msgstr "Update skin" @@ -11147,7 +11362,7 @@ msgstr "Sessions display mode" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 #: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:285 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:313 msgid "Mode d'authentification" msgstr "Authentication mode" @@ -11159,6 +11374,11 @@ msgstr "Authentication mode" msgid "Mode de calcul des tranches" msgstr "Range calculation mode" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:110 +#, fuzzy +msgid "Mode de sélection" +msgstr "Selection mode" + #: ../../application/modules/admin/views/scripts/usergroup/_usergroup.phtml:12 msgid "Mode de sélection " msgstr "Selection mode" @@ -11310,6 +11530,7 @@ msgid "Modifier la source de données du kiosque" msgstr "Edit the data source kiosk" #: ../../application/modules/admin/controllers/IndexController.php:91 +#: ../../application/modules/admin/controllers/IndexController.php:97 #, php-format msgid "Modifier la variable: %s" msgstr "Edit the variable: %s" @@ -11729,6 +11950,7 @@ msgstr "Up" #: ../../library/Class/Codification.php:213 #: ../../library/Class/Codification.php:265 #: ../../library/Class/Codification.php:253 +#: ../../library/Class/Codification.php:227 msgid "Morceaux" msgstr "Parts" @@ -11760,19 +11982,19 @@ msgstr "Password" #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:249 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:280 +#: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" msgstr "Dilocom offers FTP" #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:273 -#: ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:300 ../../library/Class/AdminVar.php:301 msgid "Mot de passe de l'utilisateur Orphea" msgstr "Orphea user password" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:242 #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:274 msgid "Mot de passe de la collectivité, il est fourni par Dilicom." msgstr "Library ID (provided by Dilicom)" @@ -11835,6 +12057,8 @@ msgstr "Wall of covers" #: ../../library/Class/Codification.php:175 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:163 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:137 msgid "Musique" msgstr "Music" @@ -11939,7 +12163,7 @@ msgstr "Do not display tags" #: ../../library/Class/AdminVar.php:203 ../../library/Class/AdminVar.php:201 #: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:204 -#: ../../library/Class/AdminVar.php:232 +#: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi" msgstr "Do not create analytical records for media without title" @@ -12124,6 +12348,7 @@ msgstr "Name starts with" #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:157 #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:160 +#: ../../library/Class/AdminVar.php:161 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "Portal main domain name, ie: myopac.mycity.org" @@ -12133,7 +12358,7 @@ msgstr "Family name" #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:272 -#: ../../library/Class/AdminVar.php:299 +#: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:300 msgid "Nom de l'utilisateur Orphea" msgstr "Orphea account" @@ -12150,6 +12375,11 @@ msgstr "Bibliosurf library name (lowercase)" msgid "Nom de la notice" msgstr "Record's name" +#: ../../application/modules/admin/views/scripts/index/index.phtml:18 +#, fuzzy +msgid "Nom du domaine" +msgstr "Selection name" + #: ../../application/modules/opac/views/scripts/panier/index.phtml:23 #: ../../application/modules/opac/views/scripts/panier/index.phtml:24 msgid "Nom du panier" @@ -12164,6 +12394,7 @@ msgstr "Accountant name" #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:155 #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:158 +#: ../../library/Class/AdminVar.php:159 msgid "Nom du site" msgstr "Website name" @@ -12308,14 +12539,14 @@ msgstr "# of simultaneous loans" #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:252 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:284 msgid "" "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)" msgstr "Max # of loans in Dilicom" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:251 #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:255 -#: ../../library/Class/AdminVar.php:282 +#: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:283 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom" msgstr "Max # of loans per PNB item" @@ -12347,7 +12578,7 @@ msgstr "Number of tags to display" msgid "Nombre de traductions : %s" msgstr "Number of translations: %s" -#: ../../library/Class/AdminVar.php:186 +#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:187 msgid "Nombre maximum d'articles en sélection multiple" msgstr "Maximum number of articles for multiple selection" @@ -12405,6 +12636,9 @@ msgstr "Note" #: ../../library/Class/Codification.php:162 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:73 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:75 +#: ../../library/Class/Codification.php:136 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:82 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:84 msgid "Notes" msgstr "Notes" @@ -12505,6 +12739,7 @@ msgstr "Record :" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:164 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:90 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:89 +#: ../../library/Class/Codification.php:233 msgid "Notices liées" msgstr "Related records" @@ -12847,6 +13082,7 @@ msgstr "The portal admin can't be deleted" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:126 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 msgid "Onglets" msgstr "Tabs" @@ -12976,12 +13212,14 @@ msgstr "Open now" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:113 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 msgid "Ouverture" msgstr "Opening" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99 msgid "Ouvertures" msgstr "Openings" @@ -13097,8 +13335,8 @@ msgstr "Page:" #: ../../library/Class/NoticeHtml.php:242 #: ../../library/Class/NoticeHtml.php:233 #: ../../library/Class/NoticeHtml.php:273 -#: ../../library/Class/NoticeHtml.php:143 ../../library/Class/NoticeHtml.php:91 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:143 +#: ../../library/Class/NoticeHtml.php:91 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "Pagination" @@ -13260,6 +13498,7 @@ msgstr "Per nb of attendants" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 msgid "Par ordre alphabétique" msgstr "By alphabetical order" @@ -13275,6 +13514,7 @@ msgstr "Random order" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:81 #: ../../library/ZendAfi/Form/Configuration/FormationsWidget.php:78 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 msgid "Par ordre de sélection" msgstr "As selected" @@ -13302,7 +13542,7 @@ msgstr "Items table settings" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:274 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:302 msgid "" "Paramètre permettant de choisir la langue des des ressources. La liste des " "codes disponibles se trouve à cette adresse http://help.orphea.com/43/" @@ -13315,6 +13555,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:4 #: ../../application/modules/admin/views/scripts/index/index.phtml:6 #: ../../application/modules/admin/views/scripts/index/index.phtml:9 +#: ../../application/modules/admin/views/scripts/index/index.phtml:1 msgid "Paramètres du site" msgstr "Site options" @@ -13322,7 +13563,7 @@ msgstr "Site options" #: ../../library/Class/AdminVar.php:219 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:247 +#: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Numilog\">Numilog</a>" @@ -13334,6 +13575,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:230 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:257 +#: ../../library/Class/AdminVar.php:258 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>" @@ -13350,7 +13592,8 @@ msgstr "" #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:245 msgid "Paramétrage CVS" msgstr "CVS parameters" @@ -13383,9 +13626,15 @@ msgstr "Participants" #: ../../application/modules/admin/views/scripts/index/index.phtml:69 #: ../../application/modules/admin/views/scripts/index/index.phtml:65 +#: ../../application/modules/admin/views/scripts/index/index.phtml:41 msgid "Participez à la communauté" msgstr "Participate to the community" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:191 +#, fuzzy +msgid "Partout" +msgstr "all" + #: ../../library/ZendAfi/Controller/Action.php:448 #: ../../library/ZendAfi/Controller/Action.php:460 #: ../../library/ZendAfi/Controller/Action.php:612 @@ -13413,13 +13662,13 @@ msgstr "No planned session" #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:295 -#: ../../library/Class/AdminVar.php:322 +#: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:323 msgid "Password du portail fourni par Kidilangues." msgstr "Kidilangues password" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:292 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:299 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:327 msgid "Password du portail fourni par Premier-Chapitre" msgstr "Premier chapitre password" @@ -13527,6 +13776,7 @@ msgstr "Avalable as user favorites" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/ZendAfi/Form/Admin/Library.php:143 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 msgid "Photo" msgstr "Photo" @@ -13554,6 +13804,7 @@ msgstr "Picture (< 250 ko and approximately 180px /140px)" #: ../../library/Class/Codification.php:215 #: ../../library/Class/Codification.php:267 #: ../../library/Class/Codification.php:255 +#: ../../library/Class/Codification.php:229 msgid "Photos" msgstr "Photos" @@ -13756,7 +14007,7 @@ msgstr "Point" #: ../../library/Class/Profil.php:33 ../../library/Class/Bib.php:71 #: ../../library/Class/AdminVar.php:338 ../../library/Class/Bib.php:70 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:366 msgid "Portail" msgstr "Portal" @@ -13767,6 +14018,7 @@ msgstr "Portal" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:190 #: ../../library/Class/AdminVar.php:182 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:195 +#: ../../library/Class/AdminVar.php:183 msgid "Position" msgstr "Location" @@ -13777,6 +14029,7 @@ msgstr "Pager position" #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:178 #: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:181 +#: ../../library/Class/AdminVar.php:182 msgid "Position de la pagination en résultat de recherche" msgstr "Pager position on search results page" @@ -13822,7 +14075,7 @@ msgstr "To activate your account, thank you to click on the following link:" #: ../../library/Class/Users.php:941 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:1015 ../../library/Class/Users.php:1045 #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1058 -#: ../../library/Class/Users.php:1092 +#: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1091 msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:" msgstr "To activate your account, thank you to click on the following link :" @@ -13941,6 +14194,7 @@ msgstr "Customer priority" #: ../../library/Class/Codification.php:184 #: ../../library/Class/Codification.php:172 +#: ../../library/Class/Codification.php:146 msgid "Prix" msgstr "Price" @@ -13981,6 +14235,7 @@ msgstr "Data profile %s (%d) not set or misconfigured" #: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:171 #: ../../library/Class/AdminVar.php:174 ../../library/Class/AdminVar.php:174 +#: ../../library/Class/AdminVar.php:175 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -14085,6 +14340,21 @@ msgstr "Extend" msgid "Proposer des tags pour cette notice" msgstr "Submit tags for this record" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:46 +#, fuzzy +msgid "Proposer la sélection de bibliothèques" +msgstr "Libraries selection" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:52 +#, fuzzy +msgid "Proposer la sélection de sites" +msgstr "Sites selection" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:59 +#, fuzzy +msgid "Proposer la sélection de types de doc" +msgstr "Allow multiple facets selection" + #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:62 msgid "Proposer un fil RSS" msgstr "Suggest a RSS feed" @@ -14266,7 +14536,7 @@ msgstr "Presentation" #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:300 -#: ../../library/Class/AdminVar.php:204 +#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:205 msgid "" "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par " "défaut 30 jours)." @@ -14491,6 +14761,7 @@ msgstr "RSS" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:137 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:157 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:158 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:226 msgid "Racine" msgstr "Root" @@ -14555,6 +14826,7 @@ msgstr "Attach a custom fields" #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:247 #: ../../application/modules/telephone/controllers/RechercheController.php:66 +#: ../../library/Class/Codification.php:221 msgid "Rebondir dans le catalogue" msgstr "Go to catalog" @@ -14573,6 +14845,7 @@ msgstr "Reload" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 #: ../../library/Class/User/SearchCriteria.php:75 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:118 msgid "Recherche" msgstr "Search" @@ -14582,6 +14855,8 @@ msgstr "OAI search" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:52 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:53 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:54 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:55 msgid "Recherche avancée" msgstr "Advanced search" @@ -14742,7 +15017,8 @@ msgstr "Redmine isn't properly configured" #: ../../library/Class/NoticeHtml.php:189 #: ../../library/Class/NoticeHtml.php:194 #: ../../library/Class/NoticeHtml.php:185 -#: ../../library/Class/NoticeHtml.php:225 ../../library/Class/NoticeHtml.php:95 +#: ../../library/Class/NoticeHtml.php:225 +#: ../../library/Class/NoticeHtml.php:95 msgid "Refermer" msgstr "Close" @@ -14751,6 +15027,7 @@ msgid "Rejeter les périodiques" msgstr "Reject serials" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 msgid "Rejetée" msgstr "Rejected" @@ -14789,11 +15066,13 @@ msgid "Reload" msgstr "Reload" #: ../../application/modules/admin/controllers/IndexController.php:41 +#: ../../application/modules/admin/controllers/IndexController.php:47 msgid "Remettre le site en ligne" msgstr "Publish site online" #: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:164 #: ../../library/Class/AdminVar.php:167 ../../library/Class/AdminVar.php:167 +#: ../../library/Class/AdminVar.php:168 #, php-format msgid "" "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous " @@ -14828,6 +15107,7 @@ msgid "Rendre le livre emprunté" msgstr "Check the loaned book in" #: ../../application/modules/admin/controllers/IndexController.php:40 +#: ../../application/modules/admin/controllers/IndexController.php:46 msgid "Rendre le site indisponible" msgstr "Make the site offline" @@ -14924,6 +15204,7 @@ msgstr "OAI resources" #: ../../library/Class/Codification.php:217 #: ../../library/Class/Codification.php:269 #: ../../library/Class/Codification.php:257 +#: ../../library/Class/Codification.php:231 msgid "Ressources numériques" msgstr "Digital ressources" @@ -14931,6 +15212,11 @@ msgstr "Digital ressources" msgid "Restreindre la période d'ouverture" msgstr "Restrict the opening period" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:183 +#, fuzzy +msgid "Restreindre à " +msgstr "Limited to:" + #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:167 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:144 @@ -15054,6 +15340,7 @@ msgstr "Back to level above" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:43 #: ../../application/modules/admin/views/scripts/sansMenuGauche.phtml:17 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:49 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:47 msgid "Retour au site" msgstr "Back to site" @@ -15475,11 +15762,13 @@ msgstr "Following results" #: ../../library/Class/NoticeHtml.php:155 #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:139 -#: ../../library/Class/NoticeHtml.php:103 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:103 +#: ../../library/Class/NoticeHtml.php:94 #: ../../library/Class/Codification.php:176 #: ../../application/modules/telephone/controllers/RechercheController.php:33 #: ../../library/Class/Codification.php:164 #: ../../application/modules/telephone/controllers/RechercheController.php:64 +#: ../../library/Class/Codification.php:138 msgid "Résumé" msgstr "Summary" @@ -15513,6 +15802,7 @@ msgstr "Home page summary" #: ../../library/Class/Codification.php:206 #: ../../library/Class/Codification.php:258 #: ../../library/Class/Codification.php:246 +#: ../../library/Class/Codification.php:220 msgid "Résumés" msgstr "Summaries" @@ -15577,6 +15867,7 @@ msgid "S'inscrire à une formation" msgstr "Register to a training" #: ../../application/modules/admin/views/scripts/index/index.phtml:73 +#: ../../application/modules/admin/views/scripts/index/index.phtml:49 msgid "Salle de discussion #Bokeh" msgstr "#Bokeh discussion room" @@ -15618,6 +15909,7 @@ msgstr "Sign in" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:33 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:56 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:62 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:60 msgid "Se déconnecter" msgstr "Logout" @@ -15679,6 +15971,7 @@ msgstr "Sector" #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:143 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:215 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:217 +#: ../../library/Class/Codification.php:139 msgid "Section" msgstr "Section" @@ -15729,7 +16022,7 @@ msgstr "September" #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:247 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:251 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 msgid "Serveur FTP de diffusion des offres PNB Dilicom" msgstr "Dilicom FTP server" @@ -15818,7 +16111,7 @@ msgid "Session non trouvée" msgstr "Session not found" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:269 -#: ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:297 msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "Server Sets OAI \"La Cité de la Musique\" harvesting" @@ -15835,6 +16128,7 @@ msgstr "Should be greater than '%fieldToCompare%'" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1016 #: ../../library/Class/Users.php:1046 ../../library/Class/Users.php:1064 #: ../../library/Class/Users.php:1059 ../../library/Class/Users.php:1093 +#: ../../library/Class/Users.php:1092 msgid "" "Si vous n'êtes pas à l'origine de cette demande d'inscription, merci de ne " "pas tenir compte de cet e-mail, et l'inscription ne sera pas activée." @@ -15885,6 +16179,10 @@ msgstr "Signature" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:218 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:137 #: ../../library/ZendAfi/View/Helper/BibView.php:152 +#: ../../library/Class/Codification.php:141 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:63 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:65 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:272 msgid "Site" msgstr "Site" @@ -15908,6 +16206,11 @@ msgstr "Site %s deleted" msgid "Site : %s" msgstr "Site: %s" +#: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#, fuzzy +msgid "Site communautaire" +msgstr "Community Site of Bokeh project" + #: ../../application/modules/opac/views/scripts/footer.phtml:36 #: ../../library/ZendAfi/View/Helper/TagCredits.php:28 msgid "Site communautaire du projet Bokeh" @@ -16247,6 +16550,7 @@ msgstr "Display mode" #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:127 #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:44 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:33 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:30 msgid "Style de boite" msgstr "Widget style" @@ -16376,6 +16680,7 @@ msgstr "Next" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:52 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 +#: ../../library/Class/Codification.php:134 msgid "Sujet" msgstr "Topic" @@ -16393,6 +16698,7 @@ msgstr "Topic" #: ../../library/Class/NoticeHtml.php:105 #: ../../library/Class/Codification.php:172 #: ../../library/Class/Codification.php:160 +#: ../../library/Class/Codification.php:134 msgid "Sujet(s)" msgstr "Subject (s)" @@ -16611,6 +16917,11 @@ msgstr "System" msgid "Sécurité" msgstr "Security" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:111 +#, fuzzy +msgid "Sélection dans une liste déroulante" +msgstr "Select location" + #: ../../application/modules/opac/views/scripts/bib/selection.phtml:2 msgid "Sélection de bibliothèques" msgstr "Libraries selection" @@ -16645,6 +16956,11 @@ msgstr "Sites selection" msgid "Sélection multiple d'articles" msgstr "Multiple articles selection" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:112 +#, fuzzy +msgid "Sélection multiple par cases à cocher" +msgstr "Multiple articles selection" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 msgid "Sélectionner la bibliothèque" msgstr "Select library" @@ -16702,6 +17018,7 @@ msgstr "PIWIK dashboard" #: ../../library/Class/Codification.php:168 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:121 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:119 +#: ../../library/Class/Codification.php:142 msgid "Tag" msgstr "Tag" @@ -16712,6 +17029,7 @@ msgstr "Tag" #: ../../library/Class/Codification.php:143 #: ../../library/Class/Codification.php:180 #: ../../library/Class/Codification.php:168 +#: ../../library/Class/Codification.php:142 msgid "Tag(s)" msgstr "Tag (s)" @@ -16811,6 +17129,7 @@ msgstr "Computation time" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/ZendAfi/Form/Admin/Library.php:101 #: ../../library/ZendAfi/Form/Admin/Library.php:185 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 msgid "Territoire" msgstr "Territory" @@ -16944,6 +17263,7 @@ msgstr "Confirmation text" #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:176 #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:179 +#: ../../library/Class/AdminVar.php:180 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 " @@ -16954,6 +17274,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:174 #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:177 +#: ../../library/Class/AdminVar.php:178 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 " @@ -17127,6 +17448,10 @@ msgstr "Skin %s" #: ../../library/ZendAfi/Form/Admin/Newsletter.php:31 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:38 #: ../../library/ZendAfi/Form/Admin/News.php:55 +#: ../../library/Class/Codification.php:131 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:39 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:39 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:42 msgid "Titre" msgstr "Title" @@ -17227,6 +17552,7 @@ msgstr "Title after sign in" #: ../../library/Class/Codification.php:132 #: ../../library/Class/Codification.php:169 #: ../../library/Class/Codification.php:157 +#: ../../library/Class/Codification.php:131 msgid "Titre(s)" msgstr "Title(s)" @@ -17250,6 +17576,7 @@ msgstr "Titles" #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38 #: ../../library/Class/User/SearchCriteria.php:151 #: ../../library/ZendAfi/View/Helper/TreeView.php:87 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:99 msgid "Tous" msgstr "All" @@ -17412,10 +17739,19 @@ msgstr "Translations" msgid "Traductions:" msgstr "Translations:" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:60 +#, fuzzy +msgid "Traitement en cours depuis le" +msgstr "Loading in progress" + #: ../../library/Class/Cosmogramme/Generator.php:42 msgid "Traitement terminé." msgstr "Task complete" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:76 +msgid "Traitements d'intégration en retard de" +msgstr "" + #: ../../library/Class/Upload.php:268 ../../library/Class/Upload.php:291 msgid "Transfert impossible, ce formulaire est mal configuré" msgstr "Not transfer this form is misconfigured" @@ -17434,6 +17770,11 @@ msgstr "Transfer impossible, the destination directory could not be created." msgid "Tri" msgstr "Order" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:89 +#, fuzzy +msgid "Tri du résultat de recherche" +msgstr "Search result configuration" + #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:89 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:95 #: ../../library/ZendAfi/View/Helper/TagTriRecherche.php:35 @@ -17472,13 +17813,13 @@ msgid "Type d'interface" msgstr "Interface target" #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:262 -#: ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:290 msgid "Type de SSO OneDTouch" msgstr "SSO type OneDTouch" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:277 #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:284 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:312 msgid "Type de SSO lekiosk.com" msgstr "lekiosk.com SSO mode" @@ -17549,6 +17890,12 @@ msgstr "Forced doc type: %s" #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:46 #: ../../library/Class/CriteresRecherche.php:140 #: ../../library/Class/CriteresRecherche.php:141 +#: ../../library/Class/Codification.php:140 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:67 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:69 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:98 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:132 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:139 msgid "Type de document" msgstr "Doc type" @@ -17659,6 +18006,7 @@ msgstr "Custom fields types" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:310 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:171 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:168 +#: ../../library/Class/Codification.php:140 msgid "Types de documents" msgstr "Doc types" @@ -17776,6 +18124,7 @@ msgstr "Download the playlist (VLC, WinAmp)" #: ../../library/ZendAfi/Form/Admin/Library.php:74 #: ../../application/modules/opac/controllers/AbonneController.php:457 #: ../../application/modules/opac/controllers/AbonneController.php:459 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 msgid "Téléphone" msgstr "Phone number" @@ -17797,6 +18146,7 @@ msgstr "UNIMARC" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:11 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55 msgid "URL" msgstr "URL" @@ -17816,6 +18166,7 @@ msgstr "Author's wikepedia URL" #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:133 #: ../../library/Class/AdminVar.php:136 ../../library/Class/AdminVar.php:136 +#: ../../library/Class/AdminVar.php:137 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "Search URL" @@ -17845,6 +18196,7 @@ msgstr "Thumbnail URL" #: ../../library/Class/AdminVar.php:131 ../../library/Class/AdminVar.php:129 #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:132 +#: ../../library/Class/AdminVar.php:133 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "Babelio URL" @@ -17937,6 +18289,7 @@ msgstr "An email just sent to you to confirm your registration" #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1073 #: ../../library/Class/Users.php:1103 ../../library/Class/Users.php:1121 #: ../../library/Class/Users.php:1116 ../../library/Class/Users.php:1150 +#: ../../library/Class/Users.php:1149 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion." msgstr "An email has been sent to you with your connection settings." @@ -18059,35 +18412,37 @@ msgstr "Activation url: %s" #: ../../library/Class/AdminVar.php:140 ../../library/Class/AdminVar.php:138 #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:141 +#: ../../library/Class/AdminVar.php:142 msgid "Url d'import d'un agenda TYPO3" msgstr "TYPO3 feed URL" #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:156 #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:159 +#: ../../library/Class/AdminVar.php:160 msgid "Url de recherche" msgstr "search URL" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:302 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:305 -#: ../../library/Class/AdminVar.php:209 +#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:210 msgid "Url du connecteur Le Social" msgstr "Le Social URL" #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:300 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:303 -#: ../../library/Class/AdminVar.php:207 +#: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:208 msgid "Url du proxy Redmine" msgstr "Redmine proxy URL" #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:244 #: ../../library/Class/AdminVar.php:248 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 msgid "Url du serveur PNB Dilicom" msgstr "Dilicom server URL" #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:206 +#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:207 msgid "Url du serveur redmine" msgstr "Redmine server URL" @@ -18112,7 +18467,7 @@ msgstr "User \"%s\" saved" #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:248 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:252 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom" msgstr "PNB user FTP" @@ -18267,6 +18622,7 @@ msgid "Variable" msgstr "Variable" #: ../../application/modules/admin/controllers/IndexController.php:77 +#: ../../application/modules/admin/controllers/IndexController.php:83 #, php-format msgid "Variable %s sauvegardée" msgstr "Variable \"%s\" saved" @@ -18299,7 +18655,8 @@ msgstr "Friday" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:263 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:290 -#: ../../library/Class/AdminVar.php:317 +#: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:291 +#: ../../library/Class/AdminVar.php:318 msgid "Version" msgstr "Version" @@ -18309,7 +18666,7 @@ msgstr "Version:" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:317 msgid "Version de Kidilangues." msgstr "Kidilangues version" @@ -18324,10 +18681,12 @@ msgstr "Choose a selection" msgid "Veuillez choisir une notice" msgstr "Please select a record" -#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:123 +#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:123 #: ../../library/Class/NoticeHtml.php:177 #: ../../library/Class/NoticeHtml.php:182 -#: ../../library/Class/NoticeHtml.php:173 ../../library/Class/NoticeHtml.php:88 +#: ../../library/Class/NoticeHtml.php:173 +#: ../../library/Class/NoticeHtml.php:88 #: ../../library/Class/NoticeHtml.php:159 #: ../../library/Class/NoticeHtml.php:212 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:64 @@ -18478,6 +18837,7 @@ msgstr "Thumbnails" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../application/modules/opac/controllers/AbonneController.php:455 #: ../../application/modules/opac/controllers/AbonneController.php:457 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 msgid "Ville" msgstr "City" @@ -18846,7 +19206,7 @@ msgstr "Your review" #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:258 -#: ../../library/Class/AdminVar.php:285 +#: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:286 msgid "" "Votre compte sera mis à jour dans un délai de 15 minutes après le retour " "anticipé du document." @@ -18889,7 +19249,7 @@ msgstr "Your login : %s" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1064 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1112 ../../library/Class/Users.php:1107 -#: ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1140 #, php-format msgid "Votre identifiant : %s\n" msgstr "Your login : %s\n" @@ -18941,7 +19301,7 @@ msgstr "Your password : %s" #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1039 #: ../../library/Class/Users.php:1065 ../../library/Class/Users.php:1095 #: ../../library/Class/Users.php:1113 ../../library/Class/Users.php:1108 -#: ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1141 #, php-format msgid "Votre mot de passe : %s\n" msgstr "Your password : %s\n" @@ -19161,7 +19521,7 @@ msgstr "You made an application for registration on the portal." #: ../../library/Class/Users.php:940 ../../library/Class/Users.php:988 #: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1062 ../../library/Class/Users.php:1057 -#: ../../library/Class/Users.php:1091 +#: ../../library/Class/Users.php:1091 ../../library/Class/Users.php:1090 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "You made an application for registration on the portal :" @@ -19178,6 +19538,7 @@ msgstr "You made an application for registration to the newsletter :" #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1111 #: ../../library/Class/Users.php:1106 ../../library/Class/Users.php:1140 +#: ../../library/Class/Users.php:1139 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "You have requested a password on the portal." @@ -19201,6 +19562,7 @@ msgstr "URL field must be under 250 caracters" #: ../../library/Class/Users.php:921 ../../library/Class/Users.php:941 #: ../../library/Class/Users.php:971 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:984 ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1017 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "You must complete the field 'id'" @@ -19213,6 +19575,7 @@ msgstr "You must complete the field 'id'" #: ../../library/Class/Users.php:922 ../../library/Class/Users.php:942 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:985 ../../library/Class/Users.php:1019 +#: ../../library/Class/Users.php:1018 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "You must complete the field 'Password'" @@ -19301,7 +19664,7 @@ msgstr "Please enter a library ID" #: ../../library/Class/Users.php:904 ../../library/Class/Users.php:952 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:1002 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1015 -#: ../../library/Class/Users.php:1049 +#: ../../library/Class/Users.php:1049 ../../library/Class/Users.php:1048 msgid "Vous devez fournir une adresse mail valide" msgstr "You must provide a valid email address" @@ -19335,7 +19698,7 @@ msgstr "You must enter a password" #: ../../library/Class/Users.php:907 ../../library/Class/Users.php:955 #: ../../library/Class/Users.php:975 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1018 -#: ../../library/Class/Users.php:1052 +#: ../../library/Class/Users.php:1052 ../../library/Class/Users.php:1051 msgid "Vous devez saisir un numéro de téléphone" msgstr "You must enter a phone number" @@ -19383,6 +19746,7 @@ msgstr "You must select a photo, click Browse" #: ../../library/Class/Users.php:1216 ../../library/Class/Users.php:1242 #: ../../library/Class/Users.php:1281 ../../library/Class/Users.php:1299 #: ../../library/Class/Users.php:1294 ../../library/Class/Users.php:1328 +#: ../../library/Class/Users.php:1327 msgid "" "Vous devez vous connecter en tant qu'abonné de la bibliothèque pour obtenir " "plus d'informations." @@ -19599,7 +19963,7 @@ msgstr "You do not have sufficient rights to edit selection %s" #: ../../library/Class/Users.php:900 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:968 ../../library/Class/Users.php:998 #: ../../library/Class/Users.php:1016 ../../library/Class/Users.php:1011 -#: ../../library/Class/Users.php:1045 +#: ../../library/Class/Users.php:1045 ../../library/Class/Users.php:1044 msgid "Vous n'avez pas les droits suffisants pour diriger une formation" msgstr "You do not have sufficient rights to conduct training" @@ -19609,7 +19973,7 @@ msgstr "You do not have sufficient rights to conduct training" #: ../../library/Class/Users.php:897 ../../library/Class/Users.php:945 #: ../../library/Class/Users.php:965 ../../library/Class/Users.php:995 #: ../../library/Class/Users.php:1013 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1042 +#: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1041 msgid "Vous n'avez pas les droits suffisants pour suivre une formation" msgstr "You do not have sufficient privileges for training" @@ -19778,11 +20142,13 @@ msgid "Vérification des prêts rendus de manière anticipée" msgstr "Checking anticipated check-in" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 msgid "Vérifiée" msgstr "Checked" #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:162 #: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:165 +#: ../../library/Class/AdminVar.php:166 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "Multi-site items booking for Koha ws" @@ -19790,6 +20156,10 @@ msgstr "Multi-site items booking for Koha ws" msgid "Web" msgstr "Web" +#: ../../application/modules/admin/views/scripts/index/index.phtml:45 +msgid "Wiki Bokeh" +msgstr "" + #: ../../library/Class/IntProfilDonnees.php:41 #: ../../library/Class/IntProfilDonnees.php:51 msgid "Windows ANSI" @@ -19938,6 +20308,7 @@ msgstr "to" #: ../../application/modules/admin/views/scripts/accueil/calendrier.phtml:93 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:86 msgid "aucun" msgstr "none" @@ -20273,6 +20644,8 @@ msgstr "and" #: ../../library/ZendAfi/Form/SuggestionAchat.php:27 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:36 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:40 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:40 msgid "ex: Harry Potter à l'école des sorciers" msgstr "ex: Harry Potter and the Sorcerer's Stone" @@ -20432,8 +20805,8 @@ msgstr "to %s" msgid "jusqu'à " msgstr "until" -#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:179 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:179 +#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:180 #, php-format msgid "le %s" msgstr "%s" @@ -21097,6 +21470,11 @@ msgstr "record thumbnail" msgid "ville" msgstr "city" +#: ../../application/modules/admin/views/scripts/index/index.phtml:12 +#, fuzzy +msgid "» Modifier «" +msgstr "Edit" + #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:94 msgid "À la connextion : basculer automatiquement sur le profil" msgstr "On sign in : switch automatically to this profile" @@ -21135,6 +21513,7 @@ msgstr "On sign out : switch automatically to this profile" #: ../../library/Class/WebService/SIGB/Nanook/Service.php:226 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:56 +#: ../../library/Class/WebService/SIGB/Nanook/Service.php:228 msgid "Échec de l'authentification par le webservice" msgstr "Webservice authentification failed" @@ -21142,6 +21521,7 @@ msgstr "Webservice authentification failed" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:97 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:129 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134 #, php-format msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\"" msgstr "ILS conection failure: \"%s\"" @@ -21163,12 +21543,14 @@ msgstr "Preregistration failed, unknown error occured." #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:86 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:118 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123 #, php-format msgid "Échec de la suggestion, le webservice a répondu \"%s\"" msgstr "ILS conection failure: \"%s\"" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:83 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:115 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120 msgid "Échec de la suggestion, une erreur inconnue est survenue." msgstr "Suggestion failed, unknown error happens." diff --git a/library/translation/es.mo b/library/translation/es.mo index 1f9d418359e026eef5ffc15db94fa010f0ec9aee..8e25fcb6c70dad7736d1149d3d96278a34f00fdc 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 1133c1a2aabf07b165c0075001b2a04f5b7e4a9c..bf5ef50f1eae7011b0322f56975fd38316bb664f 100644 --- a/library/translation/es.po +++ b/library/translation/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Bokeh 7.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-11-07 15:21+0100\n" +"POT-Creation-Date: 2016-11-21 12:10+0100\n" "PO-Revision-Date: 2016-03-11 15:28+0000\n" "Last-Translator: salad0drik <cheurteux@afi-sa.fr>\n" "Language-Team: Spanish (http://www.transifex.com/afibre/bokeh-7-4-0/language/" @@ -272,6 +272,11 @@ msgstr " excepto" msgid " sur " msgstr " en" +#: ../../application/modules/admin/controllers/IndexController.php:25 +#, fuzzy, php-format +msgid " version %s" +msgstr "Version" + #: ../../library/ZendAfi/View/Helper/TagArticleEvent.php:56 #, php-format msgid " à %s" @@ -535,6 +540,11 @@ msgstr "" msgid "%s fichier(s) à traiter dans %s" msgstr "%s archivo(s) a tratar en %s" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:77 +#, fuzzy, php-format +msgid "%s jours" +msgstr "en curso" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:136 #, fuzzy, php-format msgid "%s le panier %s contient %d document" @@ -1049,12 +1059,12 @@ msgid "AFI-Multimédia n'est pas activé" msgstr "Este servicio no puede pruebarse" #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:212 +#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:213 msgid "API" msgstr "" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:211 +#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:212 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -1149,6 +1159,7 @@ msgid "Abonnés de la lettre: %s" msgstr "Los seguidores de la carta: %s" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 msgid "Acceptée" msgstr "Aceptada" @@ -1186,6 +1197,7 @@ msgstr "Aceptada" #: ../../library/Class/MoteurRecherche.php:594 #: ../../library/Class/MoteurRecherche.php:599 #: ../../library/Class/MoteurRecherche.php:605 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:41 msgid "Accueil" msgstr "Bienvenido" @@ -1311,44 +1323,49 @@ msgstr "Acciones" #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:153 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:156 +#: ../../library/Class/AdminVar.php:157 msgid "Activation de la disponibilite dans le resultat de recherche." msgstr "Activación de la disponibilidad en el resultado de búsqueda" #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:161 #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:164 +#: ../../library/Class/AdminVar.php:165 msgid "Activation de la navigation collaborative" msgstr "Activación de la navegación colaborativa" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:304 msgid "Activation de la ressource numérique PlanetNemo" msgstr "Activación del recurso digital PlanetNemo" #: ../../library/Class/AdminVar.php:137 ../../library/Class/AdminVar.php:135 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:138 +#: ../../library/Class/AdminVar.php:139 msgid "Activation des boîtes dans les menus" msgstr "Activación de las cajas en los menús" #: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:166 #: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:169 +#: ../../library/Class/AdminVar.php:170 msgid "Activation des fonctions avancées du téléphone" msgstr "Activación de las funciones avancadas del télefono" #: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:184 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:187 -#: ../../library/Class/AdminVar.php:188 +#: ../../library/Class/AdminVar.php:188 ../../library/Class/AdminVar.php:189 msgid "Activation des formulaires" msgstr "Activación de los formularios" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:240 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:271 +#: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:272 msgid "Activation du PNB Dilicom" msgstr "Activación del PNB Dilicom" #: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:169 #: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:172 +#: ../../library/Class/AdminVar.php:173 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1376,7 +1393,7 @@ msgstr "Habilitar herramientas de accesibilidad" #: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:203 #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:206 -#: ../../library/Class/AdminVar.php:234 +#: ../../library/Class/AdminVar.php:234 ../../library/Class/AdminVar.php:235 msgid "Activer ou désactiver la bibliothèque numérique" msgstr "Activar la biblioteca digital" @@ -1387,6 +1404,7 @@ msgstr "Activar la biblioteca digital" #: ../../library/Class/AdminVar.php:129 ../../library/Class/AdminVar.php:127 #: ../../library/Class/AdminVar.php:130 ../../library/Class/AdminVar.php:130 +#: ../../library/Class/AdminVar.php:131 msgid "Activer ou désactiver le module formation" msgstr "Activar el módulo de formación" @@ -1487,6 +1505,7 @@ msgstr "Administrar el servidor de AFI-Multimedia" #: ../../library/ZendAfi/Form/Admin/Library.php:172 #: ../../application/modules/opac/controllers/AbonneController.php:453 #: ../../application/modules/opac/controllers/AbonneController.php:455 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 msgid "Adresse" msgstr "Dirección" @@ -1517,37 +1536,38 @@ msgstr "Destinatario ausente dirección." #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:257 #: ../../library/Class/AdminVar.php:261 ../../library/Class/AdminVar.php:261 -#: ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 msgid "Adresse du serveur OAI 1D touch" msgstr "Dirección del servidor OAI 1D touch" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:294 +#: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:295 #, fuzzy msgid "Adresse du serveur OAI Cité de la Musique" msgstr "Dirección del servidor OAI Cyberlibris" #: ../../library/Class/AdminVar.php:221 ../../library/Class/AdminVar.php:219 #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:222 -#: ../../library/Class/AdminVar.php:249 +#: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:250 msgid "Adresse du serveur OAI Cyberlibris" msgstr "Dirección del servidor OAI Cyberlibris" #: ../../library/Class/AdminVar.php:262 ../../library/Class/AdminVar.php:264 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:271 -#: ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:299 msgid "Adresse du serveur Orphea" msgstr "Dirección del servidor Orphea" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:278 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 msgid "Adresse du serveur de la ressource numérique Orthodidacte" msgstr "Dirección del servidor del recurso digital Orthodidacte" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:103 #, fuzzy msgid "Adresse mail" msgstr "Dirección" @@ -1574,6 +1594,7 @@ msgstr "Dirección" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:153 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:189 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:272 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:116 msgid "Affichage" msgstr "Viendo el" @@ -1752,6 +1773,11 @@ msgstr "Ver mapa" msgid "Afficher la notice" msgstr "Ver registro" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:84 +#, fuzzy +msgid "Afficher le lien recherche avancée" +msgstr "Mostrar resultados de búsqueda" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:203 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:259 @@ -2047,6 +2073,7 @@ msgstr "Añadir al plan del sitio" #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:159 #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:162 +#: ../../library/Class/AdminVar.php:163 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "Añadir automáticamente una caja cesta en la division flotante" @@ -2470,6 +2497,7 @@ msgstr "Cancelado" #: ../../application/modules/telephone/views/scripts/recherche/viewnotice.phtml:16 #: ../../library/Class/Codification.php:173 #: ../../library/Class/Codification.php:161 +#: ../../library/Class/Codification.php:135 msgid "Année" msgstr "Año" @@ -2501,6 +2529,7 @@ msgstr "La publicación de años - desde" #: ../../library/Class/CriteresRecherche.php:127 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/Class/CriteresRecherche.php:140 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 msgid "Année de publication" msgstr "Fecha de publicación" @@ -2582,6 +2611,7 @@ msgstr "Archivar" #: ../../library/Class/Codification.php:216 #: ../../library/Class/Codification.php:268 #: ../../library/Class/Codification.php:256 +#: ../../library/Class/Codification.php:230 msgid "Archives vidéo" msgstr "Archivo de Video" @@ -2677,6 +2707,7 @@ msgstr "Aspecto del sitio" #: ../../application/modules/admin/controllers/RedmineController.php:26 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:34 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:31 msgid "Assistance" msgstr "" @@ -2726,8 +2757,8 @@ msgstr "No" #: ../../library/Class/NoticeHtml.php:228 #: ../../library/Class/NoticeHtml.php:219 #: ../../library/Class/NoticeHtml.php:259 -#: ../../library/Class/NoticeHtml.php:129 ../../library/Class/NoticeHtml.php:77 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/Class/NoticeHtml.php:129 +#: ../../library/Class/NoticeHtml.php:77 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "So se ha encontrado ningún artÃculo" @@ -3030,7 +3061,8 @@ msgstr "No hay datos para moderar" #: ../../library/Class/NoticeHtml.php:204 #: ../../library/Class/NoticeHtml.php:195 #: ../../library/Class/NoticeHtml.php:235 -#: ../../library/Class/NoticeHtml.php:105 ../../library/Class/NoticeHtml.php:61 +#: ../../library/Class/NoticeHtml.php:105 +#: ../../library/Class/NoticeHtml.php:61 #: ../../library/ZendAfi/View/Helper/Biographie.php:59 #: ../../library/Class/NoticeHtml.php:50 #: ../../library/ZendAfi/View/Helper/Biographie.php:58 @@ -3212,6 +3244,9 @@ msgstr "No se han encontrado artÃculos" #: ../../library/Class/CriteresRecherche.php:138 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/ZendAfi/Form/Admin/News.php:61 +#: ../../library/Class/Codification.php:123 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:45 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:45 msgid "Auteur" msgstr "Autor" @@ -3253,6 +3288,7 @@ msgstr "" #: ../../library/Class/Codification.php:124 #: ../../library/Class/Codification.php:161 #: ../../library/Class/Codification.php:149 +#: ../../library/Class/Codification.php:123 msgid "Auteur(s)" msgstr "Autor (s)" @@ -3454,6 +3490,7 @@ msgstr "Abril" #: ../../library/Class/Codification.php:218 #: ../../library/Class/Codification.php:270 #: ../../library/Class/Codification.php:258 +#: ../../library/Class/Codification.php:232 msgid "Babelthèque" msgstr "Babelthèque" @@ -3475,6 +3512,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:47 #: ../../library/Class/Codification.php:254 #: ../../application/modules/telephone/controllers/RechercheController.php:60 +#: ../../library/Class/Codification.php:228 msgid "Bande-annonce" msgstr "Remolque" @@ -3507,6 +3545,10 @@ msgstr "Barra horizontal ancha" msgid "Barre verticale" msgstr "Barra vertical" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:94 +msgid "Basculer automatiquement sur le profil" +msgstr "" + #: ../../library/ZendAfi/Form/Redmine/Issue.php:211 #, fuzzy msgid "Base de données : " @@ -3633,6 +3675,7 @@ msgstr "BibliografÃas" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:164 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:183 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:50 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque" msgstr "Biblioteca" @@ -3693,6 +3736,7 @@ msgstr "Bibliotecas" #: ../../library/Class/Codification.php:125 #: ../../library/Class/Codification.php:162 #: ../../library/Class/Codification.php:150 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque(s)" msgstr "Biblioteca (s)" @@ -3773,6 +3817,7 @@ msgstr "BiografÃa" #: ../../application/modules/telephone/controllers/RechercheController.php:36 #: ../../library/Class/Codification.php:248 #: ../../application/modules/telephone/controllers/RechercheController.php:67 +#: ../../library/Class/Codification.php:222 msgid "Biographie de l'auteur" msgstr "BiografÃa del autor" @@ -3880,6 +3925,7 @@ msgstr "" #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1013 #: ../../library/Class/Users.php:1043 ../../library/Class/Users.php:1061 #: ../../library/Class/Users.php:1056 ../../library/Class/Users.php:1090 +#: ../../library/Class/Users.php:1089 msgid "Bonjour," msgstr "Hola," @@ -3906,6 +3952,7 @@ msgstr "" #: ../../library/Class/Users.php:1040 ../../library/Class/Users.php:1066 #: ../../library/Class/Users.php:1096 ../../library/Class/Users.php:1114 #: ../../library/Class/Users.php:1109 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1142 msgid "Bonne navigation sur le portail" msgstr "Buena navegación en el portal" @@ -4003,6 +4050,7 @@ msgstr "Mapa" #: ../../application/modules/opac/controllers/BibController.php:244 #: ../../application/modules/opac/controllers/BibController.php:238 +#: ../../application/modules/opac/controllers/BibController.php:256 #, fuzzy msgid "Carte des bibliothèques" msgstr "Enchufe de la biblioteca:" @@ -4136,6 +4184,7 @@ msgstr "CategorÃas de álbumes" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:215 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:235 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:236 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:304 msgid "Catégories d'articles" msgstr "CategorÃas de articulos" @@ -4217,6 +4266,7 @@ msgstr "" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre d'intérêt" msgstr "Interés" @@ -4227,6 +4277,7 @@ msgstr "Interés" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre(s) d'intérêt" msgstr "Centro (s) de interés" @@ -4257,6 +4308,7 @@ msgstr "Este artÃculo es un borrador" #: ../../library/Class/Users.php:970 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1067 +#: ../../library/Class/Users.php:1066 msgid "Cet identifiant existe déjà ." msgstr "Este identificador ya existe." @@ -4476,7 +4528,8 @@ msgid "Chargement" msgstr "Cargando" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:131 -#: ../../library/Class/NoticeHtml.php:81 ../../library/Class/NoticeHtml.php:122 +#: ../../library/Class/NoticeHtml.php:81 +#: ../../library/Class/NoticeHtml.php:122 #: ../../library/Class/NoticeHtml.php:176 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:159 #: ../../library/Class/NoticeHtml.php:181 @@ -4484,7 +4537,8 @@ msgstr "Cargando" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:183 #: ../../library/Class/NoticeHtml.php:172 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:182 -#: ../../library/Class/NoticeHtml.php:87 ../../library/Class/NoticeHtml.php:158 +#: ../../library/Class/NoticeHtml.php:87 +#: ../../library/Class/NoticeHtml.php:158 #: ../../library/Class/NoticeHtml.php:211 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:199 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:63 @@ -4494,7 +4548,8 @@ msgstr "Cargando" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:175 #: ../../library/Class/NoticeHtml.php:48 #: ../../library/ZendAfi/View/Helper/ListeNotices/Accordeon.php:56 -#: ../../library/Class/NoticeHtml.php:42 ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 msgid "Chargement en cours" msgstr "Cargando" @@ -4507,6 +4562,7 @@ msgstr "Loading ..." #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:160 #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:163 +#: ../../library/Class/AdminVar.php:164 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "" @@ -4518,6 +4574,7 @@ msgid "Chercher dans le menu " msgstr "Encontrar Usuarios" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:70 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:72 msgid "Chercher dans les bibliothèques de votre choix" msgstr "Busquar en la biblioteca de su elección" @@ -4680,13 +4737,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:223 #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:226 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 msgid "Clé ARTE VOD" msgstr "Llave ARTE VOD" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:224 #: ../../library/Class/AdminVar.php:227 ../../library/Class/AdminVar.php:227 -#: ../../library/Class/AdminVar.php:254 +#: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:255 msgid "Clé ARTE VOD Single Sign-On" msgstr "Llave ARTE VOD Single Sign-On" @@ -4696,7 +4753,7 @@ msgstr "Llave alpha" #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:285 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292 -#: ../../library/Class/AdminVar.php:319 +#: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:320 msgid "" "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par " "Kidilangues." @@ -4704,7 +4761,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:286 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:293 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:321 msgid "" "Clé d'identification Kidilangues pour le portail. Cette clé doit être " "fournie par Kidilangues." @@ -4712,7 +4769,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:255 #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:259 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:287 msgid "" "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie " "par MyCOW.EU. Elle active la ressource numérique dans le portail." @@ -4720,7 +4777,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:325 msgid "" "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit " "être fournie par Premier-Chapitre." @@ -4728,7 +4785,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:236 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:240 -#: ../../library/Class/AdminVar.php:267 +#: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 msgid "Clé de sécurité Vodeclic" msgstr "Llave de seguridad Vodeclic" @@ -4738,11 +4795,13 @@ msgstr "Llave obra" #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:130 #: ../../library/Class/AdminVar.php:133 ../../library/Class/AdminVar.php:133 +#: ../../library/Class/AdminVar.php:134 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "" #: ../../library/Class/AdminVar.php:134 ../../library/Class/AdminVar.php:132 #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:135 +#: ../../library/Class/AdminVar.php:136 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "" @@ -4778,12 +4837,19 @@ msgstr "Código anti-spam:" msgid "Code postal" msgstr "Código Postal" +#: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#, fuzzy +msgid "Code source" +msgstr "fuente" + #: ../../library/ZendAfi/Form/SuggestionAchat.php:42 #: ../../library/ZendAfi/Form/SuggestionAchat.php:40 #: ../../library/ZendAfi/Form/SuggestionAchat.php:44 #: ../../library/ZendAfi/Form/SuggestionAchat.php:34 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:47 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:47 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:51 msgid "Code-barres / ISBN" msgstr "Código de barras / ISBN" @@ -4795,6 +4861,7 @@ msgstr "Código de barras / ISBN" #: ../../library/Class/Codification.php:133 #: ../../library/Class/Codification.php:170 #: ../../library/Class/Codification.php:158 +#: ../../library/Class/Codification.php:132 msgid "Collation" msgstr "Colación" @@ -4817,6 +4884,7 @@ msgstr "Colación" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:55 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:57 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59 +#: ../../library/Class/Codification.php:125 msgid "Collection" msgstr "Colección" @@ -4828,6 +4896,7 @@ msgstr "Colección" #: ../../library/Class/Codification.php:126 #: ../../library/Class/Codification.php:163 #: ../../library/Class/Codification.php:151 +#: ../../library/Class/Codification.php:125 msgid "Collection(s)" msgstr "Collection (s)" @@ -4847,6 +4916,7 @@ msgid "Colonnes à afficher" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 msgid "Commandée" msgstr "" @@ -5224,7 +5294,7 @@ msgstr "Contenido del aviso cambiaron" #: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:194 #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:197 -#: ../../library/Class/AdminVar.php:198 +#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:199 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -5233,7 +5303,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:195 #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:198 -#: ../../library/Class/AdminVar.php:199 +#: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:200 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" @@ -5241,7 +5311,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:196 #: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:199 -#: ../../library/Class/AdminVar.php:200 +#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:201 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -5258,12 +5328,13 @@ msgstr "Contenidos relacionados artÃculo" #: ../../library/ZendAfi/View/Helper/Notice/Analytics.php:71 #: ../../library/Class/Codification.php:260 +#: ../../library/Class/Codification.php:234 msgid "Contient" msgstr "Contiene" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:243 #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:274 ../../library/Class/AdminVar.php:275 msgid "Contracteur du PNB Dilicom" msgstr "" @@ -5437,6 +5508,7 @@ msgstr "CrÃticos" #: ../../application/modules/telephone/controllers/RechercheController.php:32 #: ../../library/Class/Codification.php:244 #: ../../application/modules/telephone/controllers/RechercheController.php:63 +#: ../../library/Class/Codification.php:218 msgid "Critiques" msgstr "Comentarios" @@ -5497,6 +5569,11 @@ msgstr "Criterios de selección" msgid "Critères généraux" msgstr "Criterios generales" +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:316 +#, fuzzy +msgid "Créateur" +msgstr "Creación carrito" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:53 msgid "Création / nouveauté" msgstr "" @@ -5690,6 +5767,11 @@ msgstr "Fecha lÃmite excedido en:" msgid "Date de limite d'inscription: " msgstr "Fecha de la Fecha LÃmite de Inscripción:" +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:315 +#, fuzzy +msgid "Date de mise à jour" +msgstr "Ahorro" + #: ../../library/ZendAfi/Form/Admin/User.php:149 #: ../../library/ZendAfi/Form/Admin/User.php:159 #: ../../library/ZendAfi/Form/PreRegistration.php:46 @@ -5727,9 +5809,14 @@ msgstr "Fecha de sugerencia" #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:158 #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:161 +#: ../../library/Class/AdminVar.php:162 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" +#: ../../library/Class/AdminVar.php:129 +msgid "Date du dernier vidage manuel du cache" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Date nouveaté" msgstr "Fecha de novedad" @@ -5844,6 +5931,10 @@ msgstr "" msgid "Demandeur" msgstr "Solicitante" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:52 +msgid "Dernier traitement d'intégration effectué le" +msgstr "" + #: ../../application/modules/opac/controllers/CmsController.php:145 #: ../../application/modules/opac/controllers/CmsController.php:129 #: ../../application/modules/opac/controllers/CmsController.php:128 @@ -5978,6 +6069,7 @@ msgstr "Descripción" #: ../../application/modules/telephone/controllers/RechercheController.php:30 #: ../../library/Class/Codification.php:243 #: ../../application/modules/telephone/controllers/RechercheController.php:61 +#: ../../library/Class/Codification.php:217 msgid "Description du document" msgstr "Descripción del Documento" @@ -6056,6 +6148,7 @@ msgstr "Descripción del Documento" #: ../../library/Class/Codification.php:212 #: ../../library/Class/Codification.php:264 #: ../../library/Class/Codification.php:252 +#: ../../library/Class/Codification.php:226 msgid "Discographie" msgstr "DiscografÃa" @@ -6072,6 +6165,7 @@ msgid "Discographie complète de" msgstr "DiscografÃa completa" #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:50 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -6102,6 +6196,7 @@ msgstr "Disponibilidad" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:65 #: ../../library/Class/Exemplaire.php:229 #: ../../library/Class/Exemplaire.php:230 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 msgid "Disponible" msgstr "Disponible" @@ -6136,6 +6231,7 @@ msgstr "Próximo registro" #: ../../library/Class/Codification.php:209 #: ../../library/Class/Codification.php:261 #: ../../library/Class/Codification.php:249 +#: ../../library/Class/Codification.php:223 msgid "Documents de la même série" msgstr "Los documentos en la misma serie" @@ -6168,6 +6264,7 @@ msgstr "Documentos emitidos" #: ../../application/modules/telephone/controllers/RechercheController.php:37 #: ../../library/Class/Codification.php:251 #: ../../application/modules/telephone/controllers/RechercheController.php:68 +#: ../../library/Class/Codification.php:225 msgid "Documents similaires" msgstr "Documentos similares" @@ -6208,6 +6305,11 @@ msgstr "Dominio %s añadido" msgid "Domaine %s sauvegardé" msgstr "Dominio %s salvos" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:195 +#, fuzzy +msgid "Domaine de recherche" +msgstr "Cuadro de búsqueda" + #: ../../library/Class/MoteurRecherche.php:383 #: ../../library/Class/MoteurRecherche.php:405 #: ../../library/Class/MoteurRecherche.php:408 @@ -6232,7 +6334,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:273 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 msgid "Domaine utilisée par le serveur lectura pour authentification" msgstr "" @@ -6256,7 +6358,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:66 #: ../../library/Trait/JsonDomain.php:33 ../../library/Class/Catalogue.php:565 #: ../../library/Class/Catalogue.php:1162 -#: ../../library/Class/Catalogue.php:1200 ../../library/Class/Catalogue.php:576 +#: ../../library/Class/Catalogue.php:1200 +#: ../../library/Class/Catalogue.php:576 #: ../../library/Class/Catalogue.php:1173 #: ../../library/Class/Catalogue.php:1211 #: ../../library/Class/Catalogue.php:1144 @@ -6266,6 +6369,11 @@ msgstr "" msgid "Domaines" msgstr "Dominios" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:103 +#, fuzzy +msgid "Domaines sélectionnables" +msgstr "Los campos seleccionados" + #: ../../library/ZendAfi/View/Helper/AvisCms.php:38 msgid "Donner ou modifier votre avis" msgstr "" @@ -6293,12 +6401,14 @@ msgstr "Añadir o editar comentario" #: ../../application/modules/opac/controllers/RssController.php:233 #: ../../application/modules/admin/views/scripts/index/index.phtml:36 #: ../../application/modules/admin/views/scripts/index/index.phtml:47 +#: ../../application/modules/admin/views/scripts/index/index.phtml:21 msgid "Données en attente de modération" msgstr "Datos moderación en espera" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:135 #, fuzzy msgid "Droite" msgstr "Derechos" @@ -6408,7 +6518,7 @@ msgstr "Duración de préstamo en dÃas" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:250 #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:281 +#: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom" msgstr "" @@ -6482,7 +6592,7 @@ msgstr "Recuentos" #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:301 -#: ../../library/Class/AdminVar.php:205 +#: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:206 msgid "Désactivation des suggestions d'achats" msgstr "" @@ -6687,6 +6797,7 @@ msgstr "Escucha el disco" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58 +#: ../../library/Class/Codification.php:127 msgid "Editeur" msgstr "Editorial" @@ -6723,6 +6834,7 @@ msgstr "Editorial: %s" #: ../../library/Class/Codification.php:128 #: ../../library/Class/Codification.php:165 #: ../../library/Class/Codification.php:153 +#: ../../library/Class/Codification.php:127 msgid "Editeur(s)" msgstr "Publisher (s)" @@ -6842,6 +6954,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59 msgid "En attente" msgstr "En espera" @@ -6865,18 +6978,21 @@ msgstr "En espera" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 msgid "En bas" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:88 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 msgid "En haut" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 msgid "En haut et en bas" msgstr "" @@ -6888,6 +7004,7 @@ msgstr "" #: ../../library/Class/Codification.php:182 #: ../../library/Class/Codification.php:170 +#: ../../library/Class/Codification.php:144 msgid "En rayon" msgstr "" @@ -6904,6 +7021,10 @@ msgstr "" msgid "Enregistrer" msgstr "Registro" +#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53 +msgid "Enregistrer comme filtres par défaut" +msgstr "" + #: ../../application/modules/admin/views/scripts/oai/index.phtml:25 msgid "Entrepot" msgstr "Almacén" @@ -7050,6 +7171,8 @@ msgstr "EnvÃa boletines" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:75 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:77 #: ../../application/modules/admin/controllers/SystemeController.php:286 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:84 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:86 msgid "Envoyer" msgstr "Enviar" @@ -7107,6 +7230,7 @@ msgstr "Error" #: ../../application/modules/admin/controllers/IndexController.php:130 #: ../../application/modules/admin/controllers/IndexController.php:131 +#: ../../application/modules/admin/controllers/IndexController.php:139 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -7219,6 +7343,7 @@ msgid "Erreur(s) : %s" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:84 +#: ../../application/modules/admin/controllers/IndexController.php:90 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" @@ -7245,6 +7370,11 @@ msgstr "Y" msgid "Etat" msgstr "Estado" +#: ../../application/modules/admin/views/scripts/index/index.phtml:17 +#, fuzzy +msgid "Etat du site" +msgstr "Aspecto del sitio" + #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:55 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:48 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:52 @@ -7328,6 +7458,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:231 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:228 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 +#: ../../library/Class/Codification.php:219 msgid "Exemplaires" msgstr "Copias" @@ -7401,6 +7532,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:12 #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:31 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:181 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:234 msgid "Expression recherchée" msgstr "Buscar término" @@ -7544,7 +7676,8 @@ msgstr "De cerca" #: ../../library/Class/NoticeHtml.php:188 #: ../../library/Class/NoticeHtml.php:193 #: ../../library/Class/NoticeHtml.php:184 -#: ../../library/Class/NoticeHtml.php:224 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:224 +#: ../../library/Class/NoticeHtml.php:94 msgid "Fermer les onglets" msgstr "Cerrar pestañas" @@ -7621,6 +7754,10 @@ msgstr "Foto de archivo: %s" msgid "Fichier total à traiter : %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:85 +msgid "Fichier(s) en file d'attente" +msgstr "" + #: ../../library/Class/Batch/DilicomJobOnix.php:190 #, php-format msgid "Fichiers incrémentaux à traiter : %s" @@ -7711,6 +7848,11 @@ msgstr "Ocultar elementos" msgid "Filtrer par statut : " msgstr "Filtrar por estado:" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:134 +#, fuzzy +msgid "Filtres" +msgstr "Filtro" + #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:46 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:54 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:34 @@ -7920,6 +8062,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:132 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 #, fuzzy msgid "Gauche" msgstr "Capa" @@ -7937,6 +8080,7 @@ msgstr "Capa" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:104 #: ../../library/Class/Codification.php:167 #: ../../library/Class/Codification.php:155 +#: ../../library/Class/Codification.php:129 msgid "Genre" msgstr "Kind" @@ -7977,6 +8121,7 @@ msgid "Gestion des utilisateurs" msgstr "Gestión de usuarios" #: ../../application/modules/admin/controllers/IndexController.php:58 +#: ../../application/modules/admin/controllers/IndexController.php:64 msgid "Gestion des variables" msgstr "" @@ -7991,10 +8136,14 @@ msgstr "Content Manager" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:272 +#: ../../library/Class/AdminVar.php:272 ../../library/Class/AdminVar.php:273 msgid "Gln de la collectivité, il est fourni par Dilicom." msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:44 +msgid "Google group Bokeh" +msgstr "" + #: ../../application/modules/admin/controllers/UsergroupController.php:132 #: ../../application/modules/admin/controllers/UsergroupController.php:159 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:45 @@ -8084,6 +8233,7 @@ msgstr "General" #: ../../library/ZendAfi/Form/Configuration/DomainWidget.php:31 #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:108 #: ../../library/ZendAfi/Form/Panier.php:38 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:130 msgid "Généralités" msgstr "General" @@ -8116,7 +8266,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:204 #: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:207 -#: ../../library/Class/AdminVar.php:235 +#: ../../library/Class/AdminVar.php:235 ../../library/Class/AdminVar.php:236 msgid "" "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation " "de la bibliothèque numérique" @@ -8234,6 +8384,7 @@ msgstr "Horario" #: ../../application/modules/opac/controllers/AbonneController.php:849 #: ../../application/modules/opac/controllers/AbonneController.php:867 #: ../../application/modules/opac/controllers/AbonneController.php:869 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:100 msgid "Horaires" msgstr "Horario" @@ -8248,12 +8399,12 @@ msgstr "HTML simplificado" #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:234 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:237 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:265 msgid "ID client Jamendo" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:238 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 msgid "ID client SoundCloud" msgstr "" @@ -8283,7 +8434,7 @@ msgstr "Icono del explorador" #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:210 +#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:211 msgid "Id du connecteur Le Social" msgstr "" @@ -8324,18 +8475,19 @@ msgstr "" #: ../../library/ZendAfi/Form/Register.php:36 #: ../../library/ZendAfi/Form/Login.php:130 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:73 +#: ../../library/Class/Codification.php:130 msgid "Identifiant" msgstr "Iniciar sesión" #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:223 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:251 msgid "Identifiant SSO Cyberlibris" msgstr "" #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:269 +#: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:270 msgid "Identifiant code bibliothèque Vodeclic" msgstr "" @@ -8347,25 +8499,25 @@ msgid "Identifiant commence par" msgstr "ID comienza con" #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:295 +#: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:296 msgid "Identifiant d'accès au serveur OAI Cité de la Musique" msgstr "" #: ../../library/Class/AdminVar.php:260 ../../library/Class/AdminVar.php:262 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:293 +#: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:294 msgid "Identifiant du portail chez 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:304 -#: ../../library/Class/AdminVar.php:208 +#: ../../library/Class/AdminVar.php:208 ../../library/Class/AdminVar.php:209 msgid "Identifiant du project Redmine" msgstr "" #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:310 msgid "Identifiant fournit par lekiosk.com" msgstr "" @@ -8385,7 +8537,7 @@ msgstr "Nombre de usuario o contraseña incorrecta." #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:237 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:241 -#: ../../library/Class/AdminVar.php:268 +#: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:269 msgid "Identifiant partenaire Vodeclic" msgstr "" @@ -8875,6 +9027,8 @@ msgstr "" #: ../../library/ZendAfi/Form/SuggestionAchat.php:55 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:68 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:71 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:77 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:80 msgid "Informations sur le document" msgstr "Información del documento" @@ -8969,6 +9123,7 @@ msgstr "Registro" #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:136 #: ../../library/Class/AdminVar.php:139 ../../library/Class/AdminVar.php:139 +#: ../../library/Class/AdminVar.php:140 msgid "Interdire la modification de la fiche abonne" msgstr "" @@ -9002,6 +9157,11 @@ msgstr "Prohibir reservas" msgid "Intervenants" msgstr "Altavoces" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:46 +#, fuzzy +msgid "Intégration des données : " +msgstr "Alertas de moderación" + msgid "Invalid type given, value should be a string" msgstr "Dada tipo no válido, el valor debe ser una cadena" @@ -9073,6 +9233,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:177 #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:180 +#: ../../library/Class/AdminVar.php:181 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" @@ -9236,6 +9397,7 @@ msgstr "" #: ../../library/Class/Users.php:928 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:978 ../../library/Class/Users.php:996 #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1025 +#: ../../library/Class/Users.php:1024 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "El nombre de usuario que eligió ya existe." @@ -9356,6 +9518,7 @@ msgstr "La biblioteca contiene los registros %s." #: ../../library/Class/Users.php:937 ../../library/Class/Users.php:957 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1033 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "Se requiere que la biblioteca de la función: %s" @@ -9411,6 +9574,7 @@ msgstr "La extensión no" #: ../../application/modules/admin/controllers/IndexController.php:129 #: ../../application/modules/admin/controllers/IndexController.php:130 +#: ../../application/modules/admin/controllers/IndexController.php:138 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" @@ -9496,6 +9660,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:81 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:84 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 msgid "La recherche s'effectue dans tout le réseau." msgstr "" @@ -9623,6 +9789,7 @@ msgstr "Iniciar la búsqueda" #: ../../library/Class/Codification.php:171 #: ../../library/ZendAfi/Form/Album.php:173 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue" msgstr "Idioma" @@ -9644,6 +9811,7 @@ msgstr "Contraseña: %s" #: ../../library/Class/Codification.php:134 #: ../../library/Class/Codification.php:171 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue(s)" msgstr "Idioma (s)" @@ -9664,6 +9832,11 @@ msgstr "Idiomas" msgid "Largeur" msgstr "Ancho" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:36 +#, fuzzy +msgid "Largeur du champ de saisie" +msgstr "El ancho total de la página" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:156 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:165 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 @@ -9687,6 +9860,7 @@ msgid "Le %s" msgstr " %s" #: ../../application/modules/admin/controllers/IndexController.php:108 +#: ../../application/modules/admin/controllers/IndexController.php:116 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -9745,6 +9919,7 @@ msgstr "'Url' El campo debe ser inferior a 250 caracteres" #: ../../library/Class/Users.php:924 ../../library/Class/Users.php:944 #: ../../library/Class/Users.php:974 ../../library/Class/Users.php:992 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1021 +#: ../../library/Class/Users.php:1020 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "El campo 'id' debe ser menor de 50 caracteres" @@ -9752,7 +9927,7 @@ msgstr "El campo 'id' debe ser menor de 50 caracteres" #: ../../library/Class/Users.php:885 ../../library/Class/Users.php:932 #: ../../library/Class/Users.php:952 ../../library/Class/Users.php:982 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:995 -#: ../../library/Class/Users.php:1029 +#: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1028 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "El campo 'Contraseña' debe tener menos de 255 caracteres" @@ -9885,7 +10060,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:201 ../../library/Class/AdminVar.php:199 #: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:202 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:231 msgid "" "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au " "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre " @@ -9894,6 +10069,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:184 ../../library/Class/AdminVar.php:182 #: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:185 +#: ../../library/Class/AdminVar.php:186 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 " @@ -9964,6 +10140,7 @@ msgstr "" #: ../../library/Class/Users.php:942 ../../library/Class/Users.php:962 #: ../../library/Class/Users.php:992 ../../library/Class/Users.php:1010 #: ../../library/Class/Users.php:1005 ../../library/Class/Users.php:1039 +#: ../../library/Class/Users.php:1038 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" @@ -10017,10 +10194,12 @@ msgid "Le site \"%s\" a été supprimé" msgstr "El sitio \"%s\" se ha eliminado" #: ../../application/modules/admin/controllers/IndexController.php:36 +#: ../../application/modules/admin/controllers/IndexController.php:42 msgid "Le site est en ligne" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:37 +#: ../../application/modules/admin/controllers/IndexController.php:43 msgid "Le site est indisponible" msgstr "" @@ -10262,7 +10441,7 @@ msgstr "Etiqueta CategorÃa" #: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:208 #: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:211 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:240 msgid "Libellé de regroupement des abonnés" msgstr "" @@ -10322,11 +10501,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:141 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:144 +#: ../../library/Class/AdminVar.php:145 msgid "Libellé pour la Dewey" msgstr "" #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:140 #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:143 +#: ../../library/Class/AdminVar.php:144 msgid "Libellé pour la PCDM4" msgstr "" @@ -10375,6 +10556,7 @@ msgstr "Enlace Mapping:" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Lien internet" msgstr "Enlace de Internet" @@ -10414,6 +10596,7 @@ msgstr "Permalink" #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:175 #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:178 +#: ../../library/Class/AdminVar.php:179 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" @@ -10434,6 +10617,7 @@ msgstr "" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Liens internet" msgstr "Enlaces Web" @@ -10580,6 +10764,7 @@ msgstr "Leer más" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:57 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:129 msgid "Liste" msgstr "Lista" @@ -10601,7 +10786,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:245 #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:277 msgid "" "Liste des adresses IP publiques autorisées pour la consultation des documents" msgstr "" @@ -10613,6 +10798,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:225 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:245 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:246 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:314 msgid "Liste des articles" msgstr "" @@ -10627,6 +10813,7 @@ msgstr "Lista de categorÃas" #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:139 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:142 +#: ../../library/Class/AdminVar.php:143 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;" @@ -10635,6 +10822,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:154 ../../library/Class/AdminVar.php:152 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:155 +#: ../../library/Class/AdminVar.php:156 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 => " @@ -10675,6 +10863,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:154 #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:157 +#: ../../library/Class/AdminVar.php:158 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -10704,6 +10893,8 @@ msgstr "Libro digitalizado" #: ../../library/Class/Codification.php:164 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:152 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:126 msgid "Livres et Vidéos" msgstr "Libros y Videos" @@ -10784,19 +10975,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:222 #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:225 -#: ../../library/Class/AdminVar.php:252 +#: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 msgid "Login ARTE VOD" msgstr "" #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:287 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:294 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:322 msgid "Login du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:298 -#: ../../library/Class/AdminVar.php:325 +#: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:326 msgid "Login du portail fourni par Premier-Chapitre." msgstr "" @@ -10997,6 +11188,7 @@ msgstr "Mis últimos cestas" #: ../../library/Class/Users.php:1465 ../../library/Class/Users.php:1486 #: ../../library/Class/Users.php:1520 ../../library/Class/Users.php:1528 #: ../../library/Class/Users.php:1523 ../../library/Class/Users.php:1557 +#: ../../library/Class/Users.php:1556 msgid "Mes paniers" msgstr "Mi Carrito de Compras" @@ -11010,6 +11202,7 @@ msgstr "Su cesta de documentos" #: ../../library/Class/Users.php:1498 ../../library/Class/Users.php:1519 #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1561 #: ../../library/Class/Users.php:1556 ../../library/Class/Users.php:1590 +#: ../../library/Class/Users.php:1589 msgid "Mes paniers rattachés à un domaine" msgstr "Mis cestas unidos a un dominio" @@ -11059,12 +11252,27 @@ msgstr "Mensaje 1" msgid "Message au dessus de la boite" msgstr "Cuadro de mensaje por encima de la" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:69 +#, fuzzy +msgid "Message au dessus du champ de saisie" +msgstr "Cuadro de mensaje por encima de la" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:79 +#, fuzzy +msgid "Message au-dessous du champ de recherche" +msgstr "Cuadro de mensaje por encima de la" + #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:257 -#: ../../library/Class/AdminVar.php:284 +#: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:285 msgid "Message d'avertissement affiché sur la popup d'emprunt" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:74 +#, fuzzy +msgid "Message d'exemple dans le champ de saisie" +msgstr "Debe introducir una contraseña" + #: ../../library/ZendAfi/Form/Admin/News.php:158 #: ../../library/ZendAfi/Form/Admin/News.php:167 #: ../../library/ZendAfi/Form/Admin/News.php:194 @@ -11078,6 +11286,10 @@ msgstr "Mensaje que explica la negativa." msgid "Message de bienvenue" msgstr "Mensaje del solicitante:" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:64 +msgid "Message du bouton pour rechercher" +msgstr "" + #: ../../application/modules/opac/controllers/RechercheController.php:459 #: ../../application/modules/opac/controllers/RechercheController.php:492 #: ../../application/modules/opac/controllers/RechercheController.php:517 @@ -11183,6 +11395,7 @@ msgstr "Actualización de la ubicación" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:103 #: ../../application/modules/admin/controllers/IndexController.php:119 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:127 #, fuzzy msgid "Mise à jour de la charte graphique" msgstr "Actualización de la ubicación" @@ -11286,7 +11499,7 @@ msgstr "Visualizar las sugerencias" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 #: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:285 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:313 msgid "Mode d'authentification" msgstr "" @@ -11298,6 +11511,11 @@ msgstr "" msgid "Mode de calcul des tranches" msgstr "Método de cálculo de las rebanadas" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:110 +#, fuzzy +msgid "Mode de sélection" +msgstr "Modo de selección" + #: ../../application/modules/admin/views/scripts/usergroup/_usergroup.phtml:12 msgid "Mode de sélection " msgstr "Modo de selección" @@ -11450,6 +11668,7 @@ msgid "Modifier la source de données du kiosque" msgstr "Edite el kiosco fuente de datos" #: ../../application/modules/admin/controllers/IndexController.php:91 +#: ../../application/modules/admin/controllers/IndexController.php:97 #, php-format msgid "Modifier la variable: %s" msgstr "" @@ -11870,6 +12089,7 @@ msgstr "Subir a" #: ../../library/Class/Codification.php:213 #: ../../library/Class/Codification.php:265 #: ../../library/Class/Codification.php:253 +#: ../../library/Class/Codification.php:227 msgid "Morceaux" msgstr "Piezas" @@ -11901,19 +12121,19 @@ msgstr "Contraseña" #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:249 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:280 +#: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:273 -#: ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:300 ../../library/Class/AdminVar.php:301 msgid "Mot de passe de l'utilisateur Orphea" msgstr "" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:242 #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:274 msgid "Mot de passe de la collectivité, il est fourni par Dilicom." msgstr "" @@ -11976,6 +12196,8 @@ msgstr "" #: ../../library/Class/Codification.php:175 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:163 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:137 msgid "Musique" msgstr "Música" @@ -12082,7 +12304,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:203 ../../library/Class/AdminVar.php:201 #: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:204 -#: ../../library/Class/AdminVar.php:232 +#: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi" msgstr "" @@ -12271,6 +12493,7 @@ msgstr "Nombre comienza con" #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:157 #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:160 +#: ../../library/Class/AdminVar.php:161 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" @@ -12281,7 +12504,7 @@ msgstr "Nombre del Propietario" #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:272 -#: ../../library/Class/AdminVar.php:299 +#: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:300 msgid "Nom de l'utilisateur Orphea" msgstr "" @@ -12298,6 +12521,11 @@ msgstr "" msgid "Nom de la notice" msgstr "Nombre del Propietario" +#: ../../application/modules/admin/views/scripts/index/index.phtml:18 +#, fuzzy +msgid "Nom du domaine" +msgstr "Cesta Nombre" + #: ../../application/modules/opac/views/scripts/panier/index.phtml:23 #: ../../application/modules/opac/views/scripts/panier/index.phtml:24 msgid "Nom du panier" @@ -12312,6 +12540,7 @@ msgstr "Nombre del responsable" #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:155 #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:158 +#: ../../library/Class/AdminVar.php:159 msgid "Nom du site" msgstr "" @@ -12461,14 +12690,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:252 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:284 msgid "" "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)" msgstr "" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:251 #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:255 -#: ../../library/Class/AdminVar.php:282 +#: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:283 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom" msgstr "" @@ -12500,7 +12729,7 @@ msgstr "Número de etiquetas para visualizar" msgid "Nombre de traductions : %s" msgstr "Número de traducciones: %s" -#: ../../library/Class/AdminVar.php:186 +#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:187 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -12560,6 +12789,9 @@ msgstr "Nota" #: ../../library/Class/Codification.php:162 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:73 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:75 +#: ../../library/Class/Codification.php:136 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:82 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:84 msgid "Notes" msgstr "Notas" @@ -12660,6 +12892,7 @@ msgstr "Registros:" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:164 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:90 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:89 +#: ../../library/Class/Codification.php:233 msgid "Notices liées" msgstr "Registros vinculados" @@ -13003,6 +13236,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:126 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 #, fuzzy msgid "Onglets" msgstr "Pestañas y bloques" @@ -13134,12 +13368,14 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:113 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 msgid "Ouverture" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99 msgid "Ouvertures" msgstr "" @@ -13258,8 +13494,8 @@ msgstr "Página:" #: ../../library/Class/NoticeHtml.php:242 #: ../../library/Class/NoticeHtml.php:233 #: ../../library/Class/NoticeHtml.php:273 -#: ../../library/Class/NoticeHtml.php:143 ../../library/Class/NoticeHtml.php:91 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:143 +#: ../../library/Class/NoticeHtml.php:91 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "Paginación" @@ -13424,6 +13660,7 @@ msgstr "Número de participantes" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 msgid "Par ordre alphabétique" msgstr "" @@ -13439,6 +13676,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:81 #: ../../library/ZendAfi/Form/Configuration/FormationsWidget.php:78 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 msgid "Par ordre de sélection" msgstr "" @@ -13467,7 +13705,7 @@ msgstr "Copias de bloques de la propiedad" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:274 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:302 msgid "" "Paramètre permettant de choisir la langue des des ressources. La liste des " "codes disponibles se trouve à cette adresse http://help.orphea.com/43/" @@ -13478,6 +13716,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:4 #: ../../application/modules/admin/views/scripts/index/index.phtml:6 #: ../../application/modules/admin/views/scripts/index/index.phtml:9 +#: ../../application/modules/admin/views/scripts/index/index.phtml:1 msgid "Paramètres du site" msgstr "Configuración del sitio" @@ -13485,7 +13724,7 @@ msgstr "Configuración del sitio" #: ../../library/Class/AdminVar.php:219 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:247 +#: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Numilog\">Numilog</a>" @@ -13495,6 +13734,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:230 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:257 +#: ../../library/Class/AdminVar.php:258 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>" @@ -13509,7 +13749,8 @@ msgstr "" #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:245 msgid "Paramétrage CVS" msgstr "" @@ -13542,9 +13783,15 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:69 #: ../../application/modules/admin/views/scripts/index/index.phtml:65 +#: ../../application/modules/admin/views/scripts/index/index.phtml:41 msgid "Participez à la communauté" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:191 +#, fuzzy +msgid "Partout" +msgstr "todo" + #: ../../library/ZendAfi/Controller/Action.php:448 #: ../../library/ZendAfi/Controller/Action.php:460 #: ../../library/ZendAfi/Controller/Action.php:612 @@ -13570,13 +13817,13 @@ msgstr "Ninguna sesión programada" #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:295 -#: ../../library/Class/AdminVar.php:322 +#: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:323 msgid "Password du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:292 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:299 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:327 msgid "Password du portail fourni par Premier-Chapitre" msgstr "" @@ -13687,6 +13934,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/ZendAfi/Form/Admin/Library.php:143 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 msgid "Photo" msgstr "Foto" @@ -13720,6 +13968,7 @@ msgstr "" #: ../../library/Class/Codification.php:215 #: ../../library/Class/Codification.php:267 #: ../../library/Class/Codification.php:255 +#: ../../library/Class/Codification.php:229 msgid "Photos" msgstr "Pics" @@ -13924,7 +14173,7 @@ msgstr "Punto" #: ../../library/Class/Profil.php:33 ../../library/Class/Bib.php:71 #: ../../library/Class/AdminVar.php:338 ../../library/Class/Bib.php:70 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:366 msgid "Portail" msgstr "Portal" @@ -13935,6 +14184,7 @@ msgstr "Portal" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:190 #: ../../library/Class/AdminVar.php:182 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:195 +#: ../../library/Class/AdminVar.php:183 msgid "Position" msgstr "Posición" @@ -13945,6 +14195,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:178 #: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:181 +#: ../../library/Class/AdminVar.php:182 msgid "Position de la pagination en résultat de recherche" msgstr "" @@ -13991,7 +14242,7 @@ msgstr "Para activar su cuenta, gracias a hacer clic en el siguiente enlace:" #: ../../library/Class/Users.php:941 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:1015 ../../library/Class/Users.php:1045 #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1058 -#: ../../library/Class/Users.php:1092 +#: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1091 msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:" msgstr "Para activar su cuenta, gracias a hacer clic en el siguiente enlace:" @@ -14109,6 +14360,7 @@ msgstr "" #: ../../library/Class/Codification.php:184 #: ../../library/Class/Codification.php:172 +#: ../../library/Class/Codification.php:146 msgid "Prix" msgstr "" @@ -14149,6 +14401,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:171 #: ../../library/Class/AdminVar.php:174 ../../library/Class/AdminVar.php:174 +#: ../../library/Class/AdminVar.php:175 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -14253,6 +14506,21 @@ msgstr "Extender" msgid "Proposer des tags pour cette notice" msgstr "Indican las etiquetas de este manual" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:46 +#, fuzzy +msgid "Proposer la sélection de bibliothèques" +msgstr "Selección de bibliotecas" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:52 +#, fuzzy +msgid "Proposer la sélection de sites" +msgstr "Selección del Sitio" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:59 +#, fuzzy +msgid "Proposer la sélection de types de doc" +msgstr "Método de selección de los usuarios" + #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:62 #, fuzzy msgid "Proposer un fil RSS" @@ -14445,7 +14713,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:300 -#: ../../library/Class/AdminVar.php:204 +#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:205 msgid "" "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par " "défaut 30 jours)." @@ -14671,6 +14939,7 @@ msgstr "RSS" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:137 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:157 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:158 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:226 msgid "Racine" msgstr "" @@ -14736,6 +15005,7 @@ msgstr "Adjuntar un campo personalizado" #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:247 #: ../../application/modules/telephone/controllers/RechercheController.php:66 +#: ../../library/Class/Codification.php:221 msgid "Rebondir dans le catalogue" msgstr "Rebotando en el catálogo" @@ -14754,6 +15024,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 #: ../../library/Class/User/SearchCriteria.php:75 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:118 msgid "Recherche" msgstr "Investigación" @@ -14763,6 +15034,8 @@ msgstr "Buscar OAI" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:52 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:53 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:54 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:55 msgid "Recherche avancée" msgstr "Búsqueda Avanzada" @@ -14924,7 +15197,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:189 #: ../../library/Class/NoticeHtml.php:194 #: ../../library/Class/NoticeHtml.php:185 -#: ../../library/Class/NoticeHtml.php:225 ../../library/Class/NoticeHtml.php:95 +#: ../../library/Class/NoticeHtml.php:225 +#: ../../library/Class/NoticeHtml.php:95 msgid "Refermer" msgstr "Cerrar" @@ -14934,6 +15208,7 @@ msgid "Rejeter les périodiques" msgstr "Recursos digitales" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 msgid "Rejetée" msgstr "" @@ -14973,11 +15248,13 @@ msgid "Reload" msgstr "Actualizar" #: ../../application/modules/admin/controllers/IndexController.php:41 +#: ../../application/modules/admin/controllers/IndexController.php:47 msgid "Remettre le site en ligne" msgstr "" #: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:164 #: ../../library/Class/AdminVar.php:167 ../../library/Class/AdminVar.php:167 +#: ../../library/Class/AdminVar.php:168 #, php-format msgid "" "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous " @@ -15011,6 +15288,7 @@ msgid "Rendre le livre emprunté" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:40 +#: ../../application/modules/admin/controllers/IndexController.php:46 msgid "Rendre le site indisponible" msgstr "" @@ -15108,6 +15386,7 @@ msgstr "Recursos OAI" #: ../../library/Class/Codification.php:217 #: ../../library/Class/Codification.php:269 #: ../../library/Class/Codification.php:257 +#: ../../library/Class/Codification.php:231 msgid "Ressources numériques" msgstr "Recursos digitales" @@ -15116,6 +15395,11 @@ msgstr "Recursos digitales" msgid "Restreindre la période d'ouverture" msgstr "Añadir una playa abierta" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:183 +#, fuzzy +msgid "Restreindre à " +msgstr "Limitado a:" + #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:167 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:144 @@ -15239,6 +15523,7 @@ msgstr "Volver al nivel superior" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:43 #: ../../application/modules/admin/views/scripts/sansMenuGauche.phtml:17 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:49 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:47 msgid "Retour au site" msgstr "Volver al sitio" @@ -15665,11 +15950,13 @@ msgstr "Resultados siguientes" #: ../../library/Class/NoticeHtml.php:155 #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:139 -#: ../../library/Class/NoticeHtml.php:103 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:103 +#: ../../library/Class/NoticeHtml.php:94 #: ../../library/Class/Codification.php:176 #: ../../application/modules/telephone/controllers/RechercheController.php:33 #: ../../library/Class/Codification.php:164 #: ../../application/modules/telephone/controllers/RechercheController.php:64 +#: ../../library/Class/Codification.php:138 msgid "Résumé" msgstr "Resumen" @@ -15703,6 +15990,7 @@ msgstr "Resumen de la página" #: ../../library/Class/Codification.php:206 #: ../../library/Class/Codification.php:258 #: ../../library/Class/Codification.php:246 +#: ../../library/Class/Codification.php:220 msgid "Résumés" msgstr "Resúmenes" @@ -15767,6 +16055,7 @@ msgid "S'inscrire à une formation" msgstr "Registrarse para la formación" #: ../../application/modules/admin/views/scripts/index/index.phtml:73 +#: ../../application/modules/admin/views/scripts/index/index.phtml:49 msgid "Salle de discussion #Bokeh" msgstr "" @@ -15808,6 +16097,7 @@ msgstr "Registrarse" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:33 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:56 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:62 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:60 msgid "Se déconnecter" msgstr "Desconectar" @@ -15869,6 +16159,7 @@ msgstr "Sector" #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:143 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:215 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:217 +#: ../../library/Class/Codification.php:139 msgid "Section" msgstr "Sección" @@ -15919,7 +16210,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:247 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:251 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 msgid "Serveur FTP de diffusion des offres PNB Dilicom" msgstr "" @@ -16009,7 +16300,7 @@ msgid "Session non trouvée" msgstr "Obra que no se encuentra" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:269 -#: ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:297 msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "" @@ -16026,6 +16317,7 @@ msgstr "Debe ser mayor que 'fieldToCompare %%'" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1016 #: ../../library/Class/Users.php:1046 ../../library/Class/Users.php:1064 #: ../../library/Class/Users.php:1059 ../../library/Class/Users.php:1093 +#: ../../library/Class/Users.php:1092 msgid "" "Si vous n'êtes pas à l'origine de cette demande d'inscription, merci de ne " "pas tenir compte de cet e-mail, et l'inscription ne sera pas activée." @@ -16074,6 +16366,10 @@ msgstr "Firma" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:218 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:137 #: ../../library/ZendAfi/View/Helper/BibView.php:152 +#: ../../library/Class/Codification.php:141 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:63 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:65 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:272 msgid "Site" msgstr "Sitio" @@ -16097,6 +16393,11 @@ msgstr "" msgid "Site : %s" msgstr "Sitio: %s" +#: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#, fuzzy +msgid "Site communautaire" +msgstr "TÃtulo o comentario requerida" + #: ../../application/modules/opac/views/scripts/footer.phtml:36 #: ../../library/ZendAfi/View/Helper/TagCredits.php:28 msgid "Site communautaire du projet Bokeh" @@ -16442,6 +16743,7 @@ msgstr "Viendo el" #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:127 #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:44 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:33 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:30 msgid "Style de boite" msgstr "Cuadro de estilo" @@ -16572,6 +16874,7 @@ msgstr "Siguiente" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:52 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 +#: ../../library/Class/Codification.php:134 msgid "Sujet" msgstr "Tema" @@ -16589,6 +16892,7 @@ msgstr "Tema" #: ../../library/Class/NoticeHtml.php:105 #: ../../library/Class/Codification.php:172 #: ../../library/Class/Codification.php:160 +#: ../../library/Class/Codification.php:134 msgid "Sujet(s)" msgstr "Tema (s)" @@ -16810,6 +17114,11 @@ msgstr "Sistema" msgid "Sécurité" msgstr "Seguridad" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:111 +#, fuzzy +msgid "Sélection dans une liste déroulante" +msgstr "Selección del Sitio" + #: ../../application/modules/opac/views/scripts/bib/selection.phtml:2 msgid "Sélection de bibliothèques" msgstr "Selección de bibliotecas" @@ -16845,6 +17154,11 @@ msgstr "Selección del Sitio" msgid "Sélection multiple d'articles" msgstr "Selección del Sitio" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:112 +#, fuzzy +msgid "Sélection multiple par cases à cocher" +msgstr "Selección del Sitio" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 msgid "Sélectionner la bibliothèque" msgstr "" @@ -16906,6 +17220,7 @@ msgstr "" #: ../../library/Class/Codification.php:168 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:121 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:119 +#: ../../library/Class/Codification.php:142 msgid "Tag" msgstr "Tag" @@ -16916,6 +17231,7 @@ msgstr "Tag" #: ../../library/Class/Codification.php:143 #: ../../library/Class/Codification.php:180 #: ../../library/Class/Codification.php:168 +#: ../../library/Class/Codification.php:142 msgid "Tag(s)" msgstr "Tag (s)" @@ -17018,6 +17334,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/ZendAfi/Form/Admin/Library.php:101 #: ../../library/ZendAfi/Form/Admin/Library.php:185 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 msgid "Territoire" msgstr "Territorio" @@ -17153,6 +17470,7 @@ msgstr "Error de configuración" #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:176 #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:179 +#: ../../library/Class/AdminVar.php:180 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 " @@ -17161,6 +17479,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:174 #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:177 +#: ../../library/Class/AdminVar.php:178 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 " @@ -17332,6 +17651,10 @@ msgstr "Tema" #: ../../library/ZendAfi/Form/Admin/Newsletter.php:31 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:38 #: ../../library/ZendAfi/Form/Admin/News.php:55 +#: ../../library/Class/Codification.php:131 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:39 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:39 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:42 msgid "Titre" msgstr "TÃtulo" @@ -17434,6 +17757,7 @@ msgstr "" #: ../../library/Class/Codification.php:132 #: ../../library/Class/Codification.php:169 #: ../../library/Class/Codification.php:157 +#: ../../library/Class/Codification.php:131 msgid "Titre(s)" msgstr "TÃtulo (s)" @@ -17457,6 +17781,7 @@ msgstr "Valores" #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38 #: ../../library/Class/User/SearchCriteria.php:151 #: ../../library/ZendAfi/View/Helper/TreeView.php:87 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:99 msgid "Tous" msgstr "Todos" @@ -17620,10 +17945,19 @@ msgstr "Traducciones" msgid "Traductions:" msgstr "Traducciones:" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:60 +#, fuzzy +msgid "Traitement en cours depuis le" +msgstr "Cargando" + #: ../../library/Class/Cosmogramme/Generator.php:42 msgid "Traitement terminé." msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:76 +msgid "Traitements d'intégration en retard de" +msgstr "" + #: ../../library/Class/Upload.php:268 ../../library/Class/Upload.php:291 msgid "Transfert impossible, ce formulaire est mal configuré" msgstr "No se puede transferir esta forma está mal configurado" @@ -17643,6 +17977,11 @@ msgstr "No se puede transferir esta forma está mal configurado" msgid "Tri" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:89 +#, fuzzy +msgid "Tri du résultat de recherche" +msgstr "Mostrar resultados de búsqueda" + #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:89 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:95 #: ../../library/ZendAfi/View/Helper/TagTriRecherche.php:35 @@ -17682,14 +18021,14 @@ msgid "Type d'interface" msgstr "Interfaz" #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:262 -#: ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:290 #, fuzzy msgid "Type de SSO OneDTouch" msgstr "Tipo de doc." #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:277 #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:284 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:312 msgid "Type de SSO lekiosk.com" msgstr "" @@ -17760,6 +18099,12 @@ msgstr "Tipo de documento: %s" #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:46 #: ../../library/Class/CriteresRecherche.php:140 #: ../../library/Class/CriteresRecherche.php:141 +#: ../../library/Class/Codification.php:140 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:67 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:69 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:98 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:132 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:139 msgid "Type de document" msgstr "Tipo de documento" @@ -17872,6 +18217,7 @@ msgstr "Tipos de campos personalizados" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:310 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:171 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:168 +#: ../../library/Class/Codification.php:140 msgid "Types de documents" msgstr "Tipos de documentos" @@ -17989,6 +18335,7 @@ msgstr "Descargue la playlist (VLC, Winamp)" #: ../../library/ZendAfi/Form/Admin/Library.php:74 #: ../../application/modules/opac/controllers/AbonneController.php:457 #: ../../application/modules/opac/controllers/AbonneController.php:459 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 msgid "Téléphone" msgstr "Teléfono" @@ -18010,6 +18357,7 @@ msgstr "UNIMARC" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:11 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55 msgid "URL" msgstr "" @@ -18029,6 +18377,7 @@ msgstr "Wikipedia URL del autor" #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:133 #: ../../library/Class/AdminVar.php:136 ../../library/Class/AdminVar.php:136 +#: ../../library/Class/AdminVar.php:137 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "" @@ -18058,6 +18407,7 @@ msgstr "URL Miniatura" #: ../../library/Class/AdminVar.php:131 ../../library/Class/AdminVar.php:129 #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:132 +#: ../../library/Class/AdminVar.php:133 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "" @@ -18150,6 +18500,7 @@ msgstr "" #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1073 #: ../../library/Class/Users.php:1103 ../../library/Class/Users.php:1121 #: ../../library/Class/Users.php:1116 ../../library/Class/Users.php:1150 +#: ../../library/Class/Users.php:1149 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion." msgstr "" "Un correo electrónico ha sido enviado a usted con su nombre de usuario." @@ -18283,35 +18634,37 @@ msgstr "Url Activación: %s" #: ../../library/Class/AdminVar.php:140 ../../library/Class/AdminVar.php:138 #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:141 +#: ../../library/Class/AdminVar.php:142 msgid "Url d'import d'un agenda TYPO3" msgstr "" #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:156 #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:159 +#: ../../library/Class/AdminVar.php:160 msgid "Url de recherche" msgstr "" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:302 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:305 -#: ../../library/Class/AdminVar.php:209 +#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:210 msgid "Url du connecteur Le Social" msgstr "" #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:300 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:303 -#: ../../library/Class/AdminVar.php:207 +#: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:208 msgid "Url du proxy Redmine" msgstr "" #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:244 #: ../../library/Class/AdminVar.php:248 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 msgid "Url du serveur PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:206 +#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:207 msgid "Url du serveur redmine" msgstr "" @@ -18337,7 +18690,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:248 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:252 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom" msgstr "" @@ -18495,6 +18848,7 @@ msgid "Variable" msgstr "Variable" #: ../../application/modules/admin/controllers/IndexController.php:77 +#: ../../application/modules/admin/controllers/IndexController.php:83 #, php-format msgid "Variable %s sauvegardée" msgstr "" @@ -18527,7 +18881,8 @@ msgstr "" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:263 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:290 -#: ../../library/Class/AdminVar.php:317 +#: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:291 +#: ../../library/Class/AdminVar.php:318 msgid "Version" msgstr "Version" @@ -18538,7 +18893,7 @@ msgstr "Version" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:317 msgid "Version de Kidilangues." msgstr "" @@ -18554,10 +18909,12 @@ msgstr "Por favor, seleccione un registro" msgid "Veuillez choisir une notice" msgstr "Por favor, seleccione un registro" -#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:123 +#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:123 #: ../../library/Class/NoticeHtml.php:177 #: ../../library/Class/NoticeHtml.php:182 -#: ../../library/Class/NoticeHtml.php:173 ../../library/Class/NoticeHtml.php:88 +#: ../../library/Class/NoticeHtml.php:173 +#: ../../library/Class/NoticeHtml.php:88 #: ../../library/Class/NoticeHtml.php:159 #: ../../library/Class/NoticeHtml.php:212 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:64 @@ -18708,6 +19065,7 @@ msgstr "Miniaturas" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../application/modules/opac/controllers/AbonneController.php:455 #: ../../application/modules/opac/controllers/AbonneController.php:457 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 msgid "Ville" msgstr "Ciudad" @@ -19086,7 +19444,7 @@ msgstr "Revisión" #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:258 -#: ../../library/Class/AdminVar.php:285 +#: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:286 msgid "" "Votre compte sera mis à jour dans un délai de 15 minutes après le retour " "anticipé du document." @@ -19129,7 +19487,7 @@ msgstr "Su nombre de usuario: %s" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1064 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1112 ../../library/Class/Users.php:1107 -#: ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1140 #, php-format msgid "Votre identifiant : %s\n" msgstr "Su nombre de usuario: %s\n" @@ -19180,7 +19538,7 @@ msgstr "Contraseña: %s" #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1039 #: ../../library/Class/Users.php:1065 ../../library/Class/Users.php:1095 #: ../../library/Class/Users.php:1113 ../../library/Class/Users.php:1108 -#: ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1141 #, php-format msgid "Votre mot de passe : %s\n" msgstr "Contraseña: %s\n" @@ -19401,7 +19759,7 @@ msgstr "Usted ha hecho una solicitud de registro en el portal." #: ../../library/Class/Users.php:940 ../../library/Class/Users.php:988 #: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1062 ../../library/Class/Users.php:1057 -#: ../../library/Class/Users.php:1091 +#: ../../library/Class/Users.php:1091 ../../library/Class/Users.php:1090 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "Usted ha hecho una solicitud de registro en el portal:" @@ -19418,6 +19776,7 @@ msgstr "Usted ha hecho una solicitud de inclusión en el boletÃn de noticias:" #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1111 #: ../../library/Class/Users.php:1106 ../../library/Class/Users.php:1140 +#: ../../library/Class/Users.php:1139 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "Ha solicitado una contraseña en el portal." @@ -19441,6 +19800,7 @@ msgstr "" #: ../../library/Class/Users.php:921 ../../library/Class/Users.php:941 #: ../../library/Class/Users.php:971 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:984 ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1017 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "Debe completar el campo 'id'" @@ -19453,6 +19813,7 @@ msgstr "Debe completar el campo 'id'" #: ../../library/Class/Users.php:922 ../../library/Class/Users.php:942 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:985 ../../library/Class/Users.php:1019 +#: ../../library/Class/Users.php:1018 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "Debe completar el campo 'Contraseña'" @@ -19541,7 +19902,7 @@ msgstr "" #: ../../library/Class/Users.php:904 ../../library/Class/Users.php:952 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:1002 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1015 -#: ../../library/Class/Users.php:1049 +#: ../../library/Class/Users.php:1049 ../../library/Class/Users.php:1048 msgid "Vous devez fournir une adresse mail valide" msgstr "Usted debe proporcionar una dirección de correo electrónico válida" @@ -19575,7 +19936,7 @@ msgstr "Debe introducir una contraseña" #: ../../library/Class/Users.php:907 ../../library/Class/Users.php:955 #: ../../library/Class/Users.php:975 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1018 -#: ../../library/Class/Users.php:1052 +#: ../../library/Class/Users.php:1052 ../../library/Class/Users.php:1051 msgid "Vous devez saisir un numéro de téléphone" msgstr "Debe ingresar un número de teléfono" @@ -19623,6 +19984,7 @@ msgstr "Debe seleccionar una foto haciendo clic en el botón Examinar" #: ../../library/Class/Users.php:1216 ../../library/Class/Users.php:1242 #: ../../library/Class/Users.php:1281 ../../library/Class/Users.php:1299 #: ../../library/Class/Users.php:1294 ../../library/Class/Users.php:1328 +#: ../../library/Class/Users.php:1327 msgid "" "Vous devez vous connecter en tant qu'abonné de la bibliothèque pour obtenir " "plus d'informations." @@ -19849,7 +20211,7 @@ msgstr "Usted no tiene permiso para realizar la capacitación" #: ../../library/Class/Users.php:900 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:968 ../../library/Class/Users.php:998 #: ../../library/Class/Users.php:1016 ../../library/Class/Users.php:1011 -#: ../../library/Class/Users.php:1045 +#: ../../library/Class/Users.php:1045 ../../library/Class/Users.php:1044 msgid "Vous n'avez pas les droits suffisants pour diriger une formation" msgstr "Usted no tiene permiso para realizar la capacitación" @@ -19859,7 +20221,7 @@ msgstr "Usted no tiene permiso para realizar la capacitación" #: ../../library/Class/Users.php:897 ../../library/Class/Users.php:945 #: ../../library/Class/Users.php:965 ../../library/Class/Users.php:995 #: ../../library/Class/Users.php:1013 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1042 +#: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1041 msgid "Vous n'avez pas les droits suffisants pour suivre une formation" msgstr "Usted no tiene permiso para asistir a la capacitación" @@ -20028,11 +20390,13 @@ msgid "Vérification des prêts rendus de manière anticipée" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 msgid "Vérifiée" msgstr "" #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:162 #: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:165 +#: ../../library/Class/AdminVar.php:166 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "" @@ -20040,6 +20404,10 @@ msgstr "" msgid "Web" msgstr "Web" +#: ../../application/modules/admin/views/scripts/index/index.phtml:45 +msgid "Wiki Bokeh" +msgstr "" + #: ../../library/Class/IntProfilDonnees.php:41 #: ../../library/Class/IntProfilDonnees.php:51 msgid "Windows ANSI" @@ -20190,6 +20558,7 @@ msgstr "la" #: ../../application/modules/admin/views/scripts/accueil/calendrier.phtml:93 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:86 msgid "aucun" msgstr "no" @@ -20543,6 +20912,8 @@ msgstr "y" #: ../../library/ZendAfi/Form/SuggestionAchat.php:27 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:36 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:40 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:40 msgid "ex: Harry Potter à l'école des sorciers" msgstr "ex: Harry Potter y la piedra filosofal" @@ -20706,8 +21077,8 @@ msgstr "Desde %s para %s" msgid "jusqu'à " msgstr "a" -#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:179 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:179 +#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:180 #, fuzzy, php-format msgid "le %s" msgstr " %s" @@ -21382,6 +21753,11 @@ msgstr "" msgid "ville" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:12 +#, fuzzy +msgid "» Modifier «" +msgstr "Cambiar" + #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:94 msgid "À la connextion : basculer automatiquement sur le profil" msgstr "" @@ -21420,6 +21796,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/Service.php:226 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:56 +#: ../../library/Class/WebService/SIGB/Nanook/Service.php:228 msgid "Échec de l'authentification par le webservice" msgstr "" @@ -21427,6 +21804,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:97 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:129 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134 #, php-format msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\"" msgstr "" @@ -21448,12 +21826,14 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:86 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:118 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123 #, php-format msgid "Échec de la suggestion, le webservice a répondu \"%s\"" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:83 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:115 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120 msgid "Échec de la suggestion, une erreur inconnue est survenue." msgstr "" diff --git a/library/translation/fr.mo b/library/translation/fr.mo index 8169997f3b193e62e5ae6283f7fce1dd7a178ed3..1e7fa10abb1b10fd7a0ead7bd1477582e5c87ad0 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 8a6df3d08d213867a228522cd197363e5f958d7b..5a2dd54d90f1dc65c46f34628e6f3746739767eb 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: 2016-11-07 15:21+0100\n" +"POT-Creation-Date: 2016-11-21 12:10+0100\n" "PO-Revision-Date: 2011-03-16 10:45+0100\n" "Last-Translator: Laurent Laffont <llaffont@afi-sa.fr>\n" "Language-Team: French\n" @@ -268,6 +268,11 @@ msgstr "" msgid " sur " msgstr "" +#: ../../application/modules/admin/controllers/IndexController.php:25 +#, php-format +msgid " version %s" +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagArticleEvent.php:56 #, php-format msgid " à %s" @@ -531,6 +536,11 @@ msgstr "" msgid "%s fichier(s) à traiter dans %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:77 +#, php-format +msgid "%s jours" +msgstr "" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:136 #, php-format msgid "%s le panier %s contient %d document" @@ -1024,12 +1034,12 @@ msgid "AFI-Multimédia n'est pas activé" msgstr "" #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:212 +#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:213 msgid "API" msgstr "" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:211 +#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:212 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -1121,6 +1131,7 @@ msgid "Abonnés de la lettre: %s" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 msgid "Acceptée" msgstr "" @@ -1158,6 +1169,7 @@ msgstr "" #: ../../library/Class/MoteurRecherche.php:594 #: ../../library/Class/MoteurRecherche.php:599 #: ../../library/Class/MoteurRecherche.php:605 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:41 msgid "Accueil" msgstr "" @@ -1275,44 +1287,49 @@ msgstr "" #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:153 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:156 +#: ../../library/Class/AdminVar.php:157 msgid "Activation de la disponibilite dans le resultat de recherche." msgstr "" #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:161 #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:164 +#: ../../library/Class/AdminVar.php:165 msgid "Activation de la navigation collaborative" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:304 msgid "Activation de la ressource numérique PlanetNemo" msgstr "" #: ../../library/Class/AdminVar.php:137 ../../library/Class/AdminVar.php:135 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:138 +#: ../../library/Class/AdminVar.php:139 msgid "Activation des boîtes dans les menus" msgstr "" #: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:166 #: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:169 +#: ../../library/Class/AdminVar.php:170 msgid "Activation des fonctions avancées du téléphone" msgstr "" #: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:184 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:187 -#: ../../library/Class/AdminVar.php:188 +#: ../../library/Class/AdminVar.php:188 ../../library/Class/AdminVar.php:189 msgid "Activation des formulaires" msgstr "" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:240 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:271 +#: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:272 msgid "Activation du PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:169 #: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:172 +#: ../../library/Class/AdminVar.php:173 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1340,7 +1357,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:203 #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:206 -#: ../../library/Class/AdminVar.php:234 +#: ../../library/Class/AdminVar.php:234 ../../library/Class/AdminVar.php:235 msgid "Activer ou désactiver la bibliothèque numérique" msgstr "" @@ -1350,6 +1367,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:129 ../../library/Class/AdminVar.php:127 #: ../../library/Class/AdminVar.php:130 ../../library/Class/AdminVar.php:130 +#: ../../library/Class/AdminVar.php:131 msgid "Activer ou désactiver le module formation" msgstr "" @@ -1450,6 +1468,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Library.php:172 #: ../../application/modules/opac/controllers/AbonneController.php:453 #: ../../application/modules/opac/controllers/AbonneController.php:455 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 msgid "Adresse" msgstr "" @@ -1480,36 +1499,37 @@ msgstr "" #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:257 #: ../../library/Class/AdminVar.php:261 ../../library/Class/AdminVar.php:261 -#: ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 msgid "Adresse du serveur OAI 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:294 +#: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:295 msgid "Adresse du serveur OAI Cité de la Musique" msgstr "" #: ../../library/Class/AdminVar.php:221 ../../library/Class/AdminVar.php:219 #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:222 -#: ../../library/Class/AdminVar.php:249 +#: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:250 msgid "Adresse du serveur OAI Cyberlibris" msgstr "" #: ../../library/Class/AdminVar.php:262 ../../library/Class/AdminVar.php:264 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:271 -#: ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:299 msgid "Adresse du serveur Orphea" msgstr "" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:278 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 msgid "Adresse du serveur de la ressource numérique Orthodidacte" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:103 msgid "Adresse mail" msgstr "" @@ -1535,6 +1555,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:153 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:189 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:272 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:116 msgid "Affichage" msgstr "" @@ -1709,6 +1730,10 @@ msgstr "" msgid "Afficher la notice" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:84 +msgid "Afficher le lien recherche avancée" +msgstr "" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:203 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:259 @@ -2000,6 +2025,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:159 #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:162 +#: ../../library/Class/AdminVar.php:163 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "" @@ -2416,6 +2442,7 @@ msgstr "" #: ../../application/modules/telephone/views/scripts/recherche/viewnotice.phtml:16 #: ../../library/Class/Codification.php:173 #: ../../library/Class/Codification.php:161 +#: ../../library/Class/Codification.php:135 msgid "Année" msgstr "" @@ -2447,6 +2474,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:127 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/Class/CriteresRecherche.php:140 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 msgid "Année de publication" msgstr "" @@ -2526,6 +2554,7 @@ msgstr "" #: ../../library/Class/Codification.php:216 #: ../../library/Class/Codification.php:268 #: ../../library/Class/Codification.php:256 +#: ../../library/Class/Codification.php:230 msgid "Archives vidéo" msgstr "" @@ -2620,6 +2649,7 @@ msgstr "" #: ../../application/modules/admin/controllers/RedmineController.php:26 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:34 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:31 msgid "Assistance" msgstr "" @@ -2668,8 +2698,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:228 #: ../../library/Class/NoticeHtml.php:219 #: ../../library/Class/NoticeHtml.php:259 -#: ../../library/Class/NoticeHtml.php:129 ../../library/Class/NoticeHtml.php:77 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/Class/NoticeHtml.php:129 +#: ../../library/Class/NoticeHtml.php:77 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "" @@ -2966,7 +2996,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:204 #: ../../library/Class/NoticeHtml.php:195 #: ../../library/Class/NoticeHtml.php:235 -#: ../../library/Class/NoticeHtml.php:105 ../../library/Class/NoticeHtml.php:61 +#: ../../library/Class/NoticeHtml.php:105 +#: ../../library/Class/NoticeHtml.php:61 #: ../../library/ZendAfi/View/Helper/Biographie.php:59 #: ../../library/Class/NoticeHtml.php:50 #: ../../library/ZendAfi/View/Helper/Biographie.php:58 @@ -3145,6 +3176,9 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:138 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/ZendAfi/Form/Admin/News.php:61 +#: ../../library/Class/Codification.php:123 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:45 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:45 msgid "Auteur" msgstr "" @@ -3186,6 +3220,7 @@ msgstr "" #: ../../library/Class/Codification.php:124 #: ../../library/Class/Codification.php:161 #: ../../library/Class/Codification.php:149 +#: ../../library/Class/Codification.php:123 msgid "Auteur(s)" msgstr "" @@ -3385,6 +3420,7 @@ msgstr "" #: ../../library/Class/Codification.php:218 #: ../../library/Class/Codification.php:270 #: ../../library/Class/Codification.php:258 +#: ../../library/Class/Codification.php:232 msgid "Babelthèque" msgstr "" @@ -3406,6 +3442,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:47 #: ../../library/Class/Codification.php:254 #: ../../application/modules/telephone/controllers/RechercheController.php:60 +#: ../../library/Class/Codification.php:228 msgid "Bande-annonce" msgstr "" @@ -3438,6 +3475,10 @@ msgstr "" msgid "Barre verticale" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:94 +msgid "Basculer automatiquement sur le profil" +msgstr "" + #: ../../library/ZendAfi/Form/Redmine/Issue.php:211 msgid "Base de données : " msgstr "" @@ -3563,6 +3604,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:164 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:183 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:50 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque" msgstr "" @@ -3620,6 +3662,7 @@ msgstr "" #: ../../library/Class/Codification.php:125 #: ../../library/Class/Codification.php:162 #: ../../library/Class/Codification.php:150 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque(s)" msgstr "" @@ -3697,6 +3740,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:36 #: ../../library/Class/Codification.php:248 #: ../../application/modules/telephone/controllers/RechercheController.php:67 +#: ../../library/Class/Codification.php:222 msgid "Biographie de l'auteur" msgstr "" @@ -3799,6 +3843,7 @@ msgstr "" #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1013 #: ../../library/Class/Users.php:1043 ../../library/Class/Users.php:1061 #: ../../library/Class/Users.php:1056 ../../library/Class/Users.php:1090 +#: ../../library/Class/Users.php:1089 msgid "Bonjour," msgstr "" @@ -3825,6 +3870,7 @@ msgstr "" #: ../../library/Class/Users.php:1040 ../../library/Class/Users.php:1066 #: ../../library/Class/Users.php:1096 ../../library/Class/Users.php:1114 #: ../../library/Class/Users.php:1109 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1142 msgid "Bonne navigation sur le portail" msgstr "" @@ -3922,6 +3968,7 @@ msgstr "" #: ../../application/modules/opac/controllers/BibController.php:244 #: ../../application/modules/opac/controllers/BibController.php:238 +#: ../../application/modules/opac/controllers/BibController.php:256 msgid "Carte des bibliothèques" msgstr "" @@ -4052,6 +4099,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:215 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:235 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:236 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:304 msgid "Catégories d'articles" msgstr "" @@ -4131,6 +4179,7 @@ msgstr "" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre d'intérêt" msgstr "" @@ -4141,6 +4190,7 @@ msgstr "" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre(s) d'intérêt" msgstr "" @@ -4171,6 +4221,7 @@ msgstr "" #: ../../library/Class/Users.php:970 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1067 +#: ../../library/Class/Users.php:1066 msgid "Cet identifiant existe déjà ." msgstr "" @@ -4383,7 +4434,8 @@ msgid "Chargement" msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:131 -#: ../../library/Class/NoticeHtml.php:81 ../../library/Class/NoticeHtml.php:122 +#: ../../library/Class/NoticeHtml.php:81 +#: ../../library/Class/NoticeHtml.php:122 #: ../../library/Class/NoticeHtml.php:176 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:159 #: ../../library/Class/NoticeHtml.php:181 @@ -4391,7 +4443,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:183 #: ../../library/Class/NoticeHtml.php:172 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:182 -#: ../../library/Class/NoticeHtml.php:87 ../../library/Class/NoticeHtml.php:158 +#: ../../library/Class/NoticeHtml.php:87 +#: ../../library/Class/NoticeHtml.php:158 #: ../../library/Class/NoticeHtml.php:211 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:199 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:63 @@ -4401,7 +4454,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:175 #: ../../library/Class/NoticeHtml.php:48 #: ../../library/ZendAfi/View/Helper/ListeNotices/Accordeon.php:56 -#: ../../library/Class/NoticeHtml.php:42 ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 msgid "Chargement en cours" msgstr "" @@ -4414,6 +4468,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:160 #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:163 +#: ../../library/Class/AdminVar.php:164 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "" @@ -4424,6 +4479,7 @@ msgid "Chercher dans le menu " msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:70 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:72 msgid "Chercher dans les bibliothèques de votre choix" msgstr "" @@ -4579,13 +4635,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:223 #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:226 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 msgid "Clé ARTE VOD" msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:224 #: ../../library/Class/AdminVar.php:227 ../../library/Class/AdminVar.php:227 -#: ../../library/Class/AdminVar.php:254 +#: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:255 msgid "Clé ARTE VOD Single Sign-On" msgstr "" @@ -4595,7 +4651,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:285 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292 -#: ../../library/Class/AdminVar.php:319 +#: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:320 msgid "" "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par " "Kidilangues." @@ -4603,7 +4659,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:286 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:293 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:321 msgid "" "Clé d'identification Kidilangues pour le portail. Cette clé doit être " "fournie par Kidilangues." @@ -4611,7 +4667,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:255 #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:259 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:287 msgid "" "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie " "par MyCOW.EU. Elle active la ressource numérique dans le portail." @@ -4619,7 +4675,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:325 msgid "" "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit " "être fournie par Premier-Chapitre." @@ -4627,7 +4683,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:236 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:240 -#: ../../library/Class/AdminVar.php:267 +#: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 msgid "Clé de sécurité Vodeclic" msgstr "" @@ -4637,11 +4693,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:130 #: ../../library/Class/AdminVar.php:133 ../../library/Class/AdminVar.php:133 +#: ../../library/Class/AdminVar.php:134 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "" #: ../../library/Class/AdminVar.php:134 ../../library/Class/AdminVar.php:132 #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:135 +#: ../../library/Class/AdminVar.php:136 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "" @@ -4677,12 +4735,18 @@ msgstr "" msgid "Code postal" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:46 +msgid "Code source" +msgstr "" + #: ../../library/ZendAfi/Form/SuggestionAchat.php:42 #: ../../library/ZendAfi/Form/SuggestionAchat.php:40 #: ../../library/ZendAfi/Form/SuggestionAchat.php:44 #: ../../library/ZendAfi/Form/SuggestionAchat.php:34 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:47 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:47 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:51 msgid "Code-barres / ISBN" msgstr "" @@ -4694,6 +4758,7 @@ msgstr "" #: ../../library/Class/Codification.php:133 #: ../../library/Class/Codification.php:170 #: ../../library/Class/Codification.php:158 +#: ../../library/Class/Codification.php:132 msgid "Collation" msgstr "" @@ -4716,6 +4781,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:55 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:57 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59 +#: ../../library/Class/Codification.php:125 msgid "Collection" msgstr "" @@ -4727,6 +4793,7 @@ msgstr "" #: ../../library/Class/Codification.php:126 #: ../../library/Class/Codification.php:163 #: ../../library/Class/Codification.php:151 +#: ../../library/Class/Codification.php:125 msgid "Collection(s)" msgstr "" @@ -4746,6 +4813,7 @@ msgid "Colonnes à afficher" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 msgid "Commandée" msgstr "" @@ -5118,7 +5186,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:194 #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:197 -#: ../../library/Class/AdminVar.php:198 +#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:199 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -5127,7 +5195,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:195 #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:198 -#: ../../library/Class/AdminVar.php:199 +#: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:200 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" @@ -5135,7 +5203,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:196 #: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:199 -#: ../../library/Class/AdminVar.php:200 +#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:201 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -5151,12 +5219,13 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Analytics.php:71 #: ../../library/Class/Codification.php:260 +#: ../../library/Class/Codification.php:234 msgid "Contient" msgstr "" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:243 #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:274 ../../library/Class/AdminVar.php:275 msgid "Contracteur du PNB Dilicom" msgstr "" @@ -5327,6 +5396,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:32 #: ../../library/Class/Codification.php:244 #: ../../application/modules/telephone/controllers/RechercheController.php:63 +#: ../../library/Class/Codification.php:218 msgid "Critiques" msgstr "" @@ -5387,6 +5457,10 @@ msgstr "" msgid "Critères généraux" msgstr "" +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:316 +msgid "Créateur" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:53 msgid "Création / nouveauté" msgstr "" @@ -5578,6 +5652,10 @@ msgstr "" msgid "Date de limite d'inscription: " msgstr "" +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:315 +msgid "Date de mise à jour" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/User.php:149 #: ../../library/ZendAfi/Form/Admin/User.php:159 #: ../../library/ZendAfi/Form/PreRegistration.php:46 @@ -5615,9 +5693,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:158 #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:161 +#: ../../library/Class/AdminVar.php:162 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" +#: ../../library/Class/AdminVar.php:129 +msgid "Date du dernier vidage manuel du cache" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Date nouveaté" msgstr "" @@ -5727,6 +5810,10 @@ msgstr "" msgid "Demandeur" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:52 +msgid "Dernier traitement d'intégration effectué le" +msgstr "" + #: ../../application/modules/opac/controllers/CmsController.php:145 #: ../../application/modules/opac/controllers/CmsController.php:129 #: ../../application/modules/opac/controllers/CmsController.php:128 @@ -5859,6 +5946,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:30 #: ../../library/Class/Codification.php:243 #: ../../application/modules/telephone/controllers/RechercheController.php:61 +#: ../../library/Class/Codification.php:217 msgid "Description du document" msgstr "" @@ -5936,6 +6024,7 @@ msgstr "" #: ../../library/Class/Codification.php:212 #: ../../library/Class/Codification.php:264 #: ../../library/Class/Codification.php:252 +#: ../../library/Class/Codification.php:226 msgid "Discographie" msgstr "" @@ -5952,6 +6041,7 @@ msgid "Discographie complète de" msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:50 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -5982,6 +6072,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:65 #: ../../library/Class/Exemplaire.php:229 #: ../../library/Class/Exemplaire.php:230 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 msgid "Disponible" msgstr "" @@ -6015,6 +6106,7 @@ msgstr "" #: ../../library/Class/Codification.php:209 #: ../../library/Class/Codification.php:261 #: ../../library/Class/Codification.php:249 +#: ../../library/Class/Codification.php:223 msgid "Documents de la même série" msgstr "" @@ -6047,6 +6139,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:37 #: ../../library/Class/Codification.php:251 #: ../../application/modules/telephone/controllers/RechercheController.php:68 +#: ../../library/Class/Codification.php:225 msgid "Documents similaires" msgstr "" @@ -6087,6 +6180,10 @@ msgstr "" msgid "Domaine %s sauvegardé" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:195 +msgid "Domaine de recherche" +msgstr "" + #: ../../library/Class/MoteurRecherche.php:383 #: ../../library/Class/MoteurRecherche.php:405 #: ../../library/Class/MoteurRecherche.php:408 @@ -6111,7 +6208,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:273 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 msgid "Domaine utilisée par le serveur lectura pour authentification" msgstr "" @@ -6135,7 +6232,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:66 #: ../../library/Trait/JsonDomain.php:33 ../../library/Class/Catalogue.php:565 #: ../../library/Class/Catalogue.php:1162 -#: ../../library/Class/Catalogue.php:1200 ../../library/Class/Catalogue.php:576 +#: ../../library/Class/Catalogue.php:1200 +#: ../../library/Class/Catalogue.php:576 #: ../../library/Class/Catalogue.php:1173 #: ../../library/Class/Catalogue.php:1211 #: ../../library/Class/Catalogue.php:1144 @@ -6145,6 +6243,10 @@ msgstr "" msgid "Domaines" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:103 +msgid "Domaines sélectionnables" +msgstr "" + #: ../../library/ZendAfi/View/Helper/AvisCms.php:38 msgid "Donner ou modifier votre avis" msgstr "" @@ -6172,12 +6274,14 @@ msgstr "" #: ../../application/modules/opac/controllers/RssController.php:233 #: ../../application/modules/admin/views/scripts/index/index.phtml:36 #: ../../application/modules/admin/views/scripts/index/index.phtml:47 +#: ../../application/modules/admin/views/scripts/index/index.phtml:21 msgid "Données en attente de modération" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:135 msgid "Droite" msgstr "" @@ -6286,7 +6390,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:250 #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:281 +#: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom" msgstr "" @@ -6360,7 +6464,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:301 -#: ../../library/Class/AdminVar.php:205 +#: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:206 msgid "Désactivation des suggestions d'achats" msgstr "" @@ -6562,6 +6666,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58 +#: ../../library/Class/Codification.php:127 msgid "Editeur" msgstr "" @@ -6598,6 +6703,7 @@ msgstr "" #: ../../library/Class/Codification.php:128 #: ../../library/Class/Codification.php:165 #: ../../library/Class/Codification.php:153 +#: ../../library/Class/Codification.php:127 msgid "Editeur(s)" msgstr "" @@ -6717,6 +6823,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59 msgid "En attente" msgstr "" @@ -6740,18 +6847,21 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 msgid "En bas" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:88 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 msgid "En haut" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 msgid "En haut et en bas" msgstr "" @@ -6763,6 +6873,7 @@ msgstr "" #: ../../library/Class/Codification.php:182 #: ../../library/Class/Codification.php:170 +#: ../../library/Class/Codification.php:144 msgid "En rayon" msgstr "" @@ -6779,6 +6890,10 @@ msgstr "" msgid "Enregistrer" msgstr "" +#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53 +msgid "Enregistrer comme filtres par défaut" +msgstr "" + #: ../../application/modules/admin/views/scripts/oai/index.phtml:25 msgid "Entrepot" msgstr "" @@ -6922,6 +7037,8 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:75 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:77 #: ../../application/modules/admin/controllers/SystemeController.php:286 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:84 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:86 msgid "Envoyer" msgstr "" @@ -6979,6 +7096,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:130 #: ../../application/modules/admin/controllers/IndexController.php:131 +#: ../../application/modules/admin/controllers/IndexController.php:139 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -7087,6 +7205,7 @@ msgid "Erreur(s) : %s" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:84 +#: ../../application/modules/admin/controllers/IndexController.php:90 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" @@ -7113,6 +7232,10 @@ msgstr "" msgid "Etat" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:17 +msgid "Etat du site" +msgstr "" + #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:55 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:48 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:52 @@ -7196,6 +7319,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:231 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:228 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 +#: ../../library/Class/Codification.php:219 msgid "Exemplaires" msgstr "" @@ -7268,6 +7392,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:12 #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:31 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:181 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:234 msgid "Expression recherchée" msgstr "" @@ -7408,7 +7533,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:188 #: ../../library/Class/NoticeHtml.php:193 #: ../../library/Class/NoticeHtml.php:184 -#: ../../library/Class/NoticeHtml.php:224 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:224 +#: ../../library/Class/NoticeHtml.php:94 msgid "Fermer les onglets" msgstr "" @@ -7485,6 +7611,10 @@ msgstr "" msgid "Fichier total à traiter : %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:85 +msgid "Fichier(s) en file d'attente" +msgstr "" + #: ../../library/Class/Batch/DilicomJobOnix.php:190 #, php-format msgid "Fichiers incrémentaux à traiter : %s" @@ -7569,6 +7699,10 @@ msgstr "" msgid "Filtrer par statut : " msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:134 +msgid "Filtres" +msgstr "" + #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:46 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:54 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:34 @@ -7774,6 +7908,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:132 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 msgid "Gauche" msgstr "" @@ -7790,6 +7925,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:104 #: ../../library/Class/Codification.php:167 #: ../../library/Class/Codification.php:155 +#: ../../library/Class/Codification.php:129 msgid "Genre" msgstr "" @@ -7829,6 +7965,7 @@ msgid "Gestion des utilisateurs" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:58 +#: ../../application/modules/admin/controllers/IndexController.php:64 msgid "Gestion des variables" msgstr "" @@ -7843,10 +7980,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:272 +#: ../../library/Class/AdminVar.php:272 ../../library/Class/AdminVar.php:273 msgid "Gln de la collectivité, il est fourni par Dilicom." msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:44 +msgid "Google group Bokeh" +msgstr "" + #: ../../application/modules/admin/controllers/UsergroupController.php:132 #: ../../application/modules/admin/controllers/UsergroupController.php:159 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:45 @@ -7934,6 +8075,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/DomainWidget.php:31 #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:108 #: ../../library/ZendAfi/Form/Panier.php:38 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:130 msgid "Généralités" msgstr "" @@ -7966,7 +8108,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:204 #: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:207 -#: ../../library/Class/AdminVar.php:235 +#: ../../library/Class/AdminVar.php:235 ../../library/Class/AdminVar.php:236 msgid "" "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation " "de la bibliothèque numérique" @@ -8082,6 +8224,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:849 #: ../../application/modules/opac/controllers/AbonneController.php:867 #: ../../application/modules/opac/controllers/AbonneController.php:869 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:100 msgid "Horaires" msgstr "" @@ -8096,12 +8239,12 @@ msgstr "" #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:234 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:237 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:265 msgid "ID client Jamendo" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:238 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 msgid "ID client SoundCloud" msgstr "" @@ -8131,7 +8274,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:210 +#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:211 msgid "Id du connecteur Le Social" msgstr "" @@ -8172,18 +8315,19 @@ msgstr "" #: ../../library/ZendAfi/Form/Register.php:36 #: ../../library/ZendAfi/Form/Login.php:130 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:73 +#: ../../library/Class/Codification.php:130 msgid "Identifiant" msgstr "" #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:223 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:251 msgid "Identifiant SSO Cyberlibris" msgstr "" #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:269 +#: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:270 msgid "Identifiant code bibliothèque Vodeclic" msgstr "" @@ -8195,25 +8339,25 @@ msgid "Identifiant commence par" msgstr "" #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:295 +#: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:296 msgid "Identifiant d'accès au serveur OAI Cité de la Musique" msgstr "" #: ../../library/Class/AdminVar.php:260 ../../library/Class/AdminVar.php:262 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:293 +#: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:294 msgid "Identifiant du portail chez 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:304 -#: ../../library/Class/AdminVar.php:208 +#: ../../library/Class/AdminVar.php:208 ../../library/Class/AdminVar.php:209 msgid "Identifiant du project Redmine" msgstr "" #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:310 msgid "Identifiant fournit par lekiosk.com" msgstr "" @@ -8233,7 +8377,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:237 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:241 -#: ../../library/Class/AdminVar.php:268 +#: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:269 msgid "Identifiant partenaire Vodeclic" msgstr "" @@ -8717,6 +8861,8 @@ msgstr "" #: ../../library/ZendAfi/Form/SuggestionAchat.php:55 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:68 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:71 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:77 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:80 msgid "Informations sur le document" msgstr "" @@ -8807,6 +8953,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:136 #: ../../library/Class/AdminVar.php:139 ../../library/Class/AdminVar.php:139 +#: ../../library/Class/AdminVar.php:140 msgid "Interdire la modification de la fiche abonne" msgstr "" @@ -8840,6 +8987,10 @@ msgstr "" msgid "Intervenants" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:46 +msgid "Intégration des données : " +msgstr "" + msgid "Invalid type given, value should be a string" msgstr "Type de donnée non valide : chaîne attendue" @@ -8911,6 +9062,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:177 #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:180 +#: ../../library/Class/AdminVar.php:181 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" @@ -9069,6 +9221,7 @@ msgstr "" #: ../../library/Class/Users.php:928 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:978 ../../library/Class/Users.php:996 #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1025 +#: ../../library/Class/Users.php:1024 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "" @@ -9188,6 +9341,7 @@ msgstr "" #: ../../library/Class/Users.php:937 ../../library/Class/Users.php:957 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1033 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "" @@ -9242,6 +9396,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:129 #: ../../application/modules/admin/controllers/IndexController.php:130 +#: ../../application/modules/admin/controllers/IndexController.php:138 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" @@ -9326,6 +9481,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:81 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:84 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 msgid "La recherche s'effectue dans tout le réseau." msgstr "" @@ -9451,6 +9608,7 @@ msgstr "" #: ../../library/Class/Codification.php:171 #: ../../library/ZendAfi/Form/Album.php:173 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue" msgstr "" @@ -9472,6 +9630,7 @@ msgstr "Entrez votre identité S.V.P." #: ../../library/Class/Codification.php:134 #: ../../library/Class/Codification.php:171 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue(s)" msgstr "" @@ -9492,6 +9651,10 @@ msgstr "" msgid "Largeur" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:36 +msgid "Largeur du champ de saisie" +msgstr "" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:156 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:165 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 @@ -9515,6 +9678,7 @@ msgid "Le %s" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:108 +#: ../../application/modules/admin/controllers/IndexController.php:116 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -9572,6 +9736,7 @@ msgstr "" #: ../../library/Class/Users.php:924 ../../library/Class/Users.php:944 #: ../../library/Class/Users.php:974 ../../library/Class/Users.php:992 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1021 +#: ../../library/Class/Users.php:1020 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "" @@ -9579,7 +9744,7 @@ msgstr "" #: ../../library/Class/Users.php:885 ../../library/Class/Users.php:932 #: ../../library/Class/Users.php:952 ../../library/Class/Users.php:982 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:995 -#: ../../library/Class/Users.php:1029 +#: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1028 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "" @@ -9711,7 +9876,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:201 ../../library/Class/AdminVar.php:199 #: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:202 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:231 msgid "" "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au " "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre " @@ -9720,6 +9885,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:184 ../../library/Class/AdminVar.php:182 #: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:185 +#: ../../library/Class/AdminVar.php:186 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 " @@ -9790,6 +9956,7 @@ msgstr "" #: ../../library/Class/Users.php:942 ../../library/Class/Users.php:962 #: ../../library/Class/Users.php:992 ../../library/Class/Users.php:1010 #: ../../library/Class/Users.php:1005 ../../library/Class/Users.php:1039 +#: ../../library/Class/Users.php:1038 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" @@ -9840,10 +10007,12 @@ msgid "Le site \"%s\" a été supprimé" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:36 +#: ../../application/modules/admin/controllers/IndexController.php:42 msgid "Le site est en ligne" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:37 +#: ../../application/modules/admin/controllers/IndexController.php:43 msgid "Le site est indisponible" msgstr "" @@ -10080,7 +10249,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:208 #: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:211 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:240 msgid "Libellé de regroupement des abonnés" msgstr "" @@ -10134,11 +10303,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:141 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:144 +#: ../../library/Class/AdminVar.php:145 msgid "Libellé pour la Dewey" msgstr "" #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:140 #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:143 +#: ../../library/Class/AdminVar.php:144 msgid "Libellé pour la PCDM4" msgstr "" @@ -10187,6 +10358,7 @@ msgstr "" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Lien internet" msgstr "" @@ -10226,6 +10398,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:175 #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:178 +#: ../../library/Class/AdminVar.php:179 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" @@ -10245,6 +10418,7 @@ msgstr "" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Liens internet" msgstr "" @@ -10390,6 +10564,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:57 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:129 msgid "Liste" msgstr "" @@ -10411,7 +10586,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:245 #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:277 msgid "" "Liste des adresses IP publiques autorisées pour la consultation des documents" msgstr "" @@ -10423,6 +10598,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:225 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:245 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:246 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:314 msgid "Liste des articles" msgstr "" @@ -10436,6 +10612,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:139 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:142 +#: ../../library/Class/AdminVar.php:143 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;" @@ -10444,6 +10621,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:154 ../../library/Class/AdminVar.php:152 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:155 +#: ../../library/Class/AdminVar.php:156 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 => " @@ -10484,6 +10662,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:154 #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:157 +#: ../../library/Class/AdminVar.php:158 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -10513,6 +10692,8 @@ msgstr "" #: ../../library/Class/Codification.php:164 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:152 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:126 msgid "Livres et Vidéos" msgstr "" @@ -10593,19 +10774,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:222 #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:225 -#: ../../library/Class/AdminVar.php:252 +#: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 msgid "Login ARTE VOD" msgstr "" #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:287 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:294 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:322 msgid "Login du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:298 -#: ../../library/Class/AdminVar.php:325 +#: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:326 msgid "Login du portail fourni par Premier-Chapitre." msgstr "" @@ -10804,6 +10985,7 @@ msgstr "" #: ../../library/Class/Users.php:1465 ../../library/Class/Users.php:1486 #: ../../library/Class/Users.php:1520 ../../library/Class/Users.php:1528 #: ../../library/Class/Users.php:1523 ../../library/Class/Users.php:1557 +#: ../../library/Class/Users.php:1556 msgid "Mes paniers" msgstr "" @@ -10816,6 +10998,7 @@ msgstr "" #: ../../library/Class/Users.php:1498 ../../library/Class/Users.php:1519 #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1561 #: ../../library/Class/Users.php:1556 ../../library/Class/Users.php:1590 +#: ../../library/Class/Users.php:1589 msgid "Mes paniers rattachés à un domaine" msgstr "" @@ -10865,12 +11048,24 @@ msgstr "" msgid "Message au dessus de la boite" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:69 +msgid "Message au dessus du champ de saisie" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:79 +msgid "Message au-dessous du champ de recherche" +msgstr "" + #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:257 -#: ../../library/Class/AdminVar.php:284 +#: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:285 msgid "Message d'avertissement affiché sur la popup d'emprunt" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:74 +msgid "Message d'exemple dans le champ de saisie" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/News.php:158 #: ../../library/ZendAfi/Form/Admin/News.php:167 #: ../../library/ZendAfi/Form/Admin/News.php:194 @@ -10883,6 +11078,10 @@ msgstr "" msgid "Message de bienvenue" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:64 +msgid "Message du bouton pour rechercher" +msgstr "" + #: ../../application/modules/opac/controllers/RechercheController.php:459 #: ../../application/modules/opac/controllers/RechercheController.php:492 #: ../../application/modules/opac/controllers/RechercheController.php:517 @@ -10985,6 +11184,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:103 #: ../../application/modules/admin/controllers/IndexController.php:119 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:127 msgid "Mise à jour de la charte graphique" msgstr "" @@ -11079,7 +11279,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 #: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:285 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:313 msgid "Mode d'authentification" msgstr "" @@ -11091,6 +11291,10 @@ msgstr "" msgid "Mode de calcul des tranches" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:110 +msgid "Mode de sélection" +msgstr "" + #: ../../application/modules/admin/views/scripts/usergroup/_usergroup.phtml:12 msgid "Mode de sélection " msgstr "" @@ -11242,6 +11446,7 @@ msgid "Modifier la source de données du kiosque" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:91 +#: ../../application/modules/admin/controllers/IndexController.php:97 #, php-format msgid "Modifier la variable: %s" msgstr "" @@ -11655,6 +11860,7 @@ msgstr "" #: ../../library/Class/Codification.php:213 #: ../../library/Class/Codification.php:265 #: ../../library/Class/Codification.php:253 +#: ../../library/Class/Codification.php:227 msgid "Morceaux" msgstr "" @@ -11686,19 +11892,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:249 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:280 +#: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:273 -#: ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:300 ../../library/Class/AdminVar.php:301 msgid "Mot de passe de l'utilisateur Orphea" msgstr "" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:242 #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:274 msgid "Mot de passe de la collectivité, il est fourni par Dilicom." msgstr "" @@ -11761,6 +11967,8 @@ msgstr "" #: ../../library/Class/Codification.php:175 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:163 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:137 msgid "Musique" msgstr "" @@ -11863,7 +12071,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:203 ../../library/Class/AdminVar.php:201 #: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:204 -#: ../../library/Class/AdminVar.php:232 +#: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi" msgstr "" @@ -12049,6 +12257,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:157 #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:160 +#: ../../library/Class/AdminVar.php:161 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" @@ -12058,7 +12267,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:272 -#: ../../library/Class/AdminVar.php:299 +#: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:300 msgid "Nom de l'utilisateur Orphea" msgstr "" @@ -12075,6 +12284,10 @@ msgstr "" msgid "Nom de la notice" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:18 +msgid "Nom du domaine" +msgstr "" + #: ../../application/modules/opac/views/scripts/panier/index.phtml:23 #: ../../application/modules/opac/views/scripts/panier/index.phtml:24 msgid "Nom du panier" @@ -12089,6 +12302,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:155 #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:158 +#: ../../library/Class/AdminVar.php:159 msgid "Nom du site" msgstr "" @@ -12233,14 +12447,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:252 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:284 msgid "" "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)" msgstr "" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:251 #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:255 -#: ../../library/Class/AdminVar.php:282 +#: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:283 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom" msgstr "" @@ -12272,7 +12486,7 @@ msgstr "" msgid "Nombre de traductions : %s" msgstr "" -#: ../../library/Class/AdminVar.php:186 +#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:187 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -12330,6 +12544,9 @@ msgstr "" #: ../../library/Class/Codification.php:162 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:73 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:75 +#: ../../library/Class/Codification.php:136 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:82 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:84 msgid "Notes" msgstr "" @@ -12430,6 +12647,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:164 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:90 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:89 +#: ../../library/Class/Codification.php:233 msgid "Notices liées" msgstr "" @@ -12770,6 +12988,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:126 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 msgid "Onglets" msgstr "" @@ -12899,12 +13118,14 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:113 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 msgid "Ouverture" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99 msgid "Ouvertures" msgstr "" @@ -13020,8 +13241,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:242 #: ../../library/Class/NoticeHtml.php:233 #: ../../library/Class/NoticeHtml.php:273 -#: ../../library/Class/NoticeHtml.php:143 ../../library/Class/NoticeHtml.php:91 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:143 +#: ../../library/Class/NoticeHtml.php:91 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "" @@ -13183,6 +13404,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 msgid "Par ordre alphabétique" msgstr "" @@ -13198,6 +13420,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:81 #: ../../library/ZendAfi/Form/Configuration/FormationsWidget.php:78 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 msgid "Par ordre de sélection" msgstr "" @@ -13225,7 +13448,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:274 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:302 msgid "" "Paramètre permettant de choisir la langue des des ressources. La liste des " "codes disponibles se trouve à cette adresse http://help.orphea.com/43/" @@ -13236,6 +13459,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:4 #: ../../application/modules/admin/views/scripts/index/index.phtml:6 #: ../../application/modules/admin/views/scripts/index/index.phtml:9 +#: ../../application/modules/admin/views/scripts/index/index.phtml:1 msgid "Paramètres du site" msgstr "" @@ -13243,7 +13467,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:219 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:247 +#: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Numilog\">Numilog</a>" @@ -13253,6 +13477,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:230 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:257 +#: ../../library/Class/AdminVar.php:258 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>" @@ -13267,7 +13492,8 @@ msgstr "" #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:245 msgid "Paramétrage CVS" msgstr "" @@ -13300,9 +13526,14 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:69 #: ../../application/modules/admin/views/scripts/index/index.phtml:65 +#: ../../application/modules/admin/views/scripts/index/index.phtml:41 msgid "Participez à la communauté" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:191 +msgid "Partout" +msgstr "" + #: ../../library/ZendAfi/Controller/Action.php:448 #: ../../library/ZendAfi/Controller/Action.php:460 #: ../../library/ZendAfi/Controller/Action.php:612 @@ -13329,13 +13560,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:295 -#: ../../library/Class/AdminVar.php:322 +#: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:323 msgid "Password du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:292 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:299 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:327 msgid "Password du portail fourni par Premier-Chapitre" msgstr "" @@ -13443,6 +13674,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/ZendAfi/Form/Admin/Library.php:143 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 msgid "Photo" msgstr "" @@ -13470,6 +13702,7 @@ msgstr "" #: ../../library/Class/Codification.php:215 #: ../../library/Class/Codification.php:267 #: ../../library/Class/Codification.php:255 +#: ../../library/Class/Codification.php:229 msgid "Photos" msgstr "" @@ -13672,7 +13905,7 @@ msgstr "" #: ../../library/Class/Profil.php:33 ../../library/Class/Bib.php:71 #: ../../library/Class/AdminVar.php:338 ../../library/Class/Bib.php:70 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:366 msgid "Portail" msgstr "" @@ -13683,6 +13916,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:190 #: ../../library/Class/AdminVar.php:182 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:195 +#: ../../library/Class/AdminVar.php:183 msgid "Position" msgstr "" @@ -13693,6 +13927,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:178 #: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:181 +#: ../../library/Class/AdminVar.php:182 msgid "Position de la pagination en résultat de recherche" msgstr "" @@ -13738,7 +13973,7 @@ msgstr "" #: ../../library/Class/Users.php:941 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:1015 ../../library/Class/Users.php:1045 #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1058 -#: ../../library/Class/Users.php:1092 +#: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1091 msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:" msgstr "" @@ -13851,6 +14086,7 @@ msgstr "" #: ../../library/Class/Codification.php:184 #: ../../library/Class/Codification.php:172 +#: ../../library/Class/Codification.php:146 msgid "Prix" msgstr "" @@ -13891,6 +14127,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:171 #: ../../library/Class/AdminVar.php:174 ../../library/Class/AdminVar.php:174 +#: ../../library/Class/AdminVar.php:175 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -13995,6 +14232,18 @@ msgstr "" msgid "Proposer des tags pour cette notice" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:46 +msgid "Proposer la sélection de bibliothèques" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:52 +msgid "Proposer la sélection de sites" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:59 +msgid "Proposer la sélection de types de doc" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:62 msgid "Proposer un fil RSS" msgstr "" @@ -14175,7 +14424,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:300 -#: ../../library/Class/AdminVar.php:204 +#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:205 msgid "" "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par " "défaut 30 jours)." @@ -14399,6 +14648,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:137 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:157 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:158 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:226 msgid "Racine" msgstr "" @@ -14463,6 +14713,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:247 #: ../../application/modules/telephone/controllers/RechercheController.php:66 +#: ../../library/Class/Codification.php:221 msgid "Rebondir dans le catalogue" msgstr "" @@ -14481,6 +14732,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 #: ../../library/Class/User/SearchCriteria.php:75 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:118 msgid "Recherche" msgstr "" @@ -14490,6 +14742,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:52 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:53 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:54 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:55 msgid "Recherche avancée" msgstr "" @@ -14650,7 +14904,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:189 #: ../../library/Class/NoticeHtml.php:194 #: ../../library/Class/NoticeHtml.php:185 -#: ../../library/Class/NoticeHtml.php:225 ../../library/Class/NoticeHtml.php:95 +#: ../../library/Class/NoticeHtml.php:225 +#: ../../library/Class/NoticeHtml.php:95 msgid "Refermer" msgstr "" @@ -14659,6 +14914,7 @@ msgid "Rejeter les périodiques" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 msgid "Rejetée" msgstr "" @@ -14697,11 +14953,13 @@ msgid "Reload" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:41 +#: ../../application/modules/admin/controllers/IndexController.php:47 msgid "Remettre le site en ligne" msgstr "" #: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:164 #: ../../library/Class/AdminVar.php:167 ../../library/Class/AdminVar.php:167 +#: ../../library/Class/AdminVar.php:168 #, php-format msgid "" "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous " @@ -14734,6 +14992,7 @@ msgid "Rendre le livre emprunté" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:40 +#: ../../application/modules/admin/controllers/IndexController.php:46 msgid "Rendre le site indisponible" msgstr "" @@ -14831,6 +15090,7 @@ msgstr "" #: ../../library/Class/Codification.php:217 #: ../../library/Class/Codification.php:269 #: ../../library/Class/Codification.php:257 +#: ../../library/Class/Codification.php:231 msgid "Ressources numériques" msgstr "" @@ -14838,6 +15098,10 @@ msgstr "" msgid "Restreindre la période d'ouverture" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:183 +msgid "Restreindre à " +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:167 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:144 @@ -14961,6 +15225,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:43 #: ../../application/modules/admin/views/scripts/sansMenuGauche.phtml:17 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:49 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:47 msgid "Retour au site" msgstr "" @@ -15382,11 +15647,13 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:155 #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:139 -#: ../../library/Class/NoticeHtml.php:103 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:103 +#: ../../library/Class/NoticeHtml.php:94 #: ../../library/Class/Codification.php:176 #: ../../application/modules/telephone/controllers/RechercheController.php:33 #: ../../library/Class/Codification.php:164 #: ../../application/modules/telephone/controllers/RechercheController.php:64 +#: ../../library/Class/Codification.php:138 msgid "Résumé" msgstr "" @@ -15420,6 +15687,7 @@ msgstr "" #: ../../library/Class/Codification.php:206 #: ../../library/Class/Codification.php:258 #: ../../library/Class/Codification.php:246 +#: ../../library/Class/Codification.php:220 msgid "Résumés" msgstr "" @@ -15484,6 +15752,7 @@ msgid "S'inscrire à une formation" msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:73 +#: ../../application/modules/admin/views/scripts/index/index.phtml:49 msgid "Salle de discussion #Bokeh" msgstr "" @@ -15525,6 +15794,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:33 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:56 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:62 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:60 msgid "Se déconnecter" msgstr "" @@ -15586,6 +15856,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:143 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:215 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:217 +#: ../../library/Class/Codification.php:139 msgid "Section" msgstr "" @@ -15636,7 +15907,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:247 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:251 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 msgid "Serveur FTP de diffusion des offres PNB Dilicom" msgstr "" @@ -15725,7 +15996,7 @@ msgid "Session non trouvée" msgstr "" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:269 -#: ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:297 msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "" @@ -15742,6 +16013,7 @@ msgstr "Doit être plus grand que '%fieldToCompare%'" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1016 #: ../../library/Class/Users.php:1046 ../../library/Class/Users.php:1064 #: ../../library/Class/Users.php:1059 ../../library/Class/Users.php:1093 +#: ../../library/Class/Users.php:1092 msgid "" "Si vous n'êtes pas à l'origine de cette demande d'inscription, merci de ne " "pas tenir compte de cet e-mail, et l'inscription ne sera pas activée." @@ -15788,6 +16060,10 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:218 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:137 #: ../../library/ZendAfi/View/Helper/BibView.php:152 +#: ../../library/Class/Codification.php:141 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:63 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:65 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:272 msgid "Site" msgstr "" @@ -15811,6 +16087,10 @@ msgstr "" msgid "Site : %s" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:43 +msgid "Site communautaire" +msgstr "" + #: ../../application/modules/opac/views/scripts/footer.phtml:36 #: ../../library/ZendAfi/View/Helper/TagCredits.php:28 msgid "Site communautaire du projet Bokeh" @@ -16150,6 +16430,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:127 #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:44 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:33 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:30 msgid "Style de boite" msgstr "" @@ -16279,6 +16560,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:52 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 +#: ../../library/Class/Codification.php:134 msgid "Sujet" msgstr "" @@ -16296,6 +16578,7 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:105 #: ../../library/Class/Codification.php:172 #: ../../library/Class/Codification.php:160 +#: ../../library/Class/Codification.php:134 msgid "Sujet(s)" msgstr "" @@ -16514,6 +16797,10 @@ msgstr "" msgid "Sécurité" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:111 +msgid "Sélection dans une liste déroulante" +msgstr "" + #: ../../application/modules/opac/views/scripts/bib/selection.phtml:2 msgid "Sélection de bibliothèques" msgstr "" @@ -16548,6 +16835,10 @@ msgstr "" msgid "Sélection multiple d'articles" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:112 +msgid "Sélection multiple par cases à cocher" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 msgid "Sélectionner la bibliothèque" msgstr "" @@ -16605,6 +16896,7 @@ msgstr "" #: ../../library/Class/Codification.php:168 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:121 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:119 +#: ../../library/Class/Codification.php:142 msgid "Tag" msgstr "" @@ -16615,6 +16907,7 @@ msgstr "" #: ../../library/Class/Codification.php:143 #: ../../library/Class/Codification.php:180 #: ../../library/Class/Codification.php:168 +#: ../../library/Class/Codification.php:142 msgid "Tag(s)" msgstr "" @@ -16713,6 +17006,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/ZendAfi/Form/Admin/Library.php:101 #: ../../library/ZendAfi/Form/Admin/Library.php:185 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 msgid "Territoire" msgstr "" @@ -16846,6 +17140,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:176 #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:179 +#: ../../library/Class/AdminVar.php:180 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 " @@ -16854,6 +17149,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:174 #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:177 +#: ../../library/Class/AdminVar.php:178 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 " @@ -17025,6 +17321,10 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Newsletter.php:31 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:38 #: ../../library/ZendAfi/Form/Admin/News.php:55 +#: ../../library/Class/Codification.php:131 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:39 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:39 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:42 msgid "Titre" msgstr "" @@ -17125,6 +17425,7 @@ msgstr "" #: ../../library/Class/Codification.php:132 #: ../../library/Class/Codification.php:169 #: ../../library/Class/Codification.php:157 +#: ../../library/Class/Codification.php:131 msgid "Titre(s)" msgstr "" @@ -17148,6 +17449,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38 #: ../../library/Class/User/SearchCriteria.php:151 #: ../../library/ZendAfi/View/Helper/TreeView.php:87 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:99 msgid "Tous" msgstr "" @@ -17310,10 +17612,18 @@ msgstr "" msgid "Traductions:" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:60 +msgid "Traitement en cours depuis le" +msgstr "" + #: ../../library/Class/Cosmogramme/Generator.php:42 msgid "Traitement terminé." msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:76 +msgid "Traitements d'intégration en retard de" +msgstr "" + #: ../../library/Class/Upload.php:268 ../../library/Class/Upload.php:291 msgid "Transfert impossible, ce formulaire est mal configuré" msgstr "" @@ -17332,6 +17642,10 @@ msgstr "" msgid "Tri" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:89 +msgid "Tri du résultat de recherche" +msgstr "" + #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:89 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:95 #: ../../library/ZendAfi/View/Helper/TagTriRecherche.php:35 @@ -17370,13 +17684,13 @@ msgid "Type d'interface" msgstr "" #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:262 -#: ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:290 msgid "Type de SSO OneDTouch" msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:277 #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:284 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:312 msgid "Type de SSO lekiosk.com" msgstr "" @@ -17447,6 +17761,12 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:46 #: ../../library/Class/CriteresRecherche.php:140 #: ../../library/Class/CriteresRecherche.php:141 +#: ../../library/Class/Codification.php:140 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:67 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:69 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:98 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:132 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:139 msgid "Type de document" msgstr "" @@ -17557,6 +17877,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:310 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:171 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:168 +#: ../../library/Class/Codification.php:140 msgid "Types de documents" msgstr "" @@ -17674,6 +17995,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Library.php:74 #: ../../application/modules/opac/controllers/AbonneController.php:457 #: ../../application/modules/opac/controllers/AbonneController.php:459 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 msgid "Téléphone" msgstr "" @@ -17695,6 +18017,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:11 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55 msgid "URL" msgstr "" @@ -17714,6 +18037,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:133 #: ../../library/Class/AdminVar.php:136 ../../library/Class/AdminVar.php:136 +#: ../../library/Class/AdminVar.php:137 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "" @@ -17743,6 +18067,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:131 ../../library/Class/AdminVar.php:129 #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:132 +#: ../../library/Class/AdminVar.php:133 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "" @@ -17831,6 +18156,7 @@ msgstr "" #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1073 #: ../../library/Class/Users.php:1103 ../../library/Class/Users.php:1121 #: ../../library/Class/Users.php:1116 ../../library/Class/Users.php:1150 +#: ../../library/Class/Users.php:1149 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion." msgstr "" @@ -17949,35 +18275,37 @@ msgstr "" #: ../../library/Class/AdminVar.php:140 ../../library/Class/AdminVar.php:138 #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:141 +#: ../../library/Class/AdminVar.php:142 msgid "Url d'import d'un agenda TYPO3" msgstr "" #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:156 #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:159 +#: ../../library/Class/AdminVar.php:160 msgid "Url de recherche" msgstr "" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:302 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:305 -#: ../../library/Class/AdminVar.php:209 +#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:210 msgid "Url du connecteur Le Social" msgstr "" #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:300 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:303 -#: ../../library/Class/AdminVar.php:207 +#: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:208 msgid "Url du proxy Redmine" msgstr "" #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:244 #: ../../library/Class/AdminVar.php:248 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 msgid "Url du serveur PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:206 +#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:207 msgid "Url du serveur redmine" msgstr "" @@ -18002,7 +18330,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:248 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:252 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom" msgstr "" @@ -18157,6 +18485,7 @@ msgid "Variable" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:77 +#: ../../application/modules/admin/controllers/IndexController.php:83 #, php-format msgid "Variable %s sauvegardée" msgstr "" @@ -18189,7 +18518,8 @@ msgstr "" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:263 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:290 -#: ../../library/Class/AdminVar.php:317 +#: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:291 +#: ../../library/Class/AdminVar.php:318 msgid "Version" msgstr "" @@ -18199,7 +18529,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:317 msgid "Version de Kidilangues." msgstr "" @@ -18214,10 +18544,12 @@ msgstr "" msgid "Veuillez choisir une notice" msgstr "" -#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:123 +#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:123 #: ../../library/Class/NoticeHtml.php:177 #: ../../library/Class/NoticeHtml.php:182 -#: ../../library/Class/NoticeHtml.php:173 ../../library/Class/NoticeHtml.php:88 +#: ../../library/Class/NoticeHtml.php:173 +#: ../../library/Class/NoticeHtml.php:88 #: ../../library/Class/NoticeHtml.php:159 #: ../../library/Class/NoticeHtml.php:212 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:64 @@ -18369,6 +18701,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../application/modules/opac/controllers/AbonneController.php:455 #: ../../application/modules/opac/controllers/AbonneController.php:457 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 msgid "Ville" msgstr "" @@ -18730,7 +19063,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:258 -#: ../../library/Class/AdminVar.php:285 +#: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:286 msgid "" "Votre compte sera mis à jour dans un délai de 15 minutes après le retour " "anticipé du document." @@ -18773,7 +19106,7 @@ msgstr "" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1064 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1112 ../../library/Class/Users.php:1107 -#: ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1140 #, fuzzy, php-format msgid "Votre identifiant : %s\n" msgstr "Entrez votre identité S.V.P." @@ -18825,7 +19158,7 @@ msgstr "" #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1039 #: ../../library/Class/Users.php:1065 ../../library/Class/Users.php:1095 #: ../../library/Class/Users.php:1113 ../../library/Class/Users.php:1108 -#: ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1141 #, fuzzy, php-format msgid "Votre mot de passe : %s\n" msgstr "Entrez votre identité S.V.P." @@ -19042,7 +19375,7 @@ msgstr "" #: ../../library/Class/Users.php:940 ../../library/Class/Users.php:988 #: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1062 ../../library/Class/Users.php:1057 -#: ../../library/Class/Users.php:1091 +#: ../../library/Class/Users.php:1091 ../../library/Class/Users.php:1090 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "" @@ -19059,6 +19392,7 @@ msgstr "" #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1111 #: ../../library/Class/Users.php:1106 ../../library/Class/Users.php:1140 +#: ../../library/Class/Users.php:1139 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "" @@ -19082,6 +19416,7 @@ msgstr "" #: ../../library/Class/Users.php:921 ../../library/Class/Users.php:941 #: ../../library/Class/Users.php:971 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:984 ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1017 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "" @@ -19094,6 +19429,7 @@ msgstr "" #: ../../library/Class/Users.php:922 ../../library/Class/Users.php:942 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:985 ../../library/Class/Users.php:1019 +#: ../../library/Class/Users.php:1018 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "" @@ -19182,7 +19518,7 @@ msgstr "" #: ../../library/Class/Users.php:904 ../../library/Class/Users.php:952 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:1002 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1015 -#: ../../library/Class/Users.php:1049 +#: ../../library/Class/Users.php:1049 ../../library/Class/Users.php:1048 msgid "Vous devez fournir une adresse mail valide" msgstr "" @@ -19216,7 +19552,7 @@ msgstr "" #: ../../library/Class/Users.php:907 ../../library/Class/Users.php:955 #: ../../library/Class/Users.php:975 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1018 -#: ../../library/Class/Users.php:1052 +#: ../../library/Class/Users.php:1052 ../../library/Class/Users.php:1051 msgid "Vous devez saisir un numéro de téléphone" msgstr "" @@ -19264,6 +19600,7 @@ msgstr "" #: ../../library/Class/Users.php:1216 ../../library/Class/Users.php:1242 #: ../../library/Class/Users.php:1281 ../../library/Class/Users.php:1299 #: ../../library/Class/Users.php:1294 ../../library/Class/Users.php:1328 +#: ../../library/Class/Users.php:1327 msgid "" "Vous devez vous connecter en tant qu'abonné de la bibliothèque pour obtenir " "plus d'informations." @@ -19469,7 +19806,7 @@ msgstr "" #: ../../library/Class/Users.php:900 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:968 ../../library/Class/Users.php:998 #: ../../library/Class/Users.php:1016 ../../library/Class/Users.php:1011 -#: ../../library/Class/Users.php:1045 +#: ../../library/Class/Users.php:1045 ../../library/Class/Users.php:1044 msgid "Vous n'avez pas les droits suffisants pour diriger une formation" msgstr "" @@ -19479,7 +19816,7 @@ msgstr "" #: ../../library/Class/Users.php:897 ../../library/Class/Users.php:945 #: ../../library/Class/Users.php:965 ../../library/Class/Users.php:995 #: ../../library/Class/Users.php:1013 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1042 +#: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1041 msgid "Vous n'avez pas les droits suffisants pour suivre une formation" msgstr "" @@ -19644,11 +19981,13 @@ msgid "Vérification des prêts rendus de manière anticipée" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 msgid "Vérifiée" msgstr "" #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:162 #: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:165 +#: ../../library/Class/AdminVar.php:166 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "" @@ -19656,6 +19995,10 @@ msgstr "" msgid "Web" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:45 +msgid "Wiki Bokeh" +msgstr "" + #: ../../library/Class/IntProfilDonnees.php:41 #: ../../library/Class/IntProfilDonnees.php:51 msgid "Windows ANSI" @@ -19804,6 +20147,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/accueil/calendrier.phtml:93 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:86 msgid "aucun" msgstr "" @@ -20137,6 +20481,8 @@ msgstr "" #: ../../library/ZendAfi/Form/SuggestionAchat.php:27 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:36 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:40 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:40 msgid "ex: Harry Potter à l'école des sorciers" msgstr "" @@ -20296,8 +20642,8 @@ msgstr "" msgid "jusqu'à " msgstr "" -#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:179 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:179 +#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:180 #, php-format msgid "le %s" msgstr "" @@ -20961,6 +21307,10 @@ msgstr "" msgid "ville" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:12 +msgid "» Modifier «" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:94 msgid "À la connextion : basculer automatiquement sur le profil" msgstr "" @@ -20999,6 +21349,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/Service.php:226 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:56 +#: ../../library/Class/WebService/SIGB/Nanook/Service.php:228 msgid "Échec de l'authentification par le webservice" msgstr "" @@ -21006,6 +21357,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:97 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:129 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134 #, php-format msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\"" msgstr "" @@ -21027,12 +21379,14 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:86 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:118 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123 #, php-format msgid "Échec de la suggestion, le webservice a répondu \"%s\"" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:83 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:115 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120 msgid "Échec de la suggestion, une erreur inconnue est survenue." msgstr "" diff --git a/library/translation/fr.pot b/library/translation/fr.pot index f7d9a835b04757e29e443d61789e310f0ab5f6b2..b4373df24de4d950b7a118d59a57179e5ac9b1cc 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: 2016-11-07 15:21+0100\n" +"POT-Creation-Date: 2016-11-21 12:10+0100\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" @@ -51,6 +51,7 @@ msgstr "" #: ../../library/Class/MoteurRecherche.php:594 #: ../../library/Class/MoteurRecherche.php:599 #: ../../library/Class/MoteurRecherche.php:605 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:41 msgid "Accueil" msgstr "" @@ -115,6 +116,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Register.php:36 #: ../../library/ZendAfi/Form/Login.php:130 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:73 +#: ../../library/Class/Codification.php:130 msgid "Identifiant" msgstr "" @@ -243,6 +245,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:164 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:183 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:50 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque" msgstr "" @@ -324,6 +327,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/ZendAfi/Form/Admin/Library.php:143 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 msgid "Photo" msgstr "" @@ -364,6 +368,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Library.php:172 #: ../../application/modules/opac/controllers/AbonneController.php:453 #: ../../application/modules/opac/controllers/AbonneController.php:455 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 msgid "Adresse" msgstr "" @@ -420,6 +425,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../application/modules/opac/controllers/AbonneController.php:455 #: ../../application/modules/opac/controllers/AbonneController.php:457 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 msgid "Ville" msgstr "" @@ -442,6 +448,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Library.php:74 #: ../../application/modules/opac/controllers/AbonneController.php:457 #: ../../application/modules/opac/controllers/AbonneController.php:459 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 msgid "Téléphone" msgstr "" @@ -475,6 +482,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/ZendAfi/Form/Admin/Library.php:101 #: ../../library/ZendAfi/Form/Admin/Library.php:185 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 msgid "Territoire" msgstr "" @@ -721,6 +729,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:310 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:171 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:168 +#: ../../library/Class/Codification.php:140 msgid "Types de documents" msgstr "" @@ -951,6 +960,10 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Newsletter.php:31 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:38 #: ../../library/ZendAfi/Form/Admin/News.php:55 +#: ../../library/Class/Codification.php:131 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:39 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:39 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:42 msgid "Titre" msgstr "" @@ -1514,7 +1527,8 @@ msgstr "" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:263 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:290 -#: ../../library/Class/AdminVar.php:317 +#: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:291 +#: ../../library/Class/AdminVar.php:318 msgid "Version" msgstr "" @@ -1522,6 +1536,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:4 #: ../../application/modules/admin/views/scripts/index/index.phtml:6 #: ../../application/modules/admin/views/scripts/index/index.phtml:9 +#: ../../application/modules/admin/views/scripts/index/index.phtml:1 msgid "Paramètres du site" msgstr "" @@ -1553,6 +1568,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RssController.php:233 #: ../../application/modules/admin/views/scripts/index/index.phtml:36 #: ../../application/modules/admin/views/scripts/index/index.phtml:47 +#: ../../application/modules/admin/views/scripts/index/index.phtml:21 msgid "Données en attente de modération" msgstr "" @@ -2087,6 +2103,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:33 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:56 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:62 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:60 msgid "Se déconnecter" msgstr "" @@ -4094,6 +4111,9 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:138 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/ZendAfi/Form/Admin/News.php:61 +#: ../../library/Class/Codification.php:123 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:45 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:45 msgid "Auteur" msgstr "" @@ -4300,6 +4320,10 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:218 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:137 #: ../../library/ZendAfi/View/Helper/BibView.php:152 +#: ../../library/Class/Codification.php:141 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:63 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:65 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:272 msgid "Site" msgstr "" @@ -4843,6 +4867,8 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:75 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:77 #: ../../application/modules/admin/controllers/SystemeController.php:286 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:84 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:86 msgid "Envoyer" msgstr "" @@ -5266,6 +5292,12 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:46 #: ../../library/Class/CriteresRecherche.php:140 #: ../../library/Class/CriteresRecherche.php:141 +#: ../../library/Class/Codification.php:140 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:67 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:69 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:98 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:132 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:139 msgid "Type de document" msgstr "" @@ -5347,7 +5379,7 @@ msgstr "" #: ../../library/Class/Profil.php:33 ../../library/Class/Bib.php:71 #: ../../library/Class/AdminVar.php:338 ../../library/Class/Bib.php:70 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:366 msgid "Portail" msgstr "" @@ -5399,7 +5431,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:66 #: ../../library/Trait/JsonDomain.php:33 ../../library/Class/Catalogue.php:565 #: ../../library/Class/Catalogue.php:1162 -#: ../../library/Class/Catalogue.php:1200 ../../library/Class/Catalogue.php:576 +#: ../../library/Class/Catalogue.php:1200 +#: ../../library/Class/Catalogue.php:576 #: ../../library/Class/Catalogue.php:1173 #: ../../library/Class/Catalogue.php:1211 #: ../../library/Class/Catalogue.php:1144 @@ -5720,6 +5753,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:43 #: ../../application/modules/admin/views/scripts/sansMenuGauche.phtml:17 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:49 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:47 msgid "Retour au site" msgstr "" @@ -5962,6 +5996,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:12 #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:31 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:181 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:234 msgid "Expression recherchée" msgstr "" @@ -6003,6 +6038,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:52 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 +#: ../../library/Class/Codification.php:134 msgid "Sujet" msgstr "" @@ -6040,6 +6076,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58 +#: ../../library/Class/Codification.php:127 msgid "Editeur" msgstr "" @@ -6062,6 +6099,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:55 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:57 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59 +#: ../../library/Class/Codification.php:125 msgid "Collection" msgstr "" @@ -6167,7 +6205,8 @@ msgid "déplier" msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:131 -#: ../../library/Class/NoticeHtml.php:81 ../../library/Class/NoticeHtml.php:122 +#: ../../library/Class/NoticeHtml.php:81 +#: ../../library/Class/NoticeHtml.php:122 #: ../../library/Class/NoticeHtml.php:176 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:159 #: ../../library/Class/NoticeHtml.php:181 @@ -6175,7 +6214,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:183 #: ../../library/Class/NoticeHtml.php:172 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:182 -#: ../../library/Class/NoticeHtml.php:87 ../../library/Class/NoticeHtml.php:158 +#: ../../library/Class/NoticeHtml.php:87 +#: ../../library/Class/NoticeHtml.php:158 #: ../../library/Class/NoticeHtml.php:211 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:199 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:63 @@ -6185,7 +6225,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:175 #: ../../library/Class/NoticeHtml.php:48 #: ../../library/ZendAfi/View/Helper/ListeNotices/Accordeon.php:56 -#: ../../library/Class/NoticeHtml.php:42 ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 msgid "Chargement en cours" msgstr "" @@ -6342,6 +6383,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 #: ../../library/Class/User/SearchCriteria.php:75 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:118 msgid "Recherche" msgstr "" @@ -6513,6 +6555,7 @@ msgstr "" #: ../../library/Class/Codification.php:124 #: ../../library/Class/Codification.php:161 #: ../../library/Class/Codification.php:149 +#: ../../library/Class/Codification.php:123 msgid "Auteur(s)" msgstr "" @@ -6523,6 +6566,7 @@ msgstr "" #: ../../library/Class/Codification.php:125 #: ../../library/Class/Codification.php:162 #: ../../library/Class/Codification.php:150 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque(s)" msgstr "" @@ -6534,6 +6578,7 @@ msgstr "" #: ../../library/Class/Codification.php:126 #: ../../library/Class/Codification.php:163 #: ../../library/Class/Codification.php:151 +#: ../../library/Class/Codification.php:125 msgid "Collection(s)" msgstr "" @@ -6548,6 +6593,7 @@ msgstr "" #: ../../library/Class/Codification.php:128 #: ../../library/Class/Codification.php:165 #: ../../library/Class/Codification.php:153 +#: ../../library/Class/Codification.php:127 msgid "Editeur(s)" msgstr "" @@ -6562,6 +6608,7 @@ msgstr "" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre d'intérêt" msgstr "" @@ -6572,6 +6619,7 @@ msgstr "" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre(s) d'intérêt" msgstr "" @@ -6588,6 +6636,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:104 #: ../../library/Class/Codification.php:167 #: ../../library/Class/Codification.php:155 +#: ../../library/Class/Codification.php:129 msgid "Genre" msgstr "" @@ -6599,6 +6648,7 @@ msgstr "" #: ../../library/Class/Codification.php:133 #: ../../library/Class/Codification.php:170 #: ../../library/Class/Codification.php:158 +#: ../../library/Class/Codification.php:132 msgid "Collation" msgstr "" @@ -6617,6 +6667,7 @@ msgstr "" #: ../../library/Class/Codification.php:171 #: ../../library/ZendAfi/Form/Album.php:173 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue" msgstr "" @@ -6628,6 +6679,7 @@ msgstr "" #: ../../library/Class/Codification.php:134 #: ../../library/Class/Codification.php:171 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue(s)" msgstr "" @@ -6645,6 +6697,7 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:105 #: ../../library/Class/Codification.php:172 #: ../../library/Class/Codification.php:160 +#: ../../library/Class/Codification.php:134 msgid "Sujet(s)" msgstr "" @@ -6660,6 +6713,7 @@ msgstr "" #: ../../application/modules/telephone/views/scripts/recherche/viewnotice.phtml:16 #: ../../library/Class/Codification.php:173 #: ../../library/Class/Codification.php:161 +#: ../../library/Class/Codification.php:135 msgid "Année" msgstr "" @@ -6672,6 +6726,9 @@ msgstr "" #: ../../library/Class/Codification.php:162 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:73 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:75 +#: ../../library/Class/Codification.php:136 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:82 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:84 msgid "Notes" msgstr "" @@ -6688,11 +6745,13 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:155 #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:139 -#: ../../library/Class/NoticeHtml.php:103 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:103 +#: ../../library/Class/NoticeHtml.php:94 #: ../../library/Class/Codification.php:176 #: ../../application/modules/telephone/controllers/RechercheController.php:33 #: ../../library/Class/Codification.php:164 #: ../../application/modules/telephone/controllers/RechercheController.php:64 +#: ../../library/Class/Codification.php:138 msgid "Résumé" msgstr "" @@ -6729,6 +6788,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:143 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:215 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:217 +#: ../../library/Class/Codification.php:139 msgid "Section" msgstr "" @@ -6740,6 +6800,7 @@ msgstr "" #: ../../library/Class/Codification.php:132 #: ../../library/Class/Codification.php:169 #: ../../library/Class/Codification.php:157 +#: ../../library/Class/Codification.php:131 msgid "Titre(s)" msgstr "" @@ -6753,6 +6814,7 @@ msgstr "" #: ../../library/Class/Codification.php:168 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:121 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:119 +#: ../../library/Class/Codification.php:142 msgid "Tag" msgstr "" @@ -6763,6 +6825,7 @@ msgstr "" #: ../../library/Class/Codification.php:143 #: ../../library/Class/Codification.php:180 #: ../../library/Class/Codification.php:168 +#: ../../library/Class/Codification.php:142 msgid "Tag(s)" msgstr "" @@ -6773,6 +6836,7 @@ msgstr "" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Lien internet" msgstr "" @@ -6783,6 +6847,7 @@ msgstr "" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Liens internet" msgstr "" @@ -6824,6 +6889,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:231 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:228 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 +#: ../../library/Class/Codification.php:219 msgid "Exemplaires" msgstr "" @@ -6861,6 +6927,7 @@ msgstr "" #: ../../library/Class/Codification.php:213 #: ../../library/Class/Codification.php:265 #: ../../library/Class/Codification.php:253 +#: ../../library/Class/Codification.php:227 msgid "Morceaux" msgstr "" @@ -6878,6 +6945,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:47 #: ../../library/Class/Codification.php:254 #: ../../application/modules/telephone/controllers/RechercheController.php:60 +#: ../../library/Class/Codification.php:228 msgid "Bande-annonce" msgstr "" @@ -6890,6 +6958,7 @@ msgstr "" #: ../../library/Class/Codification.php:215 #: ../../library/Class/Codification.php:267 #: ../../library/Class/Codification.php:255 +#: ../../library/Class/Codification.php:229 msgid "Photos" msgstr "" @@ -6902,6 +6971,7 @@ msgstr "" #: ../../library/Class/Codification.php:216 #: ../../library/Class/Codification.php:268 #: ../../library/Class/Codification.php:256 +#: ../../library/Class/Codification.php:230 msgid "Archives vidéo" msgstr "" @@ -7017,10 +7087,12 @@ msgstr "" msgid "Aucun résultat trouvé" msgstr "" -#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:123 +#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:123 #: ../../library/Class/NoticeHtml.php:177 #: ../../library/Class/NoticeHtml.php:182 -#: ../../library/Class/NoticeHtml.php:173 ../../library/Class/NoticeHtml.php:88 +#: ../../library/Class/NoticeHtml.php:173 +#: ../../library/Class/NoticeHtml.php:88 #: ../../library/Class/NoticeHtml.php:159 #: ../../library/Class/NoticeHtml.php:212 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:64 @@ -7034,14 +7106,16 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:188 #: ../../library/Class/NoticeHtml.php:193 #: ../../library/Class/NoticeHtml.php:184 -#: ../../library/Class/NoticeHtml.php:224 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:224 +#: ../../library/Class/NoticeHtml.php:94 msgid "Fermer les onglets" msgstr "" #: ../../library/Class/NoticeHtml.php:189 #: ../../library/Class/NoticeHtml.php:194 #: ../../library/Class/NoticeHtml.php:185 -#: ../../library/Class/NoticeHtml.php:225 ../../library/Class/NoticeHtml.php:95 +#: ../../library/Class/NoticeHtml.php:225 +#: ../../library/Class/NoticeHtml.php:95 msgid "Refermer" msgstr "" @@ -7049,7 +7123,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:204 #: ../../library/Class/NoticeHtml.php:195 #: ../../library/Class/NoticeHtml.php:235 -#: ../../library/Class/NoticeHtml.php:105 ../../library/Class/NoticeHtml.php:61 +#: ../../library/Class/NoticeHtml.php:105 +#: ../../library/Class/NoticeHtml.php:61 #: ../../library/ZendAfi/View/Helper/Biographie.php:59 #: ../../library/Class/NoticeHtml.php:50 #: ../../library/ZendAfi/View/Helper/Biographie.php:58 @@ -7061,8 +7136,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:228 #: ../../library/Class/NoticeHtml.php:219 #: ../../library/Class/NoticeHtml.php:259 -#: ../../library/Class/NoticeHtml.php:129 ../../library/Class/NoticeHtml.php:77 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/Class/NoticeHtml.php:129 +#: ../../library/Class/NoticeHtml.php:77 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "" @@ -7070,8 +7145,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:242 #: ../../library/Class/NoticeHtml.php:233 #: ../../library/Class/NoticeHtml.php:273 -#: ../../library/Class/NoticeHtml.php:143 ../../library/Class/NoticeHtml.php:91 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:143 +#: ../../library/Class/NoticeHtml.php:91 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "" @@ -7528,6 +7603,7 @@ msgstr "" #: ../../library/Class/Users.php:921 ../../library/Class/Users.php:941 #: ../../library/Class/Users.php:971 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:984 ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1017 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "" @@ -7540,6 +7616,7 @@ msgstr "" #: ../../library/Class/Users.php:924 ../../library/Class/Users.php:944 #: ../../library/Class/Users.php:974 ../../library/Class/Users.php:992 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1021 +#: ../../library/Class/Users.php:1020 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "" @@ -7552,6 +7629,7 @@ msgstr "" #: ../../library/Class/Users.php:928 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:978 ../../library/Class/Users.php:996 #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1025 +#: ../../library/Class/Users.php:1024 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "" @@ -7564,6 +7642,7 @@ msgstr "" #: ../../library/Class/Users.php:922 ../../library/Class/Users.php:942 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:985 ../../library/Class/Users.php:1019 +#: ../../library/Class/Users.php:1018 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "" @@ -7584,6 +7663,7 @@ msgstr "" #: ../../library/Class/Users.php:937 ../../library/Class/Users.php:957 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1033 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "" @@ -7597,6 +7677,7 @@ msgstr "" #: ../../library/Class/Users.php:942 ../../library/Class/Users.php:962 #: ../../library/Class/Users.php:992 ../../library/Class/Users.php:1010 #: ../../library/Class/Users.php:1005 ../../library/Class/Users.php:1039 +#: ../../library/Class/Users.php:1038 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" @@ -7610,6 +7691,7 @@ msgstr "" #: ../../library/Class/Users.php:970 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1067 +#: ../../library/Class/Users.php:1066 msgid "Cet identifiant existe déjà ." msgstr "" @@ -7679,6 +7761,7 @@ msgstr "" #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1013 #: ../../library/Class/Users.php:1043 ../../library/Class/Users.php:1061 #: ../../library/Class/Users.php:1056 ../../library/Class/Users.php:1090 +#: ../../library/Class/Users.php:1089 msgid "Bonjour," msgstr "" @@ -7725,6 +7808,7 @@ msgstr "" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1016 #: ../../library/Class/Users.php:1046 ../../library/Class/Users.php:1064 #: ../../library/Class/Users.php:1059 ../../library/Class/Users.php:1093 +#: ../../library/Class/Users.php:1092 msgid "" "Si vous n'êtes pas à l'origine de cette demande d'inscription, merci de ne " "pas tenir compte de cet e-mail, et l'inscription ne sera pas activée." @@ -7747,6 +7831,7 @@ msgstr "" #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1111 #: ../../library/Class/Users.php:1106 ../../library/Class/Users.php:1140 +#: ../../library/Class/Users.php:1139 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "" @@ -7773,6 +7858,7 @@ msgstr "" #: ../../library/Class/Users.php:1040 ../../library/Class/Users.php:1066 #: ../../library/Class/Users.php:1096 ../../library/Class/Users.php:1114 #: ../../library/Class/Users.php:1109 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1142 msgid "Bonne navigation sur le portail" msgstr "" @@ -7785,6 +7871,7 @@ msgstr "" #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1073 #: ../../library/Class/Users.php:1103 ../../library/Class/Users.php:1121 #: ../../library/Class/Users.php:1116 ../../library/Class/Users.php:1150 +#: ../../library/Class/Users.php:1149 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion." msgstr "" @@ -7797,6 +7884,7 @@ msgstr "" #: ../../library/Class/Users.php:1216 ../../library/Class/Users.php:1242 #: ../../library/Class/Users.php:1281 ../../library/Class/Users.php:1299 #: ../../library/Class/Users.php:1294 ../../library/Class/Users.php:1328 +#: ../../library/Class/Users.php:1327 msgid "" "Vous devez vous connecter en tant qu'abonné de la bibliothèque pour obtenir " "plus d'informations." @@ -8148,6 +8236,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:127 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/Class/CriteresRecherche.php:140 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 msgid "Année de publication" msgstr "" @@ -8296,6 +8385,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38 #: ../../library/Class/User/SearchCriteria.php:151 #: ../../library/ZendAfi/View/Helper/TreeView.php:87 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:99 msgid "Tous" msgstr "" @@ -8364,6 +8454,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:153 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:189 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:272 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:116 msgid "Affichage" msgstr "" @@ -8766,6 +8857,7 @@ msgstr "" #: ../../library/Class/Codification.php:217 #: ../../library/Class/Codification.php:269 #: ../../library/Class/Codification.php:257 +#: ../../library/Class/Codification.php:231 msgid "Ressources numériques" msgstr "" @@ -9139,6 +9231,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:849 #: ../../application/modules/opac/controllers/AbonneController.php:867 #: ../../application/modules/opac/controllers/AbonneController.php:869 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:100 msgid "Horaires" msgstr "" @@ -9221,6 +9314,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:30 #: ../../library/Class/Codification.php:243 #: ../../application/modules/telephone/controllers/RechercheController.php:61 +#: ../../library/Class/Codification.php:217 msgid "Description du document" msgstr "" @@ -9245,6 +9339,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:32 #: ../../library/Class/Codification.php:244 #: ../../application/modules/telephone/controllers/RechercheController.php:63 +#: ../../library/Class/Codification.php:218 msgid "Critiques" msgstr "" @@ -9268,6 +9363,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:247 #: ../../application/modules/telephone/controllers/RechercheController.php:66 +#: ../../library/Class/Codification.php:221 msgid "Rebondir dans le catalogue" msgstr "" @@ -9283,6 +9379,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:36 #: ../../library/Class/Codification.php:248 #: ../../application/modules/telephone/controllers/RechercheController.php:67 +#: ../../library/Class/Codification.php:222 msgid "Biographie de l'auteur" msgstr "" @@ -9298,6 +9395,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:37 #: ../../library/Class/Codification.php:251 #: ../../application/modules/telephone/controllers/RechercheController.php:68 +#: ../../library/Class/Codification.php:225 msgid "Documents similaires" msgstr "" @@ -9331,6 +9429,7 @@ msgstr "" #: ../../library/Class/Codification.php:206 #: ../../library/Class/Codification.php:258 #: ../../library/Class/Codification.php:246 +#: ../../library/Class/Codification.php:220 msgid "Résumés" msgstr "" @@ -9495,7 +9594,7 @@ msgstr "" #: ../../library/Class/Users.php:897 ../../library/Class/Users.php:945 #: ../../library/Class/Users.php:965 ../../library/Class/Users.php:995 #: ../../library/Class/Users.php:1013 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1042 +#: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1041 msgid "Vous n'avez pas les droits suffisants pour suivre une formation" msgstr "" @@ -9505,7 +9604,7 @@ msgstr "" #: ../../library/Class/Users.php:900 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:968 ../../library/Class/Users.php:998 #: ../../library/Class/Users.php:1016 ../../library/Class/Users.php:1011 -#: ../../library/Class/Users.php:1045 +#: ../../library/Class/Users.php:1045 ../../library/Class/Users.php:1044 msgid "Vous n'avez pas les droits suffisants pour diriger une formation" msgstr "" @@ -9520,7 +9619,7 @@ msgstr "" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1064 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1112 ../../library/Class/Users.php:1107 -#: ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1140 #, php-format msgid "Votre identifiant : %s\n" msgstr "" @@ -9539,6 +9638,7 @@ msgstr "" #: ../../library/Class/Codification.php:212 #: ../../library/Class/Codification.php:264 #: ../../library/Class/Codification.php:252 +#: ../../library/Class/Codification.php:226 msgid "Discographie" msgstr "" @@ -9549,6 +9649,7 @@ msgstr "" #: ../../library/Class/Codification.php:218 #: ../../library/Class/Codification.php:270 #: ../../library/Class/Codification.php:258 +#: ../../library/Class/Codification.php:232 msgid "Babelthèque" msgstr "" @@ -9906,6 +10007,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:164 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:90 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:89 +#: ../../library/Class/Codification.php:233 msgid "Notices liées" msgstr "" @@ -10653,6 +10755,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:65 #: ../../library/Class/Exemplaire.php:229 #: ../../library/Class/Exemplaire.php:230 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 msgid "Disponible" msgstr "" @@ -10727,6 +10830,8 @@ msgstr "" #: ../../library/ZendAfi/Form/SuggestionAchat.php:27 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:36 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:40 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:40 msgid "ex: Harry Potter à l'école des sorciers" msgstr "" @@ -10742,6 +10847,8 @@ msgstr "" #: ../../library/ZendAfi/Form/SuggestionAchat.php:34 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:47 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:47 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:51 msgid "Code-barres / ISBN" msgstr "" @@ -10752,6 +10859,8 @@ msgstr "" #: ../../library/ZendAfi/Form/SuggestionAchat.php:55 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:68 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:71 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:77 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:80 msgid "Informations sur le document" msgstr "" @@ -11481,6 +11590,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:52 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:53 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:54 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:55 msgid "Recherche avancée" msgstr "" @@ -11808,6 +11919,8 @@ msgstr "" #: ../../library/Class/Codification.php:164 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:152 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:126 msgid "Livres et Vidéos" msgstr "" @@ -11817,6 +11930,8 @@ msgstr "" #: ../../library/Class/Codification.php:175 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:163 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:137 msgid "Musique" msgstr "" @@ -11825,6 +11940,7 @@ msgstr "" #: ../../library/Class/Codification.php:209 #: ../../library/Class/Codification.php:261 #: ../../library/Class/Codification.php:249 +#: ../../library/Class/Codification.php:223 msgid "Documents de la même série" msgstr "" @@ -11873,7 +11989,7 @@ msgstr "" #: ../../library/Class/Users.php:904 ../../library/Class/Users.php:952 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:1002 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1015 -#: ../../library/Class/Users.php:1049 +#: ../../library/Class/Users.php:1049 ../../library/Class/Users.php:1048 msgid "Vous devez fournir une adresse mail valide" msgstr "" @@ -11882,7 +11998,7 @@ msgstr "" #: ../../library/Class/Users.php:907 ../../library/Class/Users.php:955 #: ../../library/Class/Users.php:975 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1018 -#: ../../library/Class/Users.php:1052 +#: ../../library/Class/Users.php:1052 ../../library/Class/Users.php:1051 msgid "Vous devez saisir un numéro de téléphone" msgstr "" @@ -11891,7 +12007,7 @@ msgstr "" #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1039 #: ../../library/Class/Users.php:1065 ../../library/Class/Users.php:1095 #: ../../library/Class/Users.php:1113 ../../library/Class/Users.php:1108 -#: ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1141 #, php-format msgid "Votre mot de passe : %s\n" msgstr "" @@ -12030,6 +12146,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/DomainWidget.php:31 #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:108 #: ../../library/ZendAfi/Form/Panier.php:38 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:130 msgid "Généralités" msgstr "" @@ -12477,6 +12594,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:127 #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:44 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:33 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:30 msgid "Style de boite" msgstr "" @@ -12505,6 +12623,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:57 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:129 msgid "Liste" msgstr "" @@ -12613,6 +12732,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:190 #: ../../library/Class/AdminVar.php:182 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:195 +#: ../../library/Class/AdminVar.php:183 msgid "Position" msgstr "" @@ -13091,6 +13211,7 @@ msgstr "" #: ../../library/Class/Users.php:1465 ../../library/Class/Users.php:1486 #: ../../library/Class/Users.php:1520 ../../library/Class/Users.php:1528 #: ../../library/Class/Users.php:1523 ../../library/Class/Users.php:1557 +#: ../../library/Class/Users.php:1556 msgid "Mes paniers" msgstr "" @@ -13099,6 +13220,7 @@ msgstr "" #: ../../library/Class/Users.php:1498 ../../library/Class/Users.php:1519 #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1561 #: ../../library/Class/Users.php:1556 ../../library/Class/Users.php:1590 +#: ../../library/Class/Users.php:1589 msgid "Mes paniers rattachés à un domaine" msgstr "" @@ -13346,6 +13468,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/accueil/calendrier.phtml:93 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:86 msgid "aucun" msgstr "" @@ -13810,6 +13933,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Analytics.php:71 #: ../../library/Class/Codification.php:260 +#: ../../library/Class/Codification.php:234 msgid "Contient" msgstr "" @@ -13966,7 +14090,7 @@ msgstr "" #: ../../library/Class/Users.php:885 ../../library/Class/Users.php:932 #: ../../library/Class/Users.php:952 ../../library/Class/Users.php:982 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:995 -#: ../../library/Class/Users.php:1029 +#: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1028 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "" @@ -13974,7 +14098,7 @@ msgstr "" #: ../../library/Class/Users.php:940 ../../library/Class/Users.php:988 #: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1062 ../../library/Class/Users.php:1057 -#: ../../library/Class/Users.php:1091 +#: ../../library/Class/Users.php:1091 ../../library/Class/Users.php:1090 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "" @@ -13982,7 +14106,7 @@ msgstr "" #: ../../library/Class/Users.php:941 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:1015 ../../library/Class/Users.php:1045 #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1058 -#: ../../library/Class/Users.php:1092 +#: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1091 msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:" msgstr "" @@ -14008,6 +14132,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59 msgid "En attente" msgstr "" @@ -14683,6 +14808,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:81 #: ../../library/ZendAfi/Form/Configuration/FormationsWidget.php:78 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 msgid "Par ordre de sélection" msgstr "" @@ -14820,6 +14946,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:137 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:157 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:158 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:226 msgid "Racine" msgstr "" @@ -14834,12 +14961,14 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:215 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:235 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:236 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:304 msgid "Catégories d'articles" msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:225 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:245 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:246 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:314 msgid "Liste des articles" msgstr "" @@ -15142,11 +15271,14 @@ msgid "Rendre le livre" msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:70 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:72 msgid "Chercher dans les bibliothèques de votre choix" msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:81 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:84 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 msgid "La recherche s'effectue dans tout le réseau." msgstr "" @@ -15212,11 +15344,13 @@ msgstr "" #: ../../library/Class/Codification.php:182 #: ../../library/Class/Codification.php:170 +#: ../../library/Class/Codification.php:144 msgid "En rayon" msgstr "" #: ../../library/Class/Codification.php:184 #: ../../library/Class/Codification.php:172 +#: ../../library/Class/Codification.php:146 msgid "Prix" msgstr "" @@ -15260,36 +15394,44 @@ msgid "Test de l'API Redmine" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:36 +#: ../../application/modules/admin/controllers/IndexController.php:42 msgid "Le site est en ligne" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:37 +#: ../../application/modules/admin/controllers/IndexController.php:43 msgid "Le site est indisponible" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:40 +#: ../../application/modules/admin/controllers/IndexController.php:46 msgid "Rendre le site indisponible" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:41 +#: ../../application/modules/admin/controllers/IndexController.php:47 msgid "Remettre le site en ligne" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:58 +#: ../../application/modules/admin/controllers/IndexController.php:64 msgid "Gestion des variables" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:77 +#: ../../application/modules/admin/controllers/IndexController.php:83 #, php-format msgid "Variable %s sauvegardée" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:84 +#: ../../application/modules/admin/controllers/IndexController.php:90 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:91 +#: ../../application/modules/admin/controllers/IndexController.php:97 #, php-format msgid "Modifier la variable: %s" msgstr "" @@ -15628,14 +15770,17 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:69 #: ../../application/modules/admin/views/scripts/index/index.phtml:65 +#: ../../application/modules/admin/views/scripts/index/index.phtml:41 msgid "Participez à la communauté" msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:73 +#: ../../application/modules/admin/views/scripts/index/index.phtml:49 msgid "Salle de discussion #Bokeh" msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:50 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -17084,6 +17229,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/Service.php:226 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:56 +#: ../../library/Class/WebService/SIGB/Nanook/Service.php:228 msgid "Échec de l'authentification par le webservice" msgstr "" @@ -17094,6 +17240,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:11 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55 msgid "URL" msgstr "" @@ -17122,18 +17269,22 @@ msgid "Date de suggestion" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 msgid "Vérifiée" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 msgid "Acceptée" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 msgid "Rejetée" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 msgid "Commandée" msgstr "" @@ -17141,17 +17292,20 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:97 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:129 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134 #, php-format msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\"" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:83 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:115 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120 msgid "Échec de la suggestion, une erreur inconnue est survenue." msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:86 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:118 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123 #, php-format msgid "Échec de la suggestion, le webservice a répondu \"%s\"" msgstr "" @@ -17286,46 +17440,55 @@ msgstr "" #: ../../library/Class/AdminVar.php:129 ../../library/Class/AdminVar.php:127 #: ../../library/Class/AdminVar.php:130 ../../library/Class/AdminVar.php:130 +#: ../../library/Class/AdminVar.php:131 msgid "Activer ou désactiver le module formation" msgstr "" #: ../../library/Class/AdminVar.php:131 ../../library/Class/AdminVar.php:129 #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:132 +#: ../../library/Class/AdminVar.php:133 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "" #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:130 #: ../../library/Class/AdminVar.php:133 ../../library/Class/AdminVar.php:133 +#: ../../library/Class/AdminVar.php:134 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "" #: ../../library/Class/AdminVar.php:134 ../../library/Class/AdminVar.php:132 #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:135 +#: ../../library/Class/AdminVar.php:136 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "" #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:133 #: ../../library/Class/AdminVar.php:136 ../../library/Class/AdminVar.php:136 +#: ../../library/Class/AdminVar.php:137 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "" #: ../../library/Class/AdminVar.php:137 ../../library/Class/AdminVar.php:135 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:138 +#: ../../library/Class/AdminVar.php:139 msgid "Activation des boîtes dans les menus" msgstr "" #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:136 #: ../../library/Class/AdminVar.php:139 ../../library/Class/AdminVar.php:139 +#: ../../library/Class/AdminVar.php:140 msgid "Interdire la modification de la fiche abonne" msgstr "" #: ../../library/Class/AdminVar.php:140 ../../library/Class/AdminVar.php:138 #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:141 +#: ../../library/Class/AdminVar.php:142 msgid "Url d'import d'un agenda TYPO3" msgstr "" #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:139 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:142 +#: ../../library/Class/AdminVar.php:143 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;" @@ -17334,16 +17497,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:140 #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:143 +#: ../../library/Class/AdminVar.php:144 msgid "Libellé pour la PCDM4" msgstr "" #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:141 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:144 +#: ../../library/Class/AdminVar.php:145 msgid "Libellé pour la Dewey" msgstr "" #: ../../library/Class/AdminVar.php:154 ../../library/Class/AdminVar.php:152 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:155 +#: ../../library/Class/AdminVar.php:156 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 => " @@ -17352,11 +17518,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:153 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:156 +#: ../../library/Class/AdminVar.php:157 msgid "Activation de la disponibilite dans le resultat de recherche." msgstr "" #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:154 #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:157 +#: ../../library/Class/AdminVar.php:158 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -17365,47 +17533,56 @@ msgstr "" #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:155 #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:158 +#: ../../library/Class/AdminVar.php:159 msgid "Nom du site" msgstr "" #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:156 #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:159 +#: ../../library/Class/AdminVar.php:160 msgid "Url de recherche" msgstr "" #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:157 #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:160 +#: ../../library/Class/AdminVar.php:161 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:158 #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:161 +#: ../../library/Class/AdminVar.php:162 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:159 #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:162 +#: ../../library/Class/AdminVar.php:163 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "" #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:160 #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:163 +#: ../../library/Class/AdminVar.php:164 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "" #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:161 #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:164 +#: ../../library/Class/AdminVar.php:165 msgid "Activation de la navigation collaborative" msgstr "" #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:162 #: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:165 +#: ../../library/Class/AdminVar.php:166 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "" #: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:164 #: ../../library/Class/AdminVar.php:167 ../../library/Class/AdminVar.php:167 +#: ../../library/Class/AdminVar.php:168 #, php-format msgid "" "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous " @@ -17414,11 +17591,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:166 #: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:169 +#: ../../library/Class/AdminVar.php:170 msgid "Activation des fonctions avancées du téléphone" msgstr "" #: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:169 #: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:172 +#: ../../library/Class/AdminVar.php:173 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -17426,6 +17605,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:171 #: ../../library/Class/AdminVar.php:174 ../../library/Class/AdminVar.php:174 +#: ../../library/Class/AdminVar.php:175 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -17433,6 +17613,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:174 #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:177 +#: ../../library/Class/AdminVar.php:178 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 " @@ -17441,11 +17622,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:175 #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:178 +#: ../../library/Class/AdminVar.php:179 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:176 #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:179 +#: ../../library/Class/AdminVar.php:180 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 " @@ -17454,16 +17637,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:177 #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:180 +#: ../../library/Class/AdminVar.php:181 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:178 #: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:181 +#: ../../library/Class/AdminVar.php:182 msgid "Position de la pagination en résultat de recherche" msgstr "" #: ../../library/Class/AdminVar.php:184 ../../library/Class/AdminVar.php:182 #: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:185 +#: ../../library/Class/AdminVar.php:186 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 " @@ -17472,13 +17658,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:184 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:187 -#: ../../library/Class/AdminVar.php:188 +#: ../../library/Class/AdminVar.php:188 ../../library/Class/AdminVar.php:189 msgid "Activation des formulaires" msgstr "" #: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:194 #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:197 -#: ../../library/Class/AdminVar.php:198 +#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:199 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -17487,7 +17673,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:195 #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:198 -#: ../../library/Class/AdminVar.php:199 +#: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:200 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" @@ -17495,7 +17681,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:196 #: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:199 -#: ../../library/Class/AdminVar.php:200 +#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:201 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -17503,7 +17689,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:201 ../../library/Class/AdminVar.php:199 #: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:202 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:231 msgid "" "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au " "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre " @@ -17512,19 +17698,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:203 ../../library/Class/AdminVar.php:201 #: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:204 -#: ../../library/Class/AdminVar.php:232 +#: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi" msgstr "" #: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:203 #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:206 -#: ../../library/Class/AdminVar.php:234 +#: ../../library/Class/AdminVar.php:234 ../../library/Class/AdminVar.php:235 msgid "Activer ou désactiver la bibliothèque numérique" msgstr "" #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:204 #: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:207 -#: ../../library/Class/AdminVar.php:235 +#: ../../library/Class/AdminVar.php:235 ../../library/Class/AdminVar.php:236 msgid "" "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation " "de la bibliothèque numérique" @@ -17539,13 +17725,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:245 msgid "Paramétrage CVS" msgstr "" #: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:208 #: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:211 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:240 msgid "Libellé de regroupement des abonnés" msgstr "" @@ -17553,7 +17740,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:219 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:247 +#: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Numilog\">Numilog</a>" @@ -17561,31 +17748,31 @@ msgstr "" #: ../../library/Class/AdminVar.php:221 ../../library/Class/AdminVar.php:219 #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:222 -#: ../../library/Class/AdminVar.php:249 +#: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:250 msgid "Adresse du serveur OAI Cyberlibris" msgstr "" #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:223 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:251 msgid "Identifiant SSO Cyberlibris" msgstr "" #: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:222 #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:225 -#: ../../library/Class/AdminVar.php:252 +#: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 msgid "Login ARTE VOD" msgstr "" #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:223 #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:226 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 msgid "Clé ARTE VOD" msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:224 #: ../../library/Class/AdminVar.php:227 ../../library/Class/AdminVar.php:227 -#: ../../library/Class/AdminVar.php:254 +#: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:255 msgid "Clé ARTE VOD Single Sign-On" msgstr "" @@ -17593,6 +17780,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:230 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:257 +#: ../../library/Class/AdminVar.php:258 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>" @@ -17600,111 +17788,111 @@ msgstr "" #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:234 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:237 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:265 msgid "ID client Jamendo" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:236 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:240 -#: ../../library/Class/AdminVar.php:267 +#: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 msgid "Clé de sécurité Vodeclic" msgstr "" #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:237 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:241 -#: ../../library/Class/AdminVar.php:268 +#: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:269 msgid "Identifiant partenaire Vodeclic" msgstr "" #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:269 +#: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:270 msgid "Identifiant code bibliothèque Vodeclic" msgstr "" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:240 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:271 +#: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:272 msgid "Activation du PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:272 +#: ../../library/Class/AdminVar.php:272 ../../library/Class/AdminVar.php:273 msgid "Gln de la collectivité, il est fourni par Dilicom." msgstr "" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:242 #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:274 msgid "Mot de passe de la collectivité, il est fourni par Dilicom." msgstr "" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:243 #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:274 ../../library/Class/AdminVar.php:275 msgid "Contracteur du PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:244 #: ../../library/Class/AdminVar.php:248 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 msgid "Url du serveur PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:245 #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:277 msgid "" "Liste des adresses IP publiques autorisées pour la consultation des documents" msgstr "" #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:247 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:251 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 msgid "Serveur FTP de diffusion des offres PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:248 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:252 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:249 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:280 +#: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:250 #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:281 +#: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:251 #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:255 -#: ../../library/Class/AdminVar.php:282 +#: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:283 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:252 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:284 msgid "" "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)" msgstr "" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:257 -#: ../../library/Class/AdminVar.php:284 +#: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:285 msgid "Message d'avertissement affiché sur la popup d'emprunt" msgstr "" #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:258 -#: ../../library/Class/AdminVar.php:285 +#: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:286 msgid "" "Votre compte sera mis à jour dans un délai de 15 minutes après le retour " "anticipé du document." @@ -17712,7 +17900,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:255 #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:259 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:287 msgid "" "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie " "par MyCOW.EU. Elle active la ressource numérique dans le portail." @@ -17720,37 +17908,37 @@ msgstr "" #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:257 #: ../../library/Class/AdminVar.php:261 ../../library/Class/AdminVar.php:261 -#: ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 msgid "Adresse du serveur OAI 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:260 ../../library/Class/AdminVar.php:262 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:293 +#: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:294 msgid "Identifiant du portail chez 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:262 ../../library/Class/AdminVar.php:264 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:271 -#: ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:299 msgid "Adresse du serveur Orphea" msgstr "" #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:272 -#: ../../library/Class/AdminVar.php:299 +#: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:300 msgid "Nom de l'utilisateur Orphea" msgstr "" #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:273 -#: ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:300 ../../library/Class/AdminVar.php:301 msgid "Mot de passe de l'utilisateur Orphea" msgstr "" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:274 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:302 msgid "" "Paramètre permettant de choisir la langue des des ressources. La liste des " "codes disponibles se trouve à cette adresse http://help.orphea.com/43/" @@ -17759,49 +17947,49 @@ msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:304 msgid "Activation de la ressource numérique PlanetNemo" msgstr "" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:278 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 msgid "Adresse du serveur de la ressource numérique Orthodidacte" msgstr "" #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:273 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 msgid "Domaine utilisée par le serveur lectura pour authentification" msgstr "" #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:310 msgid "Identifiant fournit par lekiosk.com" msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:277 #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:284 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:312 msgid "Type de SSO lekiosk.com" msgstr "" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 #: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:285 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:313 msgid "Mode d'authentification" msgstr "" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:317 msgid "Version de Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:285 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292 -#: ../../library/Class/AdminVar.php:319 +#: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:320 msgid "" "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par " "Kidilangues." @@ -17809,7 +17997,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:286 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:293 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:321 msgid "" "Clé d'identification Kidilangues pour le portail. Cette clé doit être " "fournie par Kidilangues." @@ -17817,19 +18005,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:287 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:294 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:322 msgid "Login du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:295 -#: ../../library/Class/AdminVar.php:322 +#: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:323 msgid "Password du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:325 msgid "" "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit " "être fournie par Premier-Chapitre." @@ -17837,19 +18025,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:298 -#: ../../library/Class/AdminVar.php:325 +#: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:326 msgid "Login du portail fourni par Premier-Chapitre." msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:292 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:299 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:327 msgid "Password du portail fourni par Premier-Chapitre" msgstr "" #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:300 -#: ../../library/Class/AdminVar.php:204 +#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:205 msgid "" "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par " "défaut 30 jours)." @@ -17857,19 +18045,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:301 -#: ../../library/Class/AdminVar.php:205 +#: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:206 msgid "Désactivation des suggestions d'achats" msgstr "" #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:206 +#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:207 msgid "Url du serveur redmine" msgstr "" #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:304 -#: ../../library/Class/AdminVar.php:208 +#: ../../library/Class/AdminVar.php:208 ../../library/Class/AdminVar.php:209 msgid "Identifiant du project Redmine" msgstr "" @@ -17995,6 +18183,7 @@ msgstr "" #: ../../application/modules/admin/controllers/RedmineController.php:26 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:34 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:31 msgid "Assistance" msgstr "" @@ -18534,25 +18723,25 @@ msgid "Compte d'assistance: %s" msgstr "" #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:262 -#: ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:290 msgid "Type de SSO OneDTouch" msgstr "" #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:300 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:303 -#: ../../library/Class/AdminVar.php:207 +#: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:208 msgid "Url du proxy Redmine" msgstr "" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:302 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:305 -#: ../../library/Class/AdminVar.php:209 +#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:210 msgid "Url du connecteur Le Social" msgstr "" #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:210 +#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:211 msgid "Id du connecteur Le Social" msgstr "" @@ -18664,54 +18853,63 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 msgid "Par ordre alphabétique" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:88 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 msgid "En haut" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 msgid "En bas" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 msgid "En haut et en bas" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99 msgid "Ouvertures" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:103 msgid "Adresse mail" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:126 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 msgid "Onglets" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:132 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 msgid "Gauche" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:135 msgid "Droite" msgstr "" @@ -18909,16 +19107,19 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:103 #: ../../application/modules/admin/controllers/IndexController.php:119 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:127 msgid "Mise à jour de la charte graphique" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:129 #: ../../application/modules/admin/controllers/IndexController.php:130 +#: ../../application/modules/admin/controllers/IndexController.php:138 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:130 #: ../../application/modules/admin/controllers/IndexController.php:131 +#: ../../application/modules/admin/controllers/IndexController.php:139 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -19364,6 +19565,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:113 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 msgid "Ouverture" msgstr "" @@ -19406,7 +19608,7 @@ msgid "PIWIK authentication token for widgets" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:238 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 msgid "ID client SoundCloud" msgstr "" @@ -19872,6 +20074,7 @@ msgstr "" #: ../../application/modules/opac/controllers/BibController.php:244 #: ../../application/modules/opac/controllers/BibController.php:238 +#: ../../application/modules/opac/controllers/BibController.php:256 msgid "Carte des bibliothèques" msgstr "" @@ -20260,8 +20463,8 @@ msgstr "" msgid "Dimanche" msgstr "" -#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:179 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:179 +#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:180 #, php-format msgid "le %s" msgstr "" @@ -20343,27 +20546,27 @@ msgid "Activer ou désactiver la ressource numérique Assimil" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:294 +#: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:295 msgid "Adresse du serveur OAI Cité de la Musique" msgstr "" #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:295 +#: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:296 msgid "Identifiant d'accès au serveur OAI Cité de la Musique" msgstr "" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:269 -#: ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:297 msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:211 +#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:212 msgid "API utilisée pour les cartes statiques" msgstr "" #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:212 +#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:213 msgid "API" msgstr "" @@ -20474,6 +20677,7 @@ msgid "Contenu HTML:" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:108 +#: ../../application/modules/admin/controllers/IndexController.php:116 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -20928,7 +21132,7 @@ msgstr "" msgid "AFI-Multimédia n'est pas activé" msgstr "" -#: ../../library/Class/AdminVar.php:186 +#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:187 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -21104,3 +21308,153 @@ msgstr "" #, php-format msgid ", %s mails envoyés" msgstr "" + +#: ../../application/modules/admin/controllers/IndexController.php:25 +#, php-format +msgid " version %s" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:12 +msgid "» Modifier «" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:17 +msgid "Etat du site" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:18 +msgid "Nom du domaine" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:43 +msgid "Site communautaire" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:44 +msgid "Google group Bokeh" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:45 +msgid "Wiki Bokeh" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:46 +msgid "Code source" +msgstr "" + +#: ../../library/Class/AdminVar.php:129 +msgid "Date du dernier vidage manuel du cache" +msgstr "" + +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:315 +msgid "Date de mise à jour" +msgstr "" + +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:316 +msgid "Créateur" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:36 +msgid "Largeur du champ de saisie" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:46 +msgid "Proposer la sélection de bibliothèques" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:52 +msgid "Proposer la sélection de sites" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:59 +msgid "Proposer la sélection de types de doc" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:64 +msgid "Message du bouton pour rechercher" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:69 +msgid "Message au dessus du champ de saisie" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:74 +msgid "Message d'exemple dans le champ de saisie" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:79 +msgid "Message au-dessous du champ de recherche" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:84 +msgid "Afficher le lien recherche avancée" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:89 +msgid "Tri du résultat de recherche" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:94 +msgid "Basculer automatiquement sur le profil" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:103 +msgid "Domaines sélectionnables" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:110 +msgid "Mode de sélection" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:111 +msgid "Sélection dans une liste déroulante" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:112 +msgid "Sélection multiple par cases à cocher" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:134 +msgid "Filtres" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:46 +msgid "Intégration des données : " +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:52 +msgid "Dernier traitement d'intégration effectué le" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:60 +msgid "Traitement en cours depuis le" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:76 +msgid "Traitements d'intégration en retard de" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:77 +#, php-format +msgid "%s jours" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:85 +msgid "Fichier(s) en file d'attente" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53 +msgid "Enregistrer comme filtres par défaut" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:183 +msgid "Restreindre à " +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:191 +msgid "Partout" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:195 +msgid "Domaine de recherche" +msgstr "" diff --git a/library/translation/ro.mo b/library/translation/ro.mo index f80b1baf4c4217edc25c0e840071cdefa69fb08f..0242757500b5e38e2142341ddc46533b2fa11143 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 67bdc26ce905570b47347c42f7a700b1d58b8311..809836ee59746c24b305cda5b01465ffc1cb13a1 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: 2016-11-07 15:21+0100\n" +"POT-Creation-Date: 2016-11-21 12:10+0100\n" "PO-Revision-Date: 2011-07-14 18:15+0200\n" "Last-Translator: Lupu Mariana <lupumariana@yahoo.com>\n" "Language-Team: Romanian\n" @@ -277,6 +277,11 @@ msgstr "cu excepÅ£ia" msgid " sur " msgstr "" +#: ../../application/modules/admin/controllers/IndexController.php:25 +#, fuzzy, php-format +msgid " version %s" +msgstr "Versiune" + #: ../../library/ZendAfi/View/Helper/TagArticleEvent.php:56 #, php-format msgid " à %s" @@ -540,6 +545,11 @@ msgstr "" msgid "%s fichier(s) à traiter dans %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:77 +#, fuzzy, php-format +msgid "%s jours" +msgstr "ÃŽmprumuturi în curs" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:136 #, fuzzy, php-format msgid "%s le panier %s contient %d document" @@ -1048,12 +1058,12 @@ msgid "AFI-Multimédia n'est pas activé" msgstr "" #: ../../library/Class/AdminVar.php:308 ../../library/Class/AdminVar.php:308 -#: ../../library/Class/AdminVar.php:212 +#: ../../library/Class/AdminVar.php:212 ../../library/Class/AdminVar.php:213 msgid "API" msgstr "" #: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:307 -#: ../../library/Class/AdminVar.php:211 +#: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:212 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -1149,6 +1159,7 @@ msgid "Abonnés de la lettre: %s" msgstr "Vizualizarea scrisorii:" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 msgid "Acceptée" msgstr "" @@ -1186,6 +1197,7 @@ msgstr "" #: ../../library/Class/MoteurRecherche.php:594 #: ../../library/Class/MoteurRecherche.php:599 #: ../../library/Class/MoteurRecherche.php:605 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:41 msgid "Accueil" msgstr "Pagină iniÅ£ială" @@ -1314,47 +1326,52 @@ msgstr "AcÅ£iune" #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:153 #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:156 +#: ../../library/Class/AdminVar.php:157 #, fuzzy msgid "Activation de la disponibilite dans le resultat de recherche." msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare" #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:161 #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:164 +#: ../../library/Class/AdminVar.php:165 msgid "Activation de la navigation collaborative" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:269 #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:303 +#: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:304 #, fuzzy msgid "Activation de la ressource numérique PlanetNemo" msgstr "Resurse OAI" #: ../../library/Class/AdminVar.php:137 ../../library/Class/AdminVar.php:135 #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:138 +#: ../../library/Class/AdminVar.php:139 msgid "Activation des boîtes dans les menus" msgstr "" #: ../../library/Class/AdminVar.php:168 ../../library/Class/AdminVar.php:166 #: ../../library/Class/AdminVar.php:169 ../../library/Class/AdminVar.php:169 +#: ../../library/Class/AdminVar.php:170 msgid "Activation des fonctions avancées du téléphone" msgstr "" #: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:184 #: ../../library/Class/AdminVar.php:187 ../../library/Class/AdminVar.php:187 -#: ../../library/Class/AdminVar.php:188 +#: ../../library/Class/AdminVar.php:188 ../../library/Class/AdminVar.php:189 #, fuzzy msgid "Activation des formulaires" msgstr "Moderare alerte" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:240 #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:271 +#: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:272 msgid "Activation du PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:171 ../../library/Class/AdminVar.php:169 #: ../../library/Class/AdminVar.php:172 ../../library/Class/AdminVar.php:172 +#: ../../library/Class/AdminVar.php:173 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1382,7 +1399,7 @@ msgstr "Activează instrumentele de acces" #: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:203 #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:206 -#: ../../library/Class/AdminVar.php:234 +#: ../../library/Class/AdminVar.php:234 ../../library/Class/AdminVar.php:235 #, fuzzy msgid "Activer ou désactiver la bibliothèque numérique" msgstr "Bibliotecă digitală" @@ -1394,6 +1411,7 @@ msgstr "Bibliotecă digitală" #: ../../library/Class/AdminVar.php:129 ../../library/Class/AdminVar.php:127 #: ../../library/Class/AdminVar.php:130 ../../library/Class/AdminVar.php:130 +#: ../../library/Class/AdminVar.php:131 #, fuzzy msgid "Activer ou désactiver le module formation" msgstr "Adaugă o localizare" @@ -1498,6 +1516,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Library.php:172 #: ../../application/modules/opac/controllers/AbonneController.php:453 #: ../../application/modules/opac/controllers/AbonneController.php:455 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 msgid "Adresse" msgstr "Adresă " @@ -1529,36 +1548,37 @@ msgstr "Adresa destinatarului lipseÅŸte." #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:257 #: ../../library/Class/AdminVar.php:261 ../../library/Class/AdminVar.php:261 -#: ../../library/Class/AdminVar.php:288 +#: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 msgid "Adresse du serveur OAI 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:294 +#: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:295 msgid "Adresse du serveur OAI Cité de la Musique" msgstr "" #: ../../library/Class/AdminVar.php:221 ../../library/Class/AdminVar.php:219 #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:222 -#: ../../library/Class/AdminVar.php:249 +#: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:250 msgid "Adresse du serveur OAI Cyberlibris" msgstr "" #: ../../library/Class/AdminVar.php:262 ../../library/Class/AdminVar.php:264 #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:271 -#: ../../library/Class/AdminVar.php:298 +#: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:299 msgid "Adresse du serveur Orphea" msgstr "" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:271 #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:278 -#: ../../library/Class/AdminVar.php:305 +#: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:306 msgid "Adresse du serveur de la ressource numérique Orthodidacte" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:101 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:103 #, fuzzy msgid "Adresse mail" msgstr "Adresă " @@ -1585,6 +1605,7 @@ msgstr "Adresă " #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:153 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:189 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:272 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:116 #, fuzzy msgid "Affichage" msgstr "AfiÅŸează Agenda" @@ -1772,6 +1793,11 @@ msgstr "AfiÅŸează harta" msgid "Afficher la notice" msgstr "AfiÅŸează instrucÅ£iunea" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:84 +#, fuzzy +msgid "Afficher le lien recherche avancée" +msgstr "Rezultatul căutarii" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:203 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:259 @@ -2088,6 +2114,7 @@ msgstr "Adaugă în coÅŸ" #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:159 #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:162 +#: ../../library/Class/AdminVar.php:163 msgid "Ajouter automatiquement une boîte panier dans la division flottante" msgstr "" @@ -2537,6 +2564,7 @@ msgstr "Anulare" #: ../../application/modules/telephone/views/scripts/recherche/viewnotice.phtml:16 #: ../../library/Class/Codification.php:173 #: ../../library/Class/Codification.php:161 +#: ../../library/Class/Codification.php:135 msgid "Année" msgstr "An" @@ -2569,6 +2597,7 @@ msgstr "An de publicaÅ£ie - din" #: ../../library/Class/CriteresRecherche.php:127 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/Class/CriteresRecherche.php:140 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 msgid "Année de publication" msgstr "An de publicare" @@ -2650,6 +2679,7 @@ msgstr "Arhive video" #: ../../library/Class/Codification.php:216 #: ../../library/Class/Codification.php:268 #: ../../library/Class/Codification.php:256 +#: ../../library/Class/Codification.php:230 msgid "Archives vidéo" msgstr "Arhive video" @@ -2747,6 +2777,7 @@ msgstr "Aspectul sitului" #: ../../application/modules/admin/controllers/RedmineController.php:26 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:34 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:31 msgid "Assistance" msgstr "" @@ -2796,8 +2827,8 @@ msgstr "nici o" #: ../../library/Class/NoticeHtml.php:228 #: ../../library/Class/NoticeHtml.php:219 #: ../../library/Class/NoticeHtml.php:259 -#: ../../library/Class/NoticeHtml.php:129 ../../library/Class/NoticeHtml.php:77 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/Class/NoticeHtml.php:129 +#: ../../library/Class/NoticeHtml.php:77 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "Nu a fost găsit nici un articol" @@ -3113,7 +3144,8 @@ msgstr "Nici o dată de moderat" #: ../../library/Class/NoticeHtml.php:204 #: ../../library/Class/NoticeHtml.php:195 #: ../../library/Class/NoticeHtml.php:235 -#: ../../library/Class/NoticeHtml.php:105 ../../library/Class/NoticeHtml.php:61 +#: ../../library/Class/NoticeHtml.php:105 +#: ../../library/Class/NoticeHtml.php:61 #: ../../library/ZendAfi/View/Helper/Biographie.php:59 #: ../../library/Class/NoticeHtml.php:50 #: ../../library/ZendAfi/View/Helper/Biographie.php:58 @@ -3300,6 +3332,9 @@ msgstr "Nici un articol găsit" #: ../../library/Class/CriteresRecherche.php:138 #: ../../library/Class/CriteresRecherche.php:139 #: ../../library/ZendAfi/Form/Admin/News.php:61 +#: ../../library/Class/Codification.php:123 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:45 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:45 msgid "Auteur" msgstr "Autor" @@ -3341,6 +3376,7 @@ msgstr "" #: ../../library/Class/Codification.php:124 #: ../../library/Class/Codification.php:161 #: ../../library/Class/Codification.php:149 +#: ../../library/Class/Codification.php:123 msgid "Auteur(s)" msgstr "Autor(i)" @@ -3550,6 +3586,7 @@ msgstr "aprilie" #: ../../library/Class/Codification.php:218 #: ../../library/Class/Codification.php:270 #: ../../library/Class/Codification.php:258 +#: ../../library/Class/Codification.php:232 #, fuzzy msgid "Babelthèque" msgstr "Bibliotecă" @@ -3572,6 +3609,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:47 #: ../../library/Class/Codification.php:254 #: ../../application/modules/telephone/controllers/RechercheController.php:60 +#: ../../library/Class/Codification.php:228 msgid "Bande-annonce" msgstr "Trailer" @@ -3605,6 +3643,10 @@ msgstr "" msgid "Barre verticale" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:94 +msgid "Basculer automatiquement sur le profil" +msgstr "" + #: ../../library/ZendAfi/Form/Redmine/Issue.php:211 #, fuzzy msgid "Base de données : " @@ -3731,6 +3773,7 @@ msgstr "Bibliografii" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:164 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:183 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:50 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque" msgstr "Bibliotecă" @@ -3793,6 +3836,7 @@ msgstr "Biblioteci" #: ../../library/Class/Codification.php:125 #: ../../library/Class/Codification.php:162 #: ../../library/Class/Codification.php:150 +#: ../../library/Class/Codification.php:124 msgid "Bibliothèque(s)" msgstr "Bibliotecă(i)" @@ -3876,6 +3920,7 @@ msgstr "Biografii" #: ../../application/modules/telephone/controllers/RechercheController.php:36 #: ../../library/Class/Codification.php:248 #: ../../application/modules/telephone/controllers/RechercheController.php:67 +#: ../../library/Class/Codification.php:222 #, fuzzy msgid "Biographie de l'auteur" msgstr "Biografii" @@ -3979,6 +4024,7 @@ msgstr "" #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1013 #: ../../library/Class/Users.php:1043 ../../library/Class/Users.php:1061 #: ../../library/Class/Users.php:1056 ../../library/Class/Users.php:1090 +#: ../../library/Class/Users.php:1089 msgid "Bonjour," msgstr "Bună ziua," @@ -4005,6 +4051,7 @@ msgstr "" #: ../../library/Class/Users.php:1040 ../../library/Class/Users.php:1066 #: ../../library/Class/Users.php:1096 ../../library/Class/Users.php:1114 #: ../../library/Class/Users.php:1109 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1142 msgid "Bonne navigation sur le portail" msgstr "Navigare plăcută pe portal" @@ -4104,6 +4151,7 @@ msgstr "Harta" #: ../../application/modules/opac/controllers/BibController.php:244 #: ../../application/modules/opac/controllers/BibController.php:238 +#: ../../application/modules/opac/controllers/BibController.php:256 #, fuzzy msgid "Carte des bibliothèques" msgstr "Fişă bibliotecă: " @@ -4243,6 +4291,7 @@ msgstr "Categorie înrudită" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:215 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:235 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:236 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:304 #, fuzzy msgid "Catégories d'articles" msgstr "Categorie înrudită" @@ -4323,6 +4372,7 @@ msgstr "" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre d'intérêt" msgstr "Centru de interes" @@ -4333,6 +4383,7 @@ msgstr "Centru de interes" #: ../../library/Class/Codification.php:129 #: ../../library/Class/Codification.php:166 #: ../../library/Class/Codification.php:154 +#: ../../library/Class/Codification.php:128 msgid "Centre(s) d'intérêt" msgstr "Centru(e) de interes" @@ -4363,6 +4414,7 @@ msgstr "" #: ../../library/Class/Users.php:970 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1067 +#: ../../library/Class/Users.php:1066 msgid "Cet identifiant existe déjà ." msgstr "Acest nume de utilizator există deja." @@ -4584,7 +4636,8 @@ msgid "Chargement" msgstr "Telefon" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:131 -#: ../../library/Class/NoticeHtml.php:81 ../../library/Class/NoticeHtml.php:122 +#: ../../library/Class/NoticeHtml.php:81 +#: ../../library/Class/NoticeHtml.php:122 #: ../../library/Class/NoticeHtml.php:176 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:159 #: ../../library/Class/NoticeHtml.php:181 @@ -4592,7 +4645,8 @@ msgstr "Telefon" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:183 #: ../../library/Class/NoticeHtml.php:172 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:182 -#: ../../library/Class/NoticeHtml.php:87 ../../library/Class/NoticeHtml.php:158 +#: ../../library/Class/NoticeHtml.php:87 +#: ../../library/Class/NoticeHtml.php:158 #: ../../library/Class/NoticeHtml.php:211 #: ../../library/ZendAfi/View/Helper/ListeNotices.php:199 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:63 @@ -4602,7 +4656,8 @@ msgstr "Telefon" #: ../../library/ZendAfi/View/Helper/ListeNotices.php:175 #: ../../library/Class/NoticeHtml.php:48 #: ../../library/ZendAfi/View/Helper/ListeNotices/Accordeon.php:56 -#: ../../library/Class/NoticeHtml.php:42 ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 +#: ../../library/Class/NoticeHtml.php:42 msgid "Chargement en cours" msgstr "ÃŽncărcare in curs" @@ -4615,6 +4670,7 @@ msgstr "ÃŽncărcare în curs" #: ../../library/Class/AdminVar.php:162 ../../library/Class/AdminVar.php:160 #: ../../library/Class/AdminVar.php:163 ../../library/Class/AdminVar.php:163 +#: ../../library/Class/AdminVar.php:164 #, php-format msgid "Chemin vers les skins personnalisées, relatif à %s" msgstr "" @@ -4626,6 +4682,7 @@ msgid "Chercher dans le menu " msgstr "Căutare după cuvintele conÅ£inute" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:70 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:72 msgid "Chercher dans les bibliothèques de votre choix" msgstr "" @@ -4789,13 +4846,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:223 #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:226 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 msgid "Clé ARTE VOD" msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:224 #: ../../library/Class/AdminVar.php:227 ../../library/Class/AdminVar.php:227 -#: ../../library/Class/AdminVar.php:254 +#: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:255 msgid "Clé ARTE VOD Single Sign-On" msgstr "" @@ -4805,7 +4862,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:285 #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:292 -#: ../../library/Class/AdminVar.php:319 +#: ../../library/Class/AdminVar.php:319 ../../library/Class/AdminVar.php:320 msgid "" "Clé d'encodage Kidilangues pour le portail. Cette clé doit être fournie par " "Kidilangues." @@ -4813,7 +4870,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:286 #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:293 -#: ../../library/Class/AdminVar.php:320 +#: ../../library/Class/AdminVar.php:320 ../../library/Class/AdminVar.php:321 msgid "" "Clé d'identification Kidilangues pour le portail. Cette clé doit être " "fournie par Kidilangues." @@ -4821,7 +4878,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:255 #: ../../library/Class/AdminVar.php:259 ../../library/Class/AdminVar.php:259 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:287 msgid "" "Clé d'identification MyCOW.EU pour le portail. Cette clé doit être fournie " "par MyCOW.EU. Elle active la ressource numérique dans le portail." @@ -4829,7 +4886,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:290 #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 -#: ../../library/Class/AdminVar.php:324 +#: ../../library/Class/AdminVar.php:324 ../../library/Class/AdminVar.php:325 msgid "" "Clé d'identification Premier-Chapitre de la bibliothèque. Cette clé doit " "être fournie par Premier-Chapitre." @@ -4837,7 +4894,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:236 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:240 -#: ../../library/Class/AdminVar.php:267 +#: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 msgid "Clé de sécurité Vodeclic" msgstr "" @@ -4847,11 +4904,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:130 #: ../../library/Class/AdminVar.php:133 ../../library/Class/AdminVar.php:133 +#: ../../library/Class/AdminVar.php:134 msgid "Clé publique pour le cryptage des données AFI-Multimédia" msgstr "" #: ../../library/Class/AdminVar.php:134 ../../library/Class/AdminVar.php:132 #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:135 +#: ../../library/Class/AdminVar.php:136 msgid "Clé publique pour le cryptage des données Aesis Webkiosk" msgstr "" @@ -4887,12 +4946,19 @@ msgstr "Cod Anti-spam" msgid "Code postal" msgstr "Cod poÅŸtal" +#: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#, fuzzy +msgid "Code source" +msgstr "sursă" + #: ../../library/ZendAfi/Form/SuggestionAchat.php:42 #: ../../library/ZendAfi/Form/SuggestionAchat.php:40 #: ../../library/ZendAfi/Form/SuggestionAchat.php:44 #: ../../library/ZendAfi/Form/SuggestionAchat.php:34 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:47 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:47 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:51 msgid "Code-barres / ISBN" msgstr "" @@ -4904,6 +4970,7 @@ msgstr "" #: ../../library/Class/Codification.php:133 #: ../../library/Class/Codification.php:170 #: ../../library/Class/Codification.php:158 +#: ../../library/Class/Codification.php:132 msgid "Collation" msgstr "Comparare" @@ -4926,6 +4993,7 @@ msgstr "Comparare" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:55 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:57 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:59 +#: ../../library/Class/Codification.php:125 msgid "Collection" msgstr "ColecÅ£ie" @@ -4937,6 +5005,7 @@ msgstr "ColecÅ£ie" #: ../../library/Class/Codification.php:126 #: ../../library/Class/Codification.php:163 #: ../../library/Class/Codification.php:151 +#: ../../library/Class/Codification.php:125 msgid "Collection(s)" msgstr "ColecÅ£ie(i)" @@ -4958,6 +5027,7 @@ msgid "Colonnes à afficher" msgstr "FaÅ£ete : %s" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 msgid "Commandée" msgstr "" @@ -5350,7 +5420,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:196 ../../library/Class/AdminVar.php:194 #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:197 -#: ../../library/Class/AdminVar.php:198 +#: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:199 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -5359,7 +5429,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:197 ../../library/Class/AdminVar.php:195 #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:198 -#: ../../library/Class/AdminVar.php:199 +#: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:200 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" @@ -5367,7 +5437,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:198 ../../library/Class/AdminVar.php:196 #: ../../library/Class/AdminVar.php:199 ../../library/Class/AdminVar.php:199 -#: ../../library/Class/AdminVar.php:200 +#: ../../library/Class/AdminVar.php:200 ../../library/Class/AdminVar.php:201 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -5384,13 +5454,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Analytics.php:71 #: ../../library/Class/Codification.php:260 +#: ../../library/Class/Codification.php:234 #, fuzzy msgid "Contient" msgstr "conÅ£ine" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:243 #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:274 +#: ../../library/Class/AdminVar.php:274 ../../library/Class/AdminVar.php:275 msgid "Contracteur du PNB Dilicom" msgstr "" @@ -5568,6 +5639,7 @@ msgstr "Critică" #: ../../application/modules/telephone/controllers/RechercheController.php:32 #: ../../library/Class/Codification.php:244 #: ../../application/modules/telephone/controllers/RechercheController.php:63 +#: ../../library/Class/Codification.php:218 #, fuzzy msgid "Critiques" msgstr "Critică" @@ -5629,6 +5701,11 @@ msgstr "Criterii de selecÅ£ie" msgid "Critères généraux" msgstr "Criterii generale" +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:316 +#, fuzzy +msgid "Créateur" +msgstr "ÃŽnălÅ£ime" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:53 #, fuzzy msgid "Création / nouveauté" @@ -5836,6 +5913,11 @@ msgstr "Solicitarea dvs. de înscriere " msgid "Date de limite d'inscription: " msgstr "Solicitarea dvs. de înscriere " +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:315 +#, fuzzy +msgid "Date de mise à jour" +msgstr "ÃŽncărcare in curs" + #: ../../library/ZendAfi/Form/Admin/User.php:149 #: ../../library/ZendAfi/Form/Admin/User.php:159 #: ../../library/ZendAfi/Form/PreRegistration.php:46 @@ -5877,9 +5959,14 @@ msgstr "Căsuţă de căutare" #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:158 #: ../../library/Class/AdminVar.php:161 ../../library/Class/AdminVar.php:161 +#: ../../library/Class/AdminVar.php:162 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" +#: ../../library/Class/AdminVar.php:129 +msgid "Date du dernier vidage manuel du cache" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #, fuzzy msgid "Date nouveaté" @@ -5995,6 +6082,10 @@ msgstr "" msgid "Demandeur" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:52 +msgid "Dernier traitement d'intégration effectué le" +msgstr "" + #: ../../application/modules/opac/controllers/CmsController.php:145 #: ../../application/modules/opac/controllers/CmsController.php:129 #: ../../application/modules/opac/controllers/CmsController.php:128 @@ -6132,6 +6223,7 @@ msgstr "Descriere" #: ../../application/modules/telephone/controllers/RechercheController.php:30 #: ../../library/Class/Codification.php:243 #: ../../application/modules/telephone/controllers/RechercheController.php:61 +#: ../../library/Class/Codification.php:217 #, fuzzy msgid "Description du document" msgstr "Cerere de rezervare a unui document" @@ -6216,6 +6308,7 @@ msgstr "Cerere de rezervare a unui document" #: ../../library/Class/Codification.php:212 #: ../../library/Class/Codification.php:264 #: ../../library/Class/Codification.php:252 +#: ../../library/Class/Codification.php:226 #, fuzzy msgid "Discographie" msgstr "Biografii" @@ -6233,6 +6326,7 @@ msgid "Discographie complète de" msgstr "Discografie completă aparÅ£inând lui" #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:50 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -6264,6 +6358,7 @@ msgstr "Disponibilitate" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:65 #: ../../library/Class/Exemplaire.php:229 #: ../../library/Class/Exemplaire.php:230 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:64 #, fuzzy msgid "Disponible" msgstr "Disponibilitate" @@ -6301,6 +6396,7 @@ msgstr "InstrucÅ£iuni similare" #: ../../library/Class/Codification.php:209 #: ../../library/Class/Codification.php:261 #: ../../library/Class/Codification.php:249 +#: ../../library/Class/Codification.php:223 msgid "Documents de la même série" msgstr "" @@ -6333,6 +6429,7 @@ msgstr "Documente apărute" #: ../../application/modules/telephone/controllers/RechercheController.php:37 #: ../../library/Class/Codification.php:251 #: ../../application/modules/telephone/controllers/RechercheController.php:68 +#: ../../library/Class/Codification.php:225 #, fuzzy msgid "Documents similaires" msgstr "InstrucÅ£iuni similare" @@ -6375,6 +6472,11 @@ msgstr "Ultimele site-uri adăugate" msgid "Domaine %s sauvegardé" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:195 +#, fuzzy +msgid "Domaine de recherche" +msgstr "Căsuţă de căutare" + #: ../../library/Class/MoteurRecherche.php:383 #: ../../library/Class/MoteurRecherche.php:405 #: ../../library/Class/MoteurRecherche.php:408 @@ -6402,7 +6504,7 @@ msgstr "Cataloguri dinamice" #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:273 #: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:307 +#: ../../library/Class/AdminVar.php:307 ../../library/Class/AdminVar.php:308 msgid "Domaine utilisée par le serveur lectura pour authentification" msgstr "" @@ -6426,7 +6528,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:66 #: ../../library/Trait/JsonDomain.php:33 ../../library/Class/Catalogue.php:565 #: ../../library/Class/Catalogue.php:1162 -#: ../../library/Class/Catalogue.php:1200 ../../library/Class/Catalogue.php:576 +#: ../../library/Class/Catalogue.php:1200 +#: ../../library/Class/Catalogue.php:576 #: ../../library/Class/Catalogue.php:1173 #: ../../library/Class/Catalogue.php:1211 #: ../../library/Class/Catalogue.php:1144 @@ -6436,6 +6539,11 @@ msgstr "" msgid "Domaines" msgstr "Cataloguri dinamice" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:103 +#, fuzzy +msgid "Domaines sélectionnables" +msgstr "Câmpuri selectate" + #: ../../library/ZendAfi/View/Helper/AvisCms.php:38 #, fuzzy msgid "Donner ou modifier votre avis" @@ -6464,12 +6572,14 @@ msgstr "ExprimaÅ£i-vă sau modificaÅ£i-vă părerea" #: ../../application/modules/opac/controllers/RssController.php:233 #: ../../application/modules/admin/views/scripts/index/index.phtml:36 #: ../../application/modules/admin/views/scripts/index/index.phtml:47 +#: ../../application/modules/admin/views/scripts/index/index.phtml:21 msgid "Données en attente de modération" msgstr "Date în aÅŸteptarea moderării" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:135 msgid "Droite" msgstr "" @@ -6583,7 +6693,7 @@ msgstr "ÃŽmprumuturi în curs" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:250 #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:281 +#: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 msgid "Durée maximale (en jours) d'un prêt PNB Dilicom" msgstr "" @@ -6662,7 +6772,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:294 #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:301 -#: ../../library/Class/AdminVar.php:205 +#: ../../library/Class/AdminVar.php:205 ../../library/Class/AdminVar.php:206 #, fuzzy msgid "Désactivation des suggestions d'achats" msgstr "Moderare alerte" @@ -6871,6 +6981,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:58 +#: ../../library/Class/Codification.php:127 msgid "Editeur" msgstr "Editor" @@ -6907,6 +7018,7 @@ msgstr "Editor : %s" #: ../../library/Class/Codification.php:128 #: ../../library/Class/Codification.php:165 #: ../../library/Class/Codification.php:153 +#: ../../library/Class/Codification.php:127 msgid "Editeur(s)" msgstr "Editor(i)" @@ -7030,6 +7142,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/PatronInfoReader.php:37 #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:59 msgid "En attente" msgstr "" @@ -7053,18 +7166,21 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 msgid "En bas" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:88 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:89 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 msgid "En haut" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:85 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:90 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:91 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 msgid "En haut et en bas" msgstr "" @@ -7076,6 +7192,7 @@ msgstr "" #: ../../library/Class/Codification.php:182 #: ../../library/Class/Codification.php:170 +#: ../../library/Class/Codification.php:144 msgid "En rayon" msgstr "" @@ -7092,6 +7209,10 @@ msgstr "" msgid "Enregistrer" msgstr "ÃŽnregistrare" +#: ../../library/ZendAfi/View/Helper/Accueil/Library.php:53 +msgid "Enregistrer comme filtres par défaut" +msgstr "" + #: ../../application/modules/admin/views/scripts/oai/index.phtml:25 #, fuzzy msgid "Entrepot" @@ -7244,6 +7365,8 @@ msgstr "Trimite date" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:75 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:77 #: ../../application/modules/admin/controllers/SystemeController.php:286 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:84 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:86 msgid "Envoyer" msgstr "TrimiteÅ£i" @@ -7304,6 +7427,7 @@ msgstr "Eroare" #: ../../application/modules/admin/controllers/IndexController.php:130 #: ../../application/modules/admin/controllers/IndexController.php:131 +#: ../../application/modules/admin/controllers/IndexController.php:139 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -7418,6 +7542,7 @@ msgid "Erreur(s) : %s" msgstr "Eroare" #: ../../application/modules/admin/controllers/IndexController.php:84 +#: ../../application/modules/admin/controllers/IndexController.php:90 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" @@ -7445,6 +7570,11 @@ msgstr "" msgid "Etat" msgstr "Stare" +#: ../../application/modules/admin/views/scripts/index/index.phtml:17 +#, fuzzy +msgid "Etat du site" +msgstr "Export de coÅŸ" + #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:55 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:48 #: ../../application/modules/opac/views/scripts/abonne/reservations.phtml:52 @@ -7530,6 +7660,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:231 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:228 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 +#: ../../library/Class/Codification.php:219 msgid "Exemplaires" msgstr "Exemplare" @@ -7611,6 +7742,7 @@ msgstr "Versiune" #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:12 #: ../../library/ZendAfi/View/Helper/HistoriqueRecherche.php:31 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:181 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:234 msgid "Expression recherchée" msgstr "Expresie căutată" @@ -7762,7 +7894,8 @@ msgstr "ÃŽnchidere" #: ../../library/Class/NoticeHtml.php:188 #: ../../library/Class/NoticeHtml.php:193 #: ../../library/Class/NoticeHtml.php:184 -#: ../../library/Class/NoticeHtml.php:224 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:224 +#: ../../library/Class/NoticeHtml.php:94 msgid "Fermer les onglets" msgstr "ÃŽnchideÅ£i taburile" @@ -7841,6 +7974,10 @@ msgstr "FiÅŸier fotografie : %s" msgid "Fichier total à traiter : %s" msgstr "FiÅŸier fotografie : %s" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:85 +msgid "Fichier(s) en file d'attente" +msgstr "" + #: ../../library/Class/Batch/DilicomJobOnix.php:190 #, php-format msgid "Fichiers incrémentaux à traiter : %s" @@ -7934,6 +8071,11 @@ msgstr "Gestionare biblioteci" msgid "Filtrer par statut : " msgstr "Filtrează în funcÅ£ie de statut" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:134 +#, fuzzy +msgid "Filtres" +msgstr "Filtrează" + #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:46 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:54 #: ../../library/ZendAfi/View/Helper/FormSortableConnectLists.php:34 @@ -8157,6 +8299,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:132 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:133 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:134 #, fuzzy msgid "Gauche" msgstr "Strat" @@ -8174,6 +8317,7 @@ msgstr "Strat" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:104 #: ../../library/Class/Codification.php:167 #: ../../library/Class/Codification.php:155 +#: ../../library/Class/Codification.php:129 msgid "Genre" msgstr "Gen" @@ -8214,6 +8358,7 @@ msgid "Gestion des utilisateurs" msgstr "Gestionare utilizatori" #: ../../application/modules/admin/controllers/IndexController.php:58 +#: ../../application/modules/admin/controllers/IndexController.php:64 #, fuzzy msgid "Gestion des variables" msgstr "Gestionare biblioteci" @@ -8229,10 +8374,14 @@ msgstr "Administrator de conÅ£inut" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:272 +#: ../../library/Class/AdminVar.php:272 ../../library/Class/AdminVar.php:273 msgid "Gln de la collectivité, il est fourni par Dilicom." msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:44 +msgid "Google group Bokeh" +msgstr "" + #: ../../application/modules/admin/controllers/UsergroupController.php:132 #: ../../application/modules/admin/controllers/UsergroupController.php:159 #: ../../library/ZendAfi/Form/Admin/UserGroup.php:45 @@ -8323,6 +8472,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/DomainWidget.php:31 #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:108 #: ../../library/ZendAfi/Form/Panier.php:38 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:130 msgid "Généralités" msgstr "" @@ -8358,7 +8508,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:204 #: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:207 -#: ../../library/Class/AdminVar.php:235 +#: ../../library/Class/AdminVar.php:235 ../../library/Class/AdminVar.php:236 msgid "" "Gérer la sitothèque dans la bibliothèque numérique, nécessite l'activation " "de la bibliothèque numérique" @@ -8479,6 +8629,7 @@ msgstr "Orar" #: ../../application/modules/opac/controllers/AbonneController.php:849 #: ../../application/modules/opac/controllers/AbonneController.php:867 #: ../../application/modules/opac/controllers/AbonneController.php:869 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:100 #, fuzzy msgid "Horaires" msgstr "Orar" @@ -8494,12 +8645,12 @@ msgstr "" #: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:234 #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:237 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:265 msgid "ID client Jamendo" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:238 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 msgid "ID client SoundCloud" msgstr "" @@ -8529,7 +8680,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:303 #: ../../library/Class/AdminVar.php:306 ../../library/Class/AdminVar.php:306 -#: ../../library/Class/AdminVar.php:210 +#: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:211 msgid "Id du connecteur Le Social" msgstr "" @@ -8570,18 +8721,19 @@ msgstr "" #: ../../library/ZendAfi/Form/Register.php:36 #: ../../library/ZendAfi/Form/Login.php:130 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:73 +#: ../../library/Class/Codification.php:130 msgid "Identifiant" msgstr "Nume de utilizator" #: ../../library/Class/AdminVar.php:222 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:223 ../../library/Class/AdminVar.php:223 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:251 msgid "Identifiant SSO Cyberlibris" msgstr "" #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:269 +#: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:270 #, fuzzy msgid "Identifiant code bibliothèque Vodeclic" msgstr "Gestionare biblioteci" @@ -8594,26 +8746,26 @@ msgid "Identifiant commence par" msgstr "Numele de utilizator începe cu " #: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:295 +#: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:296 msgid "Identifiant d'accès au serveur OAI Cité de la Musique" msgstr "" #: ../../library/Class/AdminVar.php:260 ../../library/Class/AdminVar.php:262 #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:293 +#: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:294 msgid "Identifiant du portail chez 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:294 ../../library/Class/AdminVar.php:297 #: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:304 -#: ../../library/Class/AdminVar.php:208 +#: ../../library/Class/AdminVar.php:208 ../../library/Class/AdminVar.php:209 #, fuzzy msgid "Identifiant du project Redmine" msgstr "Numele de utilizator sau parola incorecte " #: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:309 +#: ../../library/Class/AdminVar.php:309 ../../library/Class/AdminVar.php:310 #, fuzzy msgid "Identifiant fournit par lekiosk.com" msgstr "Numele de utilizator începe cu " @@ -8635,7 +8787,7 @@ msgstr "Numele de utilizator sau parola incorecte " #: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:237 #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:241 -#: ../../library/Class/AdminVar.php:268 +#: ../../library/Class/AdminVar.php:268 ../../library/Class/AdminVar.php:269 msgid "Identifiant partenaire Vodeclic" msgstr "" @@ -9141,6 +9293,8 @@ msgstr "InformaÅ£ie" #: ../../library/ZendAfi/Form/SuggestionAchat.php:55 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:68 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:71 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:77 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:80 #, fuzzy msgid "Informations sur le document" msgstr "InformaÅ£ie" @@ -9242,6 +9396,7 @@ msgstr "ÃŽnscriere" #: ../../library/Class/AdminVar.php:138 ../../library/Class/AdminVar.php:136 #: ../../library/Class/AdminVar.php:139 ../../library/Class/AdminVar.php:139 +#: ../../library/Class/AdminVar.php:140 msgid "Interdire la modification de la fiche abonne" msgstr "" @@ -9275,6 +9430,11 @@ msgstr "Interzicerea rezervărilor" msgid "Intervenants" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:46 +#, fuzzy +msgid "Intégration des données : " +msgstr "Moderare alerte" + msgid "Invalid type given, value should be a string" msgstr "Tip dat invalid, valoarea trebuie să fie un ÅŸir" @@ -9349,6 +9509,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:177 #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:180 +#: ../../library/Class/AdminVar.php:181 #, fuzzy msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "Crearea unui buletin informativ" @@ -9516,6 +9677,7 @@ msgstr "" #: ../../library/Class/Users.php:928 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:978 ../../library/Class/Users.php:996 #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1025 +#: ../../library/Class/Users.php:1024 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "Numele de utilizator ales există deja." @@ -9637,6 +9799,7 @@ msgstr "Biblioteca conÅ£ine %s instrucÅ£iuni." #: ../../library/Class/Users.php:937 ../../library/Class/Users.php:957 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1033 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "Biblioteca este obligatorie pentru rol : %s" @@ -9692,6 +9855,7 @@ msgstr "Prelungire nereuÅŸită" #: ../../application/modules/admin/controllers/IndexController.php:129 #: ../../application/modules/admin/controllers/IndexController.php:130 +#: ../../application/modules/admin/controllers/IndexController.php:138 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" @@ -9780,6 +9944,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:81 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:84 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 msgid "La recherche s'effectue dans tout le réseau." msgstr "" @@ -9907,6 +10073,7 @@ msgstr "Lansare căutare" #: ../../library/Class/Codification.php:171 #: ../../library/ZendAfi/Form/Album.php:173 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue" msgstr "Limba " @@ -9928,6 +10095,7 @@ msgstr "Parola dvs. :%s" #: ../../library/Class/Codification.php:134 #: ../../library/Class/Codification.php:171 #: ../../library/Class/Codification.php:159 +#: ../../library/Class/Codification.php:133 msgid "Langue(s)" msgstr "Limba(i)" @@ -9948,6 +10116,11 @@ msgstr "Limbi" msgid "Largeur" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:36 +#, fuzzy +msgid "Largeur du champ de saisie" +msgstr "Dimensiune totală a site-ului" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:156 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:165 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:212 @@ -9971,6 +10144,7 @@ msgid "Le %s" msgstr "%s" #: ../../application/modules/admin/controllers/IndexController.php:108 +#: ../../application/modules/admin/controllers/IndexController.php:116 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -10030,6 +10204,7 @@ msgstr "Câmpul 'Nume de utilizator' trebuie să nu depăşească 50 de caracter #: ../../library/Class/Users.php:924 ../../library/Class/Users.php:944 #: ../../library/Class/Users.php:974 ../../library/Class/Users.php:992 #: ../../library/Class/Users.php:987 ../../library/Class/Users.php:1021 +#: ../../library/Class/Users.php:1020 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "Câmpul 'Nume de utilizator' trebuie să nu depăşească 50 de caractere" @@ -10037,7 +10212,7 @@ msgstr "Câmpul 'Nume de utilizator' trebuie să nu depăşească 50 de caracter #: ../../library/Class/Users.php:885 ../../library/Class/Users.php:932 #: ../../library/Class/Users.php:952 ../../library/Class/Users.php:982 #: ../../library/Class/Users.php:1000 ../../library/Class/Users.php:995 -#: ../../library/Class/Users.php:1029 +#: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1028 #, fuzzy msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "Câmpul 'Parola' nu trebuie să depăşească 50 de caractere" @@ -10175,7 +10350,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:201 ../../library/Class/AdminVar.php:199 #: ../../library/Class/AdminVar.php:202 ../../library/Class/AdminVar.php:202 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:231 msgid "" "Le gestionnaire de contenu affiche les albums sous forme de liste paginée au " "lieu de d'une arborescence. Cet affichage est adapté lorsque le nombre " @@ -10184,6 +10359,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:184 ../../library/Class/AdminVar.php:182 #: ../../library/Class/AdminVar.php:185 ../../library/Class/AdminVar.php:185 +#: ../../library/Class/AdminVar.php:186 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 " @@ -10255,6 +10431,7 @@ msgstr "" #: ../../library/Class/Users.php:942 ../../library/Class/Users.php:962 #: ../../library/Class/Users.php:992 ../../library/Class/Users.php:1010 #: ../../library/Class/Users.php:1005 ../../library/Class/Users.php:1039 +#: ../../library/Class/Users.php:1038 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" @@ -10309,11 +10486,13 @@ msgid "Le site \"%s\" a été supprimé" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:36 +#: ../../application/modules/admin/controllers/IndexController.php:42 #, fuzzy msgid "Le site est en ligne" msgstr "Descriere" #: ../../application/modules/admin/controllers/IndexController.php:37 +#: ../../application/modules/admin/controllers/IndexController.php:43 #, fuzzy msgid "Le site est indisponible" msgstr "Câmpuri disponibile" @@ -10563,7 +10742,7 @@ msgstr "specificaÅ£ia conÅ£ine" #: ../../library/Class/AdminVar.php:210 ../../library/Class/AdminVar.php:208 #: ../../library/Class/AdminVar.php:211 ../../library/Class/AdminVar.php:211 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:240 msgid "Libellé de regroupement des abonnés" msgstr "" @@ -10625,12 +10804,14 @@ msgstr "specificaÅ£ia începe cu" #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:141 #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:144 +#: ../../library/Class/AdminVar.php:145 #, fuzzy msgid "Libellé pour la Dewey" msgstr "SpecificaÅ£ie" #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:140 #: ../../library/Class/AdminVar.php:143 ../../library/Class/AdminVar.php:143 +#: ../../library/Class/AdminVar.php:144 #, fuzzy msgid "Libellé pour la PCDM4" msgstr "SpecificaÅ£ie" @@ -10680,6 +10861,7 @@ msgstr "Link cartografic :" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Lien internet" msgstr "Link internet" @@ -10719,6 +10901,7 @@ msgstr "Link permanent" #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:175 #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:178 +#: ../../library/Class/AdminVar.php:179 #, fuzzy msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "la buletinul informativ" @@ -10741,6 +10924,7 @@ msgstr "Link internet" #: ../../library/Class/Codification.php:144 #: ../../library/Class/Codification.php:181 #: ../../library/Class/Codification.php:169 +#: ../../library/Class/Codification.php:143 msgid "Liens internet" msgstr "Linkuri internet" @@ -10888,6 +11072,7 @@ msgstr "CitiÅ£i continuarea" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:57 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:114 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:129 msgid "Liste" msgstr "" @@ -10912,7 +11097,7 @@ msgstr "Aviz asupra instrucÅ£iunilor" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:245 #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:249 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:277 msgid "" "Liste des adresses IP publiques autorisées pour la consultation des documents" msgstr "" @@ -10925,6 +11110,7 @@ msgstr "Adaugă o categorie" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:225 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:245 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:246 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:314 #, fuzzy msgid "Liste des articles" msgstr "Adaugă o categorie" @@ -10941,6 +11127,7 @@ msgstr "Adaugă o categorie" #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:139 #: ../../library/Class/AdminVar.php:142 ../../library/Class/AdminVar.php:142 +#: ../../library/Class/AdminVar.php:143 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;" @@ -10949,6 +11136,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:154 ../../library/Class/AdminVar.php:152 #: ../../library/Class/AdminVar.php:155 ../../library/Class/AdminVar.php:155 +#: ../../library/Class/AdminVar.php:156 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 => " @@ -10991,6 +11179,7 @@ msgstr "SituaÅ£i ca exemplar" #: ../../library/Class/AdminVar.php:156 ../../library/Class/AdminVar.php:154 #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:157 +#: ../../library/Class/AdminVar.php:158 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -11020,6 +11209,8 @@ msgstr "" #: ../../library/Class/Codification.php:164 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:152 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:126 #, fuzzy msgid "Livres et Vidéos" msgstr "Arhive video" @@ -11105,19 +11296,19 @@ msgstr "" #: ../../library/Class/AdminVar.php:224 ../../library/Class/AdminVar.php:222 #: ../../library/Class/AdminVar.php:225 ../../library/Class/AdminVar.php:225 -#: ../../library/Class/AdminVar.php:252 +#: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 msgid "Login ARTE VOD" msgstr "" #: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:287 #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:294 -#: ../../library/Class/AdminVar.php:321 +#: ../../library/Class/AdminVar.php:321 ../../library/Class/AdminVar.php:322 msgid "Login du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:291 #: ../../library/Class/AdminVar.php:295 ../../library/Class/AdminVar.php:298 -#: ../../library/Class/AdminVar.php:325 +#: ../../library/Class/AdminVar.php:325 ../../library/Class/AdminVar.php:326 msgid "Login du portail fourni par Premier-Chapitre." msgstr "" @@ -11325,6 +11516,7 @@ msgstr "Ultimele articole" #: ../../library/Class/Users.php:1465 ../../library/Class/Users.php:1486 #: ../../library/Class/Users.php:1520 ../../library/Class/Users.php:1528 #: ../../library/Class/Users.php:1523 ../../library/Class/Users.php:1557 +#: ../../library/Class/Users.php:1556 #, fuzzy msgid "Mes paniers" msgstr "CoÅŸurile dvs." @@ -11339,6 +11531,7 @@ msgstr "CoÅŸurile dvs. de documente" #: ../../library/Class/Users.php:1498 ../../library/Class/Users.php:1519 #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1561 #: ../../library/Class/Users.php:1556 ../../library/Class/Users.php:1590 +#: ../../library/Class/Users.php:1589 msgid "Mes paniers rattachés à un domaine" msgstr "" @@ -11391,12 +11584,25 @@ msgstr "Mesaj..." msgid "Message au dessus de la boite" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:69 +msgid "Message au dessus du champ de saisie" +msgstr "" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:79 +msgid "Message au-dessous du champ de recherche" +msgstr "" + #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:253 #: ../../library/Class/AdminVar.php:257 ../../library/Class/AdminVar.php:257 -#: ../../library/Class/AdminVar.php:284 +#: ../../library/Class/AdminVar.php:284 ../../library/Class/AdminVar.php:285 msgid "Message d'avertissement affiché sur la popup d'emprunt" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:74 +#, fuzzy +msgid "Message d'exemple dans le champ de saisie" +msgstr "Trebuie să introduceÅ£i o parolă " + #: ../../library/ZendAfi/Form/Admin/News.php:158 #: ../../library/ZendAfi/Form/Admin/News.php:167 #: ../../library/ZendAfi/Form/Admin/News.php:194 @@ -11410,6 +11616,10 @@ msgstr "" msgid "Message de bienvenue" msgstr "Mesaj al solicitantului :" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:64 +msgid "Message du bouton pour rechercher" +msgstr "" + #: ../../application/modules/opac/controllers/RechercheController.php:459 #: ../../application/modules/opac/controllers/RechercheController.php:492 #: ../../application/modules/opac/controllers/RechercheController.php:517 @@ -11519,6 +11729,7 @@ msgstr "Actualizare a localizării" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:103 #: ../../application/modules/admin/controllers/IndexController.php:119 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:127 #, fuzzy msgid "Mise à jour de la charte graphique" msgstr "Actualizare a localizării" @@ -11627,7 +11838,7 @@ msgstr "AfiÅŸează mai multe instrucÅ£iuni" #: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 #: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:285 -#: ../../library/Class/AdminVar.php:312 +#: ../../library/Class/AdminVar.php:312 ../../library/Class/AdminVar.php:313 #, fuzzy msgid "Mode d'authentification" msgstr "Identificare" @@ -11641,6 +11852,11 @@ msgstr "Identificare" msgid "Mode de calcul des tranches" msgstr "Gestionare utilizatori" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:110 +#, fuzzy +msgid "Mode de sélection" +msgstr "Criterii de selecÅ£ie" + #: ../../application/modules/admin/views/scripts/usergroup/_usergroup.phtml:12 #, fuzzy msgid "Mode de sélection " @@ -11801,6 +12017,7 @@ msgid "Modifier la source de données du kiosque" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:91 +#: ../../application/modules/admin/controllers/IndexController.php:97 #, fuzzy, php-format msgid "Modifier la variable: %s" msgstr "Modificare bibliotecă: %s" @@ -12246,6 +12463,7 @@ msgstr "Nici un conÅ£inut" #: ../../library/Class/Codification.php:213 #: ../../library/Class/Codification.php:265 #: ../../library/Class/Codification.php:253 +#: ../../library/Class/Codification.php:227 msgid "Morceaux" msgstr "Fragmente" @@ -12277,20 +12495,20 @@ msgstr "Parolă" #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:249 #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:280 +#: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 #: ../../library/Class/AdminVar.php:270 ../../library/Class/AdminVar.php:273 -#: ../../library/Class/AdminVar.php:300 +#: ../../library/Class/AdminVar.php:300 ../../library/Class/AdminVar.php:301 #, fuzzy msgid "Mot de passe de l'utilisateur Orphea" msgstr "Gestionare utilizatori" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:242 #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:274 msgid "Mot de passe de la collectivité, il est fourni par Dilicom." msgstr "" @@ -12354,6 +12572,8 @@ msgstr "" #: ../../library/Class/Codification.php:175 #: ../../library/Class/Codification.php:120 #: ../../library/Class/Codification.php:163 +#: ../../library/Class/Codification.php:94 +#: ../../library/Class/Codification.php:137 msgid "Musique" msgstr "" @@ -12464,7 +12684,7 @@ msgstr "AfiÅŸează mai multe instrucÅ£iuni" #: ../../library/Class/AdminVar.php:203 ../../library/Class/AdminVar.php:201 #: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:204 -#: ../../library/Class/AdminVar.php:232 +#: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 msgid "Ne pas créer de zone 464 pour les médias dont le titre n'est pas saisi" msgstr "" @@ -12652,6 +12872,7 @@ msgstr "Numele începe cu" #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:157 #: ../../library/Class/AdminVar.php:160 ../../library/Class/AdminVar.php:160 +#: ../../library/Class/AdminVar.php:161 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" @@ -12662,7 +12883,7 @@ msgstr "VedeÅ£i instrucÅ£iunea" #: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:272 -#: ../../library/Class/AdminVar.php:299 +#: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:300 #, fuzzy msgid "Nom de l'utilisateur Orphea" msgstr "Utilizatori" @@ -12682,6 +12903,11 @@ msgstr "" msgid "Nom de la notice" msgstr "VedeÅ£i instrucÅ£iunea" +#: ../../application/modules/admin/views/scripts/index/index.phtml:18 +#, fuzzy +msgid "Nom du domaine" +msgstr "Export de coÅŸ" + #: ../../application/modules/opac/views/scripts/panier/index.phtml:23 #: ../../application/modules/opac/views/scripts/panier/index.phtml:24 #, fuzzy @@ -12697,6 +12923,7 @@ msgstr "Numele responsabilului" #: ../../library/Class/AdminVar.php:157 ../../library/Class/AdminVar.php:155 #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:158 +#: ../../library/Class/AdminVar.php:159 #, fuzzy msgid "Nom du site" msgstr "Export de coÅŸ" @@ -12855,14 +13082,14 @@ msgstr "Număr de diviziuni" #: ../../library/Class/AdminVar.php:254 ../../library/Class/AdminVar.php:252 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:283 +#: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:284 msgid "" "Nombre de prêts simultanés maximum pour un abonné PNB Dilicom (par défaut 3)" msgstr "" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:251 #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:255 -#: ../../library/Class/AdminVar.php:282 +#: ../../library/Class/AdminVar.php:282 ../../library/Class/AdminVar.php:283 msgid "Nombre de prêts simultanés maximum pour un livre PNB Dilicom" msgstr "" @@ -12895,7 +13122,7 @@ msgstr "" msgid "Nombre de traductions : %s" msgstr "Număr de diviziuni" -#: ../../library/Class/AdminVar.php:186 +#: ../../library/Class/AdminVar.php:186 ../../library/Class/AdminVar.php:187 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -12957,6 +13184,9 @@ msgstr "Notă" #: ../../library/Class/Codification.php:162 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:73 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:75 +#: ../../library/Class/Codification.php:136 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:82 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:84 msgid "Notes" msgstr "Note" @@ -13060,6 +13290,7 @@ msgstr "InstrucÅ£iuni" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:164 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:90 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:89 +#: ../../library/Class/Codification.php:233 #, fuzzy msgid "Notices liées" msgstr "InstrucÅ£iuni similare" @@ -13423,6 +13654,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:108 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:126 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:127 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:128 msgid "Onglets" msgstr "" @@ -13555,12 +13787,14 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:113 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:114 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 msgid "Ouverture" msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:92 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:99 msgid "Ouvertures" msgstr "" @@ -13683,8 +13917,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:242 #: ../../library/Class/NoticeHtml.php:233 #: ../../library/Class/NoticeHtml.php:273 -#: ../../library/Class/NoticeHtml.php:143 ../../library/Class/NoticeHtml.php:91 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:143 +#: ../../library/Class/NoticeHtml.php:91 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "PaginaÅ£ie" @@ -13851,6 +14085,7 @@ msgstr "Număr de diviziuni" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:77 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:84 #, fuzzy msgid "Par ordre alphabétique" msgstr "Criterii de selecÅ£ie" @@ -13867,6 +14102,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:81 #: ../../library/ZendAfi/Form/Configuration/FormationsWidget.php:78 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:82 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:83 #, fuzzy msgid "Par ordre de sélection" msgstr "Criterii de selecÅ£ie" @@ -13897,7 +14133,7 @@ msgstr "Proprietăţile modulului" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 #: ../../library/Class/AdminVar.php:271 ../../library/Class/AdminVar.php:274 -#: ../../library/Class/AdminVar.php:301 +#: ../../library/Class/AdminVar.php:301 ../../library/Class/AdminVar.php:302 msgid "" "Paramètre permettant de choisir la langue des des ressources. La liste des " "codes disponibles se trouve à cette adresse http://help.orphea.com/43/" @@ -13908,6 +14144,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:4 #: ../../application/modules/admin/views/scripts/index/index.phtml:6 #: ../../application/modules/admin/views/scripts/index/index.phtml:9 +#: ../../application/modules/admin/views/scripts/index/index.phtml:1 msgid "Paramètres du site" msgstr "Parametrii site-ului" @@ -13915,7 +14152,7 @@ msgstr "Parametrii site-ului" #: ../../library/Class/AdminVar.php:219 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:216 ../../library/Class/AdminVar.php:220 #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:247 +#: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Numilog\">Numilog</a>" @@ -13925,6 +14162,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:230 #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:257 +#: ../../library/Class/AdminVar.php:258 msgid "" "Paramétrage <a href=\"http://forge.afi-sa.fr/projects/opac3/wiki/" "Ressources_externes_enrichissements#Tout-Apprendre\">ToutApprendre</a>" @@ -13939,7 +14177,8 @@ msgstr "" #: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:238 #: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:241 #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:245 msgid "Paramétrage CVS" msgstr "" @@ -13973,9 +14212,15 @@ msgstr "Număr de diviziuni" #: ../../application/modules/admin/views/scripts/index/index.phtml:69 #: ../../application/modules/admin/views/scripts/index/index.phtml:65 +#: ../../application/modules/admin/views/scripts/index/index.phtml:41 msgid "Participez à la communauté" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:191 +#, fuzzy +msgid "Partout" +msgstr "toate" + #: ../../library/ZendAfi/Controller/Action.php:448 #: ../../library/ZendAfi/Controller/Action.php:460 #: ../../library/ZendAfi/Controller/Action.php:612 @@ -14003,13 +14248,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 #: ../../library/Class/AdminVar.php:292 ../../library/Class/AdminVar.php:295 -#: ../../library/Class/AdminVar.php:322 +#: ../../library/Class/AdminVar.php:322 ../../library/Class/AdminVar.php:323 msgid "Password du portail fourni par Kidilangues." msgstr "" #: ../../library/Class/AdminVar.php:290 ../../library/Class/AdminVar.php:292 #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:299 -#: ../../library/Class/AdminVar.php:326 +#: ../../library/Class/AdminVar.php:326 ../../library/Class/AdminVar.php:327 msgid "Password du portail fourni par Premier-Chapitre" msgstr "" @@ -14123,6 +14368,7 @@ msgstr "Adaugă un utilizator" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:96 #: ../../library/ZendAfi/Form/Admin/Library.php:143 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:97 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:98 msgid "Photo" msgstr "Fotografie" @@ -14159,6 +14405,7 @@ msgstr "" #: ../../library/Class/Codification.php:215 #: ../../library/Class/Codification.php:267 #: ../../library/Class/Codification.php:255 +#: ../../library/Class/Codification.php:229 msgid "Photos" msgstr "Fotografii" @@ -14368,7 +14615,7 @@ msgstr "Punct" #: ../../library/Class/Profil.php:33 ../../library/Class/Bib.php:71 #: ../../library/Class/AdminVar.php:338 ../../library/Class/Bib.php:70 #: ../../library/Class/AdminVar.php:342 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:366 msgid "Portail" msgstr "Portal" @@ -14379,6 +14626,7 @@ msgstr "Portal" #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:190 #: ../../library/Class/AdminVar.php:182 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:195 +#: ../../library/Class/AdminVar.php:183 #, fuzzy msgid "Position" msgstr "PaginaÅ£ie" @@ -14391,6 +14639,7 @@ msgstr "Rezultatul căutarii" #: ../../library/Class/AdminVar.php:180 ../../library/Class/AdminVar.php:178 #: ../../library/Class/AdminVar.php:181 ../../library/Class/AdminVar.php:181 +#: ../../library/Class/AdminVar.php:182 #, fuzzy msgid "Position de la pagination en résultat de recherche" msgstr "Rezultatul căutarii" @@ -14438,7 +14687,7 @@ msgstr "Pentru a vă activa contul, vă rugăm să faceÅ£i clic pe linkul următ #: ../../library/Class/Users.php:941 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:1015 ../../library/Class/Users.php:1045 #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1058 -#: ../../library/Class/Users.php:1092 +#: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1091 #, fuzzy msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:" msgstr "Pentru a vă activa contul, vă rugăm să faceÅ£i clic pe linkul următor :" @@ -14557,6 +14806,7 @@ msgstr "" #: ../../library/Class/Codification.php:184 #: ../../library/Class/Codification.php:172 +#: ../../library/Class/Codification.php:146 msgid "Prix" msgstr "" @@ -14598,6 +14848,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:173 ../../library/Class/AdminVar.php:171 #: ../../library/Class/AdminVar.php:174 ../../library/Class/AdminVar.php:174 +#: ../../library/Class/AdminVar.php:175 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -14705,6 +14956,21 @@ msgstr "PrelungiÅ£i" msgid "Proposer des tags pour cette notice" msgstr "PropuneÅ£i taguri pentru această instrucÅ£iune" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:46 +#, fuzzy +msgid "Proposer la sélection de bibliothèques" +msgstr "SelecÅ£ie de biblioteci" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:52 +#, fuzzy +msgid "Proposer la sélection de sites" +msgstr "SelecÅ£ie de site-uri" + +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:59 +#, fuzzy +msgid "Proposer la sélection de types de doc" +msgstr "Gestionare utilizatori" + #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:62 #, fuzzy msgid "Proposer un fil RSS" @@ -14902,7 +15168,7 @@ msgstr "Rezervări în curs" #: ../../library/Class/AdminVar.php:291 ../../library/Class/AdminVar.php:293 #: ../../library/Class/AdminVar.php:297 ../../library/Class/AdminVar.php:300 -#: ../../library/Class/AdminVar.php:204 +#: ../../library/Class/AdminVar.php:204 ../../library/Class/AdminVar.php:205 msgid "" "Prévenir l'utilisateur xx jour(s) avant l'expiration de son abonnement (par " "défaut 30 jours)." @@ -15131,6 +15397,7 @@ msgstr "RSS" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:137 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:157 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:158 +#: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:226 msgid "Racine" msgstr "" @@ -15199,6 +15466,7 @@ msgstr "" #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:247 #: ../../application/modules/telephone/controllers/RechercheController.php:66 +#: ../../library/Class/Codification.php:221 #, fuzzy msgid "Rebondir dans le catalogue" msgstr "Se indexează articolul din catalog?" @@ -15219,6 +15487,7 @@ msgstr "Căutare" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 #: ../../library/Class/User/SearchCriteria.php:75 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:118 msgid "Recherche" msgstr "Căutare" @@ -15228,6 +15497,8 @@ msgstr "Căutare OAI" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:52 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:53 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:54 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:55 #, fuzzy msgid "Recherche avancée" msgstr "Căutare" @@ -15401,7 +15672,8 @@ msgstr "" #: ../../library/Class/NoticeHtml.php:189 #: ../../library/Class/NoticeHtml.php:194 #: ../../library/Class/NoticeHtml.php:185 -#: ../../library/Class/NoticeHtml.php:225 ../../library/Class/NoticeHtml.php:95 +#: ../../library/Class/NoticeHtml.php:225 +#: ../../library/Class/NoticeHtml.php:95 msgid "Refermer" msgstr "ÃŽnchidere" @@ -15411,6 +15683,7 @@ msgid "Rejeter les périodiques" msgstr "Resurse OAI" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:63 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:62 msgid "Rejetée" msgstr "" @@ -15451,11 +15724,13 @@ msgid "Reload" msgstr "ReîncărcaÅ£i" #: ../../application/modules/admin/controllers/IndexController.php:41 +#: ../../application/modules/admin/controllers/IndexController.php:47 msgid "Remettre le site en ligne" msgstr "" #: ../../library/Class/AdminVar.php:166 ../../library/Class/AdminVar.php:164 #: ../../library/Class/AdminVar.php:167 ../../library/Class/AdminVar.php:167 +#: ../../library/Class/AdminVar.php:168 #, php-format msgid "" "Remplacement de textes à la volée. <br/>Ex:<br/>Panier;Sélection<br/>Vous " @@ -15489,6 +15764,7 @@ msgid "Rendre le livre emprunté" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:40 +#: ../../application/modules/admin/controllers/IndexController.php:46 #, fuzzy msgid "Rendre le site indisponible" msgstr "Serviciu indisponibil" @@ -15589,6 +15865,7 @@ msgstr "Resurse OAI" #: ../../library/Class/Codification.php:217 #: ../../library/Class/Codification.php:269 #: ../../library/Class/Codification.php:257 +#: ../../library/Class/Codification.php:231 #, fuzzy msgid "Ressources numériques" msgstr "Resurse OAI" @@ -15598,6 +15875,10 @@ msgstr "Resurse OAI" msgid "Restreindre la période d'ouverture" msgstr "Adaugă o categorie" +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:183 +msgid "Restreindre à " +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:167 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:144 @@ -15723,6 +16004,7 @@ msgstr "ÃŽntoarcere la nivelul superior " #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:43 #: ../../application/modules/admin/views/scripts/sansMenuGauche.phtml:17 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:49 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:47 msgid "Retour au site" msgstr "ÃŽntoarcere la site " @@ -16167,11 +16449,13 @@ msgstr "Rezultatele următoare" #: ../../library/Class/NoticeHtml.php:155 #: ../../application/modules/telephone/controllers/RechercheController.php:35 #: ../../library/Class/Codification.php:139 -#: ../../library/Class/NoticeHtml.php:103 ../../library/Class/NoticeHtml.php:94 +#: ../../library/Class/NoticeHtml.php:103 +#: ../../library/Class/NoticeHtml.php:94 #: ../../library/Class/Codification.php:176 #: ../../application/modules/telephone/controllers/RechercheController.php:33 #: ../../library/Class/Codification.php:164 #: ../../application/modules/telephone/controllers/RechercheController.php:64 +#: ../../library/Class/Codification.php:138 msgid "Résumé" msgstr "Rezumat" @@ -16206,6 +16490,7 @@ msgstr "Rezumat pentru pagina iniÅ£ială" #: ../../library/Class/Codification.php:206 #: ../../library/Class/Codification.php:258 #: ../../library/Class/Codification.php:246 +#: ../../library/Class/Codification.php:220 #, fuzzy msgid "Résumés" msgstr "Rezumat" @@ -16273,6 +16558,7 @@ msgid "S'inscrire à une formation" msgstr "ÃŽnscriere la portal" #: ../../application/modules/admin/views/scripts/index/index.phtml:73 +#: ../../application/modules/admin/views/scripts/index/index.phtml:49 msgid "Salle de discussion #Bokeh" msgstr "" @@ -16316,6 +16602,7 @@ msgstr "Conectare " #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:33 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:56 #: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:62 +#: ../../library/ZendAfi/View/Helper/Admin/MenuHorizontalAdmin.php:60 msgid "Se déconnecter" msgstr "Deconectare" @@ -16379,6 +16666,7 @@ msgstr "Conectare " #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:143 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:215 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:217 +#: ../../library/Class/Codification.php:139 msgid "Section" msgstr "SecÅ£ie" @@ -16431,7 +16719,7 @@ msgstr "septembrie" #: ../../library/Class/AdminVar.php:249 ../../library/Class/AdminVar.php:247 #: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:251 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 msgid "Serveur FTP de diffusion des offres PNB Dilicom" msgstr "" @@ -16523,7 +16811,7 @@ msgid "Session non trouvée" msgstr "Lucrarea nu a fost găsită" #: ../../library/Class/AdminVar.php:269 ../../library/Class/AdminVar.php:269 -#: ../../library/Class/AdminVar.php:296 +#: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:297 msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "" @@ -16540,6 +16828,7 @@ msgstr "Doit être plus grand que '%fieldToCompare%'" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1016 #: ../../library/Class/Users.php:1046 ../../library/Class/Users.php:1064 #: ../../library/Class/Users.php:1059 ../../library/Class/Users.php:1093 +#: ../../library/Class/Users.php:1092 msgid "" "Si vous n'êtes pas à l'origine de cette demande d'inscription, merci de ne " "pas tenir compte de cet e-mail, et l'inscription ne sera pas activée." @@ -16588,6 +16877,10 @@ msgstr "Semnatură" #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:218 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:137 #: ../../library/ZendAfi/View/Helper/BibView.php:152 +#: ../../library/Class/Codification.php:141 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:63 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:65 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:272 msgid "Site" msgstr "Site" @@ -16611,6 +16904,11 @@ msgstr "Rezervări în curs" msgid "Site : %s" msgstr "Titlu : %s" +#: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#, fuzzy +msgid "Site communautaire" +msgstr "Consultare" + #: ../../application/modules/opac/views/scripts/footer.phtml:36 #: ../../library/ZendAfi/View/Helper/TagCredits.php:28 msgid "Site communautaire du projet Bokeh" @@ -16968,6 +17266,7 @@ msgstr "AfiÅŸează Agenda" #: ../../library/ZendAfi/Form/Configuration/ArticleWidget.php:127 #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:44 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:33 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:30 #, fuzzy msgid "Style de boite" msgstr "Căsuţă de căutare" @@ -17102,6 +17401,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:52 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:54 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:56 +#: ../../library/Class/Codification.php:134 msgid "Sujet" msgstr "Subiect" @@ -17119,6 +17419,7 @@ msgstr "Subiect" #: ../../library/Class/NoticeHtml.php:105 #: ../../library/Class/Codification.php:172 #: ../../library/Class/Codification.php:160 +#: ../../library/Class/Codification.php:134 msgid "Sujet(s)" msgstr "Subiect(e)" @@ -17344,6 +17645,11 @@ msgstr "Sistem" msgid "Sécurité" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:111 +#, fuzzy +msgid "Sélection dans une liste déroulante" +msgstr "SelecÅ£ie de site-uri" + #: ../../application/modules/opac/views/scripts/bib/selection.phtml:2 msgid "Sélection de bibliothèques" msgstr "SelecÅ£ie de biblioteci" @@ -17380,6 +17686,11 @@ msgstr "SelecÅ£ie de site-uri" msgid "Sélection multiple d'articles" msgstr "SelecÅ£ie de site-uri" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:112 +#, fuzzy +msgid "Sélection multiple par cases à cocher" +msgstr "SelecÅ£ie de site-uri" + #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:35 #, fuzzy msgid "Sélectionner la bibliothèque" @@ -17443,6 +17754,7 @@ msgstr "" #: ../../library/Class/Codification.php:168 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:121 #: ../../library/ZendAfi/View/Helper/TagArticleInfo.php:119 +#: ../../library/Class/Codification.php:142 msgid "Tag" msgstr "Tag" @@ -17453,6 +17765,7 @@ msgstr "Tag" #: ../../library/Class/Codification.php:143 #: ../../library/Class/Codification.php:180 #: ../../library/Class/Codification.php:168 +#: ../../library/Class/Codification.php:142 msgid "Tag(s)" msgstr "Tag(uri)" @@ -17555,6 +17868,7 @@ msgstr "" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 #: ../../library/ZendAfi/Form/Admin/Library.php:101 #: ../../library/ZendAfi/Form/Admin/Library.php:185 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:117 msgid "Territoire" msgstr "Teritoriu" @@ -17693,6 +18007,7 @@ msgstr "Eroare de configurare" #: ../../library/Class/AdminVar.php:178 ../../library/Class/AdminVar.php:176 #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:179 +#: ../../library/Class/AdminVar.php:180 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 " @@ -17701,6 +18016,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:176 ../../library/Class/AdminVar.php:174 #: ../../library/Class/AdminVar.php:177 ../../library/Class/AdminVar.php:177 +#: ../../library/Class/AdminVar.php:178 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 " @@ -17870,6 +18186,10 @@ msgstr "Temă" #: ../../library/ZendAfi/Form/Admin/Newsletter.php:31 #: ../../library/ZendAfi/Form/Configuration/AuthLostPass.php:38 #: ../../library/ZendAfi/Form/Admin/News.php:55 +#: ../../library/Class/Codification.php:131 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:39 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:39 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:42 msgid "Titre" msgstr "Titlu" @@ -17978,6 +18298,7 @@ msgstr "" #: ../../library/Class/Codification.php:132 #: ../../library/Class/Codification.php:169 #: ../../library/Class/Codification.php:157 +#: ../../library/Class/Codification.php:131 msgid "Titre(s)" msgstr "Titlu(ri)" @@ -18001,6 +18322,7 @@ msgstr "Titluri" #: ../../library/ZendAfi/View/Helper/Filters/Strategy/Facet.php:38 #: ../../library/Class/User/SearchCriteria.php:151 #: ../../library/ZendAfi/View/Helper/TreeView.php:87 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:99 msgid "Tous" msgstr "ToÅ£i" @@ -18174,10 +18496,19 @@ msgstr "Traduceri" msgid "Traductions:" msgstr "Traduceri" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:60 +#, fuzzy +msgid "Traitement en cours depuis le" +msgstr "ÃŽncărcare in curs" + #: ../../library/Class/Cosmogramme/Generator.php:42 msgid "Traitement terminé." msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:76 +msgid "Traitements d'intégration en retard de" +msgstr "" + #: ../../library/Class/Upload.php:268 ../../library/Class/Upload.php:291 msgid "Transfert impossible, ce formulaire est mal configuré" msgstr "" @@ -18196,6 +18527,11 @@ msgstr "" msgid "Tri" msgstr "" +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:89 +#, fuzzy +msgid "Tri du résultat de recherche" +msgstr "Rezultatul căutarii" + #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:89 #: ../../application/modules/opac/views/scripts/recherche/avancee.phtml:95 #: ../../library/ZendAfi/View/Helper/TagTriRecherche.php:35 @@ -18236,14 +18572,14 @@ msgid "Type d'interface" msgstr "Tip de interfaţă" #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:262 -#: ../../library/Class/AdminVar.php:289 +#: ../../library/Class/AdminVar.php:289 ../../library/Class/AdminVar.php:290 #, fuzzy msgid "Type de SSO OneDTouch" msgstr "Tip de doc." #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:277 #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:284 -#: ../../library/Class/AdminVar.php:311 +#: ../../library/Class/AdminVar.php:311 ../../library/Class/AdminVar.php:312 msgid "Type de SSO lekiosk.com" msgstr "" @@ -18316,6 +18652,12 @@ msgstr "Tip de document : %s " #: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:46 #: ../../library/Class/CriteresRecherche.php:140 #: ../../library/Class/CriteresRecherche.php:141 +#: ../../library/Class/Codification.php:140 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:67 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:69 +#: ../../library/ZendAfi/Form/Configuration/SearchWidget.php:98 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:132 +#: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:139 msgid "Type de document" msgstr "Tip de document" @@ -18432,6 +18774,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:310 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:171 #: ../../library/ZendAfi/View/Helper/Admin/MenuGaucheAdmin.php:168 +#: ../../library/Class/Codification.php:140 msgid "Types de documents" msgstr "Tipuri de documente" @@ -18557,6 +18900,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Library.php:74 #: ../../application/modules/opac/controllers/AbonneController.php:457 #: ../../application/modules/opac/controllers/AbonneController.php:459 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:102 msgid "Téléphone" msgstr "Telefon" @@ -18580,6 +18924,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:51 #: ../../application/modules/admin/views/scripts/external-agendas/index.phtml:11 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:55 msgid "URL" msgstr "" @@ -18600,6 +18945,7 @@ msgstr "Biografii" #: ../../library/Class/AdminVar.php:135 ../../library/Class/AdminVar.php:133 #: ../../library/Class/AdminVar.php:136 ../../library/Class/AdminVar.php:136 +#: ../../library/Class/AdminVar.php:137 msgid "URL d'accès à l'interface de réservation des postes Aesis Webkiosk" msgstr "" @@ -18629,6 +18975,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:131 ../../library/Class/AdminVar.php:129 #: ../../library/Class/AdminVar.php:132 ../../library/Class/AdminVar.php:132 +#: ../../library/Class/AdminVar.php:133 msgid "URL du javascript Babelthèque à insérer dans l'OPAC" msgstr "" @@ -18721,6 +19068,7 @@ msgstr "Tocmai v-a fost trimis un email cu datele dvs. de conectare." #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1073 #: ../../library/Class/Users.php:1103 ../../library/Class/Users.php:1121 #: ../../library/Class/Users.php:1116 ../../library/Class/Users.php:1150 +#: ../../library/Class/Users.php:1149 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion." msgstr "Tocmai v-a fost trimis un email cu datele dvs. de conectare." @@ -18847,37 +19195,39 @@ msgstr "Url de activare : %s" #: ../../library/Class/AdminVar.php:140 ../../library/Class/AdminVar.php:138 #: ../../library/Class/AdminVar.php:141 ../../library/Class/AdminVar.php:141 +#: ../../library/Class/AdminVar.php:142 msgid "Url d'import d'un agenda TYPO3" msgstr "" #: ../../library/Class/AdminVar.php:158 ../../library/Class/AdminVar.php:156 #: ../../library/Class/AdminVar.php:159 ../../library/Class/AdminVar.php:159 +#: ../../library/Class/AdminVar.php:160 #, fuzzy msgid "Url de recherche" msgstr "Tip de căutare" #: ../../library/Class/AdminVar.php:298 ../../library/Class/AdminVar.php:302 #: ../../library/Class/AdminVar.php:305 ../../library/Class/AdminVar.php:305 -#: ../../library/Class/AdminVar.php:209 +#: ../../library/Class/AdminVar.php:209 ../../library/Class/AdminVar.php:210 msgid "Url du connecteur Le Social" msgstr "" #: ../../library/Class/AdminVar.php:296 ../../library/Class/AdminVar.php:300 #: ../../library/Class/AdminVar.php:303 ../../library/Class/AdminVar.php:303 -#: ../../library/Class/AdminVar.php:207 +#: ../../library/Class/AdminVar.php:207 ../../library/Class/AdminVar.php:208 #, fuzzy msgid "Url du proxy Redmine" msgstr "Numele de utilizator sau parola incorecte " #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:244 #: ../../library/Class/AdminVar.php:248 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:275 +#: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 msgid "Url du serveur PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:293 ../../library/Class/AdminVar.php:295 #: ../../library/Class/AdminVar.php:299 ../../library/Class/AdminVar.php:302 -#: ../../library/Class/AdminVar.php:206 +#: ../../library/Class/AdminVar.php:206 ../../library/Class/AdminVar.php:207 msgid "Url du serveur redmine" msgstr "" @@ -18903,7 +19253,7 @@ msgstr "Nu a fost găsit nici un articol" #: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:248 #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:252 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 msgid "Utilisateur FTP de diffusion des offres PNB Dilicom" msgstr "" @@ -19065,6 +19415,7 @@ msgid "Variable" msgstr "Variabilă" #: ../../application/modules/admin/controllers/IndexController.php:77 +#: ../../application/modules/admin/controllers/IndexController.php:83 #, fuzzy, php-format msgid "Variable %s sauvegardée" msgstr "Nu a fost găsit nici un articol" @@ -19098,7 +19449,8 @@ msgstr "AlegeÅ£i media" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:259 #: ../../library/Class/AdminVar.php:283 ../../library/Class/AdminVar.php:263 #: ../../library/Class/AdminVar.php:287 ../../library/Class/AdminVar.php:290 -#: ../../library/Class/AdminVar.php:317 +#: ../../library/Class/AdminVar.php:317 ../../library/Class/AdminVar.php:291 +#: ../../library/Class/AdminVar.php:318 msgid "Version" msgstr "Versiune" @@ -19109,7 +19461,7 @@ msgstr "Versiune" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:282 #: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:316 +#: ../../library/Class/AdminVar.php:316 ../../library/Class/AdminVar.php:317 msgid "Version de Kidilangues." msgstr "" @@ -19126,10 +19478,12 @@ msgstr "Trebuie să introduceÅ£i un titlu " msgid "Veuillez choisir une notice" msgstr "Trebuie să introduceÅ£i un titlu " -#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:123 +#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:123 #: ../../library/Class/NoticeHtml.php:177 #: ../../library/Class/NoticeHtml.php:182 -#: ../../library/Class/NoticeHtml.php:173 ../../library/Class/NoticeHtml.php:88 +#: ../../library/Class/NoticeHtml.php:173 +#: ../../library/Class/NoticeHtml.php:88 #: ../../library/Class/NoticeHtml.php:159 #: ../../library/Class/NoticeHtml.php:212 #: ../../library/ZendAfi/View/Helper/Notice/Blocs.php:64 @@ -19285,6 +19639,7 @@ msgstr "Etichetă" #: ../../library/Class/Systeme/ModulesAccueil/Library.php:115 #: ../../application/modules/opac/controllers/AbonneController.php:455 #: ../../application/modules/opac/controllers/AbonneController.php:457 +#: ../../library/Class/Systeme/ModulesAccueil/Library.php:116 msgid "Ville" msgstr "OraÅŸ" @@ -19662,7 +20017,7 @@ msgstr "Părerea dvs." #: ../../library/Class/AdminVar.php:256 ../../library/Class/AdminVar.php:254 #: ../../library/Class/AdminVar.php:258 ../../library/Class/AdminVar.php:258 -#: ../../library/Class/AdminVar.php:285 +#: ../../library/Class/AdminVar.php:285 ../../library/Class/AdminVar.php:286 msgid "" "Votre compte sera mis à jour dans un délai de 15 minutes après le retour " "anticipé du document." @@ -19705,7 +20060,7 @@ msgstr "Numele dvs. de utilizator: %s" #: ../../library/Class/Users.php:990 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1064 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1112 ../../library/Class/Users.php:1107 -#: ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1140 #, fuzzy, php-format msgid "Votre identifiant : %s\n" msgstr "Numele dvs. de utilizator: %s" @@ -19758,7 +20113,7 @@ msgstr "Parola dvs. :%s" #: ../../library/Class/Users.php:991 ../../library/Class/Users.php:1039 #: ../../library/Class/Users.php:1065 ../../library/Class/Users.php:1095 #: ../../library/Class/Users.php:1113 ../../library/Class/Users.php:1108 -#: ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1141 #, fuzzy, php-format msgid "Votre mot de passe : %s\n" msgstr "Parola dvs. :%s" @@ -19978,7 +20333,7 @@ msgstr "AÅ£i făcut o cerere de înscriere pe portal." #: ../../library/Class/Users.php:940 ../../library/Class/Users.php:988 #: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1062 ../../library/Class/Users.php:1057 -#: ../../library/Class/Users.php:1091 +#: ../../library/Class/Users.php:1091 ../../library/Class/Users.php:1090 #, fuzzy msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "AÅ£i făcut o cerere de înscriere pe portal." @@ -19997,6 +20352,7 @@ msgstr "AÅ£i făcut o cerere de înscriere pe portal." #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1111 #: ../../library/Class/Users.php:1106 ../../library/Class/Users.php:1140 +#: ../../library/Class/Users.php:1139 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "AÅ£i făcut o cerere de parolă pe portal." @@ -20021,6 +20377,7 @@ msgstr "Câmpul 'Nume de utilizator' trebuie să nu depăşească 50 de caracter #: ../../library/Class/Users.php:921 ../../library/Class/Users.php:941 #: ../../library/Class/Users.php:971 ../../library/Class/Users.php:989 #: ../../library/Class/Users.php:984 ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1017 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "Trebuie să completaÅ£i câmpul ‘Nume de utilizator’" @@ -20033,6 +20390,7 @@ msgstr "Trebuie să completaÅ£i câmpul ‘Nume de utilizator’" #: ../../library/Class/Users.php:922 ../../library/Class/Users.php:942 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:990 #: ../../library/Class/Users.php:985 ../../library/Class/Users.php:1019 +#: ../../library/Class/Users.php:1018 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "Trebuie să completaÅ£i câmpul ‘Parolă’" @@ -20126,7 +20484,7 @@ msgstr "" #: ../../library/Class/Users.php:904 ../../library/Class/Users.php:952 #: ../../library/Class/Users.php:972 ../../library/Class/Users.php:1002 #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1015 -#: ../../library/Class/Users.php:1049 +#: ../../library/Class/Users.php:1049 ../../library/Class/Users.php:1048 msgid "Vous devez fournir une adresse mail valide" msgstr "" @@ -20160,7 +20518,7 @@ msgstr "Trebuie să introduceÅ£i o parolă " #: ../../library/Class/Users.php:907 ../../library/Class/Users.php:955 #: ../../library/Class/Users.php:975 ../../library/Class/Users.php:1005 #: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1018 -#: ../../library/Class/Users.php:1052 +#: ../../library/Class/Users.php:1052 ../../library/Class/Users.php:1051 #, fuzzy msgid "Vous devez saisir un numéro de téléphone" msgstr "Trebuie să introduceÅ£i o parolă " @@ -20210,6 +20568,7 @@ msgstr "Trebuie să selectaÅ£i o fotografie făcând clic pe buton: căutare" #: ../../library/Class/Users.php:1216 ../../library/Class/Users.php:1242 #: ../../library/Class/Users.php:1281 ../../library/Class/Users.php:1299 #: ../../library/Class/Users.php:1294 ../../library/Class/Users.php:1328 +#: ../../library/Class/Users.php:1327 msgid "" "Vous devez vous connecter en tant qu'abonné de la bibliothèque pour obtenir " "plus d'informations." @@ -20429,7 +20788,7 @@ msgstr "Nu aÅ£i introdus o solicitare." #: ../../library/Class/Users.php:900 ../../library/Class/Users.php:948 #: ../../library/Class/Users.php:968 ../../library/Class/Users.php:998 #: ../../library/Class/Users.php:1016 ../../library/Class/Users.php:1011 -#: ../../library/Class/Users.php:1045 +#: ../../library/Class/Users.php:1045 ../../library/Class/Users.php:1044 msgid "Vous n'avez pas les droits suffisants pour diriger une formation" msgstr "" @@ -20439,7 +20798,7 @@ msgstr "" #: ../../library/Class/Users.php:897 ../../library/Class/Users.php:945 #: ../../library/Class/Users.php:965 ../../library/Class/Users.php:995 #: ../../library/Class/Users.php:1013 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1042 +#: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1041 msgid "Vous n'avez pas les droits suffisants pour suivre une formation" msgstr "" @@ -20608,11 +20967,13 @@ msgid "Vérification des prêts rendus de manière anticipée" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:61 +#: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 msgid "Vérifiée" msgstr "" #: ../../library/Class/AdminVar.php:164 ../../library/Class/AdminVar.php:162 #: ../../library/Class/AdminVar.php:165 ../../library/Class/AdminVar.php:165 +#: ../../library/Class/AdminVar.php:166 msgid "WS KOHA : Reservation d'exemplaires pour les multi sites" msgstr "" @@ -20620,6 +20981,10 @@ msgstr "" msgid "Web" msgstr "Web" +#: ../../application/modules/admin/views/scripts/index/index.phtml:45 +msgid "Wiki Bokeh" +msgstr "" + #: ../../library/Class/IntProfilDonnees.php:41 #: ../../library/Class/IntProfilDonnees.php:51 msgid "Windows ANSI" @@ -20775,6 +21140,7 @@ msgstr "la" #: ../../application/modules/admin/views/scripts/accueil/calendrier.phtml:93 #: ../../library/ZendAfi/View/Helper/SearchInspector.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/CosmoStatus.php:86 #, fuzzy msgid "aucun" msgstr "nici o" @@ -21136,6 +21502,8 @@ msgstr "ÅŸi" #: ../../library/ZendAfi/Form/SuggestionAchat.php:27 #: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:36 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:36 +#: ../../library/Class/WebService/SIGB/Nanook/BuySuggestForm.php:40 +#: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:40 msgid "ex: Harry Potter à l'école des sorciers" msgstr "" @@ -21299,8 +21667,8 @@ msgstr "De la %s la %s" msgid "jusqu'à " msgstr "până la" -#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:179 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:179 +#: ../../library/Class/Ouverture.php:179 ../../library/Class/Ouverture.php:180 #, fuzzy, php-format msgid "le %s" msgstr "%s" @@ -22001,6 +22369,11 @@ msgstr "etichetă a instrucÅ£iunii" msgid "ville" msgstr "OraÅŸ" +#: ../../application/modules/admin/views/scripts/index/index.phtml:12 +#, fuzzy +msgid "» Modifier «" +msgstr "Modificare" + #: ../../library/ZendAfi/Form/Configuration/LoginWidget.php:94 msgid "À la connextion : basculer automatiquement sur le profil" msgstr "" @@ -22039,6 +22412,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Nanook/Service.php:226 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:56 +#: ../../library/Class/WebService/SIGB/Nanook/Service.php:228 msgid "Échec de l'authentification par le webservice" msgstr "" @@ -22046,6 +22420,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:97 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:73 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:129 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:134 #, php-format msgid "Échec de la connexion au webservice, le SIGB a répondu \"%s\"" msgstr "" @@ -22067,12 +22442,14 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:86 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:118 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:123 #, php-format msgid "Échec de la suggestion, le webservice a répondu \"%s\"" msgstr "" #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:83 #: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:115 +#: ../../library/Class/WebService/SIGB/Koha/RestfulService.php:120 msgid "Échec de la suggestion, une erreur inconnue est survenue." msgstr "" diff --git a/public/admin/js/onload_utils.js b/public/admin/js/onload_utils.js index 78cd808688a4fe6f3990e0c0aa88d285b049cb64..d2ef3bd4f457bf595f4530d7d0a738549435fe87 100644 --- a/public/admin/js/onload_utils.js +++ b/public/admin/js/onload_utils.js @@ -75,6 +75,7 @@ var autoHideShowConfigurationModule = function() { autoHideShowTagOnParentHover('a[class^="edit_"]', 'div.boite'); autoHideShowTagOnParentHover('.select_kiosque_form', 'div.boite'); autoHideShowTagOnParentHover('.newsadd', 'div.boite'); + autoHideShowTagOnParentHover('.default_filters', 'div.boite'); } diff --git a/public/opac/css/global.css b/public/opac/css/global.css index 47b89cf00cdbbba1c1f7bf419e5e4df8afbc9a38..c81a896e63b298d602c55768d1d24d199c8d7641 100644 --- a/public/opac/css/global.css +++ b/public/opac/css/global.css @@ -36,7 +36,8 @@ a { /* Boites bannière*/ .configuration_module, -.configuration_module + .newsadd { +.configuration_module + .newsadd, +.configuration_module + .default_filters { z-index: 1000; position: relative; height: 0px; @@ -44,7 +45,8 @@ a { cursor:pointer; } -.configuration_module + .newsadd { +.configuration_module + .newsadd, +.configuration_module + .default_filters { margin-right:60px; } @@ -3031,6 +3033,12 @@ a.readspeaker { width: 30%; } +.boite.rech_simple .domains ul { + list-style: none; + padding: 0; + margin: 0; +} + /** barre de navigation **/ @@ -3356,12 +3364,40 @@ dd.picture { #opac-dialog .boutons > div { - display: inline-block; - text-align: center; + display: inline-block; + text-align: center; + background-color: rgba(0,0,0,0.6); + margin: 0.5em 10px; + max-width: 300px; + height:30px; +} + +#opac-dialog .boutons > div:hover { + background-color:rgba(0, 0 , 0 , 0.8); } #opac-dialog .boutons > div a { display: inline-block; + color:white; + vertical-align:middle; +} + +#opac-dialog .boutons .bouton td { + background:transparent!important; +} + +div.bouton > * { + visibility: hidden; +} + +div.bouton a tr td:nth-child(2) img { + vertical-align: middle; + visibility: visible; +} + +#opac-dialog .bouton td img[src*="/ico/"], +div.bouton td[id*="texte"] { + visibility:visible; } .center { @@ -3420,4 +3456,4 @@ th.actions { .cke_inner.cke_reset.cke_maximized { position: fixed !important; -} \ No newline at end of file +} diff --git a/public/opac/js/renderFilters/ajaxifyFilters.js b/public/opac/js/renderFilters/ajaxifyFilters.js index 0527ab6b88374481e699db56abfe63b61afd6a3d..8a642a431ea0f2ee17a5effb8b9da25532dd1726 100644 --- a/public/opac/js/renderFilters/ajaxifyFilters.js +++ b/public/opac/js/renderFilters/ajaxifyFilters.js @@ -45,7 +45,7 @@ }; - var links = widget.find(".filters a"); + var links = widget.find(".filters a, a.default_filters"); links.click(function(event) { refresh($(this), event, 'href'); }); diff --git a/public/opac/js/renderFilters/list.css b/public/opac/js/renderFilters/list.css index 4bdcfeb18580d1352ec0493a20572f871b88332a..39f62103c06437f15b7aaec9cc766b6716c158cb 100644 --- a/public/opac/js/renderFilters/list.css +++ b/public/opac/js/renderFilters/list.css @@ -79,5 +79,5 @@ } .boite ul.filters.list .search h2 { - display: none; + display: none; } diff --git a/public/opac/js/renderFilters/tabs.css b/public/opac/js/renderFilters/tabs.css index c087500384185ca9e97b0dd89c864a64bfa877bc..f0707dc1e6e006ac47f8fd125138f0419be4fe9a 100644 --- a/public/opac/js/renderFilters/tabs.css +++ b/public/opac/js/renderFilters/tabs.css @@ -1,83 +1,83 @@ .boite ul.filters.tabs { - padding: 0; - width: 100%; + padding: 0; + width: 100%; } .boite ul.filters.tabs > li { - display: inline-block; - vertical-align: top; - position: relative; - padding: 0px 5px 5px 0px; - min-width: 100px; + display: inline-block; + vertical-align: top; + position: relative; + padding: 0px 5px 5px 0px; + min-width: 100px; } .boite ul.filters.tabs > li h2, .boite ul.filters.tabs .search form { - text-align: center; - padding: 5px 5px 5px 26px; - margin: 0px; + text-align: center; + padding: 5px 5px 5px 26px; + margin: 0px; } .boite ul.filters.tabs > li h2 { - background: transparent url(../../images/buttons/down-chevron.png) 2px center no-repeat; + background: transparent url(../../images/buttons/down-chevron.png) 2px center no-repeat; } .boite ul.filters.tabs > li:hover h2 { - background-image: url(../../images/buttons/up-chevron.png); + background-image: url(../../images/buttons/up-chevron.png); } .boite ul.filters.tabs > li h2, .boite ul.filters.tabs ul, .boite ul.filters.tabs .search form { - background-color: #ddd; + background-color: #ddd; } .boite ul.filters.tabs li { - list-style-type: none; + list-style-type: none; } .boite ul.filters.tabs ul { - padding: 0px; - margin: 0px; - position: absolute; - display: none; - white-space: nowrap; - box-shadow: 0px 10px 10px rgba(0,0,0,0.5); - z-index: 100; - min-width: 90%; + padding: 0px; + margin: 0px; + position: absolute; + display: none; + white-space: nowrap; + box-shadow: 0px 10px 10px rgba(0,0,0,0.5); + z-index: 100; + min-width: 90%; } .boite ul.filters.tabs li { //iOS touch :hover workaround cursor: pointer; -} + } .boite ul.filters.tabs li:hover ul { - display: block; + display: block; } .boite ul.filters.tabs ul li.selected { - font-weight: bold; + font-weight: bold; } .boite ul.filters.tabs ul li { - display: block; + display: block; } .boite ul.filters.tabs ul li a { - display: block; - padding: 5px; + display: block; + padding: 5px; } .boite ul.filters.tabs ul li a:hover { - background-color: white; + background-color: white; } .boite ul.filters.tabs .search h2 { - display: none; + display: none; } .boite ul.filters.tabs .search form { - padding-left:5px; + padding-left:5px; } \ No newline at end of file diff --git a/tests/application/modules/admin/controllers/AccueilControllerTest.php b/tests/application/modules/admin/controllers/AccueilControllerTest.php index f1a90dc463a3ec191a2255fe3b61f882e4f07db3..2ae422d4462622af315b4886808ea19fb484d89d 100644 --- a/tests/application/modules/admin/controllers/AccueilControllerTest.php +++ b/tests/application/modules/admin/controllers/AccueilControllerTest.php @@ -822,7 +822,8 @@ abstract class AccueilControllerRechSimpleConfigurationTestCase extends Admin_Ab 'id_module' => 2, 'preferences' => ['titre' => 'Recherchez', 'boite' => 'boite_vide', - 'placeholder' => 'ex: Potter']]; + 'placeholder' => 'ex: Potter', + 'domain_ids' => '4']]; $this->_profil_adulte = Class_Profil::getCurrentProfil() ->setLibelle('Adulte') @@ -898,6 +899,7 @@ class AccueilControllerRechSimpleConfigurationTest extends AccueilControllerRech ->answers([$this->_profil_adulte, Class_Profil::newInstanceWithId(98, ['libelle' => 'Jeunesse'])]); + $this->request_url = '/admin/accueil/rechsimple?id_module=2&type_module=RECH_SIMPLE&config=accueil'; $this->dispatch($this->request_url, true); } @@ -948,10 +950,33 @@ class AccueilControllerRechSimpleConfigurationTest extends AccueilControllerRech } + /** @test */ + public function domainSelectorShouldBePresent() { + $this->assertXPath('//input[@name="domain_ids"][@value="4"]'); + } + + + /** @test */ + public function domainSelectorScriptShouldBeLoaded() { + $this->assertXPathContentContains('//script', '$.getJSON("/abonne/viewable-domains-json"'); + } + + + /** @test */ + public function domainSelectorStyleShouldHaveRadioSelectChecked() { + $this->assertXPath('//input[@name="domain_select_style"][@type="radio"][@checked="checked"][@value="select"]'); + } + + + /** @test */ + public function domainSelectorStyleShouldHaveRadioCheckboxUnchecked() { + $this->assertXPath('//input[@name="domain_select_style"][@type="radio"][not(@checked)][@value="checkbox"]'); + } } + class AccueilControllerWidgetDomainConfigurationTest extends Admin_AbstractControllerTestCase { public function setup() { diff --git a/tests/application/modules/admin/controllers/AdminControllerTest.php b/tests/application/modules/admin/controllers/AdminControllerTest.php index aafff8c8ce1d11ab058c010b0bece90f9232d0d5..ec3e1cd28e2d70795ce3cd9c92ecb33bc7ef1d7c 100644 --- a/tests/application/modules/admin/controllers/AdminControllerTest.php +++ b/tests/application/modules/admin/controllers/AdminControllerTest.php @@ -41,10 +41,6 @@ class AdminControllerSitoOKTest extends Admin_AbstractControllerTestCase { } - public function testMenuUtilisateurInfo() { - $this->assertQueryContentContains("div.ligne_info", 'sysadmin'); - } - public function testMenuNewsletterLink() { $this->assertXPathContentContains("//a[@href='" . BASE_URL . "/admin/newsletter']", "Lettres d'information"); @@ -53,9 +49,10 @@ class AdminControllerSitoOKTest extends Admin_AbstractControllerTestCase { /** @test */ public function loginShouldBeInHorizontalMenu() { - $this->assertXPathContentContains("//a[@href='/admin/users/edit/id/777']", "sysadmin"); + $this->assertXPathContentContains("//a[@href='/admin/users/edit/id/777']", 'sysadmin (super administrateur)'); } + /** @test */ function prettyPhotoCssShouldBeInHead() { $this->assertXPath("//head/link[contains(@href, 'css/prettyPhoto.css')]"); diff --git a/tests/application/modules/admin/controllers/CmsControllerListModeTest.php b/tests/application/modules/admin/controllers/CmsControllerListModeTest.php index fe98668bed888ae30b0bbc885936d72f0e4c7d7e..afd50b7662a219e0885604da5a50a070a69da469 100644 --- a/tests/application/modules/admin/controllers/CmsControllerListModeTest.php +++ b/tests/application/modules/admin/controllers/CmsControllerListModeTest.php @@ -58,6 +58,18 @@ class CmsControllerListModeAdminRootTest extends CmsControllerListModeTestCase { $this->assertXPath('//td//a[contains(@href, "bib/permissions/id/0")]', $this->_response->getBody()); } + + + /** @test */ + public function mmajDateColumnShouldBePresent() { + $this->assertXPath('//table//th', 'Date de mise à jour'); + } + + + /** @test */ + public function authorColumnShouldBePresent() { + $this->assertXPath('//th', 'Auteur'); + } } @@ -261,6 +273,7 @@ class CmsControllerListModeSearchTest 'titre' => 'News from portail', 'contenu' => 'Welcome', 'categorie' => Class_ArticleCategorie::find(23)]); + $this->fixture('Class_ArticleCategorie', ['id' => 3400, 'libelle' => 'Racine CRan', @@ -312,6 +325,8 @@ class CmsControllerListModeSearchTest } } + + class CmsControllerListModeAdminBibSearchTest extends CmsControllerListModeTestCase { public function setUp() { parent::setUp(); @@ -329,16 +344,22 @@ class CmsControllerListModeAdminBibSearchTest extends CmsControllerListModeTestC 'contenu' => 'Welcome', 'categorie' => Class_ArticleCategorie::find(23)]); + Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Users') + ->whenCalled('getIdentity') + ->answers($this->_admin_bib) + + ->whenCalled('findAllBy') + ->answers([]); Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Article') ->whenCalled('findAllBy') - ->with(['where' => 'titre like \'%news%\'', + ->with(['where' => '(titre like \'%news%\')', 'id_cat' => [1,23,34], 'order' => 'titre', 'limitPage' => [0, 25]]) ->answers([Class_Article::find(1)]) ->whenCalled('countBy') - ->with(['where' => 'titre like \'%news%\'', + ->with(['where' => '(titre like \'%news%\')', 'id_cat' => [1,23,34], 'order' => 'titre']) ->answers(2) @@ -349,14 +370,14 @@ class CmsControllerListModeAdminBibSearchTest extends CmsControllerListModeTestC } - /** @test */ public function newsFromPortailShouldNotBePresent() { $this->assertNotXPathContentContains('//td', 'News from portail', $this->_response->getBody()); } - } + + class CmsControllerListModeEditWithPaginationTest extends CmsControllerListModeTestCase { public function setUp() { @@ -410,5 +431,3 @@ class CmsControllerListModeEditPostTest extends CmsControllerListModeTestCase { } } - -?> \ No newline at end of file diff --git a/tests/application/modules/admin/controllers/CmsControllerTest.php b/tests/application/modules/admin/controllers/CmsControllerTest.php index 0f8084842ccddd7ec87922d47308cc1333fcea90..aef11553e5c6fb7fb83f060ae1dedfc9294d75b5 100644 --- a/tests/application/modules/admin/controllers/CmsControllerTest.php +++ b/tests/application/modules/admin/controllers/CmsControllerTest.php @@ -100,7 +100,7 @@ abstract class CmsControllerTestCase extends Admin_AbstractControllerTestCase { 'code_postal' => '74000', 'ville' => 'Annecy', 'pays' => 'France' - ]); + ]); $this->lieu_arcadium = $this->fixture('Class_Lieu', ['id' => 10 , 'libelle' => 'Arcadium', @@ -156,14 +156,14 @@ abstract class CmsControllerTestCase extends Admin_AbstractControllerTestCase { ['id' => 1, 'libelle' => 'Root']); $this->_cat_atelier = $this->fixture('Class_ArticleCategorie', - ['id' => 33, - 'libelle' => 'Atelier', - 'parent_categorie' => $this->root_category]); + ['id' => 33, + 'libelle' => 'Atelier', + 'parent_categorie' => $this->root_category]); $this->_cat_a_la_une = $this->fixture('Class_ArticleCategorie', - ['id' => 23, - 'libelle' => 'A la Une', - 'parent_categorie' => $this->root_category]); + ['id' => 23, + 'libelle' => 'A la Une', + 'parent_categorie' => $this->root_category]); $this->cat_evenements = $this->fixture('Class_ArticleCategorie', ['id' => 34, @@ -249,7 +249,7 @@ abstract class CmsControllerTestCase extends Admin_AbstractControllerTestCase { function assertTextAreaContains($name, $content) { $this->assertXPathContentContains(sprintf('//textarea[@name="%s"]', $name), - $content, $this->_response->getBody()); + $content, $this->_response->getBody()); } @@ -439,11 +439,19 @@ class CmsControllerArticleConcertAsAdminPortailEditActionTest extends CmsControl public function boutonValiderClickShouldNotBeAjax() { $this->assertNotXPath('//td//div[contains(@onclick, "initializeAjaxFormSubmit")]'); } + + + /** @test */ + public function pageShouldContainsTwoValidateButtons() { + $this->assertXPathContentContains('//script', '$("#opac-dialog form + .boutons, .modules form + .boutons").clone().insertBefore("#opac-dialog form.form, .modules form.form");'); + } + } + class CmsControllerArticleConcertAsReferentEditActionTest extends CmsControllerArticleConcertAsAdminPortailEditActionTest { protected $_referent; @@ -453,7 +461,7 @@ class CmsControllerArticleConcertAsReferentEditActionTest extends CmsControllerA public function setUp() { parent::setUp(); $this->modo = Class_Users::newInstanceWithId(22, ['login' => 'modo', - 'role_level' =>ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL ]); + 'role_level' =>ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL ]); $this->modo->save(); ZendAfi_Auth::getInstance()->logUser($this->modo); $this->_referent = Class_UserGroup::newInstanceWithId(280) @@ -804,7 +812,7 @@ class CmsControllerArticleConcertEditRenderPopupActionTest extends CmsController public function fullDayValueShouldNotBeChecked() { $xpath = new Storm_Test_XPath(); $xpath->assertXPath($this->_json->content, - '//input[@type="checkbox"][@name="all_day"][not(@checked)]', $this->_json->content); + '//input[@type="checkbox"][@name="all_day"][not(@checked)]', $this->_json->content); } @@ -1232,8 +1240,8 @@ class CmsControllerArticleConcertEditActionPostWithWrongDataRenderPopupTest exte /** @test */ public function boutonValiderShouldSubmitFormUsingAjax() { $this->_xpath->assertXPath($this->_json->content, - '//div[@class="bouton"][contains(@onclick, "initializeAjaxFormSubmit")]', - $this->_json->content); + '//div[@class="bouton"][contains(@onclick, "initializeAjaxFormSubmit")]', + $this->_json->content); } @@ -1884,7 +1892,7 @@ class CmsControllerNewsAddActionPostWithDynamicWorkflowTest extends CmsControll */ public function sentMailShouldContainsStatuses($content) { $this->assertEquals('Un nouvel article de Mario Super est passé dans l\'état "À valider" et vous devez vérifier pour l\'état "A lire". Katsuhiro Otomo en dédicace ! http://localhost'.BASE_URL.'/cms/articleview/id/5', - $content); + $content); } } @@ -1903,15 +1911,15 @@ class CmsControllerWorkflowArticleRefusedTest extends CmsControllerWorkflowTestC public function postArticleRefuser() { $datas = [ - 'titre' => 'Katsuhiro Otomo en dédicace !', - 'debut' => '', - 'fin' => '', - 'events_debut' => '', - 'events_fin' => '', - 'description' => '', - 'id_cat' => 23, - 'contenu' => 'Ne manquez pas cet évènement.', - 'status' => Class_Article::STATUS_REFUSED + 'titre' => 'Katsuhiro Otomo en dédicace !', + 'debut' => '', + 'fin' => '', + 'events_debut' => '', + 'events_fin' => '', + 'description' => '', + 'id_cat' => 23, + 'contenu' => 'Ne manquez pas cet évènement.', + 'status' => Class_Article::STATUS_REFUSED ]; $this->postDispatch('/admin/cms/edit/id/4', @@ -2069,29 +2077,29 @@ class CmsControllerArticleEditActionWithFormTest extends CmsControllerWithPermis Class_Permission::createArticle()->permitTo($this->_group_testing, $this->_cat_atelier); Class_Permission::createArticleCategory()->permitTo($this->_group_testing, $this->_cat_atelier); $this->articleWithForm = $this->fixture('Class_Article', - ['id' => 5, - 'categorie' => $this->cat_evenements, - 'titre' => 'Mon article avec formulaire', - 'auteur' => $this->fixture('Class_Users', - ['id' => 2, - 'Nom' => 'Tom et Jerry', - 'password'=>'toto', - 'login'=>'tom']), - 'description' => 'Mon article avec formulaire', - 'contenu' => '<form action="/formulaire/add/id_article/5" method="POST" name="mon form">', - 'debut' => '2011-03-20', - 'fin' => '', - 'events_debut' => '2011-03-27 21:00', - 'events_fin' => '2011-03-28 22:30', - 'cacher_titre' => 1, - 'langue' => 'fr', - 'tags' => 'concert;jazz', - 'avis' => true, - 'indexation' => true, - 'date_creation' => '2010-12-25 10:23:23', - 'date_maj' => '2010-12-26 11:12:34', - 'domaine_ids' => [11,12], - 'avis_users' => []]); + ['id' => 5, + 'categorie' => $this->cat_evenements, + 'titre' => 'Mon article avec formulaire', + 'auteur' => $this->fixture('Class_Users', + ['id' => 2, + 'Nom' => 'Tom et Jerry', + 'password'=>'toto', + 'login'=>'tom']), + 'description' => 'Mon article avec formulaire', + 'contenu' => '<form action="/formulaire/add/id_article/5" method="POST" name="mon form">', + 'debut' => '2011-03-20', + 'fin' => '', + 'events_debut' => '2011-03-27 21:00', + 'events_fin' => '2011-03-28 22:30', + 'cacher_titre' => 1, + 'langue' => 'fr', + 'tags' => 'concert;jazz', + 'avis' => true, + 'indexation' => true, + 'date_creation' => '2010-12-25 10:23:23', + 'date_maj' => '2010-12-26 11:12:34', + 'domaine_ids' => [11,12], + 'avis_users' => []]); Class_AdminVar::getLoader()->newInstanceWithId('CMS_FORMULAIRES')->setValeur('1'); @@ -2139,30 +2147,30 @@ class CmsControllerArticleEditActionWithFormAndEmailFilledTest extends CmsContro parent::setUp(); $this->articleWithForm = $this->fixture('Class_Article', - ['id' => 5, - 'categorie' => $this->cat_evenements, - 'titre' => 'Mon article avec formulaire', - 'auteur' => $this->fixture('Class_Users', - ['id' => 2, - 'Nom' => 'Tom et Jerry', - 'password'=>'toto', - 'login'=>'tom']), - 'description' => 'Mon article avec formulaire', - 'contenu' => '<form action="/formulaire/add/id_article/5" method="POST" name="mon form">', - 'debut' => '2011-03-20', - 'fin' => '2011-03-28', - 'events_debut' => '2011-03-27 21:00', - 'events_fin' => '2011-03-28 22:30', - 'cacher_titre' => 1, - 'langue' => 'fr', - 'tags' => 'concert;jazz', - 'avis' => true, - 'indexation' => false, - 'date_creation' => '2010-12-25 10:23:23', - 'date_maj' => '2010-12-26 11:12:34', - 'domaine_ids' => [11,12], - 'avis_users' => [], - 'destination_email' => 'william@dlaton.com']); + ['id' => 5, + 'categorie' => $this->cat_evenements, + 'titre' => 'Mon article avec formulaire', + 'auteur' => $this->fixture('Class_Users', + ['id' => 2, + 'Nom' => 'Tom et Jerry', + 'password'=>'toto', + 'login'=>'tom']), + 'description' => 'Mon article avec formulaire', + 'contenu' => '<form action="/formulaire/add/id_article/5" method="POST" name="mon form">', + 'debut' => '2011-03-20', + 'fin' => '2011-03-28', + 'events_debut' => '2011-03-27 21:00', + 'events_fin' => '2011-03-28 22:30', + 'cacher_titre' => 1, + 'langue' => 'fr', + 'tags' => 'concert;jazz', + 'avis' => true, + 'indexation' => false, + 'date_creation' => '2010-12-25 10:23:23', + 'date_maj' => '2010-12-26 11:12:34', + 'domaine_ids' => [11,12], + 'avis_users' => [], + 'destination_email' => 'william@dlaton.com']); Class_AdminVar::getLoader()->newInstanceWithId('CMS_FORMULAIRES')->setValeur('1'); @@ -2828,7 +2836,7 @@ class CmsControllerNewsAddToCatALaUneInNewsModuleActionTest extends CmsControlle class CmsControllerWithOptionPublicationDirecteWorkflowTest -extends CmsControllerWithPermissionTestCase { + extends CmsControllerWithPermissionTestCase { public function setup() { parent::setup(); Class_AdminVar::newInstanceWithId('WORKFLOW') @@ -2876,9 +2884,9 @@ class CmsControllerCategoriesActionTest extends AbstractControllerTestCase { ['id' => 1, 'label' => 'Annecy', 'categories' => [['id' => 5, - 'label'=> 'Annecy News', - 'categories' => [], - 'items' => []]], + 'label'=> 'Annecy News', + 'categories' => [], + 'items' => []]], 'items'=> []], ['id' => 2, 'label' => 'Valleiry', @@ -2944,4 +2952,4 @@ class CmsControllerEditArticleWithDate30December2014Test extends CmsControllerte public function mondayShouldBePicked() { $this->assertXPath('//input[@checked="checked"][@value="1"]'); } -} \ No newline at end of file +} diff --git a/tests/application/modules/admin/controllers/IndexControllerTest.php b/tests/application/modules/admin/controllers/IndexControllerTest.php index cdec33f87eed4e18b70b7e605761a7f5685972b1..89140f340262310cf91dedf10e037f8c696309e7 100644 --- a/tests/application/modules/admin/controllers/IndexControllerTest.php +++ b/tests/application/modules/admin/controllers/IndexControllerTest.php @@ -1,49 +1,81 @@ <?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 - */ - - require_once 'AdminAbstractControllerTestCase.php'; - - abstract class Admin_IndexControllerTestCase extends Admin_AbstractControllerTestCase { - protected - $_storm_default_to_volatile = true, - $_cms_menu_path = '//div[@class="menuGaucheAdmin"][.//td[text()="Gestionnaire de contenu"]]', - $_bibnum_menu_path = '//div[@class="menuGaucheAdmin"][.//td[text()="Bibliothèque numérique"]]'; - } - - - - class Admin_IndexControllerTest extends Admin_IndexControllerTestCase { - - public function setUp() { - parent::setUp(); - $this->fixture('Class_AdminVar', - ['id' => 'NOM_DOMAINE', - 'clef' => 'NOM_DOMAINE', - 'valeur' => 'http://bokeh-library-portal.org']); - - $this->dispatch('/admin/index/index', true); - } - - - /** @test */ +/** + * 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 + */ + +require_once 'AdminAbstractControllerTestCase.php'; + +abstract class Admin_IndexControllerTestCase extends Admin_AbstractControllerTestCase { + protected + $_storm_default_to_volatile = true, + $_cms_menu_path = '//div[@class="menuGaucheAdmin"][.//td[text()="Gestionnaire de contenu"]]', + $_bibnum_menu_path = '//div[@class="menuGaucheAdmin"][.//td[text()="Bibliothèque numérique"]]'; + + public function setUp() { + parent::setUp(); + + $this->fixture('Class_CosmoVar', + ['id' => 'integration_date', + 'clef' => 'integration_date', + 'valeur' => '2016-10-25 13:12:34']); + + $this->fixture('Class_CosmoVar', + ['id' => 'clef_traitements', + 'clef' => 'clef_traitements', + 'valeur' => '1']); + + $this->fixture('Class_CosmoVar', + ['id' => 'traitement_phase', + 'clef' => 'traitement_phase', + 'valeur' => 'Execution des batchs programmés']); + + $this->fixture('Class_CosmoVar', + ['id' => 'integration_frequence', + 'clef' => 'integration_frequence', + 'valeur' => '7']); + + ZendAfi_View_Helper_Admin_CosmoStatus::setTimeSource(new TimeSourceForTest('2016-11-03 14:27:45')); + } +} + + + +class Admin_IndexControllerTest extends Admin_IndexControllerTestCase { + + public function setUp() { + parent::setUp(); + $this->fixture('Class_AdminVar', + ['id' => 'NOM_DOMAINE', + 'clef' => 'NOM_DOMAINE', + 'valeur' => 'http://bokeh-library-portal.org']); + + $this->dispatch('/admin/index/index', true); + } + + + public function tearDown() { + ZendAfi_View_Helper_Admin_CosmoStatus::setTimeSource(null); + parent::tearDown(); + } + + + /** @test */ public function fileBokeh74ShouldBeLoaded() { $this->assertXPath('//link[contains(@href, "bokeh74/global.css")]'); } @@ -69,8 +101,13 @@ /** @test */ public function linkToGoogleGroupShouldBePresent() { - $this->assertXPathContentContains( - '//a[contains(@href, "utilisateurs-bokeh")]', 'Google group Bokeh'); + $this->assertXPathContentContains('//a[contains(@href, "utilisateurs-bokeh")]', 'Google group Bokeh'); + } + + + /** @test */ + public function titleShouldContainsVersion() { + $this->assertXPathContentContains('//div[@class="modules"]//h1//a', BOKEH_RELEASE_NUMBER); } @@ -87,14 +124,33 @@ /** @test */ - public function editDomaineNameLinkShouldBePresent() { - $this->assertXPathContentContains('//a[contains(@href, "/admin/index/adminvaredit/cle/NOM_DOMAINE")]','Modifier', $this->_response->getBody()); + public function dataIntegrationShouldPresent() { + $this->assertXPathContentContains('//div[@class="modules"]/h2', 'Intégration des données :'); } /** @test */ - public function linkToDocShouldBePresent() { - $this->assertXPathContentContains('//h2/a[contains(@href, "/blob/' . BOKEH_VERSION . '/VERSIONS")]', BOKEH_RELEASE_NUMBER); + public function integrationShouldBeRunningSince2016_10_25() { + $this->assertXPathContentContains('//b', '25 octobre 2016 13:12:34 (Execution des batchs programmés)', + $this->_response->getBody()); + } + + + /** @test */ + public function lastIntegrationShouldBeLateFrom1Day() { + $this->assertXPathContentContains('//b', '1 jours', $this->_response->getBody()); + } + + + /** @test */ + public function integrationWaitingTasksShouldBePresent() { + $this->assertXPathContentContains('//div[contains(text(), "Fichier(s) en file d\'attente")]//b', 'aucun'); + } + + + /** @test */ + public function editDomaineNameLinkShouldBePresent() { + $this->assertXPathContentContains('//a[contains(@href, "/admin/index/adminvaredit/cle/NOM_DOMAINE")]','Modifier', $this->_response->getBody()); } @@ -112,6 +168,30 @@ +class Admin_IndexControllerRedacteurTest extends Admin_IndexControllerTestCase { + + protected function _loginHook($account) { + $account->ROLE = "modo_portail"; + $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::MODO_PORTAIL; + $account->LOGIN = "modo"; + $account->PSEUDO = "modo"; + } + + + public function setUp() { + parent::setUp(); + $this->dispatch('/admin/index/index', true); + } + + + /** @test */ + public function dataIntegrationShouldPresent() { + $this->assertNotXPathContentContains('//div[@class="modules"]/h2', 'Intégration des données :'); + } +} + + + class Admin_IndexControllerSitothequeTest extends Admin_IndexControllerTestCase { public function setUp() { parent::setUp(); @@ -175,16 +255,25 @@ class Admin_IndexControllerHeartBeatTest extends Admin_IndexControllerTestCase { class Admin_IndexControllerClearCacheActionTest extends Admin_IndexControllerTestCase { + protected $_cache_version; + public function setUp() { parent::setUp(); Storm_Cache::beVolatile(); + $this->_cache_version = Class_ScriptLoader::getInstance()->getCacheHash(); $this->dispatch('/admin/index/clearcache', true); } /** @test */ public function clearCacheShouldRedirectToAdminVar() { - $this->assertRedirectTo('/admin/index/adminvar'); + $this->assertRedirect(); + } + + + /** @test */ + public function cacheVersionShouldHaveChange() { + $this->assertNotEquals($this->_cache_version, Class_ScriptLoader::getInstance()->getCacheHash()); } } @@ -244,12 +333,12 @@ class Admin_IndexControllerWithSkinSelectorTest extends Admin_AbstractController parent::setUp(); Class_Admin_Skin::setFileSystem( - (new Storm_FileSystem_Volatile()) - ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh88') - ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh2000') - ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh88/' . Class_Admin_Skin::ADMIN_COLORS_FOLDER) - ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh2000/' . Class_Admin_Skin::ADMIN_COLORS_FOLDER) - ->touch(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh2000/' . Class_Admin_Skin::ADMIN_COLORS_FOLDER . '/blue.css') + (new Storm_FileSystem_Volatile()) + ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh88') + ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh2000') + ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh88/' . Class_Admin_Skin::ADMIN_COLORS_FOLDER) + ->mkdir(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh2000/' . Class_Admin_Skin::ADMIN_COLORS_FOLDER) + ->touch(Class_Admin_Skin::DEFAULT_ADMIN_PATH . 'bokeh2000/' . Class_Admin_Skin::ADMIN_COLORS_FOLDER . '/blue.css') ); Class_Users::getIdentity()->setAdminSkin([Class_User_Settings::ADMIN_SKIN => 'bokeh2000', diff --git a/tests/application/modules/admin/controllers/UsersControllerTest.php b/tests/application/modules/admin/controllers/UsersControllerTest.php index 0742dd70b7191ca1e3405c1173b8effc8141f3e2..3588242e7d34d7190050ddd6c1bbb255e380a43b 100644 --- a/tests/application/modules/admin/controllers/UsersControllerTest.php +++ b/tests/application/modules/admin/controllers/UsersControllerTest.php @@ -509,7 +509,7 @@ class UsersControllerPostMarcusDataTest extends UsersControllerWithMarcusTestCas } public function testRoleIsAdministrateur() { - $this->assertEquals('admin_bib', $this->marcus->getRole()); + $this->assertEquals('admin_bib', $this->marcus->getNomRole()); } public function testOrdreabonIsTwo() { @@ -1017,12 +1017,18 @@ class Admin_UsersControllerChangeAdminSkinActionTest extends Admin_AbstractContr public function setUp() { parent::setUp(); + $group_vodeclic = $this->fixture('Class_UserGroup', + ['id' => 20, + 'libelle' => 'Multimedia']) + ->addRight(Class_UserGroup::RIGHT_ACCES_VODECLIC); + $redac = $this->fixture('Class_Users', ['id' => 5, 'login' => 'rédacteur', 'password' => 'msmdp', 'id_site' => '5', 'role_level' => ZendAfi_Acl_AdminControllerRoles::MODO_BIB]); + $redac->setUserGroups([$group_vodeclic])->save(); ZendAfi_Auth::getInstance()->logUser($redac); diff --git a/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatNanookTest.php b/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatNanookTest.php index aa37724d749aa94d77909f2d7c3f343105ecda36..dea46bd3212d816b44d1a50d10a77ddcf9a4591a 100644 --- a/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatNanookTest.php +++ b/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatNanookTest.php @@ -74,7 +74,7 @@ abstract class AbstractAbonneControllerSuggestionAchatNanookTestCase extends Abs ->whenCalled('postData') ->with('http://nanookService/service/CreateSuggest/patronId/187', ['site' => '12', - 'title' => 'fu', + 'title' => '[Livres] fu', 'author' => 'mf', 'isbnean' => '2-07-0541 27_4', 'desclink' => '', @@ -84,7 +84,7 @@ abstract class AbstractAbonneControllerSuggestionAchatNanookTestCase extends Abs ->whenCalled('postData') ->with('http://nanookService/service/CreateSuggest/patronId/187', ['site' => '12', - 'title' => 'fu', + 'title' => '[DVD] fu', 'author' => 'Ye', 'isbnean' => '2-07-0541 27_4', 'desclink' => '', @@ -195,6 +195,26 @@ class AbonneControllerSuggestionAchatNanookAddTest extends AbstractAbonneControl public function formShouldContainsSite() { $this->assertXPath('//form//input[@name="Library"][@value="Tatim bib"][@disabled="1"]'); } + + /** @test */ + public function formShouldContainsSelectForDocType() { + $this->assertXPathContentContains('//form//select[@name="DocType"]//option[@value="3"]', + 'Disques'); + } + + + /** @test */ + public function docTypeForDiscsShouldBeAtFirstPlace() { + $this->assertXPathContentContains('//form//select[@name="DocType"]//option[1]', 'Disques'); + } + + + /** @test */ + public function defaultDocTypeShouldBeBook() { + $this->assertXPathContentContains('//form//select[@name="DocType"]//option[@value="1"][@selected]', + 'Livres'); + } + } @@ -208,7 +228,8 @@ class AbonneControllerSuggestionAchatNanookAddPostTest extends AbstractAbonneCon $mock_transport = new MockMailTransport(); Zend_Mail::setDefaultTransport($mock_transport); - $this->postDispatch('/opac/abonne/suggestion-achat-add', ['Site' => '12', + $this->postDispatch('/opac/abonne/suggestion-achat-add', ['DocType' => Class_TypeDoc::LIVRE, + 'Site' => '12', 'Title' => 'fu', 'Author' => 'mf', 'Isbn' => '2-07-0541 27_4', @@ -240,7 +261,8 @@ class AbonneControllerSuggestionAchatNanookAddPostErrorsTest extends AbstractAbo $mock_transport = new MockMailTransport(); Zend_Mail::setDefaultTransport($mock_transport); - $this->postDispatch('/opac/abonne/suggestion-achat-add', ['Site' => '12', + $this->postDispatch('/opac/abonne/suggestion-achat-add', ['DocType' => Class_TypeDoc::DVD, + 'Site' => '12', 'Title' => 'fu', 'Author' => 'Ye', 'Isbn' => '2-07-0541 27_4', diff --git a/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatTest.php b/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatTest.php index 8d5b009cc128c3dd0f1823c095709b46043434f1..b5fde82c602abe6d5e9dd4b8068122a64bf7f235 100644 --- a/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatTest.php +++ b/tests/application/modules/opac/controllers/AbonneControllerSuggestionAchatTest.php @@ -282,8 +282,8 @@ class AbonneControllerSuggestionAchatAddFormMultipleBibsAndKohaRestfulTest exten /** @test */ - public function formShouldContainsTextAreaForPatronReason() { - $this->assertXPath('//form//textarea[@name="PatronReason"]'); + public function formShouldContainsTextAreaForNote() { + $this->assertXPath('//form//textarea[@name="Note"]'); } @@ -315,6 +315,26 @@ class AbonneControllerSuggestionAchatAddFormMultipleBibsAndKohaRestfulTest exten public function formShouldContainsBranchNameIstres() { $this->assertXPath('//form//input[@name="BranchName"][@value="Istres"]'); } + + + /** @test */ + public function formShouldContainsSelectForDocType() { + $this->assertXPathContentContains('//form//select[@name="DocType"]//option[@value="3"]', + 'Disques'); + } + + + /** @test */ + public function docTypeForDiscsShouldBeAtFirstPlace() { + $this->assertXPathContentContains('//form//select[@name="DocType"]//option[1]', 'Disques'); + } + + + /** @test */ + public function defaultDocTypeShouldBeBook() { + $this->assertXPathContentContains('//form//select[@name="DocType"]//option[@value="1"][@selected]', + 'Livres'); + } } @@ -335,9 +355,10 @@ class AbonneControllerSuggestionAchatAddFormMultipleBibsAndKohaRestfulPostTest e ['Title' => 'Harry Potter', 'Author' => 'J.K.Rowling', 'Isbn' => '2-07-0541 27_4', - 'PatronReason' => 'Je veux le lire', + 'Note' => 'Je veux le lire', 'PublicationYear' => '2014', 'BranchCode' => 'IST', + 'DocType' => '1', 'submit' => 'Envoyer']); } @@ -352,10 +373,10 @@ class AbonneControllerSuggestionAchatAddFormMultipleBibsAndKohaRestfulPostTest e public function dataShouldBeJsonEncoded() { $datas = json_decode($this->mock_web_client->getAttributesForLastCallOn('postData')[1]['data'], true); - $this->assertEquals(['title' => 'Harry Potter', + $this->assertEquals(['title' => 'Harry Potter [Livres]', 'author' => 'J.K.Rowling', 'isbn' => '2-07-0541 27_4', - 'patronreason' => 'Je veux le lire', + 'note' => 'Je veux le lire', 'publicationyear' => '2014', 'suggestedby' => 'azerty', 'branchcode' => 'IST'], @@ -374,7 +395,7 @@ class AbonneControllerSuggestionAchatAddFormMultipleBibsAndKohaRestfulPostWrongD ['Title' => '', 'Author' => '', 'Isbn' => '', - 'PatronReason' => '', + 'Note' => '', 'PublicationYear' => 'toto', 'submit' => 'Envoyer']); } @@ -864,7 +885,7 @@ class AbonneControllerSuggestionAchatWithOneRestfulSuggestionTest "firstnamemanagedby" : "", "rejectedby" : null, "quantity" : "0", - "note" : "D.L.", + "note" : "Je veux le lire", "patronreason" : "Je veux le lire", "categorydescriptionsuggestedby" : "", "volumedesc" : null, @@ -919,7 +940,7 @@ class AbonneControllerSuggestionAchatWithOneRestfulSuggestionTest /** @test */ - public function patronReasonShouldBePresent() { + public function noteShouldBePresent() { $this->assertXPathContentContains('//td', 'Je veux le lire'); } diff --git a/tests/application/modules/opac/controllers/BibControllerTest.php b/tests/application/modules/opac/controllers/BibControllerTest.php index 29468ce1b1cca3dae6b0b0ab542b078c22786f1c..cbc776635e989e728a02086b4d1c3737b325a792 100644 --- a/tests/application/modules/opac/controllers/BibControllerTest.php +++ b/tests/application/modules/opac/controllers/BibControllerTest.php @@ -1721,6 +1721,12 @@ class BibControllerSelectionOrderDisplayAndFiltersTest extends BibControllerWidg public function withPositionRightListFilterClassShouldContainsRight() { $this->assertXPath('//ul[contains(@class, "filters")][contains(@class, "list")][contains(@class, "right")]'); } + + + /** @test */ + public function customfieldServiceShouldContainsValueRestaurationAddToDefault() { + $this->assertXPath('//li//input[@type="checkbox"][@value="Restauration"][@checked]'); + } } @@ -1906,6 +1912,145 @@ class BibControllerMapActionWithLocationTest extends BibControllerWithThreeBibTe +class BibControllerDefaultFiltersTest extends BibControllerWidgetPageTestCase { + protected $_bib_wrapper; + + public function setUp() { + parent::setUp(); + $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1/opening/opened/default_filters/1', true); + } + + + /** @test */ + public function openingOpenedShouldBeSaved() { + $this->assertEquals(['opened'], Class_Profil::getCurrentProfil() + ->getBoitesDivision(2)[1]['preferences']['default_filters']['opening']); + } + + + /** @test */ + public function linkToSaveDefaultFilterShouldContainsOpening() { + $this->assertXPath('//a[contains(@href, "/bib/widget-page/id_module/1/id_division/2/page/1/opening/opened/default_filters/1")][@class="default_filters"]'); + } +} + + +class BibControllerAddDefaultCustomFieldsFiltersTest extends BibControllerWidgetPageTestCase { + protected $_bib_wrapper; + + public function setUp() { + parent::setUp(); + $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1/custom_field_7/Restauration/default_filters/1', true); + } + + + /** @test */ + public function restaurationShouldBeSaved() { + $this->assertEquals(['Restauration'], Class_Profil::getCurrentProfil() + ->getBoitesDivision(2)[1]['preferences']['default_filters']['7']); + } +} + + + +class BibControllerWithDefaultFiltersTest extends BibControllerWidgetPageTestCase { + protected $_bib_wrapper; + + public function setUp() { + parent::setUp(); + + Class_Profil::getCurrentProfil() + ->updateModuleConfigAccueil(1, [ + 'division' => '2', + 'type_module' => 'LIBRARY', + 'preferences' => array_merge($this->_preferences, + ['default_filters' => ['opening' => ['opened']]]) + ]); + + $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1', true); + } + + + /** @test */ + public function openedShouldNotBeSelected() { + $this->assertXPathContentContains('//ul/li[not(@class="selected")]/a', 'Ouvert aujourd\'hui'); + } +} + + + +class BibControllerDeleteDefaultFiltersTest extends BibControllerWidgetPageTestCase { + protected $_bib_wrapper; + + public function setUp() { + parent::setUp(); + + Class_Profil::getCurrentProfil() + ->updateModuleConfigAccueil(1, [ + 'division' => '2', + 'type_module' => 'LIBRARY', + 'preferences' => array_merge($this->_preferences, + ['default_filters' => ['opening' => ['opened']]]) + ]) + ->save(); + + $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1/default_filters/1', true); + } + + + /** @test */ + public function openedShouldBeSelected() { + $this->assertXPath('//ul/li[not(@class="selected")]/a[text()="Ouvert aujourd\'hui"]'); + } + + + /** @test */ + public function openedShouldHaveBeenRemovedFromSettings() { + $this->assertEmpty(Class_Profil::getCurrentProfil()->getBoitesDivision(2)[1]['preferences']['default_filters']); + } + + + /** @test */ + public function linkToSaveDefaultFilterShouldNotContainsOpening() { + $this->assertXPath('//a[contains(@href, "/bib/widget-page/id_module/1/id_division/2/page/1/default_filters/1")][@class="default_filters"]'); + } +} + + + + +class BibControllerWithDefaultFiltersAllFacetsSelectedTest extends BibControllerWidgetPageTestCase { + protected $_bib_wrapper; + + public function setUp() { + parent::setUp(); + + Class_Profil::getCurrentProfil() + ->updateModuleConfigAccueil(1, [ + 'division' => '2', + 'type_module' => 'LIBRARY', + 'preferences' => array_merge($this->_preferences, + ['default_filters' => ['opening' => ['opened']]]) + ]); + + $this->dispatch('/bib/widget-page/id_module/1/id_division/2/page/1/opening/all', true); + } + + + /** @test */ + public function openedShouldNotBeSelected() { + $this->assertXPathContentContains('//ul/li[not(@class="selected")]/a', 'Ouvert aujourd\'hui'); + } + + + /** @test */ + public function openedAllShouldBeSelected() { + $this->assertXPathContentContains('//ul/li[@class="selected"]/a[contains(@href, "/opening/all")]', 'Tous'); + } +} + + + class BibControllerWidgetPageAsAdminTest extends BibControllerWithThreeBibTestCase { protected $_storm_default_to_volatile = true; diff --git a/tests/library/Class/Cosmogramme/Integration/PhasePrepareIntegrationsTest.php b/tests/library/Class/Cosmogramme/Integration/PhasePrepareIntegrationsTest.php index ac7d1a7065320860eb08d8c0de50e2363cc3e5bf..79c815e03f47ae55a599dc3c83ef79d9ce91cb27 100644 --- a/tests/library/Class/Cosmogramme/Integration/PhasePrepareIntegrationsTest.php +++ b/tests/library/Class/Cosmogramme/Integration/PhasePrepareIntegrationsTest.php @@ -53,9 +53,7 @@ abstract class PhasePrepareIntegrationsWithOAITestCase extends Class_Cosmogramme ->beStrict(); Class_Cosmogramme_Integration_PhasePrepareIntegrations::setFileSystem($file_system); - - $time_source = $this->mock()->whenCalled('time')->answers(strtotime('2015-03-26')); - Class_Cosmogramme_Integration_PhasePrepareIntegrations::setTimeSource($time_source); + Class_Cosmogramme_Integration_PhasePrepareIntegrations::setTimeSource(new TimeSourceForTest('2015-03-26 14:00:00')); $this->_phase = $this->_buildPhase('PrepareIntegrations')->run(); } @@ -71,6 +69,9 @@ abstract class PhasePrepareIntegrationsWithOAITestCase extends Class_Cosmogramme $this->fixture('Class_CosmoVar', ['id' => 'ftp_path', 'valeur' => 'ftp/my-library.net/transferts/']); + $this->fixture('Class_CosmoVar', + ['id' => 'integration_date', 'valeur' => '2015-03-23 12:00:00']); + $this->fixture('Class_IntProfilDonnees', ['id' => 102, 'libelle' => 'Unimarc Pergame', @@ -155,6 +156,13 @@ abstract class PhasePrepareIntegrationsWithOAITestCase extends Class_Cosmogramme class PhasePrepareIntegrationsWithOAITest extends PhasePrepareIntegrationsWithOAITestCase { + /** @test */ + public function integrationDateShouldBe2016_11_09_14h() { + $this->assertEquals('2015-03-26 14:00:00', + Class_CosmoVar::getValueOf('integration_date')); + } + + /** @test */ public function twoIntegrationsShouldHaveBeenCreated() { $this->assertEquals(3, count(Class_Cosmogramme_Integration::findAll())); diff --git a/tests/library/Class/WebService/SIGB/KohaRestfulTest.php b/tests/library/Class/WebService/SIGB/KohaRestfulTest.php index 163fa0c12eb76b40acd7eaafaad1b054cf3fb5d8..2f21a8fb16e89729c8f914d74adf0d87f4428a91 100644 --- a/tests/library/Class/WebService/SIGB/KohaRestfulTest.php +++ b/tests/library/Class/WebService/SIGB/KohaRestfulTest.php @@ -243,7 +243,7 @@ abstract class KohaRestfulSuggestTestCase extends KohaRestfulTestCase { $this->mock_web_client ->whenCalled('postData') ->with('http://cat-aficg55.biblibre.com/cgi-bin/koha/rest.pl/suggestions', - ['data' => '{"suggestedby":"32007","title":"CommitStrip - Le Livre","author":"CommitStrip","isbn":"","patronreason":null,"publicationyear":"","branchcode":"IST"}']) + ['data' => '{"suggestedby":"32007","title":"CommitStrip - Le Livre","author":"CommitStrip","isbn":"","note":"","publicationyear":"","branchcode":"IST"}']) ->answers($this->_postAnswer()) ->beStrict(); diff --git a/tests/library/ZendAfi/Controller/Action/Helper/ArticleListViewModeTest.php b/tests/library/ZendAfi/Controller/Action/Helper/ArticleListViewModeTest.php new file mode 100644 index 0000000000000000000000000000000000000000..a73bf84280b1e83090a3d2d90f964ca67889345c --- /dev/null +++ b/tests/library/ZendAfi/Controller/Action/Helper/ArticleListViewModeTest.php @@ -0,0 +1,101 @@ +<?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 ArticleListViewModeTest extends ModelTestCase { + + protected $_storm_default_to_volatile = true, + $_list, + $_bib; + + + public function setUp() { + parent::setUp(); + $this->_bib = $this->fixture('Class_Bib', + ['id' => 1, + 'libelle' => 'Library' + ]); + + $user = $this->fixture('Class_Users', + ['id' => 1, + 'login' => 'redac', + 'password' => 'redac', + 'role_level' => ZendAfi_Acl_AdminControllerRoles::MODO_BIB, + 'id_site' => 1]); + + ZendAfi_Auth::getInstance()->logUser($user); + + Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Users') + ->whenCalled('getIdentity') + ->answers($user) + + ->whenCalled('findAllBy') + ->with(['role_level' => [3,5,6,4,7], + 'where' => '(login LIKE "%news%" OR nom LIKE "%news%" OR prenom LIKE "%news%" OR pseudo LIKE "%news%" OR mail LIKE "%news%" OR idabon LIKE "%news%")', + 'limitPage' => [1, 20]]) + ->answers([]) + + ->whenCalled('findAllBy') + ->with(['role_level' => [3,5,6,4,7], + 'where' => '(login LIKE "%top%" OR nom LIKE "%top%" OR prenom LIKE "%top%" OR pseudo LIKE "%top%" OR mail LIKE "%top%" OR idabon LIKE "%top%")', + 'limitPage' => [1, 20]]) + ->answers([]) + + ->whenCalled('findAllBy') + ->with(['role_level' => [3,5,6,4,7], + 'where' => '(login LIKE "%redac%" OR nom LIKE "%redac%" OR prenom LIKE "%redac%" OR pseudo LIKE "%redac%" OR mail LIKE "%redac%" OR idabon LIKE "%redac%")', + 'limitPage' => [1, 20]]) + ->answers([$user]) + + ->beStrict(); + } + + + public function search() { + return [ + ['news', "(titre like '%news%')"], + ['news 2016', "(titre like '%news%') and ((date_maj like '%2016%') or (titre like '%2016%'))"], + ['news redac', "(titre like '%news%') and ((titre like '%redac%') or (id_user in (1)))"], + ['news 2016 redac', "(titre like '%news%') and ((date_maj like '%2016%') or (titre like '%2016%')) and ((titre like '%redac%') or (id_user in (1)))"], + ['news top 5', "(titre like '%news%') and (titre like '%top%') and (titre like '%5%')"], + ['top 5', "(titre like '%top%') and (titre like '%5%')"], + ['top 5 2016', "(titre like '%top%') and (titre like '%5%') and ((date_maj like '%2016%') or (titre like '%2016%'))"], + ['top 5 2016 redac', "(titre like '%top%') and (titre like '%5%') and ((date_maj like '%2016%') or (titre like '%2016%')) and ((titre like '%redac%') or (id_user in (1)))"], + ['top 5 2016 2015-10 redac', "(titre like '%top%') and (titre like '%5%') and ((date_maj like '%2016%') or (titre like '%2016%')) and ((date_maj like '%2015-10%') or (titre like '%2015-10%')) and ((titre like '%redac%') or (id_user in (1)))"], + ]; + } + + + /** + * @test + * @dataProvider search + */ + public function searchRequestShouldBeAsExpected($search, $where) { + $this->_list = (new ZendAfi_Controller_Action_Helper_ArticleListViewMode()) + ->articleListViewMode(['page' => 0, + 'search_value' => $search, + 'bib' => $this->_bib, + 'id_bib' => null, + 'id_cat' => 0]); + + $this->assertEquals($where, $this->_list->buildWhereParams()); + } +} diff --git a/tests/library/ZendAfi/View/Helper/TagRechercheSimpleTest.php b/tests/library/ZendAfi/View/Helper/TagRechercheSimpleTest.php index 47210c9b6d33da0e7cf53b4f36801479598ef26a..fdd6a40b1a17286a69f41d12486057de60a71614 100644 --- a/tests/library/ZendAfi/View/Helper/TagRechercheSimpleTest.php +++ b/tests/library/ZendAfi/View/Helper/TagRechercheSimpleTest.php @@ -72,10 +72,83 @@ class ZendAfi_View_Helper_TagRechercheSimpleDefaultTest extends ViewHelperTestCa $html = $this->_helper->tagRechercheSimple($this->_preferences, 1); $this->assertXPath($html, '//form//input[@name="expressionRecherche"][@placeholder="ex: Nineteen Eighty Four"]'); } + + + /** @test */ + public function withoutDomainPreferencesMultifacetCheckboxShouldNotBeIncluded() { + $html = $this->_helper->tagRechercheSimple($this->_preferences, 1); + $this->assertNotXPath($html, '//input[contains(@name, "multifacet")]'); + } + + + /** @test */ + public function withDomainSelectInputShouldBePresent() { + $this->fixture('Class_Catalogue', + ['id' => 4, + 'libelle' => 'Youths']); + + $this->fixture('Class_Catalogue', + ['id' => 5, + 'libelle' => 'Adults']); + + $this->fixture('Class_CodifThesaurus', + ['id' => 4, + 'id_thesaurus' => 'CCCC0004', + 'id_origine' => 4, + 'code' => 'Catalogue', + 'libelle' => 'Youths']); + + $this->fixture('Class_CodifThesaurus', + ['id' => 5, + 'id_thesaurus' => 'CCCC0005', + 'id_origine' => 5, + 'code' => 'Catalogue', + 'libelle' => 'Adults']); + + $this->_preferences['domain_ids'] = 'a-4-5-b 1-'; + $html = $this->_helper->tagRechercheSimple($this->_preferences, 1); + $this->assertXPathCount($html, '//select[@name="facettes"]//option', + 3); + return $html; + } + + + /** + * @depends withDomainSelectInputShouldBePresent + * @test + */ + public function domainSelectFirstOptionShouldBeAll($html) { + $this->assertXPathContentContains($html, + '//select[@name="facettes"]/option[1][@value="0"][@selected="selected"]', + 'Partout'); + } + + + /** + * @depends withDomainSelectInputShouldBePresent + * @test + */ + public function domainSelectSecondOptionShouldBeAdults($html) { + $this->assertXPathContentContains($html, + '//select[@name="facettes"]/option[2][@value="HCCCC0005"]', + 'Adults'); + } + + + /** + * @depends withDomainSelectInputShouldBePresent + * @test + */ + public function domainSelectThirdOptionShouldBeYouths($html) { + $this->assertXPathContentContains($html, + '//select[@name="facettes"]/option[3][@value="HCCCC0004"]', + 'Youths'); + } } + class ZendAfi_View_Helper_TagRechercheSimpleWithSessionParamsTest extends ViewHelperTestCase { protected $_session; @@ -211,5 +284,64 @@ class ZendAfi_View_Helper_TagRechercheSimpleWithSessionParamsTest extends ViewHe $html = $this->_helper->tagRechercheSimple($this->_preferences, 1); $this->assertXPathContentContains($html, '//div//p/span/b', 'Africa, Europe'); } + + + /** @test */ + public function withDomainPreferencesMultifacetCheckboxShouldBePresent() { + Storm_Test_ObjectWrapper::onLoaderOfModel('Class_Catalogue') + ->whenCalled('saveThesaurus') + ->answers(null); + $this->fixture('Class_Catalogue', + ['id' => 4, + 'libelle' => 'Adults']); + + $this->fixture('Class_Catalogue', + ['id' => 5, + 'libelle' => 'Youths']); + + $this->fixture('Class_CodifThesaurus', + ['id' => 4, + 'id_thesaurus' => 'CCCC0004', + 'id_origine' => 4, + 'code' => 'Catalogue', + 'libelle' => 'Adults']); + + $this->fixture('Class_CodifThesaurus', + ['id' => 5, + 'id_thesaurus' => 'CCCC0005', + 'id_origine' => 5, + 'code' => 'Catalogue', + 'libelle' => 'Youth']); + + $this->_preferences['domain_ids'] = 'a-4-5-b 1-'; + $this->_preferences['domain_select_style'] = Class_Systeme_ModulesAccueil_RechercheSimple::DOMAIN_SELECT_CHECKBOX; + $html = $this->_helper->tagRechercheSimple($this->_preferences, 1); + $this->assertXPathCount($html, '//input[@type="checkbox"][contains(@name, "multifacet")]', + 2); + return $html; + } + + + /** + * @depends withDomainPreferencesMultifacetCheckboxShouldBePresent + * @test + */ + public function multifaceHCCCC0004ShouldBePresent($html) { + $this->assertXPathContentContains($html, + '//label[preceding-sibling::input[@name="multifacet_HCCCC0004"]]', + 'Adult'); + } + + + /** + * @depends withDomainPreferencesMultifacetCheckboxShouldBePresent + * @test + */ + public function multifaceHCCCC0005ShouldBePresent($html) { + $this->assertXPathContentContains($html, + '//label[preceding-sibling::input[@name="multifacet_HCCCC0005"]]', + 'Youth', + $html); + } } ?> \ No newline at end of file