diff --git a/.htaccess b/.htaccess index b65db787f199ab0a6c6c9bd9f05e33d77b658ab4..15bf2d73b0573d7055ade02ed62dde561d6255f0 100644 --- a/.htaccess +++ b/.htaccess @@ -1,6 +1,6 @@ RewriteEngine on -RewriteCond %{REQUEST_URI} !/(xhprof_html|ckeditor|exploit|\.well-known) +RewriteCond %{REQUEST_URI} !^/(xhprof_html|ckeditor|exploit|\.well-known) RewriteCond %{REQUEST_FILENAME} !^.*/robots\.txt$ [NC] RewriteRule !(userfiles|public|tmp|temp|skins)/.*\.(js|ico|txt|gif|jpg|jpeg|png|css|xml|swf|mov|pdf|doc|docx|woff|woff2|eot|svg|ttf|xls|wsdl|mp3|m4v|ogg|ogv|epub|html|xhtml|asmx|zip|sql|bro|flv|mp4|webm|tgz|json|geojson)$ index.php [NC,NE] diff --git a/VERSIONS b/VERSIONS index f3977fe0068cf51092600a917d3da9b8505cfb2d..94a8aa1a74478ca069e19bada76935a66613a4a6 100644 --- a/VERSIONS +++ b/VERSIONS @@ -1,3 +1,33 @@ +15/03/2018 - v7.12.5 v7.12.6 + + - ticket #72835 : Explorateur de fichier : correction de la sélection d'une image lorsqu'on vient de la téléverser. + + - ticket #72723 : Indexation : Correction de l'indexation d'articles liés à des domaines ayant été supprimés + + + +12/03/2018 - v7.12.4 + + - ticket #72610 : OAuth : ajout d'une variable permettant l'utilisation du protocole OAuth en HTTP (OAUTH_ACCEPT_HTTP) + + - ticket #72468 : Explorateur de fichiers : correction des boutons de redimensionnement lors de l'import. + + - ticket #72468 : Explorateur de fichiers : amélioration du système de redirection après import ou supression de document. + + - ticket #72437 : Charte graphique : suppression de règles css inutiles dans la charte "modèle" + + - ticket #72297 : Cosmogramme : correction du système de dédoublonnage + + +08/03/2018 - v7.12.2 v7.12.3 + + - ticket #72242 : Article: insertion d'un kiosque de notices rendu possible à partir du role Rédacteur bibliothèque. + + - ticket #71669 : Administration : ajout d'un tableau de bord pour les ressources numériques. + + - ticket #72344 : Explorateur de fichier : Ajout de la vérification du format du nom de fichier téléversé + + 06/03/2018 - v7.12.1 - ticket #72329 : Menu vertical : correction de la compatibilité du menu à bascule avec le responsive. diff --git a/VERSIONS_WIP/62394 b/VERSIONS_WIP/62394 new file mode 100644 index 0000000000000000000000000000000000000000..041f99c29d5f521f0fa3de500db87dfc91f1b5eb --- /dev/null +++ b/VERSIONS_WIP/62394 @@ -0,0 +1 @@ + - ticket #62394 : Webservice Koha : affichage des raisons des actions non possibles de prolongation et de réservation. \ No newline at end of file diff --git a/application/modules/admin/controllers/BatchController.php b/application/modules/admin/controllers/BatchController.php index fc774d80779c828e4f82c96667e3fa075a578e3d..0e23b19b2dc95a2f94d89cefbf07aee1ebd02b1a 100644 --- a/application/modules/admin/controllers/BatchController.php +++ b/application/modules/admin/controllers/BatchController.php @@ -42,7 +42,7 @@ class Admin_BatchController extends ZendAfi_Controller_Action { ->save(); $this->_helper->notify('Tâche activée'); - $this->_redirectToIndex(); + $this->_redirectToReferer(); } @@ -55,7 +55,7 @@ class Admin_BatchController extends ZendAfi_Controller_Action { $batch->delete(); $this->_helper->notify('Tâche désactivée'); - $this->_redirectToIndex(); + $this->_redirectToReferer(); } diff --git a/application/modules/admin/controllers/CkeditorController.php b/application/modules/admin/controllers/CkeditorController.php new file mode 100644 index 0000000000000000000000000000000000000000..81594859f17f5e77176a47a985c207f7f072f420 --- /dev/null +++ b/application/modules/admin/controllers/CkeditorController.php @@ -0,0 +1,42 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class Admin_CkeditorController extends ZendAfi_Controller_Action { + + + public function indexAction() { + return $this->_forward('index', 'index'); + } + + + public function getFormAction() { + $module = Class_Systeme_ModulesAccueil::moduleByCode($this->_getParam('code')); + $form_class = $module->getForm(); + $this->view->form = (new $form_class())->populate(array_merge( + $module->getDefaultValues(), + $this->_request->getPost())); + } + + + +} +?> \ No newline at end of file diff --git a/application/modules/admin/controllers/FileManagerController.php b/application/modules/admin/controllers/FileManagerController.php index 974ad87972242737ef096b4177c58c00ace6e918..12b4fa881a0b39b076f87d1acf6dd00061b511fa 100644 --- a/application/modules/admin/controllers/FileManagerController.php +++ b/application/modules/admin/controllers/FileManagerController.php @@ -57,4 +57,330 @@ class Admin_FileManagerController extends ZendAfi_Controller_Action { $this->view->titre = $this->_('Explorateur de fichiers : "%s"', $settings->getFocusedPath()); } + + + public function dropAction() { + if(!$item = $this->_findItemFromParams()) + return ; + + if(!$into = $this->_findIntoFromParams($item)) + return; + + if($item->getPath() == $into->getPath()) + return $this->_nothingToDo($item, $into); + + $this->view->titre = $this->_('"%s" vers "%s"', $item->getPath(), $into->getPath()); + $this->view->disable_move = $item->getParentPath() == $into->getPath() || (!$item->isWritable()); + } + + + public function moveAction() { + if(!$item = $this->_findItemFromParams()) + return; + + if(!$into = $this->_findIntoFromParams($item)) + return; + + if($item->getParentPath() == $into->getPath()) + return $this->_nothingToDo($item, $into); + + if($item->getPath() == $into->getPath()) + return $this->_nothingToDo($item, $into); + + + $expected_destination = $into->getPath() . '/' . $item->getName(); + + $message = ($success = Class_FileManager::moveItemInto($item, $expected_destination)) + ? $this->_('Déplacement de "%s" dans "%s" effectué.', $item->getName(), $into->getPath()) + : $this->_('Impossible de déplacer "%s" dans "%s".', $item->getName(), $into->getPath()); + + if($success) + $item->renameModels($expected_destination); + + $this->_redirectWithMessage($message); + } + + + public function copyAction() { + if(Class_FileManager::isFull()) + return $this->_spaceFullError(); + + if(!$item = $this->_findItemFromParams()) + return; + + if(!$into = $this->_findIntoFromParams($item)) + return; + + $message = Class_FileManager::copyItemInto($item, $into) + ? $this->_('Copie de "%s" dans "%s" effectué.', $item->getName(), $into->getPath()) + : $this->_('Impossible de copier "%s" dans "%s".', $item->getName(), $into->getPath()); + + $this->_redirectWithMessage($message); + } + + + public function deleteAction() { + $this->view->item = $item = $this->_findItemFromParams(); + + if(!$item->isDeepWritable()) + return $this->_redirectWithMessage($this->_('Le dossier "%s" ne peut pas être supprimé car il contient des éléments protégés en écriture ou utilisés dans les articles, les domaines ou les profils.', $item->getPath())); + + $this->view->titre = $this->_('Supprimer "%s"', $item->getPath()); + $this->view->models = $item->getModels(); + } + + + public function forceDeleteAction() { + if(!$item = $this->_findItemFromParams()) + return; + + $success = Class_FileManager::delete($item); + $message = $success + ? $this->_('"%s" supprimé.', $item->getPath()) + : $this->_('Impossible de supprimer "%s".', $item->getPath()); + + $path = $success + ? $item->getParentPath() + : $item->getPath(); + + $this->_redirectToPathWithMessage($path, $message); + } + + + public function createAction() { + $into = $this->_findIntoFromParams(); + $this->view->titre = $this->_('Créer un nouveau dossier dans "%s"', $into->getPath()); + $this->view->form = $form = ZendAfi_Form_Admin_FileManager_Folder::newWith($this->_request->getParams()); + $form->setAction($this->view->url()); + + if (!$this->_request->isPost()) + return; + + if (!$form->isValid($this->_getPost())) + return; + + $post = $this->_getPost(); + + $folder = isset($post['folder']) + ? $post['folder'] + : $this->_getParam('folder'); + + $message = Class_FileManager::create($folder, $into) + ? $this->_('Dossier "%s" créé.', $folder) + : $this->_('Impossible de créer le dossier "%s".', $folder); + + $this->_redirectToPathWithMessage($into->getPath() . '/' . $folder, $message); + } + + + public function importAction() { + if(Class_FileManager::isFull()) + return $this->_spaceFullError(); + + $into = $this->_findIntoFromParams(); + $this->view->titre = $this->_('Téléverser un fichier dans "%s"', $into->getPath()); + $this->view->form = $form = ZendAfi_Form_Admin_FileManager_Import::newWith(['into' => $into->getRealpath()]); + $this->view->dimensions = array_filter(explode(';', Class_AdminVar::get('RESIZABLE_DIMENSIONS'))); + sort($this->view->dimensions, SORT_NUMERIC); + + $form->setAction($this->view->url()); + + if (!$this->_request->isPost()) + return; + + if($resized_file = $this->_getParam('ajax_resized_image')) + return $this->_ajaxUploadImage($resized_file, $into); + + if (!$form->isValid($this->_request->getPost())) + return; + + if(!$form->file->receive()) + return; + + $path = explode('/', $form->file->getFileName()); + $filename = array_pop($path); + + if(!$file = Class_FileManager::find($into->getId() . '/' . $filename)) + return $this->_redirectWithMessage($this->_('Impossible de téléverser le fichier "%s".', $filename)); + + $message = $this->_('Fichier "%s" téléversé.', $file->getPath()); + $this->_redirectToPathWithMessage($file->getPath(), $message); + } + + + protected function _ajaxUploadImage($resized_file, $into) { + $resized_file = str_replace('data:image/png;base64,', '', $resized_file); + $resized_file = str_replace(' ', '+', $resized_file); + $path = $into->getPath() . '/' . $this->_getParam('filename'); + + $message = Class_FileManager::createImage($path, base64_decode($resized_file)) + ? $this->_('Fichier "%s" téléversé.', $path) + : $this->_('Une erreur c\' produite. Le téléversage a échoué.'); + + $this->_helper->notify($message); + $this->_helper->json(['redirect' => $this->_getUrlWithNewPath($path)]); + } + + + public function resizeAction() { + $item = $this->_findItemFromParams(); + if(!$item->isResizable()) + return $this->_redirectWithMessage($this->_('"%s" n\'est pas redimensionnable.', $item->getName())); + + $this->view->titre = $this->_('Redimensionner l\'image "%s"', $item->getName()); + $this->view->item = $item; + $this->view->dimensions = array_filter(explode(';', Class_AdminVar::get('RESIZABLE_DIMENSIONS'))); + sort($this->view->dimensions, SORT_NUMERIC); + } + + + public function resizeImageAction() { + $item = $this->_findItemFromParams(); + + $dimensions = $this->_getParam('dimensions'); + $available_dimensions = Class_AdminVar::get('RESIZABLE_DIMENSIONS'); + + if(!in_array($dimensions, explode(';', $available_dimensions))) + return $this->_redirectWithMessage($this->_('Dimensions "%s" invalident. Les dimensions valident sont : %s .', $dimensions, $available_dimensions)); + + list($width, $height) = explode('x', $dimensions); + $message = (new Class_Notice_Thumbnail_ResizeImage)->resize($item->getRealpath(), $width, $height, null, true) + ? $this->_('L\'image "%s" a été redimensionnée.', $item->getId()) + : $this->_('Erreur. L\'image "%s" n\'a pas été redimensionnée.', $item->getId()); + + $this->_redirectWithMessage($message); + } + + + public function compressImageAction() { + $item = $this->_findItemFromParams(); + + list($width, $height) = explode('x', $item->getDimensions()); + $message = (new Class_Notice_Thumbnail_ResizeImage)->resize($item->getRealpath(), $width, $height, null, true) + ? $this->_('L\'image "%s" a été compressée.', $item->getId()) + : $this->_('Erreur. L\'image "%s" n\'a pas été compressée.', $item->getId()); + + $this->_redirectWithMessage($message); + } + + + public function renameAction() { + $item = $this->_findItemFromParams(); + $this->view->titre = $this->_('Renommer "%s"', $item->getBasename()); + $this->view->form = $form = ZendAfi_Form_Admin_FileManager_Rename::newWith(['into' => $item->getRealpath(), + 'name' => $item->getBasename()]); + + $form->setAction($this->view->url()); + + if (!$this->_request->isPost()) + return; + + if (!$form->isValid($post = $this->_getPost())) + return; + + $new_name= isset($post['name']) + ? $post['name'] + : $this->_getParam('name'); + + $new_name = $item->isFile() + ? $new_name . '.' . $item->getExtension() + : $new_name; + + $expected_destination = $item->getParentPath() . '/' . $new_name; + + $message = ($success = Class_FileManager::rename($item, $expected_destination)) + ? $this->_('"%s" renommé en "%s".', $item->getBasename(), $new_name) + : $this->_('Erreur. Impossible de renommer "%s".', $item->getPath()); + + if($success) + $item->renameModels($expected_destination); + + $this->_redirectWithMessage($message); + } + + + public function propertiesAction() { + $item = $this->view->item = $this->_findItemFromParams(); + $this->view->titre = $this->_('Propriétés de "%s"', $item->getName()); + } + + + protected function _findItemFromParams() { + $item_path = $this->_getParam('item'); + + if($item = Class_FileManager::find($item_path)) + return $item; + + return $this->_unknownPathError($item_path); + } + + + protected function _findIntoFromParams($item = null) { + $into_path = $this->_getParam('into'); + if(!$into = Class_FileManager::find($into_path)) + return $this->_unknownPathError($into_path); + + if(!$into->isDir()) + return $this->_forbiddenPathError($into_path); + + if($item && $item->contains($into)) + return $this->_forbiddenPathError($into_path); + + return $into; + } + + + protected function _unknownPathError($path) { + return $this->_redirectWithMessage($this->_('Erreur. Le chemin "%s" n\'existe pas.', $path)); + } + + + protected function _forbiddenPathError($path) { + return $this->_redirectWithMessage($this->_('Erreur. Impossible de faire cette opération vers "%s".', $path)); + } + + + protected function _nothingToDo($item, $into) { + return $this->_redirectWithMessage($this->_('Vous ne pouvez pas copier ou déplacer un élément avec lui-même : "%s" est identique à "%s" .', + $item->getPath(), + $into->getPath())); + } + + + protected function _spaceFullError() { + return $this->_redirectWithMessage($this->_('Erreur. Vous ne pouvez pas téléverser un nouveau fichier car vous avez utilisé les "%s méga-octets" disponibles.', Class_AdminVar::get('ALLOWED_DISK_SPACE'))); + } + + + protected function _redirectWithMessage($message) { + $this->_helper->notify($message); + return $this->_redirectClose($this->_getReferer()); + } + + + protected function _redirectToPathWithMessage($path, $message) { + $this->_helper->notify($message); + + $url = $this->_getUrlWithNewPath($path); + + if (!$this->isPopupRequest()) + return $this->_redirect($url); + + $this->_popupJavascriptRedirectTo($url); + } + + + protected function _getUrlWithNewPath($path) { + return $this->view->url(['module' => 'admin', + 'controller' => 'file-manager', + 'action' => 'index', + $this->_getParam('focused_browser', 'browser') => $path, + 'ajax_resized_image' => null, + 'render' => null, + 'into' => null, + 'file' => null, + 'item' => null, + 'filename' => null, + ]); + } } diff --git a/application/modules/admin/controllers/IndexController.php b/application/modules/admin/controllers/IndexController.php index 77b005a530b4752cf6465423c8316df77a4ee49e..19ea63e21fc1eae6a88d13885fe30d43535ec0af 100644 --- a/application/modules/admin/controllers/IndexController.php +++ b/application/modules/admin/controllers/IndexController.php @@ -24,7 +24,7 @@ class Admin_IndexController extends ZendAfi_Controller_Action { . $this->view->tag('span', $this->_(' version %s', $this->view->tag('a', BOKEH_RELEASE_NUMBER, - ['href' => BOKEH_REMOTE_FILES . 'blob/' . BOKEH_VERSION . '/VERSIONS'])), + ['href' => BOKEH_REMOTE_FILES . 'blob/master/VERSIONS'])), ['class' => 'version']); $this->view->user = Class_Users::getIdentity(); diff --git a/application/modules/admin/controllers/WidgetController.php b/application/modules/admin/controllers/WidgetController.php index 8c1451c71dd691407e257670469ac6f99191ebd0..fad8efbe9f5eba914563577868fa38c17b90fa19 100644 --- a/application/modules/admin/controllers/WidgetController.php +++ b/application/modules/admin/controllers/WidgetController.php @@ -202,16 +202,6 @@ class Admin_WidgetController extends ZendAfi_Controller_Action { } - - public function getFormAction() { - $module = Class_Systeme_ModulesAccueil::moduleByCode($this->_getParam('code')); - $form_class = $module->getForm(); - $this->view->form = (new $form_class())->populate(array_merge( - $module->getDefaultValues(), - $this->_request->getPost())); - } - - protected function _readTemplates() { $templates = file_get_contents(ROOT_PATH . 'public/opac/js/widget_templates/widget_templates.json'); return json_decode($templates, true); diff --git a/application/modules/admin/views/scripts/ajax_return.phtml b/application/modules/admin/views/scripts/ajax_return.phtml index 736c83af444e642f152fcf3de65fdf298107b6b5..42eee558c976823ad410d9b8398730c38a3559ff 100644 --- a/application/modules/admin/views/scripts/ajax_return.phtml +++ b/application/modules/admin/views/scripts/ajax_return.phtml @@ -1,3 +1,3 @@ <?php -echo $this->ajaxRedirect(); +echo $this->ajaxRedirect($this->url); ?> diff --git a/application/modules/admin/views/scripts/bibnum/index.phtml b/application/modules/admin/views/scripts/bibnum/index.phtml index f03933bd1723b72c870fa1464e99e411963f60d0..8a0e176813af210aea5a810ea393a2d7ad9c840f 100644 --- a/application/modules/admin/views/scripts/bibnum/index.phtml +++ b/application/modules/admin/views/scripts/bibnum/index.phtml @@ -1,9 +1,9 @@ <p><?php -echo $this->_("Bokeh s'interface avec un certain nombre de ressources numériques. Les ressources numérisées sont cataloguées dans le portail et indexées dans l’OPAC comme les notices du SIGB. Ce qui constitue la force et le caractère unique de Bokeh, est sa capacité à proposer une recherche fusionnée par un métamoteur qui interroge simultanément tous les fonds et tous les contenus."); -?></p> + echo $this->_("Bokeh s'interface avec un certain nombre de ressources numériques. Les ressources numérisées sont cataloguées dans le portail et indexées dans l’OPAC comme les notices du SIGB. Ce qui constitue la force et le caractère unique de Bokeh, est sa capacité à proposer une recherche fusionnée par un métamoteur qui interroge simultanément tous les fonds et tous les contenus."); + ?></p> <p><?php -echo $this->_("Si vous souhaitez ajouter une ressource à votre portail, il vous faut contractualiser avec le fournisseur de la ressource et demander un devis pour le connecteur à <a href='mailto:cial-bib@afi-sa.fr'>votre commercial</a>."); -?></p> + echo $this->_("Si vous souhaitez ajouter une ressource à votre portail, il vous faut contractualiser avec le fournisseur de la ressource et demander un devis pour le connecteur à <a href='mailto:cial-bib@afi-sa.fr'>votre commercial</a>."); + ?></p> <?php $datas = (new Class_WebService_BibNumerique_Connectors())->getDescription(); $datas = json_decode(json_encode($datas)); @@ -13,15 +13,15 @@ $datas = json_decode(json_encode($datas)); <?php foreach($datas as $code => $connector) { $thumb = $connector->image_url - ? $this->tag('img', null, ['src' => $connector->image_url, - 'alt' => $connector->label, - 'style' => 'width:200px;']) - : $connector->label; + ? $this->tag('img', null, ['src' => $connector->image_url, + 'alt' => $connector->label, + 'style' => 'width:200px;']) + : $connector->label; $thumb = $connector->url - ? $this->tag('a', $thumb, ['href' => $connector->url, - 'target' => '_blank']) - : $thumb; + ? $this->tag('a', $thumb, ['href' => $connector->url, + 'target' => '_blank']) + : $thumb; $key_exists = function($key) use ($connector) { return in_array($key, $connector->features); @@ -44,22 +44,37 @@ $datas = json_decode(json_encode($datas)); ['href' => $connector->sales_contact->url, 'target' => '_blank']); ?> - <tr data-code="<?php echo strtolower($connector->code) ?>" > - <td><?php echo $thumb; ?></td> - <td><?php echo $connector->desc; ?> - <?php if ($features) { ?> - <br/><br/> - <?php echo $this->tag('strong', $this->_('Fonctionnalités : ')) . implode(', ', $features);?> - <?php } ?> - <?php if ($contact) { ?> - <br/><br/> - <?php echo $this->tag('strong', $this->_('Contact : ')) . implode(', ', $contact);}?> - <br/><br/> - <?php if ($connector->enabled) { - echo $this->tag('div', $this->_('Activé'), ['class' => 'enabled']);?> - <?php } ?> - </td> - </tr> - <?php } ?> + <tr data-code="<?php echo strtolower($connector->code) ?>" > + <td><?php echo $thumb; ?></td> + <td><?php echo $connector->desc; ?> + <?php if ($features) { ?> + <br/><br/> + <?php echo $this->tag('strong', $this->_('Fonctionnalités : ')) . implode(', ', $features);?> + <?php } ?> + <?php if ($contact) { ?> + <br/><br/> + <?php echo $this->tag('strong', $this->_('Contact : ')) . implode(', ', $contact);}?> + <br/><br/> + <?php + $label = $this->_('Désactivé'); + $class = 'digital_connectors_status'; + if ($connector->enabled) { + $label = $this->_('Activé'); + $class .= ' enabled'; + } + echo $this->button((new Class_Entity) + ->setText($label) + ->setAttribs(['disabled' => 'disabled', + 'onclick' => 'return;', + 'class' => $class])); + + if(isset($connector->dashboard_url)) + echo $this->button((new Class_Entity) + ->setUrl($connector->dashboard_url) + ->setText($this->_('Tableau de bord'))); + ?> + </td> + </tr> + <?php } ?> </tbody> </table> diff --git a/application/modules/admin/views/scripts/widget/get-form.phtml b/application/modules/admin/views/scripts/ckeditor/get-form.phtml similarity index 100% rename from application/modules/admin/views/scripts/widget/get-form.phtml rename to application/modules/admin/views/scripts/ckeditor/get-form.phtml diff --git a/application/modules/admin/views/scripts/digital_resources/index.phtml b/application/modules/admin/views/scripts/digital_resources/index.phtml new file mode 100644 index 0000000000000000000000000000000000000000..dfead8124e7088a422ae130899d21d4aeef9d2bf --- /dev/null +++ b/application/modules/admin/views/scripts/digital_resources/index.phtml @@ -0,0 +1,2 @@ +<?php +echo $this->DigitalResource_Dashboard($this->config); diff --git a/application/modules/admin/views/scripts/file-manager/import.phtml b/application/modules/admin/views/scripts/file-manager/import.phtml index 65321fe9ccdb8c82bbe4605af5fc1ac97b6bf44e..43455bdade6829dc7065fa851d07b71ec3196d99 100644 --- a/application/modules/admin/views/scripts/file-manager/import.phtml +++ b/application/modules/admin/views/scripts/file-manager/import.phtml @@ -10,12 +10,12 @@ $buttons = [$this->Button_Submit((new Class_Entity) echo $this->renderForm($this->form, $buttons); foreach($this->dimensions as $dimension) - echo $this->Button_Submit((new Class_Entity) - ->setText($dimension) - ->setAttribs(['style' => 'display: none;', - 'class' => 'resize_image', - 'onclick' => sprintf("$(this).resizeAndUpload('%s');", $dimension), - 'title' => $this->_('Redimensionner en %s pixels puis téléverser', $dimension)])); + echo $this->button((new Class_Entity) + ->setText($dimension) + ->setAttribs(['style' => 'display: none;', + 'class' => 'resize_image', + 'onclick' => sprintf("$(this).resizeAndUpload('%s');", $dimension), + 'title' => $this->_('Redimensionner en %s pixels puis téléverser', $dimension)])); echo $this->tag('p', $this->_('Dimensions actuelles de l\'image en pixels: %s', $this->tag('span', null)), @@ -25,4 +25,4 @@ echo $this->tag('img', '', ['id' => 'image_preview']); echo $this->tag('i', $this->_('Une erreur c\'est produite. Le téléversement ne sera pas effectué.'), ['style' => 'display: none;', - 'id' => 'import_file_error']); \ No newline at end of file + 'id' => 'import_file_error']); diff --git a/application/modules/api/controllers/UserController.php b/application/modules/api/controllers/UserController.php index 3ad7af8a08da99d9412265e7e8a0841d81af1c08..68f8695d4cd58e0b0a31cc5db7df053fd8a1ac51 100644 --- a/application/modules/api/controllers/UserController.php +++ b/application/modules/api/controllers/UserController.php @@ -22,8 +22,8 @@ class Api_UserController extends ZendAfi_Controller_Action { public function loansAction() { - if (!$this->_request->isSecure()) - return $this->_error($this->_('Protocole HTTP obligatoire')); + if (Class_AdminVar_OAuthAcceptHTTP::shouldRejectRequest($this->_request)) + return $this->_error($this->_('Protocole HTTPS obligatoire')); if (!$authorization = $this->_request->getHeader('authorization')) return $this->_error($this->_('Autorisation non spécifiée')); diff --git a/application/modules/opac/controllers/AuthController.php b/application/modules/opac/controllers/AuthController.php index b242dbefd307a0dd6adf0932430a651f8993f959..41f94f13c9b18fdb57d3a3f0816cded2e612c623 100644 --- a/application/modules/opac/controllers/AuthController.php +++ b/application/modules/opac/controllers/AuthController.php @@ -798,10 +798,8 @@ class Auth_Strategy_Cas_Abstract extends Auth_Strategy_Abstract{ public function redirectMusicme() { - if (strpos($this->controller->getCasServerUrl(),'musicme') !== false) { - $module_menu = Class_DigitalResource::getInstance()->getModuleMenuFor('Musicme'); - return $module_menu->getDynamiqueUrl(); - } + if (strpos($this->controller->getCasServerUrl(),'musicme') !== false) + return Musicme_Config::getInstance()->getSsoUrl(Class_Users::getIdentity()); return false; } diff --git a/application/modules/opac/controllers/ModulesController.php b/application/modules/opac/controllers/ModulesController.php index 3dfa1208fc7bcab52357ff10ed11e2678d19300a..49672950649e593c62e8bab7cfe760be005adb3d 100644 --- a/application/modules/opac/controllers/ModulesController.php +++ b/application/modules/opac/controllers/ModulesController.php @@ -76,20 +76,21 @@ class ModulesController extends ZendAfi_Controller_Action { public function ssoAction() { if (!$record = Class_Notice::find($this->_getParam('id', 0))) { - $this->_helper->notify($this->_('Document non trouvé')); + $this->_helper->notify($this->_('L\'identifiant du document demandé n\'existe pas')); $this->_redirectToReferer(); return; } $sso_record = new Class_Notice_Sso($record); - if(!$module_menu = $sso_record->getModuleMenu()) { - $this->_helper->notify($this->_('Oups, l\'adresse de consultation de ce document est indeterminée')); - $this->_redirectToReferer(); - return; + if(!$digital_resource_config = $sso_record->getConfig()) { + $this->_helper->notify($this->_('Ce document ne possède pas de configuration permettant d\'utiliser cette URL.')); + return $this->_redirectToReferer(); } - $module_menu->setRecord($sso_record); - $this->simple($module_menu); + $this->_forward('sso', + 'index', + $digital_resource_config->getModuleName(), + $this->_request->getParams()); } diff --git a/application/modules/opac/views/scripts/iframe.phtml b/application/modules/opac/views/scripts/iframe.phtml index 89f709d7c48793f59ed2dafeb48ec6167b1fdca4..19354104c508f165698ed51e18b1f2b01d093c93 100644 --- a/application/modules/opac/views/scripts/iframe.phtml +++ b/application/modules/opac/views/scripts/iframe.phtml @@ -1,4 +1,6 @@ <?php +Class_ScriptLoader::getInstance()->addSkinStyleSheet('iframe'); + ob_start(); echo $this->render($this->actionScript); $html_contents = ob_get_contents(); diff --git a/cosmogramme/VERSIONS_HOTLINE/72470 b/cosmogramme/VERSIONS_HOTLINE/72470 new file mode 100644 index 0000000000000000000000000000000000000000..2bb1e613b46444166d3a25463e70ba2304e67839 --- /dev/null +++ b/cosmogramme/VERSIONS_HOTLINE/72470 @@ -0,0 +1 @@ + - ticket #72470 : Boîtes kiosque : Réactivation du chargement des personnalisations css des iframes \ No newline at end of file diff --git a/library/Class/AdminVar.php b/library/Class/AdminVar.php index 6a88a4ff82321692032dc79dfa1e081b576d2464..60796c91e62b51a482601ffdf202dbac7190c0e7 100644 --- a/library/Class/AdminVar.php +++ b/library/Class/AdminVar.php @@ -289,6 +289,7 @@ class Class_AdminVarLoader extends Storm_Model_Loader { 'LOGIN_THROUGH_SIGB_ONLY' => Class_AdminVar_Meta::newOnOff($this->_('Les abonnées peuvent se connecter uniquement via le webservice du SIGB.') . '<br/>' . $this->_('De plus, à la connexion, l\'enregistrement des mots de passes des abonnés est désactivé.'))->bePrivate(), + 'OAUTH_ACCEPT_HTTP' => Class_AdminVar_Meta::newOnOff($this->_('Autoriser l\'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)'), ['value' => 0]), 'NB_AFFICH_AVIS_PAR_AUTEUR' => Class_AdminVar_Meta::newDefault($this->_('Nombre d\'avis maximum à afficher par utilisateur.')), 'CLEF_GOOGLE_MAP' => Class_AdminVar_Meta::newDefault($this->_('Clef d\'activation pour le plan d\'accès google map. <a target="_blank" href="http://code.google.com/apis/maps/signup.html">Obtenir la clé google map</a>')), 'REGISTER_OK' => Class_AdminVar_Meta::newEncodedData($this->_('Texte visible par l\'internaute après son inscription.')), @@ -330,7 +331,7 @@ class Class_AdminVarLoader extends Storm_Model_Loader { 'FACETTE_INTERET_LIBELLE' => Class_AdminVar_Meta::newDefault('Libellé de la facette centres d\'intérêt'), 'FACETTE_MATIERE_LIBELLE' => Class_AdminVar_Meta::newDefault('Libellé de la facette matière'), 'FACETTE_TAG_LIBELLE' => Class_AdminVar_Meta::newDefault('Libellé de la facette tag'), - 'UNLEASHED_FACETS' => Class_AdminVar_Meta::newMultiInput($this->_('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 => Bibliothèque, ... (Voir <a href="' . BOKEH_REMOTE_FILES . 'blob/' . BOKEH_VERSION . '/library/Class/Codification.php#L24">la liste complète</a>)')), + 'UNLEASHED_FACETS' => Class_AdminVar_Meta::newMultiInput($this->_('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 => Bibliothèque, ... (Voir <a href="' . BOKEH_REMOTE_FILES . 'blob/master/library/Class/Codification.php#L24">la liste complète</a>)')), 'BOITE_PANIER_AUTO' => Class_AdminVar_Meta::newOnOff($this->_('Ajouter automatiquement une boîte panier dans la division flottante')), 'EXTRA_SKIN_PATH' => Class_AdminVar_Meta::newDefault($this->_('Chemin vers les skins personnalisées, relatif à %s', Class_Profil_Skin::EXTRA_PATH)), 'ENABLE_COLLABORATIVE_BROWSING' => Class_AdminVar_Meta::newOnOff($this->_('Activation de la navigation collaborative')), diff --git a/library/Class/AdminVar/OAuthAcceptHTTP.php b/library/Class/AdminVar/OAuthAcceptHTTP.php new file mode 100644 index 0000000000000000000000000000000000000000..ae97b4afa3e9f2cbcb865657ee08b077527f0a9b --- /dev/null +++ b/library/Class/AdminVar/OAuthAcceptHTTP.php @@ -0,0 +1,33 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class Class_AdminVar_OAuthAcceptHTTP { + public static function isEnabled( ) { + return '1' == Class_AdminVar::getValueOrDefault('OAUTH_ACCEPT_HTTP'); + } + + + public static function shouldRejectRequest($request) { + return !($request->isSecure() || static::isEnabled()); + } +} +?> \ No newline at end of file diff --git a/library/Class/DigitalResource.php b/library/Class/DigitalResource.php index 9c28f2f703ead284992066c2b07b1b36c9458c49..6641cc19f68a8282d4de16e2b5e96f4bb91b7f68 100644 --- a/library/Class/DigitalResource.php +++ b/library/Class/DigitalResource.php @@ -303,6 +303,11 @@ class Class_DigitalResource extends Class_Entity { } + public function getAdminVarInstance($plugin, $name) { + return Class_AdminVar::find($this->withNamespace($plugin, $name)); + } + + public function getDocType($plugin) { return $plugin; } diff --git a/library/Class/DigitalResource/Batch.php b/library/Class/DigitalResource/Batch.php index 341777fb34e20789a335a3cddd2089cd3ca41a3b..0293ea57131135fffc4e45f4f81ac86b01500c00 100644 --- a/library/Class/DigitalResource/Batch.php +++ b/library/Class/DigitalResource/Batch.php @@ -20,7 +20,7 @@ */ -class Class_DigitalResource_Batch extends Class_Batch_RessourceNumerique{ +class Class_DigitalResource_Batch extends Class_Batch_RessourceNumerique { protected $_config; public function __construct($config) { diff --git a/library/Class/DigitalResource/Config.php b/library/Class/DigitalResource/Config.php index 992baea113a39341960f0792dcf9fc5c6d060d39..085771f4cf6c99d79c15bcac1d4e51ed9402f8b1 100644 --- a/library/Class/DigitalResource/Config.php +++ b/library/Class/DigitalResource/Config.php @@ -53,21 +53,47 @@ class Class_DigitalResource_Config extends Class_Entity { public function registerFrontController($front_controller) { $front_controller->addControllerDirectory((new Class_DigitalResource_Name())->getPath($this) . '/controllers', - $this->getDigitalResource()->getModuleNameFor(static::getName())); + $this->getModuleName()); return $this; } + public function getModuleName() { + return $this->getDigitalResource()->getModuleNameFor(static::getName()); + } + + public function isEnabled() { return $this->getDigitalResource()->isAdminVarOn(static::getName()); } + public function getDashboardUrl() { + return Class_Url::absolute(['module' => $this->getModuleName()], + null, + true); + } + + + public function getBatchInstance() { + return $this->getDigitalResource()->getBatches()[$this->getBatch()]; + } + + public function getAdminVar($id) { return $this->getDigitalResource()->getAdminVar($id); } + public function getAdminVarsInstances() { + $vars = []; + foreach($this->getAdminVars() as $key => $meta) + $vars [] = $this->getDigitalResource()->getAdminVarInstance($key); + + return $vars; + } + + public function hasRightAccess($user) { return $this->getDigitalResource()->hasRightAccessPlugin($user); } @@ -103,7 +129,8 @@ class Class_DigitalResource_Config extends Class_Entity { 'features' => $this->getFeatures(), 'sales_contact' => ['mail' => $this->getMail(), 'url' => $this->getMailUrl()], - 'enabled' => $this->isEnabled()]; + 'enabled' => $this->isEnabled(), + 'dashboard_url' => $this->getDashboardUrl()]; } @@ -162,4 +189,42 @@ class Class_DigitalResource_Config extends Class_Entity { public function withNameSpace($value) { return $this->getDigitalResource()->withNameSpace($value); } + + + public function urlFor($user, $album = null, $record = null) { + if(!$user) + return; + + if (!$this->hasRightAccess($user)) + return; + + if(!$this->isEnabled()) + return; + + if($record) + return $this->getRecordSsoUrl($user, $record); + + if($album) + return $this->getAlbumSsoUrl($user, $album); + + return $this->getSsoUrl($user); + } + + + public function getSsoUrl($user) { + return ''; + } + + + public function getAlbumSsoUrl($user, $album) { + if(!$album) + return ''; + + return $album->getExternalUri(); + } + + + public function getRecordSsoUrl($user, $record) { + return $this->getAlbumSsoUrl($suer, $record->getAlbum()); + } } \ No newline at end of file diff --git a/library/Class/DigitalResource/Controller.php b/library/Class/DigitalResource/Controller.php index a0697b436618045c33a032241765c8c086b4ce19..55fda6522f2edea03ad308231948f38af0bf0902 100644 --- a/library/Class/DigitalResource/Controller.php +++ b/library/Class/DigitalResource/Controller.php @@ -25,38 +25,61 @@ class Class_DigitalResource_Controller extends ZendAfi_Controller_Action { public function preDispatch() { parent::preDispatch(); $this->_config = Class_DigitalResource_Config::getInstanceFromController(get_called_class()); + if ($this->_config->getSsoAction() == $this->_request->getActionName()) - return $this->_forward('sso'); + return $this->_forward('sso', + 'index', + $this->_config->getModuleName()); } public function indexAction() { - if(!Class_Users::isCurrentUserCanAccesBackend()) { - return $this->_redirect($this->view->absoluteUrl(['module' => 'opac', - 'controller' => 'auth', - 'action' => 'ajax-login', - 'location' => $this->_request->getModuleName()])); - } + if(!$user = Class_Users::getIdentity()) + return $this->_afterLoginRedirectTo($this->view->absoluteUrl(), + $this->_('Vous devez vous connecter pour accéder à cette page')); + + if(!$user->isAdmin()) + $this->_redirectToIndex($this->_('Vous devez être connecté avec un compte adminitrateur pour accéder à cette page')); $this->view->titre = $this->_config->getName(); - $this->view->records_count = Class_Album::countBy(['type_doc_id' => $this->_config->getDocType()]); + $this->view->config = $this->_config; + $this->getHelper('ViewRenderer')->renderScript('digital_resources/index.phtml'); } - public function getExternalUri($album, $module_menu) { - return $album->getExternalUri(); + public function ssoAction() { + if(!$user = Class_Users::getIdentity()) + return $this->_afterLoginRedirectTo($this->view->absoluteUrl(), + $this->_('Vous devez vous connecter pour accéder à cette page')); + + $url = $this->_config->urlFor($user, + Class_Album::find($this->_getParam('album_id', 0)), + Class_Notice::find($this->_getParam('id', 0))); + + return $url + ? $this->_javascriptRedirectTo($url) + : $this->_redirectToIndex($this->_config->getNotAllowedMessage()); } - public function ssoAction() { - $module = $this->_config->getModuleMenu(); - $module = new $module($this->_config); + protected function _afterLoginRedirectTo($url, $message = null) { + if($message) + $this->_helper->notify($message); + + $login_url = Class_Url::absolute(['module' => 'opac', + 'controller' => 'auth', + 'action' => 'login'], + null, + true); + + $this->_redirect(sprintf('%s?redirect=%s', $login_url, rawurlencode($url))); + } - $this->willRedirectToMe($module); - if(!$album = Class_Album::find($this->_getParam('album_id', 0))) - return $this->checkNotifyMessage($module, $module->getDynamiqueUrl()); + protected function _redirectToIndex($message = null) { + if($message) + $this->_helper->notify($message); - return $this->checkNotifyMessage($module, $this->getExternalUri($album, $module)); + $this->_redirect($this->view->absoluteUrl([], null, true)); } } \ No newline at end of file diff --git a/library/Class/DigitalResource/ModuleMenu.php b/library/Class/DigitalResource/ModuleMenu.php index 0fbe9c988a5aa868423df78b3628ebc5228283e7..84df000ed3887483ff9b1b1937b2de68b68554a6 100644 --- a/library/Class/DigitalResource/ModuleMenu.php +++ b/library/Class/DigitalResource/ModuleMenu.php @@ -29,6 +29,7 @@ class Class_DigitalResource_ModuleMenu extends Class_Systeme_ModulesMenu_SSOAbst $this->_config = $config; $this->_type_module = $this->_config->getName(); $this->_libelle = $this->_config->getMenuLabel(); + $this->setMessage($this->_config->getNotAllowedMessage()); } @@ -42,20 +43,4 @@ class Class_DigitalResource_ModuleMenu extends Class_Systeme_ModulesMenu_SSOAbst 'controller' => 'modules', 'action' => $this->_config->getSsoAction()]); } - - - public function urlForUser($user) { - if ($user - && $this->_config->hasRightAccess($user) - && $this->_config->isEnabled()) - return $this->getSsoUrl($user); - - $this->setMessage($this->_config->getNotAllowedMessage()); - return ''; - } - - - protected function getSsoUrl($user) { - return $this->_config->getSsoUrl($user); - } } diff --git a/library/Class/Exemplaire.php b/library/Class/Exemplaire.php index 0d5825e80ede4fead89394ffd7a1761b65f0439c..db1c6ac582afb9d8eaed7a900aa2b4659a89a05a 100644 --- a/library/Class/Exemplaire.php +++ b/library/Class/Exemplaire.php @@ -182,7 +182,9 @@ class Class_Exemplaire extends Storm_Model_Abstract { public function getTomeAlpha() { - return $this->getNotice()->getTomeAlpha(); + return ($record = $this->getNotice()) + ? $record->getTomeAlpha() + : ''; } @@ -225,32 +227,44 @@ class Class_Exemplaire extends Storm_Model_Abstract { public function getTitrePrincipal() { - return $this->getNotice()->getTitrePrincipal(); + return ($record = $this->getNotice()) + ? $record->getTitrePrincipal() + : ''; } public function getTitreEtSousTitre() { - return $this->getNotice()->getTitreEtSousTitre(); + return ($record = $this->getNotice()) + ? $record->getTitreEtSousTitre() + : ''; } public function getAuteurPrincipal() { - return $this->getNotice()->getAuteurPrincipal(); + return ($record =$this->getNotice()) + ? $record->getAuteurPrincipal() + : ''; } public function getEditeur() { - return $this->getNotice()->getEditeur(); + return ($record = $this->getNotice()) + ? $record->getEditeur() + : ''; } public function getCollectionPrincipale() { - return $this->getNotice()->getCollections(true); + return ($record = $this->getNotice()) + ? $record->getCollections(true) + : ''; } public function getTypeDoc() { - return $this->getNotice()->getTypeDoc(); + return ($record = $this->getNotice()) + ? $record->getTypeDoc() + : ''; } @@ -279,7 +293,7 @@ class Class_Exemplaire extends Storm_Model_Abstract { public function isDisponible($cache_only = false) { - if ($this->getNotice()->isRessourceNumerique()) + if ($this->getNotice() && $this->getNotice()->isRessourceNumerique()) return true; if ($cache_only) @@ -334,7 +348,10 @@ class Class_Exemplaire extends Storm_Model_Abstract { public function toUnimarcIso2709() { $writer = new Class_NoticeUnimarc_Writer(); - $writer->setNotice($this->getNotice()->getUnimarc()); + $unimarc = ($record = $this->getNotice()) + ? $record->getUnimarc() + : ''; + $writer->setNotice($unimarc); $subfields = []; foreach ($this->zone995toArray() as $subfield) $subfields[] = [$this->get995Key($subfield), $subfield['valeur']]; @@ -420,7 +437,9 @@ class Class_Exemplaire extends Storm_Model_Abstract { public function isSigbLoanable() { - $record = $this->getNotice(); + if(!$record = $this->getNotice()) + return false; + return $this->isLoanable() && (!$record->isDilicom()); } } \ No newline at end of file diff --git a/library/Class/FileManager.php b/library/Class/FileManager.php index 02e9deb77ecab8cbdcec3299ce033e658dbf1f96..09cdbc3c6c072191221d2d023d137bedbed1ee4b 100644 --- a/library/Class/FileManager.php +++ b/library/Class/FileManager.php @@ -411,7 +411,7 @@ class Class_FileManager extends Class_Entity { public function getUrl() { - return rawurlencode($this->getPath()); + return Class_Url::absolute($this->getPath(), null, true); } diff --git a/library/Class/Notice/Sso.php b/library/Class/Notice/Sso.php index 2ab654de7a53433aa65d8006a60cad22ec9d6c32..124e52c57724203dd3b67fd7cd05f676997d2258 100644 --- a/library/Class/Notice/Sso.php +++ b/library/Class/Notice/Sso.php @@ -49,11 +49,11 @@ class Class_Notice_Sso extends Class_Entity { } - public function getModuleMenu() { + public function getConfig() { if (!$this->isValid()) return null; return Class_DigitalResource::getInstance() - ->getModuleMenuFor($this->getFirstCatalogAgency()); + ->configFor($this->getFirstCatalogAgency()); } } diff --git a/library/Class/NoticeDomain.php b/library/Class/NoticeDomain.php index 5d2f5bffa138311af7e40258ae791f075cb7d4b8..bc050d23353555f7bf5433e4f45496c886159795 100644 --- a/library/Class/NoticeDomain.php +++ b/library/Class/NoticeDomain.php @@ -111,6 +111,7 @@ class Class_NoticeDomain extends Storm_Model_Abstract { $_belongs_to = ['domain' => ['model' => 'Class_Catalogue', 'referenced_in' => 'domain_id'], + 'panier_notice' => ['model' => 'Class_PanierNotice', 'referenced_in' => 'panier_id']], @@ -129,12 +130,23 @@ class Class_NoticeDomain extends Storm_Model_Abstract { } + public function getNotice() { + return Class_Notice::findFirstBy(['clef_alpha' => $this->getRecordAlphaKey()]); + } + + + public function updateFacette() { + $this->_withRecordAndDomainDo([$this, '_updateRecordFacets']); + return $this; + } + + public function beforeDelete() { - $record = $this->getNotice(); - $domain = $this->getDomain(); - if(!$record || !$domain) - return; + $this->_withRecordAndDomainDo([$this, '_deleteRecordFacetIfLast']); + } + + protected function _deleteRecordFacetIfLast($record, $domain) { $existing = Class_NoticeDomain::getLoader() ->countBy(['domain_id' => $domain->getId(), 'record_alpha_key' => $this->getRecordAlphaKey()]); @@ -145,15 +157,17 @@ class Class_NoticeDomain extends Storm_Model_Abstract { } - public function getNotice() { - return Class_Notice::findFirstBy(['clef_alpha' => $this->getRecordAlphaKey()]); + protected function _updateRecordFacets($record, $domain) { + $record->updateFacette($domain->getFacette())->save(); } - public function updateFacette() { - $this->getNotice() - ->updateFacette($this->getDomain()->getFacette()) - ->save(); - return $this; + protected function _withRecordAndDomainDo($callback) { + $record = $this->getNotice(); + $domain = $this->getDomain(); + if (!$record || !$domain) + return; + + return call_user_func($callback, $record, $domain); } } \ No newline at end of file diff --git a/library/Class/Systeme/ModulesMenu/SSOAbstract.php b/library/Class/Systeme/ModulesMenu/SSOAbstract.php index 0d0b0a91e934cc6ecbf2ea1d8ea813739e351978..d05d145a39509421e57161f17644c7084f0e3550 100644 --- a/library/Class/Systeme/ModulesMenu/SSOAbstract.php +++ b/library/Class/Systeme/ModulesMenu/SSOAbstract.php @@ -46,8 +46,11 @@ class Class_Systeme_ModulesMenu_SSOAbstract extends Class_Systeme_ModulesMenu_Nu } - public function getDynamiqueUrl() { - return ($user = Class_Users::getIdentity()) + public function getDynamiqueUrl($user = null) { + if(!$user) + $user = Class_Users::getIdentity(); + + return $user ? $this->urlForUser($user) : $this->loginUrl(); } diff --git a/library/Class/Url.php b/library/Class/Url.php index 3a2b8d426e99ce5a471d7def76339166efe2f391..89e372b5e2d3310b2333c6b0b33252906d32db23 100644 --- a/library/Class/Url.php +++ b/library/Class/Url.php @@ -155,7 +155,12 @@ class Class_Url { if('' === $url) return static::baseUrl(); - if ((!static::$_do_not_add_base_url) && BASE_URL && (0 !== strpos($url, BASE_URL))) + if (static::_hasProtocol($url)) + return $url; + + if ((!static::$_do_not_add_base_url) + && BASE_URL + && (0 !== strpos($url, BASE_URL))) $url = BASE_URL . static::_beginWithSlash($url); return static::_beginWithSlash($url); diff --git a/library/Class/WebService/Redmine/Issue.php b/library/Class/WebService/Redmine/Issue.php index a3a1c911f760ed6bb9805282c1d5b95e6a53d982..e3bccad28f6e0c8973cab5ad2ee50175a60d4622 100644 --- a/library/Class/WebService/Redmine/Issue.php +++ b/library/Class/WebService/Redmine/Issue.php @@ -55,7 +55,7 @@ class Class_WebService_Redmine_Issue extends Class_Entity { public function getTechnicalInformations() { $datas = [$this->_('Url : ') . Class_Url::rootUrl() . Class_Url::baseUrl(), - $this->_('Version : ') . BOKEH_RELEASE_NUMBER . ' (' . BOKEH_VERSION . ')', + $this->_('Version : %s', BOKEH_RELEASE_NUMBER), $this->_('Navigateur : ') . Zend_Controller_Front::getInstance()->getRequest()->getHeader('User-Agent'), $this->_('Base de données : ') . Zend_Db_Table::getDefaultAdapter()->getConfig()['dbname']]; diff --git a/library/Class/WebService/SIGB/AbstractRESTService.php b/library/Class/WebService/SIGB/AbstractRESTService.php index a485b4b9bf046f37d2375b1d3e2f2409fdde15a9..5fd75ff2e1f27ae892253ad8ee421da833f0d75a 100644 --- a/library/Class/WebService/SIGB/AbstractRESTService.php +++ b/library/Class/WebService/SIGB/AbstractRESTService.php @@ -135,14 +135,21 @@ abstract class Class_WebService_SIGB_AbstractRESTService extends Class_WebServic */ protected function _getTagData($xml, $tag) { $matches = array(); - if (preg_match(sprintf('/%s>([^<]*)<\/%s/', $tag, $tag), + $string_to_search = sprintf('/%s>([^<]*)<\/%s/', $tag, $tag); + if (preg_match($string_to_search, $xml, - $matches)) + $matches)) { return $matches[1]; + } return ''; } + protected function _findErrorTagInXml($xml, $tag) { + return $this->_getTagData($xml,$tag); + } + + public function httpGetNotice($params, $reader) { $xml = $this->httpGet($params); @@ -242,16 +249,22 @@ abstract class Class_WebService_SIGB_AbstractRESTService extends Class_WebServic public function ilsdiCheckXml($xml, $error_tag, $error_message) { + return ($error = $this->_getErrorMessage($xml, $error_tag, $error_message)) + ? $this->_error($error) + : $this->_success(); + } + + + protected function _getErrorMessage($xml, $tag, $message) { if (!$xml) - return $this->_getNetworkError(); + return $this->_getNetworkErrorLabel(); if (0 === strpos($xml, '<html>')) - return $this->_getNetworkError(); - - if ($error_code = $this->_getTagData($xml, $error_tag)) - return $this->_getErrorFromCode($error_code, $error_message); + return $this->_getNetworkErrorLabel(); - return $this->_success(); + return ($error = $this->_findErrorTagInXml($xml, $tag)) + ? $this->_getErrorFromCode($error, $message) + : null; } @@ -275,6 +288,6 @@ abstract class Class_WebService_SIGB_AbstractRESTService extends Class_WebServic protected function _getErrorFromCode($error_code, $default_message) { - return $this->_error($default_message); + return $default_message; } } \ No newline at end of file diff --git a/library/Class/WebService/SIGB/Koha/Service.php b/library/Class/WebService/SIGB/Koha/Service.php index b2804ee41c0b7043525c4ced8205e8dd615a0851..3e417df0f41c0100b00d0eeddef41993925ba837 100644 --- a/library/Class/WebService/SIGB/Koha/Service.php +++ b/library/Class/WebService/SIGB/Koha/Service.php @@ -41,6 +41,42 @@ class Class_WebService_SIGB_Koha_Service extends Class_WebService_SIGB_AbstractR } + protected function _getErrorFromCode($code, $default_message) { + $error_messages = [ + 'ageRestricted' => $this->_('limitation sur l\'âge'), + 'damaged' => $this->_('exemplaire endommagé'), + 'cannotReserveFromOtherBranches' => $this->_('réservation impossible dans cette bibliothèque'), + 'tooManyReserves' => $this->_('nombre maximum de réservations atteint'), + 'notReservable' => $this->_('ce document ne peut normalement pas être réservé'), + 'debarred' => $this->_('compte bloqué'), + 'expired' => $this->_('compte expiré'), + 'alreadyReserved' => $this->_('document déjà réservé sur votre compte'), + 'none_available' => $this->_('aucun document n\'est disponible pour la réservation'), + 'on_reserve' => $this->_('document réservé par un autre lecteur'), + 'too_many' => $this->_('nombre maximum de prolongations atteint'), + 'onsite_checkout' => $this->_('document en prêt sur place'), + 'restriction' => $this->_('limitation sur l\'âge'), + 'overdue' => $this->_('documents en retard'), + 'too_soon' => $this->_('trop tôt pour renouveler') + ]; + + return isset($error_messages[$code]) + ? $default_message.' : '.$error_messages[$code] + : $default_message; + } + + + protected function _findErrorTagInXml($xml,$tag) { + if ($error = $this->_getTagData($xml, $tag)) + return $error; + + if ($success = $this->_getTagData($xml,'success')) + return 0 == $success; + + return false !== strpos($xml, $tag) ; + } + + protected function _authenticateWebservice($user) { $xml_auth = $this->httpGet(['service' => 'AuthenticatePatron', 'username' => $user->getLogin(), @@ -151,7 +187,7 @@ class Class_WebService_SIGB_Koha_Service extends Class_WebService_SIGB_AbstractR public function prolongerPret($user, $pret_id) { return $this->ilsdiRenewLoan(['patron_id' => $user->getIdSigb(), 'item_id' => $pret_id], - '(message|error)'); + 'error'); } diff --git a/library/Class/WebService/SIGB/Nanook/Service.php b/library/Class/WebService/SIGB/Nanook/Service.php index 5e8b3096d6196e0b89b7ec0bc2a6db816a060639..56acf358b34842ef61426c14e354bd73172068e6 100644 --- a/library/Class/WebService/SIGB/Nanook/Service.php +++ b/library/Class/WebService/SIGB/Nanook/Service.php @@ -352,7 +352,7 @@ class Class_Webservice_SIGB_Nanook_Service extends Class_WebService_SIGB_Abstrac protected function _getErrorFromCode($error_code, $message) { if(array_key_exists($error_code, $this->_error_codes)) $message = $this->_getErrorLabel($error_code); - return $this->_error($message); + return $message; } diff --git a/library/ZendAfi/Acl/AdminControllerRoles.php b/library/ZendAfi/Acl/AdminControllerRoles.php index a4bd13c87e6be667edc451d10abc2ac2ef20be34..d354ecd2b97c0895d69eacd164cc69377c8d7797 100644 --- a/library/ZendAfi/Acl/AdminControllerRoles.php +++ b/library/ZendAfi/Acl/AdminControllerRoles.php @@ -51,6 +51,7 @@ class ZendAfi_Acl_AdminControllerRoles extends Zend_Acl { $this->add(new Zend_Acl_Resource('auth')); $this->add(new Zend_Acl_Resource('cms')); $this->add(new Zend_Acl_Resource('cms-category')); + $this->add(new Zend_Acl_Resource('ckeditor')); $this->add(new Zend_Acl_Resource('data')); $this->add(new Zend_Acl_Resource('error')); $this->add(new Zend_Acl_Resource('modo')); @@ -108,6 +109,7 @@ class ZendAfi_Acl_AdminControllerRoles extends Zend_Acl { $this->allow('invite','auth'); $this->allow('modo_bib','cms'); + $this->allow('modo_bib','ckeditor'); $this->allow('modo_bib','cms-category'); $this->allow('modo_bib','ajax'); $this->allow('modo_bib','modo'); diff --git a/library/ZendAfi/Controller/Action.php b/library/ZendAfi/Controller/Action.php index 61122d29b7ef36c1235ba9aee857ca1fd52aa4b3..cc7ebae462ee5665e2ed770117cac2abd748f6d9 100644 --- a/library/ZendAfi/Controller/Action.php +++ b/library/ZendAfi/Controller/Action.php @@ -111,7 +111,17 @@ class ZendAfi_Controller_Action extends Zend_Controller_Action { } - protected function _javascriptRedirectToReferrer() { + protected function _javascriptRedirectToReferrer($message = null) { + $this->_popupJavascriptRedirectTo('', $message); + } + + + + protected function _popupJavascriptRedirectTo($url, $message = null) { + if($message) + $this->_helper->notify($message); + + $this->view->url = $url; $this->getHelper('ViewRenderer')->renderScript('ajax_return.phtml'); } @@ -120,7 +130,7 @@ class ZendAfi_Controller_Action extends Zend_Controller_Action { if (!$this->isPopupRequest()) return $this->_redirect($url, $options); - $this->_javascriptRedirectToReferrer(); + $this->_popupJavascriptRedirectTo(''); } @@ -283,6 +293,14 @@ class ZendAfi_Controller_Action extends Zend_Controller_Action { return $this->_redirect($this->_request->getServer('HTTP_REFERER')); } + $this->_javascriptRedirectTo($url); + } + + + protected function _javascriptRedirectTo($url, $message = null) { + if($message) + $this->_helper->notify($message); + $viewRenderer = $this->getHelper('ViewRenderer'); $viewRenderer->setNoRender(); $this->getResponse()->setHeader('Content-Type', 'text/html;charset=utf-8'); diff --git a/library/ZendAfi/Controller/Plugin/Manager/FileManager.php b/library/ZendAfi/Controller/Plugin/Manager/FileManager.php index f249f9e3efae66ec2d3ed45c784cc29fd5ea095e..ee31d143ead4fa605bc470dfcd91681d5d3dbefa 100644 --- a/library/ZendAfi/Controller/Plugin/Manager/FileManager.php +++ b/library/ZendAfi/Controller/Plugin/Manager/FileManager.php @@ -39,8 +39,10 @@ class ZendAfi_Controller_Plugin_Manager_FileManager extends ZendAfi_Controller_P ['url' => '#', 'icon' => '', 'caption' => function($model) { - if($model->isSelectable($this->_view->settings->getSelectableExtensions())) - return $this->_view->tag('i', '', ['class' => 'fa fa-check']) . $this->_view->tag('span', $this->_('Sélectionner')); + return $this->_view->tag('i', '', ['class' => 'fa fa-check']) . $this->_view->tag('span', $this->_('Sélectionner')); + }, + 'condition' => function($model) { + return $model->isSelectable($this->_view->settings->getSelectableExtensions()); }, 'label' => $this->_('Sélectionner "%s"', $model->getName()), 'anchorOptions' => array_filter(['title' => $this->_('Sélectionner "%s"', $model->getName()), @@ -50,9 +52,9 @@ class ZendAfi_Controller_Plugin_Manager_FileManager extends ZendAfi_Controller_P 'into' => $model->getId()], 'icon' => '', 'caption' => function($model) { - if($model->isDir()) - return $this->_view->tag('i', '', ['class' => 'fa icon-folder-plus']) . $this->_view->tag('span', $this->_('Créer')); + return $this->_view->tag('i', '', ['class' => 'fa icon-folder-plus']) . $this->_view->tag('span', $this->_('Créer')); }, + 'condition' => 'isDir', 'label' => $this->_('Créer un nouveau dossier dans "%s".', $model->getPath()), 'anchorOptions' => array_filter(['title' => $this->_('Ajouter un nouveau dossier dans "%s".', $model->getPath()), 'data-popup' => 'true', @@ -62,9 +64,9 @@ class ZendAfi_Controller_Plugin_Manager_FileManager extends ZendAfi_Controller_P 'into' => $model->getId()], 'icon' => '', 'caption' => function($model) { - if($model->isDir()) - return $this->_view->tag('i', '', ['class' => 'fa fa-upload']) . $this->_view->tag('span', $this->_('Téléverser')); + return $this->_view->tag('i', '', ['class' => 'fa fa-upload']) . $this->_view->tag('span', $this->_('Téléverser')); }, + 'condition' => 'isDir', 'label' => $this->_('Téléverser un nouveau fichier dans le dossier "%s".', $model->getPath()), 'anchorOptions' => array_filter(['title' => $this->_('Téléverser un nouveau fichier dans le dossier "%s".', $model->getPath()), 'data-popup' => 'true', @@ -74,9 +76,9 @@ class ZendAfi_Controller_Plugin_Manager_FileManager extends ZendAfi_Controller_P 'item' => $model->getId()], 'icon' => '', 'caption' => function($model) { - if($model->isResizable()) - return $this->_view->tag('i', '', ['class' => 'fa fa-compress']) . $this->_view->tag('span', $this->_('Redimensionner')); + return $this->_view->tag('i', '', ['class' => 'fa fa-compress']) . $this->_view->tag('span', $this->_('Redimensionner')); }, + 'condition' => 'isResizable', 'label' => $this->_('Redimensionner le fichier "%s".', $model->getPath()), 'anchorOptions' => array_filter(['title' => $this->_('Redimensionner le fichier "%s".', $model->getPath()), 'data-popup' => 'true', @@ -104,12 +106,12 @@ class ZendAfi_Controller_Plugin_Manager_FileManager extends ZendAfi_Controller_P 'data-popup' => 'true', 'class' => $model->isWritable() ? null : 'disabled'])], - ['url' => $model->getUrl(), + ['url' => $this->_view->escape($model->getUrl()), 'icon' => '', 'caption' => function($model) { - if($model->isFile()) - return $this->_view->tag('i', '', ['class' => 'fa fa-download']) . $this->_view->tag('span', $this->_('Télécharger')); + return $this->_view->tag('i', '', ['class' => 'fa fa-download']) . $this->_view->tag('span', $this->_('Télécharger')); }, + 'condition' => 'isFile', 'label' => $this->_('Télécharger "%s"', $model->getName()), 'anchorOptions' => array_filter(['download' => $model->getName(), 'title' => $this->_('Télécharger "%s"', $model->getName())])], @@ -127,303 +129,9 @@ class ZendAfi_Controller_Plugin_Manager_FileManager extends ZendAfi_Controller_P } - public function dropAction() { - if(!$item = $this->_findItemFromParams()) - return ; - - if(!$into = $this->_findIntoFromParams($item)) - return; - - if($item->getPath() == $into->getPath()) - return $this->_nothingToDo($item, $into); - - $this->_view->titre = $this->_('"%s" vers "%s"', $item->getPath(), $into->getPath()); - $this->_view->disable_move = $item->getParentPath() == $into->getPath() || (!$item->isWritable()); - } - - - public function moveAction() { - if(!$item = $this->_findItemFromParams()) - return; - - if(!$into = $this->_findIntoFromParams($item)) - return; - - if($item->getParentPath() == $into->getPath()) - return $this->_nothingToDo($item, $into); - - if($item->getPath() == $into->getPath()) - return $this->_nothingToDo($item, $into); - - - $expected_destination = $into->getPath() . '/' . $item->getName(); - - $message = ($success = Class_FileManager::moveItemInto($item, $expected_destination)) - ? $this->_('Déplacement de "%s" dans "%s" effectué.', $item->getName(), $into->getPath()) - : $this->_('Impossible de déplacer "%s" dans "%s".', $item->getName(), $into->getPath()); - - if($success) - $item->renameModels($expected_destination); - - $this->_redirectWithMessage($message); - } - - - public function copyAction() { - if(Class_FileManager::isFull()) - return $this->_spaceFullError(); - - if(!$item = $this->_findItemFromParams()) - return; - - if(!$into = $this->_findIntoFromParams($item)) - return; - - $message = Class_FileManager::copyItemInto($item, $into) - ? $this->_('Copie de "%s" dans "%s" effectué.', $item->getName(), $into->getPath()) - : $this->_('Impossible de copier "%s" dans "%s".', $item->getName(), $into->getPath()); - - $this->_redirectWithMessage($message); - } - - - public function deleteAction() { - $this->_view->item = $item = $this->_findItemFromParams(); - - if(!$item->isDeepWritable()) - return $this->_redirectWithMessage($this->_('Le dossier "%s" ne peut pas être supprimé car il contient des éléments protégés en écriture ou utilisés dans les articles, les domaines ou les profils.', $item->getPath())); - - $this->_view->titre = $this->_('Supprimer "%s"', $item->getPath()); - $this->_view->models = $item->getModels(); - } - - - public function forceDeleteAction() { - if(!$item = $this->_findItemFromParams()) - return; - - $message = Class_FileManager::delete($item) - ? $this->_('"%s" supprimé.', $item->getPath()) - : $this->_('Impossible de supprimer "%s".', $item->getPath()); - - $this->_redirectWithMessage($message); - } - - - public function createAction() { - $into = $this->_findIntoFromParams(); - $this->_view->titre = $this->_('Créer un nouveau dossier dans "%s"', $into->getPath()); - $this->_view->form = $form = ZendAfi_Form_Admin_FileManager_Folder::newWith($this->_request->getParams()); - $form->setAction($this->_view->url()); - - if (!$this->_request->isPost()) - return; - - if (!$form->isValid($this->_getPost())) - return; - - $post = $this->_getPost(); - - $folder = isset($post['folder']) - ? $post['folder'] - : $this->_getParam('folder'); - - $message = Class_FileManager::create($folder, $into) - ? $this->_('Dossier "%s" créé.', $folder) - : $this->_('Impossible de créer le dossier "%s".', $folder); - - $this->_redirectWithMessage($message); - } - - - public function importAction() { - if(Class_FileManager::isFull()) - return $this->_spaceFullError(); - - $into = $this->_findIntoFromParams(); - $this->_view->titre = $this->_('Téléverser un fichier dans "%s"', $into->getPath()); - $this->_view->form = $form = ZendAfi_Form_Admin_FileManager_Import::newWith(['into' => $into->getRealpath()]); - $this->_view->dimensions = array_filter(explode(';', Class_AdminVar::get('RESIZABLE_DIMENSIONS'))); - sort($this->_view->dimensions, SORT_NUMERIC); - - $form->setAction($this->_view->url()); - - if (!$this->_request->isPost()) - return; - - if($resized_file = $this->_getParam('ajax_resized_image')) - return $this->_ajaxUploadImage($resized_file, $into); - - if (!$form->isValid($this->_request->getPost())) - return; - - if(!$form->file->receive()) - return; - - $path = explode('/', $form->file->getFileName()); - $filename = array_pop($path); - - if(!$file = Class_FileManager::find($into->getId() . '/' . $filename)) - return $this->_redirectWithMessage($this->_('Impossible de téléverser le fichier "%s".', $filename)); - - $message = $this->_('Fichier "%s" téléversé.', $file->getPath()); - $this->_redirectWithMessage($message); - } - - - protected function _ajaxUploadImage($resized_file, $into) { - $resized_file = str_replace('data:image/png;base64,', '', $resized_file); - $resized_file = str_replace(' ', '+', $resized_file); - $path = $into->getPath() . '/' . $this->_getParam('filename'); - - $message = Class_FileManager::createImage($path, base64_decode($resized_file)) - ? $this->_('Fichier "%s" téléversé.', $path) - : $this->_('Une erreur c\' produite. Le téléversage a échoué.'); - - $this->_redirectWithMessage($message); - } - - - public function resizeAction() { - $item = $this->_findItemFromParams(); - if(!$item->isResizable()) - return $this->_redirectWithMessage($this->_('"%s" n\'est pas redimensionnable.', $item->getName())); - - $this->_view->titre = $this->_('Redimensionner l\'image "%s"', $item->getName()); - $this->_view->item = $item; - $this->_view->dimensions = array_filter(explode(';', Class_AdminVar::get('RESIZABLE_DIMENSIONS'))); - sort($this->_view->dimensions, SORT_NUMERIC); - } - - - public function resizeImageAction() { - $item = $this->_findItemFromParams(); - - $dimensions = $this->_getParam('dimensions'); - $available_dimensions = Class_AdminVar::get('RESIZABLE_DIMENSIONS'); - - - if(!in_array($dimensions, explode(';', $available_dimensions))) - return $this->_redirectWithMessage($this->_('Dimensions "%s" invalident. Les dimensions valident sont : %s .', $dimensions, $available_dimensions)); - - list($width, $height) = explode('x', $dimensions); - $message = (new Class_Notice_Thumbnail_ResizeImage)->resize($item->getRealpath(), $width, $height, null, true) - ? $this->_('L\'image "%s" a été redimensionnée.', $item->getId()) - : $this->_('Erreur. L\'image "%s" n\'a pas été redimensionnée.', $item->getId()); - - $this->_redirectWithMessage($message); - } - - - public function compressImageAction() { - $item = $this->_findItemFromParams(); - - list($width, $height) = explode('x', $item->getDimensions()); - $message = (new Class_Notice_Thumbnail_ResizeImage)->resize($item->getRealpath(), $width, $height, null, true) - ? $this->_('L\'image "%s" a été compressée.', $item->getId()) - : $this->_('Erreur. L\'image "%s" n\'a pas été compressée.', $item->getId()); - - $this->_redirectWithMessage($message); - } - - - public function renameAction() { - $item = $this->_findItemFromParams(); - $this->_view->titre = $this->_('Renommer "%s"', $item->getBasename()); - $this->_view->form = $form = ZendAfi_Form_Admin_FileManager_Rename::newWith(['into' => $item->getRealpath(), - 'name' => $item->getBasename()]); - - $form->setAction($this->_view->url()); - - if (!$this->_request->isPost()) - return; - - if (!$form->isValid($post = $this->_getPost())) - return; - - $new_name= isset($post['name']) - ? $post['name'] - : $this->_getParam('name'); - - $new_name = $item->isFile() - ? $new_name . '.' . $item->getExtension() - : $new_name; - - $expected_destination = $item->getParentPath() . '/' . $new_name; - - $message = ($success = Class_FileManager::rename($item, $expected_destination)) - ? $this->_('"%s" renommé en "%s".', $item->getBasename(), $new_name) - : $this->_('Erreur. Impossible de renommer "%s".', $item->getPath()); - - if($success) - $item->renameModels($expected_destination); - - $this->_redirectWithMessage($message); - } - - - public function propertiesAction() { - $item = $this->_view->item = $this->_findItemFromParams(); - $this->_view->titre = $this->_('Propriétés de "%s"', $item->getName()); - } - - - protected function _findItemFromParams() { - $item_path = $this->_getParam('item'); - - if($item = Class_FileManager::find($item_path)) - return $item; - - return $this->_unknownPathError($item_path); - } - - - protected function _findIntoFromParams($item = null) { - $into_path = $this->_getParam('into'); - if(!$into = Class_FileManager::find($into_path)) - return $this->_unknownPathError($into_path); - - if(!$into->isDir()) - return $this->_forbiddenPathError($into_path); - - if($item && $item->contains($into)) - return $this->_forbiddenPathError($into_path); - - return $into; - } - - - protected function _unknownPathError($path) { - return $this->_redirectWithMessage($this->_('Erreur. Le chemin "%s" n\'existe pas.', $path)); - } - - - protected function _forbiddenPathError($path) { - return $this->_redirectWithMessage($this->_('Erreur. Impossible de faire cette opération vers "%s".', $path)); - } - - - protected function _nothingToDo($item, $into) { - return $this->_redirectWithMessage($this->_('Vous ne pouvez pas copier ou déplacer un élément avec lui-même : "%s" est identique à "%s" .', - $item->getPath(), - $into->getPath())); - } - - - protected function _spaceFullError() { - return $this->_redirectWithMessage($this->_('Erreur. Vous ne pouvez pas téléverser un nouveau fichier car vous avez utilisé les "%s méga-octets" disponibles.', Class_AdminVar::get('ALLOWED_DISK_SPACE'))); - } - - - protected function _redirectWithMessage($message) { - $this->_helper->notify($message); - return $this->_redirectClose($this->_getReferer()); - } - - protected function _getBrowseUrl($model) { return $this->_view->url([$model->getBrowserParam() => $model->getPath(), 'search_' . $model->getBrowserParam() => null, - 'focused_browser' => $model->getBrowserParam()]); + 'focused_browser' => $model->getBrowserParam()]); } } \ No newline at end of file diff --git a/library/ZendAfi/Form/Admin/FileManager/Import.php b/library/ZendAfi/Form/Admin/FileManager/Import.php index 57e12809180d5612bda7d0ebb68d042bed26dbfd..b3ecc5c5c6bdd8fc9c4d2e1091aaa7eeb58d6755 100644 --- a/library/ZendAfi/Form/Admin/FileManager/Import.php +++ b/library/ZendAfi/Form/Admin/FileManager/Import.php @@ -43,6 +43,10 @@ class ZendAfi_Form_Admin_FileManager_Import extends ZendAfi_Form { $extensions = Class_AdminVar::get('ALLOWED_FILES_EXTENSIONS_FOR_IMPORT'); return $element + ->addValidator((new ZendAfi_Validate_FileName(Class_FileManager::REGEX_NAME)) + ->setMessage($form->_('Le nom doit contenir uniquement des lettres, des chiffres et les caratères "_", "-", ".". Exemple : "mon_fichier.jpg"'), + ZendAfi_Validate_FileName::NOT_MATCH)) + ->addValidator((new Zend_Validate_File_Count(1)) ->setMessage($form->_('Un seul fichier doit être transféré.'))) diff --git a/library/ZendAfi/Validate/FileName.php b/library/ZendAfi/Validate/FileName.php new file mode 100644 index 0000000000000000000000000000000000000000..9a0c22d2bb86d383ef4405dc1b84d06abf601b80 --- /dev/null +++ b/library/ZendAfi/Validate/FileName.php @@ -0,0 +1,78 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class ZendAfi_Validate_FileName extends Zend_Validate_Abstract{ + protected $_pattern; + + /** + * @const string Error constants + */ + const NOT_MATCH = 'fileNameDoesNotMatch'; + + + /** + * @var array Error message templates + */ + protected $_messageTemplates = + [ self::NOT_MATCH => "The name '%value%' does not match '%pattern%' pattern" ]; + + + /** + * @var array + */ + protected $_messageVariables = ['pattern' => '_pattern']; + + + public function __construct($pattern) { + $this->_pattern = $pattern; + } + + + public function isValid($temp_name, $file_infos = null) { + $status = @preg_match($this->_pattern, $file_infos['name']); + + if (!$status) { + $this->_throw($file_infos, static::NOT_MATCH); + return false; + } + + return true; + } + + + /** + * Throws an error of the given type + * + * @param string $file + * @param string $errorType + * @return false + */ + protected function _throw($file, $errorType) + { + if ($file !== null) { + $this->_value = $file['name']; + } + + $this->_error($errorType); + return false; + } +} diff --git a/library/ZendAfi/View/Helper/Admin/FileManager/File.php b/library/ZendAfi/View/Helper/Admin/FileManager/File.php index e85c8bfed5dc6b1bee5617a1d9c47ae1284e05e6..6830f0d73e1c272941e4d72d98646850261d0f9e 100644 --- a/library/ZendAfi/View/Helper/Admin/FileManager/File.php +++ b/library/ZendAfi/View/Helper/Admin/FileManager/File.php @@ -25,7 +25,7 @@ class ZendAfi_View_Helper_Admin_FileManager_File extends ZendAfi_View_Helper_Bas if(!$settings) $settings = (new Class_Entity)->setSelectFile(false); - $url = $this->view->absoluteUrl($file->getUrl(), null, true); + $url = $file->getUrl(); $dt = [ $this->_tag('dt', $this->_('Nom :')), @@ -54,14 +54,14 @@ class ZendAfi_View_Helper_Admin_FileManager_File extends ZendAfi_View_Helper_Bas if($file->isFile()) $dt = array_merge($dt, [$this->_tag('dt', $this->_('URL publique :')), - $this->_tag('dd', urldecode($url))]); + $this->_tag('dd', $url)]); $dl = $this->_tag('dl', implode(array_filter($dt))); $url_reload = $url . '?version='. time(); // force reload image $open_new_tab = ($file->isFile() - ? $this->view->tagAnchor($url_reload, + ? $this->view->tagAnchor($this->view->escape($url_reload), $this->_('Accéder à "%s" dans un nouvel onglet.', $file->getName()), ['target' => '_blank']) : ''); diff --git a/library/ZendAfi/View/Helper/AjaxRedirect.php b/library/ZendAfi/View/Helper/AjaxRedirect.php index 7f4dafcda9c3dd461db6b1e22ac72749d4cadb1b..1ab078862693b1cfa6a7c7c0b1624213fc2f7eda 100644 --- a/library/ZendAfi/View/Helper/AjaxRedirect.php +++ b/library/ZendAfi/View/Helper/AjaxRedirect.php @@ -21,10 +21,14 @@ class ZendAfi_View_Helper_AjaxRedirect extends ZendAfi_View_Helper_BaseHelper { - public function ajaxRedirect() { + public function ajaxRedirect($url = '') { $script_loader = Class_ScriptLoader::getInstance(); Class_Admin_Skin::current()->renderJQueryCssOn($script_loader); + $redirect = $url + ? sprintf('location.href = "%s"', Class_Url::absolute($url)) + : 'location.reload();'; + return $script_loader->html() . $this->_tag('div', @@ -34,7 +38,7 @@ class ZendAfi_View_Helper_AjaxRedirect extends ZendAfi_View_Helper_BaseHelper { ['class' => 'saving-process']) . $this->_tag('script', - 'location.reload();'); + $redirect); } } ?> \ No newline at end of file diff --git a/library/ZendAfi/View/Helper/CkEditor.php b/library/ZendAfi/View/Helper/CkEditor.php index d553be3e21737efb6d36eddf8c52a50b8a2cf17a..b2a8c06e2442a41059ef6b1b46dfa0e246786d8d 100644 --- a/library/ZendAfi/View/Helper/CkEditor.php +++ b/library/ZendAfi/View/Helper/CkEditor.php @@ -107,7 +107,7 @@ class ZendAfi_View_Helper_CkEditor extends ZendAfi_View_Helper_BaseHelper ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'] ]); $config['kiosk_widget_url'] = Class_Url::assemble(['module' => 'admin', - 'controller' => 'widget', + 'controller' => 'ckeditor', 'action' => 'get-form', 'code' => Class_Systeme_ModulesAccueil_Kiosque::CODE, 'render' => 'popup']); diff --git a/library/ZendAfi/View/Helper/DigitalResource/Dashboard.php b/library/ZendAfi/View/Helper/DigitalResource/Dashboard.php new file mode 100644 index 0000000000000000000000000000000000000000..da5d8f85ca40d2cae00556d1ba5d8ad2f347e207 --- /dev/null +++ b/library/ZendAfi/View/Helper/DigitalResource/Dashboard.php @@ -0,0 +1,338 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class ZendAfi_View_Helper_DigitalResource_Dashboard extends ZendAfi_View_Helper_BaseHelper { + + protected + $_config, + $_permitted_groups; + + + public function DigitalResource_Dashboard($config) { + $this->_config = $config; + return implode([$this->_renderStatus(), + $this->_renderSettings(), + $this->_renderRights(), + $this->_renderSso(), + $this->_renderHarvest()]); + } + + + protected function _renderStatus() { + return implode([$this->_globalStatus(), + $this->_harvestStatus()]); + } + + + protected function _globalStatus() { + $label = $this->_('Désactivé'); + $class = 'digital_connectors_status'; + + if ($this->_config->isEnabled()) { + $label = $this->_('Activé'); + $class .= ' enabled'; + } + return $this->view->button((new Class_Entity) + ->setText($label) + ->setAttribs(['disabled' => 'disabled', + 'onclick' => 'return;', + 'class' => $class])); + } + + + protected function _harvestStatus() { + if(!$batch = $this->_config->getBatch()) + return ''; + + $label = $this->_('Moissonnage désactivé'); + $class = 'digital_connectors_status'; + + if (Class_Batch::findFirstBy(['type' => $batch])) { + $label = $this->_('Moissonnage activé'); + $class .= ' enabled'; + } + return $this->view->button((new Class_Entity) + ->setText($label) + ->setAttribs(['disabled' => 'disabled', + 'onclick' => 'return;', + 'class' => $class])); + } + + + protected function _renderSettings() { + $description = (new Class_TableDescription('adminvars')) + ->addColumn($this->_('description'), 'description') + ->addColumn($this->_('Clef'), 'id') + ->addColumn($this->_('valeur'), + function($model) + { + return ($renderer = $model->getRenderer()) + ? $renderer($model->getValeur(), $this->view) + : $this->view->adminVar($model); + }) + ->addRowAction(function($model) + { + return $this->view->renderModelActions($model, + [['url' => ['module' => 'admin', + 'controller' => 'index', + 'action' => 'adminvaredit', + 'cle' => $model->getClef()], + 'icon' => 'edit', + 'anchorOptions' => ['data-popup' => true], + 'label' => $this->_('Modifier "%s"', $model->getClef())]]); + }); + + return + $this->_tag('h3', $this->_('Paramétrage')) + . $this->view->renderTable($description, $this->_config->getAdminVarsInstances(), ['sorter' => true]); + } + + + protected function _renderRights() { + $html = [$this->_tag('h3',$this->_('Gestion des droits'))]; + + if (!$this->_config->isEnabled()) { + $html [] = $this->_tag('p', $this->_('Veuillez activer la ressource pour pouvoir gérer les droits d\'accès des groupes'), ['class' => 'error']); + return implode($html); + } + + if(!$permission_label = $this->_config->getPermissionLabel()) { + $html [] = $this->_tag('p', $this->_('Cette ressource ne prend pas en charge la gestion des droits'), ['class' => 'error']) ; + return implode($html); + } + + $html [] = $this->_tag('p', $this->_('Nom de la permission à donner : "%s"', $permission_label)); + + $groups = new Storm_Collection(Class_UserGroup::findAll()); + $this->_permitted_groups = array_filter( + $groups + ->select(function ($group) + { + $permission = $this->_config->getPermission(); + return $group->hasPermissionOn($permission, $this->_config); + }) + ->getArrayCopy()); + + if (empty($this->_permitted_groups)) { + $html [] = $this->_tag('p', $this->_('Aucun groupe n\'a de droits d\'accès à la ressources'), ['class' => 'error']) + . $this->view->tagAnchor($this->view->absoluteUrl(['module' => 'admin', + 'controller' => 'usergroup', + 'action' => 'index'], + null, + true), + $this->_('Gérer les groupes'), + ['target' => '_blank']); + return implode($html); + } + + $usergroup_description = (new Class_TableDescription('usergroups')) + ->addColumn($this->_('Groupes qui ont accès à la ressource'), + 'libelle') + ->addColumn($this->_('Nombre de membres'), + function($model) { return $model->formatedCount();}) + ->addRowAction(function($model) + { + return $this->view->renderModelActions($model, + [['url' => ['module' => 'admin', + 'controller' => 'usergroup', + 'action' => 'edit', + 'id' => $model->getId()], + 'icon' => 'edit', + 'anchorOptions' => ['data-popup' => true], + 'label' => $this->_('Modifier "%s"', $model->getLibelle())]]); + + }); + + $html [] = $this->view->renderTable($usergroup_description, $this->_permitted_groups, ['sorter' => true]); + + $count_user = 0; + foreach($this->_permitted_groups as $group) + $count_user += $group->formatedCount(); + + if (0 == $count_user) + $html [] = $this->_tag('p', $this->_('Aucun utilisateur rattaché aux groupes'), ['class' => 'error']); + + return implode($html); + } + + + protected function _renderSso() { + $html = [$this->_tag('h3', $this->_('Diagnostic SSO'))]; + + if(!$this->_config->getSsoAction()) { + $html [] = $this->_tag('p', $this->_('Cette ressource ne prend pas en charge la connexion SSO'), ['class' => 'error']) ; + return implode($html); + } + + if(!$this->_permitted_groups) { + $html [] = $this->_tag('p', $this->_('Veuillez configurer les droits de cette ressource pour obtenir une connexion SSO'), ['class' => 'error']); + return implode($html); + } + + $login = $this->_config->getName() . '_test_user'; + $user = ($user = Class_Users::findFirstBy(['login' => $login])) + ? $user + : Class_Users::newInstance(['login' => $login, + 'password' => $login]); + + $user->save(); + + if(!$permission = Class_Permission::findFirstBy(['code' => $this->_config->getName()])) + return implode($html); + + $group_name = $this->_config->getName() . '_test_group'; + $group = ($group = Class_UserGroup::findFirstBy(['libelle' => $group_name])) + ? $group + : Class_UserGroup::newInstance(['libelle' => $group_name]); + + $group->addUser($user)->save(); + $permission->permitTo($group, new Class_Entity()); + + $html [] = $this->_tag('h5', $this->_('Groupe créé pour ce test')) + . $this->_tag('ul', + $this->_tag('li', $this->_('Nom : %s', $group->getLibelle()))); + + Class_Users::clearCache(); + $user = Class_Users::find($user->getId()); + + $html [] = $this->_tag('h5', $this->_('Utilisateur créé pour ce test')) + . $this->_tag('ul', + $this->_tag('li', $this->_('Login : %s', $user->getLogin())) + . $this->_tag('li', $this->_('Mot de passe : %s', $user->getLogin())) + . $this->_tag('li', $this->_('Groupes : %s', implode(', ',$user->getUserGroupsLabels())))); + + $html [] = $this->view->renderModelActions($user, + [['url' => ['module' => 'admin', + 'controller' => 'users', + 'action' => 'edit', + 'id' => $user->getId()], + 'icon' => 'edit', + 'anchorOptions' => ['data-popup' => true], + 'label' => $this->_('Modifier "%s"', + $user->getLogin())]]); + + $url = $this->_config->urlFor($user); + $html [] = $this->_tag('h4', $this->_('URL SSO générée par /modules/%s pour l\'utilisateur "%s"', + $this->_config->getName(), + $user->getLogin())) + . $this->view->tagAnchor($url, $url, ['target' => '_blank']); + + if(!$album = Class_Album::findFirstby(['type_doc_id' => $this->_config->getDocType()])) + return implode($html); + + $album_url = $this->_config->urlFor($user, $album); + $html [] = $this->_tag('h4', $this->_('URL SSO générée pour l\'utilisateur "%s" et l\'album "%s"', + $user->getLogin(), + $album->getTitre()) + . $this->view->tagAnchor(['module' => 'admin', + 'controller' => 'album', + 'action' => 'edit_album', + 'id' => $album->getId()], $this->_('Voir l\'album'), + ['style' => 'margin-left: 1em', + 'data-popup' => 'true'])) + . $this->view->tagAnchor($album_url, $album_url, ['target' => '_blank']); + + return implode($html); + } + + + protected function _renderHarvest() { + $html = [$this->_tag('h3', $this->_('Diagnostic moissonnage'))]; + + if(!$batch_name = $this->_config->getBatch()) { + $html [] = $this->_tag('p', $this->_('Cette ressource ne prend pas en charge le moissonnage'), ['class' => 'error']) ; + return implode($html); + } + + if (!$this->_config->isEnabled()) { + $html [] = $this->_tag('p', $this->_('Veuillez activer la ressource pour pouvoir gérer le moissonage'), ['class' => 'error']); + return implode($html); + } + + if(!$batch = Class_Batch::findFirstBy(['type' => $batch_name])) { + $html [] = $this->_tag('p', $this->_('Le moissonnage n\'est pas programmé'), ['class' => 'error']) + . $this->view->button((new Class_Entity()) + ->setText($this->_('Activer le moissonnage')) + ->setUrl($this->view->absoluteUrl(['module' => 'admin', + 'controller' => 'batch', + 'action' => 'activate', + 'id' => $batch_name], + null, + true))); + } + + $description = (new Class_TableDescription('batchs')) + ->addColumn($this->_('Batch'), function($model) { return $model->getLabel(); }) + ->addColumn($this->_('Planification'), + function($model) + { + return (new Class_Repeat_WeekDays())->humanReadable($model->getPickDay()); + }) + ->addColumn($this->_('Dernière exécution'), function($model) { return $model->getLastRun(); }) + ->addRowAction(function($model) + { + return $this->view->renderModelActions($model, + [ + ['url' => '/admin/batch/delete/id/%s', + 'icon' => 'show', + 'label' => $this->_('Désactiver la tâche'), + 'condition' => function($model) + { + return $model->isDeletable(); + }, + 'anchorOptions' => + ['onclick' => 'return confirm(\'' + . str_replace(['\'', '"'], '\\\'', + $this->_('Etes-vous sur de vouloir désactiver cette tâche ?')) + . '\')']], + + ['url' => '/admin/batch/plan/id/%s', + 'icon' => 'calendar', + 'label' => $this->_('Plannifier la tâche'), + 'condition' => function($model) { + return Class_Users::isCurrentUserSuperAdmin() + && $model->isActive(); + }, + 'anchorOptions' => ['data-popup' => 'true']],]); + }); + + $albums_link = ($cat = Class_AlbumCategorie::findFirstBy(['libelle' => $this->_config->getDocTypeLabel()])) + ? $this->view->tagAnchor($this->view->absoluteUrl(['module' => 'admin', + 'controller' => 'album', + 'action' => 'index', + 'cat_id' => $cat->getId()], null, true), + $this->_('Voir les albums'), + ['target' => '_blank']) + : ''; + + if($batch) + $html [] = $this->view->renderTable($description, [new Class_Batch_Definition($this->_config->getBatchInstance())]); + + $html [] = ($count = Class_Album::countBy(['type_doc_id' => $this->_config->getDocType()])) + ? $this->_tag('p', + $this->_('Nombre d\'albums présents : %d', $count)) + . $albums_link + : $this->_tag('p', $this->_('Aucun album présent pour cette ressource'), ['class' => 'error']); + + return implode($html); + } +} \ No newline at end of file diff --git a/library/digital_resources/Assimil/tests/AssimilTest.php b/library/digital_resources/Assimil/tests/AssimilTest.php index b49d2615036fb3d5008d42024625956334c4cb1a..5ede329fdab5365025ca0d5fb1c7d98990bdbdf3 100644 --- a/library/digital_resources/Assimil/tests/AssimilTest.php +++ b/library/digital_resources/Assimil/tests/AssimilTest.php @@ -23,11 +23,12 @@ class AssimilAdminVars { public static function activate() { - Class_AdminVar::newInstanceWithId('Assimil_Assimil', ['valeur' => '1'])->save(); + Class_AdminVar::set('Assimil_Assimil', '1'); + Class_AdminVar::set('SSO_URL', '1'); } public static function deactivate() { - Class_AdminVar::newInstanceWithId('Assimil_Assimil', ['valeur' => '0'])->save(); + Class_AdminVar::set('Assimil_Assimil', '0'); } } @@ -497,14 +498,53 @@ class AssimilAjaxRecordWithLoggedUserDispatchTest extends AssimilAjaxRecordTestC class AssimilModuleIndexControllerTest extends AbstractControllerTestCase { - protected $_storm_default_to_volatile = true; + public function setUp() { + parent::setUp(); + + $this->fixture('Class_AdminVar', + ['id' => 'Assimil_Assimil', + 'valeur' => 1]); + + $this->fixture('Class_AdminVar', + ['id' => 'Assimil_SSO_URL', + 'valeur' => '']); + + $user = $this->fixture('Class_Users', + ['id' => 56, + 'login' => 'Pierre', + 'password' => 'eCRTY']); + + $group = $this->fixture('Class_UserGroup', + ['id' => 1, + 'libelle' => 'Assimil accès']) + ->addUser($user); + + $this->fixture('Class_Permission', + ['id' => 1, + 'code' => 'Assimil']) + ->permitTo($group, + new Class_Entity()); + + $this->fixture('Class_AlbumCategorie', + ['id' => 2, + 'libelle' => 'ASSIMIL e-méthode', + ]); + + $this->fixture('Class_Album', + ['id' => 1, + 'titre' => 'album assimil', + 'type_doc_id' => 'Assimil', + 'cat_id' => 2 + ]); + } + /** @test */ public function indexActionShouldContainsNumberOfAlbums() { $this->dispatch('/Assimil_Plugin/index', true); - $this->assertXPathContentContains('//div/p', 'Nombre d\'albums présents : 0', $this->_response->getBody()); + $this->assertXPathContentContains('//p', 'Nombre d\'albums présents : 1'); } @@ -517,17 +557,23 @@ class AssimilModuleIndexControllerTest extends AbstractControllerTestCase { /** @test */ public function assimilActionShouldRedirect() { + ZendAfi_Auth::getInstance()->logUser($this->fixture('Class_Users', + ['id' => 987, + 'login' => 'Thomas', + 'password' => 'yuioO'])); + $this->dispatch('/Assimil_Plugin/index/assimil', true); $this->assertFlashMessengerContentContains('Vous n\'avez pas accès à cette ressource.'); - $this->assertRedirect(); + $this->assertRedirectTo(Class_Url::absolute('/')); } /** @test */ - public function noLoggedUserShouldRedirectToAjaxLogin() { + public function noLoggedUserShouldRedirectToLogin() { ZendAfi_Auth::getInstance()->clearIdentity(); $this->dispatch('/Assimil_Plugin', true); - $this->assertRedirectTo('http://localhost' . BASE_URL . '/auth/ajax-login/location/Assimil_Plugin'); + $redirect = rawurlencode(Class_Url::absolute('/Assimil_Plugin')); + $this->assertRedirectTo(Class_Url::absolute('/auth/login?redirect=' . $redirect)); } } diff --git a/library/digital_resources/Assimil/views/scripts/index/index.phtml b/library/digital_resources/Assimil/views/scripts/index/index.phtml deleted file mode 100644 index 94021ac7cecad7d8812b4bb7964fca6366e173d8..0000000000000000000000000000000000000000 --- a/library/digital_resources/Assimil/views/scripts/index/index.phtml +++ /dev/null @@ -1,3 +0,0 @@ -<?php -echo $this->tag('p', - $this->_('Nombre d\'albums présents : %s',$this->records_count)); ?> diff --git a/library/digital_resources/Bibliondemand/Config.php b/library/digital_resources/Bibliondemand/Config.php index d630edb866be187c8b42d39ecbbab934910487b0..6e6db0730c853e5c49510fd674b13a0bce4fbd5f 100644 --- a/library/digital_resources/Bibliondemand/Config.php +++ b/library/digital_resources/Bibliondemand/Config.php @@ -50,8 +50,19 @@ class Bibliondemand_Config extends Class_DigitalResource_Config { } + public function getRecordSsoUrl($user, $record) { + if(!$record) + return; + + $url = Class_AdminVar::getValueOrDefault($this->withNameSpace('SSO_URL')); + + return ($record_url = (new Class_Notice_Sso($record))->getFirstPrivateUrl()) + ? $url . '&' . http_build_query(['returnUrl' => $record_url]) + : $url; + } + + public function isEnabled() { return '' != $this->getAdminVar('SSO_URL'); } -} -?> \ No newline at end of file +} \ No newline at end of file diff --git a/library/digital_resources/Bibliondemand/ModuleMenu.php b/library/digital_resources/Bibliondemand/ModuleMenu.php index ec498e46052901ae00fe7c5596c403ef0f07fcb1..64f577f560ed491b76f7adcb4037a4803cae4127 100644 --- a/library/digital_resources/Bibliondemand/ModuleMenu.php +++ b/library/digital_resources/Bibliondemand/ModuleMenu.php @@ -21,21 +21,4 @@ class Bibliondemand_ModuleMenu extends Class_DigitalResource_ModuleMenu { - protected $_record; - - protected function getSsoUrl($user) { - $url = parent::getSsoUrl($user); - - if (!$this->_record - || (!$record_url = $this->_record->getFirstPrivateUrl())) - return $url; - - return $url . '&' . http_build_query(['returnUrl' => $record_url]); - } - - - public function setRecord($record) { - $this->_record = $record; - return $this; - } } \ No newline at end of file diff --git a/library/digital_resources/Bibliondemand/controllers/IndexController.php b/library/digital_resources/Bibliondemand/controllers/IndexController.php index f3b3a6cb909d45470738be014c9db09d308157eb..5473618b34b16d4ca55a021adcee2ed9f911946f 100644 --- a/library/digital_resources/Bibliondemand/controllers/IndexController.php +++ b/library/digital_resources/Bibliondemand/controllers/IndexController.php @@ -21,14 +21,4 @@ class Bibliondemand_Plugin_IndexController extends Class_DigitalResource_Controller { - public function ssoAction() { - $module = $this->_config->getModuleMenu(); - $module = new $module($this->_config); - - if(!$url = $module->urlForUser(Class_Users::getIdentity())) - return $this->willRedirectToMe($module) - ->checkNotifyMessage($module, $module->getDynamiqueUrl()); - - return $this->checkNotifyMessage($module, $url); - } } \ No newline at end of file diff --git a/library/digital_resources/Bibliondemand/tests/BibliondemandTest.php b/library/digital_resources/Bibliondemand/tests/BibliondemandTest.php index 41c58b936ee000cb1d1b4596b1777e1879786e96..6299df05f5555e0d857effa207e33b549f849ccf 100644 --- a/library/digital_resources/Bibliondemand/tests/BibliondemandTest.php +++ b/library/digital_resources/Bibliondemand/tests/BibliondemandTest.php @@ -48,8 +48,6 @@ class BibliondemandModulesControllerTest extends AbstractControllerTestCase { ->beAbonneSIGB()); $this->dispatch('/opac/modules/bibliondemand', true); - $this->assertXpathContentContains('//script', 'document.location.href="https://biblio.org";'); } -} -?> \ No newline at end of file +} \ No newline at end of file diff --git a/library/digital_resources/Capturator/tests/CapturatorTest.php b/library/digital_resources/Capturator/tests/CapturatorTest.php index f79ba50f1543faed92857eb4cd9fd815f0316c40..392528143171994b023ca2d5203b5915d9fa15e7 100644 --- a/library/digital_resources/Capturator/tests/CapturatorTest.php +++ b/library/digital_resources/Capturator/tests/CapturatorTest.php @@ -86,5 +86,4 @@ class CapturatorModulesControllerTest extends AbstractControllerTestCase { $this->assertContains('Bibliothèque numérique: accéder aux formations Capturator', Class_DigitalResource::getInstance()->getPermissionsLabel()); } -} -?> \ No newline at end of file +} \ No newline at end of file diff --git a/library/digital_resources/LaSourisQuiRaconte/Config.php b/library/digital_resources/LaSourisQuiRaconte/Config.php index 5fead2c3a42e557ec1e4599b20c6d314547b5405..7d86b828288694ee0018bda60259deb1d66c2b97 100644 --- a/library/digital_resources/LaSourisQuiRaconte/Config.php +++ b/library/digital_resources/LaSourisQuiRaconte/Config.php @@ -62,10 +62,16 @@ class LaSourisQuiRaconte_Config extends Class_DigitalResource_Config { 'controller' => 'auth', 'action' => 'validate', 'ticket' => (new Class_CasTicket())->getTicketForCurrentUser()]); + return static::LSQR_URL . '/espaces/bokeh_verif.php?url_controle=' . $url; } + public function getAlbumSsoUrl($user, $album) { + return $this->getSsoUrl($user) . '&redirect_id=' . $album->getIdOrigine(); + } + + public function getExportUrl() { return static::LSQR_URL . '/espaces/export_bokeh.php?token=bokeh_export'; } diff --git a/library/digital_resources/LaSourisQuiRaconte/ModuleMenu.php b/library/digital_resources/LaSourisQuiRaconte/ModuleMenu.php index 95813b355bfc2a9bdbdf2041f18a58593af1c76e..e6baf6bbb68f0cd798f51f31ab008bfcaa61fced 100644 --- a/library/digital_resources/LaSourisQuiRaconte/ModuleMenu.php +++ b/library/digital_resources/LaSourisQuiRaconte/ModuleMenu.php @@ -20,5 +20,4 @@ */ -class LaSourisQuiRaconte_ModuleMenu extends Class_DigitalResource_ModuleMenu { -} \ No newline at end of file +class LaSourisQuiRaconte_ModuleMenu extends Class_DigitalResource_ModuleMenu {} \ No newline at end of file diff --git a/library/digital_resources/LaSourisQuiRaconte/controllers/IndexController.php b/library/digital_resources/LaSourisQuiRaconte/controllers/IndexController.php index ce5c802f15b8de102cfd8f5aa11030bad1ace0ad..4527967e23fdc0648598b57b5b6821f60ae6ecb6 100644 --- a/library/digital_resources/LaSourisQuiRaconte/controllers/IndexController.php +++ b/library/digital_resources/LaSourisQuiRaconte/controllers/IndexController.php @@ -21,7 +21,4 @@ class LaSourisQuiRaconte_Plugin_IndexController extends Class_DigitalResource_Controller { - public function getExternalUri($album, $module_menu) { - return $module_menu->getDynamiqueUrl() . '&redirect_id=' . $album->getIdOrigine(); - } } \ No newline at end of file diff --git a/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php b/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php index 2aa00636121d8a9692fb84101d6e400476c3771d..6cebb813c9b96fd0be1e729d079892c59b79bdca 100644 --- a/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php +++ b/library/digital_resources/LaSourisQuiRaconte/tests/LaSourisQuiRaconteTest.php @@ -108,9 +108,7 @@ class LaSourisQuiRaconteSSoTest extends AbstractControllerTestCase { . '?' . http_build_query(['redirect' => Class_Url::absolute('/modules/la-souris-qui-raconte/album_id/2')]); - $this->assertXPathContentContains('//script', - $url, - $this->_response->getBody()); + $this->assertRedirectTo($url); } diff --git a/library/digital_resources/Lekiosk/Config.php b/library/digital_resources/Lekiosk/Config.php index 95fc72311cbbb16e719da952062586f72d3181ee..1e29ca98f7e6871291daad88d2ecfe7eb7b3fe9f 100644 --- a/library/digital_resources/Lekiosk/Config.php +++ b/library/digital_resources/Lekiosk/Config.php @@ -27,7 +27,7 @@ class Lekiosk_Config extends Class_DigitalResource_Config { 'PermissionLabel' => $this->_('Bibliothèque numérique: accéder à LeKiosk'), 'MenuLabel' => $this->_('Lien vers LeKiosk'), 'Introduction' => $this->_('Retrouvez vos magazines préférés en numérique parmi plus de 1600 titres. Un univers riche et varié, des dernières parutions aux anciens numéros.'), - 'NotAllowedMessage' => $this->_('Votre abonnement ne permet pas l\`accès à cette ressource.'), + 'NotAllowedMessage' => $this->_('Votre abonnement ne permet pas l\'accès à cette ressource.'), 'HelpLink' => 'http://wiki.bokeh-library-portal.org/index.php/Le_Kiosk', 'Url' => 'http://www.lekiosk.com/', diff --git a/library/digital_resources/Lekiosk/tests/LeKioskTest.php b/library/digital_resources/Lekiosk/tests/LeKioskTest.php index a1396ff7f14bfbf5e8c02458634ffae7eaac7195..bd14d04f72c2ff164c4c7743519a1196c3924239 100644 --- a/library/digital_resources/Lekiosk/tests/LeKioskTest.php +++ b/library/digital_resources/Lekiosk/tests/LeKioskTest.php @@ -198,7 +198,7 @@ class LeKioskModulesControllerTest extends AbstractControllerTestCase { public function setUp() { parent::setUp(); - $this->_expected_login_redirect = '/auth/login?redirect='.urlencode(Class_Url::absolute('/modules/lekiosk')); + $this->_expected_login_redirect = Class_Url::absolute('/auth/login?redirect='.urlencode(Class_Url::absolute('/modules/lekiosk'))); LekioskAdminVars::activate(); } @@ -207,7 +207,7 @@ class LeKioskModulesControllerTest extends AbstractControllerTestCase { public function withoutLoginShouldRedirectToLogin() { ZendAfi_Auth::getInstance()->clearIdentity(); $this->dispatch('/opac/modules/lekiosk', true); - $this->assertContains($this->_expected_login_redirect, $this->_response->getBody()); + $this->assertredirectTo($this->_expected_login_redirect); } @@ -217,8 +217,7 @@ class LeKioskModulesControllerTest extends AbstractControllerTestCase { ZendAfi_Auth::getInstance()->clearIdentity(); $this->dispatch('/opac/modules/lekiosk', true); - - $this->assertContains($this->_expected_login_redirect, $this->_response->getBody()); + $this->assertredirectTo($this->_expected_login_redirect); } diff --git a/library/digital_resources/Musicme/Config.php b/library/digital_resources/Musicme/Config.php index 5c4ca076c5b7fe04606afcf99870bb56d72d1bc7..e608a63d0b2821b148b2e7393112c2708f840fb1 100644 --- a/library/digital_resources/Musicme/Config.php +++ b/library/digital_resources/Musicme/Config.php @@ -64,6 +64,16 @@ class Musicme_Config extends Class_DigitalResource_Config { } + public function getAlbumSsoUrl($user, $album) { + $sso_url = explode('?', $this->getSsoUrl($user)); + + return str_replace('http://www.musicme.com', + $sso_url[0], + str_replace('"','%22',$album->getExternalUri())) + . '?' . (isset($sso_url[1]) ? $sso_url[1] : ''); + } + + public function isEnabled() { return '' != $this->getAdminVar('BIB_ID'); } diff --git a/library/digital_resources/Musicme/controllers/IndexController.php b/library/digital_resources/Musicme/controllers/IndexController.php index d97e079214695af9d7fe8091082a9a95246832ca..2f47604c4dcce6ff9a7fdc9559132f43896e4599 100644 --- a/library/digital_resources/Musicme/controllers/IndexController.php +++ b/library/digital_resources/Musicme/controllers/IndexController.php @@ -20,13 +20,4 @@ */ -class Musicme_Plugin_IndexController extends Class_DigitalResource_Controller { - public function getExternalUri($album, $module_menu) { - $sso_url = explode('?', $module_menu->getDynamiqueUrl()); - - return str_replace('http://www.musicme.com', - $sso_url[0], - str_replace('"','%22',$album->getExternalUri())) - . '?' . (isset($sso_url[1]) ? $sso_url[1] : ''); - } -} \ No newline at end of file +class Musicme_Plugin_IndexController extends Class_DigitalResource_Controller {} \ No newline at end of file diff --git a/library/digital_resources/Musicme/tests/MusicmeTest.php b/library/digital_resources/Musicme/tests/MusicmeTest.php index 4d08407bf837973d9cd3ddd0ca8c7014b4595275..e1ef355e6846b5247aa0f84f416125e43204613f 100644 --- a/library/digital_resources/Musicme/tests/MusicmeTest.php +++ b/library/digital_resources/Musicme/tests/MusicmeTest.php @@ -209,7 +209,8 @@ class ModulesControllerMusicmeTest extends AbstractControllerTestCase { $this->fixtures->deactivate(); ZendAfi_Auth::getInstance()->clearIdentity(); $this->dispatch('/opac/modules/musicme', true); - $this->assertXpath('//script[contains(text(), "location.href=")][contains(text(), "auth/login?redirect=http")]'); + $redirect = rawurlencode(Class_Url::absolute('/modules/musicme')); + $this->assertRedirectTo(Class_Url::absolute('/auth/login?redirect=' . $redirect)); } @@ -220,7 +221,6 @@ class ModulesControllerMusicmeTest extends AbstractControllerTestCase { $this->dispatch('/opac/modules/musicme', true); $this->assertXpathContentContains('//script', 'document.location.href="http://linkmusicme.com?', $this->_response->getBody()); } - } @@ -260,7 +260,8 @@ class CasServerControllerMusicmeValidateActionTest extends AbstractControllerTes public function musicmeUrlShouldContainsTicket0a1b2c3d() { $expected_ticket = 'ST-'.md5(Zend_Session::getId().'1'); $musicme = Class_DigitalResource::getInstance()->getModuleMenuFor('Musicme'); - $this->assertEquals('http://linkmusicme.com?iduser=tom&ticket='.$expected_ticket.'&MediaLibraryID=QUEST&service=http%3A%2F%2Flinkmusicme.com%3Fiduser%3Dtom%26ticket%3D'.$expected_ticket.'%26MediaLibraryID%3DQUEST', Class_DigitalResource::getInstance()->getModuleMenuFor('Musicme')->getDynamiqueUrl()); + $this->assertEquals('http://linkmusicme.com?iduser=tom&ticket='.$expected_ticket.'&MediaLibraryID=QUEST&service=http%3A%2F%2Flinkmusicme.com%3Fiduser%3Dtom%26ticket%3D'.$expected_ticket.'%26MediaLibraryID%3DQUEST', + Musicme_Config::getInstance()->getSsoUrl(Class_Users::getIdentity())); } diff --git a/library/digital_resources/Omeka/controllers/IndexController.php b/library/digital_resources/Omeka/controllers/IndexController.php new file mode 100644 index 0000000000000000000000000000000000000000..6534055cd988484986077de87caeb40bf78de8a8 --- /dev/null +++ b/library/digital_resources/Omeka/controllers/IndexController.php @@ -0,0 +1,23 @@ +<?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 Omeka_Plugin_IndexController extends Class_DigitalResource_Controller {} \ No newline at end of file diff --git a/library/digital_resources/Skilleos/Config.php b/library/digital_resources/Skilleos/Config.php index 5ab8bd63cff11cfbab2c03130b4aaf5d0c0c0510..0d5a34b0d6f5592b8c3c13e9a6171682233e09d1 100644 --- a/library/digital_resources/Skilleos/Config.php +++ b/library/digital_resources/Skilleos/Config.php @@ -50,13 +50,28 @@ class Skilleos_Config extends Class_DigitalResource_Config { public function getSsoUrl($user) { - $module = $this->getDigitalResource() - ->getModuleNameFor($this->getName()); + return $this->_getSsoUrl($user, null); + } + + + public function getAlbumSsoUrl($user, $album) { + if(!$album) + return; - return static::SKILLEOS_URL . '?casid='.$this->getAdminVar('BIB_ID'). '&ticket='.(new Class_CasTicket())->getTicketForCurrentUser(); + return $this->_getSsoUrl($user, $album); } + protected function _getSsoUrl($user, $album) { + $id = $album + ? $album->getIdOrigine() + : ''; + + return static::SKILLEOS_URL . $id + . '?casid='.$this->getAdminVar('BIB_ID') + . '&ticket='.(new Class_CasTicket())->getTicketForUser($user); + } + public function isEnabled() { return '' != $this->getAdminVar('BIB_ID'); diff --git a/library/digital_resources/Skilleos/ModuleMenu.php b/library/digital_resources/Skilleos/ModuleMenu.php index a640caa41719777fb50e90ade7f72ace3ac1878e..1a255ccd94acf743ecd8bcc56d5f25c33b1d91b3 100644 --- a/library/digital_resources/Skilleos/ModuleMenu.php +++ b/library/digital_resources/Skilleos/ModuleMenu.php @@ -21,5 +21,3 @@ class Skilleos_ModuleMenu extends Class_DigitalResource_ModuleMenu {} - -?> \ No newline at end of file diff --git a/library/digital_resources/Skilleos/controllers/IndexController.php b/library/digital_resources/Skilleos/controllers/IndexController.php index 0d1d4a798c9e8ed926a9e176cd58f2a5429f40d2..a43b5c087b2d981c9e456b4ca719d6d460c18e58 100644 --- a/library/digital_resources/Skilleos/controllers/IndexController.php +++ b/library/digital_resources/Skilleos/controllers/IndexController.php @@ -20,11 +20,4 @@ */ -class Skilleos_Plugin_IndexController extends Class_DigitalResource_Controller { - public function getExternalUri($album,$module) { - return str_replace('?casid', - $album->getIdOrigine() . '?casid', - $module->getDynamiqueUrl()); - } -} -?> \ No newline at end of file +class Skilleos_Plugin_IndexController extends Class_DigitalResource_Controller {} \ No newline at end of file diff --git a/library/digital_resources/Skilleos/tests/SkilleosTest.php b/library/digital_resources/Skilleos/tests/SkilleosTest.php index aab43ac3bf470f6197159e7b0244a44a8c807a7b..634a8a92d754f789188439b45c75374bce2a33cc 100644 --- a/library/digital_resources/Skilleos/tests/SkilleosTest.php +++ b/library/digital_resources/Skilleos/tests/SkilleosTest.php @@ -140,7 +140,7 @@ class SkilleosModulesControllerTest extends AbstractControllerTestCase { public function setUp() { parent::setUp(); - $this->_expected_login_redirect = '/auth/login?redirect='.urlencode(Class_Url::absolute() . 'modules/skilleos'); + $this->_expected_login_redirect = Class_Url::absolute('/auth/login?redirect='.urlencode(Class_Url::absolute() . 'modules/skilleos')); SkilleosAdminVars::activate(); } @@ -149,7 +149,7 @@ class SkilleosModulesControllerTest extends AbstractControllerTestCase { public function withoutLoginShouldRedirectToLogin() { ZendAfi_Auth::getInstance()->clearIdentity(); $this->dispatch('/opac/modules/skilleos', true); - $this->assertContains($this->_expected_login_redirect, $this->_response->getBody()); + $this->assertredirectTo($this->_expected_login_redirect); } @@ -159,8 +159,7 @@ class SkilleosModulesControllerTest extends AbstractControllerTestCase { ZendAfi_Auth::getInstance()->clearIdentity(); $this->dispatch('/opac/modules/skilleos', true); - - $this->assertContains($this->_expected_login_redirect, $this->_response->getBody()); + $this->assertredirectTo($this->_expected_login_redirect); } @@ -320,11 +319,10 @@ class SkilleosServiceHarvestTest extends SkilleosServiceTestCase { /** @test */ public function withAlbumIdShouldRedirectToSkilleos() { - $this->dispatch('/opac/modules/skilleos/album_id/2'); + $this->dispatch('/opac/modules/skilleos/album_id/2',true); $ticket = (new Class_CasTicket())->getTicketForCurrentUser(); $this->assertXPathContentContains('//script','/sigb/sso/602?casid=QUEST&ticket='.$ticket, $this->_response->getBody()); } - } diff --git a/library/digital_resources/Skilleos/views/scripts/index/index.phtml b/library/digital_resources/Skilleos/views/scripts/index/index.phtml deleted file mode 100644 index 84b24a2342e14a518bec06a2c64f3d28354143b6..0000000000000000000000000000000000000000 --- a/library/digital_resources/Skilleos/views/scripts/index/index.phtml +++ /dev/null @@ -1,3 +0,0 @@ -<?php -echo $this->tag('p', - $this->_('Nombre d\'albums présents : %s',$this->records_count)); ?> diff --git a/library/startup.php b/library/startup.php index 63caff77bd0f4ea679df05a692d84f4c23f9395b..4e93e6d7035c1b157dfc9fcee1c9be655666eb3f 100644 --- a/library/startup.php +++ b/library/startup.php @@ -82,12 +82,10 @@ class Bokeh_Engine { function setupConstants() { defineConstant('BOKEH_MAJOR_VERSION','7.12'); - defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.1'); + defineConstant('BOKEH_RELEASE_NUMBER', BOKEH_MAJOR_VERSION . '.6'); defineConstant('BOKEH_REMOTE_FILES', 'http://git.afi-sa.fr/afi/opacce/'); - defineConstant('BOKEH_VERSION', (substr(BOKEH_MAJOR_VERSION, -1) % 2) ? 'master' : 'stable'); - defineConstant('ROOT_PATH', realpath(dirname(__FILE__).'/..').'/'); defineConstant('ZEND_FRAMEWORK_PATH', ROOT_PATH . 'library/storm/zf/library/'); diff --git a/library/translation/en.mo b/library/translation/en.mo index e5977934f81a67350f084b5f892fa66cd4c5217a..3c5f333a55dc887fbfcfb1ffbb30baa743fae4d6 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 06513c766506879661d03896087682f7ac8f0b1b..9a81fd3edcf22aa5afb11e151940b9164dbd83af 100644 --- a/library/translation/en.po +++ b/library/translation/en.po @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: Bokeh master\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-30 10:18+0100\n" -"PO-Revision-Date: 2018-01-30 11:12+0000\n" +"POT-Creation-Date: 2018-03-12 15:30+0100\n" +"PO-Revision-Date: 2018-03-12 15:43+0000\n" "Last-Translator: Weblate Admin <admin@example.com>\n" "Language-Team: English <http://weblate.afi-sa.net/projects/bokeh/bokeh-" "master/en/>\n" @@ -37,6 +37,7 @@ msgstr " (%d late)" #: ../../application/modules/opac/controllers/RechercheController.php:138 #: ../../application/modules/opac/controllers/RechercheController.php:138 +#: ../../application/modules/opac/controllers/RechercheController.php:142 msgid " (recherche élargie triée par pertinence)" msgstr " (extended search sorted by relevance )" @@ -69,6 +70,9 @@ msgstr " Edit my profile" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:175 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208 +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 msgid " OU " msgstr " OR " @@ -98,6 +102,7 @@ msgstr " to newsletters: " #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid " avec l'adresse suivante: " msgstr " with this email: " @@ -256,33 +261,39 @@ msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "!!Error in model, undefined attribute:" #: ../../application/modules/admin/controllers/FeatureController.php:70 +#: ../../application/modules/admin/controllers/FeatureController.php:71 #, php-format msgid "\"%s\" est une nouveauté pour vous." msgstr "\"%s\" is a new feature for you." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:285 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:290 +#: ../../application/modules/admin/controllers/FileManagerController.php:228 #, php-format msgid "\"%s\" n'est pas redimensionnable." msgstr "\"%s\" is not resizable." #: ../../application/modules/admin/controllers/FeatureController.php:48 +#: ../../application/modules/admin/controllers/FeatureController.php:49 #, php-format msgid "\"%s\" n'est plus une nouveauté pour vous." msgstr "\"%s\" is no longer a new feature for you." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:346 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:355 +#: ../../application/modules/admin/controllers/FileManagerController.php:292 #, php-format msgid "\"%s\" renommé en \"%s\"." msgstr "\"%s\" renamed to \"%s\"." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:139 #, php-format msgid "\"%s\" supprimé." msgstr "\"%s\" deleted." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:140 +#: ../../application/modules/admin/controllers/FileManagerController.php:72 #, php-format msgid "\"%s\" vers \"%s\"" msgstr "\"%s\" to \"%s\"" @@ -299,6 +310,11 @@ msgstr "% done" msgid "%.2f %%" msgstr "%.2f %%" +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +msgid "%d %B %Y" +msgstr "%B %d %Y" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 msgid "%d %B %Y %H:%M:%S" @@ -927,11 +943,13 @@ msgstr "AFI-Multimedia is not enabled" #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419 +#: ../../library/Class/AdminVar.php:424 msgid "API" msgstr "API" #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418 +#: ../../library/Class/AdminVar.php:423 msgid "API utilisée pour les cartes statiques" msgstr "API used for static maps" @@ -989,6 +1007,7 @@ msgstr "Subscription valid" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 msgid "Abonné SIGB" msgstr "ILS borrower" @@ -1002,6 +1021,7 @@ msgstr "Patron not found" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 msgid "Abonné portail" msgstr "Portal subscriber" @@ -1094,6 +1114,7 @@ msgstr "Admin access." #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:135 msgid "Accès à Cosmogramme" msgstr "Open Cosmogramme" @@ -1162,6 +1183,7 @@ msgid "Accéder aux titres seulement" msgstr "Titles only" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65 #, php-format msgid "Accéder à \"%s\" dans un nouvel onglet." msgstr "Open \"%s\" in a new tab." @@ -1200,6 +1222,11 @@ msgstr "Access to edit my admin account" msgid "Accéder à la ressource" msgstr "Open this resource" +#: ../../library/ZendAfi/View/Helper/TagSlideshow.php:196 +#, php-format +msgid "Accéder à la ressource \"%s\" dans un nouvel onglet" +msgstr "Open \"%s\" in a new tab" + #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 msgid "Accéder à la ressource numérique" @@ -1231,7 +1258,7 @@ msgid "Actions" msgstr "Actions" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:240 +#: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242 msgid "" "Activation de la disponibilite dans le resultat de recherche au survol de la " "couverture du document, calculé en temps réel." @@ -1240,7 +1267,7 @@ msgstr "" "in real time by calling ILS webservice." #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:241 +#: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243 msgid "" "Activation de la disponibilite dans le resultat de recherche. Calculé grâce " "à la facette \"En rayon\"." @@ -1268,7 +1295,7 @@ msgid "Activation des fonctions avancées du téléphone" msgstr "Enable phone advanced functions" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255 msgid "Activation des formulaires" msgstr "Enable forms" @@ -1278,7 +1305,7 @@ msgid "Activation du PNB Dilicom" msgstr "Enable Dilicom digital loan" #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:382 -#: ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1300,6 +1327,10 @@ msgstr "Allow articles list redirect" msgid "Activer la tâche" msgstr "Enable this task" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274 +msgid "Activer le moissonnage" +msgstr "Enable harvesting" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293 @@ -1348,6 +1379,7 @@ msgstr "Enable or disable activity module" #: ../../library/ZendAfi/Form/Admin/Activity.php:40 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:119 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:110 msgid "Activité" msgstr "Activity" @@ -1383,6 +1415,8 @@ msgstr "Activities" #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 #: ../../library/Class/Systeme/Report.php:188 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51 msgid "Activé" msgstr "Activated" @@ -1409,6 +1443,7 @@ msgstr "Live" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 msgid "Administrateur bibliothèque" msgstr "Library administrator" @@ -1416,6 +1451,7 @@ msgstr "Library administrator" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:244 msgid "Administrateur portail" msgstr "Portal administrator" @@ -1432,12 +1468,15 @@ msgstr "Portal administrator" #: ../../library/Class/Feature/List.php:101 #: ../../library/Class/Feature/List.php:167 #: ../../library/Class/Feature/List.php:189 +#: ../../library/Class/Feature/List.php:168 +#: ../../library/Class/Feature/List.php:190 msgid "Administration" msgstr "Administration" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:118 msgid "Administration du portail" msgstr "Portal administration" @@ -1535,6 +1574,7 @@ msgstr "URL address" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:159 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:150 msgid "Adresse des données" msgstr "Data address" @@ -2351,6 +2391,7 @@ msgstr "Add a widget to this page" #: ../../application/modules/opac/controllers/AbonneController.php:1107 #: ../../application/modules/opac/controllers/AbonneController.php:1100 #: ../../application/modules/opac/controllers/AbonneController.php:1102 +#: ../../application/modules/opac/controllers/AbonneController.php:1117 msgid "Ajouter une carte" msgstr "Add a card" @@ -2463,6 +2504,7 @@ msgstr "Add to Favorites" #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49 #: ../../library/ZendAfi/Form/Album.php:49 #: ../../library/ZendAfi/Form/Album.php:50 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:46 msgid "Album" msgstr "Album" @@ -2594,6 +2636,7 @@ msgstr "Animate" #: ../../library/ZendAfi/View/Helper/BibView.php:204 #: ../../library/ZendAfi/View/Helper/BibView.php:207 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:117 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 msgid "Annexe" msgstr "Event" @@ -2622,6 +2665,7 @@ msgstr "Cancellation not permitted" #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:21 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:43 msgid "Annuler" msgstr "Cancel" @@ -2630,8 +2674,13 @@ msgstr "Cancel" msgid "Annuler cette réservation" msgstr "Cancel this hold" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:50 +msgid "Annuler la notification des nouveautés" +msgstr "Cancel novelties notification" + #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:32 msgid "Annuler mes modifications" msgstr "Cancel modifications" @@ -2691,6 +2740,7 @@ msgstr "Publication year - to" #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Année de publication" msgstr "Publication year" @@ -2741,6 +2791,7 @@ msgid "Appareils autorisés" msgstr "Authorized devices" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:155 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:161 #, php-format msgid "Appels webservices (%s)" msgstr "Webservices call (%s)" @@ -2781,6 +2832,7 @@ msgstr "Video archives" #: ../../application/modules/admin/views/scripts/feature/index.phtml:76 #: ../../application/modules/admin/views/scripts/feature/index.phtml:78 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:94 #, php-format msgid "Archivées : %d" msgstr "Archived : %d" @@ -2952,8 +3004,7 @@ msgstr "To doc type(s)" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57 -#: ../../library/Class/ModeleFusion.php:75 -#: ../../library/Class/Ouverture.php:50 +#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50 #: ../../library/ZendAfi/Form/Album.php:235 #: ../../library/ZendAfi/Form/Admin/News.php:243 #: ../../library/ZendAfi/Form/Admin/Library.php:263 @@ -2965,8 +3016,11 @@ msgstr "To doc type(s)" msgid "Aucun" msgstr "No" -#: ../../library/Class/NoticeHtml.php:69 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334 +msgid "Aucun album présent pour cette ressource" +msgstr "No album for this resource" + +#: ../../library/Class/NoticeHtml.php:69 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "No article found" @@ -3060,6 +3114,10 @@ msgstr "No file newer than last processed file (%s)" msgid "Aucun fichier présent dans %s" msgstr "No file in %s" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136 +msgid "Aucun groupe n'a de droits d'accès à la ressources" +msgstr "No group with access to this resource" + #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 msgid "" @@ -3076,6 +3134,10 @@ msgstr "No history" msgid "Aucun poste dans ce groupe" msgstr "No computer in this group" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:39 +msgid "Aucun prêt en cours" +msgstr "No loan in progress" + #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 msgid "Aucun prêt rendu de manière anticipée" @@ -3119,9 +3181,14 @@ msgstr "No results" #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:204 msgid "Aucun résumé" msgstr "No summary" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172 +msgid "Aucun utilisateur rattaché aux groupes" +msgstr "No user in this groups" + #: ../../library/Class/Ouverture.php:38 #: ../../library/ZendAfi/Form/Admin/User.php:263 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:51 @@ -3240,6 +3307,7 @@ msgstr "No renewal." #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:272 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:271 msgid "Aucune ressource correspondante" msgstr "No corresponding resource" @@ -3266,6 +3334,7 @@ msgstr "No suggestion to moderate" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:42 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:60 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:106 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:100 msgid "Aucune version dans l'historique" msgstr "No history" @@ -3404,6 +3473,7 @@ msgstr "No video found" #: ../../library/ZendAfi/View/Helper/Abonne/LoansHistory.php:65 #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:59 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:22 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Auteur" msgstr "Author" @@ -3431,6 +3501,7 @@ msgstr "Author : :" #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:477 +#: ../../application/modules/opac/controllers/RechercheController.php:480 #, php-format msgid "Auteur : %s" msgstr "Author : %s" @@ -3508,6 +3579,10 @@ msgstr "Authenticate to allow \"%s\" to access your account" msgid "Autorisation non spécifiée" msgstr "Unspecified authorization" +#: ../../library/Class/AdminVar.php:289 +msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" +msgstr "Enable OAuth API access via HTTP (unsecure - not recommended)" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:151 @@ -3761,9 +3836,14 @@ msgstr "Database" msgid "Base de données : " msgstr "Database : " +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284 +msgid "Batch" +msgstr "Batch" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 msgid "Batchs" msgstr "Batches" @@ -3985,6 +4065,7 @@ msgstr "Librarie(s)" #: ../../library/ZendAfi/Form/Configuration/Domain.php:90 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:120 msgid "Bibliothèques" msgstr "Libraries" @@ -4330,9 +4411,33 @@ msgstr "Adds an interface to manage duplicates of users" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:1 #: ../../library/Class/Users.php:1082 ../../library/Class/Users.php:1091 #: ../../library/Class/Users.php:1070 ../../library/Class/Users.php:1073 +#: ../../library/Class/Users.php:1077 msgid "Bonjour," msgstr "Hello," +#: ../../library/Class/User/BookmarkedSearch.php:113 +#, php-format +msgid "" +"Bonjour,\n" +"\n" +"Il y a %s nouveau(x) résultat(s) pour votre recherche \"%s\" :\n" +"\n" +"%s\n" +"\n" +"%s\n" +"\n" +"%s" +msgstr "" +"Hello,\n" +"\n" +"There is %s new result(s) for your search \"%s\" :\n" +"\n" +"%s\n" +"\n" +"%s\n" +"\n" +"%s" + #: ../../library/Class/Activity/UnregistrationMail.php:31 #: ../../library/Class/Activity/UnregistrationMail.php:31 #, php-format @@ -4355,9 +4460,9 @@ msgstr "" #: ../../library/Class/Users.php:1135 ../../library/Class/Users.php:1135 #: ../../library/Class/User/LostPass.php:104 -#: ../../library/Class/User/LostPass.php:137 -#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123 -#: ../../library/Class/Users.php:1126 +#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144 +#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126 +#: ../../library/Class/Users.php:1130 msgid "Bonne navigation sur le portail" msgstr "Good surf on Bokeh" @@ -4411,6 +4516,7 @@ msgstr "CSV with separtor : comma" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:146 msgid "Cache des images" msgstr "Image cache" @@ -4467,6 +4573,7 @@ msgstr "Vertical carousel" #: ../../library/ZendAfi/View/Helper/BibView.php:166 #: ../../application/modules/opac/controllers/AbonneController.php:1113 #: ../../application/modules/opac/controllers/AbonneController.php:1115 +#: ../../application/modules/opac/controllers/AbonneController.php:1130 msgid "Carte" msgstr "Map" @@ -4475,6 +4582,7 @@ msgstr "Map" #: ../../application/modules/opac/controllers/AbonneController.php:1149 #: ../../application/modules/opac/controllers/AbonneController.php:1142 #: ../../application/modules/opac/controllers/AbonneController.php:1144 +#: ../../application/modules/opac/controllers/AbonneController.php:1159 #, php-format msgid "Carte de \"%s\" ajoutée" msgstr "Card of \"%s\" added" @@ -4495,6 +4603,7 @@ msgstr "Zone map" #: ../../application/modules/opac/controllers/AbonneController.php:1096 #: ../../application/modules/opac/controllers/AbonneController.php:1089 #: ../../application/modules/opac/controllers/AbonneController.php:1091 +#: ../../application/modules/opac/controllers/AbonneController.php:1106 msgid "Carte introuvable" msgstr "Unknown card" @@ -4520,12 +4629,14 @@ msgstr "Catalog" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:167 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 msgid "Catalogues" msgstr "Catalogs" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 msgid "Catalogues OPDS" msgstr "index OPDS" @@ -4680,6 +4791,16 @@ msgstr "This niche is not in hours." msgid "Ce document est référencé dans les éléments suivants :" msgstr "This document is referenced in following items :" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:40 +msgid "Ce document n'est pas de type Dilicom" +msgstr "This record is not a Dilicom one" + +#: ../../application/modules/opac/controllers/ModulesController.php:86 +msgid "" +"Ce document ne possède pas de configuration permettant d'utiliser cette URL." +msgstr "" +"This record does not have a configuration providing a mean to use this URL." + #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:9 msgid "Ce domaine ne renvoie aucun résultat." msgstr "This domain has no result." @@ -4706,6 +4827,10 @@ msgstr "This menu does not contain any entry." msgid "Ce service n'est pas testable" msgstr "This service cannot be tested" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:41 +msgid "Ce traitement ne se lance qu'en mode cron." +msgstr "This task is executed in cron mode only." + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:257 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:266 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:313 @@ -4756,6 +4881,18 @@ msgstr "Interests" msgid "Centres d'intérêt" msgstr "Interests" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:105 +msgid "Cet album n'a pas de commande" +msgstr "This album does not have an order" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:125 +msgid "Cet album n'a pas de prêt en cours" +msgstr "This album does not have any outstanding loan" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:136 +msgid "Cet album n'a pas encore été emprunté" +msgstr "This album has not been loan yet" + #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:60 @@ -4764,7 +4901,7 @@ msgstr "This article is a draft" #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1072 ../../library/Class/Users.php:1051 -#: ../../library/Class/Users.php:1053 +#: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1057 msgid "Cet identifiant existe déjà ." msgstr "This identifier already exists." @@ -4773,6 +4910,7 @@ msgstr "This identifier already exists." #: ../../application/modules/opac/controllers/AuthController.php:501 #: ../../application/modules/opac/controllers/AuthController.php:535 #: ../../application/modules/opac/controllers/AuthController.php:542 +#: ../../application/modules/opac/controllers/AuthController.php:537 msgid "Cette fonctionnalité n'est pas activée." msgstr "This feature is not enabled." @@ -4814,9 +4952,26 @@ msgstr "This manual has no author" #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:352 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:351 msgid "Cette notice n'a pas d'auteur." msgstr "This manual has no author." +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:60 +msgid "Cette recherche ne vous appartient pas." +msgstr "This search is not yours." + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182 +msgid "Cette ressource ne prend pas en charge la connexion SSO" +msgstr "This ressource does not provide SSO" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119 +msgid "Cette ressource ne prend pas en charge la gestion des droits" +msgstr "This resource does not provide access rights" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262 +msgid "Cette ressource ne prend pas en charge le moissonnage" +msgstr "This resource does not provide harvesting" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 msgid "Cette réservation convient-elle ?" @@ -4923,6 +5078,7 @@ msgstr "Optionnal fields" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163 #: ../../library/ZendAfi/View/Helper/Admin/CustomFieldsValuesUrl.php:43 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:159 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:156 msgid "Champs personnalisés" msgstr "Custom fields" @@ -4999,6 +5155,7 @@ msgstr "Path to personalized skins, from %s" #: ../../application/modules/admin/views/scripts/feature/index.phtml:84 #: ../../library/ZendAfi/View/Helper/Redmine/Issues.php:33 #: ../../application/modules/admin/views/scripts/feature/index.phtml:86 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:102 msgid "Chercher" msgstr "Search" @@ -5050,6 +5207,7 @@ msgid "Choisissez les dossiers à afficher" msgstr "Select folders to display" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:83 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:87 msgid "Choisissez un fichier" msgstr "Choose a file" @@ -5110,6 +5268,7 @@ msgstr "Simple criterias" #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:17 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:84 msgid "Clef" msgstr "Key" @@ -5305,6 +5464,7 @@ msgstr "ZIP code" #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:71 +#: ../../application/modules/admin/views/scripts/index/index.phtml:65 msgid "Code source" msgstr "Source code" @@ -5363,6 +5523,7 @@ msgstr "Collections" #: ../../library/ZendAfi/Form/Album.php:312 #: ../../library/ZendAfi/Form/Album.php:313 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:82 msgid "Commandes" msgstr "Orders" @@ -5455,6 +5616,7 @@ msgstr "Complete: maximum subscribers reached" #: ../../application/modules/opac/controllers/AbonneController.php:1214 #: ../../application/modules/opac/controllers/AbonneController.php:1207 #: ../../application/modules/opac/controllers/AbonneController.php:1209 +#: ../../application/modules/opac/controllers/AbonneController.php:1224 msgid "Compléter votre adresse email" msgstr "Please fill in your email" @@ -5480,7 +5642,7 @@ msgid "Compresser l'image \"%s\" en gardant les mêmes dimensions." msgstr "Compress image \"%s\" and keep same geometry." #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412 -#: ../../library/Class/AdminVar.php:409 +#: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -5505,6 +5667,10 @@ msgstr "Support access account" msgid "Compte d'assistance: %s" msgstr "Hotline user: %s" +#: ../../library/Class/Feature/List.php:179 +msgid "Compte lecteur" +msgstr "Patron space" + #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 msgid "Compte-rendu" @@ -5570,6 +5736,7 @@ msgid "Configuration de la page: %s" msgstr "Page settings: %s" #: ../../application/modules/opac/controllers/RechercheController.php:153 +#: ../../application/modules/opac/controllers/RechercheController.php:157 msgid "Configuration de la recherche" msgstr "Search configuration" @@ -5668,6 +5835,7 @@ msgstr "\"%s\" activity subscription confirmation" #: ../../application/modules/opac/controllers/AuthController.php:465 #: ../../application/modules/opac/controllers/AuthController.php:499 #: ../../application/modules/opac/controllers/AuthController.php:506 +#: ../../application/modules/opac/controllers/AuthController.php:501 msgid "Confirmation d'inscription à la newsletter: " msgstr "Newsletter subscription validation: " @@ -5801,6 +5969,7 @@ msgstr "Constitution of the map" #: ../../application/modules/opac/views/scripts/rechercheoai/viewnotice.phtml:12 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Consultation" msgstr "Consultation" @@ -5810,6 +5979,7 @@ msgid "Consultation dans l'OPAC" msgstr "Display in the OPAC" #: ../../library/Class/Feature/List.php:174 +#: ../../library/Class/Feature/List.php:175 msgid "Consultation de l'historique des prêts depuis le compte lecteur Bokeh" msgstr "View loan history in patron account screen" @@ -5820,6 +5990,7 @@ msgstr "View loan history in patron account screen" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:407 #: ../../library/ZendAfi/View/Helper/Notice/ConsultationLink.php:29 #: ../../application/modules/opac/controllers/RechercheController.php:539 +#: ../../application/modules/opac/controllers/RechercheController.php:542 msgid "Consultation sur place" msgstr "On premises only" @@ -5886,7 +6057,7 @@ msgid "Contenu de l'avis modifié" msgstr "Review content modified" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -5897,7 +6068,7 @@ msgstr "" "NEXT_STATUS_ARTICLE" #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 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" @@ -5906,7 +6077,7 @@ msgstr "" "URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" @@ -5915,6 +6086,7 @@ msgstr "" "AUTHOR_ARTICLE, SAVED_BY_ARTICLE" #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:386 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -5923,6 +6095,7 @@ msgstr "" "value from \"mail_admin\" cosmogramme variable" #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:385 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -5993,6 +6166,7 @@ msgid "Coordonnées carte" msgstr "Map coordinates" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:183 +#: ../../application/modules/admin/controllers/FileManagerController.php:115 #, php-format msgid "Copie de \"%s\" dans \"%s\" effectué." msgstr "Copy of \"%s\" to \"%s\" done." @@ -6045,6 +6219,7 @@ msgstr "Copied to" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:114 #: ../../library/ZendAfi/Form/Album.php:157 #: ../../library/ZendAfi/Form/Album.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:105 msgid "Cote" msgstr "Call number" @@ -6084,6 +6259,7 @@ msgstr "Cote - until" #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:479 +#: ../../application/modules/opac/controllers/RechercheController.php:482 #, php-format msgid "Cote : %s" msgstr "Call number : %s" @@ -6202,6 +6378,7 @@ msgstr "Reviews written by %s" #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 #: ../../application/modules/admin/views/scripts/stat/rechercheinfructueuse.phtml:10 #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:10 msgid "Critères" msgstr "Criteria" @@ -6268,6 +6445,7 @@ msgstr "Create new directory" #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:264 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:263 msgid "Créer un album" msgstr "Create an album" @@ -6277,6 +6455,7 @@ msgid "Créer un lieu" msgstr "Create location" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:215 +#: ../../application/modules/admin/controllers/FileManagerController.php:152 #, php-format msgid "Créer un nouveau dossier dans \"%s\"" msgstr "Create a new directory in \"%s\"" @@ -6322,6 +6501,7 @@ msgstr "Create a newsletter" #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:21 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:23 msgid "Créé le" msgstr "Created the" @@ -6443,6 +6623,8 @@ msgstr "Loan date" #: ../../library/Class/SuggestionAchat.php:178 #: ../../library/ZendAfi/Form/Album.php:174 #: ../../library/ZendAfi/Form/Album.php:175 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:11 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:62 msgid "Date de création" msgstr "Creation date" @@ -6484,10 +6666,12 @@ msgstr "Subscription limit date: " #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:63 msgid "Date de mise à jour" msgstr "Update date" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:44 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:46 msgid "Date de modification :" msgstr "Modification date :" @@ -6505,9 +6689,14 @@ msgstr "Birthdate" #: ../../application/modules/admin/views/scripts/feature/index.phtml:13 #: ../../library/Class/CriteresRecherche.php:144 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Date de nouveauté" msgstr "date of new ithem" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:56 +msgid "Date de prêt" +msgstr "Loan date" + #: ../../library/Class/WebService/SIGB/Suggestion.php:69 #: ../../library/Class/WebService/SIGB/Suggestion.php:69 msgid "Date de publication" @@ -6524,13 +6713,17 @@ msgstr "Publication date" msgid "Date de retour" msgstr "Return date" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:57 +msgid "Date de retour prévue" +msgstr "Due date" + #: ../../library/Class/WebService/SIGB/Suggestion.php:71 #: ../../library/Class/WebService/SIGB/Suggestion.php:71 msgid "Date de suggestion" msgstr "Suggestion date" #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:374 -#: ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "Last patron import date" @@ -6567,6 +6760,7 @@ msgstr "Subscription limit date: %s" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:121 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:112 msgid "Date nouveaté" msgstr "new ithem's date" @@ -6607,6 +6801,7 @@ msgstr "Ticket created: %s" #: ../../application/modules/opac/controllers/AuthController.php:403 #: ../../application/modules/opac/controllers/AuthController.php:437 #: ../../application/modules/opac/controllers/AuthController.php:444 +#: ../../application/modules/opac/controllers/AuthController.php:439 msgid "Demande d'inscription à la lettre d'information: " msgstr "Subscription to the newsletter: " @@ -6615,6 +6810,7 @@ msgstr "Subscription to the newsletter: " #: ../../application/modules/opac/controllers/AuthController.php:497 #: ../../application/modules/opac/controllers/AuthController.php:531 #: ../../application/modules/opac/controllers/AuthController.php:538 +#: ../../application/modules/opac/controllers/AuthController.php:533 msgid "Demande de préinscription" msgstr "Preregistration request" @@ -6656,6 +6852,7 @@ msgstr "Booking request of a document from the network:" #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:469 +#: ../../application/modules/opac/controllers/RechercheController.php:472 msgid "Demande de réservation de document" msgstr "Booking request" @@ -6771,6 +6968,7 @@ msgstr "Last delivery" #: ../../application/modules/admin/views/scripts/batch/index.phtml:18 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290 msgid "Dernière exécution" msgstr "Last launch" @@ -6905,6 +7103,14 @@ msgstr "%s session details" msgid "Dewey / pcdm4" msgstr "Dewey / pcdm4" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179 +msgid "Diagnostic SSO" +msgstr "SSO diagnostic" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259 +msgid "Diagnostic moissonnage" +msgstr "Harvesting diagnostic" + #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:86 #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:41 @@ -6921,6 +7127,11 @@ msgstr "Slideshow" msgid "Diaporama avec navigation" msgstr "Slideshow with navigation" +#: ../../application/modules/opac/controllers/RechercheController.php:804 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:50 +msgid "Dilicom" +msgstr "Dilicom" + #: ../../library/Class/Ouverture.php:57 ../../library/Class/Ouverture.php:57 msgid "Dimanche" msgstr "Sunday" @@ -6931,11 +7142,13 @@ msgstr "Geometry" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:302 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 +#: ../../application/modules/admin/controllers/FileManagerController.php:244 #, php-format msgid "Dimensions \"%s\" invalident. Les dimensions valident sont : %s ." msgstr "Invalid geometry \"%s\". Valid geometries are : \"%s\"." #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:41 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:43 msgid "Dimensions :" msgstr "Geometries :" @@ -6964,6 +7177,7 @@ msgstr "Complete discography" #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:75 +#: ../../application/modules/admin/views/scripts/index/index.phtml:69 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "Chat live with the Bokeh community" @@ -6984,6 +7198,7 @@ msgstr "Availability" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 #: ../../library/Class/Exemplaire.php:269 #: ../../library/Class/Exemplaire.php:274 +#: ../../library/Class/Exemplaire.php:290 msgid "Disponible" msgstr "Available" @@ -7211,6 +7426,7 @@ msgstr "Write or edit review" #: ../../application/modules/admin/views/scripts/index/index.phtml:57 #: ../../application/modules/opac/controllers/RssController.php:219 #: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#: ../../application/modules/admin/views/scripts/index/index.phtml:40 msgid "Données en attente de modération" msgstr "Data waiting for moderation" @@ -7220,6 +7436,7 @@ msgstr "Directory" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:227 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:232 +#: ../../application/modules/admin/controllers/FileManagerController.php:169 #, php-format msgid "Dossier \"%s\" créé." msgstr "Directory \"%s\" created." @@ -7229,6 +7446,7 @@ msgid "Doublons" msgstr "Doubles" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:47 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:49 msgid "Droit d'écriture :" msgstr "Write right :" @@ -7439,10 +7657,12 @@ msgstr "Transition delay between images in seconds" #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:21 +#: ../../application/modules/admin/views/scripts/index/index.phtml:15 msgid "Démonstrations vidéos" msgstr "Video showcase" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:162 +#: ../../application/modules/admin/controllers/FileManagerController.php:94 #, php-format msgid "Déplacement de \"%s\" dans \"%s\" effectué." msgstr "Move \"%s\" to \"%s\" done." @@ -7484,6 +7704,7 @@ msgstr "Disable autocomplete" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297 msgid "Désactiver la tâche" msgstr "Disable this task" @@ -7494,11 +7715,13 @@ msgstr "Deactivate to put site offline" #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:47 msgid "Désactivé" msgstr "Disabled" #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:359 -#: ../../library/Class/AdminVar.php:356 +#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" @@ -7507,7 +7730,7 @@ msgstr "" "reviews" #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:360 -#: ../../library/Class/AdminVar.php:357 +#: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -7535,6 +7758,7 @@ msgstr "\"%s\" activity unsubscription" #: ../../application/modules/opac/controllers/AuthController.php:442 #: ../../application/modules/opac/controllers/AuthController.php:476 #: ../../application/modules/opac/controllers/AuthController.php:483 +#: ../../application/modules/opac/controllers/AuthController.php:478 msgid "Désinscription de la lettre d'information: " msgstr "Newsletter unsubscribe: " @@ -7702,6 +7926,7 @@ msgstr "Failed to publish status report to %s (%s)" #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:257 +#: ../../application/modules/admin/controllers/WidgetController.php:247 #, php-format msgid "Echec de la sauvegarde de la configuration de %s" msgstr "Save process of %s has fail" @@ -7746,6 +7971,7 @@ msgstr "Publisher:" #: ../../application/modules/opac/controllers/RechercheController.php:463 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159 #: ../../application/modules/opac/controllers/RechercheController.php:478 +#: ../../application/modules/opac/controllers/RechercheController.php:481 #, php-format msgid "Editeur : %s" msgstr "Publisher: %s" @@ -7857,10 +8083,12 @@ msgstr "Moderator email" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:469 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:118 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Emplacement" msgstr "Place" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:35 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:37 msgid "Emplacement :" msgstr "Location :" @@ -7981,6 +8209,7 @@ msgstr "in section" #: ../../library/Class/User/CardsNotification.php:59 #: ../../library/Class/User/CardsNotification.php:59 +#: ../../library/Class/Feature.php:171 msgid "En savoir plus" msgstr "Read more" @@ -7989,6 +8218,11 @@ msgstr "Read more" msgid "Encodage des caractères" msgstr "Character encoding" +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:35 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:36 +msgid "Enregister la recherche dans mes favoris" +msgstr "Bookmark this search" + #: ../../application/modules/opac/controllers/AbonneController.php:419 #: ../../application/modules/opac/controllers/AbonneController.php:427 #: ../../application/modules/opac/controllers/AbonneController.php:435 @@ -8005,14 +8239,24 @@ msgstr "Sign up" msgid "Enregistrer comme filtres par défaut" msgstr "Save as default filters" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +msgid "Enregistrer ma recherche" +msgstr "Bookmark this search" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +msgid "Enregistrer ma recherche dans mes favoris" +msgstr "Bookmark this search" + #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:45 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:46 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:41 msgid "Enregistrer mes modifications" msgstr "Save modifications" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:37 msgid "Enregistrer mes modifications et poursuivre mes modifications" msgstr "Save modifications and continur edition" @@ -8028,6 +8272,7 @@ msgstr "OAI repositiory, better compliance with Gallica - Europeana" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86 msgid "Entrepôts OAI" msgstr "OAI repositories" @@ -8181,6 +8426,7 @@ msgstr "Send by e-mail" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:137 msgid "Envoyer une demande d'achat de document" msgstr "Send a document purchase request" @@ -8229,6 +8475,7 @@ msgstr "Error : %s" #: ../../application/modules/admin/controllers/IndexController.php:146 #: ../../application/modules/admin/controllers/IndexController.php:156 #: ../../application/modules/admin/controllers/IndexController.php:156 +#: ../../application/modules/admin/controllers/IndexController.php:164 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" @@ -8325,6 +8572,7 @@ msgstr "Error while executing batch %s" #: ../../application/modules/opac/controllers/AuthController.php:475 #: ../../application/modules/opac/controllers/AuthController.php:509 #: ../../application/modules/opac/controllers/AuthController.php:516 +#: ../../application/modules/opac/controllers/AuthController.php:511 msgid "Erreur lors de l\\inscription à la newsletter." msgstr "Error during newsletter subscription." @@ -8356,42 +8604,49 @@ msgstr "Error : %s" #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:111 #: ../../application/modules/admin/controllers/IndexController.php:111 +#: ../../application/modules/admin/controllers/IndexController.php:119 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "Error(s) : %s, variable %s unsaved" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:393 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:402 +#: ../../application/modules/admin/controllers/FileManagerController.php:339 #, php-format msgid "Erreur. Impossible de faire cette opération vers \"%s\"." msgstr "Error. Cannot execute this operation to \"%s\"." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:347 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:356 +#: ../../application/modules/admin/controllers/FileManagerController.php:293 #, php-format msgid "Erreur. Impossible de renommer \"%s\"." msgstr "Error. Cannot rename \"%s\"." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:319 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:324 +#: ../../application/modules/admin/controllers/FileManagerController.php:261 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été compressée." msgstr "Error. Cannot compress image \"%s\"." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:312 +#: ../../application/modules/admin/controllers/FileManagerController.php:249 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été redimensionnée." msgstr "Error. Cannot resize image \"%s\"." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:388 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:397 +#: ../../application/modules/admin/controllers/FileManagerController.php:334 #, php-format msgid "Erreur. Le chemin \"%s\" n'existe pas." msgstr "Error. Path \"%s\" does not exist." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:405 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:414 +#: ../../application/modules/admin/controllers/FileManagerController.php:351 #, php-format msgid "" "Erreur. Vous ne pouvez pas téléverser un nouveau fichier car vous avez " @@ -8440,6 +8695,11 @@ msgstr "Used space:" msgid "Essayer" msgstr "Try" +#: ../../application/modules/admin/views/scripts/feature/index.phtml:80 +#, php-format +msgid "Essayer \"%s\" dans un nouvel onglet" +msgstr "Try \"%s\" in a new tab" + #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 msgid "Et " @@ -8460,6 +8720,7 @@ msgstr "Connection status" #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:42 +#: ../../application/modules/admin/views/scripts/index/index.phtml:36 msgid "Etat du site" msgstr "Website status" @@ -8470,7 +8731,7 @@ msgid "Etat du système" msgstr "Sytem status" #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241 msgid "" "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" " "entre les mots saisis" @@ -8488,6 +8749,7 @@ msgstr "Are you sur to cancel this reservation ?" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305 msgid "Etes-vous sur de vouloir désactiver cette tâche ?" msgstr "Are you sure to disable this task ?" @@ -8532,6 +8794,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette notice du panier ?" msgstr "Are you sure to remove this record from the selection ?" #: ../../library/Class/Feature/List.php:130 +#: ../../library/Class/Feature/List.php:131 msgid "Evolution de la boite sitothèque" msgstr "Websites widget changes" @@ -8568,6 +8831,7 @@ msgstr "Item not bookable in this library." #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:69 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:81 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:73 msgid "Exemplaires" msgstr "Copies" @@ -8589,6 +8853,7 @@ msgstr "Expired" #: ../../library/Class/Feature/List.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 msgid "Explorateur de fichiers" msgstr "File browser" @@ -8618,6 +8883,7 @@ msgid "Export de panier" msgstr "Selection export" #: ../../library/Class/Feature/List.php:119 +#: ../../library/Class/Feature/List.php:120 msgid "Export des agendas au format iCalendar" msgstr "Agenda export in iCalendar format" @@ -8664,12 +8930,14 @@ msgid "Exporter le tableau en CSV" msgstr "Export table in CSV" #: ../../library/Class/Feature/List.php:120 +#: ../../library/Class/Feature/List.php:121 msgid "" "Exportez vos agendas pour les intégrer dans un logiciel de calendrier ou un " "autre système d'information." msgstr "Export agendas to import them in your preferred calendar application." #: ../../library/Class/Feature/List.php:123 +#: ../../library/Class/Feature/List.php:124 msgid "Exports" msgstr "Exports" @@ -8712,6 +8980,7 @@ msgid "Expéditeur:" msgstr "Sender:" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:32 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:34 msgid "Extension :" msgstr "Extension :" @@ -8802,7 +9071,7 @@ msgid "Facilite l'indexation de votre site dans les moteurs de recherche" msgstr "Facilitate indexation of your site by search engines" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415 -#: ../../library/Class/AdminVar.php:412 +#: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -8826,6 +9095,10 @@ msgstr "Family" msgid "Famille du document" msgstr "Document type" +#: ../../application/modules/opac/controllers/AbonneController.php:1012 +msgid "Favoris sauvegardés" +msgstr "Bookmarks saved" + #: ../../library/ZendAfi/Form/Configuration/Items.php:56 #: ../../library/ZendAfi/Form/Configuration/Items.php:56 msgid "Favorites" @@ -8845,6 +9118,7 @@ msgstr "Bookmarks" #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:80 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:83 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:88 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Fermer" msgstr "Close" @@ -8894,6 +9168,8 @@ msgstr "File" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:275 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:269 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:280 +#: ../../application/modules/admin/controllers/FileManagerController.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:217 #, php-format msgid "Fichier \"%s\" téléversé." msgstr "File \"%s\" uploaded." @@ -9143,6 +9419,7 @@ msgid "Fond de carte OpenStreetMap" msgstr "OpenStreetMap map background" #: ../../library/Class/Feature/List.php:141 +#: ../../library/Class/Feature/List.php:142 msgid "Fond de carte personnalisable" msgstr "Custom map background" @@ -9159,7 +9436,7 @@ msgid "Fonds" msgstr "Fonds" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -9195,6 +9472,7 @@ msgstr "Branch form" #: ../../library/ZendAfi/Form/Login.php:49 #: ../../library/ZendAfi/Form/Login.php:49 +#: ../../library/ZendAfi/Form/Login.php:58 msgid "Formulaire d'authentification" msgstr "Authentication form" @@ -9272,6 +9550,7 @@ msgstr "Left" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:116 #: ../../library/Class/TableDescription/PNBItemsExport.php:40 #: ../../library/Class/TableDescription/PNBLoans.php:35 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 msgid "Genre" msgstr "Form" @@ -9298,6 +9577,10 @@ msgstr "Form" msgid "Genres" msgstr "Forms" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111 +msgid "Gestion des droits" +msgstr "Access rights management" + #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 msgid "Gestion des agendas externes" @@ -9358,6 +9641,7 @@ msgstr "GB" #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:69 +#: ../../application/modules/admin/views/scripts/index/index.phtml:63 msgid "Google group Bokeh" msgstr "Bokeh Google party" @@ -9379,6 +9663,10 @@ msgstr "Group \"%s\" saved" msgid "Groupe \"%s\" supprimé" msgstr "Group \"%s\" deleted" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210 +msgid "Groupe créé pour ce test" +msgstr "Generated group for test" + #: ../../library/Class/CustomField/ModelConfiguration/UserGroup.php:26 #: ../../library/Class/CustomFieldsCategory.php:73 #: ../../library/Class/CustomFieldsCategory.php:73 @@ -9388,6 +9676,7 @@ msgstr "User group" #: ../../library/Class/Newsletter.php:500 #: ../../library/Class/Newsletter.php:500 +#: ../../library/Class/Newsletter.php:452 #, php-format msgid "Groupe manuel pour la lettre \"%s\"" msgstr "Manual group for letter \"%s\"" @@ -9402,9 +9691,15 @@ msgstr "Group by library and shelf mark" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 #: ../../library/ZendAfi/Form/Admin/User.php:136 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 msgid "Groupes" msgstr "Groups" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221 +#, php-format +msgid "Groupes : %s" +msgstr "Groups : %s" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:116 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 @@ -9412,6 +9707,10 @@ msgstr "Groups" msgid "Groupes destinataires" msgstr "Recipients groups" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148 +msgid "Groupes qui ont accès à la ressource" +msgstr "Groups having access rights to this resource" + #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:40 msgid "Général" msgstr "General" @@ -9431,6 +9730,7 @@ msgstr "General" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 #: ../../application/modules/admin/controllers/SystemeController.php:140 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 msgid "Génération du site" msgstr "Site generation" @@ -9489,6 +9789,10 @@ msgstr "Process doubles" msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus" msgstr "Manage the files you need to enrich your content" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142 +msgid "Gérer les groupes" +msgstr "Manage groups" + #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:28 @@ -9521,6 +9825,7 @@ msgstr "Process doubles manually" #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 #: ../../application/modules/opac/controllers/AbonneController.php:1013 #: ../../application/modules/opac/controllers/AbonneController.php:1015 +#: ../../application/modules/opac/controllers/AbonneController.php:1016 msgid "Gérer mes favoris" msgstr "Manage my bookmarks" @@ -9635,12 +9940,17 @@ msgstr "History" msgid "Historique de prêts" msgstr "Loan history" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:88 +msgid "Historique des 5 derniers prêts" +msgstr "5 last loans history" + #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:130 #: ../../library/ZendAfi/View/Helper/TagEditArticle.php:74 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:43 msgid "Historique des modifications" msgstr "Versions history" @@ -9741,12 +10051,14 @@ msgstr "Browser icon" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:392 msgid "Id du connecteur Le Social" msgstr "Conector id Le Social" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:120 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:111 msgid "Id origine" msgstr "Origin id" @@ -9806,6 +10118,7 @@ msgstr "Origin id" #: ../../library/ZendAfi/Form/Admin/User.php:66 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:8 +#: ../../library/ZendAfi/Form/Login.php:137 msgid "Identifiant" msgstr "Login" @@ -9834,18 +10147,28 @@ msgid "Identifiant du portail chez 1D touch" msgstr "1D touch ID" #: ../../library/Class/AdminVar.php:233 ../../library/Class/AdminVar.php:234 -#: ../../library/Class/AdminVar.php:231 +#: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233 msgid "Identifiant du project Redmine" msgstr "Redmine ID" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:51 +msgid "Identifiant du prêt interne Bokeh" +msgstr "Bokeh internal loan ID" + #: ../../application/modules/opac/controllers/AbonneController.php:1133 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1125 #: ../../application/modules/opac/controllers/AbonneController.php:1127 +#: ../../application/modules/opac/controllers/AbonneController.php:1142 msgid "Identifiant et/ou mot de passe incorrect" msgstr "Wrong username and/or password" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:64 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:54 +msgid "Identifiant externe Dilicom" +msgstr "Dilicom external ID" + #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:62 @@ -9853,6 +10176,10 @@ msgstr "Wrong username and/or password" msgid "Identifiant inconnu." msgstr "Unknown ID." +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:60 +msgid "Identifiant interne Bokeh" +msgstr "Bokeh Internal ID" + #: ../../library/Class/IntProfilDonnees.php:170 #: ../../library/Class/IntProfilDonnees.php:170 msgid "Identifiant interne dans le sigb" @@ -9943,17 +10270,17 @@ msgid "Il faut compléter tous les champs." msgstr "Must complete all fields." #: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357 -#: ../../library/Class/Profil.php:1377 +#: ../../library/Class/Profil.php:1377 ../../library/Class/Profil.php:1378 msgid "Il manque la largeur de la division 1." msgstr "Width of division 1 is missing." #: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361 -#: ../../library/Class/Profil.php:1381 +#: ../../library/Class/Profil.php:1381 ../../library/Class/Profil.php:1382 msgid "Il manque la largeur de la division 2." msgstr "Width of division 2 is missing." #: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365 -#: ../../library/Class/Profil.php:1385 +#: ../../library/Class/Profil.php:1385 ../../library/Class/Profil.php:1386 msgid "Il manque la largeur de la division 3." msgstr "Width of division 3 is missing." @@ -9978,8 +10305,7 @@ msgstr "There is no double" msgid "Il n'y a plus de sous-niveau" msgstr "There are currently over sublevel" -#: ../../library/Class/NoticeOAI.php:230 -#: ../../library/Class/NoticeOAI.php:230 +#: ../../library/Class/NoticeOAI.php:230 ../../library/Class/NoticeOAI.php:230 msgid "Il n'y aucun mot assez significatif pour la recherche" msgstr "There are no significant enough word to search" @@ -10054,12 +10380,14 @@ msgstr "SoundCloud import" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:175 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 msgid "Import Thesaurus" msgstr "Import Thesaurus" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 msgid "Import avis opac2" msgstr "Import review opac2" @@ -10084,6 +10412,7 @@ msgstr "Import PNB offers" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 msgid "Import/Export EAD" msgstr "Import / Export EAD" @@ -10141,12 +10470,14 @@ msgid "Impossible d\\`écrire le fichier sur le disque" msgstr "Could not write the file to disk" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:184 +#: ../../application/modules/admin/controllers/FileManagerController.php:116 #, php-format msgid "Impossible de copier \"%s\" dans \"%s\"." msgstr "Cannot copy \"%s\" to \"%s\"." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:228 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:233 +#: ../../application/modules/admin/controllers/FileManagerController.php:170 #, php-format msgid "Impossible de créer le dossier \"%s\"." msgstr "Impossible to create directory \"%s\"." @@ -10158,6 +10489,7 @@ msgid "Impossible de créer le répertoire local %s" msgstr "Impossible to create local directory %s" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:163 +#: ../../application/modules/admin/controllers/FileManagerController.php:95 #, php-format msgid "Impossible de déplacer \"%s\" dans \"%s\"." msgstr "Cannot move \"%s\" in \"%s\"." @@ -10183,6 +10515,7 @@ msgid "Impossible de se connecter au serveur %s" msgstr "Impossible to connect to the server %s" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:207 +#: ../../application/modules/admin/controllers/FileManagerController.php:140 #, php-format msgid "Impossible de supprimer \"%s\"." msgstr "Cannot delete \"%s\"." @@ -10214,6 +10547,7 @@ msgstr "Impossible to download the file %s" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:262 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:267 +#: ../../application/modules/admin/controllers/FileManagerController.php:204 #, php-format msgid "Impossible de téléverser le fichier \"%s\"." msgstr "Cannot upload the file \"%s\"." @@ -10247,6 +10581,7 @@ msgstr "Print %s" #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 #: ../../library/ZendAfi/View/Helper/Avis.php:106 #: ../../library/ZendAfi/View/Helper/Admin/Versions.php:55 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:72 msgid "Inconnu" msgstr "Unknown" @@ -10260,6 +10595,10 @@ msgstr "Unknown" msgid "Inconnu ou Supprimé" msgstr "Unknown or deleted" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:52 +msgid "Indetifiant de l'utilisateur interne Bokeh" +msgstr "Bokeh internal user ID" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 msgid "Index des fonctions" @@ -10461,6 +10800,7 @@ msgstr "Document properties" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../application/modules/admin/controllers/SystemeController.php:269 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 msgid "Informations système" msgstr "System properties" @@ -10517,6 +10857,7 @@ msgstr "Subscription not allowed" #: ../../application/modules/opac/controllers/AuthController.php:386 #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:427 +#: ../../application/modules/opac/controllers/AuthController.php:422 msgid "Inscription à la lettre d'information: " msgstr "Subscription to the newsletter: " @@ -10525,6 +10866,7 @@ msgstr "Subscription to the newsletter: " #: ../../application/modules/opac/controllers/AuthController.php:468 #: ../../application/modules/opac/controllers/AuthController.php:502 #: ../../application/modules/opac/controllers/AuthController.php:509 +#: ../../application/modules/opac/controllers/AuthController.php:504 msgid "Inscription à la newsletter invalide." msgstr "Invalid subscription to the newsletter." @@ -10544,6 +10886,7 @@ msgid "Inscrit à la lettre" msgstr "Subscribed to letter" #: ../../library/Class/Feature/List.php:185 +#: ../../library/Class/Feature/List.php:186 msgid "Insérer un kiosque dans un article" msgstr "Insert a kiosk in an article" @@ -10631,6 +10974,7 @@ msgstr "Invisible" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 msgid "Invité" msgstr "Guest" @@ -10657,6 +11001,7 @@ msgstr "I use the following cards" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81 msgid "Jamendo" msgstr "Jamendo" @@ -10681,12 +11026,12 @@ msgid "Javascript" msgstr "Javascript" #: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:367 -#: ../../library/Class/AdminVar.php:364 +#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369 msgid "Javascript code for statistics" msgstr "Javascript code for statistics" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "I want to unsuscribe to this newsletter" @@ -10702,11 +11047,13 @@ msgstr "Missing authorization token" #: ../../application/modules/opac/controllers/AuthController.php:337 #: ../../application/modules/opac/controllers/AuthController.php:344 +#: ../../application/modules/opac/controllers/AuthController.php:339 msgid "Jeton de réinitialisation expiré" msgstr "Reset token expired" #: ../../application/modules/opac/controllers/AuthController.php:334 #: ../../application/modules/opac/controllers/AuthController.php:341 +#: ../../application/modules/opac/controllers/AuthController.php:336 msgid "Jeton de réinitialisation invalide" msgstr "Invalid reset token" @@ -10714,6 +11061,10 @@ msgstr "Invalid reset token" msgid "Jeudi" msgstr "Thursday" +#: ../../application/modules/admin/views/scripts/index/index.phtml:7 +msgid "Jeudi 15 mars" +msgstr "Thursday March 15th" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:8 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:9 @@ -10736,6 +11087,10 @@ msgstr "Thursday" msgid "Jour" msgstr "Day" +#: ../../application/modules/admin/views/scripts/index/index.phtml:5 +msgid "Journée communautaire Bokeh 2018" +msgstr "2018 Community Day of Bokeh project" + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:31 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 @@ -10928,23 +11283,31 @@ msgstr "Item with id_origine : %s and id_int_bib : %s not found." #: ../../application/modules/opac/controllers/RechercheController.php:640 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:655 +#: ../../application/modules/opac/controllers/RechercheController.php:544 +#: ../../application/modules/opac/controllers/RechercheController.php:658 msgid "L'exemplaire n'existe pas" msgstr "Item does not exists" +#: ../../application/modules/opac/controllers/ModulesController.php:79 +msgid "L'identifiant du document demandé n'existe pas" +msgstr "Unknown record id" + #: ../../library/Class/Users.php:1024 ../../library/Class/Users.php:1024 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1012 -#: ../../library/Class/Users.php:1014 +#: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1018 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "The username you chose already exists." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:318 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:323 +#: ../../application/modules/admin/controllers/FileManagerController.php:260 #, php-format msgid "L'image \"%s\" a été compressée." msgstr "Image \"%s\" has been compressed." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:306 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:311 +#: ../../application/modules/admin/controllers/FileManagerController.php:248 #, php-format msgid "L'image \"%s\" a été redimensionnée." msgstr "Image \"%s\" has been resized." @@ -11072,7 +11435,7 @@ msgstr "The library contains %s records." #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1033 #: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1021 -#: ../../library/Class/Users.php:1023 +#: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1027 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "The library is required for the role:%s" @@ -11119,6 +11482,11 @@ msgstr "Class \"%s\" was added" msgid "La catégorie \"%s\" a été sauvegardée" msgstr "Class \"%s\" has been saved" +#: ../../application/modules/admin/controllers/IndexController.php:86 +#, php-format +msgid "La clé \"%s\" n'existe pas." +msgstr "\"%s\" key does not exist." + #: ../../library/Class/Profil/SkinUpdateReader.php:102 #: ../../library/Class/Profil/SkinUpdateReader.php:102 #, php-format @@ -11140,6 +11508,7 @@ msgstr "Menu %s settings saved" #: ../../library/Class/Systeme/Widget/Widget.php:72 #: ../../library/Class/Systeme/Widget/Widget.php:72 +#: ../../library/Class/Systeme/Widget/Widget.php:74 #, php-format msgid "La configuration de la boite %s a été sauvegardée" msgstr "Widget %s settings saved" @@ -11152,18 +11521,19 @@ msgid "La configuration du menu %s a été sauvegardée" msgstr "Menu %s settings saved" #: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385 -#: ../../library/Class/Profil.php:1405 +#: ../../library/Class/Profil.php:1405 ../../library/Class/Profil.php:1406 msgid "La couleur des liens du bandeau doit être au format #001122" msgstr "Header link color should be formatted as #001122" #: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381 -#: ../../library/Class/Profil.php:1401 +#: ../../library/Class/Profil.php:1401 ../../library/Class/Profil.php:1402 msgid "La couleur du texte bandeau doit être au format #001122" msgstr "Header text color should be formatted as #001122" #: ../../application/modules/admin/controllers/IndexController.php:145 #: ../../application/modules/admin/controllers/IndexController.php:155 #: ../../application/modules/admin/controllers/IndexController.php:155 +#: ../../application/modules/admin/controllers/IndexController.php:163 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "The update request has been sent to the server" @@ -11174,7 +11544,7 @@ msgid "" msgstr "Permissions management will be available after this category creation" #: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346 -#: ../../library/Class/Profil.php:1366 +#: ../../library/Class/Profil.php:1366 ../../library/Class/Profil.php:1367 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels." msgstr "Site width should be between 800 and 2000 px." @@ -11226,6 +11596,21 @@ msgstr "The photo you have selected is too big %d KB" msgid "La pièce jointe est invalide." msgstr "Invalid attachment." +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:31 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:32 +#, php-format +msgid "La recherche \"%s\" a été enregistrée dans mes favoris" +msgstr "Search \"%s\" has been bookmarked" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:33 +#, php-format +msgid "La recherche \"%s\" a été supprimée de mes favoris" +msgstr "Search \"%s\" was deleted from your bookmarks" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:54 +msgid "La recherche demandée est introuvable." +msgstr "Requested search was not found." + #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 @@ -11274,7 +11659,7 @@ msgstr "" "The session \"%s\" has been saved, its linked article has been created." #: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353 -#: ../../library/Class/Profil.php:1373 +#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1374 msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "Sum of divisions widths should not exceed site width." @@ -11284,14 +11669,17 @@ msgstr "Sum of divisions widths should not exceed site width." #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:478 +#: ../../library/Class/CriteresRecherche.php:491 msgid "La sélection ne contient aucune notice" msgstr "The selection does not contain any record" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 msgid "La taille du fichier doit être inférieur à \"%max%\"" msgstr "File size must be lower than \"%max%\"" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:50 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:54 msgid "La taille du fichier doit être supérieur à \"%min%\"" msgstr "File size must be higher than \"%min%\"" @@ -11521,6 +11909,7 @@ msgstr "Latitude" #: ../../application/modules/admin/controllers/IndexController.php:123 #: ../../application/modules/admin/controllers/IndexController.php:133 #: ../../application/modules/admin/controllers/IndexController.php:133 +#: ../../application/modules/admin/controllers/IndexController.php:141 msgid "Le cache de Bokeh a été vidé" msgstr "Bokeh cache cleared" @@ -11567,13 +11956,13 @@ msgstr "The \"day\" field must be completed with a date" #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1020 #: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1010 +#: ../../library/Class/Users.php:1010 ../../library/Class/Users.php:1014 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "The field 'id' should be less than 50 characters" #: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1028 #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1016 -#: ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1022 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "The password must be under 255 caracters" @@ -11619,6 +12008,14 @@ msgstr "The mail %s was successfully unsuscribed from the newletter %s" msgid "Le document %s a été ajouté au panier %s" msgstr "Record %s has been added to the selection %s" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:35 +msgid "Le document n'a pas d'album" +msgstr "This record has no album" + +#: ../../library/ZendAfi/View/Helper/Album/OldLoans.php:30 +msgid "Le document n'a pas encore été emprunté" +msgstr "This record has not been loan yet" + #: ../../application/modules/admin/controllers/CatalogueController.php:53 #: ../../application/modules/admin/controllers/CatalogueController.php:53 msgid "" @@ -11627,6 +12024,7 @@ msgid "" msgstr "Domain cannot be bookmarked by users without indexing criteria" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:194 +#: ../../application/modules/admin/controllers/FileManagerController.php:126 #, php-format msgid "" "Le dossier \"%s\" ne peut pas être supprimé car il contient des éléments " @@ -11669,6 +12067,7 @@ msgid "Le fichier n'est pas de type %s" msgstr "The file is not of type %s" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:52 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:56 msgid "Le fichier n'est pas lisible" msgstr "File is not readable" @@ -11706,11 +12105,13 @@ msgid "Le flux doit être au format iCalendar" msgstr "Feed must be in iCalendar format" #: ../../library/Class/Feature/List.php:142 +#: ../../library/Class/Feature/List.php:143 msgid "Le fond de carte de la boite bibliothèques est personnalisable." msgstr "Library widget map background is customizable." #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:46 msgid "Le formulaire a été modifié. Etes vous sûr de vouloir partir ?" msgstr "" "Form has been edited. Do you really want to leave and lost modifications ?" @@ -11723,7 +12124,7 @@ msgid "" msgstr "The CMS displays albums as a paged list instead of a treeview" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252 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 " @@ -11742,7 +12143,7 @@ msgid "Le libellé doit être renseigné" msgstr "Title must be filled" #: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342 -#: ../../library/Class/Profil.php:1362 +#: ../../library/Class/Profil.php:1362 ../../library/Class/Profil.php:1363 msgid "Le libellé est obligatoire." msgstr "Label is mandatory." @@ -11769,6 +12170,18 @@ msgstr "The message has been sent" msgid "Le modèle \"%s\" a été sauvegardé" msgstr "The %s model was saved" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272 +msgid "Le moissonnage n'est pas programmé" +msgstr "Harvesting is not planned" + +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +msgid "" +"Le nom doit contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" +"File name can only contains letters, digits and chars in \"_\", \"-\", \".\"" +". Example: \"my_file.jpg\"" + #: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 msgid "" "Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " @@ -11777,6 +12190,14 @@ msgstr "" "Directory name can only contains letters, digits and chars \"_\", \"-\", \" " "\", \".\". Example: \"my_directory\"" +#: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 +msgid "" +"Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " +"caratères \"_\", \"-\", \".\". Exemple : \"mon_dossier\"" +msgstr "" +"Directory name can only contains letters, digits and chars \"_\", \"-\", \"." +"\". Example: \"my_directory\"" + #: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 msgid "" "Le nom peut contenir uniquement des lettres, des chiffres et les caratères " @@ -11785,6 +12206,14 @@ msgstr "" "File name can only contains letters, digits and chars \"_\", \"-\", \" \", " "\".\". Example: \"my_file.2\"" +#: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 +msgid "" +"Le nom peut contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" +"File name can only contains letters, digits and chars \"_\", \"-\", \".\". " +"Example: \"my_file.jpg\"" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:161 @@ -11808,7 +12237,7 @@ msgstr "The number of tags must be between %s ans %s" #: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1026 -#: ../../library/Class/Users.php:1028 +#: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1032 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." @@ -11968,6 +12397,7 @@ msgid "Les extensions possiblent sont : %s" msgstr "Allowed file extensions are: %s" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:59 #, php-format msgid "Les extensions possibles sont : %s" msgstr "Allowed file extensions are: %s" @@ -12045,6 +12475,17 @@ msgstr "Labels have been updated" msgid "Les mots de passe ne correspondent pas" msgstr "Passwords do not match" +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:85 +#, php-format +msgid "Les notifications de nouveautés pour la recherche \"%s\" sont activées." +msgstr "Novelties notification is enabled for \"%s\" search." + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:96 +#, php-format +msgid "" +"Les notifications de nouveautés pour la recherche \"%s\" sont désactivées." +msgstr "Novelties notification is disabled for \"%s\" search." + #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #, php-format @@ -12088,6 +12529,16 @@ msgstr "Appointments" msgid "Les sites les plus récents" msgstr "Most recent sites" +#: ../../library/Class/AdminVar.php:225 +msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris" +msgstr "Users can bookmark their searches" + +#: ../../library/Class/AdminVar.php:226 +msgid "" +"Les utilisateurs peuvent recevoir les nouveautés de leurs recherches " +"favorites par email" +msgstr "Users can receive email novelties notification" + #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:224 msgid "" @@ -12229,6 +12680,8 @@ msgstr "Label" #: ../../library/ZendAfi/Form/Admin/Section.php:30 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:82 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9 +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29 msgid "Libellé" msgstr "Label" @@ -12402,7 +12855,7 @@ msgid "Lien permanent" msgstr "Permalink" #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:277 +#: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "Click here to unsubscribe to this newsletter: : {{URL}}" @@ -12634,6 +13087,10 @@ msgstr "Link to websites list" msgid "Lien vers une sélection d'articles" msgstr "Link to selected articles" +#: ../../library/Class/Notice/MailRenderer.php:34 +msgid "Lien: " +msgstr "Link: " + #: ../../library/Class/Systeme/ModulesMenu.php:73 #: ../../library/Class/Systeme/ModulesMenu.php:73 msgid "Liens d'informations" @@ -12749,6 +13206,9 @@ msgstr "Location: {lieu_libelle}" #: ../../application/modules/opac/controllers/RechercheController.php:655 #: ../../application/modules/opac/controllers/RechercheController.php:662 #: ../../application/modules/opac/controllers/RechercheController.php:691 +#: ../../application/modules/opac/controllers/RechercheController.php:658 +#: ../../application/modules/opac/controllers/RechercheController.php:665 +#: ../../application/modules/opac/controllers/RechercheController.php:694 msgid "Lieu de mise à disposition demandé" msgstr "Instead of providing requested" @@ -12837,6 +13297,7 @@ msgid "Liste des albums" msgstr "Albums list" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:156 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:162 msgid "Liste des appels webservices" msgstr "Webservices calls" @@ -12889,7 +13350,7 @@ msgid "Liste des derniers fils RSS ajoutés" msgstr "List of last RSS feeds" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403 -#: ../../library/Class/AdminVar.php:400 +#: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "Geometries available for image resize on upload." @@ -12907,16 +13368,16 @@ msgid "" msgstr "List of image extensions that can be selected to enrich content." #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 -#: ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401 msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "Available file extensions on upload." #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "List of file extensions that can be resized." -#: ../../library/Class/AdminVar.php:406 +#: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." @@ -12928,7 +13389,7 @@ msgid "Liste des réservations du site \"%s\"" msgstr "Holds in \"%s\" location" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:242 +#: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -13042,9 +13503,15 @@ msgstr "Locations of the library: %s" #: ../../library/ZendAfi/Form/Login.php:118 #: ../../application/modules/admin/views/scripts/users/manage-double-user.phtml:10 #: ../../library/ZendAfi/Form/Login.php:118 +#: ../../library/ZendAfi/Form/Login.php:127 msgid "Login" msgstr "Login" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219 +#, php-format +msgid "Login : %s" +msgstr "Login : %s" + #: ../../library/Class/AdminVar.php:151 ../../library/Class/AdminVar.php:152 msgid "Login ARTE VOD" msgstr "ARTE VOD account" @@ -13077,6 +13544,7 @@ msgstr "Longitude" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:155 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 msgid "Longueur" msgstr "Length" @@ -13102,6 +13570,11 @@ msgstr "Auto update." msgid "MARC 21" msgstr "MARC 21" +#: ../../library/Class/CriteresRecherche.php:973 +#, php-format +msgid "Ma recherche \"%s\"" +msgstr "My search \"%s\"" + #: ../../library/Class/Users.php:261 ../../library/Class/Users.php:261 #: ../../library/Class/Users.php:262 ../../library/Class/Users.php:241 msgid "Madame" @@ -13227,6 +13700,14 @@ msgstr "Maximum amount of reservation for this document" msgid "Me connecter" msgstr "Sign in" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:46 +msgid "Me notifier des nouveautés" +msgstr "Notify novelties to me" + +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:37 +msgid "Me notifier des nouveautés par email" +msgstr "Send me novelties by email" + #: ../../library/ZendAfi/Form/Album/Ressource.php:43 #: ../../library/ZendAfi/Form/Album/Ressource.php:43 msgid "Media" @@ -13326,6 +13807,7 @@ msgstr "Wednesday" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48 #: ../../application/modules/opac/controllers/AbonneController.php:1182 #: ../../application/modules/opac/controllers/AbonneController.php:1184 +#: ../../application/modules/opac/controllers/AbonneController.php:1199 msgid "Mes activités suivies" msgstr "Done activities" @@ -13343,6 +13825,7 @@ msgstr "My favorite libraries" #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23 #: ../../application/modules/opac/controllers/AbonneController.php:1048 #: ../../application/modules/opac/controllers/AbonneController.php:1050 +#: ../../application/modules/opac/controllers/AbonneController.php:1065 msgid "Mes cartes" msgstr "My cards" @@ -13351,6 +13834,11 @@ msgstr "My cards" msgid "Mes derniers paniers" msgstr "My last selections" +#: ../../application/modules/opac/controllers/AbonneController.php:1021 +#: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 +msgid "Mes favoris" +msgstr "My bookmarks" + #: ../../application/modules/opac/controllers/AbonneController.php:1184 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1183 @@ -13358,12 +13846,13 @@ msgstr "My last selections" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1176 #: ../../application/modules/opac/controllers/AbonneController.php:1178 +#: ../../application/modules/opac/controllers/AbonneController.php:1193 msgid "Mes inscriptions en cours" msgstr "Subscribed sessions" #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1553 #: ../../library/Class/Users.php:1564 ../../library/Class/Users.php:1543 -#: ../../library/Class/Users.php:1546 +#: ../../library/Class/Users.php:1546 ../../library/Class/Users.php:1550 msgid "Mes paniers" msgstr "My selections" @@ -13374,7 +13863,7 @@ msgstr "My selections" #: ../../library/Class/Users.php:1586 ../../library/Class/Users.php:1586 #: ../../library/Class/Users.php:1597 ../../library/Class/Users.php:1576 -#: ../../library/Class/Users.php:1579 +#: ../../library/Class/Users.php:1579 ../../library/Class/Users.php:1583 msgid "Mes paniers rattachés à un domaine" msgstr "My selectons attached to a domain" @@ -13397,6 +13886,10 @@ msgstr "My digital loans" msgid "Mes recherches" msgstr "My research" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:81 +msgid "Mes recherches favorites" +msgstr "My bookmarked searches" + #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:33 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:27 #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:34 @@ -13482,6 +13975,7 @@ msgstr "Search button text" #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:481 +#: ../../application/modules/opac/controllers/RechercheController.php:484 msgid "Message du demandeur :" msgstr "Message from the applicant:" @@ -13552,6 +14046,8 @@ msgstr "Album highlight" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 #: ../../library/Class/Feature/List.php:68 #: ../../library/Class/Feature/List.php:145 +#: ../../library/Class/Feature/List.php:146 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:96 msgid "Mise en page" msgstr "Layout" @@ -13585,6 +14081,8 @@ msgstr "Update database" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../application/modules/admin/controllers/IndexController.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 +#: ../../application/modules/admin/controllers/IndexController.php:152 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 msgid "Mise à jour de la charte graphique" msgstr "Update skin" @@ -13669,6 +14167,7 @@ msgstr "Update database" #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 #: ../../library/Class/Migration/ScriptPatchs.php:74 #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 +#: ../../library/Class/Migration/ScriptPatchs.php:80 msgid "Mise à niveau de la base effectuée avec succès" msgstr "Successful update database" @@ -13741,6 +14240,7 @@ msgstr "User selection mode" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:178 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 msgid "Modification Thesaurus" msgstr "Edit thesaurus" @@ -13814,6 +14314,13 @@ msgstr "Edit report %s" msgid "Modifier" msgstr "Edit" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230 +#, php-format +msgid "Modifier \"%s\"" +msgstr "Edit: %s" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #, php-format @@ -13961,6 +14468,7 @@ msgstr "Edit this task" #: ../../application/modules/admin/controllers/IndexController.php:85 #: ../../application/modules/admin/controllers/IndexController.php:94 #: ../../application/modules/admin/controllers/IndexController.php:94 +#: ../../application/modules/admin/controllers/IndexController.php:102 #, php-format msgid "Modifier la variable: %s" msgstr "Edit the variable: %s" @@ -14240,6 +14748,7 @@ msgstr "Changed" #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:27 msgid "Modifié le" msgstr "Edited the" @@ -14286,6 +14795,7 @@ msgstr "Default template: record" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../application/modules/admin/controllers/PrintController.php:31 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:98 msgid "Modèles d'impressions" msgstr "Printing templates" @@ -14302,7 +14812,7 @@ msgid "Modération des alertes" msgstr "Moderation alerts" #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:358 -#: ../../library/Class/AdminVar.php:355 +#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" @@ -14311,7 +14821,7 @@ msgstr "" ">Enabled:display upon approval" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:357 -#: ../../library/Class/AdminVar.php:354 +#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -14348,6 +14858,7 @@ msgid "Modération des tags sur les notices" msgstr "Records tags moderation" #: ../../library/Class/Feature/List.php:163 +#: ../../library/Class/Feature/List.php:164 msgid "Modération des vidéos" msgstr "Video handling" @@ -14383,12 +14894,17 @@ msgstr "Harvesting Jamendo" msgid "Moissonnage Orphea" msgstr "Harvesting Orphea" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:70 +msgid "Moissonnage activé" +msgstr "Harvesting enabled" + #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 msgid "Moissonnage automatique" msgstr "Auto harvest" #: ../../library/Class/Feature/List.php:153 +#: ../../library/Class/Feature/List.php:154 msgid "Moissonnage des notices de musicMe" msgstr "MusicMe records harvesting" @@ -14398,6 +14914,10 @@ msgstr "MusicMe records harvesting" msgid "Moissonnage des évènements de l'agenda \"%s\"" msgstr "Harvesting for calendar events \"%s\"" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:66 +msgid "Moissonnage désactivé" +msgstr "Harvesting disabled" + #: ../../application/modules/admin/views/scripts/harvest/orphea-browse.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 @@ -14485,9 +15005,15 @@ msgstr "Parts" #: ../../library/ZendAfi/Form/Register.php:42 #: ../../library/ZendAfi/Form/Admin/User.php:73 #: ../../library/ZendAfi/Form/Admin/Library.php:240 +#: ../../library/ZendAfi/Form/Login.php:138 msgid "Mot de passe" msgstr "Password" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220 +#, php-format +msgid "Mot de passe : %s" +msgstr "Password: %s" + #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:180 #: ../../library/Class/AdminVar.php:177 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" @@ -14543,6 +15069,7 @@ msgstr "Keywords" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 msgid "Multimedia" msgstr "Multimedia" @@ -14596,8 +15123,7 @@ msgstr "Library" msgid "N'envoie pas de données" msgstr "Does not send data" -#: ../../library/Class/FRBR/Link.php:160 -#: ../../library/Class/FRBR/Link.php:162 +#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162 #: ../../library/Class/FRBR/Link.php:162 msgid "N'est pas une url valide" msgstr "Is not a valid url" @@ -14697,6 +15223,7 @@ msgstr "Close without renaming" #: ../../library/Class/User/CardsNotification.php:58 #: ../../library/Class/User/CardsNotification.php:58 +#: ../../library/Class/Feature.php:177 msgid "Ne plus m'avertir" msgstr "No longer warn me" @@ -14752,6 +15279,7 @@ msgstr "Required access level" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:160 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:151 msgid "Niveau de catalogage" msgstr "Cataloguing level" @@ -14763,6 +15291,7 @@ msgstr "Patch level : " #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:149 msgid "Niveau hiérarchique" msgstr "Hierachical level" @@ -14919,9 +15448,15 @@ msgstr "Last name" #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:31 #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:33 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:29 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:31 msgid "Nom :" msgstr "Name:" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212 +#, php-format +msgid "Nom : %s" +msgstr "Name: %s" + #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 msgid "Nom commence par" @@ -14929,11 +15464,12 @@ msgstr "Name starts with" #: ../../application/modules/admin/controllers/IndexController.php:175 #: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:194 msgid "Nom d'utilisateur ou mot de passe invalide" msgstr "Invalid username or password" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "Portal main domain name, ie: myopac.mycity.org" @@ -14958,10 +15494,16 @@ msgstr "Library's name" msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "Bibliosurf library name (lowercase)" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123 +#, php-format +msgid "Nom de la permission à donner : \"%s\"" +msgstr "Permission name to give: \"%s\"" + #: ../../application/modules/admin/views/scripts/index/index.phtml:26 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#: ../../application/modules/admin/views/scripts/index/index.phtml:37 msgid "Nom du domaine" msgstr "Domain name" @@ -14982,7 +15524,7 @@ msgid "Nom du responsable" msgstr "Accountant name" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:243 +#: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245 msgid "Nom du site" msgstr "Website name" @@ -15005,6 +15547,7 @@ msgstr "Website name" #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:473 +#: ../../application/modules/opac/controllers/RechercheController.php:476 #, php-format msgid "Nom et prénom : %s" msgstr "Name:%s" @@ -15019,6 +15562,11 @@ msgstr "# per page:" msgid "Nombre d'albums" msgstr "Albums count" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:332 +#, php-format +msgid "Nombre d'albums présents : %d" +msgstr "Albums count: %d" + #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 msgid "Nombre d'articles" @@ -15139,17 +15687,17 @@ msgid "Nombre d\\'événements mis à jour : %s\n" msgstr "Nombre d'évènements mis à jour : %s\n" #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "Max number of chars allows in reviews." #: ../../library/Class/AdminVar.php:350 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:348 +#: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "Max number of chars to display in reviews box." #: ../../library/Class/AdminVar.php:349 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:347 +#: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "Minimum caracters to type in reviews." @@ -15210,7 +15758,7 @@ msgid "Nombre de formulaires : %s" msgstr "%s forms" #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:361 -#: ../../library/Class/AdminVar.php:358 +#: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "# of days of validity of new registrations on the site" @@ -15221,6 +15769,10 @@ msgstr "# of days of validity of new registrations on the site" msgid "Nombre de jours restant sur la licence" msgstr "# of days left on the licence" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150 +msgid "Nombre de membres" +msgstr "Members count" + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 msgid "Nombre de notices hors cache" @@ -15339,7 +15891,7 @@ msgid "Nombre de vignettes reconnues" msgstr "Known thumbnails count" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:251 +#: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253 msgid "Nombre maximum d'articles en sélection multiple" msgstr "Maximum number of articles for multiple selection" @@ -15399,6 +15951,8 @@ msgstr "Number of libraries per page" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:56 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12 msgid "Non" msgstr "No" @@ -15422,9 +15976,15 @@ msgstr "Not requested" #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:275 +#: ../../library/Class/Exemplaire.php:291 msgid "Non disponible" msgstr "Unavailable" +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:11 +msgid "Non je ne veux pas" +msgstr "No, thanks" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare.php:61 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/MultiCheckbox.php:37 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/DomainSelect.php:52 @@ -15481,6 +16041,7 @@ msgid "Notice \"%s\" retirée du panier" msgstr "Record \"%s\" removed from selection" #: ../../application/modules/opac/controllers/RechercheController.php:306 +#: ../../application/modules/opac/controllers/RechercheController.php:800 msgid "Notice Bokeh" msgstr "Bokeh record" @@ -15520,6 +16081,7 @@ msgstr "Record not found" #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:475 +#: ../../application/modules/opac/controllers/RechercheController.php:478 msgid "Notice réservée : " msgstr "Hold record : " @@ -15557,6 +16119,7 @@ msgstr "Record :" #: ../../library/Class/Codification.php:234 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 msgid "Notices liées" msgstr "Related records" @@ -15580,6 +16143,10 @@ msgstr "Records found" msgid "Notices à traiter: %s" msgstr "Records to hander: %s" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:30 +msgid "Notification des nouveautés dans les recherches favorites" +msgstr "Novelties in bookmarked searches notifications" + #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 msgid "" @@ -15661,6 +16228,11 @@ msgstr "New filed type " msgid "Nouveau type de relation" msgstr "New link type" +#: ../../library/Class/User/BookmarkedSearch.php:112 +#, php-format +msgid "Nouveau(x) résultat(s) pour votre recherche %s" +msgstr "New result(s) for your search %s" + #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 @@ -15670,6 +16242,8 @@ msgstr "New" #: ../../application/modules/admin/controllers/FeatureController.php:36 #: ../../application/modules/admin/controllers/FeatureController.php:58 +#: ../../application/modules/admin/controllers/FeatureController.php:37 +#: ../../application/modules/admin/controllers/FeatureController.php:59 msgid "Nouveauté inconnue" msgstr "Unknown feature" @@ -15684,6 +16258,7 @@ msgstr "What's new" #: ../../application/modules/admin/views/scripts/feature/index.phtml:68 #: ../../application/modules/admin/views/scripts/feature/index.phtml:70 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:86 #, php-format msgid "Nouveautés : %d" msgstr "New features: %d" @@ -15725,6 +16300,12 @@ msgstr "Novelty less than 3 months" msgid "Nouveautés de moins de: " msgstr "Novelty less than: " +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#, php-format +msgid "Nouveautés du %s" +msgstr "Novelties from %s" + #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 msgid "Nouveautés uniquement" @@ -15783,6 +16364,10 @@ msgstr "New version" msgid "Nouvelles fonctionnalités" msgstr "New features" +#: ../../library/Class/Feature.php:184 +msgid "Nouvelles fonctionnalités depuis votre dernière connexion : " +msgstr "New features since your last login: " + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 msgid "Nov" @@ -15824,6 +16409,7 @@ msgstr "Number" #: ../../library/ZendAfi/Form/SecurePassword.php:29 #: ../../library/ZendAfi/Form/SecurePassword.php:29 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:53 msgid "Numéro de carte" msgstr "Card number" @@ -15849,6 +16435,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:55 msgid "Numéro de commande" msgstr "Order #" @@ -16068,6 +16655,7 @@ msgstr "Order of divisions" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 +#: ../../library/Class/CriteresRecherche.php:138 msgid "Ordre du panier" msgstr "Selection sort order" @@ -16127,6 +16715,8 @@ msgstr "Or API key (instead of nickname / password)" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:55 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5 msgid "Oui" msgstr "Yes" @@ -16202,6 +16792,11 @@ msgstr "Regular Openings" msgid "Ouvrir dans un nouvel onglet" msgstr "Open the link in a new tab" +#: ../../application/modules/admin/views/scripts/profil/_page_row.phtml:34 +#, php-format +msgid "Ouvrir la page \"%s\" dans un nouvel onglet" +msgstr "Open page \"%s\" in a new tab" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 msgid "Ouvrir le lien dans un nouvel onglet" @@ -16234,7 +16829,7 @@ msgid "Où le trouver dans mes bibliothèques favorites" msgstr "Where to find it in my favorite libraries" #: ../../library/Class/AdminVar.php:367 ../../library/Class/AdminVar.php:368 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370 msgid "PIWIK authentication token for widgets" msgstr "PIWIK authentication token for widgets" @@ -16245,6 +16840,7 @@ msgstr "PIWIK authentication token for widgets" #: ../../application/modules/admin/controllers/AlbumController.php:75 #: ../../library/Class/Batch/Dilicom.php:30 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82 msgid "PNB Dilicom" msgstr "PNB Dilicom" @@ -16316,8 +16912,7 @@ msgstr "Next page of kiosk \"%s\"" msgid "Page: " msgstr "Page: " -#: ../../library/Class/NoticeHtml.php:82 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "Pagination" @@ -16509,6 +17104,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:26 +#: ../../application/modules/admin/views/scripts/index/index.phtml:20 msgid "Paramètres du site" msgstr "Site options" @@ -16516,6 +17112,10 @@ msgstr "Site options" msgid "Paramètres manquants dans la requête de suppression" msgstr "Missing parameters in deletion request" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105 +msgid "Paramétrage" +msgstr "Parameters" + #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147 @@ -16584,6 +17184,7 @@ msgstr "Participants" #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:66 +#: ../../application/modules/admin/views/scripts/index/index.phtml:60 msgid "Participez à la communauté" msgstr "Participate to the community" @@ -16595,6 +17196,7 @@ msgstr "Everywhere" #: ../../library/ZendAfi/Controller/Action.php:251 #: ../../library/ZendAfi/Controller/Action.php:261 #: ../../library/ZendAfi/Controller/Action.php:261 +#: ../../library/ZendAfi/Controller/Action.php:284 msgid "" "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. " "Merci de remplir manuellement" @@ -16643,6 +17245,10 @@ msgstr "No previous version" msgid "Pas de version suivante" msgstr "No next version" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:17 +msgid "Pas encore de nouveauté." +msgstr "No novelties yet." + #: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:212 msgid "Password du portail fourni par Kidilangues." @@ -16705,6 +17311,7 @@ msgid "Permalien vignette :" msgstr "Thumbnail permalink:" #: ../../library/Class/Feature/List.php:186 +#: ../../library/Class/Feature/List.php:187 msgid "Permet d'afficher un ou plusieurs kiosques de notices dans un article" msgstr "Add ability to insert one or many records kiosk in an article" @@ -16751,6 +17358,7 @@ msgstr "Contact" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Pertinence" msgstr "Relevance" @@ -16806,6 +17414,7 @@ msgstr "Icon" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 msgid "Pictogrammes des genres" msgstr "Genre icons" @@ -16827,6 +17436,7 @@ msgstr "Pivot down" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:110 msgid "Piwik" msgstr "Piwik" @@ -16935,6 +17545,7 @@ msgstr "Access plan" #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285 msgid "Planification" msgstr "Plannification" @@ -16956,6 +17567,7 @@ msgstr "Plan task \"%s\"" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310 msgid "Plannifier la tâche" msgstr "Plan task" @@ -17023,6 +17635,7 @@ msgstr "Point" #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460 +#: ../../library/Class/AdminVar.php:465 msgid "Portail" msgstr "Portal" @@ -17031,7 +17644,7 @@ msgstr "Portal" #: ../../library/Class/AdminVar.php:240 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187 -#: ../../library/Class/AdminVar.php:237 +#: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239 msgid "Position" msgstr "Location" @@ -17043,7 +17656,7 @@ msgid "Position de la pagination" msgstr "Pager position" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:239 -#: ../../library/Class/AdminVar.php:236 +#: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238 msgid "Position de la pagination en résultat de recherche" msgstr "Pager position on search results page" @@ -17055,6 +17668,7 @@ msgid "Position des filtres" msgstr "Filters position" #: ../../library/Class/Feature/List.php:131 +#: ../../library/Class/Feature/List.php:132 msgid "" "Possibilité d'éditer ou d'ajouter un site, dans une boite sithothèque, " "depuis l'interface publique." @@ -17079,10 +17693,19 @@ msgstr "Posted by" #: ../../library/Class/Users.php:1084 ../../library/Class/Users.php:1084 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1072 -#: ../../library/Class/Users.php:1075 +#: ../../library/Class/Users.php:1075 ../../library/Class/Users.php:1079 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 :" +#: ../../library/Class/User/BookmarkedSearch.php:161 +#, php-format +msgid "" +"Pour annuler les prochaines notifications de nouveautés pour la recherche " +"%s. Veuillez cliquer sur le lien: %s" +msgstr "" +"To disable next novelties notification for the search %s, please follow this " +"link: %s" + #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 msgid "" @@ -17118,6 +17741,11 @@ msgstr "To book or document (s), please complete the form below." msgid "Pour valider l'abonnement, merci de cliquer sur le lien suivant:" msgstr "To validate subscription, please click on the following link:" +#: ../../library/Class/User/BookmarkedSearch.php:154 +#, php-format +msgid "Pour voir toutes ces nouveautés sur le portail, suivez le lien: %s" +msgstr "To see all novelties in the portal, please follow this link: %s" + #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 msgid "" @@ -17125,6 +17753,11 @@ msgid "" "lien suivant:" msgstr "To unsubscribe from the newsletter, please click on the next link:" +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:38 +#, php-format +msgid "Pour: %s " +msgstr "For: %s " + #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 msgid "Pourcentages" @@ -17138,6 +17771,7 @@ msgstr "Why would you suggest this document?" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 msgid "Premier-Chapitre" msgstr "Premier-Chapitre" @@ -17197,6 +17831,7 @@ msgid "Prix" msgstr "Price" #: ../../application/modules/admin/controllers/FeatureController.php:43 +#: ../../application/modules/admin/controllers/FeatureController.php:44 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" est toujours une nouveauté " @@ -17204,6 +17839,7 @@ msgid "" msgstr "Save error. Feature \"%s\" is still marked as new" #: ../../application/modules/admin/controllers/FeatureController.php:65 +#: ../../application/modules/admin/controllers/FeatureController.php:66 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" n'est toujours pas une " @@ -17271,7 +17907,7 @@ msgid "Profil de données %s (%d) non présent ou mal configuré" msgstr "Data profile %s (%d) not set or misconfigured" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -17280,6 +17916,7 @@ msgstr "Unsubscribe page<br/>By default the homepage" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:97 msgid "Profils" msgstr "Profiles" @@ -17429,6 +18066,7 @@ msgstr "Records display properties" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:124 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:358 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:367 +#: ../../application/modules/admin/controllers/FileManagerController.php:304 #, php-format msgid "Propriétés de \"%s\"" msgstr "Properties of \"%s\"" @@ -17479,6 +18117,10 @@ msgstr "Powered by" msgid "Protocole HTTP obligatoire" msgstr "HTTPS is mandatory" +#: ../../application/modules/api/controllers/UserController.php:26 +msgid "Protocole HTTPS obligatoire" +msgstr "HTTPS is mandatory" + #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:160 @@ -17527,6 +18169,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:567 #: ../../application/modules/opac/controllers/AuthController.php:601 #: ../../application/modules/opac/controllers/AuthController.php:608 +#: ../../application/modules/opac/controllers/AuthController.php:603 msgid "Préinscription" msgstr "Preregistration" @@ -17535,6 +18178,7 @@ msgstr "Preregistration" #: ../../application/modules/opac/controllers/AuthController.php:541 #: ../../application/modules/opac/controllers/AuthController.php:575 #: ../../application/modules/opac/controllers/AuthController.php:582 +#: ../../application/modules/opac/controllers/AuthController.php:577 #, php-format msgid "Préinscription à %s" msgstr "Preregistration to %s" @@ -17630,6 +18274,14 @@ msgstr "Preview" msgid "Prévisualisation de la notice %s" msgstr "Preview of record %s" +#: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 +#: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 +#, php-format +msgid "" +"Prévisualisation du panier \"%s\" en résultat de recherche dans un nouvel " +"onglet" +msgstr "Preview of the selection %s in the search result in a new tab" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 @@ -17652,8 +18304,7 @@ msgstr "Preview of the selection %s in the search result" msgid "Prêt" msgstr "Loan" -#: ../../library/Class/User/Cards.php:67 -#: ../../library/Class/User/Cards.php:67 +#: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 msgid "Prêt introuvable" msgstr "Unknown loan" @@ -17684,6 +18335,7 @@ msgstr "Loans / Rights" #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:85 msgid "Prêts en cours" msgstr "Current loans" @@ -17912,6 +18564,7 @@ msgstr "Reports" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:160 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 msgid "Rapports statistiques" msgstr "Statistic reports" @@ -17979,12 +18632,14 @@ msgid "Recherche fédérée" msgstr "Federated search" #: ../../library/Class/Feature/List.php:152 +#: ../../library/Class/Feature/List.php:153 msgid "Recherche fédérée pour MusicMe" msgstr "Federated search on MusicMe" #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:224 +#: ../../application/modules/opac/controllers/RechercheController.php:222 msgid "Recherche guidée" msgstr "Guided search" @@ -18044,6 +18699,11 @@ msgstr "Search: " msgid "Rechercher aussi sur " msgstr "Search also on " +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:420 +#, php-format +msgid "Rechercher dans \"%s\"" +msgstr "Search in \"%s\"" + #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 msgid "Rechercher des stagiaires" @@ -18060,6 +18720,7 @@ msgid "Rechercher des utilisateurs " msgstr "Search users " #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:419 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:425 msgid "Rechercher le terme saisie" msgstr "Search provided term" @@ -18112,6 +18773,7 @@ msgstr "Search library" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../application/modules/admin/controllers/StatController.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:111 msgid "Recherches infructueuses" msgstr "Fruitless search" @@ -18126,6 +18788,7 @@ msgstr "Resize to \"%s\" pixels then upload" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:287 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:292 +#: ../../application/modules/admin/controllers/FileManagerController.php:230 #, php-format msgid "Redimensionner l'image \"%s\"" msgstr "Resize image \"%s\"" @@ -18268,6 +18931,7 @@ msgstr "Rename" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:92 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:327 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:332 +#: ../../application/modules/admin/controllers/FileManagerController.php:269 #, php-format msgid "Renommer \"%s\"" msgstr "Rename \"%s\"" @@ -18461,6 +19125,7 @@ msgstr "Remove criteria : \"%s\"" #: ../../library/ZendAfi/View/Helper/BibView.php:61 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:178 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:168 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Retour" msgstr "Return" @@ -18631,6 +19296,7 @@ msgstr "Password recovery" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 msgid "Rédacteur bibliothèque" msgstr "Library contributor" @@ -18638,6 +19304,7 @@ msgstr "Library contributor" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:243 msgid "Rédacteur portail" msgstr "Portal contributor" @@ -18673,6 +19340,7 @@ msgstr "Edit XML sitemap" #: ../../application/modules/opac/controllers/AuthController.php:326 #: ../../application/modules/opac/controllers/AuthController.php:333 +#: ../../application/modules/opac/controllers/AuthController.php:328 msgid "Réinitialisation du mot de passe" msgstr "Password reset" @@ -18742,6 +19410,7 @@ msgstr "Social networks and contacts" #: ../../application/modules/telephone/views/scripts/recherche/reservation.phtml:2 #: ../../application/modules/opac/controllers/RechercheController.php:563 #: ../../application/modules/opac/controllers/RechercheController.php:578 +#: ../../application/modules/opac/controllers/RechercheController.php:581 msgid "Réservation" msgstr "Hold" @@ -18793,8 +19462,7 @@ msgstr "Cannot hold, maximum of holders reached for this item." msgid "Réservation interdite pour l'abonné." msgstr "Holding forbidden for the patron." -#: ../../library/Class/User/Cards.php:77 -#: ../../library/Class/User/Cards.php:77 +#: ../../library/Class/User/Cards.php:77 ../../library/Class/User/Cards.php:77 msgid "Réservation introuvable" msgstr "Hold not found" @@ -18893,6 +19561,7 @@ msgstr "Result" #: ../../library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php:38 #: ../../application/modules/opac/controllers/RechercheController.php:202 #: ../../application/modules/opac/controllers/RechercheController.php:203 +#: ../../application/modules/opac/controllers/RechercheController.php:207 msgid "Résultat de la recherche" msgstr "Search result" @@ -19022,6 +19691,7 @@ msgstr "Subscribe to session : %s" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34 #: ../../application/modules/opac/controllers/AbonneController.php:1170 #: ../../application/modules/opac/controllers/AbonneController.php:1172 +#: ../../application/modules/opac/controllers/AbonneController.php:1187 msgid "S'inscrire à une activité" msgstr "Subscribe to activity" @@ -19034,6 +19704,7 @@ msgstr "ILS" #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:68 msgid "Salle de discussion #Bokeh" msgstr "#Bokeh discussion room" @@ -19143,12 +19814,14 @@ msgstr "Sector" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:115 #: ../../library/Class/TableDescription/PNBItemsExport.php:41 #: ../../library/Class/TableDescription/PNBLoans.php:36 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 msgid "Section" msgstr "Section" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 #, php-format msgid "Section: %s" msgstr "Sections: %s" @@ -19269,6 +19942,8 @@ msgstr "Service unavalaible" #: ../../application/modules/opac/controllers/NoticeajaxController.php:326 #: ../../application/modules/opac/controllers/NoticeajaxController.php:372 #: ../../library/ZendAfi/View/Helper/Trailer.php:32 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:325 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:371 msgid "Service non disponible" msgstr "Service unavailable" @@ -19319,7 +19994,7 @@ msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "Server Sets OAI \"La Cité de la Musique\" harvesting" #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:375 -#: ../../library/Class/AdminVar.php:372 +#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -19332,6 +20007,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:30 #: ../../library/Class/Users.php:1085 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1073 ../../library/Class/Users.php:1076 +#: ../../library/Class/Users.php:1080 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." @@ -19415,6 +20091,7 @@ msgstr "Site %s deleted" #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:68 +#: ../../application/modules/admin/views/scripts/index/index.phtml:62 msgid "Site communautaire" msgstr "Community website" @@ -19502,6 +20179,7 @@ msgstr "Website library" #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:63 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79 msgid "Sitothèque" msgstr "Website library" @@ -19592,6 +20270,7 @@ msgstr "Attendees" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:109 msgid "Statistiques" msgstr "Statistics" @@ -19633,6 +20312,7 @@ msgstr "Status" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:156 #: ../../library/ZendAfi/Form/Album.php:146 #: ../../library/ZendAfi/Form/Album.php:147 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 msgid "Statut" msgstr "Status" @@ -19774,6 +20454,7 @@ msgstr "Suggestions not compliant with this connector" #: ../../application/modules/opac/views/scripts/abonne/suggestion-achat-add.phtml:2 #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:136 msgid "Suggérer un achat" msgstr "Suggest a Purchase" @@ -19838,6 +20519,7 @@ msgstr "Topics" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:229 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:231 msgid "Super administrateur" msgstr "Super admin" @@ -19949,6 +20631,7 @@ msgstr "Remove" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:102 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:103 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:196 +#: ../../application/modules/admin/controllers/FileManagerController.php:128 #, php-format msgid "Supprimer \"%s\"" msgstr "Remove \"%s\"" @@ -20055,6 +20738,15 @@ msgstr "Detele application of \"%s\"" msgid "Supprimer la lettre d'information" msgstr "Delete newsletter" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:66 +#, php-format +msgid "Supprimer la recherche \"%s\"" +msgstr "Delete search \"%s\"" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:37 +msgid "Supprimer la recherche de mes favoris" +msgstr "Remove this search from my bookmarks" + #: ../../application/modules/admin/controllers/MultimediaController.php:61 msgid "Supprimer la réservation ?" msgstr "Delete this hold ?" @@ -20146,6 +20838,7 @@ msgstr "Synchronise CSS with GIT" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:134 msgid "Système" msgstr "System" @@ -20260,6 +20953,10 @@ msgstr "Serial" msgid "Tableau" msgstr "Grid" +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:74 +msgid "Tableau de bord" +msgstr "Dashboard" + #: ../../application/modules/admin/controllers/StatController.php:64 #: ../../application/modules/admin/controllers/StatController.php:62 #: ../../application/modules/admin/controllers/StatController.php:62 @@ -20341,11 +21038,12 @@ msgstr "Size" #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:38 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:40 msgid "Taille :" msgstr "Size : :" #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396 -#: ../../library/Class/AdminVar.php:393 +#: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398 msgid "Taille du dossier userfiles en méga octets." msgstr "Userfiles folder size (mb)." @@ -20408,6 +21106,7 @@ msgstr "Territory" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:119 msgid "Territoires" msgstr "Territories" @@ -20430,6 +21129,7 @@ msgstr "Web services test" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 msgid "Test des web-services" msgstr "Testing web services" @@ -20442,6 +21142,7 @@ msgstr "Test of domain: %s" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 msgid "Test envoi mails" msgstr "Test sending mail" @@ -20520,7 +21221,7 @@ msgid "Texte de confirmation" msgstr "Confirmation text" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280 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 " @@ -20530,7 +21231,7 @@ msgstr "" ">Default : Je ne veux plus recevoir cette lettre d'information" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 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 " @@ -20795,6 +21496,8 @@ msgstr "Random" #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:58 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:21 #: ../../library/ZendAfi/Form/Album.php:131 +#: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:61 msgid "Titre" msgstr "Title" @@ -20817,6 +21520,7 @@ msgstr "Title" #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:476 +#: ../../application/modules/opac/controllers/RechercheController.php:479 #, php-format msgid "Titre : %s" msgstr "Title : %s" @@ -20852,6 +21556,10 @@ msgstr "Box title" msgid "Titre de la boîte" msgstr "Box title" +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:32 +msgid "Titre de votre recherche" +msgstr "Search label" + #: ../../library/ZendAfi/Form/CreerPanier.php:30 #: ../../library/ZendAfi/Form/Panier.php:32 #: ../../library/ZendAfi/Form/CreerPanier.php:30 @@ -20959,6 +21667,7 @@ msgstr "Every Sunday" #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 #: ../../library/ZendAfi/Form/Configuration/Widget/PremierChapitre.php:37 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:30 msgid "Tous les documents" msgstr "All records" @@ -21095,6 +21804,7 @@ msgstr "Translate" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 msgid "Traductions" msgstr "Translations" @@ -21303,6 +22013,8 @@ msgstr "Forced doc type: %s" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:157 #: ../../library/ZendAfi/Form/Album.php:170 #: ../../library/ZendAfi/Form/Album.php:171 +#: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 msgid "Type de document" msgstr "Doc type" @@ -21430,6 +22142,7 @@ msgstr "Custom fields types" #: ../../library/ZendAfi/Form/Configuration/Profile.php:323 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:172 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:165 msgid "Types de documents" msgstr "Doc types" @@ -21510,6 +22223,7 @@ msgstr "Download the repository" #: ../../library/ZendAfi/View/Helper/MonocleReaderServerSide.php:112 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:93 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:85 #, php-format msgid "Télécharger" msgstr "Upload" @@ -21614,6 +22328,7 @@ msgstr "Upload file" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:239 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:244 +#: ../../application/modules/admin/controllers/FileManagerController.php:181 #, php-format msgid "Téléverser un fichier dans \"%s\"" msgstr "Upload file in \"%s\"" @@ -21653,6 +22368,16 @@ msgstr "A URL object" msgid "URL Objet B" msgstr "URL Object B" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234 +#, php-format +msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\"" +msgstr "SSO URL generated by /modules/%s for user \"%s\"" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243 +#, php-format +msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\"" +msgstr "SSO URL generated for user \"%s\" and album \"%s\"" + #: ../../library/ZendAfi/Form/BiographieNotice.php:28 #: ../../library/ZendAfi/Form/BiographieNotice.php:28 msgid "URL Wikipedia de l'auteur" @@ -21712,13 +22437,11 @@ msgstr "Profile URL" msgid "URL du site web" msgstr "Website URL" -#: ../../library/Class/FRBR/Link.php:159 -#: ../../library/Class/FRBR/Link.php:159 +#: ../../library/Class/FRBR/Link.php:159 ../../library/Class/FRBR/Link.php:159 msgid "URL objet A est requis" msgstr "A URL object is required" -#: ../../library/Class/FRBR/Link.php:161 -#: ../../library/Class/FRBR/Link.php:161 +#: ../../library/Class/FRBR/Link.php:161 ../../library/Class/FRBR/Link.php:161 msgid "URL objet B est requis" msgstr "URL object B is required" @@ -21732,6 +22455,10 @@ msgstr "Custom URL" msgid "URL principale" msgstr "Main URL" +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:56 +msgid "URL publique :" +msgstr "Public URL:" + #: ../../library/Class/IntProfilDonnees.php:49 #: ../../library/Class/IntProfilDonnees.php:49 msgid "UTF-8" @@ -21778,6 +22505,7 @@ msgstr "A mail has been sent." #: ../../application/modules/opac/controllers/AuthController.php:553 #: ../../application/modules/opac/controllers/AuthController.php:587 #: ../../application/modules/opac/controllers/AuthController.php:594 +#: ../../application/modules/opac/controllers/AuthController.php:589 #, php-format msgid "" "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ." @@ -21799,9 +22527,9 @@ msgid "Un libellé est requis" msgstr "A label is required" #: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1142 -#: ../../library/Class/User/LostPass.php:110 -#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130 -#: ../../library/Class/Users.php:1133 +#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151 +#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133 +#: ../../library/Class/Users.php:1137 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." @@ -21818,6 +22546,7 @@ msgid "Un modèle a déjà le même nom : %s" msgstr "A template with the same name already exists : %s" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 msgid "Un seul fichier doit être transféré." msgstr "Only one file should be transfered." @@ -21826,6 +22555,7 @@ msgstr "Only one file should be transfered." #: ../../application/modules/opac/controllers/AuthController.php:396 #: ../../application/modules/opac/controllers/AuthController.php:430 #: ../../application/modules/opac/controllers/AuthController.php:437 +#: ../../application/modules/opac/controllers/AuthController.php:432 msgid "" "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le " "compte qui utilise cet email." @@ -21842,6 +22572,7 @@ msgstr "A category is required" #: ../../application/modules/opac/controllers/AuthController.php:424 #: ../../application/modules/opac/controllers/AuthController.php:458 #: ../../application/modules/opac/controllers/AuthController.php:465 +#: ../../application/modules/opac/controllers/AuthController.php:460 msgid "" "Une demande de confirmation d'inscription vous a été envoyée à l'adresse " "mail renseignée." @@ -21849,6 +22580,7 @@ msgstr "A registration confirmation email has been sent to your email." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:276 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:281 +#: ../../application/modules/admin/controllers/FileManagerController.php:218 msgid "Une erreur c' produite. Le téléversage a échoué." msgstr "An error has occured. Upload has failed." @@ -21899,6 +22631,7 @@ msgstr "An error has occurred" #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:454 #: ../../application/modules/opac/controllers/AuthController.php:461 +#: ../../application/modules/opac/controllers/AuthController.php:456 msgid "" "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez " "réessayer. Si le problème persiste, veuillez contacter votre médiathèque." @@ -21909,6 +22642,7 @@ msgstr "Mail was not sent. Please try again." #: ../../application/modules/opac/controllers/AbonneController.php:1154 #: ../../application/modules/opac/controllers/AbonneController.php:1147 #: ../../application/modules/opac/controllers/AbonneController.php:1149 +#: ../../application/modules/opac/controllers/AbonneController.php:1164 #, php-format msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s" msgstr "An error occurred while adding card of %s : %s" @@ -21926,7 +22660,8 @@ msgstr "A PHP extension stopped the download" #: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369 #: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377 #: ../../library/Class/Profil.php:1389 ../../library/Class/Profil.php:1393 -#: ../../library/Class/Profil.php:1397 +#: ../../library/Class/Profil.php:1397 ../../library/Class/Profil.php:1390 +#: ../../library/Class/Profil.php:1394 ../../library/Class/Profil.php:1398 msgid "Une marge interne de division ne peut pas excéder 20 pixels." msgstr "Division margin cannot exceed 20 px." @@ -22003,18 +22738,27 @@ msgstr "Direct access URL" msgid "Url d'import d'un agenda TYPO3" msgstr "TYPO3 feed URL" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:65 +msgid "Url de la ressource externe Dilicom" +msgstr "Dilicom resource external URL" + #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Url de recherche" msgstr "search URL" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:387 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386 +#: ../../library/Class/AdminVar.php:391 msgid "Url du connecteur Le Social" msgstr "Le Social URL" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:58 +msgid "Url du fichier de DRM" +msgstr "DRM file URL" + #: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232 msgid "Url du proxy Redmine" msgstr "Redmine proxy URL" @@ -22024,7 +22768,7 @@ msgid "Url du serveur PNB Dilicom" msgstr "Dilicom server URL" #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:232 -#: ../../library/Class/AdminVar.php:229 +#: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231 msgid "Url du serveur redmine" msgstr "Redmine server URL" @@ -22073,8 +22817,13 @@ msgstr "Current user" msgid "Utilisateur courant : %s" msgstr "Current user : %s" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217 +msgid "Utilisateur créé pour ce test" +msgstr "Generated user for this test" + #: ../../application/modules/opac/controllers/AuthController.php:329 #: ../../application/modules/opac/controllers/AuthController.php:336 +#: ../../application/modules/opac/controllers/AuthController.php:331 msgid "Utilisateur inconnu" msgstr "Unknown user" @@ -22085,6 +22834,7 @@ msgstr "Unknown user" #: ../../application/modules/admin/controllers/IndexController.php:170 #: ../../application/modules/admin/controllers/UsersController.php:117 +#: ../../application/modules/admin/controllers/IndexController.php:178 msgid "Utilisateur invalide" msgstr "Invalid user" @@ -22103,6 +22853,7 @@ msgstr "Users without mail" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 #: ../../library/Class/Systeme/Report.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 msgid "Utilisateurs" msgstr "Users" @@ -22233,11 +22984,13 @@ msgstr "Custom fields saved" #: ../../library/ZendAfi/View/Helper/BoutonIco.php:71 #: ../../library/ZendAfi/View/Helper/Bouton.php:72 #: ../../library/ZendAfi/View/Helper/Panier/Edit.php:85 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:52 msgid "Valider" msgstr "Validate" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:31 msgid "Valider et continuer" msgstr "Submit and continue" @@ -22275,6 +23028,7 @@ msgstr "Variable" #: ../../application/modules/admin/controllers/IndexController.php:93 #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:110 #, php-format msgid "Variable %s sauvegardée" msgstr "Variable \"%s\" saved" @@ -22284,6 +23038,7 @@ msgstr "Variable \"%s\" saved" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/Class/Systeme/Report.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 msgid "Variables" msgstr "Variables" @@ -22319,6 +23074,7 @@ msgstr "Version: " #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:55 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:52 #, php-format msgid "Version de : \"%s\"" msgstr "Version of : \"%s\"" @@ -22349,6 +23105,8 @@ msgstr "Unknown version" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:93 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:69 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:66 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:78 msgid "Version introuvable" msgstr "Version not found" @@ -22357,6 +23115,7 @@ msgstr "Version not found" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:142 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:99 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:84 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 msgid "Version supprimée" msgstr "Version deleted" @@ -22377,6 +23136,16 @@ msgstr "Versions of : \"%s\"" msgid "Versions de l'article : \"%s\"" msgstr "Article version : \"%s\"" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267 +msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage" +msgstr "Please activate this resource to be able to manage its harvesting" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114 +msgid "" +"Veuillez activer la ressource pour pouvoir gérer les droits d'accès des " +"groupes" +msgstr "Please activate this resource to be able to manage its access rights" + #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 msgid "Veuillez choisir un panier" @@ -22387,9 +23156,16 @@ msgstr "Choose a selection" msgid "Veuillez choisir une notice" msgstr "Please select a record" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187 +msgid "" +"Veuillez configurer les droits de cette ressource pour obtenir une connexion " +"SSO" +msgstr "Please configure access rights to obtain an SSO URL" + #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 +#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:36 msgid "Veuillez patienter ..." msgstr "Please wait ..." @@ -22417,6 +23193,10 @@ msgstr "Please give a search term ( url : /search/term/somethings )" msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT" msgstr "Please enter the variable PIWIK_AUTH_TOKEN and JS_STAT" +#: ../../application/modules/admin/controllers/IndexController.php:81 +msgid "Veuillez renseigner le paramètre \"cle\"." +msgstr "Please fill the \"cle\" parameter." + #: ../../application/modules/admin/views/scripts/premier-chapitre/maj-ref.phtml:21 #: ../../application/modules/admin/controllers/PremierChapitreController.php:85 #: ../../application/modules/admin/controllers/PremierChapitreController.php:105 @@ -22587,6 +23367,11 @@ msgstr "City" msgid "Visionner le film dans son intégralité" msgstr "Watch the entire film" +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:11 +#, php-format +msgid "Visualisation de l'article \"%s\" dans un nouvel onglet" +msgstr "View article \"%s\" in a new tab" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 @@ -22595,6 +23380,11 @@ msgstr "Watch the entire film" msgid "Visualisation de l\\album" msgstr "VIew album in its renderer" +#: ../../application/modules/admin/views/scripts/catalogue/paniers.phtml:18 +#, php-format +msgid "Visualisation du panier \"%s\" dans un nouvel onglet" +msgstr "View selection \"%s\" in a new tab" + #: ../../library/ZendAfi/View/Helper/BoutonIco.php:60 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:79 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:73 @@ -22610,6 +23400,11 @@ msgstr "Preview" msgid "Visualiser la newsletter" msgstr "Preview newsletter" +#: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:42 +#, php-format +msgid "Visualiser le domaine \"%s\" dans un nouvel onglet" +msgstr "View domain \"%s\" in a new tab" + #: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:41 #, php-format msgid "Visualiser le domaine : %s" @@ -22626,6 +23421,11 @@ msgstr "Scrolling speed" msgid "Vodeclic" msgstr "Vodeclic" +#: ../../library/Class/User/BookmarkedSearch.php:134 +#, php-format +msgid "Voici les %s premiers" +msgstr "Here come the \"%s\" firsts" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:14 #: ../../library/ZendAfi/View/Helper/RenderSession.php:206 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:420 @@ -22640,6 +23440,7 @@ msgstr "See" #: ../../library/Class/TableDescription/PNBItems.php:39 #: ../../library/Class/TableDescription/PNBItems.php:39 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249 msgid "Voir l'album" msgstr "See album" @@ -22654,6 +23455,11 @@ msgstr "See album \"%s\" on Jamendo" msgid "Voir la notice" msgstr "Display record" +#: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:33 +#, php-format +msgid "Voir la notice \"%s\" dans un nouvel onglet" +msgstr "View record \"%s\" in a new tab" + #: ../../application/modules/admin/views/scripts/users/manage-double.phtml:41 msgid "Voir la requete" msgstr "Show request" @@ -22663,6 +23469,11 @@ msgstr "Show request" msgid "Voir la réponse." msgstr "See the answer." +#: ../../application/modules/admin/views/scripts/feature/index.phtml:64 +#, php-format +msgid "Voir la vidéo de la fonctionnalité : \"%s\"" +msgstr "See feature's video : \"%s\"" + #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:33 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:34 #, php-format @@ -22691,6 +23502,10 @@ msgstr "See selection records" msgid "Voir le plan" msgstr "See the map" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:31 +msgid "Voir le résultat de la recherche" +msgstr "See search result" + #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 msgid "Voir le résultat de recherche complet" @@ -22705,12 +23520,21 @@ msgstr "Display complete search result" msgid "Voir le site" msgstr "See the website" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323 +msgid "Voir les albums" +msgstr "See albums" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #, php-format msgid "Voir les avis du document \"%s\"" msgstr "View reviews of \"%s\" document" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:20 +#, php-format +msgid "Voir les dernières nouveautés de la recherche \"%s\"" +msgstr "Display last novelties for search \"%s\"" + #: ../../library/Class/WebService/ICalendar.php:175 #: ../../library/Class/WebService/ICalendar.php:175 msgid "Voir les détails" @@ -22933,6 +23757,7 @@ msgstr "Your review" #: ../../application/modules/opac/controllers/AbonneController.php:1077 #: ../../application/modules/opac/controllers/AbonneController.php:1070 #: ../../application/modules/opac/controllers/AbonneController.php:1072 +#: ../../application/modules/opac/controllers/AbonneController.php:1087 #, php-format msgid "Votre carte a été retirée à %s" msgstr "Your card has been removed from %s" @@ -22979,6 +23804,7 @@ msgstr "Your account will be updated in 15 minutes." #: ../../application/modules/opac/controllers/AuthController.php:338 #: ../../application/modules/opac/controllers/AuthController.php:372 #: ../../application/modules/opac/controllers/AuthController.php:379 +#: ../../application/modules/opac/controllers/AuthController.php:374 msgid "Votre demande d'inscription" msgstr "Your application" @@ -22994,9 +23820,9 @@ msgid "Votre fiche" msgstr "Your profile" #: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1133 -#: ../../library/Class/User/LostPass.php:102 -#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121 -#: ../../library/Class/Users.php:1124 +#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124 +#: ../../library/Class/Users.php:1128 #, php-format msgid "Votre identifiant : %s\n" msgstr "Your login : %s\n" @@ -23046,15 +23872,16 @@ msgid "Votre message : " msgstr "Your message : " #: ../../library/Class/Users.php:1134 ../../library/Class/Users.php:1134 -#: ../../library/Class/User/LostPass.php:103 -#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122 -#: ../../library/Class/Users.php:1125 +#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125 +#: ../../library/Class/Users.php:1129 #, php-format msgid "Votre mot de passe : %s\n" msgstr "Your password : %s\n" #: ../../application/modules/opac/controllers/AuthController.php:349 #: ../../application/modules/opac/controllers/AuthController.php:356 +#: ../../application/modules/opac/controllers/AuthController.php:351 msgid "Votre mot de passe a été réinitialisé, vous pouvez vous connecter." msgstr "Your password has been reset, you may now login." @@ -23101,12 +23928,14 @@ msgstr "Your hold on %s has been successfully deleted." #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:556 +#: ../../application/modules/opac/controllers/RechercheController.php:559 msgid "Votre réservation est enregistrée." msgstr "Hold saved." #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:604 +#: ../../application/modules/opac/controllers/RechercheController.php:607 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -23118,6 +23947,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:602 +#: ../../application/modules/opac/controllers/RechercheController.php:605 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -23228,6 +24058,7 @@ msgstr "You have %s subscribers with at least one double." #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid "Vous avez bien été abonné à la newsletter: " msgstr "You have been subscribed to newsletter: " @@ -23236,6 +24067,7 @@ msgstr "You have been subscribed to newsletter: " #: ../../application/modules/opac/controllers/AbonneController.php:1143 #: ../../application/modules/opac/controllers/AbonneController.php:1136 #: ../../application/modules/opac/controllers/AbonneController.php:1138 +#: ../../application/modules/opac/controllers/AbonneController.php:1153 #, php-format msgid "Vous avez déjà ajouté la carte de \"%s\"" msgstr "You already added the card of %s" @@ -23250,7 +24082,7 @@ msgstr "You already have a booking for this timeslot" #: ../../library/Class/Users.php:1083 ../../library/Class/Users.php:1083 #: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1071 -#: ../../library/Class/Users.php:1074 +#: ../../library/Class/Users.php:1074 ../../library/Class/Users.php:1078 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "You made an application for registration on the portal :" @@ -23260,9 +24092,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:" msgstr "You made an application for registration to the newsletter :" #: ../../library/Class/Users.php:1132 ../../library/Class/Users.php:1132 -#: ../../library/Class/User/LostPass.php:101 -#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120 -#: ../../library/Class/Users.php:1123 +#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123 +#: ../../library/Class/Users.php:1127 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "You have requested a password on the portal." @@ -23286,13 +24118,13 @@ msgstr "URL field must be under 250 caracters" #: ../../library/Class/Users.php:1017 ../../library/Class/Users.php:1017 #: ../../library/Class/Users.php:1026 ../../library/Class/Users.php:1005 -#: ../../library/Class/Users.php:1007 +#: ../../library/Class/Users.php:1007 ../../library/Class/Users.php:1011 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "You must complete the field 'id'" #: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1018 #: ../../library/Class/Users.php:1027 ../../library/Class/Users.php:1006 -#: ../../library/Class/Users.php:1008 +#: ../../library/Class/Users.php:1008 ../../library/Class/Users.php:1012 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "You must complete the field 'Password'" @@ -23366,7 +24198,7 @@ msgstr "Please enter a library ID" #: ../../library/Class/Users.php:1048 ../../library/Class/Users.php:1048 #: ../../library/Class/Users.php:1057 ../../library/Class/Users.php:1036 -#: ../../library/Class/Users.php:1038 +#: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1042 msgid "Vous devez fournir une adresse mail valide" msgstr "You must provide a valid email address" @@ -23402,7 +24234,7 @@ msgstr "You must enter a password" #: ../../library/Class/Users.php:1051 ../../library/Class/Users.php:1051 #: ../../library/Class/Users.php:1060 ../../library/Class/Users.php:1039 -#: ../../library/Class/Users.php:1041 +#: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1045 msgid "Vous devez saisir un numéro de téléphone" msgstr "You must enter a phone number" @@ -23451,6 +24283,11 @@ msgstr "" "You must be connected with a valid subscription to access the digital " "ressource." +#: ../../library/Class/DigitalResource/Controller.php:39 +#: ../../library/Class/DigitalResource/Controller.php:53 +msgid "Vous devez vous connecter pour accéder à cette page" +msgstr "You must be connected to access this page" + #: ../../library/Class/CommSigb.php:118 ../../library/Class/CommSigb.php:118 msgid "Vous devez vous connecter pour réserver un document." msgstr "You must login to make a request." @@ -23471,6 +24308,12 @@ msgstr "Please login to unsubscribe to the newsletter: " msgid "Vous devez vous rendre à l'adresse %s pour finaliser votre inscription." msgstr "You must browse link %s to confirm your registration." +#: ../../library/Class/DigitalResource/Controller.php:42 +msgid "" +"Vous devez être connecté avec un compte adminitrateur pour accéder à cette " +"page" +msgstr "You must be logged into an administrator account to access this page" + #: ../../library/Class/Systeme/PergameService.php:191 #: ../../library/Class/Systeme/PergameService.php:191 msgid "Vous devez être connecté en tant qu'abonné pour réserver un document" @@ -23599,6 +24442,10 @@ msgstr "You don't have any outstanding booking." msgid "Vous n'avez pas de charte graphique d'installée dans Bokeh" msgstr "You do not have skin installed in Bokeh" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:79 +msgid "Vous n'avez pas enregistré de recherche dans vos favoris" +msgstr "You do not have saved search in your bookmarks" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:35 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:50 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:90 @@ -23614,6 +24461,7 @@ msgstr "You do not have skin installed in Bokeh" #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:121 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:149 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:186 +#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176 #, php-format msgid "Vous n'avez pas la permission \"%s\"" msgstr "You don't have the %s permission" @@ -23636,17 +24484,18 @@ msgstr "You do not have sufficient rights to edit selection %s" #: ../../library/Class/Users.php:1044 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1032 -#: ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1034 ../../library/Class/Users.php:1038 msgid "Vous n'avez pas les droits suffisants pour diriger une activité" msgstr "You do not have sufficient rights to lead an activity" #: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1041 #: ../../library/Class/Users.php:1050 ../../library/Class/Users.php:1029 -#: ../../library/Class/Users.php:1031 +#: ../../library/Class/Users.php:1031 ../../library/Class/Users.php:1035 msgid "Vous n'avez pas les droits suffisants pour suivre une activité" msgstr "You do not have rights for activity subscription" #: ../../application/modules/admin/controllers/IndexController.php:165 +#: ../../application/modules/admin/controllers/IndexController.php:173 msgid "" "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité." msgstr "You do not have sufficient rights to do this." @@ -23706,6 +24555,7 @@ msgstr "You did not enter a key." #: ../../application/modules/opac/controllers/AbonneController.php:1066 #: ../../application/modules/opac/controllers/AbonneController.php:1059 #: ../../application/modules/opac/controllers/AbonneController.php:1061 +#: ../../application/modules/opac/controllers/AbonneController.php:1076 #, php-format msgid "Vous n'utilisez plus la carte de %s" msgstr "You are no longer using the card of %s" @@ -23738,11 +24588,13 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1137 #: ../../application/modules/opac/controllers/AbonneController.php:1130 #: ../../application/modules/opac/controllers/AbonneController.php:1132 +#: ../../application/modules/opac/controllers/AbonneController.php:1147 msgid "Vous ne pouvez pas ajouter votre propre carte" msgstr "You can't add your own card" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:398 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:407 +#: ../../application/modules/admin/controllers/FileManagerController.php:344 #, php-format msgid "" "Vous ne pouvez pas copier ou déplacer un élément avec lui-même : \"%s\" est " @@ -23757,6 +24609,12 @@ msgid "" "documents suivants :" msgstr "You can not delete file \"%s\" because it is used in:" +#: ../../application/modules/admin/controllers/FeatureController.php:79 +msgid "" +"Vous ne serez plus notifié des nouvelles fonctionnalités jusqu'à la " +"prochaine mise à jour du logicel." +msgstr "You are no longer notified by new features until next software update." + #: ../../library/Class/Feature/List.php:87 msgid "" "Vous pouvez accéder à l'historique des modifications d'un article " @@ -23764,6 +24622,7 @@ msgid "" msgstr "You can open article changes history from article ou calendar widget" #: ../../library/Class/Feature/List.php:164 +#: ../../library/Class/Feature/List.php:165 msgid "Vous pouvez désormais proposer une url de bande-annonce pour une notice" msgstr "You can provide a trailer url for a record" @@ -23838,6 +24697,8 @@ msgstr "You subscribed to session taking place at %s of %s activity" #: ../../application/modules/admin/controllers/IndexController.php:179 #: ../../application/modules/admin/controllers/IndexController.php:178 #: ../../application/modules/admin/controllers/IndexController.php:190 +#: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:198 #, php-format msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\"" msgstr "You are now logged as \"%s\"" @@ -23871,6 +24732,7 @@ msgstr "Web" #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:70 +#: ../../application/modules/admin/views/scripts/index/index.phtml:64 msgid "Wiki Bokeh" msgstr "Bokeh Wiki" @@ -23933,6 +24795,7 @@ msgstr "Item zone" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:71 msgid "Zones" msgstr "Area" @@ -24148,6 +25011,7 @@ msgstr "contains" #: ../../library/Class/Newsletter.php:381 #: ../../library/Class/Newsletter.php:381 +#: ../../library/Class/Newsletter.php:333 msgid "copie" msgstr "copy" @@ -24257,6 +25121,10 @@ msgstr "loans" msgid "des réservations" msgstr "holds" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:83 +msgid "description" +msgstr "description" + #: ../../application/modules/opac/controllers/IndexController.php:121 #: ../../application/modules/opac/controllers/IndexController.php:121 msgid "" @@ -24579,8 +25447,7 @@ msgstr "to %s" msgid "jusqu'à " msgstr "until" -#: ../../library/Class/Ouverture.php:180 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:180 ../../library/Class/Ouverture.php:180 #, php-format msgid "le %s" msgstr "%s" @@ -24866,6 +25733,7 @@ msgstr "number of views" #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:61 #: ../../library/ZendAfi/Form/Configuration/Widget/Tags.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "non" msgstr "no" @@ -25028,6 +25896,7 @@ msgstr "or create a new field" #: ../../library/ZendAfi/Form/Configuration/Widget/Carousel.php:68 #: ../../library/ZendAfi/Form/Configuration/Widget/Statistics.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "oui" msgstr "yes" @@ -25150,6 +26019,7 @@ msgstr "no transfer for : %s" #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 +#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:390 msgid "pictogramme pour " msgstr "icon for " @@ -25387,6 +26257,10 @@ msgstr "novelty only" msgid "uniquement les plus consulés" msgstr "most viewed only" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:85 +msgid "valeur" +msgstr "value" + #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 msgid "ven" @@ -25439,6 +26313,7 @@ msgstr "{contenu}" #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 +#: ../../application/modules/admin/views/scripts/index/index.phtml:31 msgid "» Modifier «" msgstr "» Edit «" @@ -25555,6 +26430,10 @@ msgstr "Screens" msgid "Éditeur" msgstr "Publisher" +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:56 +msgid "Éditeurs" +msgstr "Publishers" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 msgid "Éléments" @@ -25593,6 +26472,7 @@ msgstr "Extend settings" #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:2 msgid "Êtes vous sûr de vouloir consulter ce document ?" msgstr "Are you sure you want to read this doc ?" @@ -25609,6 +26489,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:2 msgid "Êtes vous sûr de vouloir emprunter ce document ?" msgstr "Are you sure that you want to loan this ebook ?" @@ -26015,9 +26896,6 @@ msgstr "listen" #~ msgid "Aucun menu n'est paramétré pour ce profil." #~ msgstr "No menu set for this profile." -#~ msgid "Aucun prêt en cours" -#~ msgstr "No loan in progress" - #~ msgid "Aucun résultat trouvé pour :" #~ msgstr "No result found for:" @@ -26033,9 +26911,6 @@ msgstr "listen" #~ msgid "Aucune zone de sélectionnée." #~ msgstr "No selected area." -#~ msgid "Auncun utilisateur trouvé" -#~ msgstr "No user found" - #~ msgid "Auteur et titre" #~ msgstr "Author and title" @@ -26242,9 +27117,6 @@ msgstr "listen" #~ msgid "Fév." #~ msgstr "February" -#~ msgid "Gérer les ressources" -#~ msgstr "Manage resources" - #~ msgid "Html simplifié" #~ msgstr "Simplified Html" @@ -26502,9 +27374,6 @@ msgstr "listen" #~ msgid "Moissonnage Tout Apprendre" #~ msgstr "Harvesting Tout Apprendre" -#~ msgid "Moissonnage Vodeclic" -#~ msgstr "Harvesting Vodeclic" - #~ msgid "Nachricht 1" #~ msgstr "Nachricht 1" @@ -26922,9 +27791,6 @@ msgstr "listen" #~ "obtenir plus d'informations." #~ msgstr "You must login as a subscriber of the library for more information." -#~ msgid "Vous devez vous connecter pour accéder à la consultation en ligne." -#~ msgstr "Please connect to access online reading." - #~ msgid "" #~ "Vous devez être connecté sous un compte avec abonnement valide pour " #~ "pouvoir accéder à la méthode" diff --git a/library/translation/es.mo b/library/translation/es.mo index 915da3dc8a444b627dfb44b6a0b2c33f435af664..5474095e9e1526a03af217ae45b2f636b2d5ead4 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 f3e1e61bacfc08c3ab60a76f26d9a43536fbad07..01c0b7f13692e14cf5d3a07eb162f8d946561bd7 100644 --- a/library/translation/es.po +++ b/library/translation/es.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Bokeh 7.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-30 10:18+0100\n" +"POT-Creation-Date: 2018-03-12 15:30+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/" @@ -27,6 +27,7 @@ msgstr " (%d de retraso)" #: ../../application/modules/opac/controllers/RechercheController.php:138 #: ../../application/modules/opac/controllers/RechercheController.php:138 +#: ../../application/modules/opac/controllers/RechercheController.php:142 msgid " (recherche élargie triée par pertinence)" msgstr " ( Búsqueda extendida ordenada por relevancia)" @@ -59,6 +60,9 @@ msgstr " Cambiar mi" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:175 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208 +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 msgid " OU " msgstr "" @@ -88,6 +92,7 @@ msgstr " a los boletines:" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid " avec l'adresse suivante: " msgstr " con la siguiente dirección:" @@ -246,33 +251,39 @@ msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "!!error en el modelo, atributo indefinido:" #: ../../application/modules/admin/controllers/FeatureController.php:70 +#: ../../application/modules/admin/controllers/FeatureController.php:71 #, php-format msgid "\"%s\" est une nouveauté pour vous." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:285 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:290 +#: ../../application/modules/admin/controllers/FileManagerController.php:228 #, php-format msgid "\"%s\" n'est pas redimensionnable." msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:48 +#: ../../application/modules/admin/controllers/FeatureController.php:49 #, php-format msgid "\"%s\" n'est plus une nouveauté pour vous." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:346 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:355 +#: ../../application/modules/admin/controllers/FileManagerController.php:292 #, fuzzy, php-format msgid "\"%s\" renommé en \"%s\"." msgstr "Cesta \"%s\" renombrado a \"%s\"." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:139 #, fuzzy, php-format msgid "\"%s\" supprimé." msgstr "El artÃculo \"%s\" suprime" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:140 +#: ../../application/modules/admin/controllers/FileManagerController.php:72 #, fuzzy, php-format msgid "\"%s\" vers \"%s\"" msgstr "Book %s" @@ -289,6 +300,11 @@ msgstr "" msgid "%.2f %%" msgstr "%.2f %%" +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +msgid "%d %B %Y" +msgstr "" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 msgid "%d %B %Y %H:%M:%S" @@ -932,11 +948,13 @@ msgstr "Este servicio no puede pruebarse" #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419 +#: ../../library/Class/AdminVar.php:424 msgid "API" msgstr "" #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418 +#: ../../library/Class/AdminVar.php:423 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -995,6 +1013,7 @@ msgstr "Suscripción" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 msgid "Abonné SIGB" msgstr "Abonado biblioteca" @@ -1009,6 +1028,7 @@ msgstr "Archivos encontrados" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 msgid "Abonné portail" msgstr "Abonado sitio" @@ -1102,6 +1122,7 @@ msgstr "Pro Services." #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:135 msgid "Accès à Cosmogramme" msgstr "Cosmograma Acceso" @@ -1175,6 +1196,7 @@ msgid "Accéder aux titres seulement" msgstr "Sólo TÃtulo" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65 #, fuzzy, php-format msgid "Accéder à \"%s\" dans un nouvel onglet." msgstr "En una ficha" @@ -1218,6 +1240,11 @@ msgstr "" msgid "Accéder à la ressource" msgstr "La gestión de los recursos" +#: ../../library/ZendAfi/View/Helper/TagSlideshow.php:196 +#, fuzzy, php-format +msgid "Accéder à la ressource \"%s\" dans un nouvel onglet" +msgstr "En una ficha" + #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 #, fuzzy @@ -1252,7 +1279,7 @@ msgid "Actions" msgstr "Acciones" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:240 +#: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242 #, fuzzy msgid "" "Activation de la disponibilite dans le resultat de recherche au survol de la " @@ -1260,7 +1287,7 @@ msgid "" msgstr "Activación de la disponibilidad en el resultado de búsqueda" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:241 +#: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243 #, fuzzy msgid "" "Activation de la disponibilite dans le resultat de recherche. Calculé grâce " @@ -1288,7 +1315,7 @@ msgid "Activation des fonctions avancées du téléphone" msgstr "Activación de las funciones avancadas del télefono" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255 msgid "Activation des formulaires" msgstr "Activación de los formularios" @@ -1298,7 +1325,7 @@ msgid "Activation du PNB Dilicom" msgstr "Activación del PNB Dilicom" #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:382 -#: ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1321,6 +1348,11 @@ msgstr "Activar la redirección a la lista de artÃculos" msgid "Activer la tâche" msgstr "Agregar tarea" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274 +#, fuzzy +msgid "Activer le moissonnage" +msgstr "Comienza la cosecha" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293 @@ -1370,6 +1402,7 @@ msgstr "Activar el módulo de formación" #: ../../library/ZendAfi/Form/Admin/Activity.php:40 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:119 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:110 msgid "Activité" msgstr "Actividad" @@ -1407,6 +1440,8 @@ msgstr "Actividad" #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 #: ../../library/Class/Systeme/Report.php:188 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51 msgid "Activé" msgstr "Activado" @@ -1434,6 +1469,7 @@ msgstr "Ubicación" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 msgid "Administrateur bibliothèque" msgstr "Administrador biblioteca" @@ -1441,6 +1477,7 @@ msgstr "Administrador biblioteca" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:244 msgid "Administrateur portail" msgstr "Administrador sitio" @@ -1457,6 +1494,8 @@ msgstr "Administrador sitio" #: ../../library/Class/Feature/List.php:101 #: ../../library/Class/Feature/List.php:167 #: ../../library/Class/Feature/List.php:189 +#: ../../library/Class/Feature/List.php:168 +#: ../../library/Class/Feature/List.php:190 #, fuzzy msgid "Administration" msgstr "Portal Administration" @@ -1464,6 +1503,7 @@ msgstr "Portal Administration" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:118 msgid "Administration du portail" msgstr "Portal Administration" @@ -1561,6 +1601,7 @@ msgstr "URL" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:159 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:150 msgid "Adresse des données" msgstr "Dirección de los datos" @@ -2411,6 +2452,7 @@ msgstr "Añadir una caja" #: ../../application/modules/opac/controllers/AbonneController.php:1107 #: ../../application/modules/opac/controllers/AbonneController.php:1100 #: ../../application/modules/opac/controllers/AbonneController.php:1102 +#: ../../application/modules/opac/controllers/AbonneController.php:1117 #, fuzzy msgid "Ajouter une carte" msgstr "Añadir un artÃculo" @@ -2527,6 +2569,7 @@ msgstr "Añadir el entrenamiento" #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49 #: ../../library/ZendAfi/Form/Album.php:49 #: ../../library/ZendAfi/Form/Album.php:50 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:46 msgid "Album" msgstr "Album" @@ -2664,6 +2707,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:204 #: ../../library/ZendAfi/View/Helper/BibView.php:207 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:117 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 msgid "Annexe" msgstr "Horario" @@ -2693,6 +2737,7 @@ msgstr "Cancelación imposible" #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:21 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:43 msgid "Annuler" msgstr "Cancelar" @@ -2701,8 +2746,14 @@ msgstr "Cancelar" msgid "Annuler cette réservation" msgstr "Cancelar su reserva" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:50 +#, fuzzy +msgid "Annuler la notification des nouveautés" +msgstr "Aberturas Planificación" + #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:32 #, fuzzy msgid "Annuler mes modifications" msgstr "Última modificación" @@ -2765,6 +2816,7 @@ msgstr "La publicación de años - desde" #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Année de publication" msgstr "Fecha de publicación" @@ -2816,6 +2868,7 @@ msgid "Appareils autorisés" msgstr "Dispositivos autorizados" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:155 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:161 #, fuzzy, php-format msgid "Appels webservices (%s)" msgstr "Servicios de pruebas web" @@ -2856,6 +2909,7 @@ msgstr "Archivo de Video" #: ../../application/modules/admin/views/scripts/feature/index.phtml:76 #: ../../application/modules/admin/views/scripts/feature/index.phtml:78 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:94 #, fuzzy, php-format msgid "Archivées : %d" msgstr "Archivo de Video" @@ -3033,8 +3087,7 @@ msgstr "Tipo de documento" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57 -#: ../../library/Class/ModeleFusion.php:75 -#: ../../library/Class/Ouverture.php:50 +#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50 #: ../../library/ZendAfi/Form/Album.php:235 #: ../../library/ZendAfi/Form/Admin/News.php:243 #: ../../library/ZendAfi/Form/Admin/Library.php:263 @@ -3046,8 +3099,12 @@ msgstr "Tipo de documento" msgid "Aucun" msgstr "No" -#: ../../library/Class/NoticeHtml.php:69 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334 +#, fuzzy +msgid "Aucun album présent pour cette ressource" +msgstr "Sin reservas" + +#: ../../library/Class/NoticeHtml.php:69 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "So se ha encontrado ningún artÃculo" @@ -3141,6 +3198,10 @@ msgstr "Ningún archivo más reciente que el ultimo tratado (%s)" msgid "Aucun fichier présent dans %s" msgstr "Ningún archivo presente en %s" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136 +msgid "Aucun groupe n'a de droits d'accès à la ressources" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 msgid "" @@ -3160,6 +3221,10 @@ msgstr "Ninguna crÃtica reciente" msgid "Aucun poste dans ce groupe" msgstr "No hay puestos en este grupo" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:39 +msgid "Aucun prêt en cours" +msgstr "No hay préstamos pendientes" + #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 msgid "Aucun prêt rendu de manière anticipée" @@ -3204,9 +3269,15 @@ msgstr "No hay resultados" #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:204 msgid "Aucun résumé" msgstr "No hay sumario" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172 +#, fuzzy +msgid "Aucun utilisateur rattaché aux groupes" +msgstr "No se han encontrado artÃculos" + #: ../../library/Class/Ouverture.php:38 #: ../../library/ZendAfi/Form/Admin/User.php:263 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:51 @@ -3330,6 +3401,7 @@ msgstr "Ninguna extensión realizada" #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:272 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:271 msgid "Aucune ressource correspondante" msgstr "Ningún recurso correspondiente" @@ -3358,6 +3430,7 @@ msgstr "No se sugiere a moderada" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:42 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:60 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:106 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:100 #, fuzzy msgid "Aucune version dans l'historique" msgstr "Ninguna crÃtica reciente" @@ -3497,6 +3570,7 @@ msgstr "No se encontraron videos" #: ../../library/ZendAfi/View/Helper/Abonne/LoansHistory.php:65 #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:59 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:22 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Auteur" msgstr "Autor" @@ -3524,6 +3598,7 @@ msgstr "Autor:" #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:477 +#: ../../application/modules/opac/controllers/RechercheController.php:480 #, php-format msgid "Auteur : %s" msgstr "Autor: %s" @@ -3602,6 +3677,10 @@ msgstr "" msgid "Autorisation non spécifiée" msgstr "" +#: ../../library/Class/AdminVar.php:289 +msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:151 @@ -3865,9 +3944,15 @@ msgstr "Dirección de los datos" msgid "Base de données : " msgstr "Dirección de los datos" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284 +#, fuzzy +msgid "Batch" +msgstr "Batches" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 msgid "Batchs" msgstr "Batches" @@ -4092,6 +4177,7 @@ msgstr "Biblioteca (s)" #: ../../library/ZendAfi/Form/Configuration/Domain.php:90 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:120 msgid "Bibliothèques" msgstr "Bibliotecas" @@ -4474,9 +4560,24 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:1 #: ../../library/Class/Users.php:1082 ../../library/Class/Users.php:1091 #: ../../library/Class/Users.php:1070 ../../library/Class/Users.php:1073 +#: ../../library/Class/Users.php:1077 msgid "Bonjour," msgstr "Hola," +#: ../../library/Class/User/BookmarkedSearch.php:113 +#, php-format +msgid "" +"Bonjour,\n" +"\n" +"Il y a %s nouveau(x) résultat(s) pour votre recherche \"%s\" :\n" +"\n" +"%s\n" +"\n" +"%s\n" +"\n" +"%s" +msgstr "" + #: ../../library/Class/Activity/UnregistrationMail.php:31 #: ../../library/Class/Activity/UnregistrationMail.php:31 #, php-format @@ -4495,9 +4596,9 @@ msgstr "" #: ../../library/Class/Users.php:1135 ../../library/Class/Users.php:1135 #: ../../library/Class/User/LostPass.php:104 -#: ../../library/Class/User/LostPass.php:137 -#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123 -#: ../../library/Class/Users.php:1126 +#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144 +#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126 +#: ../../library/Class/Users.php:1130 msgid "Bonne navigation sur le portail" msgstr "Buena navegación en el portal" @@ -4552,6 +4653,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:146 msgid "Cache des images" msgstr "Caché de imagen" @@ -4608,6 +4710,7 @@ msgstr "Carrusel vertical" #: ../../library/ZendAfi/View/Helper/BibView.php:166 #: ../../application/modules/opac/controllers/AbonneController.php:1113 #: ../../application/modules/opac/controllers/AbonneController.php:1115 +#: ../../application/modules/opac/controllers/AbonneController.php:1130 msgid "Carte" msgstr "Mapa" @@ -4616,6 +4719,7 @@ msgstr "Mapa" #: ../../application/modules/opac/controllers/AbonneController.php:1149 #: ../../application/modules/opac/controllers/AbonneController.php:1142 #: ../../application/modules/opac/controllers/AbonneController.php:1144 +#: ../../application/modules/opac/controllers/AbonneController.php:1159 #, fuzzy, php-format msgid "Carte de \"%s\" ajoutée" msgstr "Cesta \"%s\", agregó" @@ -4637,6 +4741,7 @@ msgstr "Mapa Zona" #: ../../application/modules/opac/controllers/AbonneController.php:1096 #: ../../application/modules/opac/controllers/AbonneController.php:1089 #: ../../application/modules/opac/controllers/AbonneController.php:1091 +#: ../../application/modules/opac/controllers/AbonneController.php:1106 #, fuzzy msgid "Carte introuvable" msgstr "Usuario no encontrado" @@ -4663,6 +4768,7 @@ msgstr "Catálogo" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:167 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 #, fuzzy msgid "Catalogues" msgstr "Catálogo" @@ -4670,6 +4776,7 @@ msgstr "Catálogo" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 msgid "Catalogues OPDS" msgstr "Catálogos OPDS" @@ -4828,6 +4935,16 @@ msgstr "Este nicho no es en horas." msgid "Ce document est référencé dans les éléments suivants :" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:40 +#, fuzzy +msgid "Ce document n'est pas de type Dilicom" +msgstr "El archivo no es de tipo %s" + +#: ../../application/modules/opac/controllers/ModulesController.php:86 +msgid "" +"Ce document ne possède pas de configuration permettant d'utiliser cette URL." +msgstr "" + #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:9 #, fuzzy msgid "Ce domaine ne renvoie aucun résultat." @@ -4857,6 +4974,10 @@ msgstr "Este menú no contiene ninguna entrada." msgid "Ce service n'est pas testable" msgstr "Este servicio no puede pruebarse" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:41 +msgid "Ce traitement ne se lance qu'en mode cron." +msgstr "" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:257 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:266 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:313 @@ -4907,6 +5028,20 @@ msgstr "Centro (s) de interés" msgid "Centres d'intérêt" msgstr "Intereses" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:105 +msgid "Cet album n'a pas de commande" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:125 +#, fuzzy +msgid "Cet album n'a pas de prêt en cours" +msgstr "Usted no tiene préstamos pendientes" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:136 +#, fuzzy +msgid "Cet album n'a pas encore été emprunté" +msgstr " se ha creado." + #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:60 @@ -4915,7 +5050,7 @@ msgstr "Este artÃculo es un borrador" #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1072 ../../library/Class/Users.php:1051 -#: ../../library/Class/Users.php:1053 +#: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1057 msgid "Cet identifiant existe déjà ." msgstr "Este identificador ya existe." @@ -4924,6 +5059,7 @@ msgstr "Este identificador ya existe." #: ../../application/modules/opac/controllers/AuthController.php:501 #: ../../application/modules/opac/controllers/AuthController.php:535 #: ../../application/modules/opac/controllers/AuthController.php:542 +#: ../../application/modules/opac/controllers/AuthController.php:537 #, fuzzy msgid "Cette fonctionnalité n'est pas activée." msgstr "Este servicio no puede pruebarse" @@ -4964,9 +5100,26 @@ msgstr "Este manual no tiene autor" #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:352 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:351 msgid "Cette notice n'a pas d'auteur." msgstr "Este manual no tiene autor." +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:60 +msgid "Cette recherche ne vous appartient pas." +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182 +msgid "Cette ressource ne prend pas en charge la connexion SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119 +msgid "Cette ressource ne prend pas en charge la gestion des droits" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262 +msgid "Cette ressource ne prend pas en charge le moissonnage" +msgstr "" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 msgid "Cette réservation convient-elle ?" @@ -5078,6 +5231,7 @@ msgstr "Los campos disponibles" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163 #: ../../library/ZendAfi/View/Helper/Admin/CustomFieldsValuesUrl.php:43 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:159 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:156 msgid "Champs personnalisés" msgstr "Los campos personalizados" @@ -5155,6 +5309,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:84 #: ../../library/ZendAfi/View/Helper/Redmine/Issues.php:33 #: ../../application/modules/admin/views/scripts/feature/index.phtml:86 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:102 #, fuzzy msgid "Chercher" msgstr "Buscar" @@ -5209,6 +5364,7 @@ msgid "Choisissez les dossiers à afficher" msgstr "Elegir cursos para mostrar" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:83 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:87 #, fuzzy msgid "Choisissez un fichier" msgstr "Seleccionar categorÃa" @@ -5272,6 +5428,7 @@ msgstr "manera simple lista" #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:17 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:84 msgid "Clef" msgstr "Clave" @@ -5463,6 +5620,7 @@ msgstr "Código Postal" #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:71 +#: ../../application/modules/admin/views/scripts/index/index.phtml:65 #, fuzzy msgid "Code source" msgstr "fuente" @@ -5522,6 +5680,7 @@ msgstr "Colecciones" #: ../../library/ZendAfi/Form/Album.php:312 #: ../../library/ZendAfi/Form/Album.php:313 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:82 #, fuzzy msgid "Commandes" msgstr "Comentarios:" @@ -5615,6 +5774,7 @@ msgstr "Registrantes máximas: Completo" #: ../../application/modules/opac/controllers/AbonneController.php:1214 #: ../../application/modules/opac/controllers/AbonneController.php:1207 #: ../../application/modules/opac/controllers/AbonneController.php:1209 +#: ../../application/modules/opac/controllers/AbonneController.php:1224 #, fuzzy msgid "Compléter votre adresse email" msgstr "Su dirección de correo electrónico" @@ -5644,7 +5804,7 @@ msgid "Compresser l'image \"%s\" en gardant les mêmes dimensions." msgstr "" #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412 -#: ../../library/Class/AdminVar.php:409 +#: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -5669,6 +5829,11 @@ msgstr "" msgid "Compte d'assistance: %s" msgstr "Avisos de suscriptores: %s" +#: ../../library/Class/Feature/List.php:179 +#, fuzzy +msgid "Compte lecteur" +msgstr "No hay vacantes" + #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 #, fuzzy @@ -5738,6 +5903,7 @@ msgid "Configuration de la page: %s" msgstr "Moderación de revisar los registros" #: ../../application/modules/opac/controllers/RechercheController.php:153 +#: ../../application/modules/opac/controllers/RechercheController.php:157 #, fuzzy msgid "Configuration de la recherche" msgstr "Mostrar resultados de búsqueda" @@ -5844,6 +6010,7 @@ msgstr "La confirmación de la inscripción al boletÃn de noticias:" #: ../../application/modules/opac/controllers/AuthController.php:465 #: ../../application/modules/opac/controllers/AuthController.php:499 #: ../../application/modules/opac/controllers/AuthController.php:506 +#: ../../application/modules/opac/controllers/AuthController.php:501 msgid "Confirmation d'inscription à la newsletter: " msgstr "La confirmación de la inscripción al boletÃn de noticias:" @@ -5985,6 +6152,7 @@ msgstr "Constitución del plan de acceso" #: ../../application/modules/opac/views/scripts/rechercheoai/viewnotice.phtml:12 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Consultation" msgstr "Consulta" @@ -5994,6 +6162,7 @@ msgid "Consultation dans l'OPAC" msgstr "" #: ../../library/Class/Feature/List.php:174 +#: ../../library/Class/Feature/List.php:175 msgid "Consultation de l'historique des prêts depuis le compte lecteur Bokeh" msgstr "" @@ -6004,6 +6173,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:407 #: ../../library/ZendAfi/View/Helper/Notice/ConsultationLink.php:29 #: ../../application/modules/opac/controllers/RechercheController.php:539 +#: ../../application/modules/opac/controllers/RechercheController.php:542 msgid "Consultation sur place" msgstr "" @@ -6075,7 +6245,7 @@ msgid "Contenu de l'avis modifié" msgstr "Contenido del aviso cambiaron" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -6083,26 +6253,28 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 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" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" msgstr "" #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:386 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" msgstr "" #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:385 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -6174,6 +6346,7 @@ msgid "Coordonnées carte" msgstr "Coordenadas Mapa" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:183 +#: ../../application/modules/admin/controllers/FileManagerController.php:115 #, php-format msgid "Copie de \"%s\" dans \"%s\" effectué." msgstr "" @@ -6228,6 +6401,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:114 #: ../../library/ZendAfi/Form/Album.php:157 #: ../../library/ZendAfi/Form/Album.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:105 msgid "Cote" msgstr "Probabilidades" @@ -6268,6 +6442,7 @@ msgstr "a" #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:479 +#: ../../application/modules/opac/controllers/RechercheController.php:482 #, php-format msgid "Cote : %s" msgstr "Cote: %s" @@ -6386,6 +6561,7 @@ msgstr "Opiniones escritas por %s" #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 #: ../../application/modules/admin/views/scripts/stat/rechercheinfructueuse.phtml:10 #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:10 #, fuzzy msgid "Critères" msgstr "Comentarios" @@ -6456,6 +6632,7 @@ msgstr "Crear una nueva caja de luz" #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:264 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:263 msgid "Créer un album" msgstr "" @@ -6466,6 +6643,7 @@ msgid "Créer un lieu" msgstr "Crear una nueva caja de luz" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:215 +#: ../../application/modules/admin/controllers/FileManagerController.php:152 #, fuzzy, php-format msgid "Créer un nouveau dossier dans \"%s\"" msgstr "Crear una nueva caja de luz" @@ -6514,6 +6692,7 @@ msgstr "Crear un boletÃn de noticias" #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:21 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:23 msgid "Créé le" msgstr "" @@ -6635,6 +6814,8 @@ msgstr "Fecha de orden" #: ../../library/Class/SuggestionAchat.php:178 #: ../../library/ZendAfi/Form/Album.php:174 #: ../../library/ZendAfi/Form/Album.php:175 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:11 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:62 msgid "Date de création" msgstr "Fecha de creación" @@ -6676,11 +6857,13 @@ msgstr "Fecha de la Fecha LÃmite de Inscripción:" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:63 #, fuzzy msgid "Date de mise à jour" msgstr "Ahorro" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:44 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:46 #, fuzzy msgid "Date de modification :" msgstr "Última modificación" @@ -6699,9 +6882,15 @@ msgstr "Fecha de nascimiento" #: ../../application/modules/admin/views/scripts/feature/index.phtml:13 #: ../../library/Class/CriteresRecherche.php:144 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Date de nouveauté" msgstr "Fecha de novedad" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:56 +#, fuzzy +msgid "Date de prêt" +msgstr "Fecha de inicio" + #: ../../library/Class/WebService/SIGB/Suggestion.php:69 #: ../../library/Class/WebService/SIGB/Suggestion.php:69 msgid "Date de publication" @@ -6718,13 +6907,18 @@ msgstr "Fecha de publicación" msgid "Date de retour" msgstr "Fecha de regreso" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:57 +#, fuzzy +msgid "Date de retour prévue" +msgstr "Fecha de regreso" + #: ../../library/Class/WebService/SIGB/Suggestion.php:71 #: ../../library/Class/WebService/SIGB/Suggestion.php:71 msgid "Date de suggestion" msgstr "Fecha de sugerencia" #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:374 -#: ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" @@ -6764,6 +6958,7 @@ msgstr "Fecha de la Fecha LÃmite de Inscripción:" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:121 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:112 msgid "Date nouveaté" msgstr "Fecha de novedad" @@ -6804,6 +6999,7 @@ msgstr "Solicitante" #: ../../application/modules/opac/controllers/AuthController.php:403 #: ../../application/modules/opac/controllers/AuthController.php:437 #: ../../application/modules/opac/controllers/AuthController.php:444 +#: ../../application/modules/opac/controllers/AuthController.php:439 msgid "Demande d'inscription à la lettre d'information: " msgstr "Solicitud de inclusión en el boletÃn de noticias:" @@ -6812,6 +7008,7 @@ msgstr "Solicitud de inclusión en el boletÃn de noticias:" #: ../../application/modules/opac/controllers/AuthController.php:497 #: ../../application/modules/opac/controllers/AuthController.php:531 #: ../../application/modules/opac/controllers/AuthController.php:538 +#: ../../application/modules/opac/controllers/AuthController.php:533 #, fuzzy msgid "Demande de préinscription" msgstr "Las solicitudes de inscripción" @@ -6854,6 +7051,7 @@ msgstr "Solicitud de reserva de un documento de la red:" #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:469 +#: ../../application/modules/opac/controllers/RechercheController.php:472 msgid "Demande de réservation de document" msgstr "Documento de solicitud de reserva" @@ -6974,6 +7172,7 @@ msgstr "Última modificación" #: ../../application/modules/admin/views/scripts/batch/index.phtml:18 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290 msgid "Dernière exécution" msgstr "Última ejecución" @@ -7111,6 +7310,15 @@ msgstr "Detalles de la sesión" msgid "Dewey / pcdm4" msgstr "Dewey / pcdm4" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179 +msgid "Diagnostic SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259 +#, fuzzy +msgid "Diagnostic moissonnage" +msgstr "Comienza la cosecha" + #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:86 #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:41 @@ -7127,6 +7335,11 @@ msgstr "" msgid "Diaporama avec navigation" msgstr "Con la navegación de diapositivas" +#: ../../application/modules/opac/controllers/RechercheController.php:804 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:50 +msgid "Dilicom" +msgstr "" + #: ../../library/Class/Ouverture.php:57 ../../library/Class/Ouverture.php:57 msgid "Dimanche" msgstr "" @@ -7138,11 +7351,13 @@ msgstr "Version" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:302 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 +#: ../../application/modules/admin/controllers/FileManagerController.php:244 #, php-format msgid "Dimensions \"%s\" invalident. Les dimensions valident sont : %s ." msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:41 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:43 #, fuzzy msgid "Dimensions :" msgstr "Version" @@ -7173,6 +7388,7 @@ msgstr "DiscografÃa completa" #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:75 +#: ../../application/modules/admin/views/scripts/index/index.phtml:69 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -7193,6 +7409,7 @@ msgstr "Disponibilidad" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 #: ../../library/Class/Exemplaire.php:269 #: ../../library/Class/Exemplaire.php:274 +#: ../../library/Class/Exemplaire.php:290 msgid "Disponible" msgstr "Disponible" @@ -7427,6 +7644,7 @@ msgstr "Añadir o editar comentario" #: ../../application/modules/admin/views/scripts/index/index.phtml:57 #: ../../application/modules/opac/controllers/RssController.php:219 #: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#: ../../application/modules/admin/views/scripts/index/index.phtml:40 msgid "Données en attente de modération" msgstr "Datos moderación en espera" @@ -7436,6 +7654,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:227 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:232 +#: ../../application/modules/admin/controllers/FileManagerController.php:169 #, fuzzy, php-format msgid "Dossier \"%s\" créé." msgstr "Cesta \"%s\" eliminado" @@ -7445,6 +7664,7 @@ msgid "Doublons" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:47 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:49 msgid "Droit d'écriture :" msgstr "" @@ -7661,10 +7881,12 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:21 +#: ../../application/modules/admin/views/scripts/index/index.phtml:15 msgid "Démonstrations vidéos" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:162 +#: ../../application/modules/admin/controllers/FileManagerController.php:94 #, php-format msgid "Déplacement de \"%s\" dans \"%s\" effectué." msgstr "" @@ -7707,6 +7929,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297 msgid "Désactiver la tâche" msgstr "" @@ -7717,18 +7940,20 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:47 msgid "Désactivé" msgstr "" #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:359 -#: ../../library/Class/AdminVar.php:356 +#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" msgstr "" #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:360 -#: ../../library/Class/AdminVar.php:357 +#: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -7754,6 +7979,7 @@ msgstr "Dejar de recibir el boletÃn de noticias:" #: ../../application/modules/opac/controllers/AuthController.php:442 #: ../../application/modules/opac/controllers/AuthController.php:476 #: ../../application/modules/opac/controllers/AuthController.php:483 +#: ../../application/modules/opac/controllers/AuthController.php:478 msgid "Désinscription de la lettre d'information: " msgstr "Dejar de recibir el boletÃn de noticias:" @@ -7927,6 +8153,7 @@ msgstr "Cambio de la relación de aspecto: %s" #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:257 +#: ../../application/modules/admin/controllers/WidgetController.php:247 #, php-format msgid "Echec de la sauvegarde de la configuration de %s" msgstr "" @@ -7971,6 +8198,7 @@ msgstr "Editorial:" #: ../../application/modules/opac/controllers/RechercheController.php:463 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159 #: ../../application/modules/opac/controllers/RechercheController.php:478 +#: ../../application/modules/opac/controllers/RechercheController.php:481 #, php-format msgid "Editeur : %s" msgstr "Editorial: %s" @@ -8088,10 +8316,12 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:469 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:118 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Emplacement" msgstr "Ubicación" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:35 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:37 #, fuzzy msgid "Emplacement :" msgstr "Ubicación" @@ -8214,6 +8444,7 @@ msgstr "" #: ../../library/Class/User/CardsNotification.php:59 #: ../../library/Class/User/CardsNotification.php:59 +#: ../../library/Class/Feature.php:171 msgid "En savoir plus" msgstr "" @@ -8222,6 +8453,12 @@ msgstr "" msgid "Encodage des caractères" msgstr "" +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:35 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:36 +#, fuzzy +msgid "Enregister la recherche dans mes favoris" +msgstr "Ampliar su búsqueda a todas las palabras" + #: ../../application/modules/opac/controllers/AbonneController.php:419 #: ../../application/modules/opac/controllers/AbonneController.php:427 #: ../../application/modules/opac/controllers/AbonneController.php:435 @@ -8238,15 +8475,27 @@ msgstr "Registro" msgid "Enregistrer comme filtres par défaut" msgstr "" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#, fuzzy +msgid "Enregistrer ma recherche" +msgstr "Iniciar la búsqueda" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#, fuzzy +msgid "Enregistrer ma recherche dans mes favoris" +msgstr "Ampliar su búsqueda a todas las palabras" + #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:45 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:46 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:41 #, fuzzy msgid "Enregistrer mes modifications" msgstr "Última modificación" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:37 #, fuzzy msgid "Enregistrer mes modifications et poursuivre mes modifications" msgstr "Última modificación" @@ -8263,6 +8512,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86 msgid "Entrepôts OAI" msgstr "OAI" @@ -8420,6 +8670,7 @@ msgstr "Email" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:137 msgid "Envoyer une demande d'achat de document" msgstr "" @@ -8469,6 +8720,7 @@ msgstr "Error:" #: ../../application/modules/admin/controllers/IndexController.php:146 #: ../../application/modules/admin/controllers/IndexController.php:156 #: ../../application/modules/admin/controllers/IndexController.php:156 +#: ../../application/modules/admin/controllers/IndexController.php:164 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -8567,6 +8819,7 @@ msgstr "Error al crear miniatura %s" #: ../../application/modules/opac/controllers/AuthController.php:475 #: ../../application/modules/opac/controllers/AuthController.php:509 #: ../../application/modules/opac/controllers/AuthController.php:516 +#: ../../application/modules/opac/controllers/AuthController.php:511 msgid "Erreur lors de l\\inscription à la newsletter." msgstr "Error al \\ boletÃn de suscripción." @@ -8599,42 +8852,49 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:111 #: ../../application/modules/admin/controllers/IndexController.php:111 +#: ../../application/modules/admin/controllers/IndexController.php:119 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:393 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:402 +#: ../../application/modules/admin/controllers/FileManagerController.php:339 #, fuzzy, php-format msgid "Erreur. Impossible de faire cette opération vers \"%s\"." msgstr "No se puede encontrar esta dirección" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:347 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:356 +#: ../../application/modules/admin/controllers/FileManagerController.php:293 #, php-format msgid "Erreur. Impossible de renommer \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:319 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:324 +#: ../../application/modules/admin/controllers/FileManagerController.php:261 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été compressée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:312 +#: ../../application/modules/admin/controllers/FileManagerController.php:249 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été redimensionnée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:388 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:397 +#: ../../application/modules/admin/controllers/FileManagerController.php:334 #, php-format msgid "Erreur. Le chemin \"%s\" n'existe pas." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:405 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:414 +#: ../../application/modules/admin/controllers/FileManagerController.php:351 #, php-format msgid "" "Erreur. Vous ne pouvez pas téléverser un nouveau fichier car vous avez " @@ -8684,6 +8944,11 @@ msgstr "Tema" msgid "Essayer" msgstr "" +#: ../../application/modules/admin/views/scripts/feature/index.phtml:80 +#, fuzzy, php-format +msgid "Essayer \"%s\" dans un nouvel onglet" +msgstr "En una ficha" + #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 msgid "Et " @@ -8705,6 +8970,7 @@ msgstr "Fecha de publicación" #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:42 +#: ../../application/modules/admin/views/scripts/index/index.phtml:36 #, fuzzy msgid "Etat du site" msgstr "Aspecto del sitio" @@ -8717,7 +8983,7 @@ msgid "Etat du système" msgstr "Aspecto del sitio" #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241 msgid "" "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" " "entre les mots saisis" @@ -8735,6 +9001,7 @@ msgstr "¿Seguro que quieres eliminar esta reserva?" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305 #, fuzzy msgid "Etes-vous sur de vouloir désactiver cette tâche ?" msgstr "¿Seguro que quieres eliminar esta capa?" @@ -8783,6 +9050,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette notice du panier ?" msgstr "¿Seguro que quieres eliminar esta canasta disco?" #: ../../library/Class/Feature/List.php:130 +#: ../../library/Class/Feature/List.php:131 #, fuzzy msgid "Evolution de la boite sitothèque" msgstr "Ubicaciones Biblioteca" @@ -8820,6 +9088,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:69 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:81 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:73 msgid "Exemplaires" msgstr "Copias" @@ -8842,6 +9111,7 @@ msgstr "" #: ../../library/Class/Feature/List.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 msgid "Explorateur de fichiers" msgstr "Explorador de archivos" @@ -8872,6 +9142,7 @@ msgid "Export de panier" msgstr "Canasta de exportación" #: ../../library/Class/Feature/List.php:119 +#: ../../library/Class/Feature/List.php:120 msgid "Export des agendas au format iCalendar" msgstr "" @@ -8919,12 +9190,14 @@ msgid "Exporter le tableau en CSV" msgstr "" #: ../../library/Class/Feature/List.php:120 +#: ../../library/Class/Feature/List.php:121 msgid "" "Exportez vos agendas pour les intégrer dans un logiciel de calendrier ou un " "autre système d'information." msgstr "" #: ../../library/Class/Feature/List.php:123 +#: ../../library/Class/Feature/List.php:124 #, fuzzy msgid "Exports" msgstr "Exportación EAD" @@ -8970,6 +9243,7 @@ msgid "Expéditeur:" msgstr "Remitente" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:32 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:34 #, fuzzy msgid "Extension :" msgstr "Version" @@ -9063,7 +9337,7 @@ msgid "Facilite l'indexation de votre site dans les moteurs de recherche" msgstr "Facilita la indexación de su sitio en los motores de búsqueda" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415 -#: ../../library/Class/AdminVar.php:412 +#: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -9088,6 +9362,11 @@ msgstr "Familia" msgid "Famille du document" msgstr "Documento Familia" +#: ../../application/modules/opac/controllers/AbonneController.php:1012 +#, fuzzy +msgid "Favoris sauvegardés" +msgstr "Dominio %s salvos" + #: ../../library/ZendAfi/Form/Configuration/Items.php:56 #: ../../library/ZendAfi/Form/Configuration/Items.php:56 msgid "Favorites" @@ -9107,6 +9386,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:80 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:83 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:88 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Fermer" msgstr "De cerca" @@ -9157,6 +9437,8 @@ msgstr "Archivo" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:275 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:269 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:280 +#: ../../application/modules/admin/controllers/FileManagerController.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:217 #, fuzzy, php-format msgid "Fichier \"%s\" téléversé." msgstr "El artÃculo \"%s\" se ha guardado" @@ -9422,6 +9704,7 @@ msgid "Fond de carte OpenStreetMap" msgstr "" #: ../../library/Class/Feature/List.php:141 +#: ../../library/Class/Feature/List.php:142 #, fuzzy msgid "Fond de carte personnalisable" msgstr "Tipos de campos personalizados" @@ -9439,7 +9722,7 @@ msgid "Fonds" msgstr "Fondos" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -9479,6 +9762,7 @@ msgstr "Formulario de contacto" #: ../../library/ZendAfi/Form/Login.php:49 #: ../../library/ZendAfi/Form/Login.php:49 +#: ../../library/ZendAfi/Form/Login.php:58 msgid "Formulaire d'authentification" msgstr "" @@ -9558,6 +9842,7 @@ msgstr "Capa" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:116 #: ../../library/Class/TableDescription/PNBItemsExport.php:40 #: ../../library/Class/TableDescription/PNBLoans.php:35 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 msgid "Genre" msgstr "Kind" @@ -9584,6 +9869,11 @@ msgstr "Kind" msgid "Genres" msgstr "Géneros" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111 +#, fuzzy +msgid "Gestion des droits" +msgstr "Gestión de usuarios" + #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 #, fuzzy @@ -9646,6 +9936,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:69 +#: ../../application/modules/admin/views/scripts/index/index.phtml:63 msgid "Google group Bokeh" msgstr "" @@ -9667,6 +9958,10 @@ msgstr "Grupo \"%s\" guardado" msgid "Groupe \"%s\" supprimé" msgstr "Grupo \"%s\" suprimido" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210 +msgid "Groupe créé pour ce test" +msgstr "" + #: ../../library/Class/CustomField/ModelConfiguration/UserGroup.php:26 #: ../../library/Class/CustomFieldsCategory.php:73 #: ../../library/Class/CustomFieldsCategory.php:73 @@ -9676,6 +9971,7 @@ msgstr "Grupo de usuarios" #: ../../library/Class/Newsletter.php:500 #: ../../library/Class/Newsletter.php:500 +#: ../../library/Class/Newsletter.php:452 #, php-format msgid "Groupe manuel pour la lettre \"%s\"" msgstr "" @@ -9690,9 +9986,15 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 #: ../../library/ZendAfi/Form/Admin/User.php:136 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 msgid "Groupes" msgstr "Grupos" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221 +#, fuzzy, php-format +msgid "Groupes : %s" +msgstr "Grupos" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:116 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 @@ -9701,6 +10003,11 @@ msgstr "Grupos" msgid "Groupes destinataires" msgstr "Destinatario" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148 +#, fuzzy +msgid "Groupes qui ont accès à la ressource" +msgstr "La gestión de los recursos" + #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:40 #, fuzzy msgid "Général" @@ -9721,6 +10028,7 @@ msgstr "General" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 #: ../../application/modules/admin/controllers/SystemeController.php:140 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 msgid "Génération du site" msgstr "Generación del Sitio" @@ -9783,6 +10091,11 @@ msgstr "Gestionar los medios de comunicación" msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142 +#, fuzzy +msgid "Gérer les groupes" +msgstr "La gestión de los recursos" + #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:28 @@ -9816,6 +10129,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 #: ../../application/modules/opac/controllers/AbonneController.php:1013 #: ../../application/modules/opac/controllers/AbonneController.php:1015 +#: ../../application/modules/opac/controllers/AbonneController.php:1016 msgid "Gérer mes favoris" msgstr "" @@ -9937,12 +10251,18 @@ msgstr "CrÃticos" msgid "Historique de prêts" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:88 +#, fuzzy +msgid "Historique des 5 derniers prêts" +msgstr "Última modificación" + #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:130 #: ../../library/ZendAfi/View/Helper/TagEditArticle.php:74 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:43 #, fuzzy msgid "Historique des modifications" msgstr "Última modificación" @@ -10046,12 +10366,14 @@ msgstr "Icono del explorador" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:392 msgid "Id du connecteur Le Social" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:120 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:111 msgid "Id origine" msgstr "" @@ -10111,6 +10433,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/User.php:66 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:8 +#: ../../library/ZendAfi/Form/Login.php:137 msgid "Identifiant" msgstr "Iniciar sesión" @@ -10139,19 +10462,31 @@ msgid "Identifiant du portail chez 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:233 ../../library/Class/AdminVar.php:234 -#: ../../library/Class/AdminVar.php:231 +#: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233 msgid "Identifiant du project Redmine" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:51 +#, fuzzy +msgid "Identifiant du prêt interne Bokeh" +msgstr "ID comienza con" + #: ../../application/modules/opac/controllers/AbonneController.php:1133 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1125 #: ../../application/modules/opac/controllers/AbonneController.php:1127 +#: ../../application/modules/opac/controllers/AbonneController.php:1142 #, fuzzy msgid "Identifiant et/ou mot de passe incorrect" msgstr "Nombre de usuario o contraseña incorrecta." +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:64 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:54 +#, fuzzy +msgid "Identifiant externe Dilicom" +msgstr "ID comienza con" + #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:62 @@ -10159,6 +10494,11 @@ msgstr "Nombre de usuario o contraseña incorrecta." msgid "Identifiant inconnu." msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:60 +#, fuzzy +msgid "Identifiant interne Bokeh" +msgstr "ID comienza con" + #: ../../library/Class/IntProfilDonnees.php:170 #: ../../library/Class/IntProfilDonnees.php:170 #, fuzzy @@ -10252,19 +10592,19 @@ msgid "Il faut compléter tous les champs." msgstr "Debe completar todos los campos." #: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357 -#: ../../library/Class/Profil.php:1377 +#: ../../library/Class/Profil.php:1377 ../../library/Class/Profil.php:1378 #, fuzzy msgid "Il manque la largeur de la division 1." msgstr "División por defecto Transmisión" #: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361 -#: ../../library/Class/Profil.php:1381 +#: ../../library/Class/Profil.php:1381 ../../library/Class/Profil.php:1382 #, fuzzy msgid "Il manque la largeur de la division 2." msgstr "División por defecto Transmisión" #: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365 -#: ../../library/Class/Profil.php:1385 +#: ../../library/Class/Profil.php:1385 ../../library/Class/Profil.php:1386 #, fuzzy msgid "Il manque la largeur de la division 3." msgstr "División por defecto Transmisión" @@ -10291,8 +10631,7 @@ msgstr "Hay más de subnivel" msgid "Il n'y a plus de sous-niveau" msgstr "Hay más de subnivel" -#: ../../library/Class/NoticeOAI.php:230 -#: ../../library/Class/NoticeOAI.php:230 +#: ../../library/Class/NoticeOAI.php:230 ../../library/Class/NoticeOAI.php:230 msgid "Il n'y aucun mot assez significatif pour la recherche" msgstr "No hay palabra lo suficientemente importantes como para buscar" @@ -10369,12 +10708,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:175 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 msgid "Import Thesaurus" msgstr "Importación Thesaurus" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 msgid "Import avis opac2" msgstr "Importación de comentarios opac2" @@ -10399,6 +10740,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 msgid "Import/Export EAD" msgstr "Importar / Exportar EAD" @@ -10457,12 +10799,14 @@ msgid "Impossible d\\`écrire le fichier sur le disque" msgstr "No se puede escribir el archivo en la ruta del servidor [ %s]" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:184 +#: ../../application/modules/admin/controllers/FileManagerController.php:116 #, fuzzy, php-format msgid "Impossible de copier \"%s\" dans \"%s\"." msgstr "No se puede encontrar esta dirección" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:228 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:233 +#: ../../application/modules/admin/controllers/FileManagerController.php:170 #, fuzzy, php-format msgid "Impossible de créer le dossier \"%s\"." msgstr "No se puede encontrar esta dirección" @@ -10474,6 +10818,7 @@ msgid "Impossible de créer le répertoire local %s" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:163 +#: ../../application/modules/admin/controllers/FileManagerController.php:95 #, php-format msgid "Impossible de déplacer \"%s\" dans \"%s\"." msgstr "" @@ -10499,6 +10844,7 @@ msgid "Impossible de se connecter au serveur %s" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:207 +#: ../../application/modules/admin/controllers/FileManagerController.php:140 #, fuzzy, php-format msgid "Impossible de supprimer \"%s\"." msgstr "No se puede el RSS" @@ -10530,6 +10876,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:262 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:267 +#: ../../application/modules/admin/controllers/FileManagerController.php:204 #, fuzzy, php-format msgid "Impossible de téléverser le fichier \"%s\"." msgstr "No se puede el RSS" @@ -10563,6 +10910,7 @@ msgstr "Retire" #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 #: ../../library/ZendAfi/View/Helper/Avis.php:106 #: ../../library/ZendAfi/View/Helper/Admin/Versions.php:55 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:72 msgid "Inconnu" msgstr "" @@ -10576,6 +10924,10 @@ msgstr "" msgid "Inconnu ou Supprimé" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:52 +msgid "Indetifiant de l'utilisateur interne Bokeh" +msgstr "" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 #, fuzzy @@ -10780,6 +11132,7 @@ msgstr "Información del documento" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../application/modules/admin/controllers/SystemeController.php:269 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 msgid "Informations système" msgstr "Información del sistema" @@ -10838,6 +11191,7 @@ msgstr "Registro" #: ../../application/modules/opac/controllers/AuthController.php:386 #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:427 +#: ../../application/modules/opac/controllers/AuthController.php:422 msgid "Inscription à la lettre d'information: " msgstr "SuscrÃbete al boletÃn:" @@ -10846,6 +11200,7 @@ msgstr "SuscrÃbete al boletÃn:" #: ../../application/modules/opac/controllers/AuthController.php:468 #: ../../application/modules/opac/controllers/AuthController.php:502 #: ../../application/modules/opac/controllers/AuthController.php:509 +#: ../../application/modules/opac/controllers/AuthController.php:504 msgid "Inscription à la newsletter invalide." msgstr "SuscrÃbete a nuestro boletÃn deshabilitado." @@ -10867,6 +11222,7 @@ msgid "Inscrit à la lettre" msgstr "SuscrÃbete a nuestro boletÃn deshabilitado." #: ../../library/Class/Feature/List.php:185 +#: ../../library/Class/Feature/List.php:186 #, fuzzy msgid "Insérer un kiosque dans un article" msgstr "Agregar una registro a la cesta" @@ -10957,6 +11313,7 @@ msgstr "Invisible" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 msgid "Invité" msgstr "" @@ -10983,6 +11340,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81 msgid "Jamendo" msgstr "" @@ -11007,12 +11365,12 @@ msgid "Javascript" msgstr "Javascript" #: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:367 -#: ../../library/Class/AdminVar.php:364 +#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369 msgid "Javascript code for statistics" msgstr "" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" @@ -11029,11 +11387,13 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:337 #: ../../application/modules/opac/controllers/AuthController.php:344 +#: ../../application/modules/opac/controllers/AuthController.php:339 msgid "Jeton de réinitialisation expiré" msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:334 #: ../../application/modules/opac/controllers/AuthController.php:341 +#: ../../application/modules/opac/controllers/AuthController.php:336 #, fuzzy msgid "Jeton de réinitialisation invalide" msgstr "El código anti-spam no es válido." @@ -11042,6 +11402,10 @@ msgstr "El código anti-spam no es válido." msgid "Jeudi" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:7 +msgid "Jeudi 15 mars" +msgstr "" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:8 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:9 @@ -11064,6 +11428,10 @@ msgstr "" msgid "Jour" msgstr "DÃa" +#: ../../application/modules/admin/views/scripts/index/index.phtml:5 +msgid "Journée communautaire Bokeh 2018" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:31 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 @@ -11262,23 +11630,31 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:640 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:655 +#: ../../application/modules/opac/controllers/RechercheController.php:544 +#: ../../application/modules/opac/controllers/RechercheController.php:658 msgid "L'exemplaire n'existe pas" msgstr "" +#: ../../application/modules/opac/controllers/ModulesController.php:79 +msgid "L'identifiant du document demandé n'existe pas" +msgstr "" + #: ../../library/Class/Users.php:1024 ../../library/Class/Users.php:1024 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1012 -#: ../../library/Class/Users.php:1014 +#: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1018 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "El nombre de usuario que eligió ya existe." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:318 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:323 +#: ../../application/modules/admin/controllers/FileManagerController.php:260 #, fuzzy, php-format msgid "L'image \"%s\" a été compressée." msgstr "El álbum \"%s\" se ha creado" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:306 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:311 +#: ../../application/modules/admin/controllers/FileManagerController.php:248 #, fuzzy, php-format msgid "L'image \"%s\" a été redimensionnée." msgstr "La sesión \"%s\" se ha guardado" @@ -11404,7 +11780,7 @@ msgstr "La biblioteca contiene los registros %s." #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1033 #: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1021 -#: ../../library/Class/Users.php:1023 +#: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1027 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "Se requiere que la biblioteca de la función: %s" @@ -11452,6 +11828,11 @@ msgstr "Se añadió el \"%s\"" msgid "La catégorie \"%s\" a été sauvegardée" msgstr "El \"%s\" se ha guardado" +#: ../../application/modules/admin/controllers/IndexController.php:86 +#, php-format +msgid "La clé \"%s\" n'existe pas." +msgstr "" + #: ../../library/Class/Profil/SkinUpdateReader.php:102 #: ../../library/Class/Profil/SkinUpdateReader.php:102 #, fuzzy, php-format @@ -11474,6 +11855,7 @@ msgstr "Formación \"%s\" se ha guardado" #: ../../library/Class/Systeme/Widget/Widget.php:72 #: ../../library/Class/Systeme/Widget/Widget.php:72 +#: ../../library/Class/Systeme/Widget/Widget.php:74 #, fuzzy, php-format msgid "La configuration de la boite %s a été sauvegardée" msgstr "Formación \"%s\" se ha guardado" @@ -11486,18 +11868,19 @@ msgid "La configuration du menu %s a été sauvegardée" msgstr "Formación \"%s\" se ha guardado" #: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385 -#: ../../library/Class/Profil.php:1405 +#: ../../library/Class/Profil.php:1405 ../../library/Class/Profil.php:1406 msgid "La couleur des liens du bandeau doit être au format #001122" msgstr "" #: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381 -#: ../../library/Class/Profil.php:1401 +#: ../../library/Class/Profil.php:1401 ../../library/Class/Profil.php:1402 msgid "La couleur du texte bandeau doit être au format #001122" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:145 #: ../../application/modules/admin/controllers/IndexController.php:155 #: ../../application/modules/admin/controllers/IndexController.php:155 +#: ../../application/modules/admin/controllers/IndexController.php:163 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" @@ -11508,7 +11891,7 @@ msgid "" msgstr "" #: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346 -#: ../../library/Class/Profil.php:1366 +#: ../../library/Class/Profil.php:1366 ../../library/Class/Profil.php:1367 #, fuzzy msgid "La largeur du site doit être comprise entre 800 et 2000 pixels." msgstr "El comentario debe tener una longitud entre %s y %s caracteres" @@ -11562,6 +11945,22 @@ msgstr "La foto que ha seleccionado es demasiado volumiseuse: %d KB" msgid "La pièce jointe est invalide." msgstr "El código anti-spam no es válido." +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:31 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:32 +#, php-format +msgid "La recherche \"%s\" a été enregistrée dans mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:33 +#, fuzzy, php-format +msgid "La recherche \"%s\" a été supprimée de mes favoris" +msgstr "La categorÃa \"%s\" se ha eliminado" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:54 +#, fuzzy +msgid "La recherche demandée est introuvable." +msgstr "El código anti-spam no es válido." + #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 @@ -11609,7 +12008,7 @@ msgid "La session \"%s\" a été sauvegardée, son article lié a été créé." msgstr "La sesión \"%s\" se ha guardado" #: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353 -#: ../../library/Class/Profil.php:1373 +#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1374 msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "" @@ -11619,15 +12018,18 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:478 +#: ../../library/Class/CriteresRecherche.php:491 msgid "La sélection ne contient aucune notice" msgstr "La selección no contiene ningún registro" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 #, fuzzy msgid "La taille du fichier doit être inférieur à \"%max%\"" msgstr "El archivo no es de tipo %s" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:50 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:54 #, fuzzy msgid "La taille du fichier doit être supérieur à \"%min%\"" msgstr "El archivo no es de tipo %s" @@ -11866,6 +12268,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:123 #: ../../application/modules/admin/controllers/IndexController.php:133 #: ../../application/modules/admin/controllers/IndexController.php:133 +#: ../../application/modules/admin/controllers/IndexController.php:141 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -11913,13 +12316,13 @@ msgstr "'Url' El campo debe ser inferior a 250 caracteres" #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1020 #: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1010 +#: ../../library/Class/Users.php:1010 ../../library/Class/Users.php:1014 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "El campo 'id' debe ser menor de 50 caracteres" #: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1028 #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1016 -#: ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1022 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "El campo 'Contraseña' debe tener menos de 255 caracteres" @@ -11965,6 +12368,16 @@ msgstr "" msgid "Le document %s a été ajouté au panier %s" msgstr " se ha añadido a la cesta" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:35 +#, fuzzy +msgid "Le document n'a pas d'album" +msgstr "Este manual no tiene autor" + +#: ../../library/ZendAfi/View/Helper/Album/OldLoans.php:30 +#, fuzzy +msgid "Le document n'a pas encore été emprunté" +msgstr " se ha creado." + #: ../../application/modules/admin/controllers/CatalogueController.php:53 #: ../../application/modules/admin/controllers/CatalogueController.php:53 msgid "" @@ -11973,6 +12386,7 @@ msgid "" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:194 +#: ../../application/modules/admin/controllers/FileManagerController.php:126 #, php-format msgid "" "Le dossier \"%s\" ne peut pas être supprimé car il contient des éléments " @@ -12014,6 +12428,7 @@ msgid "Le fichier n'est pas de type %s" msgstr "El archivo no es de tipo %s" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:52 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:56 #, fuzzy msgid "Le fichier n'est pas lisible" msgstr "El archivo no es de tipo %s" @@ -12052,11 +12467,13 @@ msgid "Le flux doit être au format iCalendar" msgstr "" #: ../../library/Class/Feature/List.php:142 +#: ../../library/Class/Feature/List.php:143 msgid "Le fond de carte de la boite bibliothèques est personnalisable." msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:46 msgid "Le formulaire a été modifié. Etes vous sûr de vouloir partir ?" msgstr "" @@ -12068,7 +12485,7 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252 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 " @@ -12087,7 +12504,7 @@ msgid "Le libellé doit être renseigné" msgstr "" #: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342 -#: ../../library/Class/Profil.php:1362 +#: ../../library/Class/Profil.php:1362 ../../library/Class/Profil.php:1363 #, fuzzy msgid "Le libellé est obligatoire." msgstr "el idioma es obligatorio." @@ -12115,18 +12532,41 @@ msgstr "El mensaje ha sido enviado" msgid "Le modèle \"%s\" a été sauvegardé" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272 +#, fuzzy +msgid "Le moissonnage n'est pas programmé" +msgstr "Este servicio no puede pruebarse" + +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +msgid "" +"Le nom doit contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 msgid "" "Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " "caratères \"_\", \"-\", \" \", \".\". Exemple : \"mon_dossier\"" msgstr "" +#: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 +msgid "" +"Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " +"caratères \"_\", \"-\", \".\". Exemple : \"mon_dossier\"" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 msgid "" "Le nom peut contenir uniquement des lettres, des chiffres et les caratères " "\"_\", \"-\", \" \", \".\". Exemple : \"mon_fichier.2\"" msgstr "" +#: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 +msgid "" +"Le nom peut contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:161 @@ -12150,7 +12590,7 @@ msgstr "" #: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1026 -#: ../../library/Class/Users.php:1028 +#: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1032 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" @@ -12312,6 +12752,7 @@ msgid "Les extensions possiblent sont : %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:59 #, php-format msgid "Les extensions possibles sont : %s" msgstr "" @@ -12391,6 +12832,17 @@ msgstr "" msgid "Les mots de passe ne correspondent pas" msgstr "Las contraseñas no coinciden" +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:85 +#, php-format +msgid "Les notifications de nouveautés pour la recherche \"%s\" sont activées." +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:96 +#, php-format +msgid "" +"Les notifications de nouveautés pour la recherche \"%s\" sont désactivées." +msgstr "" + #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #, fuzzy, php-format @@ -12437,6 +12889,18 @@ msgstr "Nombramientos" msgid "Les sites les plus récents" msgstr "" +#: ../../library/Class/AdminVar.php:225 +#, fuzzy +msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris" +msgstr "Puede seleccionar una o varias bibliotecas para buscar" + +#: ../../library/Class/AdminVar.php:226 +#, fuzzy +msgid "" +"Les utilisateurs peuvent recevoir les nouveautés de leurs recherches " +"favorites par email" +msgstr "Puede seleccionar una o varias bibliotecas para buscar" + #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:224 #, fuzzy @@ -12582,6 +13046,8 @@ msgstr "Nombre" #: ../../library/ZendAfi/Form/Admin/Section.php:30 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:82 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9 +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29 msgid "Libellé" msgstr "Redacción" @@ -12764,7 +13230,7 @@ msgid "Lien permanent" msgstr "Permalink" #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:277 +#: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" @@ -13029,6 +13495,11 @@ msgstr "Enchufe de la biblioteca:" msgid "Lien vers une sélection d'articles" msgstr "Retire los medios de comunicación seleccionados" +#: ../../library/Class/Notice/MailRenderer.php:34 +#, fuzzy +msgid "Lien: " +msgstr "Enlace" + #: ../../library/Class/Systeme/ModulesMenu.php:73 #: ../../library/Class/Systeme/ModulesMenu.php:73 #, fuzzy @@ -13150,6 +13621,9 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:655 #: ../../application/modules/opac/controllers/RechercheController.php:662 #: ../../application/modules/opac/controllers/RechercheController.php:691 +#: ../../application/modules/opac/controllers/RechercheController.php:658 +#: ../../application/modules/opac/controllers/RechercheController.php:665 +#: ../../application/modules/opac/controllers/RechercheController.php:694 msgid "Lieu de mise à disposition demandé" msgstr "En lugar de proporcionar solicitado" @@ -13239,6 +13713,7 @@ msgid "Liste des albums" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:156 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:162 #, fuzzy msgid "Liste des appels webservices" msgstr "Servicios de pruebas web" @@ -13288,7 +13763,7 @@ msgid "Liste des derniers fils RSS ajoutés" msgstr "Ultimos RSS" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403 -#: ../../library/Class/AdminVar.php:400 +#: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -13306,17 +13781,17 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 -#: ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401 #, fuzzy msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "Lista des conectores disponibles" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "" -#: ../../library/Class/AdminVar.php:406 +#: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." @@ -13328,7 +13803,7 @@ msgid "Liste des réservations du site \"%s\"" msgstr "Reservas avisos" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:242 +#: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -13443,9 +13918,15 @@ msgstr "Ubicaciones de la biblioteca: %s" #: ../../library/ZendAfi/Form/Login.php:118 #: ../../application/modules/admin/views/scripts/users/manage-double-user.phtml:10 #: ../../library/ZendAfi/Form/Login.php:118 +#: ../../library/ZendAfi/Form/Login.php:127 msgid "Login" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219 +#, fuzzy, php-format +msgid "Login : %s" +msgstr "Cote: %s" + #: ../../library/Class/AdminVar.php:151 ../../library/Class/AdminVar.php:152 msgid "Login ARTE VOD" msgstr "" @@ -13478,6 +13959,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:155 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 msgid "Longueur" msgstr "" @@ -13503,6 +13985,11 @@ msgstr "" msgid "MARC 21" msgstr "" +#: ../../library/Class/CriteresRecherche.php:973 +#, fuzzy, php-format +msgid "Ma recherche \"%s\"" +msgstr "Búsqueda Tipo" + #: ../../library/Class/Users.php:261 ../../library/Class/Users.php:261 #: ../../library/Class/Users.php:262 ../../library/Class/Users.php:241 msgid "Madame" @@ -13629,6 +14116,16 @@ msgstr "Importe máximo de reserva para este artÃculo" msgid "Me connecter" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:46 +#, fuzzy +msgid "Me notifier des nouveautés" +msgstr "Fecha de novedad" + +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:37 +#, fuzzy +msgid "Me notifier des nouveautés par email" +msgstr "Editar contenido" + #: ../../library/ZendAfi/Form/Album/Ressource.php:43 #: ../../library/ZendAfi/Form/Album/Ressource.php:43 msgid "Media" @@ -13734,6 +14231,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48 #: ../../application/modules/opac/controllers/AbonneController.php:1182 #: ../../application/modules/opac/controllers/AbonneController.php:1184 +#: ../../application/modules/opac/controllers/AbonneController.php:1199 #, fuzzy msgid "Mes activités suivies" msgstr "O cambiar su información de carrito de la compra" @@ -13753,6 +14251,7 @@ msgstr "Bibliotecas" #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23 #: ../../application/modules/opac/controllers/AbonneController.php:1048 #: ../../application/modules/opac/controllers/AbonneController.php:1050 +#: ../../application/modules/opac/controllers/AbonneController.php:1065 #, fuzzy msgid "Mes cartes" msgstr "Mi Carrito de Compras" @@ -13762,6 +14261,12 @@ msgstr "Mi Carrito de Compras" msgid "Mes derniers paniers" msgstr "Mis últimos cestas" +#: ../../application/modules/opac/controllers/AbonneController.php:1021 +#: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 +#, fuzzy +msgid "Mes favoris" +msgstr "Mi Carrito de Compras" + #: ../../application/modules/opac/controllers/AbonneController.php:1184 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1183 @@ -13769,13 +14274,14 @@ msgstr "Mis últimos cestas" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1176 #: ../../application/modules/opac/controllers/AbonneController.php:1178 +#: ../../application/modules/opac/controllers/AbonneController.php:1193 #, fuzzy msgid "Mes inscriptions en cours" msgstr "Las reservas actuales" #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1553 #: ../../library/Class/Users.php:1564 ../../library/Class/Users.php:1543 -#: ../../library/Class/Users.php:1546 +#: ../../library/Class/Users.php:1546 ../../library/Class/Users.php:1550 msgid "Mes paniers" msgstr "Mi Carrito de Compras" @@ -13787,7 +14293,7 @@ msgstr "Su cesta de documentos" #: ../../library/Class/Users.php:1586 ../../library/Class/Users.php:1586 #: ../../library/Class/Users.php:1597 ../../library/Class/Users.php:1576 -#: ../../library/Class/Users.php:1579 +#: ../../library/Class/Users.php:1579 ../../library/Class/Users.php:1583 msgid "Mes paniers rattachés à un domaine" msgstr "Mis cestas unidos a un dominio" @@ -13813,6 +14319,11 @@ msgstr "Recursos digitales" msgid "Mes recherches" msgstr "Búsqueda Tipo" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:81 +#, fuzzy +msgid "Mes recherches favorites" +msgstr "Búsqueda Tipo" + #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:33 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:27 #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:34 @@ -13903,6 +14414,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:481 +#: ../../application/modules/opac/controllers/RechercheController.php:484 msgid "Message du demandeur :" msgstr "Mensaje del solicitante:" @@ -13976,6 +14488,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 #: ../../library/Class/Feature/List.php:68 #: ../../library/Class/Feature/List.php:145 +#: ../../library/Class/Feature/List.php:146 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:96 msgid "Mise en page" msgstr "Layout" @@ -14012,6 +14526,8 @@ msgstr "Actualización de la ubicación" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../application/modules/admin/controllers/IndexController.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 +#: ../../application/modules/admin/controllers/IndexController.php:152 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #, fuzzy msgid "Mise à jour de la charte graphique" msgstr "Actualización de la ubicación" @@ -14102,6 +14618,7 @@ msgstr "Actualización de la base de datos" #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 #: ../../library/Class/Migration/ScriptPatchs.php:74 #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 +#: ../../library/Class/Migration/ScriptPatchs.php:80 msgid "Mise à niveau de la base effectuée avec succès" msgstr "Actualización de la base completado con éxito" @@ -14181,6 +14698,7 @@ msgstr "Método de selección de los usuarios" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:178 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 msgid "Modification Thesaurus" msgstr "Cambiar Thesaurus" @@ -14254,6 +14772,13 @@ msgstr "Cambio de la relación de aspecto: %s" msgid "Modifier" msgstr "Cambiar" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230 +#, fuzzy, php-format +msgid "Modifier \"%s\"" +msgstr "Cambiar" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #, fuzzy, php-format @@ -14409,6 +14934,7 @@ msgstr " Cambiar mi" #: ../../application/modules/admin/controllers/IndexController.php:85 #: ../../application/modules/admin/controllers/IndexController.php:94 #: ../../application/modules/admin/controllers/IndexController.php:94 +#: ../../application/modules/admin/controllers/IndexController.php:102 #, php-format msgid "Modifier la variable: %s" msgstr "" @@ -14697,6 +15223,7 @@ msgstr "Cambiar" #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:27 msgid "Modifié le" msgstr "" @@ -14746,6 +15273,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../application/modules/admin/controllers/PrintController.php:31 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:98 msgid "Modèles d'impressions" msgstr "Plantillas de impresión" @@ -14762,14 +15290,14 @@ msgid "Modération des alertes" msgstr "Alertas de moderación" #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:358 -#: ../../library/Class/AdminVar.php:355 +#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" msgstr "" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:357 -#: ../../library/Class/AdminVar.php:354 +#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -14804,6 +15332,7 @@ msgid "Modération des tags sur les notices" msgstr "Etiquetas de moderación en los registros" #: ../../library/Class/Feature/List.php:163 +#: ../../library/Class/Feature/List.php:164 #, fuzzy msgid "Modération des vidéos" msgstr "Alertas de moderación" @@ -14840,6 +15369,11 @@ msgstr "" msgid "Moissonnage Orphea" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:70 +#, fuzzy +msgid "Moissonnage activé" +msgstr "Cosechar Vodeclic" + #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 #, fuzzy @@ -14847,6 +15381,7 @@ msgid "Moissonnage automatique" msgstr "Cosechar Numilog" #: ../../library/Class/Feature/List.php:153 +#: ../../library/Class/Feature/List.php:154 #, fuzzy msgid "Moissonnage des notices de musicMe" msgstr "La cosecha en curso" @@ -14857,6 +15392,11 @@ msgstr "La cosecha en curso" msgid "Moissonnage des évènements de l'agenda \"%s\"" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:66 +#, fuzzy +msgid "Moissonnage désactivé" +msgstr "Cosechar Vodeclic" + #: ../../application/modules/admin/views/scripts/harvest/orphea-browse.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 @@ -14946,9 +15486,15 @@ msgstr "Piezas" #: ../../library/ZendAfi/Form/Register.php:42 #: ../../library/ZendAfi/Form/Admin/User.php:73 #: ../../library/ZendAfi/Form/Admin/Library.php:240 +#: ../../library/ZendAfi/Form/Login.php:138 msgid "Mot de passe" msgstr "Contraseña" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220 +#, fuzzy, php-format +msgid "Mot de passe : %s" +msgstr "Contraseña" + #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:180 #: ../../library/Class/AdminVar.php:177 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" @@ -15004,6 +15550,7 @@ msgstr "Use palabras clave" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 msgid "Multimedia" msgstr "Multimedia" @@ -15058,8 +15605,7 @@ msgstr "Páginas web" msgid "N'envoie pas de données" msgstr "No envÃe datos" -#: ../../library/Class/FRBR/Link.php:160 -#: ../../library/Class/FRBR/Link.php:162 +#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162 #: ../../library/Class/FRBR/Link.php:162 msgid "N'est pas une url valide" msgstr "¿No es una URL válida" @@ -15165,6 +15711,7 @@ msgstr "" #: ../../library/Class/User/CardsNotification.php:58 #: ../../library/Class/User/CardsNotification.php:58 +#: ../../library/Class/Feature.php:177 msgid "Ne plus m'avertir" msgstr "" @@ -15221,6 +15768,7 @@ msgstr "Nivel de acceso requerido" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:160 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:151 msgid "Niveau de catalogage" msgstr "" @@ -15232,6 +15780,7 @@ msgstr "Nivel programa:" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:149 msgid "Niveau hiérarchique" msgstr "" @@ -15391,9 +15940,15 @@ msgstr "Nombre" #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:31 #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:33 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:29 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:31 msgid "Nom :" msgstr "Nombre:" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212 +#, fuzzy, php-format +msgid "Nom : %s" +msgstr "Nombre:" + #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 msgid "Nom commence par" @@ -15401,12 +15956,13 @@ msgstr "Nombre comienza con" #: ../../application/modules/admin/controllers/IndexController.php:175 #: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:194 #, fuzzy msgid "Nom d'utilisateur ou mot de passe invalide" msgstr "Nombre de usuario o contraseña incorrecta." #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" @@ -15432,10 +15988,16 @@ msgstr "Nombre de biblioteca" msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123 +#, fuzzy, php-format +msgid "Nom de la permission à donner : \"%s\"" +msgstr "Número de traducciones: %s" + #: ../../application/modules/admin/views/scripts/index/index.phtml:26 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#: ../../application/modules/admin/views/scripts/index/index.phtml:37 #, fuzzy msgid "Nom du domaine" msgstr "Cesta Nombre" @@ -15458,7 +16020,7 @@ msgid "Nom du responsable" msgstr "Nombre del responsable" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:243 +#: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245 msgid "Nom du site" msgstr "" @@ -15481,6 +16043,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:473 +#: ../../application/modules/opac/controllers/RechercheController.php:476 #, php-format msgid "Nom et prénom : %s" msgstr "Nombre: %s" @@ -15496,6 +16059,11 @@ msgstr "" msgid "Nombre d'albums" msgstr "CategorÃas de álbumes" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:332 +#, fuzzy, php-format +msgid "Nombre d'albums présents : %d" +msgstr "CategorÃas de álbumes" + #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 #, fuzzy @@ -15626,17 +16194,17 @@ msgid "Nombre d\\'événements mis à jour : %s\n" msgstr "Avisos de suscriptores: %s" #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "" #: ../../library/Class/AdminVar.php:350 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:348 +#: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "" #: ../../library/Class/AdminVar.php:349 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:347 +#: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "" @@ -15702,7 +16270,7 @@ msgid "Nombre de formulaires : %s" msgstr "Número de formas: %s" #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:361 -#: ../../library/Class/AdminVar.php:358 +#: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "" @@ -15713,6 +16281,11 @@ msgstr "" msgid "Nombre de jours restant sur la licence" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150 +#, fuzzy +msgid "Nombre de membres" +msgstr "No se copia." + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 #, fuzzy @@ -15839,7 +16412,7 @@ msgid "Nombre de vignettes reconnues" msgstr "Número de divisiones" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:251 +#: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -15902,6 +16475,8 @@ msgstr "Número de registros por página" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:56 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12 msgid "Non" msgstr "No" @@ -15925,9 +16500,15 @@ msgstr "" #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:275 +#: ../../library/Class/Exemplaire.php:291 msgid "Non disponible" msgstr "" +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:11 +msgid "Non je ne veux pas" +msgstr "" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare.php:61 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/MultiCheckbox.php:37 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/DomainSelect.php:52 @@ -15984,6 +16565,7 @@ msgid "Notice \"%s\" retirée du panier" msgstr "Note \"%s\" eliminado del carrito" #: ../../application/modules/opac/controllers/RechercheController.php:306 +#: ../../application/modules/opac/controllers/RechercheController.php:800 #, fuzzy msgid "Notice Bokeh" msgstr "Registros:" @@ -16025,6 +16607,7 @@ msgstr "1 resultado" #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:475 +#: ../../application/modules/opac/controllers/RechercheController.php:478 msgid "Notice réservée : " msgstr "Registro Reservado:" @@ -16062,6 +16645,7 @@ msgstr "Registros:" #: ../../library/Class/Codification.php:234 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 msgid "Notices liées" msgstr "Registros vinculados" @@ -16087,6 +16671,10 @@ msgstr "Elementos encontrados" msgid "Notices à traiter: %s" msgstr "Registros vinculados" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:30 +msgid "Notification des nouveautés dans les recherches favorites" +msgstr "" + #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 msgid "" @@ -16170,6 +16758,11 @@ msgstr "Nuevo tipo de campo" msgid "Nouveau type de relation" msgstr "Nueva relación" +#: ../../library/Class/User/BookmarkedSearch.php:112 +#, fuzzy, php-format +msgid "Nouveau(x) résultat(s) pour votre recherche %s" +msgstr "Resultados de la búsqueda TÃtulo" + #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 @@ -16179,6 +16772,8 @@ msgstr "Novelty" #: ../../application/modules/admin/controllers/FeatureController.php:36 #: ../../application/modules/admin/controllers/FeatureController.php:58 +#: ../../application/modules/admin/controllers/FeatureController.php:37 +#: ../../application/modules/admin/controllers/FeatureController.php:59 #, fuzzy msgid "Nouveauté inconnue" msgstr "Novelty" @@ -16195,6 +16790,7 @@ msgstr "Noticias" #: ../../application/modules/admin/views/scripts/feature/index.phtml:68 #: ../../application/modules/admin/views/scripts/feature/index.phtml:70 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:86 #, fuzzy, php-format msgid "Nouveautés : %d" msgstr "Noticias" @@ -16240,6 +16836,12 @@ msgstr "Nuevo en:" msgid "Nouveautés de moins de: " msgstr "Nuevo en:" +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#, fuzzy, php-format +msgid "Nouveautés du %s" +msgstr "Noticias" + #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 msgid "Nouveautés uniquement" @@ -16302,6 +16904,10 @@ msgstr "Nueva relación" msgid "Nouvelles fonctionnalités" msgstr "Función" +#: ../../library/Class/Feature.php:184 +msgid "Nouvelles fonctionnalités depuis votre dernière connexion : " +msgstr "" + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 msgid "Nov" @@ -16343,6 +16949,7 @@ msgstr "Número" #: ../../library/ZendAfi/Form/SecurePassword.php:29 #: ../../library/ZendAfi/Form/SecurePassword.php:29 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:53 #, fuzzy msgid "Numéro de carte" msgstr "No de carné" @@ -16367,6 +16974,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:55 msgid "Numéro de commande" msgstr "" @@ -16593,6 +17201,7 @@ msgstr "Colegio de división" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 +#: ../../library/Class/CriteresRecherche.php:138 #, fuzzy msgid "Ordre du panier" msgstr "TÃtulo cesta" @@ -16654,6 +17263,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:55 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5 msgid "Oui" msgstr "SÃ" @@ -16732,6 +17343,11 @@ msgstr "" msgid "Ouvrir dans un nouvel onglet" msgstr "En una ficha" +#: ../../application/modules/admin/views/scripts/profil/_page_row.phtml:34 +#, fuzzy, php-format +msgid "Ouvrir la page \"%s\" dans un nouvel onglet" +msgstr "En una ficha" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 msgid "Ouvrir le lien dans un nouvel onglet" @@ -16766,7 +17382,7 @@ msgid "Où le trouver dans mes bibliothèques favorites" msgstr "Busquar en la biblioteca de su elección" #: ../../library/Class/AdminVar.php:367 ../../library/Class/AdminVar.php:368 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370 msgid "PIWIK authentication token for widgets" msgstr "" @@ -16777,6 +17393,7 @@ msgstr "" #: ../../application/modules/admin/controllers/AlbumController.php:75 #: ../../library/Class/Batch/Dilicom.php:30 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82 msgid "PNB Dilicom" msgstr "" @@ -16850,8 +17467,7 @@ msgstr "Página siguiente" msgid "Page: " msgstr "Página:" -#: ../../library/Class/NoticeHtml.php:82 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "Paginación" @@ -17046,6 +17662,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:26 +#: ../../application/modules/admin/views/scripts/index/index.phtml:20 msgid "Paramètres du site" msgstr "Configuración del sitio" @@ -17053,6 +17670,11 @@ msgstr "Configuración del sitio" msgid "Paramètres manquants dans la requête de suppression" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105 +#, fuzzy +msgid "Paramétrage" +msgstr "Establezca esta página" + #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147 @@ -17118,6 +17740,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:66 +#: ../../application/modules/admin/views/scripts/index/index.phtml:60 msgid "Participez à la communauté" msgstr "" @@ -17130,6 +17753,7 @@ msgstr "todo" #: ../../library/ZendAfi/Controller/Action.php:251 #: ../../library/ZendAfi/Controller/Action.php:261 #: ../../library/ZendAfi/Controller/Action.php:261 +#: ../../library/ZendAfi/Controller/Action.php:284 msgid "" "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. " "Merci de remplir manuellement" @@ -17178,6 +17802,11 @@ msgstr "Anterior" msgid "Pas de version suivante" msgstr "Página siguiente" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:17 +#, fuzzy +msgid "Pas encore de nouveauté." +msgstr "Fecha de novedad" + #: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:212 msgid "Password du portail fourni par Kidilangues." @@ -17242,6 +17871,7 @@ msgid "Permalien vignette :" msgstr "Editar miniaturas" #: ../../library/Class/Feature/List.php:186 +#: ../../library/Class/Feature/List.php:187 msgid "Permet d'afficher un ou plusieurs kiosques de notices dans un article" msgstr "" @@ -17289,6 +17919,7 @@ msgstr "Casilla de verificación" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Pertinence" msgstr "Relevancia" @@ -17348,6 +17979,7 @@ msgstr "Pictograma" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 msgid "Pictogrammes des genres" msgstr "Géneros Pictogramas" @@ -17369,6 +18001,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:110 msgid "Piwik" msgstr "" @@ -17478,6 +18111,7 @@ msgstr "Plano de acceso" #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285 #, fuzzy msgid "Planification" msgstr "Publicación" @@ -17501,6 +18135,7 @@ msgstr "Cambiar de ubicación: \"%s\"" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310 msgid "Plannifier la tâche" msgstr "" @@ -17568,6 +18203,7 @@ msgstr "Punto" #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460 +#: ../../library/Class/AdminVar.php:465 msgid "Portail" msgstr "Portal" @@ -17576,7 +18212,7 @@ msgstr "Portal" #: ../../library/Class/AdminVar.php:240 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187 -#: ../../library/Class/AdminVar.php:237 +#: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239 msgid "Position" msgstr "Posición" @@ -17588,7 +18224,7 @@ msgid "Position de la pagination" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:239 -#: ../../library/Class/AdminVar.php:236 +#: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238 msgid "Position de la pagination en résultat de recherche" msgstr "" @@ -17601,6 +18237,7 @@ msgid "Position des filtres" msgstr "Gestión de usuarios" #: ../../library/Class/Feature/List.php:131 +#: ../../library/Class/Feature/List.php:132 msgid "" "Possibilité d'éditer ou d'ajouter un site, dans une boite sithothèque, " "depuis l'interface publique." @@ -17625,10 +18262,17 @@ msgstr "Publicado por" #: ../../library/Class/Users.php:1084 ../../library/Class/Users.php:1084 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1072 -#: ../../library/Class/Users.php:1075 +#: ../../library/Class/Users.php:1075 ../../library/Class/Users.php:1079 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:" +#: ../../library/Class/User/BookmarkedSearch.php:161 +#, php-format +msgid "" +"Pour annuler les prochaines notifications de nouveautés pour la recherche " +"%s. Veuillez cliquer sur le lien: %s" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 msgid "" @@ -17664,6 +18308,11 @@ msgid "Pour valider l'abonnement, merci de cliquer sur le lien suivant:" msgstr "" "Para validar la suscripción, gracias a hacer clic en el siguiente enlace:" +#: ../../library/Class/User/BookmarkedSearch.php:154 +#, php-format +msgid "Pour voir toutes ces nouveautés sur le portail, suivez le lien: %s" +msgstr "" + #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 msgid "" @@ -17673,6 +18322,11 @@ msgstr "" "Para darse de baja del boletÃn de noticias, gracias a hacer clic en el " "siguiente enlace:" +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:38 +#, fuzzy, php-format +msgid "Pour: %s " +msgstr "por: %s" + #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 msgid "Pourcentages" @@ -17686,6 +18340,7 @@ msgstr "¿Por qué le sugerirÃa este documento?" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 msgid "Premier-Chapitre" msgstr "" @@ -17746,6 +18401,7 @@ msgid "Prix" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:43 +#: ../../application/modules/admin/controllers/FeatureController.php:44 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" est toujours une nouveauté " @@ -17753,6 +18409,7 @@ msgid "" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:65 +#: ../../application/modules/admin/controllers/FeatureController.php:66 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" n'est toujours pas une " @@ -17821,7 +18478,7 @@ msgid "Profil de données %s (%d) non présent ou mal configuré" msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -17830,6 +18487,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:97 msgid "Profils" msgstr "Perfiles" @@ -17987,6 +18645,7 @@ msgstr "Visualizar registros Inmuebles" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:124 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:358 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:367 +#: ../../application/modules/admin/controllers/FileManagerController.php:304 #, fuzzy, php-format msgid "Propriétés de \"%s\"" msgstr "CaracterÃsticas del módulo" @@ -18039,6 +18698,10 @@ msgstr "Publicado por" msgid "Protocole HTTP obligatoire" msgstr "" +#: ../../application/modules/api/controllers/UserController.php:26 +msgid "Protocole HTTPS obligatoire" +msgstr "" + #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:160 @@ -18090,6 +18753,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:567 #: ../../application/modules/opac/controllers/AuthController.php:601 #: ../../application/modules/opac/controllers/AuthController.php:608 +#: ../../application/modules/opac/controllers/AuthController.php:603 #, fuzzy msgid "Préinscription" msgstr "Registro" @@ -18099,6 +18763,7 @@ msgstr "Registro" #: ../../application/modules/opac/controllers/AuthController.php:541 #: ../../application/modules/opac/controllers/AuthController.php:575 #: ../../application/modules/opac/controllers/AuthController.php:582 +#: ../../application/modules/opac/controllers/AuthController.php:577 #, fuzzy, php-format msgid "Préinscription à %s" msgstr "Registro" @@ -18196,6 +18861,14 @@ msgstr "Prevista" msgid "Prévisualisation de la notice %s" msgstr "Vistas de registros" +#: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 +#: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 +#, fuzzy, php-format +msgid "" +"Prévisualisation du panier \"%s\" en résultat de recherche dans un nouvel " +"onglet" +msgstr "Activación de la disponibilidad en el resultado de búsqueda" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 @@ -18218,8 +18891,7 @@ msgstr "Activación de la disponibilidad en el resultado de búsqueda" msgid "Prêt" msgstr "Préstamo" -#: ../../library/Class/User/Cards.php:67 -#: ../../library/Class/User/Cards.php:67 +#: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 #, fuzzy msgid "Prêt introuvable" msgstr "Usuario no encontrado" @@ -18252,6 +18924,7 @@ msgstr "Préstamos por cobrar" #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:85 msgid "Prêts en cours" msgstr "Préstamos por cobrar" @@ -18487,6 +19160,7 @@ msgstr "Relaciones" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:160 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 msgid "Rapports statistiques" msgstr "Informes estadÃsticos" @@ -18554,12 +19228,14 @@ msgid "Recherche fédérée" msgstr "" #: ../../library/Class/Feature/List.php:152 +#: ../../library/Class/Feature/List.php:153 msgid "Recherche fédérée pour MusicMe" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:224 +#: ../../application/modules/opac/controllers/RechercheController.php:222 msgid "Recherche guidée" msgstr "Búsqueda guiada" @@ -18620,6 +19296,11 @@ msgstr "Buscar" msgid "Rechercher aussi sur " msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:420 +#, fuzzy, php-format +msgid "Rechercher dans \"%s\"" +msgstr "Buscar" + #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 msgid "Rechercher des stagiaires" @@ -18636,6 +19317,7 @@ msgid "Rechercher des utilisateurs " msgstr "Encontrar Usuarios" #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:419 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:425 #, fuzzy msgid "Rechercher le terme saisie" msgstr "Buscar Precios" @@ -18691,6 +19373,7 @@ msgstr "Añadir una biblioteca" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../application/modules/admin/controllers/StatController.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:111 msgid "Recherches infructueuses" msgstr "Búsquedas fallidas" @@ -18705,6 +19388,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:287 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:292 +#: ../../application/modules/admin/controllers/FileManagerController.php:230 #, php-format msgid "Redimensionner l'image \"%s\"" msgstr "" @@ -18851,6 +19535,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:92 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:327 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:332 +#: ../../application/modules/admin/controllers/FileManagerController.php:269 #, fuzzy, php-format msgid "Renommer \"%s\"" msgstr "Book %s" @@ -19049,6 +19734,7 @@ msgstr "Ir al sitio %s" #: ../../library/ZendAfi/View/Helper/BibView.php:61 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:178 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:168 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Retour" msgstr "Volver" @@ -19224,6 +19910,7 @@ msgstr "Nueva contraseña" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 msgid "Rédacteur bibliothèque" msgstr "" @@ -19231,6 +19918,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:243 msgid "Rédacteur portail" msgstr "" @@ -19267,6 +19955,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:326 #: ../../application/modules/opac/controllers/AuthController.php:333 +#: ../../application/modules/opac/controllers/AuthController.php:328 #, fuzzy msgid "Réinitialisation du mot de passe" msgstr "Nueva contraseña" @@ -19339,6 +20028,7 @@ msgstr "Las redes sociales y los contactos" #: ../../application/modules/telephone/views/scripts/recherche/reservation.phtml:2 #: ../../application/modules/opac/controllers/RechercheController.php:563 #: ../../application/modules/opac/controllers/RechercheController.php:578 +#: ../../application/modules/opac/controllers/RechercheController.php:581 msgid "Réservation" msgstr "Reserva" @@ -19390,8 +20080,7 @@ msgstr "" msgid "Réservation interdite pour l'abonné." msgstr "" -#: ../../library/Class/User/Cards.php:77 -#: ../../library/Class/User/Cards.php:77 +#: ../../library/Class/User/Cards.php:77 ../../library/Class/User/Cards.php:77 #, fuzzy msgid "Réservation introuvable" msgstr "Reservas imposible" @@ -19493,6 +20182,7 @@ msgstr "Resultados CVS" #: ../../library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php:38 #: ../../application/modules/opac/controllers/RechercheController.php:202 #: ../../application/modules/opac/controllers/RechercheController.php:203 +#: ../../application/modules/opac/controllers/RechercheController.php:207 msgid "Résultat de la recherche" msgstr "Resultado de la búsqueda" @@ -19624,6 +20314,7 @@ msgstr "Edite la sesión: %s" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34 #: ../../application/modules/opac/controllers/AbonneController.php:1170 #: ../../application/modules/opac/controllers/AbonneController.php:1172 +#: ../../application/modules/opac/controllers/AbonneController.php:1187 #, fuzzy msgid "S'inscrire à une activité" msgstr "Registrarse para la formación" @@ -19637,6 +20328,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:68 msgid "Salle de discussion #Bokeh" msgstr "" @@ -19748,12 +20440,14 @@ msgstr "Sector" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:115 #: ../../library/Class/TableDescription/PNBItemsExport.php:41 #: ../../library/Class/TableDescription/PNBLoans.php:36 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 msgid "Section" msgstr "Sección" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 #, php-format msgid "Section: %s" msgstr "Sección: %s" @@ -19874,6 +20568,8 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:326 #: ../../application/modules/opac/controllers/NoticeajaxController.php:372 #: ../../library/ZendAfi/View/Helper/Trailer.php:32 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:325 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:371 msgid "Service non disponible" msgstr "Servicio No Disponible" @@ -19926,7 +20622,7 @@ msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "" #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:375 -#: ../../library/Class/AdminVar.php:372 +#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -19937,6 +20633,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:30 #: ../../library/Class/Users.php:1085 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1073 ../../library/Class/Users.php:1076 +#: ../../library/Class/Users.php:1080 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." @@ -20018,6 +20715,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:68 +#: ../../application/modules/admin/views/scripts/index/index.phtml:62 #, fuzzy msgid "Site communautaire" msgstr "TÃtulo o comentario requerida" @@ -20107,6 +20805,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:63 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79 msgid "Sitothèque" msgstr "Páginas web" @@ -20197,6 +20896,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:109 msgid "Statistiques" msgstr "EstadÃsticas" @@ -20240,6 +20940,7 @@ msgstr "Estado" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:156 #: ../../library/ZendAfi/Form/Album.php:146 #: ../../library/ZendAfi/Form/Album.php:147 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 msgid "Statut" msgstr "Estado" @@ -20385,6 +21086,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/abonne/suggestion-achat-add.phtml:2 #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:136 msgid "Suggérer un achat" msgstr "Sugiera una Compra" @@ -20451,6 +21153,7 @@ msgstr "Temas" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:229 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:231 msgid "Super administrateur" msgstr "" @@ -20563,6 +21266,7 @@ msgstr "Retire" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:102 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:103 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:196 +#: ../../application/modules/admin/controllers/FileManagerController.php:128 #, fuzzy, php-format msgid "Supprimer \"%s\"" msgstr "Retire" @@ -20676,6 +21380,16 @@ msgstr "Su solicitud" msgid "Supprimer la lettre d'information" msgstr "Newsletter Email?" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:66 +#, fuzzy, php-format +msgid "Supprimer la recherche \"%s\"" +msgstr "Eliminar artÃculo: %s" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:37 +#, fuzzy +msgid "Supprimer la recherche de mes favoris" +msgstr "Eliminar CategorÃa" + #: ../../application/modules/admin/controllers/MultimediaController.php:61 #, fuzzy msgid "Supprimer la réservation ?" @@ -20771,6 +21485,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:134 msgid "Système" msgstr "Sistema" @@ -20895,6 +21610,10 @@ msgstr "" msgid "Tableau" msgstr "" +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:74 +msgid "Tableau de bord" +msgstr "" + #: ../../application/modules/admin/controllers/StatController.php:64 #: ../../application/modules/admin/controllers/StatController.php:62 #: ../../application/modules/admin/controllers/StatController.php:62 @@ -20978,11 +21697,12 @@ msgstr "Tamaño:" #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:38 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:40 msgid "Taille :" msgstr "Tamaño:" #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396 -#: ../../library/Class/AdminVar.php:393 +#: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398 msgid "Taille du dossier userfiles en méga octets." msgstr "" @@ -21048,6 +21768,7 @@ msgstr "Territorio" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:119 msgid "Territoires" msgstr "Territorios" @@ -21070,6 +21791,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 msgid "Test des web-services" msgstr "Servicios de pruebas web" @@ -21082,6 +21804,7 @@ msgstr "Repleto de dominio: %s" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 msgid "Test envoi mails" msgstr "Prueba de envÃo de mails" @@ -21164,7 +21887,7 @@ msgid "Texte de confirmation" msgstr "Error de configuración" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280 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 " @@ -21172,7 +21895,7 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 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 " @@ -21436,6 +22159,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:58 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:21 #: ../../library/ZendAfi/Form/Album.php:131 +#: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:61 msgid "Titre" msgstr "TÃtulo" @@ -21458,6 +22183,7 @@ msgstr "TÃtulo" #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:476 +#: ../../application/modules/opac/controllers/RechercheController.php:479 #, php-format msgid "Titre : %s" msgstr "TÃtulo: %s" @@ -21494,6 +22220,11 @@ msgstr "TÃtulo Caja" msgid "Titre de la boîte" msgstr "TÃtulo Caja" +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:32 +#, fuzzy +msgid "Titre de votre recherche" +msgstr "Cuadro de búsqueda" + #: ../../library/ZendAfi/Form/CreerPanier.php:30 #: ../../library/ZendAfi/Form/Panier.php:32 #: ../../library/ZendAfi/Form/CreerPanier.php:30 @@ -21604,6 +22335,7 @@ msgstr "Todos los domingos" #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 #: ../../library/ZendAfi/Form/Configuration/Widget/PremierChapitre.php:37 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:30 msgid "Tous les documents" msgstr "Todos los documentos" @@ -21745,6 +22477,7 @@ msgstr "Traducción" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 msgid "Traductions" msgstr "Traducciones" @@ -21960,6 +22693,8 @@ msgstr "Tipo de documento: %s" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:157 #: ../../library/ZendAfi/Form/Album.php:170 #: ../../library/ZendAfi/Form/Album.php:171 +#: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 msgid "Type de document" msgstr "Tipo de documento" @@ -22090,6 +22825,7 @@ msgstr "Tipos de campos personalizados" #: ../../library/ZendAfi/Form/Configuration/Profile.php:323 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:172 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:165 msgid "Types de documents" msgstr "Tipos de documentos" @@ -22171,6 +22907,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/MonocleReaderServerSide.php:112 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:93 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:85 #, php-format msgid "Télécharger" msgstr "Descargar" @@ -22277,6 +23014,7 @@ msgstr "Subir varios archivos" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:239 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:244 +#: ../../application/modules/admin/controllers/FileManagerController.php:181 #, fuzzy, php-format msgid "Téléverser un fichier dans \"%s\"" msgstr "Subir varios archivos" @@ -22316,6 +23054,16 @@ msgstr "URL Objeto" msgid "URL Objet B" msgstr "URL Objeto B" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234 +#, php-format +msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243 +#, php-format +msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\"" +msgstr "" + #: ../../library/ZendAfi/Form/BiographieNotice.php:28 #: ../../library/ZendAfi/Form/BiographieNotice.php:28 msgid "URL Wikipedia de l'auteur" @@ -22376,13 +23124,11 @@ msgstr "" msgid "URL du site web" msgstr "" -#: ../../library/Class/FRBR/Link.php:159 -#: ../../library/Class/FRBR/Link.php:159 +#: ../../library/Class/FRBR/Link.php:159 ../../library/Class/FRBR/Link.php:159 msgid "URL objet A est requis" msgstr "Se requiere un objeto URL" -#: ../../library/Class/FRBR/Link.php:161 -#: ../../library/Class/FRBR/Link.php:161 +#: ../../library/Class/FRBR/Link.php:161 ../../library/Class/FRBR/Link.php:161 msgid "URL objet B est requis" msgstr "Se requiere URL objeto B" @@ -22398,6 +23144,11 @@ msgstr "Los campos personalizados" msgid "URL principale" msgstr "TÃtulo cesta" +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:56 +#, fuzzy +msgid "URL publique :" +msgstr "Sección:" + #: ../../library/Class/IntProfilDonnees.php:49 #: ../../library/Class/IntProfilDonnees.php:49 msgid "UTF-8" @@ -22440,6 +23191,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:553 #: ../../application/modules/opac/controllers/AuthController.php:587 #: ../../application/modules/opac/controllers/AuthController.php:594 +#: ../../application/modules/opac/controllers/AuthController.php:589 #, fuzzy, php-format msgid "" "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ." @@ -22463,9 +23215,9 @@ msgid "Un libellé est requis" msgstr "Se requiere una etiqueta" #: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1142 -#: ../../library/Class/User/LostPass.php:110 -#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130 -#: ../../library/Class/Users.php:1133 +#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151 +#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133 +#: ../../library/Class/Users.php:1137 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." @@ -22485,6 +23237,7 @@ msgid "Un modèle a déjà le même nom : %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 msgid "Un seul fichier doit être transféré." msgstr "" @@ -22493,6 +23246,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:396 #: ../../application/modules/opac/controllers/AuthController.php:430 #: ../../application/modules/opac/controllers/AuthController.php:437 +#: ../../application/modules/opac/controllers/AuthController.php:432 msgid "" "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le " "compte qui utilise cet email." @@ -22512,6 +23266,7 @@ msgstr "Se requiere una etiqueta" #: ../../application/modules/opac/controllers/AuthController.php:424 #: ../../application/modules/opac/controllers/AuthController.php:458 #: ../../application/modules/opac/controllers/AuthController.php:465 +#: ../../application/modules/opac/controllers/AuthController.php:460 msgid "" "Une demande de confirmation d'inscription vous a été envoyée à l'adresse " "mail renseignée." @@ -22521,6 +23276,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:276 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:281 +#: ../../application/modules/admin/controllers/FileManagerController.php:218 msgid "Une erreur c' produite. Le téléversage a échoué." msgstr "" @@ -22572,6 +23328,7 @@ msgstr "Ignorar el error y continuar" #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:454 #: ../../application/modules/opac/controllers/AuthController.php:461 +#: ../../application/modules/opac/controllers/AuthController.php:456 msgid "" "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez " "réessayer. Si le problème persiste, veuillez contacter votre médiathèque." @@ -22585,6 +23342,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1154 #: ../../application/modules/opac/controllers/AbonneController.php:1147 #: ../../application/modules/opac/controllers/AbonneController.php:1149 +#: ../../application/modules/opac/controllers/AbonneController.php:1164 #, php-format msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s" msgstr "" @@ -22602,7 +23360,8 @@ msgstr "" #: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369 #: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377 #: ../../library/Class/Profil.php:1389 ../../library/Class/Profil.php:1393 -#: ../../library/Class/Profil.php:1397 +#: ../../library/Class/Profil.php:1397 ../../library/Class/Profil.php:1390 +#: ../../library/Class/Profil.php:1394 ../../library/Class/Profil.php:1398 msgid "Une marge interne de division ne peut pas excéder 20 pixels." msgstr "" @@ -22681,18 +23440,29 @@ msgstr "Plano de acceso" msgid "Url d'import d'un agenda TYPO3" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:65 +#, fuzzy +msgid "Url de la ressource externe Dilicom" +msgstr "Añadir recursos" + #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Url de recherche" msgstr "" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:387 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386 +#: ../../library/Class/AdminVar.php:391 msgid "Url du connecteur Le Social" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:58 +#, fuzzy +msgid "Url du fichier de DRM" +msgstr "Explorador de archivos" + #: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232 msgid "Url du proxy Redmine" msgstr "" @@ -22702,7 +23472,7 @@ msgid "Url du serveur PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:232 -#: ../../library/Class/AdminVar.php:229 +#: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231 msgid "Url du serveur redmine" msgstr "" @@ -22754,8 +23524,14 @@ msgstr "Repleto de dominio: %s" msgid "Utilisateur courant : %s" msgstr "Repleto de dominio: %s" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217 +#, fuzzy +msgid "Utilisateur créé pour ce test" +msgstr "Repleto de dominio: %s" + #: ../../application/modules/opac/controllers/AuthController.php:329 #: ../../application/modules/opac/controllers/AuthController.php:336 +#: ../../application/modules/opac/controllers/AuthController.php:331 #, fuzzy msgid "Utilisateur inconnu" msgstr "Repleto de dominio: %s" @@ -22767,6 +23543,7 @@ msgstr "Usuario no encontrado" #: ../../application/modules/admin/controllers/IndexController.php:170 #: ../../application/modules/admin/controllers/UsersController.php:117 +#: ../../application/modules/admin/controllers/IndexController.php:178 #, fuzzy msgid "Utilisateur invalide" msgstr "Usuario no encontrado" @@ -22788,6 +23565,7 @@ msgstr "Usuarios" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 #: ../../library/Class/Systeme/Report.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 msgid "Utilisateurs" msgstr "Usuarios" @@ -22922,11 +23700,13 @@ msgstr "Valores de campo personalizado guardado" #: ../../library/ZendAfi/View/Helper/BoutonIco.php:71 #: ../../library/ZendAfi/View/Helper/Bouton.php:72 #: ../../library/ZendAfi/View/Helper/Panier/Edit.php:85 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:52 msgid "Valider" msgstr "Validar" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:31 #, fuzzy msgid "Valider et continuer" msgstr "Ignorar el error y continuar" @@ -22965,6 +23745,7 @@ msgstr "Variable" #: ../../application/modules/admin/controllers/IndexController.php:93 #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:110 #, php-format msgid "Variable %s sauvegardée" msgstr "" @@ -22974,6 +23755,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/Class/Systeme/Report.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 msgid "Variables" msgstr "Variables" @@ -23010,6 +23792,7 @@ msgstr "Version" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:55 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:52 #, fuzzy, php-format msgid "Version de : \"%s\"" msgstr "Eliminar artÃculo: %s" @@ -23041,6 +23824,8 @@ msgstr "desconocido" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:93 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:69 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:66 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:78 #, fuzzy msgid "Version introuvable" msgstr "Reservas imposible" @@ -23050,6 +23835,7 @@ msgstr "Reservas imposible" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:142 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:99 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:84 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 #, fuzzy msgid "Version supprimée" msgstr "Reserva retira" @@ -23072,6 +23858,16 @@ msgstr "Eliminar artÃculo: %s" msgid "Versions de l'article : \"%s\"" msgstr "Eliminar artÃculo: %s" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267 +msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114 +msgid "" +"Veuillez activer la ressource pour pouvoir gérer les droits d'accès des " +"groupes" +msgstr "" + #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 #, fuzzy @@ -23083,9 +23879,16 @@ msgstr "Por favor, seleccione un registro" msgid "Veuillez choisir une notice" msgstr "Por favor, seleccione un registro" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187 +msgid "" +"Veuillez configurer les droits de cette ressource pour obtenir une connexion " +"SSO" +msgstr "" + #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 +#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:36 #, fuzzy msgid "Veuillez patienter ..." msgstr "Por favor espera ..." @@ -23114,6 +23917,10 @@ msgstr "" msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT" msgstr "" +#: ../../application/modules/admin/controllers/IndexController.php:81 +msgid "Veuillez renseigner le paramètre \"cle\"." +msgstr "" + #: ../../application/modules/admin/views/scripts/premier-chapitre/maj-ref.phtml:21 #: ../../application/modules/admin/controllers/PremierChapitreController.php:85 #: ../../application/modules/admin/controllers/PremierChapitreController.php:105 @@ -23287,6 +24094,11 @@ msgstr "Ciudad" msgid "Visionner le film dans son intégralité" msgstr "Ver la pelÃcula en su totalidad" +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:11 +#, fuzzy, php-format +msgid "Visualisation de l'article \"%s\" dans un nouvel onglet" +msgstr "En una ficha" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 @@ -23296,6 +24108,11 @@ msgstr "Ver la pelÃcula en su totalidad" msgid "Visualisation de l\\album" msgstr "Vistas de registros" +#: ../../application/modules/admin/views/scripts/catalogue/paniers.phtml:18 +#, fuzzy, php-format +msgid "Visualisation du panier \"%s\" dans un nouvel onglet" +msgstr "En una ficha" + #: ../../library/ZendAfi/View/Helper/BoutonIco.php:60 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:79 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:73 @@ -23312,6 +24129,11 @@ msgstr "Visualice" msgid "Visualiser la newsletter" msgstr "Confirmar la selección" +#: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:42 +#, fuzzy, php-format +msgid "Visualiser le domaine \"%s\" dans un nouvel onglet" +msgstr "En una ficha" + #: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:41 #, fuzzy, php-format msgid "Visualiser le domaine : %s" @@ -23329,6 +24151,11 @@ msgstr "Recuentos" msgid "Vodeclic" msgstr "Vodeclic" +#: ../../library/Class/User/BookmarkedSearch.php:134 +#, fuzzy, php-format +msgid "Voici les %s premiers" +msgstr "Ver Cesta" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:14 #: ../../library/ZendAfi/View/Helper/RenderSession.php:206 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:420 @@ -23343,6 +24170,7 @@ msgstr "Ver" #: ../../library/Class/TableDescription/PNBItems.php:39 #: ../../library/Class/TableDescription/PNBItems.php:39 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249 #, fuzzy msgid "Voir l'album" msgstr "Cambiar de ubicación: \"%s\"" @@ -23358,6 +24186,11 @@ msgstr "" msgid "Voir la notice" msgstr "Consultar el prospecto" +#: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:33 +#, fuzzy, php-format +msgid "Voir la notice \"%s\" dans un nouvel onglet" +msgstr "En una ficha" + #: ../../application/modules/admin/views/scripts/users/manage-double.phtml:41 #, fuzzy msgid "Voir la requete" @@ -23368,6 +24201,11 @@ msgstr "Consultar el prospecto" msgid "Voir la réponse." msgstr "Ver respuesta." +#: ../../application/modules/admin/views/scripts/feature/index.phtml:64 +#, fuzzy, php-format +msgid "Voir la vidéo de la fonctionnalité : \"%s\"" +msgstr "Función" + #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:33 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:34 #, fuzzy, php-format @@ -23396,6 +24234,11 @@ msgstr "Ver Cesta" msgid "Voir le plan" msgstr "Ver mapa" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:31 +#, fuzzy +msgid "Voir le résultat de la recherche" +msgstr "Mostrar resultados de búsqueda" + #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #, fuzzy @@ -23411,12 +24254,22 @@ msgstr "Mostrar resultados de búsqueda" msgid "Voir le site" msgstr "Visite el sitio web" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323 +#, fuzzy +msgid "Voir les albums" +msgstr "Cambiar de ubicación: \"%s\"" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #, fuzzy, php-format msgid "Voir les avis du document \"%s\"" msgstr "Su cesta de documentos" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:20 +#, fuzzy, php-format +msgid "Voir les dernières nouveautés de la recherche \"%s\"" +msgstr "Tus búsquedas recientes" + #: ../../library/Class/WebService/ICalendar.php:175 #: ../../library/Class/WebService/ICalendar.php:175 #, fuzzy @@ -23653,6 +24506,7 @@ msgstr "Revisión" #: ../../application/modules/opac/controllers/AbonneController.php:1077 #: ../../application/modules/opac/controllers/AbonneController.php:1070 #: ../../application/modules/opac/controllers/AbonneController.php:1072 +#: ../../application/modules/opac/controllers/AbonneController.php:1087 #, php-format msgid "Votre carte a été retirée à %s" msgstr "" @@ -23697,6 +24551,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:338 #: ../../application/modules/opac/controllers/AuthController.php:372 #: ../../application/modules/opac/controllers/AuthController.php:379 +#: ../../application/modules/opac/controllers/AuthController.php:374 msgid "Votre demande d'inscription" msgstr "Su solicitud" @@ -23712,9 +24567,9 @@ msgid "Votre fiche" msgstr "Su archivo" #: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1133 -#: ../../library/Class/User/LostPass.php:102 -#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121 -#: ../../library/Class/Users.php:1124 +#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124 +#: ../../library/Class/Users.php:1128 #, php-format msgid "Votre identifiant : %s\n" msgstr "Su nombre de usuario: %s\n" @@ -23764,15 +24619,16 @@ msgid "Votre message : " msgstr "Tu mensaje:" #: ../../library/Class/Users.php:1134 ../../library/Class/Users.php:1134 -#: ../../library/Class/User/LostPass.php:103 -#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122 -#: ../../library/Class/Users.php:1125 +#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125 +#: ../../library/Class/Users.php:1129 #, php-format msgid "Votre mot de passe : %s\n" msgstr "Contraseña: %s\n" #: ../../application/modules/opac/controllers/AuthController.php:349 #: ../../application/modules/opac/controllers/AuthController.php:356 +#: ../../application/modules/opac/controllers/AuthController.php:351 msgid "Votre mot de passe a été réinitialisé, vous pouvez vous connecter." msgstr "" @@ -23819,12 +24675,14 @@ msgstr "Tu sugerencia compra ha sido enviado." #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:556 +#: ../../application/modules/opac/controllers/RechercheController.php:559 msgid "Votre réservation est enregistrée." msgstr "Se registra la reserva." #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:604 +#: ../../application/modules/opac/controllers/RechercheController.php:607 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -23835,6 +24693,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:602 +#: ../../application/modules/opac/controllers/RechercheController.php:605 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -23943,6 +24802,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid "Vous avez bien été abonné à la newsletter: " msgstr "Ha sido suscrito a la newsletter:" @@ -23951,6 +24811,7 @@ msgstr "Ha sido suscrito a la newsletter:" #: ../../application/modules/opac/controllers/AbonneController.php:1143 #: ../../application/modules/opac/controllers/AbonneController.php:1136 #: ../../application/modules/opac/controllers/AbonneController.php:1138 +#: ../../application/modules/opac/controllers/AbonneController.php:1153 #, php-format msgid "Vous avez déjà ajouté la carte de \"%s\"" msgstr "" @@ -23965,7 +24826,7 @@ msgstr "Usted ya tiene una reserva en este intervalo de tiempo" #: ../../library/Class/Users.php:1083 ../../library/Class/Users.php:1083 #: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1071 -#: ../../library/Class/Users.php:1074 +#: ../../library/Class/Users.php:1074 ../../library/Class/Users.php:1078 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "Usted ha hecho una solicitud de registro en el portal:" @@ -23975,9 +24836,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:" msgstr "Usted ha hecho una solicitud de inclusión en el boletÃn de noticias:" #: ../../library/Class/Users.php:1132 ../../library/Class/Users.php:1132 -#: ../../library/Class/User/LostPass.php:101 -#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120 -#: ../../library/Class/Users.php:1123 +#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123 +#: ../../library/Class/Users.php:1127 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "Ha solicitado una contraseña en el portal." @@ -24002,13 +24863,13 @@ msgstr "" #: ../../library/Class/Users.php:1017 ../../library/Class/Users.php:1017 #: ../../library/Class/Users.php:1026 ../../library/Class/Users.php:1005 -#: ../../library/Class/Users.php:1007 +#: ../../library/Class/Users.php:1007 ../../library/Class/Users.php:1011 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "Debe completar el campo 'id'" #: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1018 #: ../../library/Class/Users.php:1027 ../../library/Class/Users.php:1006 -#: ../../library/Class/Users.php:1008 +#: ../../library/Class/Users.php:1008 ../../library/Class/Users.php:1012 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "Debe completar el campo 'Contraseña'" @@ -24083,7 +24944,7 @@ msgstr "" #: ../../library/Class/Users.php:1048 ../../library/Class/Users.php:1048 #: ../../library/Class/Users.php:1057 ../../library/Class/Users.php:1036 -#: ../../library/Class/Users.php:1038 +#: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1042 msgid "Vous devez fournir une adresse mail valide" msgstr "Usted debe proporcionar una dirección de correo electrónico válida" @@ -24119,7 +24980,7 @@ msgstr "Debe introducir una contraseña" #: ../../library/Class/Users.php:1051 ../../library/Class/Users.php:1051 #: ../../library/Class/Users.php:1060 ../../library/Class/Users.php:1039 -#: ../../library/Class/Users.php:1041 +#: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1045 msgid "Vous devez saisir un numéro de téléphone" msgstr "Debe ingresar un número de teléfono" @@ -24170,6 +25031,12 @@ msgstr "" "Debe iniciar sesión en una cuenta con una suscripción válida para acceder al " "libro electrónico" +#: ../../library/Class/DigitalResource/Controller.php:39 +#: ../../library/Class/DigitalResource/Controller.php:53 +#, fuzzy +msgid "Vous devez vous connecter pour accéder à cette page" +msgstr "Debes iniciar sesión para hacer una petición." + #: ../../library/Class/CommSigb.php:118 ../../library/Class/CommSigb.php:118 msgid "Vous devez vous connecter pour réserver un document." msgstr "Debes iniciar sesión para hacer una petición." @@ -24192,6 +25059,15 @@ msgid "Vous devez vous rendre à l'adresse %s pour finaliser votre inscription." msgstr "" "Un correo electrónico acaba de enviar a usted para confirmar su registro" +#: ../../library/Class/DigitalResource/Controller.php:42 +#, fuzzy +msgid "" +"Vous devez être connecté avec un compte adminitrateur pour accéder à cette " +"page" +msgstr "" +"Debe iniciar sesión en una cuenta con una suscripción válida para acceder a " +"este documento" + #: ../../library/Class/Systeme/PergameService.php:191 #: ../../library/Class/Systeme/PergameService.php:191 msgid "Vous devez être connecté en tant qu'abonné pour réserver un document" @@ -24329,6 +25205,11 @@ msgstr "Usted no tiene ninguna reserva en curso." msgid "Vous n'avez pas de charte graphique d'installée dans Bokeh" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:79 +#, fuzzy +msgid "Vous n'avez pas enregistré de recherche dans vos favoris" +msgstr "Usted no tiene permiso para realizar la capacitación" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:35 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:50 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:90 @@ -24344,6 +25225,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:121 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:149 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:186 +#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176 #, php-format msgid "Vous n'avez pas la permission \"%s\"" msgstr "" @@ -24367,19 +25249,20 @@ msgstr "Usted no tiene permiso para realizar la capacitación" #: ../../library/Class/Users.php:1044 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1032 -#: ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1034 ../../library/Class/Users.php:1038 #, fuzzy msgid "Vous n'avez pas les droits suffisants pour diriger une activité" msgstr "Usted no tiene permiso para realizar la capacitación" #: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1041 #: ../../library/Class/Users.php:1050 ../../library/Class/Users.php:1029 -#: ../../library/Class/Users.php:1031 +#: ../../library/Class/Users.php:1031 ../../library/Class/Users.php:1035 #, fuzzy msgid "Vous n'avez pas les droits suffisants pour suivre une activité" msgstr "Usted no tiene permiso para asistir a la capacitación" #: ../../application/modules/admin/controllers/IndexController.php:165 +#: ../../application/modules/admin/controllers/IndexController.php:173 #, fuzzy msgid "" "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité." @@ -24441,6 +25324,7 @@ msgstr "No ha introducido una clave." #: ../../application/modules/opac/controllers/AbonneController.php:1066 #: ../../application/modules/opac/controllers/AbonneController.php:1059 #: ../../application/modules/opac/controllers/AbonneController.php:1061 +#: ../../application/modules/opac/controllers/AbonneController.php:1076 #, php-format msgid "Vous n'utilisez plus la carte de %s" msgstr "" @@ -24472,11 +25356,13 @@ msgstr "Dejar de recibir el boletÃn de noticias:" #: ../../application/modules/opac/controllers/AbonneController.php:1137 #: ../../application/modules/opac/controllers/AbonneController.php:1130 #: ../../application/modules/opac/controllers/AbonneController.php:1132 +#: ../../application/modules/opac/controllers/AbonneController.php:1147 msgid "Vous ne pouvez pas ajouter votre propre carte" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:398 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:407 +#: ../../application/modules/admin/controllers/FileManagerController.php:344 #, php-format msgid "" "Vous ne pouvez pas copier ou déplacer un élément avec lui-même : \"%s\" est " @@ -24490,6 +25376,12 @@ msgid "" "documents suivants :" msgstr "" +#: ../../application/modules/admin/controllers/FeatureController.php:79 +msgid "" +"Vous ne serez plus notifié des nouvelles fonctionnalités jusqu'à la " +"prochaine mise à jour du logicel." +msgstr "" + #: ../../library/Class/Feature/List.php:87 msgid "" "Vous pouvez accéder à l'historique des modifications d'un article " @@ -24497,6 +25389,7 @@ msgid "" msgstr "" #: ../../library/Class/Feature/List.php:164 +#: ../../library/Class/Feature/List.php:165 msgid "Vous pouvez désormais proposer une url de bande-annonce pour une notice" msgstr "" @@ -24568,6 +25461,8 @@ msgstr "Dejar de recibir el boletÃn de noticias:" #: ../../application/modules/admin/controllers/IndexController.php:179 #: ../../application/modules/admin/controllers/IndexController.php:178 #: ../../application/modules/admin/controllers/IndexController.php:190 +#: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:198 #, php-format msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\"" msgstr "" @@ -24601,6 +25496,7 @@ msgstr "Web" #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:70 +#: ../../application/modules/admin/views/scripts/index/index.phtml:64 msgid "Wiki Bokeh" msgstr "" @@ -24665,6 +25561,7 @@ msgstr "No se copia." #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:71 msgid "Zones" msgstr "" @@ -24890,6 +25787,7 @@ msgstr "contiene" #: ../../library/Class/Newsletter.php:381 #: ../../library/Class/Newsletter.php:381 +#: ../../library/Class/Newsletter.php:333 msgid "copie" msgstr "" @@ -25014,6 +25912,11 @@ msgstr "Préstamos" msgid "des réservations" msgstr "%d reservas" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:83 +#, fuzzy +msgid "description" +msgstr "Descripción" + #: ../../application/modules/opac/controllers/IndexController.php:121 #: ../../application/modules/opac/controllers/IndexController.php:121 msgid "" @@ -25349,8 +26252,7 @@ msgstr "Desde %s para %s" msgid "jusqu'à " msgstr "a" -#: ../../library/Class/Ouverture.php:180 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:180 ../../library/Class/Ouverture.php:180 #, fuzzy, php-format msgid "le %s" msgstr " %s" @@ -25647,6 +26549,7 @@ msgstr "Premios visualizaciones" #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:61 #: ../../library/ZendAfi/Form/Configuration/Widget/Tags.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "non" msgstr "" @@ -25811,6 +26714,7 @@ msgstr "o crear un nuevo campo" #: ../../library/ZendAfi/Form/Configuration/Widget/Carousel.php:68 #: ../../library/ZendAfi/Form/Configuration/Widget/Statistics.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "oui" msgstr "" @@ -25936,6 +26840,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 +#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:390 msgid "pictogramme pour " msgstr "" @@ -26187,6 +27092,11 @@ msgstr "(cuotas máx para novedades)" msgid "uniquement les plus consulés" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:85 +#, fuzzy +msgid "valeur" +msgstr "Valor" + #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 msgid "ven" @@ -26242,6 +27152,7 @@ msgstr "Contenido" #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 +#: ../../application/modules/admin/views/scripts/index/index.phtml:31 #, fuzzy msgid "» Modifier «" msgstr "Cambiar" @@ -26360,6 +27271,11 @@ msgstr "" msgid "Éditeur" msgstr "Editorial" +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:56 +#, fuzzy +msgid "Éditeurs" +msgstr "Editorial" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 #, fuzzy @@ -26400,6 +27316,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:2 msgid "Êtes vous sûr de vouloir consulter ce document ?" msgstr "" @@ -26416,6 +27333,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:2 msgid "Êtes vous sûr de vouloir emprunter ce document ?" msgstr "" @@ -26799,9 +27717,6 @@ msgstr "" #~ msgid "Aucun menu n'est paramétré pour ce profil." #~ msgstr "No hay menú se establece para este perfil." -#~ msgid "Aucun prêt en cours" -#~ msgstr "No hay préstamos pendientes" - #~ msgid "Aucun résultat trouvé pour :" #~ msgstr "No se han encontrado resultados para:" @@ -26819,10 +27734,6 @@ msgstr "" #~ msgid "Aucune zone de sélectionnée." #~ msgstr "Ninguna categorÃa informada" -#, fuzzy -#~ msgid "Auncun utilisateur trouvé" -#~ msgstr "No se han encontrado artÃculos" - #~ msgid "Auteur et titre" #~ msgstr "Autor y TÃtulo" @@ -26989,9 +27900,6 @@ msgstr "" #~ msgid "Fév." #~ msgstr "Febrero" -#~ msgid "Gérer les ressources" -#~ msgstr "La gestión de los recursos" - #~ msgid "Html simplifié" #~ msgstr "HTML simplificado" @@ -27149,9 +28057,6 @@ msgstr "" #~ msgid "Moissonnage Tout Apprendre" #~ msgstr "Aprenda todo la cosecha" -#~ msgid "Moissonnage Vodeclic" -#~ msgstr "Cosechar Vodeclic" - #~ msgid "Nachricht 1" #~ msgstr "Nachricht 1" diff --git a/library/translation/fr.mo b/library/translation/fr.mo index f96cd4170c609e9207766c1111090f5903a93265..27abdea37f47ce8c2fac6ffc28f0fffc6400be7b 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 5f082c0cabf5b74a7a404f80534f16cbd61cfcc7..1506fc8c0c10eb9bae21c940f71ccb4d39854f31 100644 --- a/library/translation/fr.po +++ b/library/translation/fr.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-30 10:18+0100\n" +"POT-Creation-Date: 2018-03-12 15:30+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" @@ -24,6 +24,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:138 #: ../../application/modules/opac/controllers/RechercheController.php:138 +#: ../../application/modules/opac/controllers/RechercheController.php:142 msgid " (recherche élargie triée par pertinence)" msgstr "" @@ -56,6 +57,9 @@ msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:175 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208 +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 msgid " OU " msgstr "" @@ -85,6 +89,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid " avec l'adresse suivante: " msgstr "" @@ -243,33 +248,39 @@ msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:70 +#: ../../application/modules/admin/controllers/FeatureController.php:71 #, php-format msgid "\"%s\" est une nouveauté pour vous." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:285 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:290 +#: ../../application/modules/admin/controllers/FileManagerController.php:228 #, php-format msgid "\"%s\" n'est pas redimensionnable." msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:48 +#: ../../application/modules/admin/controllers/FeatureController.php:49 #, php-format msgid "\"%s\" n'est plus une nouveauté pour vous." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:346 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:355 +#: ../../application/modules/admin/controllers/FileManagerController.php:292 #, php-format msgid "\"%s\" renommé en \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:139 #, php-format msgid "\"%s\" supprimé." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:140 +#: ../../application/modules/admin/controllers/FileManagerController.php:72 #, php-format msgid "\"%s\" vers \"%s\"" msgstr "" @@ -286,6 +297,11 @@ msgstr "" msgid "%.2f %%" msgstr "" +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +msgid "%d %B %Y" +msgstr "" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 msgid "%d %B %Y %H:%M:%S" @@ -909,11 +925,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419 +#: ../../library/Class/AdminVar.php:424 msgid "API" msgstr "" #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418 +#: ../../library/Class/AdminVar.php:423 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -971,6 +989,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 msgid "Abonné SIGB" msgstr "" @@ -985,6 +1004,7 @@ msgstr "Limite du nombre de réservations atteinte" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 msgid "Abonné portail" msgstr "" @@ -1077,6 +1097,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:135 msgid "Accès à Cosmogramme" msgstr "" @@ -1145,6 +1166,7 @@ msgid "Accéder aux titres seulement" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65 #, php-format msgid "Accéder à \"%s\" dans un nouvel onglet." msgstr "" @@ -1183,6 +1205,11 @@ msgstr "" msgid "Accéder à la ressource" msgstr "" +#: ../../library/ZendAfi/View/Helper/TagSlideshow.php:196 +#, php-format +msgid "Accéder à la ressource \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 msgid "Accéder à la ressource numérique" @@ -1214,14 +1241,14 @@ msgid "Actions" msgstr "" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:240 +#: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242 msgid "" "Activation de la disponibilite dans le resultat de recherche au survol de la " "couverture du document, calculé en temps réel." msgstr "" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:241 +#: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243 msgid "" "Activation de la disponibilite dans le resultat de recherche. Calculé grâce " "à la facette \"En rayon\"." @@ -1248,7 +1275,7 @@ msgid "Activation des fonctions avancées du téléphone" msgstr "" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255 msgid "Activation des formulaires" msgstr "" @@ -1258,7 +1285,7 @@ msgid "Activation du PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:382 -#: ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1280,6 +1307,10 @@ msgstr "" msgid "Activer la tâche" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274 +msgid "Activer le moissonnage" +msgstr "" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293 @@ -1328,6 +1359,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Activity.php:40 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:119 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:110 msgid "Activité" msgstr "" @@ -1363,6 +1395,8 @@ msgstr "" #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 #: ../../library/Class/Systeme/Report.php:188 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51 msgid "Activé" msgstr "" @@ -1389,6 +1423,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 msgid "Administrateur bibliothèque" msgstr "" @@ -1396,6 +1431,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:244 msgid "Administrateur portail" msgstr "" @@ -1412,12 +1448,15 @@ msgstr "" #: ../../library/Class/Feature/List.php:101 #: ../../library/Class/Feature/List.php:167 #: ../../library/Class/Feature/List.php:189 +#: ../../library/Class/Feature/List.php:168 +#: ../../library/Class/Feature/List.php:190 msgid "Administration" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:118 msgid "Administration du portail" msgstr "" @@ -1515,6 +1554,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:159 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:150 msgid "Adresse des données" msgstr "" @@ -2331,6 +2371,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1107 #: ../../application/modules/opac/controllers/AbonneController.php:1100 #: ../../application/modules/opac/controllers/AbonneController.php:1102 +#: ../../application/modules/opac/controllers/AbonneController.php:1117 msgid "Ajouter une carte" msgstr "" @@ -2443,6 +2484,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49 #: ../../library/ZendAfi/Form/Album.php:49 #: ../../library/ZendAfi/Form/Album.php:50 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:46 msgid "Album" msgstr "" @@ -2576,6 +2618,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:204 #: ../../library/ZendAfi/View/Helper/BibView.php:207 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:117 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 msgid "Annexe" msgstr "" @@ -2604,6 +2647,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:21 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:43 msgid "Annuler" msgstr "" @@ -2612,8 +2656,13 @@ msgstr "" msgid "Annuler cette réservation" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:50 +msgid "Annuler la notification des nouveautés" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:32 msgid "Annuler mes modifications" msgstr "" @@ -2673,6 +2722,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Année de publication" msgstr "" @@ -2723,6 +2773,7 @@ msgid "Appareils autorisés" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:155 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:161 #, php-format msgid "Appels webservices (%s)" msgstr "" @@ -2761,6 +2812,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:76 #: ../../application/modules/admin/views/scripts/feature/index.phtml:78 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:94 #, php-format msgid "Archivées : %d" msgstr "" @@ -2932,8 +2984,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57 -#: ../../library/Class/ModeleFusion.php:75 -#: ../../library/Class/Ouverture.php:50 +#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50 #: ../../library/ZendAfi/Form/Album.php:235 #: ../../library/ZendAfi/Form/Admin/News.php:243 #: ../../library/ZendAfi/Form/Admin/Library.php:263 @@ -2945,8 +2996,12 @@ msgstr "" msgid "Aucun" msgstr "" -#: ../../library/Class/NoticeHtml.php:69 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334 +#, fuzzy +msgid "Aucun album présent pour cette ressource" +msgstr "Vous avez attein le nombre maximum de réservations" + +#: ../../library/Class/NoticeHtml.php:69 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "" @@ -3040,6 +3095,10 @@ msgstr "" msgid "Aucun fichier présent dans %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136 +msgid "Aucun groupe n'a de droits d'accès à la ressources" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 msgid "" @@ -3056,6 +3115,10 @@ msgstr "" msgid "Aucun poste dans ce groupe" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:39 +msgid "Aucun prêt en cours" +msgstr "" + #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 msgid "Aucun prêt rendu de manière anticipée" @@ -3099,9 +3162,14 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:204 msgid "Aucun résumé" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172 +msgid "Aucun utilisateur rattaché aux groupes" +msgstr "" + #: ../../library/Class/Ouverture.php:38 #: ../../library/ZendAfi/Form/Admin/User.php:263 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:51 @@ -3220,6 +3288,7 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:272 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:271 msgid "Aucune ressource correspondante" msgstr "" @@ -3247,6 +3316,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:42 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:60 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:106 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:100 msgid "Aucune version dans l'historique" msgstr "" @@ -3385,6 +3455,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/LoansHistory.php:65 #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:59 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:22 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Auteur" msgstr "" @@ -3412,6 +3483,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:477 +#: ../../application/modules/opac/controllers/RechercheController.php:480 #, php-format msgid "Auteur : %s" msgstr "" @@ -3490,6 +3562,10 @@ msgstr "" msgid "Autorisation non spécifiée" msgstr "" +#: ../../library/Class/AdminVar.php:289 +msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:151 @@ -3743,9 +3819,14 @@ msgstr "" msgid "Base de données : " msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284 +msgid "Batch" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 msgid "Batchs" msgstr "" @@ -3967,6 +4048,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Domain.php:90 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:120 msgid "Bibliothèques" msgstr "" @@ -4310,9 +4392,24 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:1 #: ../../library/Class/Users.php:1082 ../../library/Class/Users.php:1091 #: ../../library/Class/Users.php:1070 ../../library/Class/Users.php:1073 +#: ../../library/Class/Users.php:1077 msgid "Bonjour," msgstr "" +#: ../../library/Class/User/BookmarkedSearch.php:113 +#, php-format +msgid "" +"Bonjour,\n" +"\n" +"Il y a %s nouveau(x) résultat(s) pour votre recherche \"%s\" :\n" +"\n" +"%s\n" +"\n" +"%s\n" +"\n" +"%s" +msgstr "" + #: ../../library/Class/Activity/UnregistrationMail.php:31 #: ../../library/Class/Activity/UnregistrationMail.php:31 #, php-format @@ -4331,9 +4428,9 @@ msgstr "" #: ../../library/Class/Users.php:1135 ../../library/Class/Users.php:1135 #: ../../library/Class/User/LostPass.php:104 -#: ../../library/Class/User/LostPass.php:137 -#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123 -#: ../../library/Class/Users.php:1126 +#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144 +#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126 +#: ../../library/Class/Users.php:1130 msgid "Bonne navigation sur le portail" msgstr "" @@ -4387,6 +4484,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:146 msgid "Cache des images" msgstr "" @@ -4443,6 +4541,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:166 #: ../../application/modules/opac/controllers/AbonneController.php:1113 #: ../../application/modules/opac/controllers/AbonneController.php:1115 +#: ../../application/modules/opac/controllers/AbonneController.php:1130 msgid "Carte" msgstr "" @@ -4451,6 +4550,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1149 #: ../../application/modules/opac/controllers/AbonneController.php:1142 #: ../../application/modules/opac/controllers/AbonneController.php:1144 +#: ../../application/modules/opac/controllers/AbonneController.php:1159 #, php-format msgid "Carte de \"%s\" ajoutée" msgstr "" @@ -4471,6 +4571,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1096 #: ../../application/modules/opac/controllers/AbonneController.php:1089 #: ../../application/modules/opac/controllers/AbonneController.php:1091 +#: ../../application/modules/opac/controllers/AbonneController.php:1106 msgid "Carte introuvable" msgstr "" @@ -4496,12 +4597,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:167 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 msgid "Catalogues" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 msgid "Catalogues OPDS" msgstr "" @@ -4656,6 +4759,15 @@ msgstr "" msgid "Ce document est référencé dans les éléments suivants :" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:40 +msgid "Ce document n'est pas de type Dilicom" +msgstr "" + +#: ../../application/modules/opac/controllers/ModulesController.php:86 +msgid "" +"Ce document ne possède pas de configuration permettant d'utiliser cette URL." +msgstr "" + #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:9 msgid "Ce domaine ne renvoie aucun résultat." msgstr "" @@ -4682,6 +4794,10 @@ msgstr "" msgid "Ce service n'est pas testable" msgstr "" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:41 +msgid "Ce traitement ne se lance qu'en mode cron." +msgstr "" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:257 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:266 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:313 @@ -4730,6 +4846,18 @@ msgstr "" msgid "Centres d'intérêt" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:105 +msgid "Cet album n'a pas de commande" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:125 +msgid "Cet album n'a pas de prêt en cours" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:136 +msgid "Cet album n'a pas encore été emprunté" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:60 @@ -4738,7 +4866,7 @@ msgstr "" #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1072 ../../library/Class/Users.php:1051 -#: ../../library/Class/Users.php:1053 +#: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1057 msgid "Cet identifiant existe déjà ." msgstr "" @@ -4747,6 +4875,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:501 #: ../../application/modules/opac/controllers/AuthController.php:535 #: ../../application/modules/opac/controllers/AuthController.php:542 +#: ../../application/modules/opac/controllers/AuthController.php:537 msgid "Cette fonctionnalité n'est pas activée." msgstr "" @@ -4786,9 +4915,26 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:352 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:351 msgid "Cette notice n'a pas d'auteur." msgstr "" +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:60 +msgid "Cette recherche ne vous appartient pas." +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182 +msgid "Cette ressource ne prend pas en charge la connexion SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119 +msgid "Cette ressource ne prend pas en charge la gestion des droits" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262 +msgid "Cette ressource ne prend pas en charge le moissonnage" +msgstr "" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 msgid "Cette réservation convient-elle ?" @@ -4895,6 +5041,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163 #: ../../library/ZendAfi/View/Helper/Admin/CustomFieldsValuesUrl.php:43 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:159 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:156 msgid "Champs personnalisés" msgstr "" @@ -4971,6 +5118,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:84 #: ../../library/ZendAfi/View/Helper/Redmine/Issues.php:33 #: ../../application/modules/admin/views/scripts/feature/index.phtml:86 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:102 msgid "Chercher" msgstr "" @@ -5020,6 +5168,7 @@ msgid "Choisissez les dossiers à afficher" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:83 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:87 msgid "Choisissez un fichier" msgstr "" @@ -5080,6 +5229,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:17 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:84 msgid "Clef" msgstr "" @@ -5263,6 +5413,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:71 +#: ../../application/modules/admin/views/scripts/index/index.phtml:65 msgid "Code source" msgstr "" @@ -5321,6 +5472,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Album.php:312 #: ../../library/ZendAfi/Form/Album.php:313 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:82 msgid "Commandes" msgstr "" @@ -5413,6 +5565,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1214 #: ../../application/modules/opac/controllers/AbonneController.php:1207 #: ../../application/modules/opac/controllers/AbonneController.php:1209 +#: ../../application/modules/opac/controllers/AbonneController.php:1224 msgid "Compléter votre adresse email" msgstr "" @@ -5438,7 +5591,7 @@ msgid "Compresser l'image \"%s\" en gardant les mêmes dimensions." msgstr "" #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412 -#: ../../library/Class/AdminVar.php:409 +#: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -5463,6 +5616,10 @@ msgstr "" msgid "Compte d'assistance: %s" msgstr "" +#: ../../library/Class/Feature/List.php:179 +msgid "Compte lecteur" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 msgid "Compte-rendu" @@ -5528,6 +5685,7 @@ msgid "Configuration de la page: %s" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:153 +#: ../../application/modules/opac/controllers/RechercheController.php:157 msgid "Configuration de la recherche" msgstr "" @@ -5629,6 +5787,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:465 #: ../../application/modules/opac/controllers/AuthController.php:499 #: ../../application/modules/opac/controllers/AuthController.php:506 +#: ../../application/modules/opac/controllers/AuthController.php:501 msgid "Confirmation d'inscription à la newsletter: " msgstr "" @@ -5765,6 +5924,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/rechercheoai/viewnotice.phtml:12 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Consultation" msgstr "" @@ -5774,6 +5934,7 @@ msgid "Consultation dans l'OPAC" msgstr "" #: ../../library/Class/Feature/List.php:174 +#: ../../library/Class/Feature/List.php:175 msgid "Consultation de l'historique des prêts depuis le compte lecteur Bokeh" msgstr "" @@ -5784,6 +5945,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:407 #: ../../library/ZendAfi/View/Helper/Notice/ConsultationLink.php:29 #: ../../application/modules/opac/controllers/RechercheController.php:539 +#: ../../application/modules/opac/controllers/RechercheController.php:542 msgid "Consultation sur place" msgstr "" @@ -5850,7 +6012,7 @@ msgid "Contenu de l'avis modifié" msgstr "" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -5858,26 +6020,28 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 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" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" msgstr "" #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:386 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" msgstr "" #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:385 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -5946,6 +6110,7 @@ msgid "Coordonnées carte" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:183 +#: ../../application/modules/admin/controllers/FileManagerController.php:115 #, php-format msgid "Copie de \"%s\" dans \"%s\" effectué." msgstr "" @@ -5998,6 +6163,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:114 #: ../../library/ZendAfi/Form/Album.php:157 #: ../../library/ZendAfi/Form/Album.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:105 msgid "Cote" msgstr "" @@ -6037,6 +6203,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:479 +#: ../../application/modules/opac/controllers/RechercheController.php:482 #, php-format msgid "Cote : %s" msgstr "" @@ -6155,6 +6322,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 #: ../../application/modules/admin/views/scripts/stat/rechercheinfructueuse.phtml:10 #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:10 msgid "Critères" msgstr "" @@ -6221,6 +6389,7 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:264 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:263 msgid "Créer un album" msgstr "" @@ -6230,6 +6399,7 @@ msgid "Créer un lieu" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:215 +#: ../../application/modules/admin/controllers/FileManagerController.php:152 #, php-format msgid "Créer un nouveau dossier dans \"%s\"" msgstr "" @@ -6275,6 +6445,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:21 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:23 msgid "Créé le" msgstr "" @@ -6396,6 +6567,8 @@ msgstr "" #: ../../library/Class/SuggestionAchat.php:178 #: ../../library/ZendAfi/Form/Album.php:174 #: ../../library/ZendAfi/Form/Album.php:175 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:11 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:62 msgid "Date de création" msgstr "" @@ -6437,10 +6610,12 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:63 msgid "Date de mise à jour" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:44 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:46 #, fuzzy msgid "Date de modification :" msgstr "Entrez votre identité S.V.P." @@ -6459,9 +6634,14 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:13 #: ../../library/Class/CriteresRecherche.php:144 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Date de nouveauté" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:56 +msgid "Date de prêt" +msgstr "" + #: ../../library/Class/WebService/SIGB/Suggestion.php:69 #: ../../library/Class/WebService/SIGB/Suggestion.php:69 msgid "Date de publication" @@ -6478,13 +6658,17 @@ msgstr "" msgid "Date de retour" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:57 +msgid "Date de retour prévue" +msgstr "" + #: ../../library/Class/WebService/SIGB/Suggestion.php:71 #: ../../library/Class/WebService/SIGB/Suggestion.php:71 msgid "Date de suggestion" msgstr "" #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:374 -#: ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" @@ -6521,6 +6705,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:121 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:112 msgid "Date nouveaté" msgstr "" @@ -6561,6 +6746,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:403 #: ../../application/modules/opac/controllers/AuthController.php:437 #: ../../application/modules/opac/controllers/AuthController.php:444 +#: ../../application/modules/opac/controllers/AuthController.php:439 msgid "Demande d'inscription à la lettre d'information: " msgstr "" @@ -6569,6 +6755,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:497 #: ../../application/modules/opac/controllers/AuthController.php:531 #: ../../application/modules/opac/controllers/AuthController.php:538 +#: ../../application/modules/opac/controllers/AuthController.php:533 msgid "Demande de préinscription" msgstr "" @@ -6610,6 +6797,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:469 +#: ../../application/modules/opac/controllers/RechercheController.php:472 msgid "Demande de réservation de document" msgstr "" @@ -6725,6 +6913,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/batch/index.phtml:18 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290 msgid "Dernière exécution" msgstr "" @@ -6859,6 +7048,14 @@ msgstr "" msgid "Dewey / pcdm4" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179 +msgid "Diagnostic SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259 +msgid "Diagnostic moissonnage" +msgstr "" + #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:86 #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:41 @@ -6875,6 +7072,11 @@ msgstr "" msgid "Diaporama avec navigation" msgstr "" +#: ../../application/modules/opac/controllers/RechercheController.php:804 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:50 +msgid "Dilicom" +msgstr "" + #: ../../library/Class/Ouverture.php:57 ../../library/Class/Ouverture.php:57 msgid "Dimanche" msgstr "" @@ -6885,11 +7087,13 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:302 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 +#: ../../application/modules/admin/controllers/FileManagerController.php:244 #, php-format msgid "Dimensions \"%s\" invalident. Les dimensions valident sont : %s ." msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:41 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:43 msgid "Dimensions :" msgstr "" @@ -6918,6 +7122,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:75 +#: ../../application/modules/admin/views/scripts/index/index.phtml:69 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -6938,6 +7143,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 #: ../../library/Class/Exemplaire.php:269 #: ../../library/Class/Exemplaire.php:274 +#: ../../library/Class/Exemplaire.php:290 msgid "Disponible" msgstr "" @@ -7167,6 +7373,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:57 #: ../../application/modules/opac/controllers/RssController.php:219 #: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#: ../../application/modules/admin/views/scripts/index/index.phtml:40 msgid "Données en attente de modération" msgstr "" @@ -7176,6 +7383,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:227 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:232 +#: ../../application/modules/admin/controllers/FileManagerController.php:169 #, php-format msgid "Dossier \"%s\" créé." msgstr "" @@ -7185,6 +7393,7 @@ msgid "Doublons" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:47 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:49 msgid "Droit d'écriture :" msgstr "" @@ -7395,10 +7604,12 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:21 +#: ../../application/modules/admin/views/scripts/index/index.phtml:15 msgid "Démonstrations vidéos" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:162 +#: ../../application/modules/admin/controllers/FileManagerController.php:94 #, php-format msgid "Déplacement de \"%s\" dans \"%s\" effectué." msgstr "" @@ -7440,6 +7651,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297 msgid "Désactiver la tâche" msgstr "" @@ -7450,18 +7662,20 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:47 msgid "Désactivé" msgstr "" #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:359 -#: ../../library/Class/AdminVar.php:356 +#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" msgstr "" #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:360 -#: ../../library/Class/AdminVar.php:357 +#: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -7487,6 +7701,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:442 #: ../../application/modules/opac/controllers/AuthController.php:476 #: ../../application/modules/opac/controllers/AuthController.php:483 +#: ../../application/modules/opac/controllers/AuthController.php:478 msgid "Désinscription de la lettre d'information: " msgstr "" @@ -7654,6 +7869,7 @@ msgstr "" #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:257 +#: ../../application/modules/admin/controllers/WidgetController.php:247 #, php-format msgid "Echec de la sauvegarde de la configuration de %s" msgstr "" @@ -7698,6 +7914,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:463 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159 #: ../../application/modules/opac/controllers/RechercheController.php:478 +#: ../../application/modules/opac/controllers/RechercheController.php:481 #, php-format msgid "Editeur : %s" msgstr "" @@ -7809,10 +8026,12 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:469 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:118 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Emplacement" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:35 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:37 msgid "Emplacement :" msgstr "" @@ -7933,6 +8152,7 @@ msgstr "" #: ../../library/Class/User/CardsNotification.php:59 #: ../../library/Class/User/CardsNotification.php:59 +#: ../../library/Class/Feature.php:171 msgid "En savoir plus" msgstr "" @@ -7941,6 +8161,11 @@ msgstr "" msgid "Encodage des caractères" msgstr "" +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:35 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:36 +msgid "Enregister la recherche dans mes favoris" +msgstr "" + #: ../../application/modules/opac/controllers/AbonneController.php:419 #: ../../application/modules/opac/controllers/AbonneController.php:427 #: ../../application/modules/opac/controllers/AbonneController.php:435 @@ -7957,14 +8182,24 @@ msgstr "" msgid "Enregistrer comme filtres par défaut" msgstr "" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +msgid "Enregistrer ma recherche" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +msgid "Enregistrer ma recherche dans mes favoris" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:45 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:46 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:41 msgid "Enregistrer mes modifications" msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:37 msgid "Enregistrer mes modifications et poursuivre mes modifications" msgstr "" @@ -7980,6 +8215,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86 msgid "Entrepôts OAI" msgstr "" @@ -8134,6 +8370,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:137 msgid "Envoyer une demande d'achat de document" msgstr "" @@ -8182,6 +8419,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:146 #: ../../application/modules/admin/controllers/IndexController.php:156 #: ../../application/modules/admin/controllers/IndexController.php:156 +#: ../../application/modules/admin/controllers/IndexController.php:164 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -8276,6 +8514,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:475 #: ../../application/modules/opac/controllers/AuthController.php:509 #: ../../application/modules/opac/controllers/AuthController.php:516 +#: ../../application/modules/opac/controllers/AuthController.php:511 msgid "Erreur lors de l\\inscription à la newsletter." msgstr "" @@ -8308,42 +8547,49 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:111 #: ../../application/modules/admin/controllers/IndexController.php:111 +#: ../../application/modules/admin/controllers/IndexController.php:119 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:393 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:402 +#: ../../application/modules/admin/controllers/FileManagerController.php:339 #, php-format msgid "Erreur. Impossible de faire cette opération vers \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:347 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:356 +#: ../../application/modules/admin/controllers/FileManagerController.php:293 #, php-format msgid "Erreur. Impossible de renommer \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:319 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:324 +#: ../../application/modules/admin/controllers/FileManagerController.php:261 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été compressée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:312 +#: ../../application/modules/admin/controllers/FileManagerController.php:249 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été redimensionnée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:388 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:397 +#: ../../application/modules/admin/controllers/FileManagerController.php:334 #, php-format msgid "Erreur. Le chemin \"%s\" n'existe pas." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:405 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:414 +#: ../../application/modules/admin/controllers/FileManagerController.php:351 #, php-format msgid "" "Erreur. Vous ne pouvez pas téléverser un nouveau fichier car vous avez " @@ -8390,6 +8636,11 @@ msgstr "" msgid "Essayer" msgstr "" +#: ../../application/modules/admin/views/scripts/feature/index.phtml:80 +#, php-format +msgid "Essayer \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 msgid "Et " @@ -8410,6 +8661,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:42 +#: ../../application/modules/admin/views/scripts/index/index.phtml:36 msgid "Etat du site" msgstr "" @@ -8420,7 +8672,7 @@ msgid "Etat du système" msgstr "" #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241 msgid "" "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" " "entre les mots saisis" @@ -8438,6 +8690,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305 msgid "Etes-vous sur de vouloir désactiver cette tâche ?" msgstr "" @@ -8482,6 +8735,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette notice du panier ?" msgstr "" #: ../../library/Class/Feature/List.php:130 +#: ../../library/Class/Feature/List.php:131 msgid "Evolution de la boite sitothèque" msgstr "" @@ -8518,6 +8772,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:69 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:81 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:73 msgid "Exemplaires" msgstr "" @@ -8539,6 +8794,7 @@ msgstr "" #: ../../library/Class/Feature/List.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 msgid "Explorateur de fichiers" msgstr "" @@ -8568,6 +8824,7 @@ msgid "Export de panier" msgstr "" #: ../../library/Class/Feature/List.php:119 +#: ../../library/Class/Feature/List.php:120 msgid "Export des agendas au format iCalendar" msgstr "" @@ -8614,12 +8871,14 @@ msgid "Exporter le tableau en CSV" msgstr "" #: ../../library/Class/Feature/List.php:120 +#: ../../library/Class/Feature/List.php:121 msgid "" "Exportez vos agendas pour les intégrer dans un logiciel de calendrier ou un " "autre système d'information." msgstr "" #: ../../library/Class/Feature/List.php:123 +#: ../../library/Class/Feature/List.php:124 msgid "Exports" msgstr "" @@ -8662,6 +8921,7 @@ msgid "Expéditeur:" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:32 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:34 msgid "Extension :" msgstr "" @@ -8752,7 +9012,7 @@ msgid "Facilite l'indexation de votre site dans les moteurs de recherche" msgstr "" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415 -#: ../../library/Class/AdminVar.php:412 +#: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -8776,6 +9036,10 @@ msgstr "" msgid "Famille du document" msgstr "" +#: ../../application/modules/opac/controllers/AbonneController.php:1012 +msgid "Favoris sauvegardés" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/Items.php:56 #: ../../library/ZendAfi/Form/Configuration/Items.php:56 msgid "Favorites" @@ -8795,6 +9059,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:80 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:83 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:88 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Fermer" msgstr "" @@ -8844,6 +9109,8 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:275 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:269 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:280 +#: ../../application/modules/admin/controllers/FileManagerController.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:217 #, php-format msgid "Fichier \"%s\" téléversé." msgstr "" @@ -9093,6 +9360,7 @@ msgid "Fond de carte OpenStreetMap" msgstr "" #: ../../library/Class/Feature/List.php:141 +#: ../../library/Class/Feature/List.php:142 msgid "Fond de carte personnalisable" msgstr "" @@ -9109,7 +9377,7 @@ msgid "Fonds" msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -9145,6 +9413,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Login.php:49 #: ../../library/ZendAfi/Form/Login.php:49 +#: ../../library/ZendAfi/Form/Login.php:58 msgid "Formulaire d'authentification" msgstr "" @@ -9222,6 +9491,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:116 #: ../../library/Class/TableDescription/PNBItemsExport.php:40 #: ../../library/Class/TableDescription/PNBLoans.php:35 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 msgid "Genre" msgstr "" @@ -9248,6 +9518,10 @@ msgstr "" msgid "Genres" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111 +msgid "Gestion des droits" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 msgid "Gestion des agendas externes" @@ -9308,6 +9582,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:69 +#: ../../application/modules/admin/views/scripts/index/index.phtml:63 msgid "Google group Bokeh" msgstr "" @@ -9329,6 +9604,10 @@ msgstr "" msgid "Groupe \"%s\" supprimé" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210 +msgid "Groupe créé pour ce test" +msgstr "" + #: ../../library/Class/CustomField/ModelConfiguration/UserGroup.php:26 #: ../../library/Class/CustomFieldsCategory.php:73 #: ../../library/Class/CustomFieldsCategory.php:73 @@ -9338,6 +9617,7 @@ msgstr "" #: ../../library/Class/Newsletter.php:500 #: ../../library/Class/Newsletter.php:500 +#: ../../library/Class/Newsletter.php:452 #, php-format msgid "Groupe manuel pour la lettre \"%s\"" msgstr "" @@ -9352,9 +9632,15 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 #: ../../library/ZendAfi/Form/Admin/User.php:136 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 msgid "Groupes" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221 +#, php-format +msgid "Groupes : %s" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:116 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 @@ -9362,6 +9648,10 @@ msgstr "" msgid "Groupes destinataires" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148 +msgid "Groupes qui ont accès à la ressource" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:40 msgid "Général" msgstr "" @@ -9381,6 +9671,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 #: ../../application/modules/admin/controllers/SystemeController.php:140 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 msgid "Génération du site" msgstr "" @@ -9439,6 +9730,10 @@ msgstr "" msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142 +msgid "Gérer les groupes" +msgstr "" + #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:28 @@ -9471,6 +9766,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 #: ../../application/modules/opac/controllers/AbonneController.php:1013 #: ../../application/modules/opac/controllers/AbonneController.php:1015 +#: ../../application/modules/opac/controllers/AbonneController.php:1016 msgid "Gérer mes favoris" msgstr "" @@ -9585,12 +9881,17 @@ msgstr "" msgid "Historique de prêts" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:88 +msgid "Historique des 5 derniers prêts" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:130 #: ../../library/ZendAfi/View/Helper/TagEditArticle.php:74 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:43 msgid "Historique des modifications" msgstr "" @@ -9691,12 +9992,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:392 msgid "Id du connecteur Le Social" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:120 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:111 msgid "Id origine" msgstr "" @@ -9756,6 +10059,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/User.php:66 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:8 +#: ../../library/ZendAfi/Form/Login.php:137 msgid "Identifiant" msgstr "" @@ -9784,18 +10088,28 @@ msgid "Identifiant du portail chez 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:233 ../../library/Class/AdminVar.php:234 -#: ../../library/Class/AdminVar.php:231 +#: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233 msgid "Identifiant du project Redmine" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:51 +msgid "Identifiant du prêt interne Bokeh" +msgstr "" + #: ../../application/modules/opac/controllers/AbonneController.php:1133 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1125 #: ../../application/modules/opac/controllers/AbonneController.php:1127 +#: ../../application/modules/opac/controllers/AbonneController.php:1142 msgid "Identifiant et/ou mot de passe incorrect" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:64 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:54 +msgid "Identifiant externe Dilicom" +msgstr "" + #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:62 @@ -9803,6 +10117,10 @@ msgstr "" msgid "Identifiant inconnu." msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:60 +msgid "Identifiant interne Bokeh" +msgstr "" + #: ../../library/Class/IntProfilDonnees.php:170 #: ../../library/Class/IntProfilDonnees.php:170 msgid "Identifiant interne dans le sigb" @@ -9891,17 +10209,17 @@ msgid "Il faut compléter tous les champs." msgstr "" #: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357 -#: ../../library/Class/Profil.php:1377 +#: ../../library/Class/Profil.php:1377 ../../library/Class/Profil.php:1378 msgid "Il manque la largeur de la division 1." msgstr "" #: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361 -#: ../../library/Class/Profil.php:1381 +#: ../../library/Class/Profil.php:1381 ../../library/Class/Profil.php:1382 msgid "Il manque la largeur de la division 2." msgstr "" #: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365 -#: ../../library/Class/Profil.php:1385 +#: ../../library/Class/Profil.php:1385 ../../library/Class/Profil.php:1386 msgid "Il manque la largeur de la division 3." msgstr "" @@ -9926,8 +10244,7 @@ msgstr "" msgid "Il n'y a plus de sous-niveau" msgstr "" -#: ../../library/Class/NoticeOAI.php:230 -#: ../../library/Class/NoticeOAI.php:230 +#: ../../library/Class/NoticeOAI.php:230 ../../library/Class/NoticeOAI.php:230 msgid "Il n'y aucun mot assez significatif pour la recherche" msgstr "" @@ -10002,12 +10319,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:175 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 msgid "Import Thesaurus" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 msgid "Import avis opac2" msgstr "" @@ -10032,6 +10351,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 msgid "Import/Export EAD" msgstr "" @@ -10089,12 +10409,14 @@ msgid "Impossible d\\`écrire le fichier sur le disque" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:184 +#: ../../application/modules/admin/controllers/FileManagerController.php:116 #, php-format msgid "Impossible de copier \"%s\" dans \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:228 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:233 +#: ../../application/modules/admin/controllers/FileManagerController.php:170 #, php-format msgid "Impossible de créer le dossier \"%s\"." msgstr "" @@ -10106,6 +10428,7 @@ msgid "Impossible de créer le répertoire local %s" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:163 +#: ../../application/modules/admin/controllers/FileManagerController.php:95 #, php-format msgid "Impossible de déplacer \"%s\" dans \"%s\"." msgstr "" @@ -10131,6 +10454,7 @@ msgid "Impossible de se connecter au serveur %s" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:207 +#: ../../application/modules/admin/controllers/FileManagerController.php:140 #, php-format msgid "Impossible de supprimer \"%s\"." msgstr "" @@ -10162,6 +10486,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:262 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:267 +#: ../../application/modules/admin/controllers/FileManagerController.php:204 #, php-format msgid "Impossible de téléverser le fichier \"%s\"." msgstr "" @@ -10195,6 +10520,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 #: ../../library/ZendAfi/View/Helper/Avis.php:106 #: ../../library/ZendAfi/View/Helper/Admin/Versions.php:55 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:72 msgid "Inconnu" msgstr "" @@ -10208,6 +10534,10 @@ msgstr "" msgid "Inconnu ou Supprimé" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:52 +msgid "Indetifiant de l'utilisateur interne Bokeh" +msgstr "" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 msgid "Index des fonctions" @@ -10407,6 +10737,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../application/modules/admin/controllers/SystemeController.php:269 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 msgid "Informations système" msgstr "" @@ -10463,6 +10794,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:386 #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:427 +#: ../../application/modules/opac/controllers/AuthController.php:422 msgid "Inscription à la lettre d'information: " msgstr "" @@ -10471,6 +10803,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:468 #: ../../application/modules/opac/controllers/AuthController.php:502 #: ../../application/modules/opac/controllers/AuthController.php:509 +#: ../../application/modules/opac/controllers/AuthController.php:504 msgid "Inscription à la newsletter invalide." msgstr "" @@ -10490,6 +10823,7 @@ msgid "Inscrit à la lettre" msgstr "" #: ../../library/Class/Feature/List.php:185 +#: ../../library/Class/Feature/List.php:186 msgid "Insérer un kiosque dans un article" msgstr "" @@ -10577,6 +10911,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 msgid "Invité" msgstr "" @@ -10603,6 +10938,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81 msgid "Jamendo" msgstr "" @@ -10627,12 +10963,12 @@ msgid "Javascript" msgstr "" #: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:367 -#: ../../library/Class/AdminVar.php:364 +#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369 msgid "Javascript code for statistics" msgstr "" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" @@ -10648,11 +10984,13 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:337 #: ../../application/modules/opac/controllers/AuthController.php:344 +#: ../../application/modules/opac/controllers/AuthController.php:339 msgid "Jeton de réinitialisation expiré" msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:334 #: ../../application/modules/opac/controllers/AuthController.php:341 +#: ../../application/modules/opac/controllers/AuthController.php:336 msgid "Jeton de réinitialisation invalide" msgstr "" @@ -10660,6 +10998,10 @@ msgstr "" msgid "Jeudi" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:7 +msgid "Jeudi 15 mars" +msgstr "" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:8 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:9 @@ -10682,6 +11024,10 @@ msgstr "" msgid "Jour" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:5 +msgid "Journée communautaire Bokeh 2018" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:31 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 @@ -10872,23 +11218,31 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:640 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:655 +#: ../../application/modules/opac/controllers/RechercheController.php:544 +#: ../../application/modules/opac/controllers/RechercheController.php:658 msgid "L'exemplaire n'existe pas" msgstr "" +#: ../../application/modules/opac/controllers/ModulesController.php:79 +msgid "L'identifiant du document demandé n'existe pas" +msgstr "" + #: ../../library/Class/Users.php:1024 ../../library/Class/Users.php:1024 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1012 -#: ../../library/Class/Users.php:1014 +#: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1018 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:318 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:323 +#: ../../application/modules/admin/controllers/FileManagerController.php:260 #, php-format msgid "L'image \"%s\" a été compressée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:306 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:311 +#: ../../application/modules/admin/controllers/FileManagerController.php:248 #, php-format msgid "L'image \"%s\" a été redimensionnée." msgstr "" @@ -11012,7 +11366,7 @@ msgstr "" #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1033 #: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1021 -#: ../../library/Class/Users.php:1023 +#: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1027 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "" @@ -11059,6 +11413,11 @@ msgstr "" msgid "La catégorie \"%s\" a été sauvegardée" msgstr "" +#: ../../application/modules/admin/controllers/IndexController.php:86 +#, php-format +msgid "La clé \"%s\" n'existe pas." +msgstr "" + #: ../../library/Class/Profil/SkinUpdateReader.php:102 #: ../../library/Class/Profil/SkinUpdateReader.php:102 #, php-format @@ -11080,6 +11439,7 @@ msgstr "" #: ../../library/Class/Systeme/Widget/Widget.php:72 #: ../../library/Class/Systeme/Widget/Widget.php:72 +#: ../../library/Class/Systeme/Widget/Widget.php:74 #, php-format msgid "La configuration de la boite %s a été sauvegardée" msgstr "" @@ -11092,18 +11452,19 @@ msgid "La configuration du menu %s a été sauvegardée" msgstr "" #: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385 -#: ../../library/Class/Profil.php:1405 +#: ../../library/Class/Profil.php:1405 ../../library/Class/Profil.php:1406 msgid "La couleur des liens du bandeau doit être au format #001122" msgstr "" #: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381 -#: ../../library/Class/Profil.php:1401 +#: ../../library/Class/Profil.php:1401 ../../library/Class/Profil.php:1402 msgid "La couleur du texte bandeau doit être au format #001122" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:145 #: ../../application/modules/admin/controllers/IndexController.php:155 #: ../../application/modules/admin/controllers/IndexController.php:155 +#: ../../application/modules/admin/controllers/IndexController.php:163 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" @@ -11114,7 +11475,7 @@ msgid "" msgstr "" #: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346 -#: ../../library/Class/Profil.php:1366 +#: ../../library/Class/Profil.php:1366 ../../library/Class/Profil.php:1367 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels." msgstr "" @@ -11165,6 +11526,21 @@ msgstr "" msgid "La pièce jointe est invalide." msgstr "" +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:31 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:32 +#, php-format +msgid "La recherche \"%s\" a été enregistrée dans mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:33 +#, php-format +msgid "La recherche \"%s\" a été supprimée de mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:54 +msgid "La recherche demandée est introuvable." +msgstr "" + #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 @@ -11212,7 +11588,7 @@ msgid "La session \"%s\" a été sauvegardée, son article lié a été créé." msgstr "" #: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353 -#: ../../library/Class/Profil.php:1373 +#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1374 msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "" @@ -11222,14 +11598,17 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:478 +#: ../../library/Class/CriteresRecherche.php:491 msgid "La sélection ne contient aucune notice" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 msgid "La taille du fichier doit être inférieur à \"%max%\"" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:50 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:54 msgid "La taille du fichier doit être supérieur à \"%min%\"" msgstr "" @@ -11458,6 +11837,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:123 #: ../../application/modules/admin/controllers/IndexController.php:133 #: ../../application/modules/admin/controllers/IndexController.php:133 +#: ../../application/modules/admin/controllers/IndexController.php:141 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -11504,13 +11884,13 @@ msgstr "" #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1020 #: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1010 +#: ../../library/Class/Users.php:1010 ../../library/Class/Users.php:1014 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "" #: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1028 #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1016 -#: ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1022 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "" @@ -11556,6 +11936,14 @@ msgstr "" msgid "Le document %s a été ajouté au panier %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:35 +msgid "Le document n'a pas d'album" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/OldLoans.php:30 +msgid "Le document n'a pas encore été emprunté" +msgstr "" + #: ../../application/modules/admin/controllers/CatalogueController.php:53 #: ../../application/modules/admin/controllers/CatalogueController.php:53 msgid "" @@ -11564,6 +11952,7 @@ msgid "" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:194 +#: ../../application/modules/admin/controllers/FileManagerController.php:126 #, php-format msgid "" "Le dossier \"%s\" ne peut pas être supprimé car il contient des éléments " @@ -11604,6 +11993,7 @@ msgid "Le fichier n'est pas de type %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:52 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:56 msgid "Le fichier n'est pas lisible" msgstr "" @@ -11641,11 +12031,13 @@ msgid "Le flux doit être au format iCalendar" msgstr "" #: ../../library/Class/Feature/List.php:142 +#: ../../library/Class/Feature/List.php:143 msgid "Le fond de carte de la boite bibliothèques est personnalisable." msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:46 msgid "Le formulaire a été modifié. Etes vous sûr de vouloir partir ?" msgstr "" @@ -11657,7 +12049,7 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252 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 " @@ -11676,7 +12068,7 @@ msgid "Le libellé doit être renseigné" msgstr "" #: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342 -#: ../../library/Class/Profil.php:1362 +#: ../../library/Class/Profil.php:1362 ../../library/Class/Profil.php:1363 msgid "Le libellé est obligatoire." msgstr "" @@ -11703,18 +12095,40 @@ msgstr "" msgid "Le modèle \"%s\" a été sauvegardé" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272 +msgid "Le moissonnage n'est pas programmé" +msgstr "" + +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +msgid "" +"Le nom doit contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 msgid "" "Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " "caratères \"_\", \"-\", \" \", \".\". Exemple : \"mon_dossier\"" msgstr "" +#: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 +msgid "" +"Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " +"caratères \"_\", \"-\", \".\". Exemple : \"mon_dossier\"" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 msgid "" "Le nom peut contenir uniquement des lettres, des chiffres et les caratères " "\"_\", \"-\", \" \", \".\". Exemple : \"mon_fichier.2\"" msgstr "" +#: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 +msgid "" +"Le nom peut contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:161 @@ -11738,7 +12152,7 @@ msgstr "" #: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1026 -#: ../../library/Class/Users.php:1028 +#: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1032 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" @@ -11894,6 +12308,7 @@ msgid "Les extensions possiblent sont : %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:59 #, php-format msgid "Les extensions possibles sont : %s" msgstr "" @@ -11971,6 +12386,17 @@ msgstr "" msgid "Les mots de passe ne correspondent pas" msgstr "" +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:85 +#, php-format +msgid "Les notifications de nouveautés pour la recherche \"%s\" sont activées." +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:96 +#, php-format +msgid "" +"Les notifications de nouveautés pour la recherche \"%s\" sont désactivées." +msgstr "" + #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #, fuzzy, php-format @@ -12014,6 +12440,16 @@ msgstr "" msgid "Les sites les plus récents" msgstr "" +#: ../../library/Class/AdminVar.php:225 +msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris" +msgstr "" + +#: ../../library/Class/AdminVar.php:226 +msgid "" +"Les utilisateurs peuvent recevoir les nouveautés de leurs recherches " +"favorites par email" +msgstr "" + #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:224 msgid "" @@ -12155,6 +12591,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Section.php:30 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:82 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9 +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29 msgid "Libellé" msgstr "" @@ -12331,7 +12769,7 @@ msgid "Lien permanent" msgstr "" #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:277 +#: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" @@ -12567,6 +13005,10 @@ msgstr "" msgid "Lien vers une sélection d'articles" msgstr "Vous avez attein le nombre maximum de réservations" +#: ../../library/Class/Notice/MailRenderer.php:34 +msgid "Lien: " +msgstr "" + #: ../../library/Class/Systeme/ModulesMenu.php:73 #: ../../library/Class/Systeme/ModulesMenu.php:73 msgid "Liens d'informations" @@ -12682,6 +13124,9 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:655 #: ../../application/modules/opac/controllers/RechercheController.php:662 #: ../../application/modules/opac/controllers/RechercheController.php:691 +#: ../../application/modules/opac/controllers/RechercheController.php:658 +#: ../../application/modules/opac/controllers/RechercheController.php:665 +#: ../../application/modules/opac/controllers/RechercheController.php:694 msgid "Lieu de mise à disposition demandé" msgstr "" @@ -12770,6 +13215,7 @@ msgid "Liste des albums" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:156 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:162 msgid "Liste des appels webservices" msgstr "" @@ -12818,7 +13264,7 @@ msgid "Liste des derniers fils RSS ajoutés" msgstr "" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403 -#: ../../library/Class/AdminVar.php:400 +#: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -12836,16 +13282,16 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 -#: ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401 msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "" -#: ../../library/Class/AdminVar.php:406 +#: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." @@ -12857,7 +13303,7 @@ msgid "Liste des réservations du site \"%s\"" msgstr "Vous avez attein le nombre maximum de réservations" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:242 +#: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -12971,9 +13417,15 @@ msgstr "" #: ../../library/ZendAfi/Form/Login.php:118 #: ../../application/modules/admin/views/scripts/users/manage-double-user.phtml:10 #: ../../library/ZendAfi/Form/Login.php:118 +#: ../../library/ZendAfi/Form/Login.php:127 msgid "Login" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219 +#, php-format +msgid "Login : %s" +msgstr "" + #: ../../library/Class/AdminVar.php:151 ../../library/Class/AdminVar.php:152 msgid "Login ARTE VOD" msgstr "" @@ -13006,6 +13458,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:155 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 msgid "Longueur" msgstr "" @@ -13031,6 +13484,11 @@ msgstr "" msgid "MARC 21" msgstr "" +#: ../../library/Class/CriteresRecherche.php:973 +#, php-format +msgid "Ma recherche \"%s\"" +msgstr "" + #: ../../library/Class/Users.php:261 ../../library/Class/Users.php:261 #: ../../library/Class/Users.php:262 ../../library/Class/Users.php:241 msgid "Madame" @@ -13156,6 +13614,14 @@ msgstr "Vous avez attein le nombre maximum de réservations" msgid "Me connecter" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:46 +msgid "Me notifier des nouveautés" +msgstr "" + +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:37 +msgid "Me notifier des nouveautés par email" +msgstr "" + #: ../../library/ZendAfi/Form/Album/Ressource.php:43 #: ../../library/ZendAfi/Form/Album/Ressource.php:43 msgid "Media" @@ -13253,6 +13719,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48 #: ../../application/modules/opac/controllers/AbonneController.php:1182 #: ../../application/modules/opac/controllers/AbonneController.php:1184 +#: ../../application/modules/opac/controllers/AbonneController.php:1199 msgid "Mes activités suivies" msgstr "" @@ -13270,6 +13737,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23 #: ../../application/modules/opac/controllers/AbonneController.php:1048 #: ../../application/modules/opac/controllers/AbonneController.php:1050 +#: ../../application/modules/opac/controllers/AbonneController.php:1065 msgid "Mes cartes" msgstr "" @@ -13278,6 +13746,11 @@ msgstr "" msgid "Mes derniers paniers" msgstr "" +#: ../../application/modules/opac/controllers/AbonneController.php:1021 +#: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 +msgid "Mes favoris" +msgstr "" + #: ../../application/modules/opac/controllers/AbonneController.php:1184 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1183 @@ -13285,12 +13758,13 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1176 #: ../../application/modules/opac/controllers/AbonneController.php:1178 +#: ../../application/modules/opac/controllers/AbonneController.php:1193 msgid "Mes inscriptions en cours" msgstr "" #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1553 #: ../../library/Class/Users.php:1564 ../../library/Class/Users.php:1543 -#: ../../library/Class/Users.php:1546 +#: ../../library/Class/Users.php:1546 ../../library/Class/Users.php:1550 msgid "Mes paniers" msgstr "" @@ -13301,7 +13775,7 @@ msgstr "" #: ../../library/Class/Users.php:1586 ../../library/Class/Users.php:1586 #: ../../library/Class/Users.php:1597 ../../library/Class/Users.php:1576 -#: ../../library/Class/Users.php:1579 +#: ../../library/Class/Users.php:1579 ../../library/Class/Users.php:1583 msgid "Mes paniers rattachés à un domaine" msgstr "" @@ -13324,6 +13798,10 @@ msgstr "" msgid "Mes recherches" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:81 +msgid "Mes recherches favorites" +msgstr "" + #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:33 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:27 #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:34 @@ -13409,6 +13887,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:481 +#: ../../application/modules/opac/controllers/RechercheController.php:484 msgid "Message du demandeur :" msgstr "" @@ -13479,6 +13958,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 #: ../../library/Class/Feature/List.php:68 #: ../../library/Class/Feature/List.php:145 +#: ../../library/Class/Feature/List.php:146 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:96 msgid "Mise en page" msgstr "" @@ -13512,6 +13993,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../application/modules/admin/controllers/IndexController.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 +#: ../../application/modules/admin/controllers/IndexController.php:152 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 msgid "Mise à jour de la charte graphique" msgstr "" @@ -13596,6 +14079,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 #: ../../library/Class/Migration/ScriptPatchs.php:74 #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 +#: ../../library/Class/Migration/ScriptPatchs.php:80 msgid "Mise à niveau de la base effectuée avec succès" msgstr "" @@ -13668,6 +14152,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:178 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 msgid "Modification Thesaurus" msgstr "" @@ -13741,6 +14226,13 @@ msgstr "" msgid "Modifier" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230 +#, fuzzy, php-format +msgid "Modifier \"%s\"" +msgstr "Entrez votre identité S.V.P." + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #, php-format @@ -13890,6 +14382,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:85 #: ../../application/modules/admin/controllers/IndexController.php:94 #: ../../application/modules/admin/controllers/IndexController.php:94 +#: ../../application/modules/admin/controllers/IndexController.php:102 #, php-format msgid "Modifier la variable: %s" msgstr "" @@ -14172,6 +14665,7 @@ msgstr "Entrez votre identité S.V.P." #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:27 msgid "Modifié le" msgstr "" @@ -14218,6 +14712,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../application/modules/admin/controllers/PrintController.php:31 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:98 msgid "Modèles d'impressions" msgstr "" @@ -14234,14 +14729,14 @@ msgid "Modération des alertes" msgstr "" #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:358 -#: ../../library/Class/AdminVar.php:355 +#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" msgstr "" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:357 -#: ../../library/Class/AdminVar.php:354 +#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -14276,6 +14771,7 @@ msgid "Modération des tags sur les notices" msgstr "" #: ../../library/Class/Feature/List.php:163 +#: ../../library/Class/Feature/List.php:164 msgid "Modération des vidéos" msgstr "" @@ -14311,12 +14807,17 @@ msgstr "" msgid "Moissonnage Orphea" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:70 +msgid "Moissonnage activé" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 msgid "Moissonnage automatique" msgstr "" #: ../../library/Class/Feature/List.php:153 +#: ../../library/Class/Feature/List.php:154 msgid "Moissonnage des notices de musicMe" msgstr "" @@ -14326,6 +14827,10 @@ msgstr "" msgid "Moissonnage des évènements de l'agenda \"%s\"" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:66 +msgid "Moissonnage désactivé" +msgstr "" + #: ../../application/modules/admin/views/scripts/harvest/orphea-browse.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 @@ -14413,9 +14918,15 @@ msgstr "" #: ../../library/ZendAfi/Form/Register.php:42 #: ../../library/ZendAfi/Form/Admin/User.php:73 #: ../../library/ZendAfi/Form/Admin/Library.php:240 +#: ../../library/ZendAfi/Form/Login.php:138 msgid "Mot de passe" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220 +#, fuzzy, php-format +msgid "Mot de passe : %s" +msgstr "Entrez votre identité S.V.P." + #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:180 #: ../../library/Class/AdminVar.php:177 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" @@ -14471,6 +14982,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 msgid "Multimedia" msgstr "" @@ -14524,8 +15036,7 @@ msgstr "" msgid "N'envoie pas de données" msgstr "" -#: ../../library/Class/FRBR/Link.php:160 -#: ../../library/Class/FRBR/Link.php:162 +#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162 #: ../../library/Class/FRBR/Link.php:162 msgid "N'est pas une url valide" msgstr "" @@ -14623,6 +15134,7 @@ msgstr "" #: ../../library/Class/User/CardsNotification.php:58 #: ../../library/Class/User/CardsNotification.php:58 +#: ../../library/Class/Feature.php:177 msgid "Ne plus m'avertir" msgstr "" @@ -14678,6 +15190,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:160 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:151 msgid "Niveau de catalogage" msgstr "" @@ -14689,6 +15202,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:149 msgid "Niveau hiérarchique" msgstr "" @@ -14846,9 +15360,15 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:31 #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:33 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:29 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:31 msgid "Nom :" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212 +#, php-format +msgid "Nom : %s" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 msgid "Nom commence par" @@ -14856,12 +15376,13 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:175 #: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:194 #, fuzzy msgid "Nom d'utilisateur ou mot de passe invalide" msgstr "Limite du nombre de réservations atteinte" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" @@ -14886,10 +15407,16 @@ msgstr "" msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123 +#, php-format +msgid "Nom de la permission à donner : \"%s\"" +msgstr "" + #: ../../application/modules/admin/views/scripts/index/index.phtml:26 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#: ../../application/modules/admin/views/scripts/index/index.phtml:37 msgid "Nom du domaine" msgstr "" @@ -14910,7 +15437,7 @@ msgid "Nom du responsable" msgstr "" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:243 +#: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245 msgid "Nom du site" msgstr "" @@ -14933,6 +15460,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:473 +#: ../../application/modules/opac/controllers/RechercheController.php:476 #, php-format msgid "Nom et prénom : %s" msgstr "" @@ -14947,6 +15475,11 @@ msgstr "" msgid "Nombre d'albums" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:332 +#, php-format +msgid "Nombre d'albums présents : %d" +msgstr "" + #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 msgid "Nombre d'articles" @@ -15067,17 +15600,17 @@ msgid "Nombre d\\'événements mis à jour : %s\n" msgstr "" #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "" #: ../../library/Class/AdminVar.php:350 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:348 +#: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "" #: ../../library/Class/AdminVar.php:349 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:347 +#: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "" @@ -15138,7 +15671,7 @@ msgid "Nombre de formulaires : %s" msgstr "" #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:361 -#: ../../library/Class/AdminVar.php:358 +#: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "" @@ -15149,6 +15682,10 @@ msgstr "" msgid "Nombre de jours restant sur la licence" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150 +msgid "Nombre de membres" +msgstr "" + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 msgid "Nombre de notices hors cache" @@ -15267,7 +15804,7 @@ msgid "Nombre de vignettes reconnues" msgstr "" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:251 +#: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -15327,6 +15864,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:56 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12 msgid "Non" msgstr "" @@ -15350,9 +15889,15 @@ msgstr "" #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:275 +#: ../../library/Class/Exemplaire.php:291 msgid "Non disponible" msgstr "" +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:11 +msgid "Non je ne veux pas" +msgstr "" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare.php:61 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/MultiCheckbox.php:37 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/DomainSelect.php:52 @@ -15409,6 +15954,7 @@ msgid "Notice \"%s\" retirée du panier" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:306 +#: ../../application/modules/opac/controllers/RechercheController.php:800 msgid "Notice Bokeh" msgstr "" @@ -15449,6 +15995,7 @@ msgstr "Limite du nombre de réservations atteinte" #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:475 +#: ../../application/modules/opac/controllers/RechercheController.php:478 msgid "Notice réservée : " msgstr "" @@ -15486,6 +16033,7 @@ msgstr "" #: ../../library/Class/Codification.php:234 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 msgid "Notices liées" msgstr "" @@ -15510,6 +16058,10 @@ msgstr "Limite du nombre de réservations atteinte" msgid "Notices à traiter: %s" msgstr "" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:30 +msgid "Notification des nouveautés dans les recherches favorites" +msgstr "" + #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 msgid "" @@ -15591,6 +16143,11 @@ msgstr "" msgid "Nouveau type de relation" msgstr "" +#: ../../library/Class/User/BookmarkedSearch.php:112 +#, php-format +msgid "Nouveau(x) résultat(s) pour votre recherche %s" +msgstr "" + #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 @@ -15600,6 +16157,8 @@ msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:36 #: ../../application/modules/admin/controllers/FeatureController.php:58 +#: ../../application/modules/admin/controllers/FeatureController.php:37 +#: ../../application/modules/admin/controllers/FeatureController.php:59 msgid "Nouveauté inconnue" msgstr "" @@ -15614,6 +16173,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:68 #: ../../application/modules/admin/views/scripts/feature/index.phtml:70 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:86 #, php-format msgid "Nouveautés : %d" msgstr "" @@ -15655,6 +16215,12 @@ msgstr "" msgid "Nouveautés de moins de: " msgstr "" +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#, php-format +msgid "Nouveautés du %s" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 msgid "Nouveautés uniquement" @@ -15713,6 +16279,10 @@ msgstr "" msgid "Nouvelles fonctionnalités" msgstr "" +#: ../../library/Class/Feature.php:184 +msgid "Nouvelles fonctionnalités depuis votre dernière connexion : " +msgstr "" + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 msgid "Nov" @@ -15754,6 +16324,7 @@ msgstr "" #: ../../library/ZendAfi/Form/SecurePassword.php:29 #: ../../library/ZendAfi/Form/SecurePassword.php:29 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:53 msgid "Numéro de carte" msgstr "" @@ -15777,6 +16348,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:55 msgid "Numéro de commande" msgstr "" @@ -15996,6 +16568,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 +#: ../../library/Class/CriteresRecherche.php:138 msgid "Ordre du panier" msgstr "" @@ -16055,6 +16628,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:55 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5 msgid "Oui" msgstr "" @@ -16130,6 +16705,11 @@ msgstr "" msgid "Ouvrir dans un nouvel onglet" msgstr "" +#: ../../application/modules/admin/views/scripts/profil/_page_row.phtml:34 +#, php-format +msgid "Ouvrir la page \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 msgid "Ouvrir le lien dans un nouvel onglet" @@ -16162,7 +16742,7 @@ msgid "Où le trouver dans mes bibliothèques favorites" msgstr "" #: ../../library/Class/AdminVar.php:367 ../../library/Class/AdminVar.php:368 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370 msgid "PIWIK authentication token for widgets" msgstr "" @@ -16173,6 +16753,7 @@ msgstr "" #: ../../application/modules/admin/controllers/AlbumController.php:75 #: ../../library/Class/Batch/Dilicom.php:30 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82 msgid "PNB Dilicom" msgstr "" @@ -16244,8 +16825,7 @@ msgstr "" msgid "Page: " msgstr "" -#: ../../library/Class/NoticeHtml.php:82 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "" @@ -16435,6 +17015,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:26 +#: ../../application/modules/admin/views/scripts/index/index.phtml:20 msgid "Paramètres du site" msgstr "" @@ -16442,6 +17023,10 @@ msgstr "" msgid "Paramètres manquants dans la requête de suppression" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105 +msgid "Paramétrage" +msgstr "" + #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147 @@ -16506,6 +17091,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:66 +#: ../../application/modules/admin/views/scripts/index/index.phtml:60 msgid "Participez à la communauté" msgstr "" @@ -16517,6 +17103,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action.php:251 #: ../../library/ZendAfi/Controller/Action.php:261 #: ../../library/ZendAfi/Controller/Action.php:261 +#: ../../library/ZendAfi/Controller/Action.php:284 msgid "" "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. " "Merci de remplir manuellement" @@ -16564,6 +17151,10 @@ msgstr "" msgid "Pas de version suivante" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:17 +msgid "Pas encore de nouveauté." +msgstr "" + #: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:212 msgid "Password du portail fourni par Kidilangues." @@ -16626,6 +17217,7 @@ msgid "Permalien vignette :" msgstr "" #: ../../library/Class/Feature/List.php:186 +#: ../../library/Class/Feature/List.php:187 msgid "Permet d'afficher un ou plusieurs kiosques de notices dans un article" msgstr "" @@ -16672,6 +17264,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Pertinence" msgstr "" @@ -16727,6 +17320,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 msgid "Pictogrammes des genres" msgstr "" @@ -16748,6 +17342,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:110 msgid "Piwik" msgstr "" @@ -16856,6 +17451,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285 msgid "Planification" msgstr "" @@ -16877,6 +17473,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310 msgid "Plannifier la tâche" msgstr "" @@ -16944,6 +17541,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460 +#: ../../library/Class/AdminVar.php:465 msgid "Portail" msgstr "" @@ -16952,7 +17550,7 @@ msgstr "" #: ../../library/Class/AdminVar.php:240 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187 -#: ../../library/Class/AdminVar.php:237 +#: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239 msgid "Position" msgstr "" @@ -16964,7 +17562,7 @@ msgid "Position de la pagination" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:239 -#: ../../library/Class/AdminVar.php:236 +#: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238 msgid "Position de la pagination en résultat de recherche" msgstr "" @@ -16976,6 +17574,7 @@ msgid "Position des filtres" msgstr "" #: ../../library/Class/Feature/List.php:131 +#: ../../library/Class/Feature/List.php:132 msgid "" "Possibilité d'éditer ou d'ajouter un site, dans une boite sithothèque, " "depuis l'interface publique." @@ -17000,10 +17599,17 @@ msgstr "" #: ../../library/Class/Users.php:1084 ../../library/Class/Users.php:1084 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1072 -#: ../../library/Class/Users.php:1075 +#: ../../library/Class/Users.php:1075 ../../library/Class/Users.php:1079 msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:" msgstr "" +#: ../../library/Class/User/BookmarkedSearch.php:161 +#, php-format +msgid "" +"Pour annuler les prochaines notifications de nouveautés pour la recherche " +"%s. Veuillez cliquer sur le lien: %s" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 msgid "" @@ -17037,6 +17643,11 @@ msgstr "" msgid "Pour valider l'abonnement, merci de cliquer sur le lien suivant:" msgstr "" +#: ../../library/Class/User/BookmarkedSearch.php:154 +#, php-format +msgid "Pour voir toutes ces nouveautés sur le portail, suivez le lien: %s" +msgstr "" + #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 msgid "" @@ -17044,6 +17655,11 @@ msgid "" "lien suivant:" msgstr "" +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:38 +#, php-format +msgid "Pour: %s " +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 msgid "Pourcentages" @@ -17057,6 +17673,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 msgid "Premier-Chapitre" msgstr "" @@ -17116,6 +17733,7 @@ msgid "Prix" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:43 +#: ../../application/modules/admin/controllers/FeatureController.php:44 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" est toujours une nouveauté " @@ -17123,6 +17741,7 @@ msgid "" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:65 +#: ../../application/modules/admin/controllers/FeatureController.php:66 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" n'est toujours pas une " @@ -17190,7 +17809,7 @@ msgid "Profil de données %s (%d) non présent ou mal configuré" msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -17199,6 +17818,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:97 msgid "Profils" msgstr "" @@ -17349,6 +17969,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:124 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:358 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:367 +#: ../../application/modules/admin/controllers/FileManagerController.php:304 #, php-format msgid "Propriétés de \"%s\"" msgstr "" @@ -17399,6 +18020,10 @@ msgstr "" msgid "Protocole HTTP obligatoire" msgstr "" +#: ../../application/modules/api/controllers/UserController.php:26 +msgid "Protocole HTTPS obligatoire" +msgstr "" + #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:160 @@ -17446,6 +18071,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:567 #: ../../application/modules/opac/controllers/AuthController.php:601 #: ../../application/modules/opac/controllers/AuthController.php:608 +#: ../../application/modules/opac/controllers/AuthController.php:603 msgid "Préinscription" msgstr "" @@ -17454,6 +18080,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:541 #: ../../application/modules/opac/controllers/AuthController.php:575 #: ../../application/modules/opac/controllers/AuthController.php:582 +#: ../../application/modules/opac/controllers/AuthController.php:577 #, php-format msgid "Préinscription à %s" msgstr "" @@ -17548,6 +18175,14 @@ msgstr "" msgid "Prévisualisation de la notice %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 +#: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 +#, php-format +msgid "" +"Prévisualisation du panier \"%s\" en résultat de recherche dans un nouvel " +"onglet" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 @@ -17570,8 +18205,7 @@ msgstr "" msgid "Prêt" msgstr "" -#: ../../library/Class/User/Cards.php:67 -#: ../../library/Class/User/Cards.php:67 +#: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 msgid "Prêt introuvable" msgstr "" @@ -17602,6 +18236,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:85 msgid "Prêts en cours" msgstr "" @@ -17830,6 +18465,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:160 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 msgid "Rapports statistiques" msgstr "" @@ -17897,12 +18533,14 @@ msgid "Recherche fédérée" msgstr "" #: ../../library/Class/Feature/List.php:152 +#: ../../library/Class/Feature/List.php:153 msgid "Recherche fédérée pour MusicMe" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:224 +#: ../../application/modules/opac/controllers/RechercheController.php:222 msgid "Recherche guidée" msgstr "" @@ -17962,6 +18600,11 @@ msgstr "" msgid "Rechercher aussi sur " msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:420 +#, php-format +msgid "Rechercher dans \"%s\"" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 msgid "Rechercher des stagiaires" @@ -17978,6 +18621,7 @@ msgid "Rechercher des utilisateurs " msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:419 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:425 msgid "Rechercher le terme saisie" msgstr "" @@ -18030,6 +18674,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../application/modules/admin/controllers/StatController.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:111 msgid "Recherches infructueuses" msgstr "" @@ -18044,6 +18689,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:287 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:292 +#: ../../application/modules/admin/controllers/FileManagerController.php:230 #, php-format msgid "Redimensionner l'image \"%s\"" msgstr "" @@ -18184,6 +18830,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:92 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:327 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:332 +#: ../../application/modules/admin/controllers/FileManagerController.php:269 #, php-format msgid "Renommer \"%s\"" msgstr "" @@ -18378,6 +19025,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:61 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:178 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:168 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Retour" msgstr "" @@ -18546,6 +19194,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 msgid "Rédacteur bibliothèque" msgstr "" @@ -18553,6 +19202,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:243 msgid "Rédacteur portail" msgstr "" @@ -18588,6 +19238,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:326 #: ../../application/modules/opac/controllers/AuthController.php:333 +#: ../../application/modules/opac/controllers/AuthController.php:328 msgid "Réinitialisation du mot de passe" msgstr "" @@ -18657,6 +19308,7 @@ msgstr "" #: ../../application/modules/telephone/views/scripts/recherche/reservation.phtml:2 #: ../../application/modules/opac/controllers/RechercheController.php:563 #: ../../application/modules/opac/controllers/RechercheController.php:578 +#: ../../application/modules/opac/controllers/RechercheController.php:581 msgid "Réservation" msgstr "" @@ -18708,8 +19360,7 @@ msgstr "" msgid "Réservation interdite pour l'abonné." msgstr "" -#: ../../library/Class/User/Cards.php:77 -#: ../../library/Class/User/Cards.php:77 +#: ../../library/Class/User/Cards.php:77 ../../library/Class/User/Cards.php:77 #, fuzzy msgid "Réservation introuvable" msgstr "Limite du nombre de réservations atteinte" @@ -18809,6 +19460,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php:38 #: ../../application/modules/opac/controllers/RechercheController.php:202 #: ../../application/modules/opac/controllers/RechercheController.php:203 +#: ../../application/modules/opac/controllers/RechercheController.php:207 msgid "Résultat de la recherche" msgstr "" @@ -18938,6 +19590,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34 #: ../../application/modules/opac/controllers/AbonneController.php:1170 #: ../../application/modules/opac/controllers/AbonneController.php:1172 +#: ../../application/modules/opac/controllers/AbonneController.php:1187 msgid "S'inscrire à une activité" msgstr "" @@ -18950,6 +19603,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:68 msgid "Salle de discussion #Bokeh" msgstr "" @@ -19060,12 +19714,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:115 #: ../../library/Class/TableDescription/PNBItemsExport.php:41 #: ../../library/Class/TableDescription/PNBLoans.php:36 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 msgid "Section" msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 #, php-format msgid "Section: %s" msgstr "" @@ -19186,6 +19842,8 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:326 #: ../../application/modules/opac/controllers/NoticeajaxController.php:372 #: ../../library/ZendAfi/View/Helper/Trailer.php:32 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:325 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:371 msgid "Service non disponible" msgstr "" @@ -19236,7 +19894,7 @@ msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "" #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:375 -#: ../../library/Class/AdminVar.php:372 +#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -19247,6 +19905,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:30 #: ../../library/Class/Users.php:1085 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1073 ../../library/Class/Users.php:1076 +#: ../../library/Class/Users.php:1080 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." @@ -19326,6 +19985,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:68 +#: ../../application/modules/admin/views/scripts/index/index.phtml:62 msgid "Site communautaire" msgstr "" @@ -19413,6 +20073,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:63 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79 msgid "Sitothèque" msgstr "" @@ -19503,6 +20164,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:109 msgid "Statistiques" msgstr "" @@ -19544,6 +20206,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:156 #: ../../library/ZendAfi/Form/Album.php:146 #: ../../library/ZendAfi/Form/Album.php:147 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 msgid "Statut" msgstr "" @@ -19685,6 +20348,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/abonne/suggestion-achat-add.phtml:2 #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:136 msgid "Suggérer un achat" msgstr "" @@ -19749,6 +20413,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:229 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:231 msgid "Super administrateur" msgstr "" @@ -19860,6 +20525,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:102 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:103 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:196 +#: ../../application/modules/admin/controllers/FileManagerController.php:128 #, php-format msgid "Supprimer \"%s\"" msgstr "" @@ -19966,6 +20632,15 @@ msgstr "Vous avez attein le nombre maximum de réservations" msgid "Supprimer la lettre d'information" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:66 +#, fuzzy, php-format +msgid "Supprimer la recherche \"%s\"" +msgstr "Vous avez attein le nombre maximum de réservations" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:37 +msgid "Supprimer la recherche de mes favoris" +msgstr "" + #: ../../application/modules/admin/controllers/MultimediaController.php:61 #, fuzzy msgid "Supprimer la réservation ?" @@ -20058,6 +20733,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:134 msgid "Système" msgstr "" @@ -20172,6 +20848,10 @@ msgstr "" msgid "Tableau" msgstr "" +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:74 +msgid "Tableau de bord" +msgstr "" + #: ../../application/modules/admin/controllers/StatController.php:64 #: ../../application/modules/admin/controllers/StatController.php:62 #: ../../application/modules/admin/controllers/StatController.php:62 @@ -20253,11 +20933,12 @@ msgstr "" #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:38 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:40 msgid "Taille :" msgstr "" #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396 -#: ../../library/Class/AdminVar.php:393 +#: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398 msgid "Taille du dossier userfiles en méga octets." msgstr "" @@ -20320,6 +21001,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:119 msgid "Territoires" msgstr "" @@ -20342,6 +21024,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 msgid "Test des web-services" msgstr "" @@ -20354,6 +21037,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 msgid "Test envoi mails" msgstr "" @@ -20432,7 +21116,7 @@ msgid "Texte de confirmation" msgstr "" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280 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 " @@ -20440,7 +21124,7 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 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 " @@ -20703,6 +21387,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:58 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:21 #: ../../library/ZendAfi/Form/Album.php:131 +#: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:61 msgid "Titre" msgstr "" @@ -20725,6 +21411,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:476 +#: ../../application/modules/opac/controllers/RechercheController.php:479 #, php-format msgid "Titre : %s" msgstr "" @@ -20760,6 +21447,10 @@ msgstr "" msgid "Titre de la boîte" msgstr "" +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:32 +msgid "Titre de votre recherche" +msgstr "" + #: ../../library/ZendAfi/Form/CreerPanier.php:30 #: ../../library/ZendAfi/Form/Panier.php:32 #: ../../library/ZendAfi/Form/CreerPanier.php:30 @@ -20867,6 +21558,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 #: ../../library/ZendAfi/Form/Configuration/Widget/PremierChapitre.php:37 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:30 msgid "Tous les documents" msgstr "" @@ -21003,6 +21695,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 msgid "Traductions" msgstr "" @@ -21209,6 +21902,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:157 #: ../../library/ZendAfi/Form/Album.php:170 #: ../../library/ZendAfi/Form/Album.php:171 +#: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 msgid "Type de document" msgstr "" @@ -21336,6 +22031,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Profile.php:323 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:172 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:165 msgid "Types de documents" msgstr "" @@ -21416,6 +22112,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/MonocleReaderServerSide.php:112 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:93 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:85 #, php-format msgid "Télécharger" msgstr "" @@ -21520,6 +22217,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:239 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:244 +#: ../../application/modules/admin/controllers/FileManagerController.php:181 #, php-format msgid "Téléverser un fichier dans \"%s\"" msgstr "" @@ -21559,6 +22257,16 @@ msgstr "" msgid "URL Objet B" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234 +#, php-format +msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243 +#, php-format +msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\"" +msgstr "" + #: ../../library/ZendAfi/Form/BiographieNotice.php:28 #: ../../library/ZendAfi/Form/BiographieNotice.php:28 msgid "URL Wikipedia de l'auteur" @@ -21618,13 +22326,11 @@ msgstr "" msgid "URL du site web" msgstr "" -#: ../../library/Class/FRBR/Link.php:159 -#: ../../library/Class/FRBR/Link.php:159 +#: ../../library/Class/FRBR/Link.php:159 ../../library/Class/FRBR/Link.php:159 msgid "URL objet A est requis" msgstr "" -#: ../../library/Class/FRBR/Link.php:161 -#: ../../library/Class/FRBR/Link.php:161 +#: ../../library/Class/FRBR/Link.php:161 ../../library/Class/FRBR/Link.php:161 msgid "URL objet B est requis" msgstr "" @@ -21638,6 +22344,10 @@ msgstr "" msgid "URL principale" msgstr "" +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:56 +msgid "URL publique :" +msgstr "" + #: ../../library/Class/IntProfilDonnees.php:49 #: ../../library/Class/IntProfilDonnees.php:49 msgid "UTF-8" @@ -21680,6 +22390,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:553 #: ../../application/modules/opac/controllers/AuthController.php:587 #: ../../application/modules/opac/controllers/AuthController.php:594 +#: ../../application/modules/opac/controllers/AuthController.php:589 #, php-format msgid "" "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ." @@ -21701,9 +22412,9 @@ msgid "Un libellé est requis" msgstr "" #: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1142 -#: ../../library/Class/User/LostPass.php:110 -#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130 -#: ../../library/Class/Users.php:1133 +#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151 +#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133 +#: ../../library/Class/Users.php:1137 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion." msgstr "" @@ -21720,6 +22431,7 @@ msgid "Un modèle a déjà le même nom : %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 msgid "Un seul fichier doit être transféré." msgstr "" @@ -21728,6 +22440,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:396 #: ../../application/modules/opac/controllers/AuthController.php:430 #: ../../application/modules/opac/controllers/AuthController.php:437 +#: ../../application/modules/opac/controllers/AuthController.php:432 msgid "" "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le " "compte qui utilise cet email." @@ -21744,6 +22457,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:424 #: ../../application/modules/opac/controllers/AuthController.php:458 #: ../../application/modules/opac/controllers/AuthController.php:465 +#: ../../application/modules/opac/controllers/AuthController.php:460 msgid "" "Une demande de confirmation d'inscription vous a été envoyée à l'adresse " "mail renseignée." @@ -21751,6 +22465,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:276 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:281 +#: ../../application/modules/admin/controllers/FileManagerController.php:218 msgid "Une erreur c' produite. Le téléversage a échoué." msgstr "" @@ -21799,6 +22514,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:454 #: ../../application/modules/opac/controllers/AuthController.php:461 +#: ../../application/modules/opac/controllers/AuthController.php:456 msgid "" "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez " "réessayer. Si le problème persiste, veuillez contacter votre médiathèque." @@ -21809,6 +22525,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1154 #: ../../application/modules/opac/controllers/AbonneController.php:1147 #: ../../application/modules/opac/controllers/AbonneController.php:1149 +#: ../../application/modules/opac/controllers/AbonneController.php:1164 #, php-format msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s" msgstr "" @@ -21826,7 +22543,8 @@ msgstr "" #: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369 #: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377 #: ../../library/Class/Profil.php:1389 ../../library/Class/Profil.php:1393 -#: ../../library/Class/Profil.php:1397 +#: ../../library/Class/Profil.php:1397 ../../library/Class/Profil.php:1390 +#: ../../library/Class/Profil.php:1394 ../../library/Class/Profil.php:1398 msgid "Une marge interne de division ne peut pas excéder 20 pixels." msgstr "" @@ -21903,18 +22621,27 @@ msgstr "" msgid "Url d'import d'un agenda TYPO3" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:65 +msgid "Url de la ressource externe Dilicom" +msgstr "" + #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Url de recherche" msgstr "" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:387 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386 +#: ../../library/Class/AdminVar.php:391 msgid "Url du connecteur Le Social" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:58 +msgid "Url du fichier de DRM" +msgstr "" + #: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232 msgid "Url du proxy Redmine" msgstr "" @@ -21924,7 +22651,7 @@ msgid "Url du serveur PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:232 -#: ../../library/Class/AdminVar.php:229 +#: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231 msgid "Url du serveur redmine" msgstr "" @@ -21974,8 +22701,14 @@ msgstr "Limite du nombre de réservations atteinte" msgid "Utilisateur courant : %s" msgstr "Limite du nombre de réservations atteinte" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217 +#, fuzzy +msgid "Utilisateur créé pour ce test" +msgstr "Limite du nombre de réservations atteinte" + #: ../../application/modules/opac/controllers/AuthController.php:329 #: ../../application/modules/opac/controllers/AuthController.php:336 +#: ../../application/modules/opac/controllers/AuthController.php:331 #, fuzzy msgid "Utilisateur inconnu" msgstr "Limite du nombre de réservations atteinte" @@ -21987,6 +22720,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:170 #: ../../application/modules/admin/controllers/UsersController.php:117 +#: ../../application/modules/admin/controllers/IndexController.php:178 #, fuzzy msgid "Utilisateur invalide" msgstr "Limite du nombre de réservations atteinte" @@ -22007,6 +22741,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 #: ../../library/Class/Systeme/Report.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 msgid "Utilisateurs" msgstr "" @@ -22137,11 +22872,13 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BoutonIco.php:71 #: ../../library/ZendAfi/View/Helper/Bouton.php:72 #: ../../library/ZendAfi/View/Helper/Panier/Edit.php:85 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:52 msgid "Valider" msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:31 msgid "Valider et continuer" msgstr "" @@ -22179,6 +22916,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:93 #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:110 #, php-format msgid "Variable %s sauvegardée" msgstr "" @@ -22188,6 +22926,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/Class/Systeme/Report.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 msgid "Variables" msgstr "" @@ -22223,6 +22962,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:55 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:52 #, php-format msgid "Version de : \"%s\"" msgstr "" @@ -22253,6 +22993,8 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:93 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:69 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:66 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:78 #, fuzzy msgid "Version introuvable" msgstr "Limite du nombre de réservations atteinte" @@ -22262,6 +23004,7 @@ msgstr "Limite du nombre de réservations atteinte" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:142 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:99 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:84 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 msgid "Version supprimée" msgstr "" @@ -22282,6 +23025,16 @@ msgstr "" msgid "Versions de l'article : \"%s\"" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267 +msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114 +msgid "" +"Veuillez activer la ressource pour pouvoir gérer les droits d'accès des " +"groupes" +msgstr "" + #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 msgid "Veuillez choisir un panier" @@ -22292,9 +23045,16 @@ msgstr "" msgid "Veuillez choisir une notice" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187 +msgid "" +"Veuillez configurer les droits de cette ressource pour obtenir une connexion " +"SSO" +msgstr "" + #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 +#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:36 msgid "Veuillez patienter ..." msgstr "" @@ -22322,6 +23082,10 @@ msgstr "" msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT" msgstr "" +#: ../../application/modules/admin/controllers/IndexController.php:81 +msgid "Veuillez renseigner le paramètre \"cle\"." +msgstr "" + #: ../../application/modules/admin/views/scripts/premier-chapitre/maj-ref.phtml:21 #: ../../application/modules/admin/controllers/PremierChapitreController.php:85 #: ../../application/modules/admin/controllers/PremierChapitreController.php:105 @@ -22493,6 +23257,11 @@ msgstr "" msgid "Visionner le film dans son intégralité" msgstr "" +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:11 +#, php-format +msgid "Visualisation de l'article \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 @@ -22501,6 +23270,11 @@ msgstr "" msgid "Visualisation de l\\album" msgstr "" +#: ../../application/modules/admin/views/scripts/catalogue/paniers.phtml:18 +#, php-format +msgid "Visualisation du panier \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/View/Helper/BoutonIco.php:60 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:79 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:73 @@ -22516,6 +23290,11 @@ msgstr "" msgid "Visualiser la newsletter" msgstr "" +#: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:42 +#, fuzzy, php-format +msgid "Visualiser le domaine \"%s\" dans un nouvel onglet" +msgstr "Entrez votre identité S.V.P." + #: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:41 #, fuzzy, php-format msgid "Visualiser le domaine : %s" @@ -22532,6 +23311,11 @@ msgstr "" msgid "Vodeclic" msgstr "" +#: ../../library/Class/User/BookmarkedSearch.php:134 +#, php-format +msgid "Voici les %s premiers" +msgstr "" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:14 #: ../../library/ZendAfi/View/Helper/RenderSession.php:206 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:420 @@ -22546,6 +23330,7 @@ msgstr "" #: ../../library/Class/TableDescription/PNBItems.php:39 #: ../../library/Class/TableDescription/PNBItems.php:39 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249 msgid "Voir l'album" msgstr "" @@ -22560,6 +23345,11 @@ msgstr "" msgid "Voir la notice" msgstr "" +#: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:33 +#, php-format +msgid "Voir la notice \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../application/modules/admin/views/scripts/users/manage-double.phtml:41 msgid "Voir la requete" msgstr "" @@ -22569,6 +23359,11 @@ msgstr "" msgid "Voir la réponse." msgstr "" +#: ../../application/modules/admin/views/scripts/feature/index.phtml:64 +#, php-format +msgid "Voir la vidéo de la fonctionnalité : \"%s\"" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:33 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:34 #, fuzzy, php-format @@ -22597,6 +23392,10 @@ msgstr "" msgid "Voir le plan" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:31 +msgid "Voir le résultat de la recherche" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 msgid "Voir le résultat de recherche complet" @@ -22611,12 +23410,21 @@ msgstr "" msgid "Voir le site" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323 +msgid "Voir les albums" +msgstr "" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #, fuzzy, php-format msgid "Voir les avis du document \"%s\"" msgstr "Vous avez attein le nombre maximum de réservations" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:20 +#, php-format +msgid "Voir les dernières nouveautés de la recherche \"%s\"" +msgstr "" + #: ../../library/Class/WebService/ICalendar.php:175 #: ../../library/Class/WebService/ICalendar.php:175 msgid "Voir les détails" @@ -22839,6 +23647,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1077 #: ../../application/modules/opac/controllers/AbonneController.php:1070 #: ../../application/modules/opac/controllers/AbonneController.php:1072 +#: ../../application/modules/opac/controllers/AbonneController.php:1087 #, php-format msgid "Votre carte a été retirée à %s" msgstr "" @@ -22883,6 +23692,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:338 #: ../../application/modules/opac/controllers/AuthController.php:372 #: ../../application/modules/opac/controllers/AuthController.php:379 +#: ../../application/modules/opac/controllers/AuthController.php:374 msgid "Votre demande d'inscription" msgstr "" @@ -22898,9 +23708,9 @@ msgid "Votre fiche" msgstr "" #: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1133 -#: ../../library/Class/User/LostPass.php:102 -#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121 -#: ../../library/Class/Users.php:1124 +#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124 +#: ../../library/Class/Users.php:1128 #, fuzzy, php-format msgid "Votre identifiant : %s\n" msgstr "Entrez votre identité S.V.P." @@ -22951,15 +23761,16 @@ msgid "Votre message : " msgstr "Entrez votre identité S.V.P." #: ../../library/Class/Users.php:1134 ../../library/Class/Users.php:1134 -#: ../../library/Class/User/LostPass.php:103 -#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122 -#: ../../library/Class/Users.php:1125 +#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125 +#: ../../library/Class/Users.php:1129 #, fuzzy, php-format msgid "Votre mot de passe : %s\n" msgstr "Entrez votre identité S.V.P." #: ../../application/modules/opac/controllers/AuthController.php:349 #: ../../application/modules/opac/controllers/AuthController.php:356 +#: ../../application/modules/opac/controllers/AuthController.php:351 msgid "Votre mot de passe a été réinitialisé, vous pouvez vous connecter." msgstr "" @@ -23007,12 +23818,14 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:556 +#: ../../application/modules/opac/controllers/RechercheController.php:559 msgid "Votre réservation est enregistrée." msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:604 +#: ../../application/modules/opac/controllers/RechercheController.php:607 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -23022,6 +23835,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:602 +#: ../../application/modules/opac/controllers/RechercheController.php:605 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -23128,6 +23942,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid "Vous avez bien été abonné à la newsletter: " msgstr "" @@ -23136,6 +23951,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1143 #: ../../application/modules/opac/controllers/AbonneController.php:1136 #: ../../application/modules/opac/controllers/AbonneController.php:1138 +#: ../../application/modules/opac/controllers/AbonneController.php:1153 #, php-format msgid "Vous avez déjà ajouté la carte de \"%s\"" msgstr "" @@ -23150,7 +23966,7 @@ msgstr "" #: ../../library/Class/Users.php:1083 ../../library/Class/Users.php:1083 #: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1071 -#: ../../library/Class/Users.php:1074 +#: ../../library/Class/Users.php:1074 ../../library/Class/Users.php:1078 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "" @@ -23160,9 +23976,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:" msgstr "" #: ../../library/Class/Users.php:1132 ../../library/Class/Users.php:1132 -#: ../../library/Class/User/LostPass.php:101 -#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120 -#: ../../library/Class/Users.php:1123 +#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123 +#: ../../library/Class/Users.php:1127 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "" @@ -23186,13 +24002,13 @@ msgstr "" #: ../../library/Class/Users.php:1017 ../../library/Class/Users.php:1017 #: ../../library/Class/Users.php:1026 ../../library/Class/Users.php:1005 -#: ../../library/Class/Users.php:1007 +#: ../../library/Class/Users.php:1007 ../../library/Class/Users.php:1011 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "" #: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1018 #: ../../library/Class/Users.php:1027 ../../library/Class/Users.php:1006 -#: ../../library/Class/Users.php:1008 +#: ../../library/Class/Users.php:1008 ../../library/Class/Users.php:1012 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "" @@ -23266,7 +24082,7 @@ msgstr "" #: ../../library/Class/Users.php:1048 ../../library/Class/Users.php:1048 #: ../../library/Class/Users.php:1057 ../../library/Class/Users.php:1036 -#: ../../library/Class/Users.php:1038 +#: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1042 msgid "Vous devez fournir une adresse mail valide" msgstr "" @@ -23302,7 +24118,7 @@ msgstr "" #: ../../library/Class/Users.php:1051 ../../library/Class/Users.php:1051 #: ../../library/Class/Users.php:1060 ../../library/Class/Users.php:1039 -#: ../../library/Class/Users.php:1041 +#: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1045 msgid "Vous devez saisir un numéro de téléphone" msgstr "" @@ -23349,6 +24165,11 @@ msgid "" "ressource." msgstr "" +#: ../../library/Class/DigitalResource/Controller.php:39 +#: ../../library/Class/DigitalResource/Controller.php:53 +msgid "Vous devez vous connecter pour accéder à cette page" +msgstr "" + #: ../../library/Class/CommSigb.php:118 ../../library/Class/CommSigb.php:118 msgid "Vous devez vous connecter pour réserver un document." msgstr "" @@ -23369,6 +24190,12 @@ msgstr "" msgid "Vous devez vous rendre à l'adresse %s pour finaliser votre inscription." msgstr "" +#: ../../library/Class/DigitalResource/Controller.php:42 +msgid "" +"Vous devez être connecté avec un compte adminitrateur pour accéder à cette " +"page" +msgstr "" + #: ../../library/Class/Systeme/PergameService.php:191 #: ../../library/Class/Systeme/PergameService.php:191 msgid "Vous devez être connecté en tant qu'abonné pour réserver un document" @@ -23488,6 +24315,10 @@ msgstr "" msgid "Vous n'avez pas de charte graphique d'installée dans Bokeh" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:79 +msgid "Vous n'avez pas enregistré de recherche dans vos favoris" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:35 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:50 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:90 @@ -23503,6 +24334,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:121 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:149 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:186 +#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176 #, php-format msgid "Vous n'avez pas la permission \"%s\"" msgstr "" @@ -23525,17 +24357,18 @@ msgstr "" #: ../../library/Class/Users.php:1044 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1032 -#: ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1034 ../../library/Class/Users.php:1038 msgid "Vous n'avez pas les droits suffisants pour diriger une activité" msgstr "" #: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1041 #: ../../library/Class/Users.php:1050 ../../library/Class/Users.php:1029 -#: ../../library/Class/Users.php:1031 +#: ../../library/Class/Users.php:1031 ../../library/Class/Users.php:1035 msgid "Vous n'avez pas les droits suffisants pour suivre une activité" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:165 +#: ../../application/modules/admin/controllers/IndexController.php:173 msgid "" "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité." msgstr "" @@ -23595,6 +24428,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1066 #: ../../application/modules/opac/controllers/AbonneController.php:1059 #: ../../application/modules/opac/controllers/AbonneController.php:1061 +#: ../../application/modules/opac/controllers/AbonneController.php:1076 #, php-format msgid "Vous n'utilisez plus la carte de %s" msgstr "" @@ -23626,11 +24460,13 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1137 #: ../../application/modules/opac/controllers/AbonneController.php:1130 #: ../../application/modules/opac/controllers/AbonneController.php:1132 +#: ../../application/modules/opac/controllers/AbonneController.php:1147 msgid "Vous ne pouvez pas ajouter votre propre carte" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:398 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:407 +#: ../../application/modules/admin/controllers/FileManagerController.php:344 #, php-format msgid "" "Vous ne pouvez pas copier ou déplacer un élément avec lui-même : \"%s\" est " @@ -23644,6 +24480,12 @@ msgid "" "documents suivants :" msgstr "" +#: ../../application/modules/admin/controllers/FeatureController.php:79 +msgid "" +"Vous ne serez plus notifié des nouvelles fonctionnalités jusqu'à la " +"prochaine mise à jour du logicel." +msgstr "" + #: ../../library/Class/Feature/List.php:87 msgid "" "Vous pouvez accéder à l'historique des modifications d'un article " @@ -23651,6 +24493,7 @@ msgid "" msgstr "" #: ../../library/Class/Feature/List.php:164 +#: ../../library/Class/Feature/List.php:165 msgid "Vous pouvez désormais proposer une url de bande-annonce pour une notice" msgstr "" @@ -23718,6 +24561,8 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:179 #: ../../application/modules/admin/controllers/IndexController.php:178 #: ../../application/modules/admin/controllers/IndexController.php:190 +#: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:198 #, php-format msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\"" msgstr "" @@ -23751,6 +24596,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:70 +#: ../../application/modules/admin/views/scripts/index/index.phtml:64 msgid "Wiki Bokeh" msgstr "" @@ -23813,6 +24659,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:71 msgid "Zones" msgstr "" @@ -24028,6 +24875,7 @@ msgstr "" #: ../../library/Class/Newsletter.php:381 #: ../../library/Class/Newsletter.php:381 +#: ../../library/Class/Newsletter.php:333 msgid "copie" msgstr "" @@ -24137,6 +24985,10 @@ msgstr "" msgid "des réservations" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:83 +msgid "description" +msgstr "" + #: ../../application/modules/opac/controllers/IndexController.php:121 #: ../../application/modules/opac/controllers/IndexController.php:121 msgid "" @@ -24457,8 +25309,7 @@ msgstr "" msgid "jusqu'à " msgstr "" -#: ../../library/Class/Ouverture.php:180 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:180 ../../library/Class/Ouverture.php:180 #, php-format msgid "le %s" msgstr "" @@ -24745,6 +25596,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:61 #: ../../library/ZendAfi/Form/Configuration/Widget/Tags.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "non" msgstr "" @@ -24907,6 +25759,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Widget/Carousel.php:68 #: ../../library/ZendAfi/Form/Configuration/Widget/Statistics.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "oui" msgstr "" @@ -25029,6 +25882,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 +#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:390 msgid "pictogramme pour " msgstr "" @@ -25266,6 +26120,10 @@ msgstr "" msgid "uniquement les plus consulés" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:85 +msgid "valeur" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 msgid "ven" @@ -25318,6 +26176,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 +#: ../../application/modules/admin/views/scripts/index/index.phtml:31 msgid "» Modifier «" msgstr "" @@ -25434,6 +26293,10 @@ msgstr "" msgid "Éditeur" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:56 +msgid "Éditeurs" +msgstr "" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 msgid "Éléments" @@ -25472,6 +26335,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:2 msgid "Êtes vous sûr de vouloir consulter ce document ?" msgstr "" @@ -25485,6 +26349,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:2 msgid "Êtes vous sûr de vouloir emprunter ce document ?" msgstr "" diff --git a/library/translation/fr.pot b/library/translation/fr.pot index dadef69944da7769ed7b38545bf5d4bc028fcb65..e8b42c5f00e95550fd38068f85f743d7a8c1c8a5 100644 --- a/library/translation/fr.pot +++ b/library/translation/fr.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-30 10:18+0100\n" +"POT-Creation-Date: 2018-03-12 15:30+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" @@ -166,6 +166,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/User.php:66 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:8 +#: ../../library/ZendAfi/Form/Login.php:137 msgid "Identifiant" msgstr "" @@ -205,6 +206,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Register.php:42 #: ../../library/ZendAfi/Form/Admin/User.php:73 #: ../../library/ZendAfi/Form/Admin/Library.php:240 +#: ../../library/ZendAfi/Form/Login.php:138 msgid "Mot de passe" msgstr "" @@ -852,6 +854,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:204 #: ../../library/ZendAfi/View/Helper/BibView.php:207 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:117 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 msgid "Annexe" msgstr "" @@ -1091,6 +1094,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Profile.php:323 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:172 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:165 msgid "Types de documents" msgstr "" @@ -1420,6 +1424,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:58 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:21 #: ../../library/ZendAfi/Form/Album.php:131 +#: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:61 msgid "Titre" msgstr "" @@ -1472,6 +1478,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:21 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:43 msgid "Annuler" msgstr "" @@ -2058,6 +2065,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:17 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:84 msgid "Clef" msgstr "" @@ -2125,6 +2133,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:26 +#: ../../application/modules/admin/views/scripts/index/index.phtml:20 msgid "Paramètres du site" msgstr "" @@ -2165,6 +2174,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:57 #: ../../application/modules/opac/controllers/RssController.php:219 #: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#: ../../application/modules/admin/views/scripts/index/index.phtml:40 msgid "Données en attente de modération" msgstr "" @@ -2631,6 +2641,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Section.php:30 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:82 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9 +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29 msgid "Libellé" msgstr "" @@ -2688,6 +2700,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:63 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79 msgid "Sitothèque" msgstr "" @@ -3174,6 +3187,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BoutonIco.php:71 #: ../../library/ZendAfi/View/Helper/Bouton.php:72 #: ../../library/ZendAfi/View/Helper/Panier/Edit.php:85 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:52 msgid "Valider" msgstr "" @@ -3887,6 +3901,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:338 #: ../../application/modules/opac/controllers/AuthController.php:372 #: ../../application/modules/opac/controllers/AuthController.php:379 +#: ../../application/modules/opac/controllers/AuthController.php:374 msgid "Votre demande d'inscription" msgstr "" @@ -4087,6 +4102,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:61 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:178 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:168 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Retour" msgstr "" @@ -4473,6 +4489,8 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:326 #: ../../application/modules/opac/controllers/NoticeajaxController.php:372 #: ../../library/ZendAfi/View/Helper/Trailer.php:32 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:325 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:371 msgid "Service non disponible" msgstr "" @@ -4492,6 +4510,7 @@ msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:352 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:351 msgid "Cette notice n'a pas d'auteur." msgstr "" @@ -4748,6 +4767,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:473 +#: ../../application/modules/opac/controllers/RechercheController.php:476 #, php-format msgid "Nom et prénom : %s" msgstr "" @@ -4771,6 +4791,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:475 +#: ../../application/modules/opac/controllers/RechercheController.php:478 msgid "Notice réservée : " msgstr "" @@ -4793,6 +4814,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:476 +#: ../../application/modules/opac/controllers/RechercheController.php:479 #, php-format msgid "Titre : %s" msgstr "" @@ -4816,6 +4838,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:477 +#: ../../application/modules/opac/controllers/RechercheController.php:480 #, php-format msgid "Auteur : %s" msgstr "" @@ -4841,6 +4864,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:463 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159 #: ../../application/modules/opac/controllers/RechercheController.php:478 +#: ../../application/modules/opac/controllers/RechercheController.php:481 #, php-format msgid "Editeur : %s" msgstr "" @@ -4864,6 +4888,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:479 +#: ../../application/modules/opac/controllers/RechercheController.php:482 #, php-format msgid "Cote : %s" msgstr "" @@ -4887,6 +4912,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:481 +#: ../../application/modules/opac/controllers/RechercheController.php:484 msgid "Message du demandeur :" msgstr "" @@ -4923,6 +4949,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:469 +#: ../../application/modules/opac/controllers/RechercheController.php:472 msgid "Demande de réservation de document" msgstr "" @@ -4944,6 +4971,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:556 +#: ../../application/modules/opac/controllers/RechercheController.php:559 msgid "Votre réservation est enregistrée." msgstr "" @@ -5389,6 +5417,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/LoansHistory.php:65 #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:59 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:22 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Auteur" msgstr "" @@ -5454,6 +5483,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:85 msgid "Prêts en cours" msgstr "" @@ -5582,6 +5612,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:31 #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:33 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:29 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:31 msgid "Nom :" msgstr "" @@ -5667,6 +5698,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:166 #: ../../application/modules/opac/controllers/AbonneController.php:1113 #: ../../application/modules/opac/controllers/AbonneController.php:1115 +#: ../../application/modules/opac/controllers/AbonneController.php:1130 msgid "Carte" msgstr "" @@ -5833,6 +5865,8 @@ msgstr "" #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 #: ../../library/Class/Systeme/Report.php:188 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51 msgid "Activé" msgstr "" @@ -5924,6 +5958,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:21 +#: ../../application/modules/admin/views/scripts/index/index.phtml:15 msgid "Démonstrations vidéos" msgstr "" @@ -5931,6 +5966,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 +#: ../../application/modules/admin/views/scripts/index/index.phtml:31 msgid "» Modifier «" msgstr "" @@ -5938,6 +5974,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:42 +#: ../../application/modules/admin/views/scripts/index/index.phtml:36 msgid "Etat du site" msgstr "" @@ -5945,6 +5982,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#: ../../application/modules/admin/views/scripts/index/index.phtml:37 msgid "Nom du domaine" msgstr "" @@ -5952,6 +5990,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:66 +#: ../../application/modules/admin/views/scripts/index/index.phtml:60 msgid "Participez à la communauté" msgstr "" @@ -5959,6 +5998,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:68 +#: ../../application/modules/admin/views/scripts/index/index.phtml:62 msgid "Site communautaire" msgstr "" @@ -5966,6 +6006,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:69 +#: ../../application/modules/admin/views/scripts/index/index.phtml:63 msgid "Google group Bokeh" msgstr "" @@ -5973,6 +6014,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:70 +#: ../../application/modules/admin/views/scripts/index/index.phtml:64 msgid "Wiki Bokeh" msgstr "" @@ -5980,6 +6022,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:71 +#: ../../application/modules/admin/views/scripts/index/index.phtml:65 msgid "Code source" msgstr "" @@ -5987,6 +6030,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:68 msgid "Salle de discussion #Bokeh" msgstr "" @@ -5994,6 +6038,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:75 +#: ../../application/modules/admin/views/scripts/index/index.phtml:69 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -6261,6 +6306,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:80 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:83 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:88 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Fermer" msgstr "" @@ -6484,6 +6530,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 #: ../../application/modules/admin/views/scripts/stat/rechercheinfructueuse.phtml:10 #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:10 msgid "Critères" msgstr "" @@ -6724,11 +6771,13 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:21 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:23 msgid "Créé le" msgstr "" #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:27 msgid "Modifié le" msgstr "" @@ -6751,6 +6800,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 #: ../../library/ZendAfi/View/Helper/Avis.php:106 #: ../../library/ZendAfi/View/Helper/Admin/Versions.php:55 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:72 msgid "Inconnu" msgstr "" @@ -7311,6 +7361,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/batch/index.phtml:18 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290 msgid "Dernière exécution" msgstr "" @@ -7400,6 +7451,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:55 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5 msgid "Oui" msgstr "" @@ -7427,6 +7480,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:56 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12 msgid "Non" msgstr "" @@ -7484,6 +7539,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/Activity.php:40 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:119 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:110 msgid "Activité" msgstr "" @@ -7560,6 +7616,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../application/modules/admin/controllers/StatController.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:111 msgid "Recherches infructueuses" msgstr "" @@ -7602,6 +7659,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../application/modules/admin/controllers/PrintController.php:31 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:98 msgid "Modèles d'impressions" msgstr "" @@ -7942,6 +8000,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:85 #: ../../application/modules/admin/controllers/IndexController.php:94 #: ../../application/modules/admin/controllers/IndexController.php:94 +#: ../../application/modules/admin/controllers/IndexController.php:102 #, php-format msgid "Modifier la variable: %s" msgstr "" @@ -7949,6 +8008,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:93 #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:110 #, php-format msgid "Variable %s sauvegardée" msgstr "" @@ -7956,6 +8016,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:111 #: ../../application/modules/admin/controllers/IndexController.php:111 +#: ../../application/modules/admin/controllers/IndexController.php:119 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" @@ -7963,6 +8024,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:123 #: ../../application/modules/admin/controllers/IndexController.php:133 #: ../../application/modules/admin/controllers/IndexController.php:133 +#: ../../application/modules/admin/controllers/IndexController.php:141 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -7972,18 +8034,22 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../application/modules/admin/controllers/IndexController.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 +#: ../../application/modules/admin/controllers/IndexController.php:152 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 msgid "Mise à jour de la charte graphique" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:145 #: ../../application/modules/admin/controllers/IndexController.php:155 #: ../../application/modules/admin/controllers/IndexController.php:155 +#: ../../application/modules/admin/controllers/IndexController.php:163 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:146 #: ../../application/modules/admin/controllers/IndexController.php:156 #: ../../application/modules/admin/controllers/IndexController.php:156 +#: ../../application/modules/admin/controllers/IndexController.php:164 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -8125,6 +8191,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49 #: ../../library/ZendAfi/Form/Album.php:49 #: ../../library/ZendAfi/Form/Album.php:50 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:46 msgid "Album" msgstr "" @@ -8313,6 +8380,7 @@ msgstr "" #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:257 +#: ../../application/modules/admin/controllers/WidgetController.php:247 #, php-format msgid "Echec de la sauvegarde de la configuration de %s" msgstr "" @@ -8348,6 +8416,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 #: ../../application/modules/admin/controllers/SystemeController.php:140 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 msgid "Génération du site" msgstr "" @@ -8396,6 +8465,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../application/modules/admin/controllers/SystemeController.php:269 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 msgid "Informations système" msgstr "" @@ -8524,6 +8594,7 @@ msgstr "" #: ../../application/modules/admin/controllers/AlbumController.php:75 #: ../../library/Class/Batch/Dilicom.php:30 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82 msgid "PNB Dilicom" msgstr "" @@ -8740,6 +8811,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460 +#: ../../library/Class/AdminVar.php:465 msgid "Portail" msgstr "" @@ -8787,12 +8859,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/MonocleReaderServerSide.php:112 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:93 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:85 #, php-format msgid "Télécharger" msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:2 msgid "Êtes vous sûr de vouloir consulter ce document ?" msgstr "" @@ -8806,6 +8880,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Widget/Carousel.php:68 #: ../../library/ZendAfi/Form/Configuration/Widget/Statistics.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "oui" msgstr "" @@ -8828,11 +8903,13 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:61 #: ../../library/ZendAfi/Form/Configuration/Widget/Tags.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 msgid "non" msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:2 msgid "Êtes vous sûr de vouloir emprunter ce document ?" msgstr "" @@ -8861,6 +8938,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:38 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:40 msgid "Taille :" msgstr "" @@ -9154,6 +9232,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:157 #: ../../library/ZendAfi/Form/Album.php:170 #: ../../library/ZendAfi/Form/Album.php:171 +#: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 msgid "Type de document" msgstr "" @@ -9170,6 +9250,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:115 #: ../../library/Class/TableDescription/PNBItemsExport.php:41 #: ../../library/Class/TableDescription/PNBLoans.php:36 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 msgid "Section" msgstr "" @@ -9675,6 +9756,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/abonne/suggestion-achat-add.phtml:2 #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:136 msgid "Suggérer un achat" msgstr "" @@ -9722,6 +9804,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1107 #: ../../application/modules/opac/controllers/AbonneController.php:1100 #: ../../application/modules/opac/controllers/AbonneController.php:1102 +#: ../../application/modules/opac/controllers/AbonneController.php:1117 msgid "Ajouter une carte" msgstr "" @@ -9791,6 +9874,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/rechercheoai/viewnotice.phtml:12 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Consultation" msgstr "" @@ -9890,6 +9974,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:1 #: ../../library/Class/Users.php:1082 ../../library/Class/Users.php:1091 #: ../../library/Class/Users.php:1070 ../../library/Class/Users.php:1073 +#: ../../library/Class/Users.php:1077 msgid "Bonjour," msgstr "" @@ -9930,6 +10015,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:30 #: ../../library/Class/Users.php:1085 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1073 ../../library/Class/Users.php:1076 +#: ../../library/Class/Users.php:1080 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." @@ -10182,6 +10268,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 #: ../../application/modules/opac/controllers/AbonneController.php:1013 #: ../../application/modules/opac/controllers/AbonneController.php:1015 +#: ../../application/modules/opac/controllers/AbonneController.php:1016 msgid "Gérer mes favoris" msgstr "" @@ -10194,6 +10281,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23 #: ../../application/modules/opac/controllers/AbonneController.php:1048 #: ../../application/modules/opac/controllers/AbonneController.php:1050 +#: ../../application/modules/opac/controllers/AbonneController.php:1065 msgid "Mes cartes" msgstr "" @@ -10202,6 +10290,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1066 #: ../../application/modules/opac/controllers/AbonneController.php:1059 #: ../../application/modules/opac/controllers/AbonneController.php:1061 +#: ../../application/modules/opac/controllers/AbonneController.php:1076 #, php-format msgid "Vous n'utilisez plus la carte de %s" msgstr "" @@ -10211,6 +10300,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1077 #: ../../application/modules/opac/controllers/AbonneController.php:1070 #: ../../application/modules/opac/controllers/AbonneController.php:1072 +#: ../../application/modules/opac/controllers/AbonneController.php:1087 #, php-format msgid "Votre carte a été retirée à %s" msgstr "" @@ -10220,6 +10310,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1096 #: ../../application/modules/opac/controllers/AbonneController.php:1089 #: ../../application/modules/opac/controllers/AbonneController.php:1091 +#: ../../application/modules/opac/controllers/AbonneController.php:1106 msgid "Carte introuvable" msgstr "" @@ -10228,6 +10319,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1125 #: ../../application/modules/opac/controllers/AbonneController.php:1127 +#: ../../application/modules/opac/controllers/AbonneController.php:1142 msgid "Identifiant et/ou mot de passe incorrect" msgstr "" @@ -10236,6 +10328,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1137 #: ../../application/modules/opac/controllers/AbonneController.php:1130 #: ../../application/modules/opac/controllers/AbonneController.php:1132 +#: ../../application/modules/opac/controllers/AbonneController.php:1147 msgid "Vous ne pouvez pas ajouter votre propre carte" msgstr "" @@ -10244,6 +10337,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1143 #: ../../application/modules/opac/controllers/AbonneController.php:1136 #: ../../application/modules/opac/controllers/AbonneController.php:1138 +#: ../../application/modules/opac/controllers/AbonneController.php:1153 #, php-format msgid "Vous avez déjà ajouté la carte de \"%s\"" msgstr "" @@ -10253,6 +10347,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1149 #: ../../application/modules/opac/controllers/AbonneController.php:1142 #: ../../application/modules/opac/controllers/AbonneController.php:1144 +#: ../../application/modules/opac/controllers/AbonneController.php:1159 #, php-format msgid "Carte de \"%s\" ajoutée" msgstr "" @@ -10262,6 +10357,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1154 #: ../../application/modules/opac/controllers/AbonneController.php:1147 #: ../../application/modules/opac/controllers/AbonneController.php:1149 +#: ../../application/modules/opac/controllers/AbonneController.php:1164 #, php-format msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s" msgstr "" @@ -10273,6 +10369,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34 #: ../../application/modules/opac/controllers/AbonneController.php:1170 #: ../../application/modules/opac/controllers/AbonneController.php:1172 +#: ../../application/modules/opac/controllers/AbonneController.php:1187 msgid "S'inscrire à une activité" msgstr "" @@ -10283,6 +10380,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1176 #: ../../application/modules/opac/controllers/AbonneController.php:1178 +#: ../../application/modules/opac/controllers/AbonneController.php:1193 msgid "Mes inscriptions en cours" msgstr "" @@ -10293,6 +10391,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48 #: ../../application/modules/opac/controllers/AbonneController.php:1182 #: ../../application/modules/opac/controllers/AbonneController.php:1184 +#: ../../application/modules/opac/controllers/AbonneController.php:1199 msgid "Mes activités suivies" msgstr "" @@ -10301,6 +10400,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1214 #: ../../application/modules/opac/controllers/AbonneController.php:1207 #: ../../application/modules/opac/controllers/AbonneController.php:1209 +#: ../../application/modules/opac/controllers/AbonneController.php:1224 msgid "Compléter votre adresse email" msgstr "" @@ -10321,6 +10421,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:138 #: ../../application/modules/opac/controllers/RechercheController.php:138 +#: ../../application/modules/opac/controllers/RechercheController.php:142 msgid " (recherche élargie triée par pertinence)" msgstr "" @@ -10328,12 +10429,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php:38 #: ../../application/modules/opac/controllers/RechercheController.php:202 #: ../../application/modules/opac/controllers/RechercheController.php:203 +#: ../../application/modules/opac/controllers/RechercheController.php:207 msgid "Résultat de la recherche" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:224 +#: ../../application/modules/opac/controllers/RechercheController.php:222 msgid "Recherche guidée" msgstr "" @@ -10344,6 +10447,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:407 #: ../../library/ZendAfi/View/Helper/Notice/ConsultationLink.php:29 #: ../../application/modules/opac/controllers/RechercheController.php:539 +#: ../../application/modules/opac/controllers/RechercheController.php:542 msgid "Consultation sur place" msgstr "" @@ -10353,6 +10457,8 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:640 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:655 +#: ../../application/modules/opac/controllers/RechercheController.php:544 +#: ../../application/modules/opac/controllers/RechercheController.php:658 msgid "L'exemplaire n'existe pas" msgstr "" @@ -10361,12 +10467,14 @@ msgstr "" #: ../../application/modules/telephone/views/scripts/recherche/reservation.phtml:2 #: ../../application/modules/opac/controllers/RechercheController.php:563 #: ../../application/modules/opac/controllers/RechercheController.php:578 +#: ../../application/modules/opac/controllers/RechercheController.php:581 msgid "Réservation" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:602 +#: ../../application/modules/opac/controllers/RechercheController.php:605 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -10376,6 +10484,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:604 +#: ../../application/modules/opac/controllers/RechercheController.php:607 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -10391,6 +10500,9 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:655 #: ../../application/modules/opac/controllers/RechercheController.php:662 #: ../../application/modules/opac/controllers/RechercheController.php:691 +#: ../../application/modules/opac/controllers/RechercheController.php:658 +#: ../../application/modules/opac/controllers/RechercheController.php:665 +#: ../../application/modules/opac/controllers/RechercheController.php:694 msgid "Lieu de mise à disposition demandé" msgstr "" @@ -10519,6 +10631,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:386 #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:427 +#: ../../application/modules/opac/controllers/AuthController.php:422 msgid "Inscription à la lettre d'information: " msgstr "" @@ -10527,6 +10640,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:396 #: ../../application/modules/opac/controllers/AuthController.php:430 #: ../../application/modules/opac/controllers/AuthController.php:437 +#: ../../application/modules/opac/controllers/AuthController.php:432 msgid "" "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le " "compte qui utilise cet email." @@ -10537,6 +10651,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:403 #: ../../application/modules/opac/controllers/AuthController.php:437 #: ../../application/modules/opac/controllers/AuthController.php:444 +#: ../../application/modules/opac/controllers/AuthController.php:439 msgid "Demande d'inscription à la lettre d'information: " msgstr "" @@ -10545,6 +10660,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:454 #: ../../application/modules/opac/controllers/AuthController.php:461 +#: ../../application/modules/opac/controllers/AuthController.php:456 msgid "" "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez " "réessayer. Si le problème persiste, veuillez contacter votre médiathèque." @@ -10555,6 +10671,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:424 #: ../../application/modules/opac/controllers/AuthController.php:458 #: ../../application/modules/opac/controllers/AuthController.php:465 +#: ../../application/modules/opac/controllers/AuthController.php:460 msgid "" "Une demande de confirmation d'inscription vous a été envoyée à l'adresse " "mail renseignée." @@ -10565,6 +10682,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:442 #: ../../application/modules/opac/controllers/AuthController.php:476 #: ../../application/modules/opac/controllers/AuthController.php:483 +#: ../../application/modules/opac/controllers/AuthController.php:478 msgid "Désinscription de la lettre d'information: " msgstr "" @@ -10573,6 +10691,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:465 #: ../../application/modules/opac/controllers/AuthController.php:499 #: ../../application/modules/opac/controllers/AuthController.php:506 +#: ../../application/modules/opac/controllers/AuthController.php:501 msgid "Confirmation d'inscription à la newsletter: " msgstr "" @@ -10581,6 +10700,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:468 #: ../../application/modules/opac/controllers/AuthController.php:502 #: ../../application/modules/opac/controllers/AuthController.php:509 +#: ../../application/modules/opac/controllers/AuthController.php:504 msgid "Inscription à la newsletter invalide." msgstr "" @@ -10589,6 +10709,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid "Vous avez bien été abonné à la newsletter: " msgstr "" @@ -10597,6 +10718,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid " avec l'adresse suivante: " msgstr "" @@ -10605,6 +10727,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:475 #: ../../application/modules/opac/controllers/AuthController.php:509 #: ../../application/modules/opac/controllers/AuthController.php:516 +#: ../../application/modules/opac/controllers/AuthController.php:511 msgid "Erreur lors de l\\inscription à la newsletter." msgstr "" @@ -10613,6 +10736,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:497 #: ../../application/modules/opac/controllers/AuthController.php:531 #: ../../application/modules/opac/controllers/AuthController.php:538 +#: ../../application/modules/opac/controllers/AuthController.php:533 msgid "Demande de préinscription" msgstr "" @@ -10621,6 +10745,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:501 #: ../../application/modules/opac/controllers/AuthController.php:535 #: ../../application/modules/opac/controllers/AuthController.php:542 +#: ../../application/modules/opac/controllers/AuthController.php:537 msgid "Cette fonctionnalité n'est pas activée." msgstr "" @@ -10629,6 +10754,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:541 #: ../../application/modules/opac/controllers/AuthController.php:575 #: ../../application/modules/opac/controllers/AuthController.php:582 +#: ../../application/modules/opac/controllers/AuthController.php:577 #, php-format msgid "Préinscription à %s" msgstr "" @@ -10638,6 +10764,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:553 #: ../../application/modules/opac/controllers/AuthController.php:587 #: ../../application/modules/opac/controllers/AuthController.php:594 +#: ../../application/modules/opac/controllers/AuthController.php:589 #, php-format msgid "" "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ." @@ -10648,23 +10775,27 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:567 #: ../../application/modules/opac/controllers/AuthController.php:601 #: ../../application/modules/opac/controllers/AuthController.php:608 +#: ../../application/modules/opac/controllers/AuthController.php:603 msgid "Préinscription" msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:204 msgid "Aucun résumé" msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:264 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:263 msgid "Créer un album" msgstr "" #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:272 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:271 msgid "Aucune ressource correspondante" msgstr "" @@ -10909,6 +11040,7 @@ msgstr "" #: ../../library/Class/Codification.php:234 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 msgid "Notices liées" msgstr "" @@ -11054,6 +11186,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:69 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:81 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:73 msgid "Exemplaires" msgstr "" @@ -11073,6 +11206,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:114 #: ../../library/ZendAfi/Form/Album.php:157 #: ../../library/ZendAfi/Form/Album.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:105 msgid "Cote" msgstr "" @@ -11232,13 +11366,11 @@ msgstr "" msgid "Rechercher" msgstr "" -#: ../../library/Class/User/Cards.php:67 -#: ../../library/Class/User/Cards.php:67 +#: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 msgid "Prêt introuvable" msgstr "" -#: ../../library/Class/User/Cards.php:77 -#: ../../library/Class/User/Cards.php:77 +#: ../../library/Class/User/Cards.php:77 ../../library/Class/User/Cards.php:77 msgid "Réservation introuvable" msgstr "" @@ -11255,11 +11387,13 @@ msgstr "" #: ../../library/Class/User/CardsNotification.php:58 #: ../../library/Class/User/CardsNotification.php:58 +#: ../../library/Class/Feature.php:177 msgid "Ne plus m'avertir" msgstr "" #: ../../library/Class/User/CardsNotification.php:59 #: ../../library/Class/User/CardsNotification.php:59 +#: ../../library/Class/Feature.php:171 msgid "En savoir plus" msgstr "" @@ -11294,33 +11428,33 @@ msgid "" msgstr "" #: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342 -#: ../../library/Class/Profil.php:1362 +#: ../../library/Class/Profil.php:1362 ../../library/Class/Profil.php:1363 msgid "Le libellé est obligatoire." msgstr "" #: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346 -#: ../../library/Class/Profil.php:1366 +#: ../../library/Class/Profil.php:1366 ../../library/Class/Profil.php:1367 msgid "La largeur du site doit être comprise entre 800 et 2000 pixels." msgstr "" #: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353 -#: ../../library/Class/Profil.php:1373 +#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1374 msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "" #: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357 -#: ../../library/Class/Profil.php:1377 +#: ../../library/Class/Profil.php:1377 ../../library/Class/Profil.php:1378 msgid "Il manque la largeur de la division 1." msgstr "" #: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361 -#: ../../library/Class/Profil.php:1381 +#: ../../library/Class/Profil.php:1381 ../../library/Class/Profil.php:1382 msgid "Il manque la largeur de la division 2." msgstr "" #: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365 -#: ../../library/Class/Profil.php:1385 +#: ../../library/Class/Profil.php:1385 ../../library/Class/Profil.php:1386 msgid "Il manque la largeur de la division 3." msgstr "" @@ -11328,17 +11462,18 @@ msgstr "" #: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369 #: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377 #: ../../library/Class/Profil.php:1389 ../../library/Class/Profil.php:1393 -#: ../../library/Class/Profil.php:1397 +#: ../../library/Class/Profil.php:1397 ../../library/Class/Profil.php:1390 +#: ../../library/Class/Profil.php:1394 ../../library/Class/Profil.php:1398 msgid "Une marge interne de division ne peut pas excéder 20 pixels." msgstr "" #: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381 -#: ../../library/Class/Profil.php:1401 +#: ../../library/Class/Profil.php:1401 ../../library/Class/Profil.php:1402 msgid "La couleur du texte bandeau doit être au format #001122" msgstr "" #: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385 -#: ../../library/Class/Profil.php:1405 +#: ../../library/Class/Profil.php:1405 ../../library/Class/Profil.php:1406 msgid "La couleur des liens du bandeau doit être au format #001122" msgstr "" @@ -11346,11 +11481,11 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 #: ../../library/Class/Migration/ScriptPatchs.php:74 #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 +#: ../../library/Class/Migration/ScriptPatchs.php:80 msgid "Mise à niveau de la base effectuée avec succès" msgstr "" -#: ../../library/Class/NoticeOAI.php:230 -#: ../../library/Class/NoticeOAI.php:230 +#: ../../library/Class/NoticeOAI.php:230 ../../library/Class/NoticeOAI.php:230 msgid "Il n'y aucun mot assez significatif pour la recherche" msgstr "" @@ -11742,22 +11877,22 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:232 -#: ../../library/Class/AdminVar.php:229 +#: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231 msgid "Url du serveur redmine" msgstr "" #: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232 msgid "Url du proxy Redmine" msgstr "" #: ../../library/Class/AdminVar.php:233 ../../library/Class/AdminVar.php:234 -#: ../../library/Class/AdminVar.php:231 +#: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233 msgid "Identifiant du project Redmine" msgstr "" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:239 -#: ../../library/Class/AdminVar.php:236 +#: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238 msgid "Position de la pagination en résultat de recherche" msgstr "" @@ -11766,33 +11901,33 @@ msgstr "" #: ../../library/Class/AdminVar.php:240 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187 -#: ../../library/Class/AdminVar.php:237 +#: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239 msgid "Position" msgstr "" #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241 msgid "" "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" " "entre les mots saisis" msgstr "" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:240 +#: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242 msgid "" "Activation de la disponibilite dans le resultat de recherche au survol de la " "couverture du document, calculé en temps réel." msgstr "" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:241 +#: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243 msgid "" "Activation de la disponibilite dans le resultat de recherche. Calculé grâce " "à la facette \"En rayon\"." msgstr "" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:242 +#: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -11800,22 +11935,22 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:243 +#: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245 msgid "Nom du site" msgstr "" #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 msgid "Url de recherche" msgstr "" #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252 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 " @@ -11823,17 +11958,17 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:251 +#: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255 msgid "Activation des formulaires" msgstr "" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -11841,28 +11976,28 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 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" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" msgstr "" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 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 " @@ -11870,12 +12005,12 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:277 +#: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279 msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280 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 " @@ -11883,12 +12018,12 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281 msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -12083,77 +12218,77 @@ msgid "Liste des tags à ajouter au rapport d'état du système" msgstr "" #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "" #: ../../library/Class/AdminVar.php:349 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:347 +#: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "" #: ../../library/Class/AdminVar.php:350 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:348 +#: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:357 -#: ../../library/Class/AdminVar.php:354 +#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." msgstr "" #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:358 -#: ../../library/Class/AdminVar.php:355 +#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" msgstr "" #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:359 -#: ../../library/Class/AdminVar.php:356 +#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" msgstr "" #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:360 -#: ../../library/Class/AdminVar.php:357 +#: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." msgstr "" #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:361 -#: ../../library/Class/AdminVar.php:358 +#: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "" #: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:367 -#: ../../library/Class/AdminVar.php:364 +#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369 msgid "Javascript code for statistics" msgstr "" #: ../../library/Class/AdminVar.php:367 ../../library/Class/AdminVar.php:368 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370 msgid "PIWIK authentication token for widgets" msgstr "" #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:374 -#: ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:375 -#: ../../library/Class/AdminVar.php:372 +#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" msgstr "" #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:382 -#: ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -12161,21 +12296,25 @@ msgstr "" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:387 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386 +#: ../../library/Class/AdminVar.php:391 msgid "Url du connecteur Le Social" msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:392 msgid "Id du connecteur Le Social" msgstr "" #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418 +#: ../../library/Class/AdminVar.php:423 msgid "API utilisée pour les cartes statiques" msgstr "" #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419 +#: ../../library/Class/AdminVar.php:424 msgid "API" msgstr "" @@ -12239,6 +12378,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:156 #: ../../library/ZendAfi/Form/Album.php:146 #: ../../library/ZendAfi/Form/Album.php:147 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 msgid "Statut" msgstr "" @@ -12249,6 +12389,7 @@ msgstr "" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 #: ../../library/Class/Exemplaire.php:269 #: ../../library/Class/Exemplaire.php:274 +#: ../../library/Class/Exemplaire.php:290 msgid "Disponible" msgstr "" @@ -12594,6 +12735,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Année de publication" msgstr "" @@ -12781,11 +12923,13 @@ msgstr "" #: ../../library/Class/Newsletter.php:381 #: ../../library/Class/Newsletter.php:381 +#: ../../library/Class/Newsletter.php:333 msgid "copie" msgstr "" #: ../../library/Class/Newsletter.php:500 #: ../../library/Class/Newsletter.php:500 +#: ../../library/Class/Newsletter.php:452 #, php-format msgid "Groupe manuel pour la lettre \"%s\"" msgstr "" @@ -12848,6 +12992,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:116 #: ../../library/Class/TableDescription/PNBItemsExport.php:40 #: ../../library/Class/TableDescription/PNBLoans.php:35 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 msgid "Genre" msgstr "" @@ -13241,13 +13386,11 @@ msgstr "" msgid "Aucune information n'a été trouvée" msgstr "" -#: ../../library/Class/NoticeHtml.php:69 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/Class/NoticeHtml.php:69 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "" -#: ../../library/Class/NoticeHtml.php:82 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "" @@ -14184,6 +14327,7 @@ msgstr "" #: ../../library/Class/Systeme/Widget/Widget.php:72 #: ../../library/Class/Systeme/Widget/Widget.php:72 +#: ../../library/Class/Systeme/Widget/Widget.php:74 #, php-format msgid "La configuration de la boite %s a été sauvegardée" msgstr "" @@ -14304,6 +14448,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 #: ../../library/Class/Systeme/Report.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 msgid "Utilisateurs" msgstr "" @@ -14326,6 +14471,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Domain.php:90 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:120 msgid "Bibliothèques" msgstr "" @@ -14334,6 +14480,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/Class/Systeme/Report.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 msgid "Variables" msgstr "" @@ -14516,6 +14663,7 @@ msgstr "" #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:275 +#: ../../library/Class/Exemplaire.php:291 msgid "Non disponible" msgstr "" @@ -14733,8 +14881,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57 -#: ../../library/Class/ModeleFusion.php:75 -#: ../../library/Class/Ouverture.php:50 +#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50 #: ../../library/ZendAfi/Form/Album.php:235 #: ../../library/ZendAfi/Form/Admin/News.php:243 #: ../../library/ZendAfi/Form/Admin/Library.php:263 @@ -15068,11 +15215,13 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 +#: ../../library/Class/CriteresRecherche.php:138 msgid "Ordre du panier" msgstr "" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Pertinence" msgstr "" @@ -15081,6 +15230,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:13 #: ../../library/Class/CriteresRecherche.php:144 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Date de nouveauté" msgstr "" @@ -15089,6 +15239,7 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:478 +#: ../../library/Class/CriteresRecherche.php:491 msgid "La sélection ne contient aucune notice" msgstr "" @@ -15386,153 +15537,150 @@ msgstr "" #: ../../library/Class/Users.php:1017 ../../library/Class/Users.php:1017 #: ../../library/Class/Users.php:1026 ../../library/Class/Users.php:1005 -#: ../../library/Class/Users.php:1007 +#: ../../library/Class/Users.php:1007 ../../library/Class/Users.php:1011 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "" #: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1018 #: ../../library/Class/Users.php:1027 ../../library/Class/Users.php:1006 -#: ../../library/Class/Users.php:1008 +#: ../../library/Class/Users.php:1008 ../../library/Class/Users.php:1012 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "" #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1020 #: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1010 +#: ../../library/Class/Users.php:1010 ../../library/Class/Users.php:1014 msgid "Le champ 'Identifiant' doit être inférieur à 50 caractères" msgstr "" #: ../../library/Class/Users.php:1024 ../../library/Class/Users.php:1024 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1012 -#: ../../library/Class/Users.php:1014 +#: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1018 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "" #: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1028 #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1016 -#: ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1022 msgid "Le champ 'Mot de passe' doit être inférieur à 255 caractères" msgstr "" #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1033 #: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1021 -#: ../../library/Class/Users.php:1023 +#: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1027 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "" #: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1026 -#: ../../library/Class/Users.php:1028 +#: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1032 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" #: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1041 #: ../../library/Class/Users.php:1050 ../../library/Class/Users.php:1029 -#: ../../library/Class/Users.php:1031 +#: ../../library/Class/Users.php:1031 ../../library/Class/Users.php:1035 msgid "Vous n'avez pas les droits suffisants pour suivre une activité" msgstr "" #: ../../library/Class/Users.php:1044 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1032 -#: ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1034 ../../library/Class/Users.php:1038 msgid "Vous n'avez pas les droits suffisants pour diriger une activité" msgstr "" #: ../../library/Class/Users.php:1048 ../../library/Class/Users.php:1048 #: ../../library/Class/Users.php:1057 ../../library/Class/Users.php:1036 -#: ../../library/Class/Users.php:1038 +#: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1042 msgid "Vous devez fournir une adresse mail valide" msgstr "" #: ../../library/Class/Users.php:1051 ../../library/Class/Users.php:1051 #: ../../library/Class/Users.php:1060 ../../library/Class/Users.php:1039 -#: ../../library/Class/Users.php:1041 +#: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1045 msgid "Vous devez saisir un numéro de téléphone" msgstr "" #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1072 ../../library/Class/Users.php:1051 -#: ../../library/Class/Users.php:1053 +#: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1057 msgid "Cet identifiant existe déjà ." msgstr "" #: ../../library/Class/Users.php:1083 ../../library/Class/Users.php:1083 #: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1071 -#: ../../library/Class/Users.php:1074 +#: ../../library/Class/Users.php:1074 ../../library/Class/Users.php:1078 msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "" #: ../../library/Class/Users.php:1084 ../../library/Class/Users.php:1084 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1072 -#: ../../library/Class/Users.php:1075 +#: ../../library/Class/Users.php:1075 ../../library/Class/Users.php:1079 msgid "Pour activer votre compte, merci de cliquer sur le lien suivant:" msgstr "" #: ../../library/Class/Users.php:1132 ../../library/Class/Users.php:1132 -#: ../../library/Class/User/LostPass.php:101 -#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120 -#: ../../library/Class/Users.php:1123 +#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123 +#: ../../library/Class/Users.php:1127 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "" #: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1133 -#: ../../library/Class/User/LostPass.php:102 -#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121 -#: ../../library/Class/Users.php:1124 +#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124 +#: ../../library/Class/Users.php:1128 #, php-format msgid "Votre identifiant : %s\n" msgstr "" #: ../../library/Class/Users.php:1134 ../../library/Class/Users.php:1134 -#: ../../library/Class/User/LostPass.php:103 -#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122 -#: ../../library/Class/Users.php:1125 +#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125 +#: ../../library/Class/Users.php:1129 #, php-format msgid "Votre mot de passe : %s\n" msgstr "" #: ../../library/Class/Users.php:1135 ../../library/Class/Users.php:1135 #: ../../library/Class/User/LostPass.php:104 -#: ../../library/Class/User/LostPass.php:137 -#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123 -#: ../../library/Class/Users.php:1126 +#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144 +#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126 +#: ../../library/Class/Users.php:1130 msgid "Bonne navigation sur le portail" msgstr "" #: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1142 -#: ../../library/Class/User/LostPass.php:110 -#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130 -#: ../../library/Class/Users.php:1133 +#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151 +#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133 +#: ../../library/Class/Users.php:1137 msgid "Un mail vient de vous être envoyé avec vos paramètres de connexion." msgstr "" #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1553 #: ../../library/Class/Users.php:1564 ../../library/Class/Users.php:1543 -#: ../../library/Class/Users.php:1546 +#: ../../library/Class/Users.php:1546 ../../library/Class/Users.php:1550 msgid "Mes paniers" msgstr "" #: ../../library/Class/Users.php:1586 ../../library/Class/Users.php:1586 #: ../../library/Class/Users.php:1597 ../../library/Class/Users.php:1576 -#: ../../library/Class/Users.php:1579 +#: ../../library/Class/Users.php:1579 ../../library/Class/Users.php:1583 msgid "Mes paniers rattachés à un domaine" msgstr "" -#: ../../library/Class/FRBR/Link.php:159 -#: ../../library/Class/FRBR/Link.php:159 +#: ../../library/Class/FRBR/Link.php:159 ../../library/Class/FRBR/Link.php:159 msgid "URL objet A est requis" msgstr "" -#: ../../library/Class/FRBR/Link.php:160 -#: ../../library/Class/FRBR/Link.php:162 +#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162 #: ../../library/Class/FRBR/Link.php:162 msgid "N'est pas une url valide" msgstr "" -#: ../../library/Class/FRBR/Link.php:161 -#: ../../library/Class/FRBR/Link.php:161 +#: ../../library/Class/FRBR/Link.php:161 ../../library/Class/FRBR/Link.php:161 msgid "URL objet B est requis" msgstr "" @@ -15592,6 +15740,8 @@ msgstr "" #: ../../library/Class/SuggestionAchat.php:178 #: ../../library/ZendAfi/Form/Album.php:174 #: ../../library/ZendAfi/Form/Album.php:175 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:11 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:62 msgid "Date de création" msgstr "" @@ -15702,8 +15852,7 @@ msgstr "" msgid "Dimanche" msgstr "" -#: ../../library/Class/Ouverture.php:180 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:180 ../../library/Class/Ouverture.php:180 #, php-format msgid "le %s" msgstr "" @@ -16366,6 +16515,7 @@ msgstr "" #: ../../library/ZendAfi/Form/SecurePassword.php:29 #: ../../library/ZendAfi/Form/SecurePassword.php:29 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:53 msgid "Numéro de carte" msgstr "" @@ -16524,6 +16674,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 #: ../../library/ZendAfi/Form/Admin/User.php:136 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 msgid "Groupes" msgstr "" @@ -16709,6 +16860,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163 #: ../../library/ZendAfi/View/Helper/Admin/CustomFieldsValuesUrl.php:43 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:159 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:156 msgid "Champs personnalisés" msgstr "" @@ -17391,6 +17543,8 @@ msgstr "" #: ../../library/Class/Feature/List.php:101 #: ../../library/Class/Feature/List.php:167 #: ../../library/Class/Feature/List.php:189 +#: ../../library/Class/Feature/List.php:168 +#: ../../library/Class/Feature/List.php:190 msgid "Administration" msgstr "" @@ -17909,6 +18063,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 #: ../../library/ZendAfi/Form/Configuration/Widget/PremierChapitre.php:37 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:30 msgid "Tous les documents" msgstr "" @@ -18681,12 +18836,14 @@ msgstr "" #: ../../library/ZendAfi/Form/Login.php:49 #: ../../library/ZendAfi/Form/Login.php:49 +#: ../../library/ZendAfi/Form/Login.php:58 msgid "Formulaire d'authentification" msgstr "" #: ../../library/ZendAfi/Form/Login.php:118 #: ../../application/modules/admin/views/scripts/users/manage-double-user.phtml:10 #: ../../library/ZendAfi/Form/Login.php:118 +#: ../../library/ZendAfi/Form/Login.php:127 msgid "Login" msgstr "" @@ -18795,6 +18952,9 @@ msgstr "" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:175 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208 +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 msgid " OU " msgstr "" @@ -19098,26 +19258,31 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:45 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:46 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:41 msgid "Enregistrer mes modifications" msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:32 msgid "Annuler mes modifications" msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:31 msgid "Valider et continuer" msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:37 msgid "Enregistrer mes modifications et poursuivre mes modifications" msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:46 msgid "Le formulaire a été modifié. Etes vous sûr de vouloir partir ?" msgstr "" @@ -19512,6 +19677,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:47 msgid "Désactivé" msgstr "" @@ -19597,6 +19764,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81 msgid "Jamendo" msgstr "" @@ -19615,24 +19783,28 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 msgid "Catalogues OPDS" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86 msgid "Entrepôts OAI" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 msgid "Import/Export EAD" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 msgid "Premier-Chapitre" msgstr "" @@ -19641,96 +19813,113 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 #: ../../library/Class/Feature/List.php:68 #: ../../library/Class/Feature/List.php:145 +#: ../../library/Class/Feature/List.php:146 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:96 msgid "Mise en page" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:97 msgid "Profils" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 msgid "Pictogrammes des genres" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 msgid "Traductions" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:109 msgid "Statistiques" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:110 msgid "Piwik" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:118 msgid "Administration du portail" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:119 msgid "Territoires" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 msgid "Multimedia" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:134 msgid "Système" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:135 msgid "Accès à Cosmogramme" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 msgid "Batchs" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 msgid "Test des web-services" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 msgid "Test envoi mails" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:146 msgid "Cache des images" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 msgid "Import avis opac2" msgstr "" @@ -19739,6 +19928,7 @@ msgstr "" #: ../../library/Class/Feature/List.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 msgid "Explorateur de fichiers" msgstr "" @@ -19746,6 +19936,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:160 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 msgid "Rapports statistiques" msgstr "" @@ -19753,6 +19944,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:167 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 msgid "Catalogues" msgstr "" @@ -19760,6 +19952,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:175 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 msgid "Import Thesaurus" msgstr "" @@ -19767,6 +19960,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:178 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 msgid "Modification Thesaurus" msgstr "" @@ -20262,6 +20456,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:71 msgid "Zones" msgstr "" @@ -20277,42 +20472,49 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:469 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:118 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Emplacement" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:120 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:111 msgid "Id origine" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:121 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:112 msgid "Date nouveaté" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:155 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 msgid "Longueur" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:149 msgid "Niveau hiérarchique" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:159 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:150 msgid "Adresse des données" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:160 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:151 msgid "Niveau de catalogage" msgstr "" @@ -20583,6 +20785,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 +#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:390 msgid "pictogramme pour " msgstr "" @@ -20730,6 +20933,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:137 msgid "Envoyer une demande d'achat de document" msgstr "" @@ -21083,6 +21287,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:55 msgid "Numéro de commande" msgstr "" @@ -21184,6 +21389,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 #, php-format msgid "Section: %s" msgstr "" @@ -21397,6 +21603,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 +#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:36 msgid "Veuillez patienter ..." msgstr "" @@ -22062,6 +22269,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:229 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:231 msgid "Super administrateur" msgstr "" @@ -22069,6 +22277,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 msgid "Invité" msgstr "" @@ -22076,6 +22285,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 msgid "Abonné portail" msgstr "" @@ -22083,6 +22293,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 msgid "Abonné SIGB" msgstr "" @@ -22090,6 +22301,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 msgid "Rédacteur bibliothèque" msgstr "" @@ -22097,6 +22309,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 msgid "Administrateur bibliothèque" msgstr "" @@ -22104,6 +22317,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:243 msgid "Rédacteur portail" msgstr "" @@ -22111,6 +22325,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:244 msgid "Administrateur portail" msgstr "" @@ -22161,6 +22376,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:42 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:60 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:106 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:100 msgid "Aucune version dans l'historique" msgstr "" @@ -22180,6 +22396,8 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:93 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:69 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:66 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:78 msgid "Version introuvable" msgstr "" @@ -22188,6 +22406,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:142 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:99 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:84 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 msgid "Version supprimée" msgstr "" @@ -22309,6 +22528,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:121 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:149 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:186 +#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176 #, php-format msgid "Vous n'avez pas la permission \"%s\"" msgstr "" @@ -23211,6 +23431,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:63 msgid "Date de mise à jour" msgstr "" @@ -23246,6 +23467,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Action.php:251 #: ../../library/ZendAfi/Controller/Action.php:261 #: ../../library/ZendAfi/Controller/Action.php:261 +#: ../../library/ZendAfi/Controller/Action.php:284 msgid "" "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. " "Merci de remplir manuellement" @@ -23295,6 +23517,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:130 #: ../../library/ZendAfi/View/Helper/TagEditArticle.php:74 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:43 msgid "Historique des modifications" msgstr "" @@ -23308,6 +23531,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:55 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:52 #, php-format msgid "Version de : \"%s\"" msgstr "" @@ -23665,6 +23889,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285 msgid "Planification" msgstr "" @@ -23844,6 +24069,7 @@ msgstr "" #: ../../library/Class/TableDescription/PNBItems.php:39 #: ../../library/Class/TableDescription/PNBItems.php:39 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249 msgid "Voir l'album" msgstr "" @@ -23914,16 +24140,19 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297 msgid "Désactiver la tâche" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305 msgid "Etes-vous sur de vouloir désactiver cette tâche ?" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310 msgid "Plannifier la tâche" msgstr "" @@ -24045,12 +24274,14 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:68 #: ../../application/modules/admin/views/scripts/feature/index.phtml:70 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:86 #, php-format msgid "Nouveautés : %d" msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:76 #: ../../application/modules/admin/views/scripts/feature/index.phtml:78 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:94 #, php-format msgid "Archivées : %d" msgstr "" @@ -24058,6 +24289,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:84 #: ../../library/ZendAfi/View/Helper/Redmine/Issues.php:33 #: ../../application/modules/admin/views/scripts/feature/index.phtml:86 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:102 msgid "Chercher" msgstr "" @@ -24242,10 +24474,13 @@ msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:36 #: ../../application/modules/admin/controllers/FeatureController.php:58 +#: ../../application/modules/admin/controllers/FeatureController.php:37 +#: ../../application/modules/admin/controllers/FeatureController.php:59 msgid "Nouveauté inconnue" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:43 +#: ../../application/modules/admin/controllers/FeatureController.php:44 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" est toujours une nouveauté " @@ -24253,11 +24488,13 @@ msgid "" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:48 +#: ../../application/modules/admin/controllers/FeatureController.php:49 #, php-format msgid "\"%s\" n'est plus une nouveauté pour vous." msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:65 +#: ../../application/modules/admin/controllers/FeatureController.php:66 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" n'est toujours pas une " @@ -24265,17 +24502,20 @@ msgid "" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:70 +#: ../../application/modules/admin/controllers/FeatureController.php:71 #, php-format msgid "\"%s\" est une nouveauté pour vous." msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:165 +#: ../../application/modules/admin/controllers/IndexController.php:173 msgid "" "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité." msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:170 #: ../../application/modules/admin/controllers/UsersController.php:117 +#: ../../application/modules/admin/controllers/IndexController.php:178 msgid "Utilisateur invalide" msgstr "" @@ -24283,6 +24523,8 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:179 #: ../../application/modules/admin/controllers/IndexController.php:178 #: ../../application/modules/admin/controllers/IndexController.php:190 +#: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:198 #, php-format msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\"" msgstr "" @@ -24332,23 +24574,23 @@ msgid "Explorateur de fichiers : \"%s\"" msgstr "" #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396 -#: ../../library/Class/AdminVar.php:393 +#: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398 msgid "Taille du dossier userfiles en méga octets." msgstr "" #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 -#: ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401 msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403 -#: ../../library/Class/AdminVar.php:400 +#: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "" @@ -24360,14 +24602,14 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412 -#: ../../library/Class/AdminVar.php:409 +#: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." msgstr "" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415 -#: ../../library/Class/AdminVar.php:412 +#: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -24439,18 +24681,22 @@ msgid "To" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 msgid "Un seul fichier doit être transféré." msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:50 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:54 msgid "La taille du fichier doit être supérieur à \"%min%\"" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 msgid "La taille du fichier doit être inférieur à \"%max%\"" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:52 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:56 msgid "Le fichier n'est pas lisible" msgstr "" @@ -24460,6 +24706,7 @@ msgid "Les extensions possiblent sont : %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:83 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:87 msgid "Choisissez un fichier" msgstr "" @@ -24541,6 +24788,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:92 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:327 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:332 +#: ../../application/modules/admin/controllers/FileManagerController.php:269 #, php-format msgid "Renommer \"%s\"" msgstr "" @@ -24548,6 +24796,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:102 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:103 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:196 +#: ../../application/modules/admin/controllers/FileManagerController.php:128 #, php-format msgid "Supprimer \"%s\"" msgstr "" @@ -24562,36 +24811,43 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:124 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:358 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:367 +#: ../../application/modules/admin/controllers/FileManagerController.php:304 #, php-format msgid "Propriétés de \"%s\"" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:140 +#: ../../application/modules/admin/controllers/FileManagerController.php:72 #, php-format msgid "\"%s\" vers \"%s\"" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:162 +#: ../../application/modules/admin/controllers/FileManagerController.php:94 #, php-format msgid "Déplacement de \"%s\" dans \"%s\" effectué." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:163 +#: ../../application/modules/admin/controllers/FileManagerController.php:95 #, php-format msgid "Impossible de déplacer \"%s\" dans \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:183 +#: ../../application/modules/admin/controllers/FileManagerController.php:115 #, php-format msgid "Copie de \"%s\" dans \"%s\" effectué." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:184 +#: ../../application/modules/admin/controllers/FileManagerController.php:116 #, php-format msgid "Impossible de copier \"%s\" dans \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:194 +#: ../../application/modules/admin/controllers/FileManagerController.php:126 #, php-format msgid "" "Le dossier \"%s\" ne peut pas être supprimé car il contient des éléments " @@ -24600,40 +24856,47 @@ msgid "" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:139 #, php-format msgid "\"%s\" supprimé." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:207 +#: ../../application/modules/admin/controllers/FileManagerController.php:140 #, php-format msgid "Impossible de supprimer \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:215 +#: ../../application/modules/admin/controllers/FileManagerController.php:152 #, php-format msgid "Créer un nouveau dossier dans \"%s\"" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:227 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:232 +#: ../../application/modules/admin/controllers/FileManagerController.php:169 #, php-format msgid "Dossier \"%s\" créé." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:228 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:233 +#: ../../application/modules/admin/controllers/FileManagerController.php:170 #, php-format msgid "Impossible de créer le dossier \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:239 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:244 +#: ../../application/modules/admin/controllers/FileManagerController.php:181 #, php-format msgid "Téléverser un fichier dans \"%s\"" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:262 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:267 +#: ../../application/modules/admin/controllers/FileManagerController.php:204 #, php-format msgid "Impossible de téléverser le fichier \"%s\"." msgstr "" @@ -24642,83 +24905,98 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:275 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:269 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:280 +#: ../../application/modules/admin/controllers/FileManagerController.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:217 #, php-format msgid "Fichier \"%s\" téléversé." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:276 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:281 +#: ../../application/modules/admin/controllers/FileManagerController.php:218 msgid "Une erreur c' produite. Le téléversage a échoué." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:285 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:290 +#: ../../application/modules/admin/controllers/FileManagerController.php:228 #, php-format msgid "\"%s\" n'est pas redimensionnable." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:287 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:292 +#: ../../application/modules/admin/controllers/FileManagerController.php:230 #, php-format msgid "Redimensionner l'image \"%s\"" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:302 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 +#: ../../application/modules/admin/controllers/FileManagerController.php:244 #, php-format msgid "Dimensions \"%s\" invalident. Les dimensions valident sont : %s ." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:306 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:311 +#: ../../application/modules/admin/controllers/FileManagerController.php:248 #, php-format msgid "L'image \"%s\" a été redimensionnée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:312 +#: ../../application/modules/admin/controllers/FileManagerController.php:249 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été redimensionnée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:318 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:323 +#: ../../application/modules/admin/controllers/FileManagerController.php:260 #, php-format msgid "L'image \"%s\" a été compressée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:319 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:324 +#: ../../application/modules/admin/controllers/FileManagerController.php:261 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été compressée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:346 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:355 +#: ../../application/modules/admin/controllers/FileManagerController.php:292 #, php-format msgid "\"%s\" renommé en \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:347 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:356 +#: ../../application/modules/admin/controllers/FileManagerController.php:293 #, php-format msgid "Erreur. Impossible de renommer \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:388 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:397 +#: ../../application/modules/admin/controllers/FileManagerController.php:334 #, php-format msgid "Erreur. Le chemin \"%s\" n'existe pas." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:393 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:402 +#: ../../application/modules/admin/controllers/FileManagerController.php:339 #, php-format msgid "Erreur. Impossible de faire cette opération vers \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:398 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:407 +#: ../../application/modules/admin/controllers/FileManagerController.php:344 #, php-format msgid "" "Vous ne pouvez pas copier ou déplacer un élément avec lui-même : \"%s\" est " @@ -24727,6 +25005,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:405 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:414 +#: ../../application/modules/admin/controllers/FileManagerController.php:351 #, php-format msgid "" "Erreur. Vous ne pouvez pas téléverser un nouveau fichier car vous avez " @@ -24829,30 +25108,37 @@ msgid "Modifié" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:419 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:425 msgid "Rechercher le terme saisie" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:32 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:34 msgid "Extension :" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:35 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:37 msgid "Emplacement :" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:41 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:43 msgid "Dimensions :" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:44 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:46 msgid "Date de modification :" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:47 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:49 msgid "Droit d'écriture :" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65 #, php-format msgid "Accéder à \"%s\" dans un nouvel onglet." msgstr "" @@ -24867,6 +25153,7 @@ msgid "Ne rien faire et garder la dimension originale de \"%s\"" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:59 #, php-format msgid "Les extensions possibles sont : %s" msgstr "" @@ -24917,10 +25204,12 @@ msgid "" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:153 +#: ../../application/modules/opac/controllers/RechercheController.php:157 msgid "Configuration de la recherche" msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:306 +#: ../../application/modules/opac/controllers/RechercheController.php:800 msgid "Notice Bokeh" msgstr "" @@ -24982,11 +25271,13 @@ msgid "Réponse (%s)" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:155 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:161 #, php-format msgid "Appels webservices (%s)" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:156 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:162 msgid "Liste des appels webservices" msgstr "" @@ -25073,6 +25364,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:175 #: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:194 msgid "Nom d'utilisateur ou mot de passe invalide" msgstr "" @@ -25109,12 +25401,14 @@ msgid "Merci de contacter la médiathèque pour obtenir un accès." msgstr "" #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:385 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" msgstr "" #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:386 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" @@ -25171,6 +25465,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Album.php:312 #: ../../library/ZendAfi/Form/Album.php:313 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:82 msgid "Commandes" msgstr "" @@ -25194,26 +25489,31 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:326 #: ../../application/modules/opac/controllers/AuthController.php:333 +#: ../../application/modules/opac/controllers/AuthController.php:328 msgid "Réinitialisation du mot de passe" msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:329 #: ../../application/modules/opac/controllers/AuthController.php:336 +#: ../../application/modules/opac/controllers/AuthController.php:331 msgid "Utilisateur inconnu" msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:334 #: ../../application/modules/opac/controllers/AuthController.php:341 +#: ../../application/modules/opac/controllers/AuthController.php:336 msgid "Jeton de réinitialisation invalide" msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:337 #: ../../application/modules/opac/controllers/AuthController.php:344 +#: ../../application/modules/opac/controllers/AuthController.php:339 msgid "Jeton de réinitialisation expiré" msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:349 #: ../../application/modules/opac/controllers/AuthController.php:356 +#: ../../application/modules/opac/controllers/AuthController.php:351 msgid "Votre mot de passe a été réinitialisé, vous pouvez vous connecter." msgstr "" @@ -25296,16 +25596,19 @@ msgid "" msgstr "" #: ../../library/Class/Feature/List.php:119 +#: ../../library/Class/Feature/List.php:120 msgid "Export des agendas au format iCalendar" msgstr "" #: ../../library/Class/Feature/List.php:120 +#: ../../library/Class/Feature/List.php:121 msgid "" "Exportez vos agendas pour les intégrer dans un logiciel de calendrier ou un " "autre système d'information." msgstr "" #: ../../library/Class/Feature/List.php:123 +#: ../../library/Class/Feature/List.php:124 msgid "Exports" msgstr "" @@ -25358,36 +25661,44 @@ msgid "Ajouter un site dans la catégorie: " msgstr "" #: ../../library/Class/Feature/List.php:130 +#: ../../library/Class/Feature/List.php:131 msgid "Evolution de la boite sitothèque" msgstr "" #: ../../library/Class/Feature/List.php:131 +#: ../../library/Class/Feature/List.php:132 msgid "" "Possibilité d'éditer ou d'ajouter un site, dans une boite sithothèque, " "depuis l'interface publique." msgstr "" #: ../../library/Class/Feature/List.php:141 +#: ../../library/Class/Feature/List.php:142 msgid "Fond de carte personnalisable" msgstr "" #: ../../library/Class/Feature/List.php:142 +#: ../../library/Class/Feature/List.php:143 msgid "Le fond de carte de la boite bibliothèques est personnalisable." msgstr "" #: ../../library/Class/Feature/List.php:152 +#: ../../library/Class/Feature/List.php:153 msgid "Recherche fédérée pour MusicMe" msgstr "" #: ../../library/Class/Feature/List.php:153 +#: ../../library/Class/Feature/List.php:154 msgid "Moissonnage des notices de musicMe" msgstr "" #: ../../library/Class/Feature/List.php:163 +#: ../../library/Class/Feature/List.php:164 msgid "Modération des vidéos" msgstr "" #: ../../library/Class/Feature/List.php:164 +#: ../../library/Class/Feature/List.php:165 msgid "Vous pouvez désormais proposer une url de bande-annonce pour une notice" msgstr "" @@ -25492,20 +25803,572 @@ msgstr "" msgid "Modifier le domaine " msgstr "" -#: ../../library/Class/AdminVar.php:406 +#: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." msgstr "" #: ../../library/Class/Feature/List.php:174 +#: ../../library/Class/Feature/List.php:175 msgid "Consultation de l'historique des prêts depuis le compte lecteur Bokeh" msgstr "" #: ../../library/Class/Feature/List.php:185 +#: ../../library/Class/Feature/List.php:186 msgid "Insérer un kiosque dans un article" msgstr "" #: ../../library/Class/Feature/List.php:186 +#: ../../library/Class/Feature/List.php:187 msgid "Permet d'afficher un ou plusieurs kiosques de notices dans un article" msgstr "" + +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:11 +#, php-format +msgid "Visualisation de l'article \"%s\" dans un nouvel onglet" +msgstr "" + +#: ../../application/modules/admin/views/scripts/feature/index.phtml:64 +#, php-format +msgid "Voir la vidéo de la fonctionnalité : \"%s\"" +msgstr "" + +#: ../../application/modules/admin/views/scripts/feature/index.phtml:80 +#, php-format +msgid "Essayer \"%s\" dans un nouvel onglet" +msgstr "" + +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:74 +msgid "Tableau de bord" +msgstr "" + +#: ../../application/modules/admin/views/scripts/catalogue/paniers.phtml:18 +#, php-format +msgid "Visualisation du panier \"%s\" dans un nouvel onglet" +msgstr "" + +#: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:42 +#, php-format +msgid "Visualiser le domaine \"%s\" dans un nouvel onglet" +msgstr "" + +#: ../../application/modules/admin/views/scripts/profil/_page_row.phtml:34 +#, php-format +msgid "Ouvrir la page \"%s\" dans un nouvel onglet" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:5 +msgid "Journée communautaire Bokeh 2018" +msgstr "" + +#: ../../application/modules/admin/views/scripts/index/index.phtml:7 +msgid "Jeudi 15 mars" +msgstr "" + +#: ../../application/modules/admin/controllers/IndexController.php:81 +msgid "Veuillez renseigner le paramètre \"cle\"." +msgstr "" + +#: ../../application/modules/admin/controllers/IndexController.php:86 +#, php-format +msgid "La clé \"%s\" n'existe pas." +msgstr "" + +#: ../../application/modules/admin/controllers/FeatureController.php:79 +msgid "" +"Vous ne serez plus notifié des nouvelles fonctionnalités jusqu'à la " +"prochaine mise à jour du logicel." +msgstr "" + +#: ../../application/modules/api/controllers/UserController.php:26 +msgid "Protocole HTTPS obligatoire" +msgstr "" + +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:11 +msgid "Non je ne veux pas" +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:17 +msgid "Pas encore de nouveauté." +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:20 +#, php-format +msgid "Voir les dernières nouveautés de la recherche \"%s\"" +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:31 +msgid "Voir le résultat de la recherche" +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:46 +msgid "Me notifier des nouveautés" +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:50 +msgid "Annuler la notification des nouveautés" +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:66 +#, php-format +msgid "Supprimer la recherche \"%s\"" +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:79 +msgid "Vous n'avez pas enregistré de recherche dans vos favoris" +msgstr "" + +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:81 +msgid "Mes recherches favorites" +msgstr "" + +#: ../../application/modules/opac/controllers/ModulesController.php:79 +msgid "L'identifiant du document demandé n'existe pas" +msgstr "" + +#: ../../application/modules/opac/controllers/ModulesController.php:86 +msgid "" +"Ce document ne possède pas de configuration permettant d'utiliser cette URL." +msgstr "" + +#: ../../application/modules/opac/controllers/AbonneController.php:1012 +msgid "Favoris sauvegardés" +msgstr "" + +#: ../../application/modules/opac/controllers/AbonneController.php:1021 +#: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 +msgid "Mes favoris" +msgstr "" + +#: ../../application/modules/opac/controllers/RechercheController.php:804 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:50 +msgid "Dilicom" +msgstr "" + +#: ../../library/Class/Feature.php:184 +msgid "Nouvelles fonctionnalités depuis votre dernière connexion : " +msgstr "" + +#: ../../library/Class/Notice/MailRenderer.php:34 +msgid "Lien: " +msgstr "" + +#: ../../library/Class/AdminVar.php:225 +msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris" +msgstr "" + +#: ../../library/Class/AdminVar.php:226 +msgid "" +"Les utilisateurs peuvent recevoir les nouveautés de leurs recherches " +"favorites par email" +msgstr "" + +#: ../../library/Class/AdminVar.php:289 +msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" +msgstr "" + +#: ../../library/Class/User/BookmarkedSearch.php:112 +#, php-format +msgid "Nouveau(x) résultat(s) pour votre recherche %s" +msgstr "" + +#: ../../library/Class/User/BookmarkedSearch.php:113 +#, php-format +msgid "" +"Bonjour,\n" +"\n" +"Il y a %s nouveau(x) résultat(s) pour votre recherche \"%s\" :\n" +"\n" +"%s\n" +"\n" +"%s\n" +"\n" +"%s" +msgstr "" + +#: ../../library/Class/User/BookmarkedSearch.php:134 +#, php-format +msgid "Voici les %s premiers" +msgstr "" + +#: ../../library/Class/User/BookmarkedSearch.php:154 +#, php-format +msgid "Pour voir toutes ces nouveautés sur le portail, suivez le lien: %s" +msgstr "" + +#: ../../library/Class/User/BookmarkedSearch.php:161 +#, php-format +msgid "" +"Pour annuler les prochaines notifications de nouveautés pour la recherche " +"%s. Veuillez cliquer sur le lien: %s" +msgstr "" + +#: ../../library/Class/CriteresRecherche.php:973 +#, php-format +msgid "Ma recherche \"%s\"" +msgstr "" + +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:30 +msgid "Notification des nouveautés dans les recherches favorites" +msgstr "" + +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:41 +msgid "Ce traitement ne se lance qu'en mode cron." +msgstr "" + +#: ../../library/Class/Feature/List.php:179 +msgid "Compte lecteur" +msgstr "" + +#: ../../library/Class/DigitalResource/Controller.php:39 +#: ../../library/Class/DigitalResource/Controller.php:53 +msgid "Vous devez vous connecter pour accéder à cette page" +msgstr "" + +#: ../../library/Class/DigitalResource/Controller.php:42 +msgid "" +"Vous devez être connecté avec un compte adminitrateur pour accéder à cette " +"page" +msgstr "" + +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +msgid "%d %B %Y" +msgstr "" + +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#, php-format +msgid "Nouveautés du %s" +msgstr "" + +#: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 +msgid "" +"Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " +"caratères \"_\", \"-\", \".\". Exemple : \"mon_dossier\"" +msgstr "" + +#: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 +msgid "" +"Le nom peut contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +msgid "" +"Le nom doit contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:32 +msgid "Titre de votre recherche" +msgstr "" + +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:37 +msgid "Me notifier des nouveautés par email" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:31 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:32 +#, php-format +msgid "La recherche \"%s\" a été enregistrée dans mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:33 +#, php-format +msgid "La recherche \"%s\" a été supprimée de mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:35 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:36 +msgid "Enregister la recherche dans mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:37 +msgid "Supprimer la recherche de mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:54 +msgid "La recherche demandée est introuvable." +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:60 +msgid "Cette recherche ne vous appartient pas." +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:85 +#, php-format +msgid "Les notifications de nouveautés pour la recherche \"%s\" sont activées." +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:96 +#, php-format +msgid "" +"Les notifications de nouveautés pour la recherche \"%s\" sont désactivées." +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:56 +msgid "URL publique :" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:420 +#, php-format +msgid "Rechercher dans \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:56 +msgid "Éditeurs" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:35 +msgid "Le document n'a pas d'album" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:40 +msgid "Ce document n'est pas de type Dilicom" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:60 +msgid "Identifiant interne Bokeh" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:64 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:54 +msgid "Identifiant externe Dilicom" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:65 +msgid "Url de la ressource externe Dilicom" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:88 +msgid "Historique des 5 derniers prêts" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:105 +msgid "Cet album n'a pas de commande" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:125 +msgid "Cet album n'a pas de prêt en cours" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:136 +msgid "Cet album n'a pas encore été emprunté" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:39 +msgid "Aucun prêt en cours" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:51 +msgid "Identifiant du prêt interne Bokeh" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:52 +msgid "Indetifiant de l'utilisateur interne Bokeh" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:56 +msgid "Date de prêt" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:57 +msgid "Date de retour prévue" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:58 +msgid "Url du fichier de DRM" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Album/OldLoans.php:30 +msgid "Le document n'a pas encore été emprunté" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 +#: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 +#, php-format +msgid "" +"Prévisualisation du panier \"%s\" en résultat de recherche dans un nouvel " +"onglet" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:66 +msgid "Moissonnage désactivé" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:70 +msgid "Moissonnage activé" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:83 +msgid "description" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:85 +msgid "valeur" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230 +#, php-format +msgid "Modifier \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105 +msgid "Paramétrage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111 +msgid "Gestion des droits" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114 +msgid "" +"Veuillez activer la ressource pour pouvoir gérer les droits d'accès des " +"groupes" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119 +msgid "Cette ressource ne prend pas en charge la gestion des droits" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123 +#, php-format +msgid "Nom de la permission à donner : \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136 +msgid "Aucun groupe n'a de droits d'accès à la ressources" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142 +msgid "Gérer les groupes" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148 +msgid "Groupes qui ont accès à la ressource" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150 +msgid "Nombre de membres" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172 +msgid "Aucun utilisateur rattaché aux groupes" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179 +msgid "Diagnostic SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182 +msgid "Cette ressource ne prend pas en charge la connexion SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187 +msgid "" +"Veuillez configurer les droits de cette ressource pour obtenir une connexion " +"SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210 +msgid "Groupe créé pour ce test" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212 +#, php-format +msgid "Nom : %s" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217 +msgid "Utilisateur créé pour ce test" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219 +#, php-format +msgid "Login : %s" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220 +#, php-format +msgid "Mot de passe : %s" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221 +#, php-format +msgid "Groupes : %s" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234 +#, php-format +msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243 +#, php-format +msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259 +msgid "Diagnostic moissonnage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262 +msgid "Cette ressource ne prend pas en charge le moissonnage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267 +msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272 +msgid "Le moissonnage n'est pas programmé" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274 +msgid "Activer le moissonnage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284 +msgid "Batch" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323 +msgid "Voir les albums" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:332 +#, php-format +msgid "Nombre d'albums présents : %d" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334 +msgid "Aucun album présent pour cette ressource" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/TagSlideshow.php:196 +#, php-format +msgid "Accéder à la ressource \"%s\" dans un nouvel onglet" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:33 +#, php-format +msgid "Voir la notice \"%s\" dans un nouvel onglet" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:38 +#, php-format +msgid "Pour: %s " +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +msgid "Enregistrer ma recherche" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +msgid "Enregistrer ma recherche dans mes favoris" +msgstr "" diff --git a/library/translation/ro.mo b/library/translation/ro.mo index dcfa1af7be95839aaf6927f54b5956c95f70a2f8..a248d6909dfcf2c9fa24e782db2a0ccb7bf2791e 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 20c443cca89cc720e2bc95ae3a52227bd5bd5764..fe4d2c9dabbe7ff7cb2f6cc6ca61da5acc7af9f2 100644 --- a/library/translation/ro.po +++ b/library/translation/ro.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: 0.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-01-30 10:18+0100\n" +"POT-Creation-Date: 2018-03-12 15:30+0100\n" "PO-Revision-Date: 2011-07-14 18:15+0200\n" "Last-Translator: Lupu Mariana <lupumariana@yahoo.com>\n" "Language-Team: Romanian\n" @@ -24,6 +24,7 @@ msgstr "(%d în întârziere)" #: ../../application/modules/opac/controllers/RechercheController.php:138 #: ../../application/modules/opac/controllers/RechercheController.php:138 +#: ../../application/modules/opac/controllers/RechercheController.php:142 msgid " (recherche élargie triée par pertinence)" msgstr "(căutare avansată prin triere în funcÅ£ie de pertinenţă)" @@ -56,6 +57,9 @@ msgstr "Modifică fiÅŸa mea" #: ../../library/ZendAfi/Feed/SearchResultHeader.php:175 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:186 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:208 +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:184 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:188 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:210 msgid " OU " msgstr "" @@ -86,6 +90,7 @@ msgstr "la buletinele informative:" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid " avec l'adresse suivante: " msgstr "" @@ -248,33 +253,39 @@ msgid "!!Erreur dans le modèle, attribut indéfini:" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:70 +#: ../../application/modules/admin/controllers/FeatureController.php:71 #, php-format msgid "\"%s\" est une nouveauté pour vous." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:285 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:290 +#: ../../application/modules/admin/controllers/FileManagerController.php:228 #, php-format msgid "\"%s\" n'est pas redimensionnable." msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:48 +#: ../../application/modules/admin/controllers/FeatureController.php:49 #, php-format msgid "\"%s\" n'est plus une nouveauté pour vous." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:346 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:355 +#: ../../application/modules/admin/controllers/FileManagerController.php:292 #, php-format msgid "\"%s\" renommé en \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:139 #, fuzzy, php-format msgid "\"%s\" supprimé." msgstr "Rezervări în curs" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:140 +#: ../../application/modules/admin/controllers/FileManagerController.php:72 #, fuzzy, php-format msgid "\"%s\" vers \"%s\"" msgstr "Rezervare" @@ -291,6 +302,11 @@ msgstr "" msgid "%.2f %%" msgstr "%.2f %%" +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:178 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:225 +msgid "%d %B %Y" +msgstr "" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:44 msgid "%d %B %Y %H:%M:%S" @@ -928,11 +944,13 @@ msgstr "" #: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:420 #: ../../library/Class/AdminVar.php:422 ../../library/Class/AdminVar.php:419 +#: ../../library/Class/AdminVar.php:424 msgid "API" msgstr "" #: ../../library/Class/AdminVar.php:392 ../../library/Class/AdminVar.php:419 #: ../../library/Class/AdminVar.php:421 ../../library/Class/AdminVar.php:418 +#: ../../library/Class/AdminVar.php:423 msgid "API utilisée pour les cartes statiques" msgstr "" @@ -990,6 +1008,7 @@ msgstr "" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #, fuzzy msgid "Abonné SIGB" msgstr "Abonat sigb" @@ -1005,6 +1024,7 @@ msgstr "instrucÅ£iuni găsite" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:235 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #, fuzzy msgid "Abonné portail" msgstr "Abonat sigb" @@ -1099,6 +1119,7 @@ msgstr "Acces pro." #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:135 msgid "Accès à Cosmogramme" msgstr "Acces la Cosmogramă " @@ -1173,6 +1194,7 @@ msgid "Accéder aux titres seulement" msgstr "Tip de document" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:57 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:65 #, php-format msgid "Accéder à \"%s\" dans un nouvel onglet." msgstr "" @@ -1216,6 +1238,11 @@ msgstr "" msgid "Accéder à la ressource" msgstr "Gestionare a resurselor" +#: ../../library/ZendAfi/View/Helper/TagSlideshow.php:196 +#, fuzzy, php-format +msgid "Accéder à la ressource \"%s\" dans un nouvel onglet" +msgstr "Gestionare a resurselor" + #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 #: ../../library/ZendAfi/View/Helper/Album/CiteDeLaMusique.php:39 #, fuzzy @@ -1251,7 +1278,7 @@ msgid "Actions" msgstr "AcÅ£iune" #: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:243 -#: ../../library/Class/AdminVar.php:240 +#: ../../library/Class/AdminVar.php:240 ../../library/Class/AdminVar.php:242 #, fuzzy msgid "" "Activation de la disponibilite dans le resultat de recherche au survol de la " @@ -1259,7 +1286,7 @@ msgid "" msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare" #: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:244 -#: ../../library/Class/AdminVar.php:241 +#: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:243 #, fuzzy msgid "" "Activation de la disponibilite dans le resultat de recherche. Calculé grâce " @@ -1288,7 +1315,7 @@ msgid "Activation des fonctions avancées du téléphone" msgstr "" #: ../../library/Class/AdminVar.php:255 ../../library/Class/AdminVar.php:256 -#: ../../library/Class/AdminVar.php:253 +#: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:255 #, fuzzy msgid "Activation des formulaires" msgstr "Moderare alerte" @@ -1299,7 +1326,7 @@ msgid "Activation du PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:381 ../../library/Class/AdminVar.php:382 -#: ../../library/Class/AdminVar.php:379 +#: ../../library/Class/AdminVar.php:379 ../../library/Class/AdminVar.php:384 msgid "" "Activation du serveur OAI: permet le moissonnage des domaines par d'autres " "logiciels via OAI" @@ -1322,6 +1349,10 @@ msgstr "" msgid "Activer la tâche" msgstr "Adaugă o categorie" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:274 +msgid "Activer le moissonnage" +msgstr "" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:237 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:246 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:293 @@ -1372,6 +1403,7 @@ msgstr "Adaugă o localizare" #: ../../library/ZendAfi/Form/Admin/Activity.php:40 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:119 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:110 msgid "Activité" msgstr "" @@ -1409,6 +1441,8 @@ msgstr "AcÅ£iune" #: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 #: ../../library/Class/Systeme/Report.php:188 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:36 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:62 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:51 #, fuzzy msgid "Activé" msgstr "AcÅ£iune" @@ -1437,6 +1471,7 @@ msgstr "Amplasare" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 #, fuzzy msgid "Administrateur bibliothèque" msgstr "ÃŽn această bibliotecă." @@ -1445,6 +1480,7 @@ msgstr "ÃŽn această bibliotecă." #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:240 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:242 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:244 #, fuzzy msgid "Administrateur portail" msgstr "Administrarea portalului" @@ -1462,6 +1498,8 @@ msgstr "Administrarea portalului" #: ../../library/Class/Feature/List.php:101 #: ../../library/Class/Feature/List.php:167 #: ../../library/Class/Feature/List.php:189 +#: ../../library/Class/Feature/List.php:168 +#: ../../library/Class/Feature/List.php:190 #, fuzzy msgid "Administration" msgstr "Administrarea portalului" @@ -1469,6 +1507,7 @@ msgstr "Administrarea portalului" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:118 msgid "Administration du portail" msgstr "Administrarea portalului" @@ -1566,6 +1605,7 @@ msgstr "Adresă URL" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:159 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:150 #, fuzzy msgid "Adresse des données" msgstr "Filtrare a datelor" @@ -2454,6 +2494,7 @@ msgstr "Adaugă o categorie" #: ../../application/modules/opac/controllers/AbonneController.php:1107 #: ../../application/modules/opac/controllers/AbonneController.php:1100 #: ../../application/modules/opac/controllers/AbonneController.php:1102 +#: ../../application/modules/opac/controllers/AbonneController.php:1117 #, fuzzy msgid "Ajouter une carte" msgstr "Adaugă o localizare" @@ -2576,6 +2617,7 @@ msgstr "Modificarea abonamentelor mele" #: ../../library/ZendAfi/Form/Configuration/Widget/Albums.php:49 #: ../../library/ZendAfi/Form/Album.php:49 #: ../../library/ZendAfi/Form/Album.php:50 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:46 msgid "Album" msgstr "" @@ -2712,6 +2754,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:204 #: ../../library/ZendAfi/View/Helper/BibView.php:207 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:117 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 msgid "Annexe" msgstr "Anexă" @@ -2742,6 +2785,7 @@ msgstr "Rezervări de instrucÅ£iuni" #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 #: ../../application/modules/telephone/views/scripts/abonne/cancel-hold.phtml:21 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:48 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:43 msgid "Annuler" msgstr "Anulare" @@ -2751,8 +2795,14 @@ msgstr "Anulare" msgid "Annuler cette réservation" msgstr "ȘtergeÅ£i această rezervare" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:50 +#, fuzzy +msgid "Annuler la notification des nouveautés" +msgstr "Modificarea fiÅŸei dvs." + #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 #: ../../library/ZendAfi/View/Helper/Button/Cancel.php:37 +#: ../../library/ZendAfi/View/Helper/Button/Cancel.php:32 #, fuzzy msgid "Annuler mes modifications" msgstr "Criterii de indexare" @@ -2817,6 +2867,7 @@ msgstr "An de publicaÅ£ie - din" #: ../../library/Class/CriteresRecherche.php:142 #: ../../library/Class/WebService/SIGB/Koha/BuySuggestForm.php:55 #: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/Class/CriteresRecherche.php:144 msgid "Année de publication" msgstr "An de publicare" @@ -2868,6 +2919,7 @@ msgid "Appareils autorisés" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:155 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:161 #, fuzzy, php-format msgid "Appels webservices (%s)" msgstr "Test servicii web" @@ -2908,6 +2960,7 @@ msgstr "Arhive video" #: ../../application/modules/admin/views/scripts/feature/index.phtml:76 #: ../../application/modules/admin/views/scripts/feature/index.phtml:78 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:94 #, fuzzy, php-format msgid "Archivées : %d" msgstr "Arhive video" @@ -3087,8 +3140,7 @@ msgstr "Tip de document" #: ../../library/ZendAfi/View/Helper/Redmine/Header.php:124 #: ../../library/ZendAfi/View/Helper/Abonne/Resume.php:77 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:57 -#: ../../library/Class/ModeleFusion.php:75 -#: ../../library/Class/Ouverture.php:50 +#: ../../library/Class/ModeleFusion.php:75 ../../library/Class/Ouverture.php:50 #: ../../library/ZendAfi/Form/Album.php:235 #: ../../library/ZendAfi/Form/Admin/News.php:243 #: ../../library/ZendAfi/Form/Admin/Library.php:263 @@ -3101,8 +3153,12 @@ msgstr "Tip de document" msgid "Aucun" msgstr "nici o" -#: ../../library/Class/NoticeHtml.php:69 -#: ../../library/Class/NoticeHtml.php:69 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:334 +#, fuzzy +msgid "Aucun album présent pour cette ressource" +msgstr "Moderare" + +#: ../../library/Class/NoticeHtml.php:69 ../../library/Class/NoticeHtml.php:69 msgid "Aucun article n'a été trouvé" msgstr "Nu a fost găsit nici un articol" @@ -3200,6 +3256,10 @@ msgstr "" msgid "Aucun fichier présent dans %s" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:136 +msgid "Aucun groupe n'a de droits d'accès à la ressources" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 #: ../../library/ZendAfi/View/Helper/Admin/GroupsPermissions.php:29 msgid "" @@ -3218,6 +3278,11 @@ msgstr "Nici o critică recentă" msgid "Aucun poste dans ce groupe" msgstr "Nici o instrucÅ£iune găsită" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:39 +#, fuzzy +msgid "Aucun prêt en cours" +msgstr "ÃŽmprumuturi în curs" + #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 #: ../../library/Class/Batch/DilicomJobEndedLoans.php:56 msgid "Aucun prêt rendu de manière anticipée" @@ -3265,10 +3330,16 @@ msgstr "Nici un rezultat găsit" #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 #: ../../application/modules/opac/controllers/NoticeajaxController.php:205 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:204 #, fuzzy msgid "Aucun résumé" msgstr "Nici un rezultat găsit" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:172 +#, fuzzy +msgid "Aucun utilisateur rattaché aux groupes" +msgstr "Nici un articol găsit" + #: ../../library/Class/Ouverture.php:38 #: ../../library/ZendAfi/Form/Admin/User.php:263 #: ../../library/ZendAfi/View/Helper/Redmine/LibrarySelector.php:51 @@ -3396,6 +3467,7 @@ msgstr "Prelungire nereuÅŸită" #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:287 #: ../../application/modules/opac/controllers/NoticeajaxController.php:272 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:271 msgid "Aucune ressource correspondante" msgstr "" @@ -3425,6 +3497,7 @@ msgstr "Nici o dată de moderat" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:42 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:60 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:106 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:100 #, fuzzy msgid "Aucune version dans l'historique" msgstr "Nici o critică recentă" @@ -3565,6 +3638,7 @@ msgstr "Nu a fost găsită nici o înregistrare video" #: ../../library/ZendAfi/View/Helper/Abonne/LoansHistory.php:65 #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:59 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:22 +#: ../../library/Class/CriteresRecherche.php:143 msgid "Auteur" msgstr "Autor" @@ -3592,6 +3666,7 @@ msgstr "Autor :" #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:462 #: ../../application/modules/opac/controllers/RechercheController.php:477 +#: ../../application/modules/opac/controllers/RechercheController.php:480 #, php-format msgid "Auteur : %s" msgstr "Autor : %s" @@ -3671,6 +3746,10 @@ msgstr "" msgid "Autorisation non spécifiée" msgstr "" +#: ../../library/Class/AdminVar.php:289 +msgid "Autoriser l'accès aux API OAUTH via HTTP (non sécurisé - déconseillé)" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:149 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:151 @@ -3942,9 +4021,14 @@ msgstr "Filtrare a datelor" msgid "Base de données : " msgstr "Filtrare a datelor" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:284 +msgid "Batch" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 msgid "Batchs" msgstr "" @@ -4171,6 +4255,7 @@ msgstr "Bibliotecă(i)" #: ../../library/ZendAfi/Form/Configuration/Domain.php:90 #: ../../library/ZendAfi/View/Helper/TreeSelect/Json/Libraries.php:34 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:120 msgid "Bibliothèques" msgstr "Biblioteci" @@ -4551,9 +4636,24 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:1 #: ../../library/Class/Users.php:1082 ../../library/Class/Users.php:1091 #: ../../library/Class/Users.php:1070 ../../library/Class/Users.php:1073 +#: ../../library/Class/Users.php:1077 msgid "Bonjour," msgstr "Bună ziua," +#: ../../library/Class/User/BookmarkedSearch.php:113 +#, php-format +msgid "" +"Bonjour,\n" +"\n" +"Il y a %s nouveau(x) résultat(s) pour votre recherche \"%s\" :\n" +"\n" +"%s\n" +"\n" +"%s\n" +"\n" +"%s" +msgstr "" + #: ../../library/Class/Activity/UnregistrationMail.php:31 #: ../../library/Class/Activity/UnregistrationMail.php:31 #, php-format @@ -4572,9 +4672,9 @@ msgstr "" #: ../../library/Class/Users.php:1135 ../../library/Class/Users.php:1135 #: ../../library/Class/User/LostPass.php:104 -#: ../../library/Class/User/LostPass.php:137 -#: ../../library/Class/Users.php:1144 ../../library/Class/Users.php:1123 -#: ../../library/Class/Users.php:1126 +#: ../../library/Class/User/LostPass.php:137 ../../library/Class/Users.php:1144 +#: ../../library/Class/Users.php:1123 ../../library/Class/Users.php:1126 +#: ../../library/Class/Users.php:1130 msgid "Bonne navigation sur le portail" msgstr "Navigare plăcută pe portal" @@ -4629,6 +4729,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:150 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:149 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:146 msgid "Cache des images" msgstr "Ascunde imagini" @@ -4687,6 +4788,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BibView.php:166 #: ../../application/modules/opac/controllers/AbonneController.php:1113 #: ../../application/modules/opac/controllers/AbonneController.php:1115 +#: ../../application/modules/opac/controllers/AbonneController.php:1130 msgid "Carte" msgstr "Harta" @@ -4695,6 +4797,7 @@ msgstr "Harta" #: ../../application/modules/opac/controllers/AbonneController.php:1149 #: ../../application/modules/opac/controllers/AbonneController.php:1142 #: ../../application/modules/opac/controllers/AbonneController.php:1144 +#: ../../application/modules/opac/controllers/AbonneController.php:1159 #, fuzzy, php-format msgid "Carte de \"%s\" ajoutée" msgstr "Ultimele site-uri adăugate" @@ -4716,6 +4819,7 @@ msgstr "Harta zonelor" #: ../../application/modules/opac/controllers/AbonneController.php:1096 #: ../../application/modules/opac/controllers/AbonneController.php:1089 #: ../../application/modules/opac/controllers/AbonneController.php:1091 +#: ../../application/modules/opac/controllers/AbonneController.php:1106 #, fuzzy msgid "Carte introuvable" msgstr "Utilizator" @@ -4743,6 +4847,7 @@ msgstr "Catalog" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:169 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:167 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 #, fuzzy msgid "Catalogues" msgstr "Catalog" @@ -4750,6 +4855,7 @@ msgstr "Catalog" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 #, fuzzy msgid "Catalogues OPDS" msgstr "Catalog" @@ -4914,6 +5020,15 @@ msgstr "" msgid "Ce document est référencé dans les éléments suivants :" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:40 +msgid "Ce document n'est pas de type Dilicom" +msgstr "" + +#: ../../application/modules/opac/controllers/ModulesController.php:86 +msgid "" +"Ce document ne possède pas de configuration permettant d'utiliser cette URL." +msgstr "" + #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:9 #, fuzzy msgid "Ce domaine ne renvoie aucun résultat." @@ -4943,6 +5058,10 @@ msgstr "Acest meniu nu conÅ£ine date" msgid "Ce service n'est pas testable" msgstr "" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:41 +msgid "Ce traitement ne se lance qu'en mode cron." +msgstr "" + #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:257 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:266 #: ../../application/modules/admin/views/scripts/profil/_formProfil.phtml:313 @@ -4991,6 +5110,19 @@ msgstr "Centru(e) de interes" msgid "Centres d'intérêt" msgstr "Centre de interes" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:105 +msgid "Cet album n'a pas de commande" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:125 +#, fuzzy +msgid "Cet album n'a pas de prêt en cours" +msgstr "Nu aveÅ£i nici un împrumut în curs. " + +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:136 +msgid "Cet album n'a pas encore été emprunté" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:59 #: ../../library/ZendAfi/View/Helper/Article/RenderAbstract.php:60 @@ -4999,7 +5131,7 @@ msgstr "" #: ../../library/Class/Users.php:1063 ../../library/Class/Users.php:1063 #: ../../library/Class/Users.php:1072 ../../library/Class/Users.php:1051 -#: ../../library/Class/Users.php:1053 +#: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1057 msgid "Cet identifiant existe déjà ." msgstr "Acest nume de utilizator există deja." @@ -5008,6 +5140,7 @@ msgstr "Acest nume de utilizator există deja." #: ../../application/modules/opac/controllers/AuthController.php:501 #: ../../application/modules/opac/controllers/AuthController.php:535 #: ../../application/modules/opac/controllers/AuthController.php:542 +#: ../../application/modules/opac/controllers/AuthController.php:537 msgid "Cette fonctionnalité n'est pas activée." msgstr "" @@ -5047,9 +5180,26 @@ msgstr "Aceasta instrucÅ£iune nu are autor" #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:367 #: ../../application/modules/opac/controllers/NoticeajaxController.php:352 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:351 msgid "Cette notice n'a pas d'auteur." msgstr "Această instrucÅ£iune nu are autor" +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:60 +msgid "Cette recherche ne vous appartient pas." +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:182 +msgid "Cette ressource ne prend pas en charge la connexion SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:119 +msgid "Cette ressource ne prend pas en charge la gestion des droits" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:262 +msgid "Cette ressource ne prend pas en charge le moissonnage" +msgstr "" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:5 msgid "Cette réservation convient-elle ?" @@ -5161,6 +5311,7 @@ msgstr "Câmpuri disponibile" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:163 #: ../../library/ZendAfi/View/Helper/Admin/CustomFieldsValuesUrl.php:43 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:159 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:156 #, fuzzy msgid "Champs personnalisés" msgstr "Câmpuri selectate" @@ -5240,6 +5391,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/feature/index.phtml:84 #: ../../library/ZendAfi/View/Helper/Redmine/Issues.php:33 #: ../../application/modules/admin/views/scripts/feature/index.phtml:86 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:102 #, fuzzy msgid "Chercher" msgstr "Căutare" @@ -5294,6 +5446,7 @@ msgid "Choisissez les dossiers à afficher" msgstr "Modificare titlu coÅŸ" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:83 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:87 #, fuzzy msgid "Choisissez un fichier" msgstr "Adaugă o categorie" @@ -5359,6 +5512,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:17 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 #: ../../application/modules/admin/views/scripts/index/adminvar.phtml:8 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:84 msgid "Clef" msgstr "Cheie" @@ -5547,6 +5701,7 @@ msgstr "Cod poÅŸtal" #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:82 #: ../../application/modules/admin/views/scripts/index/index.phtml:71 +#: ../../application/modules/admin/views/scripts/index/index.phtml:65 #, fuzzy msgid "Code source" msgstr "sursă" @@ -5607,6 +5762,7 @@ msgstr "ColecÅ£ie" #: ../../library/ZendAfi/Form/Album.php:312 #: ../../library/ZendAfi/Form/Album.php:313 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:82 #, fuzzy msgid "Commandes" msgstr "Comentarii :" @@ -5702,6 +5858,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1214 #: ../../application/modules/opac/controllers/AbonneController.php:1207 #: ../../application/modules/opac/controllers/AbonneController.php:1209 +#: ../../application/modules/opac/controllers/AbonneController.php:1224 #, fuzzy msgid "Compléter votre adresse email" msgstr "Adresa dvs. de e-mail :" @@ -5731,7 +5888,7 @@ msgid "Compresser l'image \"%s\" en gardant les mêmes dimensions." msgstr "" #: ../../library/Class/AdminVar.php:410 ../../library/Class/AdminVar.php:412 -#: ../../library/Class/AdminVar.php:409 +#: ../../library/Class/AdminVar.php:409 ../../library/Class/AdminVar.php:414 msgid "" "Compression d'image utilisée dans le redimensionnement et la compression des " "images." @@ -5756,6 +5913,11 @@ msgstr "" msgid "Compte d'assistance: %s" msgstr "Număr de diviziuni" +#: ../../library/Class/Feature/List.php:179 +#, fuzzy +msgid "Compte lecteur" +msgstr "Conectare " + #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 #: ../../library/ZendAfi/Form/Admin/SessionActivity.php:121 msgid "Compte-rendu" @@ -5825,6 +5987,7 @@ msgid "Configuration de la page: %s" msgstr "Configurare" #: ../../application/modules/opac/controllers/RechercheController.php:153 +#: ../../application/modules/opac/controllers/RechercheController.php:157 #, fuzzy msgid "Configuration de la recherche" msgstr "Rezultatul căutarii" @@ -5933,6 +6096,7 @@ msgstr "CondiÅ£ii de înscriere" #: ../../application/modules/opac/controllers/AuthController.php:465 #: ../../application/modules/opac/controllers/AuthController.php:499 #: ../../application/modules/opac/controllers/AuthController.php:506 +#: ../../application/modules/opac/controllers/AuthController.php:501 #, fuzzy msgid "Confirmation d'inscription à la newsletter: " msgstr "CondiÅ£ii de înscriere" @@ -6079,6 +6243,7 @@ msgstr "Constituire a planului de acces" #: ../../application/modules/opac/views/scripts/rechercheoai/viewnotice.phtml:12 #: ../../application/modules/opac/controllers/BibNumeriqueController.php:316 #: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/Class/CriteresRecherche.php:147 msgid "Consultation" msgstr "Consultare" @@ -6089,6 +6254,7 @@ msgid "Consultation dans l'OPAC" msgstr "Consultare" #: ../../library/Class/Feature/List.php:174 +#: ../../library/Class/Feature/List.php:175 msgid "Consultation de l'historique des prêts depuis le compte lecteur Bokeh" msgstr "" @@ -6099,6 +6265,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:407 #: ../../library/ZendAfi/View/Helper/Notice/ConsultationLink.php:29 #: ../../application/modules/opac/controllers/RechercheController.php:539 +#: ../../application/modules/opac/controllers/RechercheController.php:542 #, fuzzy msgid "Consultation sur place" msgstr "Consultare" @@ -6172,7 +6339,7 @@ msgid "Contenu de l'avis modifié" msgstr "" #: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:266 -#: ../../library/Class/AdminVar.php:263 +#: ../../library/Class/AdminVar.php:263 ../../library/Class/AdminVar.php:265 msgid "" "Contenu de l'email de notification d'article en attente de validation. " "Termes substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, " @@ -6180,26 +6347,28 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:266 ../../library/Class/AdminVar.php:267 -#: ../../library/Class/AdminVar.php:264 +#: ../../library/Class/AdminVar.php:264 ../../library/Class/AdminVar.php:266 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" msgstr "" #: ../../library/Class/AdminVar.php:267 ../../library/Class/AdminVar.php:268 -#: ../../library/Class/AdminVar.php:265 +#: ../../library/Class/AdminVar.php:265 ../../library/Class/AdminVar.php:267 msgid "" "Contenu de l'email de notification de validation d'un article. Termes " "substitués: TITRE_ARTICLE, URL_ARTICLE, AUTHOR_ARTICLE, SAVED_BY_ARTICLE" msgstr "" #: ../../library/Class/AdminVar.php:384 ../../library/Class/AdminVar.php:381 +#: ../../library/Class/AdminVar.php:386 msgid "" "Contenu de la balise \"adminEmail\" dans la réponse au verb Identify, si " "vide sera tiré de la variable cosmogramme \"mail_admin\"" msgstr "" #: ../../library/Class/AdminVar.php:383 ../../library/Class/AdminVar.php:380 +#: ../../library/Class/AdminVar.php:385 msgid "" "Contenu de la balise \"repositoryName\" dans la réponse au verb Identify, si " "vide sera [NOM DU SERVEUR] Oai repository" @@ -6274,6 +6443,7 @@ msgid "Coordonnées carte" msgstr "Coordonate hartă" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:183 +#: ../../application/modules/admin/controllers/FileManagerController.php:115 #, php-format msgid "Copie de \"%s\" dans \"%s\" effectué." msgstr "" @@ -6329,6 +6499,7 @@ msgstr "Link internet" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:114 #: ../../library/ZendAfi/Form/Album.php:157 #: ../../library/ZendAfi/Form/Album.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:105 msgid "Cote" msgstr "Cota" @@ -6369,6 +6540,7 @@ msgstr "până la" #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:464 #: ../../application/modules/opac/controllers/RechercheController.php:479 +#: ../../application/modules/opac/controllers/RechercheController.php:482 #, php-format msgid "Cote : %s" msgstr "Cota : %s" @@ -6489,6 +6661,7 @@ msgstr "Critici redactate de %s" #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 #: ../../application/modules/admin/views/scripts/stat/rechercheinfructueuse.phtml:10 #: ../../library/ZendAfi/Form/Configuration/Domain.php:186 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:10 #, fuzzy msgid "Critères" msgstr "Critică" @@ -6560,6 +6733,7 @@ msgstr "coÅŸ nou" #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:279 #: ../../application/modules/opac/controllers/NoticeajaxController.php:264 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:263 #, fuzzy msgid "Créer un album" msgstr "coÅŸ nou" @@ -6571,6 +6745,7 @@ msgid "Créer un lieu" msgstr "coÅŸ nou" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:215 +#: ../../application/modules/admin/controllers/FileManagerController.php:152 #, fuzzy, php-format msgid "Créer un nouveau dossier dans \"%s\"" msgstr "coÅŸ nou" @@ -6620,6 +6795,7 @@ msgstr "Crearea unui buletin informativ" #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:21 #: ../../library/ZendAfi/View/Helper/Redmine/IssueJournal.php:47 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:23 msgid "Créé le" msgstr "" @@ -6744,6 +6920,8 @@ msgstr "Căsuţă de căutare" #: ../../library/Class/SuggestionAchat.php:178 #: ../../library/ZendAfi/Form/Album.php:174 #: ../../library/ZendAfi/Form/Album.php:175 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:11 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:62 #, fuzzy msgid "Date de création" msgstr "Căsuţă de căutare" @@ -6792,11 +6970,13 @@ msgstr "Solicitarea dvs. de înscriere " #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 #: ../../library/ZendAfi/Controller/Action/Helper/ArticleListViewMode.php:393 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:63 #, fuzzy msgid "Date de mise à jour" msgstr "ÃŽncărcare in curs" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:44 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:46 #, fuzzy msgid "Date de modification :" msgstr "Criterii de indexare" @@ -6816,9 +6996,15 @@ msgstr "Căsuţă de căutare" #: ../../application/modules/admin/views/scripts/feature/index.phtml:13 #: ../../library/Class/CriteresRecherche.php:144 #: ../../library/ZendAfi/Form/Cosmo/DataProfile.php:287 +#: ../../library/Class/CriteresRecherche.php:146 msgid "Date de nouveauté" msgstr "Dată noutăţi" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:56 +#, fuzzy +msgid "Date de prêt" +msgstr "Căsuţă de căutare" + #: ../../library/Class/WebService/SIGB/Suggestion.php:69 #: ../../library/Class/WebService/SIGB/Suggestion.php:69 #, fuzzy @@ -6837,6 +7023,11 @@ msgstr "An de publicare" msgid "Date de retour" msgstr "Căsuţă de căutare" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:57 +#, fuzzy +msgid "Date de retour prévue" +msgstr "Căsuţă de căutare" + #: ../../library/Class/WebService/SIGB/Suggestion.php:71 #: ../../library/Class/WebService/SIGB/Suggestion.php:71 #, fuzzy @@ -6844,7 +7035,7 @@ msgid "Date de suggestion" msgstr "Căsuţă de căutare" #: ../../library/Class/AdminVar.php:373 ../../library/Class/AdminVar.php:374 -#: ../../library/Class/AdminVar.php:371 +#: ../../library/Class/AdminVar.php:371 ../../library/Class/AdminVar.php:376 msgid "Date du dernier import total des abonnés (modifié par cosmogramme)" msgstr "" @@ -6884,6 +7075,7 @@ msgstr "Solicitarea dvs. de înscriere " #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:121 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:112 #, fuzzy msgid "Date nouveaté" msgstr "Dată noutăţi" @@ -6925,6 +7117,7 @@ msgstr "Rezervarea dvs. a fost înregistrată." #: ../../application/modules/opac/controllers/AuthController.php:403 #: ../../application/modules/opac/controllers/AuthController.php:437 #: ../../application/modules/opac/controllers/AuthController.php:444 +#: ../../application/modules/opac/controllers/AuthController.php:439 #, fuzzy msgid "Demande d'inscription à la lettre d'information: " msgstr "la buletinul informativ" @@ -6934,6 +7127,7 @@ msgstr "la buletinul informativ" #: ../../application/modules/opac/controllers/AuthController.php:497 #: ../../application/modules/opac/controllers/AuthController.php:531 #: ../../application/modules/opac/controllers/AuthController.php:538 +#: ../../application/modules/opac/controllers/AuthController.php:533 #, fuzzy msgid "Demande de préinscription" msgstr "Cereri de înscriere" @@ -6976,6 +7170,7 @@ msgstr "Cerere de rezervare a unui document din reÅ£ea:" #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:454 #: ../../application/modules/opac/controllers/RechercheController.php:469 +#: ../../application/modules/opac/controllers/RechercheController.php:472 msgid "Demande de réservation de document" msgstr "Cerere de rezervare a unui document" @@ -7096,6 +7291,7 @@ msgstr "Criterii de indexare" #: ../../application/modules/admin/views/scripts/batch/index.phtml:18 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 #: ../../application/modules/admin/views/scripts/batch/index.phtml:9 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:290 #, fuzzy msgid "Dernière exécution" msgstr "Criterii de indexare" @@ -7238,6 +7434,14 @@ msgstr "Validare selecÅ£ie" msgid "Dewey / pcdm4" msgstr "Dewey / pcdm4" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:179 +msgid "Diagnostic SSO" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:259 +msgid "Diagnostic moissonnage" +msgstr "" + #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:86 #: ../../library/Class/Systeme/ModulesAccueil/Kiosque.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ImageViewersOptions.php:41 @@ -7255,6 +7459,11 @@ msgstr "" msgid "Diaporama avec navigation" msgstr "AfiÅŸează bara de navigaÅ£ie" +#: ../../application/modules/opac/controllers/RechercheController.php:804 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:50 +msgid "Dilicom" +msgstr "" + #: ../../library/Class/Ouverture.php:57 ../../library/Class/Ouverture.php:57 msgid "Dimanche" msgstr "" @@ -7266,11 +7475,13 @@ msgstr "Versiune" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:302 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 +#: ../../application/modules/admin/controllers/FileManagerController.php:244 #, php-format msgid "Dimensions \"%s\" invalident. Les dimensions valident sont : %s ." msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:41 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:43 #, fuzzy msgid "Dimensions :" msgstr "Versiune" @@ -7302,6 +7513,7 @@ msgstr "Discografie completă aparÅ£inând lui" #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:86 #: ../../application/modules/admin/views/scripts/index/index.phtml:75 +#: ../../application/modules/admin/views/scripts/index/index.phtml:69 msgid "Discutez avec les contributeurs de Bokeh en direct" msgstr "" @@ -7323,6 +7535,7 @@ msgstr "Disponibilitate" #: ../../library/Class/WebService/SIGB/Koha/SuggestionsReader.php:60 #: ../../library/Class/Exemplaire.php:269 #: ../../library/Class/Exemplaire.php:274 +#: ../../library/Class/Exemplaire.php:290 #, fuzzy msgid "Disponible" msgstr "Disponibilitate" @@ -7567,6 +7780,7 @@ msgstr "ExprimaÅ£i-vă sau modificaÅ£i-vă părerea" #: ../../application/modules/admin/views/scripts/index/index.phtml:57 #: ../../application/modules/opac/controllers/RssController.php:219 #: ../../application/modules/admin/views/scripts/index/index.phtml:46 +#: ../../application/modules/admin/views/scripts/index/index.phtml:40 msgid "Données en attente de modération" msgstr "Date în aÅŸteptarea moderării" @@ -7576,6 +7790,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:227 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:232 +#: ../../application/modules/admin/controllers/FileManagerController.php:169 #, php-format msgid "Dossier \"%s\" créé." msgstr "" @@ -7585,6 +7800,7 @@ msgid "Doublons" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:47 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:49 msgid "Droit d'écriture :" msgstr "" @@ -7807,10 +8023,12 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:32 #: ../../application/modules/admin/views/scripts/index/index.phtml:21 +#: ../../application/modules/admin/views/scripts/index/index.phtml:15 msgid "Démonstrations vidéos" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:162 +#: ../../application/modules/admin/controllers/FileManagerController.php:94 #, php-format msgid "Déplacement de \"%s\" dans \"%s\" effectué." msgstr "" @@ -7854,6 +8072,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:45 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:297 msgid "Désactiver la tâche" msgstr "" @@ -7864,18 +8083,20 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 #: ../../library/ZendAfi/View/Helper/Admin/AdminVar.php:42 +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:59 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:47 msgid "Désactivé" msgstr "" #: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:359 -#: ../../library/Class/AdminVar.php:356 +#: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:361 msgid "" "Désactivé: les lecteurs peuvent donner leur avis. <br /> Activé: seuls les " "bibliothécaires peuvent donner leur avis" msgstr "" #: ../../library/Class/AdminVar.php:359 ../../library/Class/AdminVar.php:360 -#: ../../library/Class/AdminVar.php:357 +#: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:362 msgid "" "Désactivé: ne requiert pas d'identification pour saisir des commentaires. " "<br /> Activé: requiert l'identification pour saisir des commentaires." @@ -7902,6 +8123,7 @@ msgstr "la buletinul informativ" #: ../../application/modules/opac/controllers/AuthController.php:442 #: ../../application/modules/opac/controllers/AuthController.php:476 #: ../../application/modules/opac/controllers/AuthController.php:483 +#: ../../application/modules/opac/controllers/AuthController.php:478 #, fuzzy msgid "Désinscription de la lettre d'information: " msgstr "la buletinul informativ" @@ -8076,6 +8298,7 @@ msgstr "Modificarea fiÅŸei dvs." #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:227 #: ../../application/modules/admin/controllers/WidgetController.php:257 +#: ../../application/modules/admin/controllers/WidgetController.php:247 #, php-format msgid "Echec de la sauvegarde de la configuration de %s" msgstr "" @@ -8120,6 +8343,7 @@ msgstr "Editor :" #: ../../application/modules/opac/controllers/RechercheController.php:463 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:159 #: ../../application/modules/opac/controllers/RechercheController.php:478 +#: ../../application/modules/opac/controllers/RechercheController.php:481 #, php-format msgid "Editeur : %s" msgstr "Editor : %s" @@ -8239,10 +8463,12 @@ msgstr "E-mailul administratorului" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:469 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:118 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:109 msgid "Emplacement" msgstr "Amplasare" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:35 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:37 #, fuzzy msgid "Emplacement :" msgstr "Amplasare" @@ -8364,6 +8590,7 @@ msgstr "" #: ../../library/Class/User/CardsNotification.php:59 #: ../../library/Class/User/CardsNotification.php:59 +#: ../../library/Class/Feature.php:171 msgid "En savoir plus" msgstr "" @@ -8372,6 +8599,12 @@ msgstr "" msgid "Encodage des caractères" msgstr "" +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:35 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:36 +#, fuzzy +msgid "Enregister la recherche dans mes favoris" +msgstr "ExtindeÅ£i căutarea la toate cuvintele" + #: ../../application/modules/opac/controllers/AbonneController.php:419 #: ../../application/modules/opac/controllers/AbonneController.php:427 #: ../../application/modules/opac/controllers/AbonneController.php:435 @@ -8388,15 +8621,27 @@ msgstr "ÃŽnregistrare" msgid "Enregistrer comme filtres par défaut" msgstr "" +#: ../../library/ZendAfi/View/Helper/Search/Header.php:149 +#, fuzzy +msgid "Enregistrer ma recherche" +msgstr "Lansare căutare" + +#: ../../library/ZendAfi/View/Helper/Search/Header.php:150 +#, fuzzy +msgid "Enregistrer ma recherche dans mes favoris" +msgstr "ExtindeÅ£i căutarea la toate cuvintele" + #: ../../library/ZendAfi/View/Helper/Button/Submit.php:38 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:45 #: ../../library/ZendAfi/View/Helper/Button/Submit.php:46 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:41 #, fuzzy msgid "Enregistrer mes modifications" msgstr "Criterii de indexare" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:42 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:37 #, fuzzy msgid "Enregistrer mes modifications et poursuivre mes modifications" msgstr "Criterii de indexare" @@ -8414,6 +8659,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:86 msgid "Entrepôts OAI" msgstr "" @@ -8575,6 +8821,7 @@ msgstr "TrimiteÅ£i prin email" #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 #: ../../library/ZendAfi/View/Helper/Search/Header.php:135 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:137 msgid "Envoyer une demande d'achat de document" msgstr "" @@ -8626,6 +8873,7 @@ msgstr "Eroare" #: ../../application/modules/admin/controllers/IndexController.php:146 #: ../../application/modules/admin/controllers/IndexController.php:156 #: ../../application/modules/admin/controllers/IndexController.php:156 +#: ../../application/modules/admin/controllers/IndexController.php:164 msgid "Erreur : La demande de mise à jour n'a pas pu être envoyée au serveur" msgstr "" @@ -8725,6 +8973,7 @@ msgstr "Editor : %s" #: ../../application/modules/opac/controllers/AuthController.php:475 #: ../../application/modules/opac/controllers/AuthController.php:509 #: ../../application/modules/opac/controllers/AuthController.php:516 +#: ../../application/modules/opac/controllers/AuthController.php:511 msgid "Erreur lors de l\\inscription à la newsletter." msgstr "" @@ -8757,42 +9006,49 @@ msgstr "Eroare" #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:111 #: ../../application/modules/admin/controllers/IndexController.php:111 +#: ../../application/modules/admin/controllers/IndexController.php:119 #, php-format msgid "Erreur(s) : %s, variable %s NON sauvegardée" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:393 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:402 +#: ../../application/modules/admin/controllers/FileManagerController.php:339 #, fuzzy, php-format msgid "Erreur. Impossible de faire cette opération vers \"%s\"." msgstr "Imposibil de găsit această adresă" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:347 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:356 +#: ../../application/modules/admin/controllers/FileManagerController.php:293 #, php-format msgid "Erreur. Impossible de renommer \"%s\"." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:319 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:324 +#: ../../application/modules/admin/controllers/FileManagerController.php:261 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été compressée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:307 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:312 +#: ../../application/modules/admin/controllers/FileManagerController.php:249 #, php-format msgid "Erreur. L'image \"%s\" n'a pas été redimensionnée." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:388 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:397 +#: ../../application/modules/admin/controllers/FileManagerController.php:334 #, php-format msgid "Erreur. Le chemin \"%s\" n'existe pas." msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:405 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:414 +#: ../../application/modules/admin/controllers/FileManagerController.php:351 #, php-format msgid "" "Erreur. Vous ne pouvez pas téléverser un nouveau fichier car vous avez " @@ -8843,6 +9099,11 @@ msgstr "Temă" msgid "Essayer" msgstr "" +#: ../../application/modules/admin/views/scripts/feature/index.phtml:80 +#, php-format +msgid "Essayer \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 #: ../../library/ZendAfi/Feed/SearchResultHeader.php:49 msgid "Et " @@ -8864,6 +9125,7 @@ msgstr "An de publicare" #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:53 #: ../../application/modules/admin/views/scripts/index/index.phtml:42 +#: ../../application/modules/admin/views/scripts/index/index.phtml:36 #, fuzzy msgid "Etat du site" msgstr "Export de coÅŸ" @@ -8876,7 +9138,7 @@ msgid "Etat du système" msgstr "Export de coÅŸ" #: ../../library/Class/AdminVar.php:241 ../../library/Class/AdminVar.php:242 -#: ../../library/Class/AdminVar.php:239 +#: ../../library/Class/AdminVar.php:239 ../../library/Class/AdminVar.php:241 msgid "" "Etendre automatiquement le résultat de recherche en rajoutant des \"OU\" " "entre les mots saisis" @@ -8894,6 +9156,7 @@ msgstr "SunteÅ£i sigur(ă) că vreÅ£i să ÅŸtergeÅ£i această rezervare?" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:52 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:305 #, fuzzy msgid "Etes-vous sur de vouloir désactiver cette tâche ?" msgstr "SunteÅ£i sigur(ă) că vreÅ£i să suprimaÅ£i acest strat?" @@ -8942,6 +9205,7 @@ msgid "Etes-vous sûr de vouloir supprimer cette notice du panier ?" msgstr "SunteÅ£i sigur(ă) că vreÅ£i să suprimaÅ£i această instrucÅ£iune a coÅŸului?" #: ../../library/Class/Feature/List.php:130 +#: ../../library/Class/Feature/List.php:131 #, fuzzy msgid "Evolution de la boite sitothèque" msgstr "Localizare a bibliotecii: %s" @@ -8980,6 +9244,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:69 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:230 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:81 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:73 msgid "Exemplaires" msgstr "Exemplare" @@ -9002,6 +9267,7 @@ msgstr "" #: ../../library/Class/Feature/List.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:158 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 #, fuzzy msgid "Explorateur de fichiers" msgstr "Export de coÅŸ" @@ -9033,6 +9299,7 @@ msgid "Export de panier" msgstr "Export de coÅŸ" #: ../../library/Class/Feature/List.php:119 +#: ../../library/Class/Feature/List.php:120 msgid "Export des agendas au format iCalendar" msgstr "" @@ -9087,12 +9354,14 @@ msgid "Exporter le tableau en CSV" msgstr "Exportă acest coÅŸ" #: ../../library/Class/Feature/List.php:120 +#: ../../library/Class/Feature/List.php:121 msgid "" "Exportez vos agendas pour les intégrer dans un logiciel de calendrier ou un " "autre système d'information." msgstr "" #: ../../library/Class/Feature/List.php:123 +#: ../../library/Class/Feature/List.php:124 #, fuzzy msgid "Exports" msgstr "Exportă acest coÅŸ" @@ -9139,6 +9408,7 @@ msgid "Expéditeur:" msgstr "Editor" #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:32 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:34 #, fuzzy msgid "Extension :" msgstr "Versiune" @@ -9236,7 +9506,7 @@ msgid "Facilite l'indexation de votre site dans les moteurs de recherche" msgstr "Facilitează indexarea site-ului dvs. în motoarele de căutare" #: ../../library/Class/AdminVar.php:413 ../../library/Class/AdminVar.php:415 -#: ../../library/Class/AdminVar.php:412 +#: ../../library/Class/AdminVar.php:412 ../../library/Class/AdminVar.php:417 msgid "" "Facteur d'échantillonnage utilisé dans le redimensionnement et la " "compression des images." @@ -9263,6 +9533,11 @@ msgstr "Dimensiune :" msgid "Famille du document" msgstr "Tip de document" +#: ../../application/modules/opac/controllers/AbonneController.php:1012 +#, fuzzy +msgid "Favoris sauvegardés" +msgstr "Nu a fost găsit nici un articol" + #: ../../library/ZendAfi/Form/Configuration/Items.php:56 #: ../../library/ZendAfi/Form/Configuration/Items.php:56 msgid "Favorites" @@ -9282,6 +9557,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:80 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:83 #: ../../library/ZendAfi/View/Helper/TagUploadMultiple.php:88 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Fermer" msgstr "ÃŽnchidere" @@ -9333,6 +9609,8 @@ msgstr "FiÅŸier" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:275 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:269 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:280 +#: ../../application/modules/admin/controllers/FileManagerController.php:206 +#: ../../application/modules/admin/controllers/FileManagerController.php:217 #, fuzzy, php-format msgid "Fichier \"%s\" téléversé." msgstr "Nu a fost găsit nici un articol" @@ -9605,6 +9883,7 @@ msgid "Fond de carte OpenStreetMap" msgstr "" #: ../../library/Class/Feature/List.php:141 +#: ../../library/Class/Feature/List.php:142 #, fuzzy msgid "Fond de carte personnalisable" msgstr "Modificare titlu coÅŸ" @@ -9622,7 +9901,7 @@ msgid "Fonds" msgstr "Fonduri" #: ../../library/Class/AdminVar.php:288 ../../library/Class/AdminVar.php:289 -#: ../../library/Class/AdminVar.php:286 +#: ../../library/Class/AdminVar.php:286 ../../library/Class/AdminVar.php:288 msgid "" "Forcer l'accès au site par le protocole HTTPS. Nécessite l'installation et " "la configuration appropriée du serveur Web" @@ -9663,6 +9942,7 @@ msgstr "Căsuţă de căutare" #: ../../library/ZendAfi/Form/Login.php:49 #: ../../library/ZendAfi/Form/Login.php:49 +#: ../../library/ZendAfi/Form/Login.php:58 #, fuzzy msgid "Formulaire d'authentification" msgstr "Identificare" @@ -9747,6 +10027,7 @@ msgstr "Strat" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:116 #: ../../library/Class/TableDescription/PNBItemsExport.php:40 #: ../../library/Class/TableDescription/PNBLoans.php:35 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:107 msgid "Genre" msgstr "Gen" @@ -9773,6 +10054,11 @@ msgstr "Gen" msgid "Genres" msgstr "Genuri" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:111 +#, fuzzy +msgid "Gestion des droits" +msgstr "Gestionare biblioteci" + #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/ExternalAgenda.php:30 #, fuzzy @@ -9836,6 +10122,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:80 #: ../../application/modules/admin/views/scripts/index/index.phtml:69 +#: ../../application/modules/admin/views/scripts/index/index.phtml:63 msgid "Google group Bokeh" msgstr "" @@ -9857,6 +10144,10 @@ msgstr "" msgid "Groupe \"%s\" supprimé" msgstr "Rezervări în curs" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:210 +msgid "Groupe créé pour ce test" +msgstr "" + #: ../../library/Class/CustomField/ModelConfiguration/UserGroup.php:26 #: ../../library/Class/CustomFieldsCategory.php:73 #: ../../library/Class/CustomFieldsCategory.php:73 @@ -9867,6 +10158,7 @@ msgstr "Utilizatori" #: ../../library/Class/Newsletter.php:500 #: ../../library/Class/Newsletter.php:500 +#: ../../library/Class/Newsletter.php:452 #, php-format msgid "Groupe manuel pour la lettre \"%s\"" msgstr "" @@ -9882,9 +10174,15 @@ msgstr "Modificare bibliotecă: %s" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 #: ../../library/ZendAfi/Form/Admin/User.php:136 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:125 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 msgid "Groupes" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:221 +#, fuzzy, php-format +msgid "Groupes : %s" +msgstr "Sursă :" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:116 #: ../../library/ZendAfi/Controller/Plugin/Manager/Newsletter.php:97 @@ -9893,6 +10191,11 @@ msgstr "" msgid "Groupes destinataires" msgstr "Comentariu" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:148 +#, fuzzy +msgid "Groupes qui ont accès à la ressource" +msgstr "Gestionare a resurselor" + #: ../../library/ZendAfi/Form/Configuration/BibNumerique.php:40 msgid "Général" msgstr "" @@ -9912,6 +10215,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 #: ../../application/modules/admin/controllers/SystemeController.php:140 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:154 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 #, fuzzy msgid "Génération du site" msgstr "SelecÅ£ie de site-uri" @@ -9977,6 +10281,11 @@ msgstr "Gestionare media" msgid "Gérer les fichiers dont vous avez besoin pour enrichir vos contenus" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:142 +#, fuzzy +msgid "Gérer les groupes" +msgstr "Gestionare a resurselor" + #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:29 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:28 @@ -10011,6 +10320,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 #: ../../application/modules/opac/controllers/AbonneController.php:1013 #: ../../application/modules/opac/controllers/AbonneController.php:1015 +#: ../../application/modules/opac/controllers/AbonneController.php:1016 #, fuzzy msgid "Gérer mes favoris" msgstr "Gestionare media" @@ -10134,12 +10444,18 @@ msgstr "Critici redactate de %s" msgid "Historique de prêts" msgstr "Critici redactate de %s" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:88 +#, fuzzy +msgid "Historique des 5 derniers prêts" +msgstr "Critici redactate de %s" + #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:125 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:129 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:48 #: ../../library/ZendAfi/View/Helper/FonctionsAdmin.php:130 #: ../../library/ZendAfi/View/Helper/TagEditArticle.php:74 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:43 #, fuzzy msgid "Historique des modifications" msgstr "Criterii de indexare" @@ -10244,12 +10560,14 @@ msgstr "" #: ../../library/Class/AdminVar.php:387 ../../library/Class/AdminVar.php:388 #: ../../library/Class/AdminVar.php:390 ../../library/Class/AdminVar.php:387 +#: ../../library/Class/AdminVar.php:392 msgid "Id du connecteur Le Social" msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:108 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:120 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:111 msgid "Id origine" msgstr "" @@ -10309,6 +10627,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Admin/User.php:66 #: ../../library/ZendAfi/View/Helper/Admin/SearchUsers.php:94 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:8 +#: ../../library/ZendAfi/Form/Login.php:137 msgid "Identifiant" msgstr "Nume de utilizator" @@ -10338,20 +10657,32 @@ msgid "Identifiant du portail chez 1D touch" msgstr "" #: ../../library/Class/AdminVar.php:233 ../../library/Class/AdminVar.php:234 -#: ../../library/Class/AdminVar.php:231 +#: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:233 #, fuzzy msgid "Identifiant du project Redmine" msgstr "Numele de utilizator sau parola incorecte " +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:51 +#, fuzzy +msgid "Identifiant du prêt interne Bokeh" +msgstr "Numele de utilizator sau parola incorecte " + #: ../../application/modules/opac/controllers/AbonneController.php:1133 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1132 #: ../../application/modules/opac/controllers/AbonneController.php:1125 #: ../../application/modules/opac/controllers/AbonneController.php:1127 +#: ../../application/modules/opac/controllers/AbonneController.php:1142 #, fuzzy msgid "Identifiant et/ou mot de passe incorrect" msgstr "Numele de utilizator sau parola incorecte " +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:64 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:54 +#, fuzzy +msgid "Identifiant externe Dilicom" +msgstr "Identificare" + #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:58 #: ../../application/modules/opac/controllers/AuthController.php:62 @@ -10360,6 +10691,11 @@ msgstr "Numele de utilizator sau parola incorecte " msgid "Identifiant inconnu." msgstr "Identificare" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:60 +#, fuzzy +msgid "Identifiant interne Bokeh" +msgstr "Identificare" + #: ../../library/Class/IntProfilDonnees.php:170 #: ../../library/Class/IntProfilDonnees.php:170 #, fuzzy @@ -10455,19 +10791,19 @@ msgid "Il faut compléter tous les champs." msgstr "Trebuie completate toate câmpurile" #: ../../library/Class/Profil.php:1356 ../../library/Class/Profil.php:1357 -#: ../../library/Class/Profil.php:1377 +#: ../../library/Class/Profil.php:1377 ../../library/Class/Profil.php:1378 #, fuzzy msgid "Il manque la largeur de la division 1." msgstr "Căsuţă setări iniÅ£iale pentru diviziune" #: ../../library/Class/Profil.php:1360 ../../library/Class/Profil.php:1361 -#: ../../library/Class/Profil.php:1381 +#: ../../library/Class/Profil.php:1381 ../../library/Class/Profil.php:1382 #, fuzzy msgid "Il manque la largeur de la division 2." msgstr "Căsuţă setări iniÅ£iale pentru diviziune" #: ../../library/Class/Profil.php:1364 ../../library/Class/Profil.php:1365 -#: ../../library/Class/Profil.php:1385 +#: ../../library/Class/Profil.php:1385 ../../library/Class/Profil.php:1386 #, fuzzy msgid "Il manque la largeur de la division 3." msgstr "Căsuţă setări iniÅ£iale pentru diviziune" @@ -10495,8 +10831,7 @@ msgstr "Nu mai există sub-nivel" msgid "Il n'y a plus de sous-niveau" msgstr "Nu mai există sub-nivel" -#: ../../library/Class/NoticeOAI.php:230 -#: ../../library/Class/NoticeOAI.php:230 +#: ../../library/Class/NoticeOAI.php:230 ../../library/Class/NoticeOAI.php:230 msgid "Il n'y aucun mot assez significatif pour la recherche" msgstr "Nu există nici un cuvânt destul de semnifivativ pentru căutare" @@ -10573,12 +10908,14 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:173 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:175 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 msgid "Import Thesaurus" msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:152 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:151 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 msgid "Import avis opac2" msgstr "" @@ -10603,6 +10940,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:89 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:87 msgid "Import/Export EAD" msgstr "" @@ -10663,12 +11001,14 @@ msgid "Impossible d\\`écrire le fichier sur le disque" msgstr "Imposibil de citit fluxul rss" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:184 +#: ../../application/modules/admin/controllers/FileManagerController.php:116 #, fuzzy, php-format msgid "Impossible de copier \"%s\" dans \"%s\"." msgstr "Imposibil de găsit această adresă" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:228 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:233 +#: ../../application/modules/admin/controllers/FileManagerController.php:170 #, fuzzy, php-format msgid "Impossible de créer le dossier \"%s\"." msgstr "Imposibil de citit fluxul rss" @@ -10680,6 +11020,7 @@ msgid "Impossible de créer le répertoire local %s" msgstr "Imposibil de citit fluxul rss" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:163 +#: ../../application/modules/admin/controllers/FileManagerController.php:95 #, fuzzy, php-format msgid "Impossible de déplacer \"%s\" dans \"%s\"." msgstr "Imposibil de citit fluxul rss" @@ -10705,6 +11046,7 @@ msgid "Impossible de se connecter au serveur %s" msgstr "Imposibil de găsit această adresă" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:207 +#: ../../application/modules/admin/controllers/FileManagerController.php:140 #, fuzzy, php-format msgid "Impossible de supprimer \"%s\"." msgstr "Imposibil de găsit această adresă" @@ -10738,6 +11080,7 @@ msgstr "Imposibil de citit fluxul rss" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:262 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:267 +#: ../../application/modules/admin/controllers/FileManagerController.php:204 #, fuzzy, php-format msgid "Impossible de téléverser le fichier \"%s\"." msgstr "Imposibil de citit fluxul rss" @@ -10772,6 +11115,7 @@ msgstr "Åžtergere" #: ../../library/ZendAfi/Form/Decorator/VersionCompare/Header.php:42 #: ../../library/ZendAfi/View/Helper/Avis.php:106 #: ../../library/ZendAfi/View/Helper/Admin/Versions.php:55 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:72 #, fuzzy msgid "Inconnu" msgstr "Nici un conÅ£inut" @@ -10786,6 +11130,10 @@ msgstr "Nici un conÅ£inut" msgid "Inconnu ou Supprimé" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:52 +msgid "Indetifiant de l'utilisateur interne Bokeh" +msgstr "" + #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 #: ../../application/modules/admin/controllers/PremierChapitreController.php:58 #, fuzzy @@ -10997,6 +11345,7 @@ msgstr "InformaÅ£ie" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../application/modules/admin/controllers/SystemeController.php:269 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 #, fuzzy msgid "Informations système" msgstr "InformaÅ£ie" @@ -11057,6 +11406,7 @@ msgstr "ÃŽnscriere" #: ../../application/modules/opac/controllers/AuthController.php:386 #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:427 +#: ../../application/modules/opac/controllers/AuthController.php:422 #, fuzzy msgid "Inscription à la lettre d'information: " msgstr "la buletinul informativ" @@ -11066,6 +11416,7 @@ msgstr "la buletinul informativ" #: ../../application/modules/opac/controllers/AuthController.php:468 #: ../../application/modules/opac/controllers/AuthController.php:502 #: ../../application/modules/opac/controllers/AuthController.php:509 +#: ../../application/modules/opac/controllers/AuthController.php:504 msgid "Inscription à la newsletter invalide." msgstr "" @@ -11088,6 +11439,7 @@ msgid "Inscrit à la lettre" msgstr "la buletinul informativ" #: ../../library/Class/Feature/List.php:185 +#: ../../library/Class/Feature/List.php:186 #, fuzzy msgid "Insérer un kiosque dans un article" msgstr "Adaugă instrucÅ£iunea în coÅŸ" @@ -11178,6 +11530,7 @@ msgstr "Invizibil" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:234 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:236 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:238 msgid "Invité" msgstr "" @@ -11204,6 +11557,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:84 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:81 msgid "Jamendo" msgstr "" @@ -11231,12 +11585,12 @@ msgid "Javascript" msgstr "Obiecte java-script" #: ../../library/Class/AdminVar.php:366 ../../library/Class/AdminVar.php:367 -#: ../../library/Class/AdminVar.php:364 +#: ../../library/Class/AdminVar.php:364 ../../library/Class/AdminVar.php:369 msgid "Javascript code for statistics" msgstr "" #: ../../library/Class/AdminVar.php:281 ../../library/Class/AdminVar.php:282 -#: ../../library/Class/AdminVar.php:279 +#: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:281 #, fuzzy msgid "Je ne veux plus recevoir cette lettre d'information" msgstr "Crearea unui buletin informativ" @@ -11254,11 +11608,13 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:337 #: ../../application/modules/opac/controllers/AuthController.php:344 +#: ../../application/modules/opac/controllers/AuthController.php:339 msgid "Jeton de réinitialisation expiré" msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:334 #: ../../application/modules/opac/controllers/AuthController.php:341 +#: ../../application/modules/opac/controllers/AuthController.php:336 #, fuzzy msgid "Jeton de réinitialisation invalide" msgstr "Codul anti-spam este invalid." @@ -11267,6 +11623,10 @@ msgstr "Codul anti-spam este invalid." msgid "Jeudi" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:7 +msgid "Jeudi 15 mars" +msgstr "" + #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-view.phtml:5 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-confirm.phtml:8 #: ../../application/modules/opac/views/scripts/abonne/multimedia-hold-device.phtml:9 @@ -11289,6 +11649,10 @@ msgstr "" msgid "Jour" msgstr "" +#: ../../application/modules/admin/views/scripts/index/index.phtml:5 +msgid "Journée communautaire Bokeh 2018" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:31 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:15 @@ -11490,23 +11854,31 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:640 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:655 +#: ../../application/modules/opac/controllers/RechercheController.php:544 +#: ../../application/modules/opac/controllers/RechercheController.php:658 msgid "L'exemplaire n'existe pas" msgstr "" +#: ../../application/modules/opac/controllers/ModulesController.php:79 +msgid "L'identifiant du document demandé n'existe pas" +msgstr "" + #: ../../library/Class/Users.php:1024 ../../library/Class/Users.php:1024 #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1012 -#: ../../library/Class/Users.php:1014 +#: ../../library/Class/Users.php:1014 ../../library/Class/Users.php:1018 msgid "L'identifiant que vous avez choisi existe déjà ." msgstr "Numele de utilizator ales există deja." #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:318 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:323 +#: ../../application/modules/admin/controllers/FileManagerController.php:260 #, fuzzy, php-format msgid "L'image \"%s\" a été compressée." msgstr "Nu a fost găsit nici un articol" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:306 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:311 +#: ../../application/modules/admin/controllers/FileManagerController.php:248 #, fuzzy, php-format msgid "L'image \"%s\" a été redimensionnée." msgstr "Nu a fost găsită nici o informaÅ£ie" @@ -11633,7 +12005,7 @@ msgstr "Biblioteca conÅ£ine %s instrucÅ£iuni." #: ../../library/Class/Users.php:1033 ../../library/Class/Users.php:1033 #: ../../library/Class/Users.php:1042 ../../library/Class/Users.php:1021 -#: ../../library/Class/Users.php:1023 +#: ../../library/Class/Users.php:1023 ../../library/Class/Users.php:1027 #, php-format msgid "La bibliothèque est obligatoire pour le rôle : %s" msgstr "Biblioteca este obligatorie pentru rol : %s" @@ -11681,6 +12053,11 @@ msgstr "" msgid "La catégorie \"%s\" a été sauvegardée" msgstr "" +#: ../../application/modules/admin/controllers/IndexController.php:86 +#, php-format +msgid "La clé \"%s\" n'existe pas." +msgstr "" + #: ../../library/Class/Profil/SkinUpdateReader.php:102 #: ../../library/Class/Profil/SkinUpdateReader.php:102 #, fuzzy, php-format @@ -11703,6 +12080,7 @@ msgstr "Nu a fost găsită nici o informaÅ£ie" #: ../../library/Class/Systeme/Widget/Widget.php:72 #: ../../library/Class/Systeme/Widget/Widget.php:72 +#: ../../library/Class/Systeme/Widget/Widget.php:74 #, fuzzy, php-format msgid "La configuration de la boite %s a été sauvegardée" msgstr "Nu a fost găsită nici o informaÅ£ie" @@ -11715,18 +12093,19 @@ msgid "La configuration du menu %s a été sauvegardée" msgstr "Nu a fost găsită nici o informaÅ£ie" #: ../../library/Class/Profil.php:1384 ../../library/Class/Profil.php:1385 -#: ../../library/Class/Profil.php:1405 +#: ../../library/Class/Profil.php:1405 ../../library/Class/Profil.php:1406 msgid "La couleur des liens du bandeau doit être au format #001122" msgstr "" #: ../../library/Class/Profil.php:1380 ../../library/Class/Profil.php:1381 -#: ../../library/Class/Profil.php:1401 +#: ../../library/Class/Profil.php:1401 ../../library/Class/Profil.php:1402 msgid "La couleur du texte bandeau doit être au format #001122" msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:145 #: ../../application/modules/admin/controllers/IndexController.php:155 #: ../../application/modules/admin/controllers/IndexController.php:155 +#: ../../application/modules/admin/controllers/IndexController.php:163 msgid "La demande de mise à jour a été envoyée au serveur" msgstr "" @@ -11737,7 +12116,7 @@ msgid "" msgstr "" #: ../../library/Class/Profil.php:1345 ../../library/Class/Profil.php:1346 -#: ../../library/Class/Profil.php:1366 +#: ../../library/Class/Profil.php:1366 ../../library/Class/Profil.php:1367 #, fuzzy msgid "La largeur du site doit être comprise entre 800 et 2000 pixels." msgstr "" @@ -11794,6 +12173,22 @@ msgstr "Fotografia pe care aÅ£i selectat-o este prea mare: %d ko" msgid "La pièce jointe est invalide." msgstr "Codul anti-spam este invalid." +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:31 +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:32 +#, php-format +msgid "La recherche \"%s\" a été enregistrée dans mes favoris" +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:33 +#, fuzzy, php-format +msgid "La recherche \"%s\" a été supprimée de mes favoris" +msgstr "Nu a fost găsit nici un articol" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:54 +#, fuzzy +msgid "La recherche demandée est introuvable." +msgstr "Codul anti-spam este invalid." + #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:86 #: ../../library/ZendAfi/View/Helper/TagRechercheSimple.php:83 @@ -11841,7 +12236,7 @@ msgid "La session \"%s\" a été sauvegardée, son article lié a été créé." msgstr "" #: ../../library/Class/Profil.php:1352 ../../library/Class/Profil.php:1353 -#: ../../library/Class/Profil.php:1373 +#: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1374 msgid "" "La somme des largeurs des divisions ne doit pas excéder la largeur du site." msgstr "" @@ -11851,16 +12246,19 @@ msgstr "" #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:476 #: ../../library/Class/CriteresRecherche.php:478 +#: ../../library/Class/CriteresRecherche.php:491 #, fuzzy msgid "La sélection ne contient aucune notice" msgstr "Acest meniu nu conÅ£ine date" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 #, fuzzy msgid "La taille du fichier doit être inférieur à \"%max%\"" msgstr "Câmpul 'Nume de utilizator' trebuie să nu depăşească 50 de caractere" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:50 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:54 msgid "La taille du fichier doit être supérieur à \"%min%\"" msgstr "" @@ -12099,6 +12497,7 @@ msgstr "" #: ../../application/modules/admin/controllers/IndexController.php:123 #: ../../application/modules/admin/controllers/IndexController.php:133 #: ../../application/modules/admin/controllers/IndexController.php:133 +#: ../../application/modules/admin/controllers/IndexController.php:141 msgid "Le cache de Bokeh a été vidé" msgstr "" @@ -12147,13 +12546,13 @@ msgstr "Câmpul 'Nume de utilizator' trebuie să nu depăşească 50 de caracter #: ../../library/Class/Users.php:1020 ../../library/Class/Users.php:1020 #: ../../library/Class/Users.php:1029 ../../library/Class/Users.php:1008 -#: ../../library/Class/Users.php:1010 +#: ../../library/Class/Users.php:1010 ../../library/Class/Users.php:1014 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" #: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1028 #: ../../library/Class/Users.php:1037 ../../library/Class/Users.php:1016 -#: ../../library/Class/Users.php:1018 +#: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1022 #, 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" @@ -12202,6 +12601,16 @@ msgstr "la buletinul informativ" msgid "Le document %s a été ajouté au panier %s" msgstr "Nu a fost găsit nici un articol" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:35 +#, fuzzy +msgid "Le document n'a pas d'album" +msgstr "Aceasta instrucÅ£iune nu are autor" + +#: ../../library/ZendAfi/View/Helper/Album/OldLoans.php:30 +#, fuzzy +msgid "Le document n'a pas encore été emprunté" +msgstr "Nu a fost găsit nici un document" + #: ../../application/modules/admin/controllers/CatalogueController.php:53 #: ../../application/modules/admin/controllers/CatalogueController.php:53 msgid "" @@ -12210,6 +12619,7 @@ msgid "" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:194 +#: ../../application/modules/admin/controllers/FileManagerController.php:126 #, php-format msgid "" "Le dossier \"%s\" ne peut pas être supprimé car il contient des éléments " @@ -12250,6 +12660,7 @@ msgid "Le fichier n'est pas de type %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:52 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:56 #, fuzzy msgid "Le fichier n'est pas lisible" msgstr "Câmpuri disponibile" @@ -12288,11 +12699,13 @@ msgid "Le flux doit être au format iCalendar" msgstr "" #: ../../library/Class/Feature/List.php:142 +#: ../../library/Class/Feature/List.php:143 msgid "Le fond de carte de la boite bibliothèques est personnalisable." msgstr "" #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 #: ../../library/ZendAfi/View/Helper/Button/Back.php:51 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:46 msgid "Le formulaire a été modifié. Etes vous sûr de vouloir partir ?" msgstr "" @@ -12304,7 +12717,7 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:252 ../../library/Class/AdminVar.php:253 -#: ../../library/Class/AdminVar.php:250 +#: ../../library/Class/AdminVar.php:250 ../../library/Class/AdminVar.php:252 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 " @@ -12323,7 +12736,7 @@ msgid "Le libellé doit être renseigné" msgstr "" #: ../../library/Class/Profil.php:1341 ../../library/Class/Profil.php:1342 -#: ../../library/Class/Profil.php:1362 +#: ../../library/Class/Profil.php:1362 ../../library/Class/Profil.php:1363 #, fuzzy msgid "Le libellé est obligatoire." msgstr "specificaÅ£ia este obligatorie." @@ -12352,18 +12765,40 @@ msgstr "" msgid "Le modèle \"%s\" a été sauvegardé" msgstr "Nu a fost găsit nici un articol" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:272 +msgid "Le moissonnage n'est pas programmé" +msgstr "" + +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +msgid "" +"Le nom doit contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 msgid "" "Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " "caratères \"_\", \"-\", \" \", \".\". Exemple : \"mon_dossier\"" msgstr "" +#: ../../library/ZendAfi/Form/Admin/FileManager/Folder.php:34 +msgid "" +"Le nom du dossier peut contenir uniquement des lettres, des chiffres et les " +"caratères \"_\", \"-\", \".\". Exemple : \"mon_dossier\"" +msgstr "" + #: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 msgid "" "Le nom peut contenir uniquement des lettres, des chiffres et les caratères " "\"_\", \"-\", \" \", \".\". Exemple : \"mon_fichier.2\"" msgstr "" +#: ../../library/ZendAfi/Form/Admin/FileManager/Rename.php:34 +msgid "" +"Le nom peut contenir uniquement des lettres, des chiffres et les caratères " +"\"_\", \"-\", \".\". Exemple : \"mon_fichier.jpg\"" +msgstr "" + #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:159 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:161 @@ -12387,7 +12822,7 @@ msgstr "" #: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1038 #: ../../library/Class/Users.php:1047 ../../library/Class/Users.php:1026 -#: ../../library/Class/Users.php:1028 +#: ../../library/Class/Users.php:1028 ../../library/Class/Users.php:1032 msgid "" "Le numéro de carte est obligatoire pour les abonnés identifiés dans un sigb." msgstr "" @@ -12553,6 +12988,7 @@ msgid "Les extensions possiblent sont : %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:55 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:59 #, php-format msgid "Les extensions possibles sont : %s" msgstr "" @@ -12632,6 +13068,17 @@ msgstr "" msgid "Les mots de passe ne correspondent pas" msgstr "Parolele nu corespund" +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:85 +#, php-format +msgid "Les notifications de nouveautés pour la recherche \"%s\" sont activées." +msgstr "" + +#: ../../library/ZendAfi/Controller/Plugin/Manager/BookmarkedSearches.php:96 +#, php-format +msgid "" +"Les notifications de nouveautés pour la recherche \"%s\" sont désactivées." +msgstr "" + #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #: ../../application/modules/opac/views/scripts/panier/viewauteur.phtml:2 #, fuzzy, php-format @@ -12678,6 +13125,18 @@ msgstr "ÃŽntâlnirile" msgid "Les sites les plus récents" msgstr "" +#: ../../library/Class/AdminVar.php:225 +#, fuzzy +msgid "Les utilisateurs peuvent enregister des recherches dans leurs favoris" +msgstr "PuteÅ£i selecta una sau mai multe biblioteci pentru a efectua o căutare" + +#: ../../library/Class/AdminVar.php:226 +#, fuzzy +msgid "" +"Les utilisateurs peuvent recevoir les nouveautés de leurs recherches " +"favorites par email" +msgstr "PuteÅ£i selecta una sau mai multe biblioteci pentru a efectua o căutare" + #: ../../library/Class/AdminVar.php:226 ../../library/Class/AdminVar.php:227 #: ../../library/Class/AdminVar.php:224 #, fuzzy @@ -12823,6 +13282,8 @@ msgstr "SpecificaÅ£ie" #: ../../library/ZendAfi/Form/Admin/Section.php:30 #: ../../library/ZendAfi/View/Helper/LibraryOpeningsAdmin.php:82 #: ../../application/modules/admin/views/scripts/multimedia/browse.phtml:15 +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:9 +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:29 msgid "Libellé" msgstr "SpecificaÅ£ie" @@ -13011,7 +13472,7 @@ msgid "Lien permanent" msgstr "Link permanent" #: ../../library/Class/AdminVar.php:279 ../../library/Class/AdminVar.php:280 -#: ../../library/Class/AdminVar.php:277 +#: ../../library/Class/AdminVar.php:277 ../../library/Class/AdminVar.php:279 #, fuzzy msgid "Lien pour se désinscrire de cette lettre d'information : {{URL}}" msgstr "la buletinul informativ" @@ -13283,6 +13744,11 @@ msgstr "Modificare bibliotecă: %s" msgid "Lien vers une sélection d'articles" msgstr "VedeÅ£i fluxurile RSS selectate" +#: ../../library/Class/Notice/MailRenderer.php:34 +#, fuzzy +msgid "Lien: " +msgstr "Link internet" + #: ../../library/Class/Systeme/ModulesMenu.php:73 #: ../../library/Class/Systeme/ModulesMenu.php:73 #, fuzzy @@ -13404,6 +13870,9 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:655 #: ../../application/modules/opac/controllers/RechercheController.php:662 #: ../../application/modules/opac/controllers/RechercheController.php:691 +#: ../../application/modules/opac/controllers/RechercheController.php:658 +#: ../../application/modules/opac/controllers/RechercheController.php:665 +#: ../../application/modules/opac/controllers/RechercheController.php:694 msgid "Lieu de mise à disposition demandé" msgstr "" @@ -13498,6 +13967,7 @@ msgid "Liste des albums" msgstr "Adaugă o categorie" #: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:156 +#: ../../library/ZendAfi/Controller/Plugin/InspectorGadget.php:162 #, fuzzy msgid "Liste des appels webservices" msgstr "Test servicii web" @@ -13550,7 +14020,7 @@ msgid "Liste des derniers fils RSS ajoutés" msgstr "Lista ultimelor fluxuri RSS adăugate" #: ../../library/Class/AdminVar.php:401 ../../library/Class/AdminVar.php:403 -#: ../../library/Class/AdminVar.php:400 +#: ../../library/Class/AdminVar.php:400 ../../library/Class/AdminVar.php:405 msgid "" "Liste des dimensions disponibles pour retailler les images lors de l'import." msgstr "" @@ -13569,17 +14039,17 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:397 ../../library/Class/AdminVar.php:399 -#: ../../library/Class/AdminVar.php:396 +#: ../../library/Class/AdminVar.php:396 ../../library/Class/AdminVar.php:401 #, fuzzy msgid "Liste des extensions de fichiers disponibles à l'import." msgstr "Câmpuri disponibile" #: ../../library/Class/AdminVar.php:404 ../../library/Class/AdminVar.php:406 -#: ../../library/Class/AdminVar.php:403 +#: ../../library/Class/AdminVar.php:403 ../../library/Class/AdminVar.php:408 msgid "Liste des extensions de fichiers susceptibles d'être redimensionnés." msgstr "" -#: ../../library/Class/AdminVar.php:406 +#: ../../library/Class/AdminVar.php:406 ../../library/Class/AdminVar.php:411 msgid "" "Liste des extensions susceptibles d'être sélectionnées pour enrichir un " "contenu." @@ -13591,7 +14061,7 @@ msgid "Liste des réservations du site \"%s\"" msgstr "Rezervări de instrucÅ£iuni" #: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:245 -#: ../../library/Class/AdminVar.php:242 +#: ../../library/Class/AdminVar.php:242 ../../library/Class/AdminVar.php:244 #, php-format msgid "" "Liste des sites de recherche élargie (la chaine '%s' dans l'url sera " @@ -13710,9 +14180,15 @@ msgstr "Localizare a bibliotecii: %s" #: ../../library/ZendAfi/Form/Login.php:118 #: ../../application/modules/admin/views/scripts/users/manage-double-user.phtml:10 #: ../../library/ZendAfi/Form/Login.php:118 +#: ../../library/ZendAfi/Form/Login.php:127 msgid "Login" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:219 +#, fuzzy, php-format +msgid "Login : %s" +msgstr "Cota : %s" + #: ../../library/Class/AdminVar.php:151 ../../library/Class/AdminVar.php:152 msgid "Login ARTE VOD" msgstr "" @@ -13746,6 +14222,7 @@ msgstr "Limba " #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:143 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:155 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #, fuzzy msgid "Longueur" msgstr "Limba " @@ -13772,6 +14249,11 @@ msgstr "" msgid "MARC 21" msgstr "" +#: ../../library/Class/CriteresRecherche.php:973 +#, fuzzy, php-format +msgid "Ma recherche \"%s\"" +msgstr "Tip de căutare" + #: ../../library/Class/Users.php:261 ../../library/Class/Users.php:261 #: ../../library/Class/Users.php:262 ../../library/Class/Users.php:241 msgid "Madame" @@ -13900,6 +14382,16 @@ msgstr "Cerere de rezervare a unui document" msgid "Me connecter" msgstr "Conectare " +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:46 +#, fuzzy +msgid "Me notifier des nouveautés" +msgstr "Dată noutăţi" + +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:37 +#, fuzzy +msgid "Me notifier des nouveautés par email" +msgstr "Modifică fiÅŸa mea" + #: ../../library/ZendAfi/Form/Album/Ressource.php:43 #: ../../library/ZendAfi/Form/Album/Ressource.php:43 msgid "Media" @@ -14004,6 +14496,7 @@ msgstr "AlegeÅ£i media" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:48 #: ../../application/modules/opac/controllers/AbonneController.php:1182 #: ../../application/modules/opac/controllers/AbonneController.php:1184 +#: ../../application/modules/opac/controllers/AbonneController.php:1199 #, fuzzy msgid "Mes activités suivies" msgstr "Modificare titlu coÅŸ" @@ -14023,6 +14516,7 @@ msgstr "Biblioteci" #: ../../library/ZendAfi/View/Helper/Abonne/Cards.php:23 #: ../../application/modules/opac/controllers/AbonneController.php:1048 #: ../../application/modules/opac/controllers/AbonneController.php:1050 +#: ../../application/modules/opac/controllers/AbonneController.php:1065 #, fuzzy msgid "Mes cartes" msgstr "CoÅŸurile dvs." @@ -14033,6 +14527,12 @@ msgstr "CoÅŸurile dvs." msgid "Mes derniers paniers" msgstr "Ultimele articole" +#: ../../application/modules/opac/controllers/AbonneController.php:1021 +#: ../../library/ZendAfi/View/Helper/Abonne/Settings.php:33 +#, fuzzy +msgid "Mes favoris" +msgstr "Modificarea abonamentelor mele" + #: ../../application/modules/opac/controllers/AbonneController.php:1184 #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1183 @@ -14040,13 +14540,14 @@ msgstr "Ultimele articole" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:52 #: ../../application/modules/opac/controllers/AbonneController.php:1176 #: ../../application/modules/opac/controllers/AbonneController.php:1178 +#: ../../application/modules/opac/controllers/AbonneController.php:1193 #, fuzzy msgid "Mes inscriptions en cours" msgstr "Rezervări în curs" #: ../../library/Class/Users.php:1553 ../../library/Class/Users.php:1553 #: ../../library/Class/Users.php:1564 ../../library/Class/Users.php:1543 -#: ../../library/Class/Users.php:1546 +#: ../../library/Class/Users.php:1546 ../../library/Class/Users.php:1550 #, fuzzy msgid "Mes paniers" msgstr "CoÅŸurile dvs." @@ -14059,7 +14560,7 @@ msgstr "CoÅŸurile dvs. de documente" #: ../../library/Class/Users.php:1586 ../../library/Class/Users.php:1586 #: ../../library/Class/Users.php:1597 ../../library/Class/Users.php:1576 -#: ../../library/Class/Users.php:1579 +#: ../../library/Class/Users.php:1579 ../../library/Class/Users.php:1583 msgid "Mes paniers rattachés à un domaine" msgstr "" @@ -14085,6 +14586,11 @@ msgstr "Resurse OAI" msgid "Mes recherches" msgstr "Tip de căutare" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:81 +#, fuzzy +msgid "Mes recherches favorites" +msgstr "Tip de căutare" + #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:33 #: ../../library/ZendAfi/View/Helper/Telephone/Abonne/Holds.php:27 #: ../../library/Class/Systeme/ModulesAccueil/Reservations.php:34 @@ -14174,6 +14680,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:466 #: ../../application/modules/opac/controllers/RechercheController.php:481 +#: ../../application/modules/opac/controllers/RechercheController.php:484 msgid "Message du demandeur :" msgstr "Mesaj al solicitantului :" @@ -14249,6 +14756,8 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 #: ../../library/Class/Feature/List.php:68 #: ../../library/Class/Feature/List.php:145 +#: ../../library/Class/Feature/List.php:146 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:96 msgid "Mise en page" msgstr "Punere în pagină" @@ -14286,6 +14795,8 @@ msgstr "Actualizare a localizării" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../application/modules/admin/controllers/IndexController.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 +#: ../../application/modules/admin/controllers/IndexController.php:152 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #, fuzzy msgid "Mise à jour de la charte graphique" msgstr "Actualizare a localizării" @@ -14381,6 +14892,7 @@ msgstr "Nu trimite date" #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 #: ../../library/Class/Migration/ScriptPatchs.php:74 #: ../../library/ZendAfi/View/Helper/TagMigration.php:82 +#: ../../library/Class/Migration/ScriptPatchs.php:80 msgid "Mise à niveau de la base effectuée avec succès" msgstr "" @@ -14463,6 +14975,7 @@ msgstr "Gestionare utilizatori" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:176 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:178 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:174 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:171 #, fuzzy msgid "Modification Thesaurus" msgstr "Modificarea fiÅŸei dvs." @@ -14538,6 +15051,13 @@ msgstr "Modificarea fiÅŸei dvs." msgid "Modifier" msgstr "Modificare" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:101 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:161 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:230 +#, fuzzy, php-format +msgid "Modifier \"%s\"" +msgstr "Modificare bibliotecă: %s" + #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #: ../../library/ZendAfi/Controller/Plugin/MultiSelection/Abstract.php:61 #, fuzzy, php-format @@ -14695,6 +15215,7 @@ msgstr "Modifică fiÅŸa mea" #: ../../application/modules/admin/controllers/IndexController.php:85 #: ../../application/modules/admin/controllers/IndexController.php:94 #: ../../application/modules/admin/controllers/IndexController.php:94 +#: ../../application/modules/admin/controllers/IndexController.php:102 #, fuzzy, php-format msgid "Modifier la variable: %s" msgstr "Modificare bibliotecă: %s" @@ -14996,6 +15517,7 @@ msgstr "Modificare" #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 #: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:25 +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:27 #, fuzzy msgid "Modifié le" msgstr "Modificare" @@ -15046,6 +15568,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../application/modules/admin/controllers/PrintController.php:31 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:98 msgid "Modèles d'impressions" msgstr "" @@ -15062,14 +15585,14 @@ msgid "Modération des alertes" msgstr "Moderare alerte" #: ../../library/Class/AdminVar.php:357 ../../library/Class/AdminVar.php:358 -#: ../../library/Class/AdminVar.php:355 +#: ../../library/Class/AdminVar.php:355 ../../library/Class/AdminVar.php:360 msgid "" "Modération des avis des bibliothécaires.<br /> Désactivé: affichage sans " "attente de validation<br /> Activé: affichage seulement après validation" msgstr "" #: ../../library/Class/AdminVar.php:356 ../../library/Class/AdminVar.php:357 -#: ../../library/Class/AdminVar.php:354 +#: ../../library/Class/AdminVar.php:354 ../../library/Class/AdminVar.php:359 msgid "" "Modération des avis des lecteurs.<br /> Désactivé : affichage sans attente " "de validation<br /> Activé : affichage seulement après validation." @@ -15106,6 +15629,7 @@ msgid "Modération des tags sur les notices" msgstr "Moderarea tag-urilor privind instrucÅ£iunile" #: ../../library/Class/Feature/List.php:163 +#: ../../library/Class/Feature/List.php:164 #, fuzzy msgid "Modération des vidéos" msgstr "Moderare alerte" @@ -15144,6 +15668,11 @@ msgstr "ÃŽncărcare in curs" msgid "Moissonnage Orphea" msgstr "ÃŽncărcare in curs" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:70 +#, fuzzy +msgid "Moissonnage activé" +msgstr "ÃŽncărcare in curs" + #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 #: ../../library/ZendAfi/Form/Admin/ExternalAgenda.php:43 #, fuzzy @@ -15151,6 +15680,7 @@ msgid "Moissonnage automatique" msgstr "ÃŽncărcare in curs" #: ../../library/Class/Feature/List.php:153 +#: ../../library/Class/Feature/List.php:154 #, fuzzy msgid "Moissonnage des notices de musicMe" msgstr "ÃŽncărcare in curs" @@ -15161,6 +15691,11 @@ msgstr "ÃŽncărcare in curs" msgid "Moissonnage des évènements de l'agenda \"%s\"" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:66 +#, fuzzy +msgid "Moissonnage désactivé" +msgstr "ÃŽncărcare in curs" + #: ../../application/modules/admin/views/scripts/harvest/orphea-browse.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 #: ../../application/modules/admin/views/scripts/harvest/_harvest_progress.phtml:6 @@ -15253,9 +15788,15 @@ msgstr "Fragmente" #: ../../library/ZendAfi/Form/Register.php:42 #: ../../library/ZendAfi/Form/Admin/User.php:73 #: ../../library/ZendAfi/Form/Admin/Library.php:240 +#: ../../library/ZendAfi/Form/Login.php:138 msgid "Mot de passe" msgstr "Parolă" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:220 +#, fuzzy, php-format +msgid "Mot de passe : %s" +msgstr "Parolă" + #: ../../library/Class/AdminVar.php:179 ../../library/Class/AdminVar.php:180 #: ../../library/Class/AdminVar.php:177 msgid "Mot de passe FTP de diffusion des offres PNB Dilicom" @@ -15313,6 +15854,7 @@ msgstr "Cuvinte-cheie" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:127 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:126 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 msgid "Multimedia" msgstr "" @@ -15367,8 +15909,7 @@ msgstr "Sitotecă" msgid "N'envoie pas de données" msgstr "Nu trimite date" -#: ../../library/Class/FRBR/Link.php:160 -#: ../../library/Class/FRBR/Link.php:162 +#: ../../library/Class/FRBR/Link.php:160 ../../library/Class/FRBR/Link.php:162 #: ../../library/Class/FRBR/Link.php:162 msgid "N'est pas une url valide" msgstr "" @@ -15477,6 +16018,7 @@ msgstr "" #: ../../library/Class/User/CardsNotification.php:58 #: ../../library/Class/User/CardsNotification.php:58 +#: ../../library/Class/Feature.php:177 msgid "Ne plus m'avertir" msgstr "" @@ -15534,6 +16076,7 @@ msgstr "Nivel de acces necesar" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:160 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:151 msgid "Niveau de catalogage" msgstr "" @@ -15545,6 +16088,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:146 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:158 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:149 msgid "Niveau hiérarchique" msgstr "" @@ -15702,9 +16246,15 @@ msgstr "Nume" #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:31 #: ../../application/modules/opac/views/scripts/bib/bibview.phtml:33 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:29 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:31 msgid "Nom :" msgstr "Nume :" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:212 +#, fuzzy, php-format +msgid "Nom : %s" +msgstr "Nume :" + #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:89 msgid "Nom commence par" @@ -15712,12 +16262,13 @@ msgstr "Numele începe cu" #: ../../application/modules/admin/controllers/IndexController.php:175 #: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:194 #, fuzzy msgid "Nom d'utilisateur ou mot de passe invalide" msgstr "Numele de utilizator sau parola incorecte " #: ../../library/Class/AdminVar.php:247 ../../library/Class/AdminVar.php:248 -#: ../../library/Class/AdminVar.php:245 +#: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:247 msgid "Nom de domaine principal de l'OPAC, ex: monopac.macommune.fr" msgstr "" @@ -15745,10 +16296,16 @@ msgstr "Plan al bibliotecii: %s" msgid "Nom de la bibliothèque chez bibliosurf (en minuscules)" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:123 +#, fuzzy, php-format +msgid "Nom de la permission à donner : \"%s\"" +msgstr "Nu aÅ£i introdus un nume de utilizator." + #: ../../application/modules/admin/views/scripts/index/index.phtml:26 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:54 #: ../../application/modules/admin/views/scripts/index/index.phtml:43 +#: ../../application/modules/admin/views/scripts/index/index.phtml:37 #, fuzzy msgid "Nom du domaine" msgstr "Export de coÅŸ" @@ -15771,7 +16328,7 @@ msgid "Nom du responsable" msgstr "Numele responsabilului" #: ../../library/Class/AdminVar.php:245 ../../library/Class/AdminVar.php:246 -#: ../../library/Class/AdminVar.php:243 +#: ../../library/Class/AdminVar.php:243 ../../library/Class/AdminVar.php:245 #, fuzzy msgid "Nom du site" msgstr "Export de coÅŸ" @@ -15795,6 +16352,7 @@ msgstr "Export de coÅŸ" #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:458 #: ../../application/modules/opac/controllers/RechercheController.php:473 +#: ../../application/modules/opac/controllers/RechercheController.php:476 #, php-format msgid "Nom et prénom : %s" msgstr "Nume ÅŸi prenume : %s" @@ -15811,6 +16369,11 @@ msgstr "ChioÅŸc de instrucÅ£iuni" msgid "Nombre d'albums" msgstr "Categorie înrudită" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:332 +#, fuzzy, php-format +msgid "Nombre d'albums présents : %d" +msgstr "Categorie înrudită" + #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 #: ../../application/modules/admin/views/scripts/bib/delete.phtml:5 #, fuzzy @@ -15943,17 +16506,17 @@ msgid "Nombre d\\'événements mis à jour : %s\n" msgstr "Număr de diviziuni" #: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:349 -#: ../../library/Class/AdminVar.php:346 +#: ../../library/Class/AdminVar.php:346 ../../library/Class/AdminVar.php:351 msgid "Nombre de caractères maximum autorisé à saisir dans les avis." msgstr "" #: ../../library/Class/AdminVar.php:350 ../../library/Class/AdminVar.php:351 -#: ../../library/Class/AdminVar.php:348 +#: ../../library/Class/AdminVar.php:348 ../../library/Class/AdminVar.php:353 msgid "Nombre de caractères maximum à afficher dans le bloc critiques." msgstr "" #: ../../library/Class/AdminVar.php:349 ../../library/Class/AdminVar.php:350 -#: ../../library/Class/AdminVar.php:347 +#: ../../library/Class/AdminVar.php:347 ../../library/Class/AdminVar.php:352 msgid "Nombre de caractères minimum autorisé à saisir dans les avis." msgstr "" @@ -16019,7 +16582,7 @@ msgid "Nombre de formulaires : %s" msgstr "Moderare alerte" #: ../../library/Class/AdminVar.php:360 ../../library/Class/AdminVar.php:361 -#: ../../library/Class/AdminVar.php:358 +#: ../../library/Class/AdminVar.php:358 ../../library/Class/AdminVar.php:363 msgid "Nombre de jours de validité des nouvelles inscriptions sur le site" msgstr "" @@ -16030,6 +16593,11 @@ msgstr "" msgid "Nombre de jours restant sur la licence" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:150 +#, fuzzy +msgid "Nombre de membres" +msgstr "SituaÅ£i ca exemplar" + #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 #: ../../application/modules/admin/views/scripts/systeme/cacheimages.phtml:9 #, fuzzy @@ -16161,7 +16729,7 @@ msgid "Nombre de vignettes reconnues" msgstr "Număr de diviziuni" #: ../../library/Class/AdminVar.php:253 ../../library/Class/AdminVar.php:254 -#: ../../library/Class/AdminVar.php:251 +#: ../../library/Class/AdminVar.php:251 ../../library/Class/AdminVar.php:253 msgid "Nombre maximum d'articles en sélection multiple" msgstr "" @@ -16224,6 +16792,8 @@ msgstr "ChioÅŸc de instrucÅ£iuni" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:56 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:12 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:12 #, fuzzy msgid "Non" msgstr "Nume" @@ -16248,10 +16818,16 @@ msgstr "" #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:270 #: ../../library/Class/Exemplaire.php:275 +#: ../../library/Class/Exemplaire.php:291 #, fuzzy msgid "Non disponible" msgstr "Disponibilitate" +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:11 +msgid "Non je ne veux pas" +msgstr "" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare.php:61 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/MultiCheckbox.php:37 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/DomainSelect.php:52 @@ -16309,6 +16885,7 @@ msgid "Notice \"%s\" retirée du panier" msgstr "Modificare titlu coÅŸ" #: ../../application/modules/opac/controllers/RechercheController.php:306 +#: ../../application/modules/opac/controllers/RechercheController.php:800 #, fuzzy msgid "Notice Bokeh" msgstr "InstrucÅ£iuni" @@ -16351,6 +16928,7 @@ msgstr "1 instrucÅ£iune găsită" #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:460 #: ../../application/modules/opac/controllers/RechercheController.php:475 +#: ../../application/modules/opac/controllers/RechercheController.php:478 msgid "Notice réservée : " msgstr "InstrucÅ£iune rezervată :" @@ -16389,6 +16967,7 @@ msgstr "InstrucÅ£iuni" #: ../../library/Class/Codification.php:234 #: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/FRBRLink.php:36 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:91 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:88 #, fuzzy msgid "Notices liées" msgstr "InstrucÅ£iuni similare" @@ -16415,6 +16994,10 @@ msgstr "instrucÅ£iuni găsite" msgid "Notices à traiter: %s" msgstr "InstrucÅ£iuni similare" +#: ../../library/Class/Cosmogramme/Integration/PhaseBookmarkedSearches.php:30 +msgid "Notification des nouveautés dans les recherches favorites" +msgstr "" + #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 #: ../../application/modules/opac/views/scripts/help/cookies.phtml:9 msgid "" @@ -16502,6 +17085,11 @@ msgstr "Parolă nouă" msgid "Nouveau type de relation" msgstr "Parolă nouă" +#: ../../library/Class/User/BookmarkedSearch.php:112 +#, fuzzy, php-format +msgid "Nouveau(x) résultat(s) pour votre recherche %s" +msgstr "Rezultatul căutarii" + #: ../../library/Class/Codification.php:145 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:57 #: ../../library/Class/Codification.php:145 @@ -16512,6 +17100,8 @@ msgstr "Noutăţi" #: ../../application/modules/admin/controllers/FeatureController.php:36 #: ../../application/modules/admin/controllers/FeatureController.php:58 +#: ../../application/modules/admin/controllers/FeatureController.php:37 +#: ../../application/modules/admin/controllers/FeatureController.php:59 #, fuzzy msgid "Nouveauté inconnue" msgstr "Noutăţi" @@ -16528,6 +17118,7 @@ msgstr "Noutăţi" #: ../../application/modules/admin/views/scripts/feature/index.phtml:68 #: ../../application/modules/admin/views/scripts/feature/index.phtml:70 +#: ../../application/modules/admin/views/scripts/feature/index.phtml:86 #, fuzzy, php-format msgid "Nouveautés : %d" msgstr "Noutăţi" @@ -16574,6 +17165,12 @@ msgstr "Noutăţi de mai puÅ£in de" msgid "Nouveautés de moins de: " msgstr "Noutăţi de mai puÅ£in de" +#: ../../library/ZendAfi/Feed/SearchResultHeader.php:177 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:224 +#, fuzzy, php-format +msgid "Nouveautés du %s" +msgstr "Noutăţi" + #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 #: ../../library/ZendAfi/Form/Configuration/Domain.php:70 msgid "Nouveautés uniquement" @@ -16639,6 +17236,10 @@ msgstr "** nouă localizare **" msgid "Nouvelles fonctionnalités" msgstr "Actualităţi :" +#: ../../library/Class/Feature.php:184 +msgid "Nouvelles fonctionnalités depuis votre dernière connexion : " +msgstr "" + #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 #: ../../library/ZendAfi/View/Helper/Calendar/Months.php:19 #, fuzzy @@ -16683,6 +17284,7 @@ msgstr "Număr" #: ../../library/ZendAfi/Form/SecurePassword.php:29 #: ../../library/ZendAfi/Form/SecurePassword.php:29 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:53 #, fuzzy msgid "Numéro de carte" msgstr "VedeÅ£i instrucÅ£iunea" @@ -16708,6 +17310,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 #: ../../library/ZendAfi/View/Helper/Album/UsageConstraints.php:80 +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:55 msgid "Numéro de commande" msgstr "" @@ -16941,6 +17544,7 @@ msgstr "Număr de diviziuni" #: ../../library/Class/CriteresRecherche.php:136 #: ../../library/Class/CriteresRecherche.php:136 +#: ../../library/Class/CriteresRecherche.php:138 #, fuzzy msgid "Ordre du panier" msgstr "Modificare titlu coÅŸ" @@ -17002,6 +17606,8 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Menu/News.php:55 #: ../../library/Class/Notice.php:741 #: ../../application/modules/admin/views/scripts/modo/membreview.phtml:11 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:5 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:5 msgid "Oui" msgstr "" @@ -17080,6 +17686,11 @@ msgstr "" msgid "Ouvrir dans un nouvel onglet" msgstr "" +#: ../../application/modules/admin/views/scripts/profil/_page_row.phtml:34 +#, php-format +msgid "Ouvrir la page \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 #: ../../library/ZendAfi/View/Helper/ListeNotices/Vignettes.php:132 msgid "Ouvrir le lien dans un nouvel onglet" @@ -17114,7 +17725,7 @@ msgid "Où le trouver dans mes bibliothèques favorites" msgstr "Gestionare biblioteci" #: ../../library/Class/AdminVar.php:367 ../../library/Class/AdminVar.php:368 -#: ../../library/Class/AdminVar.php:365 +#: ../../library/Class/AdminVar.php:365 ../../library/Class/AdminVar.php:370 msgid "PIWIK authentication token for widgets" msgstr "" @@ -17125,6 +17736,7 @@ msgstr "" #: ../../application/modules/admin/controllers/AlbumController.php:75 #: ../../library/Class/Batch/Dilicom.php:30 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:90 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:82 msgid "PNB Dilicom" msgstr "" @@ -17202,8 +17814,7 @@ msgstr "" msgid "Page: " msgstr "" -#: ../../library/Class/NoticeHtml.php:82 -#: ../../library/Class/NoticeHtml.php:82 +#: ../../library/Class/NoticeHtml.php:82 ../../library/Class/NoticeHtml.php:82 msgid "Pagination" msgstr "PaginaÅ£ie" @@ -17402,6 +18013,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 #: ../../application/modules/admin/views/scripts/index/index.phtml:26 +#: ../../application/modules/admin/views/scripts/index/index.phtml:20 msgid "Paramètres du site" msgstr "Parametrii site-ului" @@ -17409,6 +18021,10 @@ msgstr "Parametrii site-ului" msgid "Paramètres manquants dans la requête de suppression" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:105 +msgid "Paramétrage" +msgstr "" + #: ../../library/Class/AdminVar.php:144 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:145 #: ../../library/Class/AdminVar.php:146 ../../library/Class/AdminVar.php:147 @@ -17475,6 +18091,7 @@ msgstr "Număr de diviziuni" #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:77 #: ../../application/modules/admin/views/scripts/index/index.phtml:66 +#: ../../application/modules/admin/views/scripts/index/index.phtml:60 msgid "Participez à la communauté" msgstr "" @@ -17487,6 +18104,7 @@ msgstr "toate" #: ../../library/ZendAfi/Controller/Action.php:251 #: ../../library/ZendAfi/Controller/Action.php:261 #: ../../library/ZendAfi/Controller/Action.php:261 +#: ../../library/ZendAfi/Controller/Action.php:284 msgid "" "Pas de coordonnées (latitude, longitude) trouvées pour l'adresse fournie. " "Merci de remplir manuellement" @@ -17538,6 +18156,11 @@ msgstr "Rezultatele precedente" msgid "Pas de version suivante" msgstr "Rezultatele următoare" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:17 +#, fuzzy +msgid "Pas encore de nouveauté." +msgstr "Dată noutăţi" + #: ../../library/Class/AdminVar.php:214 ../../library/Class/AdminVar.php:215 #: ../../library/Class/AdminVar.php:212 msgid "Password du portail fourni par Kidilangues." @@ -17603,6 +18226,7 @@ msgid "Permalien vignette :" msgstr "VedeÅ£i instrucÅ£iunea" #: ../../library/Class/Feature/List.php:186 +#: ../../library/Class/Feature/List.php:187 msgid "Permet d'afficher un ou plusieurs kiosques de notices dans un article" msgstr "" @@ -17651,6 +18275,7 @@ msgstr "FaÅ£ete : %s" #: ../../library/Class/CriteresRecherche.php:137 #: ../../library/Class/CriteresRecherche.php:137 +#: ../../library/Class/CriteresRecherche.php:139 msgid "Pertinence" msgstr "" @@ -17711,6 +18336,7 @@ msgstr "Pictogramă" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:102 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:99 msgid "Pictogrammes des genres" msgstr "Pictograme ale genurilor" @@ -17734,6 +18360,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:110 msgid "Piwik" msgstr "" @@ -17843,6 +18470,7 @@ msgstr "Plan de acces" #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 #: ../../application/modules/admin/views/scripts/batch/index.phtml:4 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:285 #, fuzzy msgid "Planification" msgstr "Publicare" @@ -17867,6 +18495,7 @@ msgstr "Modificare bibliotecă: %s" #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 #: ../../library/ZendAfi/Controller/Plugin/Manager/Batch.php:57 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:310 msgid "Plannifier la tâche" msgstr "" @@ -17935,6 +18564,7 @@ msgstr "Punct" #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:126 #: ../../library/ZendAfi/View/Helper/Admin/ProfileSelect.php:171 #: ../../library/Class/AdminVar.php:463 ../../library/Class/AdminVar.php:460 +#: ../../library/Class/AdminVar.php:465 msgid "Portail" msgstr "Portal" @@ -17943,7 +18573,7 @@ msgstr "Portal" #: ../../library/Class/AdminVar.php:240 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:185 #: ../../library/ZendAfi/Form/Configuration/SearchResult.php:187 -#: ../../library/Class/AdminVar.php:237 +#: ../../library/Class/AdminVar.php:237 ../../library/Class/AdminVar.php:239 #, fuzzy msgid "Position" msgstr "PaginaÅ£ie" @@ -17957,7 +18587,7 @@ msgid "Position de la pagination" msgstr "Rezultatul căutarii" #: ../../library/Class/AdminVar.php:238 ../../library/Class/AdminVar.php:239 -#: ../../library/Class/AdminVar.php:236 +#: ../../library/Class/AdminVar.php:236 ../../library/Class/AdminVar.php:238 #, fuzzy msgid "Position de la pagination en résultat de recherche" msgstr "Rezultatul căutarii" @@ -17971,6 +18601,7 @@ msgid "Position des filtres" msgstr "Gestionare biblioteci" #: ../../library/Class/Feature/List.php:131 +#: ../../library/Class/Feature/List.php:132 msgid "" "Possibilité d'éditer ou d'ajouter un site, dans une boite sithothèque, " "depuis l'interface publique." @@ -17995,11 +18626,18 @@ msgstr "" #: ../../library/Class/Users.php:1084 ../../library/Class/Users.php:1084 #: ../../library/Class/Users.php:1093 ../../library/Class/Users.php:1072 -#: ../../library/Class/Users.php:1075 +#: ../../library/Class/Users.php:1075 ../../library/Class/Users.php:1079 #, 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 :" +#: ../../library/Class/User/BookmarkedSearch.php:161 +#, php-format +msgid "" +"Pour annuler les prochaines notifications de nouveautés pour la recherche " +"%s. Veuillez cliquer sur le lien: %s" +msgstr "" + #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 #: ../../library/ZendAfi/View/Helper/Help/GoogleAnalyticsWarning.php:23 msgid "" @@ -18036,6 +18674,11 @@ msgstr "" msgid "Pour valider l'abonnement, merci de cliquer sur le lien suivant:" msgstr "Pentru a vă activa contul, vă rugăm să faceÅ£i clic pe linkul următor :" +#: ../../library/Class/User/BookmarkedSearch.php:154 +#, php-format +msgid "Pour voir toutes ces nouveautés sur le portail, suivez le lien: %s" +msgstr "" + #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:33 #, fuzzy @@ -18044,6 +18687,11 @@ msgid "" "lien suivant:" msgstr "Pentru a vă activa contul, vă rugăm să faceÅ£i clic pe linkul următor :" +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:38 +#, fuzzy, php-format +msgid "Pour: %s " +msgstr "Sursă :" + #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 #: ../../library/ZendAfi/Form/Configuration/DiaporamaNavigationImagesViewer.php:39 msgid "Pourcentages" @@ -18057,6 +18705,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:93 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:92 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:83 msgid "Premier-Chapitre" msgstr "" @@ -18117,6 +18766,7 @@ msgid "Prix" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:43 +#: ../../application/modules/admin/controllers/FeatureController.php:44 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" est toujours une nouveauté " @@ -18124,6 +18774,7 @@ msgid "" msgstr "" #: ../../application/modules/admin/controllers/FeatureController.php:65 +#: ../../application/modules/admin/controllers/FeatureController.php:66 #, php-format msgid "" "Problème de sauvegarde. La fonctionnalité \"%s\" n'est toujours pas une " @@ -18193,7 +18844,7 @@ msgid "Profil de données %s (%d) non présent ou mal configuré" msgstr "" #: ../../library/Class/AdminVar.php:275 ../../library/Class/AdminVar.php:276 -#: ../../library/Class/AdminVar.php:273 +#: ../../library/Class/AdminVar.php:273 ../../library/Class/AdminVar.php:275 msgid "" "Profil de la page de désinscription<br/>Par défaut : page d'accueil du " "portail" @@ -18202,6 +18853,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:101 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:97 msgid "Profils" msgstr "Profiluri" @@ -18363,6 +19015,7 @@ msgstr "Proprietăţile modulului" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:124 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:358 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:367 +#: ../../application/modules/admin/controllers/FileManagerController.php:304 #, fuzzy, php-format msgid "Propriétés de \"%s\"" msgstr "Proprietăţile modulului" @@ -18414,6 +19067,10 @@ msgstr "" msgid "Protocole HTTP obligatoire" msgstr "" +#: ../../application/modules/api/controllers/UserController.php:26 +msgid "Protocole HTTPS obligatoire" +msgstr "" + #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:166 #: ../../library/ZendAfi/Form/Album.php:160 @@ -18465,6 +19122,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:567 #: ../../application/modules/opac/controllers/AuthController.php:601 #: ../../application/modules/opac/controllers/AuthController.php:608 +#: ../../application/modules/opac/controllers/AuthController.php:603 #, fuzzy msgid "Préinscription" msgstr "ÃŽnscriere" @@ -18474,6 +19132,7 @@ msgstr "ÃŽnscriere" #: ../../application/modules/opac/controllers/AuthController.php:541 #: ../../application/modules/opac/controllers/AuthController.php:575 #: ../../application/modules/opac/controllers/AuthController.php:582 +#: ../../application/modules/opac/controllers/AuthController.php:577 #, fuzzy, php-format msgid "Préinscription à %s" msgstr "ÃŽnscriere" @@ -18573,6 +19232,14 @@ msgstr "Palmaresul vizualizărilor" msgid "Prévisualisation de la notice %s" msgstr "Vizualizare instrucÅ£iuni" +#: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 +#: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 +#, fuzzy, php-format +msgid "" +"Prévisualisation du panier \"%s\" en résultat de recherche dans un nouvel " +"onglet" +msgstr "Rezultatul căutarii" + #: ../../library/ZendAfi/View/Helper/Accueil/Panier.php:50 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 #: ../../library/ZendAfi/View/Helper/Panier/Table.php:49 @@ -18595,8 +19262,7 @@ msgstr "Rezultatul căutarii" msgid "Prêt" msgstr "ÃŽmprumut" -#: ../../library/Class/User/Cards.php:67 -#: ../../library/Class/User/Cards.php:67 +#: ../../library/Class/User/Cards.php:67 ../../library/Class/User/Cards.php:67 #, fuzzy msgid "Prêt introuvable" msgstr "Utilizator" @@ -18630,6 +19296,7 @@ msgstr "ÃŽmprumuturi în curs" #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 #: ../../application/modules/opac/views/scripts/abonne/prets.phtml:1 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:85 msgid "Prêts en cours" msgstr "ÃŽmprumuturi în curs" @@ -18869,6 +19536,7 @@ msgstr "Suport" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:162 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:164 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:160 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:157 #, fuzzy msgid "Rapports statistiques" msgstr "Statistici" @@ -18941,6 +19609,7 @@ msgid "Recherche fédérée" msgstr "Căutare" #: ../../library/Class/Feature/List.php:152 +#: ../../library/Class/Feature/List.php:153 #, fuzzy msgid "Recherche fédérée pour MusicMe" msgstr "Căutare" @@ -18948,6 +19617,7 @@ msgstr "Căutare" #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:223 #: ../../application/modules/opac/controllers/RechercheController.php:224 +#: ../../application/modules/opac/controllers/RechercheController.php:222 #, fuzzy msgid "Recherche guidée" msgstr "Căutare" @@ -19013,6 +19683,11 @@ msgstr "Căutare" msgid "Rechercher aussi sur " msgstr "Căutare după cuvintele conÅ£inute" +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:420 +#, fuzzy, php-format +msgid "Rechercher dans \"%s\"" +msgstr "Căutare după cuvintele conÅ£inute" + #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ActivitySubscribers.php:57 #, fuzzy @@ -19032,6 +19707,7 @@ msgid "Rechercher des utilisateurs " msgstr "Căutare după cuvintele conÅ£inute" #: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:419 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager.php:425 #, fuzzy msgid "Rechercher le terme saisie" msgstr "Căutare după cuvintele conÅ£inute" @@ -19088,6 +19764,7 @@ msgstr "Adaugă o bibliotecă " #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 #: ../../application/modules/admin/controllers/StatController.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:114 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:111 msgid "Recherches infructueuses" msgstr "Căutare fără rezultat" @@ -19102,6 +19779,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:287 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:292 +#: ../../application/modules/admin/controllers/FileManagerController.php:230 #, php-format msgid "Redimensionner l'image \"%s\"" msgstr "" @@ -19254,6 +19932,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:92 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:327 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:332 +#: ../../application/modules/admin/controllers/FileManagerController.php:269 #, fuzzy, php-format msgid "Renommer \"%s\"" msgstr "Rezervare" @@ -19453,6 +20132,7 @@ msgstr "Modificare bibliotecă: %s" #: ../../library/ZendAfi/View/Helper/BibView.php:61 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:178 #: ../../application/modules/admin/views/scripts/album/edit-images.phtml:168 +#: ../../library/ZendAfi/View/Helper/Button/Back.php:44 msgid "Retour" msgstr "ÃŽntoarcere" @@ -19633,6 +20313,7 @@ msgstr "Parolă nouă" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:237 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 #, fuzzy msgid "Rédacteur bibliothèque" msgstr "ÃŽn această bibliotecă." @@ -19641,6 +20322,7 @@ msgstr "ÃŽn această bibliotecă." #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:239 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:241 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:243 #, fuzzy msgid "Rédacteur portail" msgstr "Toată actualitatea portalului" @@ -19678,6 +20360,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:326 #: ../../application/modules/opac/controllers/AuthController.php:333 +#: ../../application/modules/opac/controllers/AuthController.php:328 #, fuzzy msgid "Réinitialisation du mot de passe" msgstr "Parolă nouă" @@ -19750,6 +20433,7 @@ msgstr "" #: ../../application/modules/telephone/views/scripts/recherche/reservation.phtml:2 #: ../../application/modules/opac/controllers/RechercheController.php:563 #: ../../application/modules/opac/controllers/RechercheController.php:578 +#: ../../application/modules/opac/controllers/RechercheController.php:581 #, fuzzy msgid "Réservation" msgstr "Rezervări în curs" @@ -19805,8 +20489,7 @@ msgstr "" msgid "Réservation interdite pour l'abonné." msgstr "Rezervări în curs" -#: ../../library/Class/User/Cards.php:77 -#: ../../library/Class/User/Cards.php:77 +#: ../../library/Class/User/Cards.php:77 ../../library/Class/User/Cards.php:77 #, fuzzy msgid "Réservation introuvable" msgstr "Rezervări de instrucÅ£iuni" @@ -19911,6 +20594,7 @@ msgstr "Rezultatele următoare" #: ../../library/ZendAfi/View/Helper/ListeNotices/ChronoSource.php:38 #: ../../application/modules/opac/controllers/RechercheController.php:202 #: ../../application/modules/opac/controllers/RechercheController.php:203 +#: ../../application/modules/opac/controllers/RechercheController.php:207 msgid "Résultat de la recherche" msgstr "Rezultatul căutarii" @@ -20046,6 +20730,7 @@ msgstr "Modificare bibliotecă: %s" #: ../../library/ZendAfi/View/Helper/Abonne/Activities.php:34 #: ../../application/modules/opac/controllers/AbonneController.php:1170 #: ../../application/modules/opac/controllers/AbonneController.php:1172 +#: ../../application/modules/opac/controllers/AbonneController.php:1187 #, fuzzy msgid "S'inscrire à une activité" msgstr "ÃŽnscriere la portal" @@ -20059,6 +20744,7 @@ msgstr "" #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:85 #: ../../application/modules/admin/views/scripts/index/index.phtml:74 +#: ../../application/modules/admin/views/scripts/index/index.phtml:68 msgid "Salle de discussion #Bokeh" msgstr "" @@ -20173,12 +20859,14 @@ msgstr "Conectare " #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:115 #: ../../library/Class/TableDescription/PNBItemsExport.php:41 #: ../../library/Class/TableDescription/PNBLoans.php:36 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:106 msgid "Section" msgstr "SecÅ£ie" #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:161 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 #: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:171 +#: ../../library/ZendAfi/View/Helper/TagCriteresRecherche.php:173 #, fuzzy, php-format msgid "Section: %s" msgstr "SecÅ£ii" @@ -20302,6 +20990,8 @@ msgstr "Serviciu indisponibil" #: ../../application/modules/opac/controllers/NoticeajaxController.php:326 #: ../../application/modules/opac/controllers/NoticeajaxController.php:372 #: ../../library/ZendAfi/View/Helper/Trailer.php:32 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:325 +#: ../../application/modules/opac/controllers/NoticeajaxController.php:371 msgid "Service non disponible" msgstr "Serviciu indisponibil" @@ -20355,7 +21045,7 @@ msgid "Sets du serveur OAI Cité de la Musique à moissonner" msgstr "" #: ../../library/Class/AdminVar.php:374 ../../library/Class/AdminVar.php:375 -#: ../../library/Class/AdminVar.php:372 +#: ../../library/Class/AdminVar.php:372 ../../library/Class/AdminVar.php:377 msgid "" "Seuil d'alerte en heures pour détecter que les traitements d'intégration " "prennent trop de temps. Par défaut: 2" @@ -20366,6 +21056,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/auth/newsletter-register-mail.phtml:30 #: ../../library/Class/Users.php:1085 ../../library/Class/Users.php:1094 #: ../../library/Class/Users.php:1073 ../../library/Class/Users.php:1076 +#: ../../library/Class/Users.php:1080 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." @@ -20447,6 +21138,7 @@ msgstr "Rezervări în curs" #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:79 #: ../../application/modules/admin/views/scripts/index/index.phtml:68 +#: ../../application/modules/admin/views/scripts/index/index.phtml:62 #, fuzzy msgid "Site communautaire" msgstr "Consultare" @@ -20541,6 +21233,7 @@ msgstr "Sitotecă" #: ../../library/ZendAfi/Form/Admin/Sitotheque.php:63 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:61 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:85 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:79 msgid "Sitothèque" msgstr "Sitotecă" @@ -20636,6 +21329,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:113 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:112 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:109 msgid "Statistiques" msgstr "Statistici" @@ -20679,6 +21373,7 @@ msgstr "Statut" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:156 #: ../../library/ZendAfi/Form/Album.php:146 #: ../../library/ZendAfi/Form/Album.php:147 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:147 msgid "Statut" msgstr "Statut" @@ -20828,6 +21523,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/abonne/suggestion-achat-add.phtml:2 #: ../../library/ZendAfi/View/Helper/Abonne/SuggestionAchat.php:31 #: ../../library/ZendAfi/View/Helper/Search/Header.php:134 +#: ../../library/ZendAfi/View/Helper/Search/Header.php:136 msgid "Suggérer un achat" msgstr "" @@ -20894,6 +21590,7 @@ msgstr "Subiecte" #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:227 #: ../../library/ZendAfi/Acl/AdminControllerRoles.php:229 +#: ../../library/ZendAfi/Acl/AdminControllerRoles.php:231 #, fuzzy msgid "Super administrateur" msgstr "Utilizatori" @@ -21007,6 +21704,7 @@ msgstr "Åžtergere" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:102 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:103 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:196 +#: ../../application/modules/admin/controllers/FileManagerController.php:128 #, fuzzy, php-format msgid "Supprimer \"%s\"" msgstr "Åžtergere" @@ -21120,6 +21818,16 @@ msgstr "Solicitarea dvs. de înscriere " msgid "Supprimer la lettre d'information" msgstr "Modificare titlu coÅŸ" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:66 +#, fuzzy, php-format +msgid "Supprimer la recherche \"%s\"" +msgstr "Ștergere categorie" + +#: ../../library/ZendAfi/Controller/Plugin/ResourceDefinition/BookmarkedSearches.php:37 +#, fuzzy +msgid "Supprimer la recherche de mes favoris" +msgstr "Gestionare media" + #: ../../application/modules/admin/controllers/MultimediaController.php:61 #, fuzzy msgid "Supprimer la réservation ?" @@ -21217,6 +21925,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:138 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:137 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:134 msgid "Système" msgstr "Sistem" @@ -21344,6 +22053,10 @@ msgstr "" msgid "Tableau" msgstr "" +#: ../../application/modules/admin/views/scripts/bibnum/index.phtml:74 +msgid "Tableau de bord" +msgstr "" + #: ../../application/modules/admin/controllers/StatController.php:64 #: ../../application/modules/admin/controllers/StatController.php:62 #: ../../application/modules/admin/controllers/StatController.php:62 @@ -21426,11 +22139,12 @@ msgstr "Dimensiune :" #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../application/modules/opac/views/scripts/upload/upload.phtml:10 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:38 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:40 msgid "Taille :" msgstr "Dimensiune :" #: ../../library/Class/AdminVar.php:394 ../../library/Class/AdminVar.php:396 -#: ../../library/Class/AdminVar.php:393 +#: ../../library/Class/AdminVar.php:393 ../../library/Class/AdminVar.php:398 msgid "Taille du dossier userfiles en méga octets." msgstr "" @@ -21496,6 +22210,7 @@ msgstr "Teritoriu" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:123 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:122 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:119 msgid "Territoires" msgstr "Teritorii" @@ -21520,6 +22235,7 @@ msgstr "Test servicii web" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:145 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:141 msgid "Test des web-services" msgstr "Test servicii web" @@ -21532,6 +22248,7 @@ msgstr "CoÅŸurile dvs. de documente" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:148 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:147 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:144 msgid "Test envoi mails" msgstr "" @@ -21615,7 +22332,7 @@ msgid "Texte de confirmation" msgstr "Eroare de configurare" #: ../../library/Class/AdminVar.php:280 ../../library/Class/AdminVar.php:281 -#: ../../library/Class/AdminVar.php:278 +#: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:280 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 " @@ -21623,7 +22340,7 @@ msgid "" msgstr "" #: ../../library/Class/AdminVar.php:278 ../../library/Class/AdminVar.php:279 -#: ../../library/Class/AdminVar.php:276 +#: ../../library/Class/AdminVar.php:276 ../../library/Class/AdminVar.php:278 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 " @@ -21886,6 +22603,8 @@ msgstr "Criterii de selecÅ£ie" #: ../../library/ZendAfi/View/Helper/Abonne/Loans.php:58 #: ../../application/modules/admin/views/scripts/catalogue/tester.phtml:21 #: ../../library/ZendAfi/Form/Album.php:131 +#: ../../library/Class/CriteresRecherche.php:142 +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:61 msgid "Titre" msgstr "Titlu" @@ -21908,6 +22627,7 @@ msgstr "Titlu" #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:461 #: ../../application/modules/opac/controllers/RechercheController.php:476 +#: ../../application/modules/opac/controllers/RechercheController.php:479 #, php-format msgid "Titre : %s" msgstr "Titlu : %s" @@ -21945,6 +22665,11 @@ msgstr "etichetă a instrucÅ£iunii" msgid "Titre de la boîte" msgstr "etichetă a instrucÅ£iunii" +#: ../../library/ZendAfi/Form/User/BookmarkedSearch.php:32 +#, fuzzy +msgid "Titre de votre recherche" +msgstr "Căsuţă de căutare" + #: ../../library/ZendAfi/Form/CreerPanier.php:30 #: ../../library/ZendAfi/Form/Panier.php:32 #: ../../library/ZendAfi/Form/CreerPanier.php:30 @@ -22060,6 +22785,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 #: ../../library/ZendAfi/Form/Configuration/Widget/PremierChapitre.php:37 #: ../../library/ZendAfi/View/Helper/TagHistoriqueRecherche.php:30 +#: ../../library/ZendAfi/View/Helper/Search/Criterias.php:30 #, fuzzy msgid "Tous les documents" msgstr "Tipuri de documente" @@ -22207,6 +22933,7 @@ msgstr "Traducere" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:104 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:103 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:100 msgid "Traductions" msgstr "Traduceri" @@ -22424,6 +23151,8 @@ msgstr "Tip de document : %s " #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:157 #: ../../library/ZendAfi/Form/Album.php:170 #: ../../library/ZendAfi/Form/Album.php:171 +#: ../../library/Class/CriteresRecherche.php:145 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:148 msgid "Type de document" msgstr "Tip de document" @@ -22557,6 +23286,7 @@ msgstr "" #: ../../library/ZendAfi/Form/Configuration/Profile.php:323 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:172 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:168 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:165 msgid "Types de documents" msgstr "Tipuri de documente" @@ -22643,6 +23373,7 @@ msgstr "Telefon" #: ../../library/ZendAfi/View/Helper/MonocleReaderServerSide.php:112 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:93 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:85 #, fuzzy, php-format msgid "Télécharger" msgstr "Telefon" @@ -22754,6 +23485,7 @@ msgstr "DescărcaÅ£i mai multe fiÅŸiere" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:239 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:244 +#: ../../application/modules/admin/controllers/FileManagerController.php:181 #, fuzzy, php-format msgid "Téléverser un fichier dans \"%s\"" msgstr "DescărcaÅ£i mai multe fiÅŸiere" @@ -22793,6 +23525,16 @@ msgstr "" msgid "URL Objet B" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:234 +#, php-format +msgid "URL SSO générée par /modules/%s pour l'utilisateur \"%s\"" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:243 +#, php-format +msgid "URL SSO générée pour l'utilisateur \"%s\" et l'album \"%s\"" +msgstr "" + #: ../../library/ZendAfi/Form/BiographieNotice.php:28 #: ../../library/ZendAfi/Form/BiographieNotice.php:28 #, fuzzy @@ -22855,13 +23597,11 @@ msgstr "ÅŸi profil" msgid "URL du site web" msgstr "" -#: ../../library/Class/FRBR/Link.php:159 -#: ../../library/Class/FRBR/Link.php:159 +#: ../../library/Class/FRBR/Link.php:159 ../../library/Class/FRBR/Link.php:159 msgid "URL objet A est requis" msgstr "" -#: ../../library/Class/FRBR/Link.php:161 -#: ../../library/Class/FRBR/Link.php:161 +#: ../../library/Class/FRBR/Link.php:161 ../../library/Class/FRBR/Link.php:161 msgid "URL objet B est requis" msgstr "" @@ -22877,6 +23617,11 @@ msgstr "Câmpuri selectate" msgid "URL principale" msgstr "Modificare titlu coÅŸ" +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:56 +#, fuzzy +msgid "URL publique :" +msgstr "Critică" + #: ../../library/Class/IntProfilDonnees.php:49 #: ../../library/Class/IntProfilDonnees.php:49 msgid "UTF-8" @@ -22919,6 +23664,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:553 #: ../../application/modules/opac/controllers/AuthController.php:587 #: ../../application/modules/opac/controllers/AuthController.php:594 +#: ../../application/modules/opac/controllers/AuthController.php:589 #, php-format msgid "" "Un email de confirmation de préinscription vous a été envoyé à l'adresse %s ." @@ -22941,9 +23687,9 @@ msgid "Un libellé est requis" msgstr "specificaÅ£ia este obligatorie." #: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1142 -#: ../../library/Class/User/LostPass.php:110 -#: ../../library/Class/Users.php:1151 ../../library/Class/Users.php:1130 -#: ../../library/Class/Users.php:1133 +#: ../../library/Class/User/LostPass.php:110 ../../library/Class/Users.php:1151 +#: ../../library/Class/Users.php:1130 ../../library/Class/Users.php:1133 +#: ../../library/Class/Users.php:1137 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." @@ -22961,6 +23707,7 @@ msgid "Un modèle a déjà le même nom : %s" msgstr "" #: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:47 +#: ../../library/ZendAfi/Form/Admin/FileManager/Import.php:51 msgid "Un seul fichier doit être transféré." msgstr "" @@ -22969,6 +23716,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:396 #: ../../application/modules/opac/controllers/AuthController.php:430 #: ../../application/modules/opac/controllers/AuthController.php:437 +#: ../../application/modules/opac/controllers/AuthController.php:432 msgid "" "Un utilisateur a déjà renseigné cet email. Merci de vous identifier avec le " "compte qui utilise cet email." @@ -22986,6 +23734,7 @@ msgstr "specificaÅ£ia este obligatorie." #: ../../application/modules/opac/controllers/AuthController.php:424 #: ../../application/modules/opac/controllers/AuthController.php:458 #: ../../application/modules/opac/controllers/AuthController.php:465 +#: ../../application/modules/opac/controllers/AuthController.php:460 msgid "" "Une demande de confirmation d'inscription vous a été envoyée à l'adresse " "mail renseignée." @@ -22993,6 +23742,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:276 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:281 +#: ../../application/modules/admin/controllers/FileManagerController.php:218 msgid "Une erreur c' produite. Le téléversage a échoué." msgstr "" @@ -23044,6 +23794,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:420 #: ../../application/modules/opac/controllers/AuthController.php:454 #: ../../application/modules/opac/controllers/AuthController.php:461 +#: ../../application/modules/opac/controllers/AuthController.php:456 msgid "" "Une erreur est survenue à l'envoi du mail de confirmation. Veuillez " "réessayer. Si le problème persiste, veuillez contacter votre médiathèque." @@ -23054,6 +23805,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1154 #: ../../application/modules/opac/controllers/AbonneController.php:1147 #: ../../application/modules/opac/controllers/AbonneController.php:1149 +#: ../../application/modules/opac/controllers/AbonneController.php:1164 #, php-format msgid "Une erreur s'est produite en ajoutant la carte de \"%s\" : %s" msgstr "" @@ -23071,7 +23823,8 @@ msgstr "" #: ../../library/Class/Profil.php:1376 ../../library/Class/Profil.php:1369 #: ../../library/Class/Profil.php:1373 ../../library/Class/Profil.php:1377 #: ../../library/Class/Profil.php:1389 ../../library/Class/Profil.php:1393 -#: ../../library/Class/Profil.php:1397 +#: ../../library/Class/Profil.php:1397 ../../library/Class/Profil.php:1390 +#: ../../library/Class/Profil.php:1394 ../../library/Class/Profil.php:1398 msgid "Une marge interne de division ne peut pas excéder 20 pixels." msgstr "" @@ -23150,19 +23903,30 @@ msgstr "Plan de acces" msgid "Url d'import d'un agenda TYPO3" msgstr "" +#: ../../library/ZendAfi/View/Helper/Notice/Dilicom.php:65 +#, fuzzy +msgid "Url de la ressource externe Dilicom" +msgstr "Adaugă resurse" + #: ../../library/Class/AdminVar.php:246 ../../library/Class/AdminVar.php:247 -#: ../../library/Class/AdminVar.php:244 +#: ../../library/Class/AdminVar.php:244 ../../library/Class/AdminVar.php:246 #, fuzzy msgid "Url de recherche" msgstr "Tip de căutare" #: ../../library/Class/AdminVar.php:386 ../../library/Class/AdminVar.php:387 #: ../../library/Class/AdminVar.php:389 ../../library/Class/AdminVar.php:386 +#: ../../library/Class/AdminVar.php:391 msgid "Url du connecteur Le Social" msgstr "" +#: ../../library/ZendAfi/View/Helper/Album/Loans.php:58 +#, fuzzy +msgid "Url du fichier de DRM" +msgstr "Export de coÅŸ" + #: ../../library/Class/AdminVar.php:232 ../../library/Class/AdminVar.php:233 -#: ../../library/Class/AdminVar.php:230 +#: ../../library/Class/AdminVar.php:230 ../../library/Class/AdminVar.php:232 #, fuzzy msgid "Url du proxy Redmine" msgstr "Numele de utilizator sau parola incorecte " @@ -23173,7 +23937,7 @@ msgid "Url du serveur PNB Dilicom" msgstr "" #: ../../library/Class/AdminVar.php:231 ../../library/Class/AdminVar.php:232 -#: ../../library/Class/AdminVar.php:229 +#: ../../library/Class/AdminVar.php:229 ../../library/Class/AdminVar.php:231 msgid "Url du serveur redmine" msgstr "" @@ -23225,8 +23989,14 @@ msgstr "CoÅŸurile dvs. de documente" msgid "Utilisateur courant : %s" msgstr "CoÅŸurile dvs. de documente" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:217 +#, fuzzy +msgid "Utilisateur créé pour ce test" +msgstr "CoÅŸurile dvs. de documente" + #: ../../application/modules/opac/controllers/AuthController.php:329 #: ../../application/modules/opac/controllers/AuthController.php:336 +#: ../../application/modules/opac/controllers/AuthController.php:331 #, fuzzy msgid "Utilisateur inconnu" msgstr "CoÅŸurile dvs. de documente" @@ -23239,6 +24009,7 @@ msgstr "Utilizator" #: ../../application/modules/admin/controllers/IndexController.php:170 #: ../../application/modules/admin/controllers/UsersController.php:117 +#: ../../application/modules/admin/controllers/IndexController.php:178 #, fuzzy msgid "Utilisateur invalide" msgstr "Utilizator" @@ -23260,6 +24031,7 @@ msgstr "Utilizatori" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 #: ../../library/Class/Systeme/Report.php:41 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:124 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:121 msgid "Utilisateurs" msgstr "Utilizatori" @@ -23394,11 +24166,13 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/BoutonIco.php:71 #: ../../library/ZendAfi/View/Helper/Bouton.php:72 #: ../../library/ZendAfi/View/Helper/Panier/Edit.php:85 +#: ../../library/ZendAfi/View/Helper/Button/Submit.php:52 msgid "Valider" msgstr "Validare" #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 #: ../../library/ZendAfi/View/Helper/Button/Continue.php:36 +#: ../../library/ZendAfi/View/Helper/Button/Continue.php:31 #, fuzzy msgid "Valider et continuer" msgstr "Validare selecÅ£ie" @@ -23439,6 +24213,7 @@ msgstr "Variabilă" #: ../../application/modules/admin/controllers/IndexController.php:93 #: ../../application/modules/admin/controllers/IndexController.php:102 #: ../../application/modules/admin/controllers/IndexController.php:102 +#: ../../application/modules/admin/controllers/IndexController.php:110 #, fuzzy, php-format msgid "Variable %s sauvegardée" msgstr "Nu a fost găsit nici un articol" @@ -23448,6 +24223,7 @@ msgstr "Nu a fost găsit nici un articol" #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 #: ../../library/Class/Systeme/Report.php:57 #: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:142 +#: ../../library/ZendAfi/View/Helper/Admin/ContentNav.php:139 msgid "Variables" msgstr "Variabile" @@ -23485,6 +24261,7 @@ msgstr "Versiune" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:64 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:55 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:52 #, fuzzy, php-format msgid "Version de : \"%s\"" msgstr "Ștergere categorie" @@ -23516,6 +24293,8 @@ msgstr "Nici un conÅ£inut" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:93 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:69 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:66 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:78 #, fuzzy msgid "Version introuvable" msgstr "Rezervări de instrucÅ£iuni" @@ -23525,6 +24304,7 @@ msgstr "Rezervări de instrucÅ£iuni" #: ../../library/ZendAfi/Controller/Plugin/Versionning/Article.php:142 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Widget.php:99 #: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:84 +#: ../../library/ZendAfi/Controller/Plugin/Versionning/Abstract.php:81 #, fuzzy msgid "Version supprimée" msgstr "Rezervări în curs" @@ -23547,6 +24327,16 @@ msgstr "Ștergere categorie" msgid "Versions de l'article : \"%s\"" msgstr "Ștergere categorie" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:267 +msgid "Veuillez activer la ressource pour pouvoir gérer le moissonage" +msgstr "" + +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:114 +msgid "" +"Veuillez activer la ressource pour pouvoir gérer les droits d'accès des " +"groupes" +msgstr "" + #: ../../application/modules/opac/controllers/PanierController.php:215 #: ../../application/modules/opac/controllers/PanierController.php:215 #, fuzzy @@ -23559,9 +24349,16 @@ msgstr "Trebuie să introduceÅ£i un titlu " msgid "Veuillez choisir une notice" msgstr "Trebuie să introduceÅ£i un titlu " +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:187 +msgid "" +"Veuillez configurer les droits de cette ressource pour obtenir une connexion " +"SSO" +msgstr "" + #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:31 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 #: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:32 +#: ../../library/ZendAfi/View/Helper/AjaxRedirect.php:36 #, fuzzy msgid "Veuillez patienter ..." msgstr "Vă rugăm să aÅŸteptaÅ£i : citire în curs..." @@ -23590,6 +24387,10 @@ msgstr "" msgid "Veuillez renseigner la variable PIWIK_AUTH_TOKEN et JS_STAT" msgstr "" +#: ../../application/modules/admin/controllers/IndexController.php:81 +msgid "Veuillez renseigner le paramètre \"cle\"." +msgstr "" + #: ../../application/modules/admin/views/scripts/premier-chapitre/maj-ref.phtml:21 #: ../../application/modules/admin/controllers/PremierChapitreController.php:85 #: ../../application/modules/admin/controllers/PremierChapitreController.php:105 @@ -23767,6 +24568,11 @@ msgstr "OraÅŸ" msgid "Visionner le film dans son intégralité" msgstr "" +#: ../../application/modules/admin/views/scripts/cms/_newsform_head.phtml:11 +#, php-format +msgid "Visualisation de l'article \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:649 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 #: ../../library/ZendAfi/Controller/Plugin/Manager/Album.php:648 @@ -23776,6 +24582,11 @@ msgstr "" msgid "Visualisation de l\\album" msgstr "Vizualizare instrucÅ£iuni" +#: ../../application/modules/admin/views/scripts/catalogue/paniers.phtml:18 +#, fuzzy, php-format +msgid "Visualisation du panier \"%s\" dans un nouvel onglet" +msgstr "Rezultatul căutarii" + #: ../../library/ZendAfi/View/Helper/BoutonIco.php:60 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:79 #: ../../library/ZendAfi/View/Helper/BoutonIco.php:73 @@ -23792,6 +24603,11 @@ msgstr "Vizualizare" msgid "Visualiser la newsletter" msgstr "Validare selecÅ£ie" +#: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:42 +#, fuzzy, php-format +msgid "Visualiser le domaine \"%s\" dans un nouvel onglet" +msgstr "Modificare bibliotecă: %s" + #: ../../application/modules/admin/views/scripts/catalogue/_catalogue_row.phtml:41 #, fuzzy, php-format msgid "Visualiser le domaine : %s" @@ -23809,6 +24625,11 @@ msgstr "Tip de document" msgid "Vodeclic" msgstr "" +#: ../../library/Class/User/BookmarkedSearch.php:134 +#, fuzzy, php-format +msgid "Voici les %s premiers" +msgstr "VedeÅ£i planul" + #: ../../application/modules/admin/views/scripts/cms/versions.phtml:14 #: ../../library/ZendAfi/View/Helper/RenderSession.php:206 #: ../../library/ZendAfi/View/Helper/Notice/ExemplairesTable.php:420 @@ -23823,6 +24644,7 @@ msgstr "VedeÅ£i" #: ../../library/Class/TableDescription/PNBItems.php:39 #: ../../library/Class/TableDescription/PNBItems.php:39 +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:249 #, fuzzy msgid "Voir l'album" msgstr "Modificare bibliotecă: %s" @@ -23838,6 +24660,11 @@ msgstr "" msgid "Voir la notice" msgstr "VedeÅ£i instrucÅ£iunea" +#: ../../library/ZendAfi/View/Helper/ListeNotices/TableauPanier.php:33 +#, php-format +msgid "Voir la notice \"%s\" dans un nouvel onglet" +msgstr "" + #: ../../application/modules/admin/views/scripts/users/manage-double.phtml:41 #, fuzzy msgid "Voir la requete" @@ -23849,6 +24676,11 @@ msgstr "VedeÅ£i instrucÅ£iunea" msgid "Voir la réponse." msgstr "VedeÅ£i instrucÅ£iunea" +#: ../../application/modules/admin/views/scripts/feature/index.phtml:64 +#, fuzzy, php-format +msgid "Voir la vidéo de la fonctionnalité : \"%s\"" +msgstr "Actualităţi :" + #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:33 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:34 #, fuzzy, php-format @@ -23879,6 +24711,11 @@ msgstr "VedeÅ£i planul" msgid "Voir le plan" msgstr "VedeÅ£i planul" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:31 +#, fuzzy +msgid "Voir le résultat de la recherche" +msgstr "Rezultatul căutarii" + #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #: ../../library/ZendAfi/Controller/Plugin/Mailer/SearchResult.php:36 #, fuzzy @@ -23894,12 +24731,22 @@ msgstr "Rezultatul căutarii" msgid "Voir le site" msgstr "VedeÅ£i site-ul" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:323 +#, fuzzy +msgid "Voir les albums" +msgstr "Modificare bibliotecă: %s" + #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #: ../../library/ZendAfi/View/Helper/ListeNotices/Mur.php:133 #, fuzzy, php-format msgid "Voir les avis du document \"%s\"" msgstr "CoÅŸurile dvs. de documente" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:20 +#, fuzzy, php-format +msgid "Voir les dernières nouveautés de la recherche \"%s\"" +msgstr "Ultimele dvs. căutari " + #: ../../library/Class/WebService/ICalendar.php:175 #: ../../library/Class/WebService/ICalendar.php:175 #, fuzzy @@ -24133,6 +24980,7 @@ msgstr "Părerea dvs." #: ../../application/modules/opac/controllers/AbonneController.php:1077 #: ../../application/modules/opac/controllers/AbonneController.php:1070 #: ../../application/modules/opac/controllers/AbonneController.php:1072 +#: ../../application/modules/opac/controllers/AbonneController.php:1087 #, fuzzy, php-format msgid "Votre carte a été retirée à %s" msgstr "Rezervarea dvs. a fost înregistrată." @@ -24177,6 +25025,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:338 #: ../../application/modules/opac/controllers/AuthController.php:372 #: ../../application/modules/opac/controllers/AuthController.php:379 +#: ../../application/modules/opac/controllers/AuthController.php:374 msgid "Votre demande d'inscription" msgstr "Solicitarea dvs. de înscriere " @@ -24192,9 +25041,9 @@ msgid "Votre fiche" msgstr "FiÅŸa dvs. " #: ../../library/Class/Users.php:1133 ../../library/Class/Users.php:1133 -#: ../../library/Class/User/LostPass.php:102 -#: ../../library/Class/Users.php:1142 ../../library/Class/Users.php:1121 -#: ../../library/Class/Users.php:1124 +#: ../../library/Class/User/LostPass.php:102 ../../library/Class/Users.php:1142 +#: ../../library/Class/Users.php:1121 ../../library/Class/Users.php:1124 +#: ../../library/Class/Users.php:1128 #, fuzzy, php-format msgid "Votre identifiant : %s\n" msgstr "Numele dvs. de utilizator: %s" @@ -24246,15 +25095,16 @@ msgid "Votre message : " msgstr "Mesajul dvs. :" #: ../../library/Class/Users.php:1134 ../../library/Class/Users.php:1134 -#: ../../library/Class/User/LostPass.php:103 -#: ../../library/Class/Users.php:1143 ../../library/Class/Users.php:1122 -#: ../../library/Class/Users.php:1125 +#: ../../library/Class/User/LostPass.php:103 ../../library/Class/Users.php:1143 +#: ../../library/Class/Users.php:1122 ../../library/Class/Users.php:1125 +#: ../../library/Class/Users.php:1129 #, fuzzy, php-format msgid "Votre mot de passe : %s\n" msgstr "Parola dvs. :%s" #: ../../application/modules/opac/controllers/AuthController.php:349 #: ../../application/modules/opac/controllers/AuthController.php:356 +#: ../../application/modules/opac/controllers/AuthController.php:351 msgid "Votre mot de passe a été réinitialisé, vous pouvez vous connecter." msgstr "" @@ -24303,12 +25153,14 @@ msgstr "Rezervarea dvs. a fost înregistrată." #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:541 #: ../../application/modules/opac/controllers/RechercheController.php:556 +#: ../../application/modules/opac/controllers/RechercheController.php:559 msgid "Votre réservation est enregistrée." msgstr "Rezervarea dvs. a fost înregistrată." #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:589 #: ../../application/modules/opac/controllers/RechercheController.php:604 +#: ../../application/modules/opac/controllers/RechercheController.php:607 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -24318,6 +25170,7 @@ msgstr "" #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:587 #: ../../application/modules/opac/controllers/RechercheController.php:602 +#: ../../application/modules/opac/controllers/RechercheController.php:605 #, php-format msgid "" "Votre réservation est enregistrée.<br>Nous vous informerons quand le document" @@ -24424,6 +25277,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AuthController.php:474 #: ../../application/modules/opac/controllers/AuthController.php:508 #: ../../application/modules/opac/controllers/AuthController.php:515 +#: ../../application/modules/opac/controllers/AuthController.php:510 msgid "Vous avez bien été abonné à la newsletter: " msgstr "" @@ -24432,6 +25286,7 @@ msgstr "" #: ../../application/modules/opac/controllers/AbonneController.php:1143 #: ../../application/modules/opac/controllers/AbonneController.php:1136 #: ../../application/modules/opac/controllers/AbonneController.php:1138 +#: ../../application/modules/opac/controllers/AbonneController.php:1153 #, php-format msgid "Vous avez déjà ajouté la carte de \"%s\"" msgstr "" @@ -24447,7 +25302,7 @@ msgstr "AveÅ£i %d rezervări în curs" #: ../../library/Class/Users.php:1083 ../../library/Class/Users.php:1083 #: ../../library/Class/Users.php:1092 ../../library/Class/Users.php:1071 -#: ../../library/Class/Users.php:1074 +#: ../../library/Class/Users.php:1074 ../../library/Class/Users.php:1078 #, fuzzy msgid "Vous avez fait une demande d'inscription sur le portail:" msgstr "AÅ£i făcut o cerere de înscriere pe portal." @@ -24459,9 +25314,9 @@ msgid "Vous avez fait une demande d'inscription à la lettre d'information:" msgstr "AÅ£i făcut o cerere de înscriere pe portal." #: ../../library/Class/Users.php:1132 ../../library/Class/Users.php:1132 -#: ../../library/Class/User/LostPass.php:101 -#: ../../library/Class/Users.php:1141 ../../library/Class/Users.php:1120 -#: ../../library/Class/Users.php:1123 +#: ../../library/Class/User/LostPass.php:101 ../../library/Class/Users.php:1141 +#: ../../library/Class/Users.php:1120 ../../library/Class/Users.php:1123 +#: ../../library/Class/Users.php:1127 msgid "Vous avez fait une demande de mot de passe sur le portail." msgstr "AÅ£i făcut o cerere de parolă pe portal." @@ -24487,13 +25342,13 @@ msgstr "Câmpul 'Nume de utilizator' trebuie să nu depăşească 50 de caracter #: ../../library/Class/Users.php:1017 ../../library/Class/Users.php:1017 #: ../../library/Class/Users.php:1026 ../../library/Class/Users.php:1005 -#: ../../library/Class/Users.php:1007 +#: ../../library/Class/Users.php:1007 ../../library/Class/Users.php:1011 msgid "Vous devez compléter le champ 'Identifiant'" msgstr "Trebuie să completaÅ£i câmpul ‘Nume de utilizator’" #: ../../library/Class/Users.php:1018 ../../library/Class/Users.php:1018 #: ../../library/Class/Users.php:1027 ../../library/Class/Users.php:1006 -#: ../../library/Class/Users.php:1008 +#: ../../library/Class/Users.php:1008 ../../library/Class/Users.php:1012 msgid "Vous devez compléter le champ 'Mot de passe'" msgstr "Trebuie să completaÅ£i câmpul ‘Parolă’" @@ -24573,7 +25428,7 @@ msgstr "" #: ../../library/Class/Users.php:1048 ../../library/Class/Users.php:1048 #: ../../library/Class/Users.php:1057 ../../library/Class/Users.php:1036 -#: ../../library/Class/Users.php:1038 +#: ../../library/Class/Users.php:1038 ../../library/Class/Users.php:1042 msgid "Vous devez fournir une adresse mail valide" msgstr "" @@ -24609,7 +25464,7 @@ msgstr "Trebuie să introduceÅ£i o parolă " #: ../../library/Class/Users.php:1051 ../../library/Class/Users.php:1051 #: ../../library/Class/Users.php:1060 ../../library/Class/Users.php:1039 -#: ../../library/Class/Users.php:1041 +#: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1045 #, fuzzy msgid "Vous devez saisir un numéro de téléphone" msgstr "Trebuie să introduceÅ£i o parolă " @@ -24660,6 +25515,12 @@ msgid "" "ressource." msgstr "Trebuie să vă conectaÅ£i pentru a rezerva un document." +#: ../../library/Class/DigitalResource/Controller.php:39 +#: ../../library/Class/DigitalResource/Controller.php:53 +#, fuzzy +msgid "Vous devez vous connecter pour accéder à cette page" +msgstr "Trebuie să vă conectaÅ£i pentru a rezerva un document." + #: ../../library/Class/CommSigb.php:118 ../../library/Class/CommSigb.php:118 msgid "Vous devez vous connecter pour réserver un document." msgstr "Trebuie să vă conectaÅ£i pentru a rezerva un document." @@ -24682,6 +25543,13 @@ msgstr "" msgid "Vous devez vous rendre à l'adresse %s pour finaliser votre inscription." msgstr "Tocmai v-a fost trimis un email cu datele dvs. de conectare." +#: ../../library/Class/DigitalResource/Controller.php:42 +#, fuzzy +msgid "" +"Vous devez être connecté avec un compte adminitrateur pour accéder à cette " +"page" +msgstr "Trebuie să vă conectaÅ£i pentru a rezerva un document." + #: ../../library/Class/Systeme/PergameService.php:191 #: ../../library/Class/Systeme/PergameService.php:191 #, fuzzy @@ -24808,6 +25676,11 @@ msgstr "Nu aveÅ£i nici o rezervare în curs. " msgid "Vous n'avez pas de charte graphique d'installée dans Bokeh" msgstr "" +#: ../../application/modules/opac/views/scripts/abonne/settings.phtml:79 +#, fuzzy +msgid "Vous n'avez pas enregistré de recherche dans vos favoris" +msgstr "Nu aÅ£i introdus o solicitare." + #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:35 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:50 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:90 @@ -24823,6 +25696,7 @@ msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:121 #: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:149 #: ../../library/ZendAfi/Controller/Plugin/Manager/Article.php:186 +#: ../../library/ZendAfi/Controller/Plugin/Manager/Manager.php:176 #, fuzzy, php-format msgid "Vous n'avez pas la permission \"%s\"" msgstr "Nu aÅ£i introdus un nume de utilizator." @@ -24847,19 +25721,20 @@ msgstr "Nu aÅ£i introdus o solicitare." #: ../../library/Class/Users.php:1044 ../../library/Class/Users.php:1044 #: ../../library/Class/Users.php:1053 ../../library/Class/Users.php:1032 -#: ../../library/Class/Users.php:1034 +#: ../../library/Class/Users.php:1034 ../../library/Class/Users.php:1038 #, fuzzy msgid "Vous n'avez pas les droits suffisants pour diriger une activité" msgstr "Nu aÅ£i introdus o solicitare." #: ../../library/Class/Users.php:1041 ../../library/Class/Users.php:1041 #: ../../library/Class/Users.php:1050 ../../library/Class/Users.php:1029 -#: ../../library/Class/Users.php:1031 +#: ../../library/Class/Users.php:1031 ../../library/Class/Users.php:1035 #, fuzzy msgid "Vous n'avez pas les droits suffisants pour suivre une activité" msgstr "Nu aÅ£i introdus o solicitare." #: ../../application/modules/admin/controllers/IndexController.php:165 +#: ../../application/modules/admin/controllers/IndexController.php:173 #, fuzzy msgid "" "Vous n'avez pas les droits suffisants pour utiliser cette fonctionnalité." @@ -24920,6 +25795,7 @@ msgstr "Nu aÅ£i introdus nici o cheie." #: ../../application/modules/opac/controllers/AbonneController.php:1066 #: ../../application/modules/opac/controllers/AbonneController.php:1059 #: ../../application/modules/opac/controllers/AbonneController.php:1061 +#: ../../application/modules/opac/controllers/AbonneController.php:1076 #, php-format msgid "Vous n'utilisez plus la carte de %s" msgstr "" @@ -24952,11 +25828,13 @@ msgstr "la buletinul informativ" #: ../../application/modules/opac/controllers/AbonneController.php:1137 #: ../../application/modules/opac/controllers/AbonneController.php:1130 #: ../../application/modules/opac/controllers/AbonneController.php:1132 +#: ../../application/modules/opac/controllers/AbonneController.php:1147 msgid "Vous ne pouvez pas ajouter votre propre carte" msgstr "" #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:398 #: ../../library/ZendAfi/Controller/Plugin/Manager/FileManager.php:407 +#: ../../application/modules/admin/controllers/FileManagerController.php:344 #, php-format msgid "" "Vous ne pouvez pas copier ou déplacer un élément avec lui-même : \"%s\" est " @@ -24970,6 +25848,12 @@ msgid "" "documents suivants :" msgstr "" +#: ../../application/modules/admin/controllers/FeatureController.php:79 +msgid "" +"Vous ne serez plus notifié des nouvelles fonctionnalités jusqu'à la " +"prochaine mise à jour du logicel." +msgstr "" + #: ../../library/Class/Feature/List.php:87 msgid "" "Vous pouvez accéder à l'historique des modifications d'un article " @@ -24977,6 +25861,7 @@ msgid "" msgstr "" #: ../../library/Class/Feature/List.php:164 +#: ../../library/Class/Feature/List.php:165 msgid "Vous pouvez désormais proposer une url de bande-annonce pour une notice" msgstr "" @@ -25046,6 +25931,8 @@ msgstr "la buletinul informativ" #: ../../application/modules/admin/controllers/IndexController.php:179 #: ../../application/modules/admin/controllers/IndexController.php:178 #: ../../application/modules/admin/controllers/IndexController.php:190 +#: ../../application/modules/admin/controllers/IndexController.php:186 +#: ../../application/modules/admin/controllers/IndexController.php:198 #, php-format msgid "Vous êtes maintenant connecté avec l'utilisateur \"%s\"" msgstr "" @@ -25080,6 +25967,7 @@ msgstr "Web" #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:81 #: ../../application/modules/admin/views/scripts/index/index.phtml:70 +#: ../../application/modules/admin/views/scripts/index/index.phtml:64 msgid "Wiki Bokeh" msgstr "" @@ -25146,6 +26034,7 @@ msgstr "SituaÅ£i ca exemplar" #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:67 #: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:79 +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:71 msgid "Zones" msgstr "" @@ -25377,6 +26266,7 @@ msgstr "conÅ£ine" #: ../../library/Class/Newsletter.php:381 #: ../../library/Class/Newsletter.php:381 +#: ../../library/Class/Newsletter.php:333 msgid "copie" msgstr "" @@ -25502,6 +26392,11 @@ msgstr "Număr de diviziuni" msgid "des réservations" msgstr "Moderări" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:83 +#, fuzzy +msgid "description" +msgstr "Descriere" + #: ../../application/modules/opac/controllers/IndexController.php:121 #: ../../application/modules/opac/controllers/IndexController.php:121 msgid "" @@ -25836,8 +26731,7 @@ msgstr "De la %s la %s" msgid "jusqu'à " msgstr "până la" -#: ../../library/Class/Ouverture.php:180 -#: ../../library/Class/Ouverture.php:180 +#: ../../library/Class/Ouverture.php:180 ../../library/Class/Ouverture.php:180 #, fuzzy, php-format msgid "le %s" msgstr "%s" @@ -26135,6 +27029,7 @@ msgstr "Palmaresul vizualizărilor" #: ../../library/ZendAfi/Form/Configuration/Widget/Reviews.php:61 #: ../../library/ZendAfi/Form/Configuration/Widget/Tags.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 #, fuzzy msgid "non" msgstr "Nume" @@ -26304,6 +27199,7 @@ msgstr "coÅŸ nou" #: ../../library/ZendAfi/Form/Configuration/Widget/Carousel.php:68 #: ../../library/ZendAfi/Form/Configuration/Widget/Statistics.php:31 #: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:48 +#: ../../library/ZendAfi/View/Helper/Admin/FileManager/File.php:50 #, fuzzy msgid "oui" msgstr "sau" @@ -26437,6 +27333,7 @@ msgstr "" #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:358 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 #: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:378 +#: ../../library/ZendAfi/View/Helper/Accueil/MenuVertical.php:390 #, fuzzy msgid "pictogramme pour " msgstr "pentru %s" @@ -26694,6 +27591,11 @@ msgstr "Dată noutăţi" msgid "uniquement les plus consulés" msgstr "" +#: ../../library/ZendAfi/View/Helper/DigitalResource/Dashboard.php:85 +#, fuzzy +msgid "valeur" +msgstr "Valoare" + #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 #: ../../library/ZendAfi/View/Helper/Calendar/Table.php:42 msgid "ven" @@ -26751,6 +27653,7 @@ msgstr "Nici un conÅ£inut" #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:48 #: ../../application/modules/admin/views/scripts/index/index.phtml:37 +#: ../../application/modules/admin/views/scripts/index/index.phtml:31 #, fuzzy msgid "» Modifier «" msgstr "Modificare" @@ -26869,6 +27772,11 @@ msgstr "" msgid "Éditeur" msgstr "Editor" +#: ../../library/ZendAfi/View/Helper/Notice/Unimarc.php:56 +#, fuzzy +msgid "Éditeurs" +msgstr "Editor" + #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 #: ../../library/ZendAfi/Form/Decorator/VersionCompare/TreeSelect.php:70 #, fuzzy @@ -26909,6 +27817,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/consult-book.phtml:2 #, fuzzy msgid "Êtes vous sûr de vouloir consulter ce document ?" msgstr "SunteÅ£i sigur(ă) că vreÅ£i să ÅŸtergeÅ£i acest element ?" @@ -26923,6 +27832,7 @@ msgstr "" #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 #: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:3 +#: ../../application/modules/opac/views/scripts/bib-numerique/loan-book.phtml:2 #, fuzzy msgid "Êtes vous sûr de vouloir emprunter ce document ?" msgstr "SunteÅ£i sigur(ă) că vreÅ£i să ÅŸtergeÅ£i acest element ?" @@ -27288,10 +28198,6 @@ msgstr "" #~ msgid "Aucun menu n'est paramétré pour ce profil." #~ msgstr "Nici un meniu nu este setat pentru acest profil." -#, fuzzy -#~ msgid "Aucun prêt en cours" -#~ msgstr "ÃŽmprumuturi în curs" - #, fuzzy #~ msgid "Aucun résultat trouvé pour :" #~ msgstr "Nici un rezultat găsit" @@ -27307,10 +28213,6 @@ msgstr "" #~ msgid "Aucune zone de sélectionnée." #~ msgstr "Câmpuri selectate" -#, fuzzy -#~ msgid "Auncun utilisateur trouvé" -#~ msgstr "Nici un articol găsit" - #~ msgid "Auteur et titre" #~ msgstr "Autor ÅŸi titlu" @@ -27482,9 +28384,6 @@ msgstr "" #~ msgid "Fév." #~ msgstr "Feb." -#~ msgid "Gérer les ressources" -#~ msgstr "Gestionare a resurselor" - #, fuzzy #~ msgid "Identifiant fournit par lekiosk.com" #~ msgstr "Numele de utilizator începe cu " @@ -27677,10 +28576,6 @@ msgstr "" #~ msgid "Moissonnage Tout Apprendre" #~ msgstr "ÃŽncărcare in curs" -#, fuzzy -#~ msgid "Moissonnage Vodeclic" -#~ msgstr "ÃŽncărcare in curs" - #, fuzzy #~ msgid "Nb de notices" #~ msgstr "ChioÅŸc de instrucÅ£iuni" @@ -28034,16 +28929,6 @@ msgstr "" #~ "Trebuie să vă conectaÅ£i în calitate de abonat al bibliotecii pentru a " #~ "obÅ£ine mai multe informaÅ£ii." -#, fuzzy -#~ msgid "Vous devez vous connecter pour accéder à la consultation en ligne." -#~ msgstr "Trebuie să vă conectaÅ£i pentru a rezerva un document." - -#, fuzzy -#~ msgid "" -#~ "Vous devez être connecté sous un compte avec abonnement valide pour " -#~ "pouvoir accéder à la méthode" -#~ msgstr "Trebuie să vă conectaÅ£i pentru a rezerva un document." - #, fuzzy #~ msgid "Vous n'avez aucune réservation en cours" #~ msgstr "Nu aveÅ£i nici o rezervare în curs. " diff --git a/public/admin/skins/bokeh74/global.css b/public/admin/skins/bokeh74/global.css index 122c9e62697d451698ffd7e4359b5301775235a8..ed171cda6b3e45f07207e82f559272b7f780fc04 100755 --- a/public/admin/skins/bokeh74/global.css +++ b/public/admin/skins/bokeh74/global.css @@ -36,7 +36,9 @@ body { } .redmine_status.redmine_green, -.modules .digital_connectors div.enabled { +body .digital_connectors_status.enabled, +body .digital_connectors_status.enabled:focus, +body .digital_connectors_status.enabled:hover { background-color: var(--success-background); } @@ -586,10 +588,8 @@ table { } -.modules .digital_connectors div.enabled { - width: 200px; - padding: 5px; - text-align: center; +.digital_connectors_status { + min-width: 150px; } .pager { @@ -1035,5 +1035,4 @@ table#logs img { #learn_more button:focus, #learn_more button:hover { background-color:var(--bokeh-event-highlight); -} - +} \ No newline at end of file diff --git a/public/opac/java/file-manager/file-manager.js b/public/opac/java/file-manager/file-manager.js index 2791715b8d83207bebead43330db87d5e03122e6..426b1c114f3af12b4421271f1d74df4c91d5814f 100644 --- a/public/opac/java/file-manager/file-manager.js +++ b/public/opac/java/file-manager/file-manager.js @@ -73,8 +73,8 @@ }; $.urlParam = function(name){ - var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(location.href); - return results + var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(location.href); + return results ? results[1] : 0; }; @@ -84,8 +84,8 @@ ? window.opener.injectPathInInput(path) : window.opener.CKEDITOR.tools.callFunction($.urlParam('CKEditorFuncNum'), path); - window.close(); - }; + window.close(); + }; $.fn.fileUploader = function(options) { var form = $(this); @@ -152,12 +152,12 @@ is_landscape = image_width > image_height; var new_image_width = is_landscape - ? width - : img.width * height / img.height; + ? width + : img.width * height / img.height; var new_image_height = is_landscape - ? img.height * width / img.width - : height; + ? img.height * width / img.width + : height; return {'width' : new_image_width, 'height' : new_image_height}; @@ -171,33 +171,36 @@ } var img = new Image(); - img.onload = function() { - var canvas = document.createElement("canvas"), + img.onload = function() { + var canvas = document.createElement("canvas"), new_image_dimensions = upgradeDimensions(img, width, height); - canvas.width = new_image_dimensions.width; - canvas.height = new_image_dimensions.height; - var ctx = canvas.getContext("2d"); - ctx.drawImage(img, 0, 0, new_image_dimensions.width, new_image_dimensions.height); + canvas.width = new_image_dimensions.width; + canvas.height = new_image_dimensions.height; + var ctx = canvas.getContext("2d"); + ctx.drawImage(img, 0, 0, new_image_dimensions.width, new_image_dimensions.height); var fd = new FormData(); - fd.append("ajax_resized_image", canvas.toDataURL()); - fd.append("filename", file.name); - fd.append("type", file.type); - $.ajax({ - type: 'POST', - url: $('#file_manager_import_form').attr('action'), - data: fd, - processData: false, - contentType: false, - cache: false, - dataType: 'json', - success: function(data){ - location.reload(); - } - }); - }; - img.src = data_file; + fd.append("ajax_resized_image", canvas.toDataURL()); + fd.append("filename", file.name); + fd.append("type", file.type); + $.ajax({ + type: 'POST', + url: $('#file_manager_import_form').attr('action'), + data: fd, + processData: false, + contentType: false, + cache: false, + dataType: 'json', + success: function(data){ + if(url = data.redirect) + return location.href = url; + + location.reload(); + } + }); + }; + img.src = data_file; }; reader.readAsDataURL(file); }; diff --git a/public/opac/skins/modele/css/global.css b/public/opac/skins/modele/css/global.css index 9f5136ac0964bc6da9aebecdf6bfce7be578af51..22e3322a8cd02d62f93edda3acd9437d2f299e10 100644 --- a/public/opac/skins/modele/css/global.css +++ b/public/opac/skins/modele/css/global.css @@ -19,9 +19,6 @@ a:hover {color:#D44100;} #site_web_content, #right_col_color {float:left; width: 100%} -/* Eléments qui sont redimensionnés en fonction de leur conteneur */ -.auto_resize img, .auto_resize object, .auto_resize embed {display:none;} - /* Footer */ .footer{width:1000px; min-height:40px; padding-top:5px} .footer .credit {color:#575757; border-top:1px solid #a0a0a0;} diff --git a/tests/application/modules/admin/controllers/BibnumControllerTest.php b/tests/application/modules/admin/controllers/BibnumControllerTest.php index 4b3df0cc9bf77c9fb30f7b8ea9b859f976d07853..622e2a788800961e0de234fba9cd077a54466479 100644 --- a/tests/application/modules/admin/controllers/BibnumControllerTest.php +++ b/tests/application/modules/admin/controllers/BibnumControllerTest.php @@ -65,7 +65,7 @@ class Admin_BibnumControllerIndexTest extends Admin_AbstractControllerTestCase { /** @test */ public function oneDTouchShouldBeEnabled() { - $this->assertXPathContentContains('//table[@class="digital_connectors"]//tr[@data-code="onedtouch"]/td//div[@class="enabled"]', + $this->assertXPathContentContains('//table[@class="digital_connectors"]//tr[@data-code="onedtouch"]/td//button[contains(@class, "enabled")]', 'Activé'); } @@ -96,9 +96,15 @@ class Admin_BibnumControllerIndexTest extends Admin_AbstractControllerTestCase { /** @test */ public function biliondemandShouldBeEnabled() { - $this->assertXPathContentContains('//table[@class="digital_connectors"]//tr[@data-code="bibliondemand"]/td//div[@class="enabled"]', + $this->assertXPathContentContains('//table[@class="digital_connectors"]//tr[@data-code="bibliondemand"]/td//button[contains(@class, "enabled")]', 'Activé'); } + + + /** @test */ + public function biliondemandDashBordShouldBePresent() { + $this->assertXPathContentContains('//table[@class="digital_connectors"]//tr[@data-code="bibliondemand"]/td//button', 'Tableau de bord'); + } } diff --git a/tests/application/modules/admin/controllers/CkeditorControllerTest.php b/tests/application/modules/admin/controllers/CkeditorControllerTest.php new file mode 100644 index 0000000000000000000000000000000000000000..1da00b116d0ce5722ea2a14664ea3c4a04eb9046 --- /dev/null +++ b/tests/application/modules/admin/controllers/CkeditorControllerTest.php @@ -0,0 +1,78 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class CkeditorControllerGetFormPostTest extends Admin_AbstractControllerTestCase { + protected $_storm_default_to_volatile = true; + + protected function _loginHook($account) { + $account->ROLE = "modo_bib"; + $account->ROLE_LEVEL = ZendAfi_Acl_AdminControllerRoles::MODO_BIB; + $account->LOGIN = "modo"; + $account->PSEUDO = "modo"; + } + + public function setUp() { + parent::setUp(); + $this->postDispatch('/admin/ckeditor/get-form/code/KIOSQUE', ['titre' => 'Boite%20kiosque', + 'nb_notices' =>'12']); + } + + /** @test */ + public function formShouldHaveFieldsetAndTable() { + $this->assertXPath('//fieldset/table'); + } + + + /** @test */ + public function formShouldNotHaveSubmitButtons() { + $this->assertNotXPath('//button'); + } + + /** @test */ + public function formShouldHaveDefaultValueButtons() { + $this->assertXPath('//input[@id="nb_notices"][@value="12"]', $this->_response->getBody()); + } + + +} + + + +class CkeditorControllerGetFormTest extends Admin_AbstractControllerTestCase { + protected $_storm_default_to_volatile = true; + + public function setUp() { + parent::setUp(); + $this->dispatch('/admin/ckeditor/get-form/code/KIOSQUE', true); + } + + /** @test */ + public function formShouldHaveFieldsetAndTable() { + $this->assertXPath('//fieldset/table'); + } + + + /** @test */ + public function formShouldNotHaveSubmitButtons() { + $this->assertNotXPath('//button'); + } +} diff --git a/tests/application/modules/admin/controllers/FileManagerControllerTest.php b/tests/application/modules/admin/controllers/FileManagerControllerTest.php index 9c5aaa42d0e21e74bc312dcff72273e10e7cdf5f..fe740992ed12ef5f5030ba1081156c08a39fb07e 100644 --- a/tests/application/modules/admin/controllers/FileManagerControllerTest.php +++ b/tests/application/modules/admin/controllers/FileManagerControllerTest.php @@ -468,9 +468,16 @@ class FileManagerControllerDropDispatchTest extends FileManagerControllerTestCas /** @test */ - public function dispatchForceDeleteShouldContainsScriptToReload() { + public function dispatchForceDeleteShouldRedirectToParentPath() { $this->dispatch('/admin/file-manager/force-delete?item=userfiles%2Fimage%2Fwhite', true); - $this->assertRedirect(); + $this->assertRedirectTo('/admin/file-manager/index?browser=userfiles%2Fimage'); + } + + + /** @test */ + public function dispatchForceDeleteInPopupShouldContainsScriptToRedirectToParentPath() { + $this->dispatch('/admin/file-manager/force-delete/render/popup?item=userfiles%2Fimage%2Fwhite', true); + $this->assertContains('location.href = "' . Class_Url::absolute('/admin/file-manager/index?browser=userfiles%2Fimage'), json_decode($this->_response->getBody())->content); } @@ -676,18 +683,14 @@ class FileManagerControllerWallDispatchTest extends FileManagerControllerTestCas class FileManagerControllerImportCssDispatchTest extends FileManagerControllerTestCase { - public function setUp() { parent::setUp(); - $file = ['file' => ['name' => 'stylesheet.css', - 'type' => 'image/jpeg', - 'size' => 126976, - 'tmp_name' => 'userfiles/stylesheet.css', - 'destination' => 'userfiles', - 'validators' => []]]; + $files = ['file' => ['name' => 'stylesheet.css', + 'type' => 'image/jpeg', + 'size' => 126976, + 'tmp_name' => 'xxxxx/php8iuxxajl']]; - ZendAfi_Form_Admin_FileManager_Import::setTransferAdapter((new FileManagerController_Mock_TransferAdapter()) - ->setFiles($file)); + ZendAfi_Form_Admin_FileManager_Import::setTransferAdapter((new FileManagerController_Mock_TransferAdapter())->setFiles($files)); ZendAfi_Form_Admin_FileManager_Import::setValidators(null); $imported_file = (new Class_FileManager) @@ -721,7 +724,7 @@ class FileManagerControllerImportCssDispatchTest extends FileManagerControllerTe /** @test */ - public function dispatchFormShouldSubmit() { + public function dispatchFormShouldContainsSubmit() { $this->dispatch('/admin/file-manager/import?into=userfiles', true); $this->assertXpath('//div//button[contains(@class, "validate")][contains(@onclick, "image-loading-status")]'); } @@ -731,7 +734,16 @@ class FileManagerControllerImportCssDispatchTest extends FileManagerControllerTe public function postDispatchImportShouldRedirectWithSucces() { $this->postDispatch('/admin/file-manager/import?into=userfiles', ['file' => 'stylesheet.css']); $this->assertFlashMessengerContentContains('Fichier "userfiles/stylesheet.css" téléversé.'); - $this->assertRedirect(); + $this->assertRedirectTo('/admin/file-manager/index?browser=userfiles%2Fstylesheet.css'); + } + + + /** @test */ + public function postDispatchImportWithExtentionSelectableShouldRedirectWithThem() { + $this->postDispatch('/admin/file-manager/import?into=userfiles&selectable_extensions=css', + ['file' => 'stylesheet.css']); + $this->assertFlashMessengerContentContains('Fichier "userfiles/stylesheet.css" téléversé.'); + $this->assertRedirectTo('/admin/file-manager/index?browser=userfiles%2Fstylesheet.css&selectable_extensions=css'); } } @@ -784,8 +796,9 @@ class FileManagerControllerImportResizableImageDispatchTest extends FileManagerC /** @test */ - public function shouldRedirect() { - $this->assertRedirect(); + public function shouldContainsJsonResponseWithRedirect() { + $this->assertEquals('{"redirect":"\/admin\/file-manager\/index?browser=userfiles%2Fnew_image.jpg"}', + $this->_response->getBody()); } @@ -947,8 +960,8 @@ class FileManagerControllerResizeImageDispatchTest extends FileManagerController /** @test */ public function resizeFileShouldBePresent() { - $this->dispatch('/admin/file-manager/index', true); - $this->assertXPath('//div//a[contains(@href, "/admin/file-manager/resize")]'); + $this->dispatch('/admin/file-manager/index?browser=userfiles%2Fnew_image.jpg', true); + $this->assertXPathContentContains('//div//a[contains(@href, "/admin/file-manager/resize")]', 'Redimensionner'); } @@ -1012,7 +1025,7 @@ Class FileManagerControllerDispatchImageTest extends FileManagerControllerTestCa /** @test */ public function downloadCaliforniaAnchorShouldBePresent() { - $this->assertXPathContentContains('//div//a[contains(@href, "userfiles%2Fcalifornia.jpg")]', 'Télécharger', $this->_response->getBody()); + $this->assertXPathContentContains('//div//a[contains(@href, "userfiles/california.jpg")]', 'Télécharger'); } @@ -1109,7 +1122,7 @@ class FileManagerControllerWithImageInArticleTest extends FileManagerControllerT /** @test */ public function dispatchForceDeleteShouldRedirectWithErrorMessage() { $this->dispatch('/admin/file-manager/force-delete?item=userfiles%2Fimage%2Fhome.jpg', true); - $this->assertRedirect(''); + $this->assertRedirectTo('/admin/file-manager/index?browser=userfiles%2Fimage%2Fhome.jpg'); $this->assertFlashMessengerContentContains('Impossible de supprimer "userfiles/image/home.jpg'); } @@ -1162,7 +1175,7 @@ class FileManagerControllerWithImageInProfilTest extends FileManagerControllerTe /** @test */ public function dispatchForceDeleteShouldRedirectWithErrorMessage() { $this->dispatch('/admin/file-manager/force-delete?item=userfiles%2Fimage%2Fhome.jpg', true); - $this->assertRedirect(''); + $this->assertRedirect(); $this->assertFlashMessengerContentContains('Impossible de supprimer "userfiles/image/home.jpg'); } } @@ -1532,12 +1545,21 @@ class FileManagerControllerWithSpecialCharTest extends FileManagerControllerTest /** @test */ public function accessInNewTabShouldBePresent() { - $this->assertXPathContentContains('//div//a[contains(@href, "/userfiles%2Fmy%20%27direct%22ory%2Fnew%27_ima%22ge.jpg?version=")][@target="_blank"]', 'Accéder à '); + $this->assertContains("/userfiles/my 'direct"ory/new'_ima"ge.jpg?version=", + $this->_response->getBody()); + $this->assertXPathContentContains('//div//a[contains(@href, "/userfiles/my \'direct")][@target="_blank"]', + 'Accéder à '); } /** @test */ public function downloadLinkShouldBePresent() { - $this->assertXPathContentContains('//div//a[contains(@href, "/userfiles%2Fmy%20%27direct%22ory%2Fnew%27_ima%22ge.jpg")]', 'Télécharger'); + $this->assertXPathContentContains('//div//a[contains(@href, "/userfiles/my \'direct")]', 'Télécharger'); + } + + + /** @test */ + public function urlPublicShouldBePrenset() { + $this->assertXPathContentContains('//dd', '/userfiles/my \'direct"ory/new\'_ima"ge.jpg'); } } \ No newline at end of file diff --git a/tests/application/modules/admin/controllers/WidgetControllerTest.php b/tests/application/modules/admin/controllers/WidgetControllerTest.php index 2a69eff42f1dfd52d32e219ae19b395b8e521afc..a5db5a64ffaf91053733958d59f1618c9d1d0b68 100644 --- a/tests/application/modules/admin/controllers/WidgetControllerTest.php +++ b/tests/application/modules/admin/controllers/WidgetControllerTest.php @@ -2299,30 +2299,6 @@ class WidgetControllerWidgetAddWidgetFromTemplateTest extends WidgetControllerWi -class WidgetControllerGetFormTest extends Admin_AbstractControllerTestCase { - protected $_storm_default_to_volatile = true; - - public function setUp() { - parent::setUp(); - $this->dispatch('/admin/widget/get-form/code/KIOSQUE', true); - } - - /** @test */ - public function formShouldHaveFieldsetAndTable() { - $this->assertXPath('//fieldset/table'); - } - - - /** @test */ - public function formShouldNotHaveSubmitButtons() { - $this->assertNotXPath('//button'); - } -} - - - - - class WidgetControllerUpdateStyleTest extends Admin_AbstractControllerTestCase { protected $_storm_default_to_volatile = true, @@ -2388,34 +2364,3 @@ class WidgetControllerUpdateStyleTest extends Admin_AbstractControllerTestCase { 'value: 80'); } } - - - - -class WidgetControllerGetFormPostTest extends Admin_AbstractControllerTestCase { - protected $_storm_default_to_volatile = true; - - public function setUp() { - parent::setUp(); - $this->postDispatch('/admin/widget/get-form/code/KIOSQUE', ['titre' => 'Boite%20kiosque', - 'nb_notices' =>'12']); - } - - /** @test */ - public function formShouldHaveFieldsetAndTable() { - $this->assertXPath('//fieldset/table'); - } - - - /** @test */ - public function formShouldNotHaveSubmitButtons() { - $this->assertNotXPath('//button'); - } - - /** @test */ - public function formShouldHaveDefaultValueButtons() { - $this->assertXPath('//input[@id="nb_notices"][@value="12"]', $this->_response->getBody()); - } - - -} diff --git a/tests/library/Class/AdminVarTest.php b/tests/library/Class/AdminVarTest.php index 824bfdf2cac372a7aee8d5ff531c3a149161d749..cbfc80e43c5fa56af7dd987c308ce6f1a6bcb1e4 100644 --- a/tests/library/Class/AdminVarTest.php +++ b/tests/library/Class/AdminVarTest.php @@ -89,7 +89,7 @@ class AdminVarTestGet extends AdminVarTestCase { ['id' => 'UNLEASHED_FACETS', 'valeur' => '']); - $this->assertContains('/blob/' . BOKEH_VERSION . '/library/Class/Codification.php', Class_AdminVar::getStaticMeta('UNLEASHED_FACETS')->getDescription()); + $this->assertContains('/blob/master/library/Class/Codification.php', Class_AdminVar::getStaticMeta('UNLEASHED_FACETS')->getDescription()); } } diff --git a/tests/library/Class/Indexation/PseudoNoticeTest.php b/tests/library/Class/Indexation/PseudoNoticeTest.php index 8c47e1cd1f18957dc3f70ce027d2ffda781baa20..a06bd2ef0b3987651556544cb463bd128eb016e0 100644 --- a/tests/library/Class/Indexation/PseudoNoticeTest.php +++ b/tests/library/Class/Indexation/PseudoNoticeTest.php @@ -323,6 +323,32 @@ class Class_Indexation_PseudoNoticeArticleTest } +/** @see http://forge.afi-sa.fr/issues/72723 */ +class Class_Indexation_PseudoNoticeArticleWithUnknownDomainTest + extends Class_Indexation_PseudoNoticeTestCase { + public function setUp() { + parent::setUp(); + + $this->fixture('Class_NoticeDomain', + ['id' => 189, + 'domain_id' => 17, + 'record_alpha_key' => 'MYARTCILE-1-----8']); + + $this->fixture('Class_Article', + ['id' => 1, + 'titre' => 'My Artcile', + 'contenu' => 'article is about...', + 'domaine_ids' => '17']); + } + + + /** @test */ + public function indexAllShouldNotHaveFatalError() { + Class_Article::indexAll(); + } +} + + class Class_Indexation_PseudoNoticeArticleUpdateTest extends Class_Indexation_PseudoNoticeTestCase { diff --git a/tests/library/Class/Notice/DoubleFinderTest.php b/tests/library/Class/Notice/DoubleFinderTest.php index 9959b508f3f2e4ce2de13128d7723983b6871a85..a33c63e59d18b1875de341cdbacd814421adc5f6 100644 --- a/tests/library/Class/Notice/DoubleFinderTest.php +++ b/tests/library/Class/Notice/DoubleFinderTest.php @@ -93,6 +93,31 @@ abstract class DoubleFinderTestCase extends ModelTestCase { +class DoubleFinderWithNoNoticeTest extends DoubleFinderTestCase { + + protected $_data = ['type_doc' => Class_TypeDoc::DILICOM, + 'statut_exemplaires' => ['nb_ex' => 1], + 'exemplaires' => [ ['code_barres' => '302'] ]]; + + + protected function _prepareFixtures() { + $this->fixture('Class_Exemplaire', + ['id' => 30, + 'code_barres' => '302', + 'id_origine' => '789', + 'type_doc' => Class_TypeDoc::DILICOM, + 'id_int_bib' => 1]); + } + + + /** @test */ + public function WithExemplaireWithoutNoticeShouldNotFound() { + $this->assertFalse($this->_found); + } +} + + + class DoubleFinderWithoutAnyRecordTest extends DoubleFinderTestCase { /** @test */ public function shouldNotFindDouble() { diff --git a/tests/library/Class/WebService/SIGB/KohaTest.php b/tests/library/Class/WebService/SIGB/KohaTest.php index 32ddda29a2d271af734bb2c9a2bf0730e99b17fb..6b578a8e9f228b650d2698d3f033955c0175b5b1 100644 --- a/tests/library/Class/WebService/SIGB/KohaTest.php +++ b/tests/library/Class/WebService/SIGB/KohaTest.php @@ -854,7 +854,7 @@ class KohaOperationsTest extends KohaTestCase { </RenewLoan>'); - $this->assertEquals(array('statut' => false, 'erreur' => 'Prolongation impossible'), + $this->assertEquals(array('statut' => false, 'erreur' => 'Prolongation impossible : nombre maximum de prolongations atteint'), $this->service->prolongerPret($this->_lafond, '24426')); } @@ -944,6 +944,8 @@ class KohaOperationsTest extends KohaTestCase { + + /** @test */ function reserverExemplaireShouldReturnErrorIfFail() { $this->mock_web_client @@ -1102,7 +1104,7 @@ class KohaServicePatroninfoReaderWithNoLibTest extends KohaTestCase { ->setLogin('lafond') ->setPassword('afi') ->setIdabon('012345')); - } + } /** @test */ @@ -1186,4 +1188,94 @@ class KohaAuthenticateWSTest extends KohaTestCase { } +} + + + + +class KohaErrorMessagesOperationTest extends KohaTestCase { + public function setUp() { + parent::setUp(); + $this->_lafond = $this->fixture('Class_Users', + ['id' => 67, + 'login' => 'lafond', + 'password' => 'afi', + 'id_sigb' => '572', + 'idabon' => '012345']); + + $this->_exemplaire_mireille_abeille = $this->fixture('Class_Exemplaire', + ['id' => 123, + 'id_origine' => '89863']); + Class_TextReplacements::reset(); + } + + + public function tearDown() { + Class_TextReplacements::reset(); + parent::tearDown(); + } + + + public function getHoldTitleErrors() { + return [ + ['ageRestricted' , 'limitation sur l\'âge'], + ['damaged' , 'exemplaire endommagé'], + ['cannotReserveFromOtherBranches' , 'réservation impossible dans cette bibliothèque'], + ['tooManyReserves' , 'nombre maximum de réservations atteint'], + ['notReservable' , 'ce document ne peut normalement pas être réservé'], + ['debarred' , 'compte bloqué'], + ['expired' , 'compte expiré'], + ['alreadyReserved' , 'document déjà réservé sur votre compte'], + ['none_available' , 'aucun document n\'est disponible pour la réservation'] + ]; + } + + + /** + * @dataProvider getHoldTitleErrors + * @test + */ + public function holdTitleErrorsShouldBeAsExpected($code, $message) { + $this->mock_web_client + ->whenCalled('open_url') + ->with('http://cat-aficg55.biblibre.com/cgi-bin/koha/ilsdi.pl?service=HoldTitle&patron_id=572&bib_id=89863&request_location=127.0.0.1') + ->answers('<HoldTitle> + <code>'.$code.'</code> + </HoldTitle>'); + + $this->assertEquals(array('statut' => false, 'erreur' => 'Réservation impossible : '.$message), + $this->service->reserverExemplaire($this->_lafond, $this->_exemplaire_mireille_abeille, '')); + } + + + public function getRenewTitleErrors() { + return [ + ['on_reserve' , 'document réservé par un autre lecteur'], + ['too_many' , 'nombre maximum de prolongations atteint'], + ['onsite_checkout' , 'document en prêt sur place'], + ['restriction' , 'limitation sur l\'âge'], + ['overdue' , 'documents en retard'], + ['too_soon' , 'trop tôt pour renouveler'] + ]; + } + + + /** + * @dataProvider getRenewTitleErrors + * @test + */ + public function renewTitleErrorsShouldBeAsExpected($code, $message) { + $this->mock_web_client + ->whenCalled('open_url') + ->with('http://cat-aficg55.biblibre.com/cgi-bin/koha/ilsdi.pl?service=RenewLoan&patron_id=572&item_id=24426') + ->answers('<RenewLoan> + <success>0</success> + <renewals>1</renewals> + <error>'.$code.'</error> + <date_due>2009-06-22</date_due> + </RenewLoan>'); + + $this->assertEquals(array('statut' => false, 'erreur' => 'Prolongation impossible : '.$message), + $this->service->prolongerPret($this->_lafond, '24426')); + } } \ No newline at end of file diff --git a/tests/library/Class/WebService/SIGB/NanookTest.php b/tests/library/Class/WebService/SIGB/NanookTest.php index 353842200898224b4966a9d330eace943748014e..fe09561ced361cf707b8feb24cf9ce8594bda785 100644 --- a/tests/library/Class/WebService/SIGB/NanookTest.php +++ b/tests/library/Class/WebService/SIGB/NanookTest.php @@ -100,6 +100,13 @@ abstract class NanookTestCase extends ModelTestCase { 'id_bib' => 5, 'id_origine' => 8]); } + + + public function tearDown() { + $this->_mock_web_client = null; + $this->_service = null; + parent::tearDown(); + } } diff --git a/tests/library/ZendAfi/Validate/FileNameTest.php b/tests/library/ZendAfi/Validate/FileNameTest.php new file mode 100644 index 0000000000000000000000000000000000000000..c2804112877a3d93100622c71eacc5f87f856f15 --- /dev/null +++ b/tests/library/ZendAfi/Validate/FileNameTest.php @@ -0,0 +1,40 @@ +<?php +/** + * Copyright (c) 2012-2017, Agence Française Informatique (AFI). All rights reserved. + * + * BOKEH is free software; you can redistribute it and/or modify + * it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE as published by + * the Free Software Foundation. + * + * There are special exceptions to the terms and conditions of the AGPL as it + * is applied to this software (see README file). + * + * BOKEH is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU AFFERO GENERAL PUBLIC LICENSE + * along with BOKEH; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + */ + + +class ZendAfi_Validate_FileNameTest extends ModelTestCase { + public function setUp() { + parent::setUp(); + $this->_validate = new ZendAfi_Validate_FileName('/[a-z]/i'); + } + + + /** @test */ + public function aShouldBeValid() { + $this->assertTrue($this->_validate->isValid('/tmp/phpzdvauie', ['name' => 'a'])); + } + + + /** @test */ + public function underscoreShouldNotBeValid() { + $this->assertFalse($this->_validate->isValid('/tmp/phpzdvauie', ['name' => '_'])); + } +} diff --git a/tests/scenarios/MobileApplication/UserAccountTest.php b/tests/scenarios/MobileApplication/UserAccountTest.php index 82523fc8b238d5121707204fcc25eca3a003c161..f79ec7ec28ac709d99b556f8932d33b3cac9879f 100644 --- a/tests/scenarios/MobileApplication/UserAccountTest.php +++ b/tests/scenarios/MobileApplication/UserAccountTest.php @@ -176,7 +176,7 @@ class Scenario_MobileApplication_UserAccountWithoutTokenTest extends Scenario_Mo /** @test */ - public function withoutHttpsShouldAnswerInvalidRequest() { + public function withoutHttpsShouldAnswerValidRequest() { unset($_SERVER['HTTPS']); $this->dispatch('/api/user/loans', @@ -185,9 +185,29 @@ class Scenario_MobileApplication_UserAccountWithoutTokenTest extends Scenario_Mo "Content-Type" => "application/json"]); $this->assertEquals(['error' => 'invalid_request', - 'message' => 'Protocole HTTP obligatoire'], + 'message' => 'Protocole HTTPS obligatoire'], json_decode($this->_response->getBody(), true)); } + + + /** @test */ + public function withoutHttpsAndOAUTHAcceptInsecureShouldAnswerLoans() { + unset($_SERVER['HTTPS']); + Class_AdminVar::set('OAUTH_ACCEPT_HTTP', 1); + $this->dispatch('/api/user/loans', + true, + ["Authorization" => "Bearer nonos" , + "Content-Type" => "application/json"]); + + $loans = json_decode($this->_response->getBody(), true); + $this->assertEquals(['title' => 'Potter', + 'author' => 'J.K.R', + 'date_due' => '1974-01-01', + 'loaned_by' => 'puppy', + 'library' => 'Annecy' + ], + $loans['loans'][0]); + } }