diff --git a/.gitignore b/.gitignore index 5c0199d3d9..11856c793a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ /nbproject/* /config/* +.DS_Store !.gitignore .DS_Store /vendor/.composer/ diff --git a/README.md b/README.md index 99d1b6e858..29b5712620 100644 --- a/README.md +++ b/README.md @@ -5,25 +5,16 @@ Phraseanet 3.5 - Digital Asset Management application Metadatas Management (include Thesaurus and DublinCore Mapping) Search Engine (Sphinx Search Integration) -RestFull APIS (See Developer Documentation http://docs.phraseanet.com/Devel) +RestFull APIS (See Developer Documentation https://docs.phraseanet.com/3.6/Devel) Bridge to Youtube/Dailymotion/Flickr #Documentation : -http://docs.phraseanet.com +https://docs.phraseanet.com/3.6/ #Easy Installation -**Fetch Sources** - -
-
-git clone git://github.com/alchemy-fr/Phraseanet.git Phraseanet
-cd Phraseanet
-./vendors.php
-
-
- +Get the latests sources here https://github.com/alchemy-fr/Phraseanet/downloads **Setup your webserver** @@ -58,4 +49,4 @@ Let's go ! Phraseanet is licensed under GPL-v3 license. -[1]: http://developer.phraseanet.com/ \ No newline at end of file +[1]: http://developer.phraseanet.com/ diff --git a/bin/changefield.exe.php b/bin/changefield.exe.php deleted file mode 100644 index 965a494239..0000000000 --- a/bin/changefield.exe.php +++ /dev/null @@ -1,308 +0,0 @@ -get('GV_RootPath') . "lib/classes/deprecated/getargs.php"); // le parser d'arguments de la ligne de commande - -function printHelp(&$argt, &$conn) -{ - print_usage($argt); -} - -$argt = array( - "--help" => array("set" => false, "values" => array(), "usage" => " : this help") - , "--sbas-id" => array("set" => false, "values" => array(), "usage" => "=sbas_id : sbas_id to check") - , "--field" => array("set" => false, "values" => array(), "usage" => "(=field | : delete this field from records") - , "--showstruct" => array("set" => false, "values" => array(), "usage" => "") -); - -function help() -{ - global $argv; - printf("usage: %s [options]\n", $argv[0]); - print("options:\n"); - print("\t--help : this help\n"); - print("\t--sbas=sbas_id : sbas to change (if --help, list fields)\n"); - print("\t--showstruct : show structure changes and quit\n"); - print("\t--field=fieldname : delete fieldname from records\n"); - print("\t--field=\"oldname:newname\" : rename field oldname to newname into records\n"); - print("\t[--field=...] : --field=... can be repeated\n"); -} - -// on commence par se conncter e application box -$allbas = array(); - -$conn = connection::getPDOConnection(); - -$sql = "SELECT * FROM sbas"; -$stmt = $conn->prepare($sql); -$stmt->execute(); -$rs = $stmt->fetchAll(PDO::FETCH_ASSOC); -$stmt->closeCursor(); - -foreach ($rs as $tmprow) -{ - $allbas["B" . $tmprow["sbas_id"]] = $tmprow; -} - -$error = false; - -if (!parse_cmdargs($argt, $err)) -{ - help(); - print($err); - die(); -} - -if ($argt["--help"]["set"]) -{ - help(); - $error = true; -} - -if (!$argt['--sbas-id']['set']) -{ - print("missing option 'sbas-id'.\n"); - $error = true; -} - -$fields = null; -if ($argt['--field']['set']) -{ - foreach ($argt["--field"]["values"] as $f) - { - $f = explode(':', $f); - $f[] = null; - $fields[] = array('from' => $f[0], 'to' => $f[1]); - } -} - -$domstruct = null; - -if ($argt["--sbas-id"]["set"]) -{ - $sbas_id = $argt["--sbas-id"]["values"][0]; - // sauf erreur, on a l'adresse du serveur distant - $row = null; - if (array_key_exists("B" . $sbas_id, $allbas)) - $row = $allbas["B" . $sbas_id]; - if ($row) - { - try - { - $databox = databox::get_instance($sbas_id); - $tfields = array(); - - if ($argt["--help"]["set"]) - echo("fields of sbas=" . $sbas_id . " :\n"); - - $domstruct = $databox->get_dom_structure(); - $xp = $databox->get_xpath_structure(); - - if ($domstruct) - { - $xp = new DOMXPath($domstruct); - - $xf = @$xp->query('/record/description/*'); - foreach ($xf as $f) - { - $tfields[] = $f->nodeName; - if ($argt["--help"]["set"]) - printf("\t%s \n", $f->nodeName); - } - - if ($argt["--showstruct"]["set"]) - printf("structure, before:\n...\n%s\n...\n", $domstruct->saveXML($xp->query('/record/description')->item(0))); - - if (is_array($fields)) - { - foreach ($fields as $f) - { - $fok = true; - $ff = $tf = null; - if (!($ff = @$xp->query('/record/description/' . $f['from']))) - { - echo("ERROR : bad xml fieldname '" . $f['from'] . "'\n"); - $error = true; - $fok = false; - } - if ($f['to'] && !($tf = @$xp->query('/record/description/' . $f['to']))) - { - echo("ERROR : bad xml fieldname '" . $f['to'] . "'\n"); - $error = true; - $fok = false; - } - if ($fok) - { - if (in_array($f['from'], $tfields)) - { - if ($f['to']) - { - if ($tf->length == 0) - { - $oldf = $ff->item(0); - $newf = $domstruct->createElement($f['to']); - foreach ($oldf->attributes as $atn => $atv) - { - $newf->setAttribute($atn, $atv->value); - } - $oldf->parentNode->replaceChild($newf, $oldf); - } - else - { - echo("WARNING : field '" . $f['to'] . "' exists into structure, will be replace by '" . $f['from'] . "\n"); - foreach ($tf as $n) - $n->parentNode->removeChild($n); - } - } - else - { - foreach ($ff as $n) - $n->parentNode->removeChild($n); - } - } - else - { - echo("WARNING : unknown field '" . $f['from'] . "' in structure\n"); - } - } - } - } - if ($argt["--showstruct"]["set"]) - printf("structure, after:\n...\n%s\n...\n", $domstruct->saveXML($xp->query('/record/description')->item(0))); - } - else - { - echo("ERROR : sql reading structure\n"); - $error = true; - } - } - catch (Excpetion $e) - { - echo("ERROR accessing database\n"); - $error = true; - } - } - else - { - echo("ERROR : unknown sbas_id " . $sbas_id . "\n"); - $error = true; - } -} -else -{ - if ($argt["--help"]["set"]) - { - print("BASES :\n"); - foreach ($allbas as $bas) - printf("%5d : %s @ %s:%s\n", $bas["sbas_id"], $bas["dbname"], $bas["host"], $bas["port"]); - } -} - - -if ($error || $argt["--showstruct"]["set"]) -{ - flush(); - die(); -} - - -if (!$argt['--field']['set']) -{ - print("ERROR : missing option 'field'\n"); - $error = true; -} - - - - -if ($domstruct instanceof DOMDocument) -{ - $databox->saveStructure($domstruct); -} - -$dom = new DOMDocument(); -$dom->formatOutput = true; -$dom->preserveWhiteSpace = false; - -$recChanged = 0; - -$sql = 'SELECT record_id, xml FROM record ORDER BY record_id DESC'; -$connbas = $databox->get_connection(); - -$stmt = $connbas->prepare($sql); -$stmt->execute(); -$rs = $stmt->fetchAll(PDO::FETCH_ASSOC); -$stmt->closeCursor(); - -foreach ($rs as $row) -{ - printf("%d \r", $row['record_id']); - - if ($dom->loadXML($row['xml'])) - { - $oldxml = $dom->saveXML(); - - $xp = new DOMXPath($dom); - foreach ($fields as $f) - { - if (($tn = @$xp->query('/record/description/' . $f['from']))) - { - foreach ($tn as $oldn) - { - if ($f['to']) - { - $newn = $dom->createElement($f['to']); - foreach ($oldn->childNodes as $n) - $newn->appendChild($n); - $oldn->parentNode->replaceChild($newn, $oldn); - } - else - { - $oldn->parentNode->removeChild($oldn); - } - } - } - } - - $newxml = $dom->saveXML(); - - if ($newxml != $oldxml) - { - // printf("apres :\n%s\n", $dom->saveXML()); - - $sql = 'UPDATE record SET xml=:xml, moddate=NOW() - WHERE record_id = :record_id'; - $stmt = $connbas->prepare($sql); - $stmt->execute(array(':xml' => $newxml, ':record_id' => $row['record_id'])); - $stmt->closeCursor(); - $recChanged++; - } - } - else - { - printf("ERR (rid=%s) : bad xml \n", $row['record_id']); - } -} - -if ($recChanged > 0) - printf("%s record(s) changed, please reindex database\n", $recChanged); -else - printf("no record(s) changed\n"); - diff --git a/bin/console b/bin/console index 0671e9eab0..3d3199e5e8 100755 --- a/bin/console +++ b/bin/console @@ -52,11 +52,19 @@ try $app->add(new module_console_aboutAuthors('about:authors')); $app->add(new module_console_aboutLicense('about:license')); + + $app->add(new module_console_checkExtension('check:extension')); + $app->add(new module_console_systemUpgrade('system:upgrade')); + + $app->add(new module_console_sphinxGenerateSuggestion('sphinx:generate-suggestions')); + $app->add(new module_console_systemMailCheck('system:mailCheck')); $app->add(new module_console_systemBackupDB('system:backupDB')); $app->add(new module_console_systemClearCache('system:clearCache')); $app->add(new module_console_systemTemplateGenerator('system:templateGenerator')); + $app->add(new module_console_systemExport('system:export')); + $app->add(new module_console_taskrun('task:run')); $app->add(new module_console_tasklist('task:list')); $app->add(new module_console_schedulerState('scheduler:state')); @@ -64,12 +72,21 @@ try $app->add(new module_console_schedulerStart('scheduler:start')); $app->add(new module_console_fileConfigCheck('check:config')); $app->add(new module_console_fileEnsureProductionSetting('check:ensureProductionSettings')); + $app->add(new module_console_fileEnsureDevSetting('check:ensureDevSettings')); $app->add(new module_console_systemConfigCheck('check:system')); + + + $app->add(new module_console_fieldsList('fields:list')); + $app->add(new module_console_fieldsDelete('fields:delete')); + $app->add(new module_console_fieldsRename('fields:rename')); + $app->add(new module_console_fieldsMerge('fields:merge')); + + $result_code = $app->run(); } catch (Exception $e) { - echo "an error occured"; + echo "an error occured";var_dump($e->getMessage()); } -exit($result_code); \ No newline at end of file +exit($result_code); diff --git a/bin/dumpbase.exe.php b/bin/dumpbase.exe.php deleted file mode 100644 index 1df4e0a890..0000000000 --- a/bin/dumpbase.exe.php +++ /dev/null @@ -1,290 +0,0 @@ - array('field_out' => 'Titre') - , 'Categories' => array('field_out' => 'Categories') - , 'MotsCles' => array('field_out' => 'MotsCles') - , 'Date' => array('field_out' => 'Date') - , 'Photographe' => array('field_out' => 'Photographe') - , 'Ville' => array('field_out' => 'Ville') - , 'Pays' => array('field_out' => 'Pays') - , 'Reference' => array('field_out' => 'Reference') - , 'Credit' => array('field_out' => 'Credit') - , 'Legende' => array('field_out' => 'Legende') -); - -$status = array( - '4' => '4' - , '5' => '5' -); - - -$registry = registry::get_instance(); -require($registry->get('GV_RootPath') . "lib/classes/deprecated/getargs.php"); // le parser d'arguments de la ligne de commande - -function printHelp(&$argt, &$conn) -{ - print_usage($argt); -} - -$argt = array( - "--help" => array("set" => false, "values" => array(), "usage" => " : cette aide") - , "--sbas-id" => array("set" => false, "values" => array(), "usage" => "=sbas_id : sbas_id de la base a ventiler") - , "--coll-id" => array("set" => false, "values" => array(), "usage" => "=coll_id : coll_id a ventiler") - , "--out" => array("set" => false, "values" => array(), "usage" => "=path : repertoire d'export") - , "--limit" => array("set" => false, "values" => array(), "usage" => "=n : nombre max de records a exporter (pour test)") -); - - - -$allbas = array(); - -$conn = connection::getPDOConnection(); - -$sql = "SELECT * FROM sbas"; -$stmt = $conn->prepare($sql); -$stmt->execute(); -$rs = $stmt->fetchAll(PDO::FETCH_ASSOC); -$stmt->closeCursor(); - -foreach ($rs as $tmprow) -{ - $allbas["B" . $tmprow["sbas_id"]] = $tmprow; -} - -$error = false; - -if (!parse_cmdargs($argt, $err) || $argt["--help"]["set"]) -{ - print($err); - $error = true; -} - -if (!$argt["--sbas-id"]["set"]) -{ - print("parametre 'sbas-id' obligatoire.\n"); - $error = true; -} - -if (!$argt["--out"]["set"]) -{ - print("parametre 'out' obligatoire.\n"); - $error = true; -} - -if ($error) -{ - print_usage($argt); - print("BASES :\n"); - foreach ($allbas as $bas) - printf("%5d : %s @ %s:%s\n", $bas["sbas_id"], $bas["dbname"], $bas["host"], $bas["port"]); - flush(); - die(); -} - - - - -$root = p4string::addEndSlash($argt["--out"]["values"][0]); -if (!is_dir($root)) -{ - print("repertoire out '" . $root . "' absent.\nABANDON\n"); - die(); -} - - -if ($argt["--limit"]["set"]) -{ - $limit = (int) ($argt["--limit"]["values"][0]); -} -else -{ - $limit = NULL; -} - - - -$sbas_id = $argt["--sbas-id"]["values"][0]; -// sauf erreur, on a l'adresse du serveur distant - -$row = null; -if (array_key_exists("B" . $sbas_id, $allbas)) - $row = $allbas["B" . $sbas_id]; -if ($row) -{ - try - { - $connbas = connection::getPDOConnection($sbas_id); - } - catch (Exception $e) - { - echo("\n\nerreur d'acces a la base\n\nABANDON ! :(\n\n"); - flush(); - die(); - } -} - -echo("Connexion a la base ok\n\n"); - - -$root .= $row["dbname"]; -@mkdir($root); - - - -$ndig = ceil(log10(DOCPERDIR - 1)); -define('DIRFMT1', '%0' . (8 - $ndig) . 'd'); -define('DIRFMT2', '%0' . $ndig . 'd'); - - - -$sql = 'SELECT xml, path, file, record.record_id - FROM record - INNER JOIN subdef - ON subdef.record_id=record.record_id AND subdef.name="document"'; - -$params = array(); - -if ($argt["--coll-id"]["set"]) -{ - $sql .= ' WHERE coll_id = :coll_id'; - $params[':coll_id'] = (int) ($argt["--coll-id"]["values"][0]); -} - -$sql .= ' ORDER BY record.record_id ASC'; - -if ($limit !== NULL) - $sql .= ' LIMIT ' . (int) $limit; - -$stmt = $connbas->prepare($sql); -$stmt->execute($params); -$rs = $stmt->fetchAll(PDO::FETCH_ASSOC); -$stmt->closeCursor(); - -$idir = -1; -$idoc = DOCPERDIR - 1; -$nrec = count($rs); - -foreach ($rs as $row) -{ - printf("%d \r", --$nrec); - - if (($sxml = simplexml_load_string($row['xml']))) - { - if (($orgdocname = (string) ($sxml->doc['originalname'])) != '') - { - if (file_exists($phfile = p4string::addEndSlash($row['path']) . $row['file'])) - { - if (++$idoc == DOCPERDIR) - { - $idir++; - $dir1name = sprintf(DIRFMT1, $idir); - @mkdir($root . '/' . $dir1name); - $idoc = 0; - } - - // $dir2name = sprintf(DIRFMT2, $idoc); - $dir2name = sprintf('rid_%08d', $row['record_id']); - @mkdir($outdir = ($root . '/' . $dir1name . '/' . $dir2name)); - - // print($phfile . "\n"); - if (copy($phfile, $outdir . '/' . $orgdocname)) - { - - // file_put_contents($outdir . '/' . $orgdocname . '-old.xml', $row['xml']); - - foreach ($tfields as $fname => $field) - $tfields[$fname]['values'] = array(); - - foreach ($sxml->description->children() as $fname => $fvalue) - { - // printf("%s : %s\n", $fname, $fvalue); - if (isset($tfields[$fname])) - $tfields[$fname]['values'][] = $fvalue; - } - - $domout = new DOMDocument('1.0', 'UTF-8'); - $domout->standalone = true; - $domout->preserveWhiteSpace = false; - - $element = $domout->createElement('record'); - - $domrec = $domout->appendChild($element); - $domdesc = $domrec->appendChild($domout->createElement('description')); - foreach ($tfields as $kfield => $field) - { - foreach ($field['values'] as $value) - { - $domfield = $domdesc->appendChild($domout->createElement($field['field_out'])); - $domfield->appendChild($domout->createTextNode($value)); - } - } - - $sqlS = 'SELECT bin(status) as statin FROM record - WHERE record_id = :record_id"' . $row['record_id'] . '"'; - $stmt = $connbas->prepare($sqlS); - $stmt->execute(array(':record_id' => $row['record_id'])); - $statin = $stmt->fetch(PDO::FETCH_ASSOC); - $stmt->closeCursor(); - - $statin = $statin ? strrev($statin['statin']) : false; - - $statout = '0000000000000000000000000000000000000000000000000000000000001111'; - if ($statin) - { - foreach ($status as $sIn => $sOut) - { - if (substr($statin, $sIn, 1) == '1') - { - $statout = substr_replace($statout, '1', (63 - (int) $sOut), 1); - } - } - } - - $domstatus = $domrec->appendChild($domout->createElement('status')); - $domstatus->appendChild($domout->createTextNode($statout)); - - - $domout->save($outdir . '/' . $orgdocname . '.xml'); - unset($domout); - } - else - { - printf("\nERR (rid=%s) : erreur de copie du document '%s'\n", $row['record_id'], $phfile); - } - } - else - { - printf("\nERR (rid=%s) : document '%s' manquant\n", $row['record_id'], $phfile); - } - } - else - { - printf("\nERR (rid=%s) : orgdocname manquant\n", $row['record_id']); - } - } - else - { - printf("\nERR (rid=%s) : xml illisible manquant\n", $row['record_id']); - } -} - diff --git a/bin/suggest_cron.php b/bin/suggest_cron.php deleted file mode 100644 index 23f4c88e8b..0000000000 --- a/bin/suggest_cron.php +++ /dev/null @@ -1,104 +0,0 @@ - 0 ); -} - -/// build a list of trigrams for a given keywords -function BuildTrigrams($keyword) -{ - $t = "__" . $keyword . "__"; - - $trigrams = ""; - for ($i = 0; $i < strlen($t) - 2; $i++) - $trigrams .= substr($t, $i, 3) . " "; - - return $trigrams; -} - -function BuildDictionarySQL($in) -{ - $out = ''; - - - $n = 0; - $lines = explode("\n", $in); - foreach ($lines as $line) - { - if (trim($line) === '') - continue; - list ( $keyword, $freq ) = split(" ", trim($line)); - - if ($freq < FREQ_THRESHOLD || strstr($keyword, "_") !== false || strstr($keyword, "'") !== false) - continue; - - if (test_number($keyword)) - { - echo "dismiss number keyword : $keyword\n"; - continue; - } - if (mb_strlen($keyword) < 3) - { - echo "dismiss too short keyword : $keyword \n"; - continue; - } - - $trigrams = BuildTrigrams($keyword); - - if ($n++) - $out .= ",\n"; - $out .= "( $n, '$keyword', '$trigrams', $freq )"; - } - - if (trim($out) !== '') - { - $out = "INSERT INTO suggest VALUES " . $out . ";"; - } - - return $out; -} - -$params = phrasea::sbas_params(); - -foreach ($params as $sbas_id => $p) -{ - $index = crc32(str_replace(array('.', '%'), '_', sprintf('%s_%s_%s_%s', $p['host'], $p['port'], $p['user'], $p['dbname']))); - $tmp_file = $registry->get('GV_RootPath') . 'tmp/dict' . $index . '.txt'; - - echo "process $index " . $sbas_id . " \n"; - - $cmd = '/usr/local/bin/indexer metadatas' . $index . ' --buildstops ' . $tmp_file . ' 1000000 --buildfreqs'; - exec($cmd); - - try - { - $connbas = connection::getPDOConnection($sbas_id); - } - catch (Exception $e) - { - continue; - } - $sql = 'TRUNCATE suggest'; - $stmt = $connbas->prepare($sql); - $stmt->execute(); - $stmt->closeCursor(); - - $sql = BuildDictionarySQL(file_get_contents($tmp_file)); - - if (trim($sql) !== '') - { - $stmt = $connbas->prepare($sql); - $stmt->execute(); - $stmt->closeCursor(); - } - unlink($tmp_file); -} diff --git a/bin/testextension2.php b/bin/testextension2.php deleted file mode 100644 index 6ad7250d04..0000000000 --- a/bin/testextension2.php +++ /dev/null @@ -1,493 +0,0 @@ -get_parms("qry"); -if (!$parm['qry']) - $parm['qry'] = 'last'; -?> - - - Test extension - - - - ...recherche... - -Fonction de la DLL : "); -$result = ""; -$allfunc = get_extension_funcs("phrasea2"); -foreach ($allfunc as $oneFunc) - $result.= $oneFunc . "\n"; -print("
"); - - -$sessid = null; - -function showtime() -{ - static $last_t = false; - $t = microtime(true); - if ($last_t !== false) - printf("Durée : %0.5f", $t - $last_t); - $last_t = $t; -} - -/* - // ------------------ phrasea_testutf8 -------------------- - - $code = '$ret = phrasea_testutf8();' ; - - dumpcode($code); - eval($code); - dumpvar($ret, '$ret'); - - die(); - */ - -showtime(); - - -// ------------------ phrasea_usebase -------------------- -/* - $code = '$ret = phrasea_usebase("'.GV_db.'");' ; - - dumpcode($code); - eval($code); - dumpvar($ret, '$ret'); - - showtime(); - */ -// ------------------ phrasea_list_bases -------------------- - -/* - // ------------------ phrasea_conn -------------------- - $code = '$ret = phrasea_conn("127.0.0.1", "3306", "root", "", "'.GV_db.'");' ; - - dumpcode($code); - eval($code); - dumpvar($ret, '$ret'); - - showtime(); - */ - - - -//// ------------------ phrasea_list_bases -------------------- -// -//$code = '$lb = phrasea_list_bases();'; -// -//dumpcode($code); -//eval($code); -//dumpvar($lb, '$lb'); -// -//showtime(); - - - -// ------------------ phrasea_open_session -------------------- - -$code = '$sessid = phrasea_create_session(' . USR_ID . ');'; - -dumpcode($code); -eval($code); -print(" il faut que ca renvoie une valeur de session "); -dumpvar($sessid, '$sessid'); - -showtime(); - -// ------------------ phrasea_open_session -------------------- - - - -$code = '$ph_session = phrasea_open_session($sessid, ' . USR_ID . ');'; - -dumpcode($code); -eval($code); -print(" il faut que ca renvoie un tableau session "); -dumpvar($ph_session, '$ph_session'); - -showtime(); - -//die(); - - -if ($ph_session) -{ - $sessid = $ph_session["session_id"]; - - - // ------------------ phrasea_open_session -------------------- - - $code = '$ph_session = phrasea_open_session(' . $sessid . ', ' . USR_ID . ');'; - - dumpcode($code); - eval($code); - print(" il faut que ca renvoie la meme valeur de session "); - dumpvar($ph_session, '$ph_session'); - - showtime(); - // pour interroger plus bas, on doit avoir un usr_id et avoir injecte ses 'mask' (droits dans appbox/xbascollusr) dans les dbox/collusr - // !!!!! pour simplifier, on injecte un usr bidon (id=0) avec des mask '0' (tout voir) !!!!! - // on se register sur 4 collections -// $rmax = 99999; -// $basok = 0; -// foreach ($lb["bases"] as $base) -// { -// if ($base["online"] == true) -// { -// $connbas = connection::getPDOConnection($base['sbas_id']); -// -// foreach ($base["collections"] as $coll_id => $coll) -// { -// if ($rmax-- > 0) -// { -// -// // ------------------ phrasea_register_base -------------------- -// -// -// $code = '$rb = phrasea_register_base(' . $sessid . ', ' . $coll['base_id'] . ', "", "");'; -// -// dumpcode($code); -// eval($code); -// print(" register sur base connue doit retourner 'true' "); -// dumpvar($rb, '$rb'); -// -// if ($rb) -// { -// echo "TRUE (comportement normal)

"; -// -// showtime(); -// -// $sql = "REPLACE INTO collusr (site, usr_id, coll_id, mask_and, mask_xor) -// VALUES (:site, :usr_id, :coll_id, 0, 0)"; -// -// $params = array( -// ':site' => $registry->get('GV_sit') -// , ':usr_id' => USR_ID -// , ':coll_id' => $coll['coll_id'] -// ); -// -// $stmt = $connbas->prepare($sql); -// $stmt->execute($params); -// $stmt->closeCursor(); -// -// $basok++; -// } -// else -// { -// echo "FALSE (comportement anormal)

"; -// -// showtime(); -// } -// } -// } -// } -// } - - - if ($basok == 0) - { - printf("pas de base/coll ok, fin"); - phrasea_close_session($sessid); - die(); - } - - -// // ------------------ phrasea_register_base (fake) -------------------- -// -// $code = '$rb = phrasea_register_base(' . $sessid . ', 123456, "", "");'; -// -// dumpcode($code); -// eval($code); -// print(" register sur xbas bidon connue doit retourner 'false' "); -// dumpvar($rb, '$rb'); -// -// if (!$rb) -// echo "FALSE (comportement normal)

"; -// else -// echo "TRUE (comportement anormal)

"; -// -// showtime(); - - $basok += $rb ? 1 : 0; - - - - - - // ------------------ phrasea_open_session -------------------- - - $code = '$ph_session = phrasea_open_session(' . $sessid . ', ' . USR_ID . ');'; - - dumpcode($code); - eval($code); - print(" phrasea_open_session(...) apres $basok phrasea_register_base(...) doit retourner les bases/collections registered "); - dumpvar($ph_session, '$ph_session'); - - showtime(); - - - // ------------------ phrasea_subdefs -------------------- -// -// $code = '$subdef = phrasea_subdefs(' . $sessid . ', 58, 18863);'; -// -// dumpcode($code); -// eval($code); -// dumpvar($subdef, '$subdef'); -// -// showtime(); - - - - // ------------------ phrasea_clear_cache -------------------- - - $code = '$ret = phrasea_clear_cache(' . $sessid . ');'; - - dumpcode($code); - eval($code); - dumpvar($ret, '$ret'); - - showtime(); -?> - -
-
- recherche : - -
- 0) // au - une coll de la base etait dispo - { - $kbase = "S" . $phbase["xbas_id"]; - $tbases[$kbase] = array(); - $tbases[$kbase]["xbas_id"] = $phbase["xbas_id"]; - $tbases[$kbase]["searchcoll"] = $tcoll; - - $qp = new searchEngine_adapter_phrasea_queryParser(); - $treeq = $qp->parsequery($parm['qry']); - $arrayq = $qp->makequery($treeq); - - $tbases[$kbase]["arrayq"] = $arrayq; - } - } - */ - - $tbases = array(); - foreach ($ph_session["bases"] as $kphbase => $phbase) - { - $tcoll = array(); - foreach ($phbase["collections"] as $coll) - { - $tcoll[] = 0 + $coll["base_id"]; // le tableau de colls doit contenir des int - } - if (sizeof($tcoll) > 0) // au - une coll de la base etait cochee - { - $kbase = "S" . $phbase["sbas_id"]; - $tbases[$kbase] = array(); - $tbases[$kbase]["sbas_id"] = $phbase["sbas_id"]; - $tbases[$kbase]["searchcoll"] = $tcoll; - $tbases[$kbase]["mask_xor"] = $tbases[$kbase]["mask_and"] = 0; - - $qp = new searchEngine_adapter_phrasea_queryParser(); - $treeq = $qp->parsequery($parm['qry']); - $arrayq = $qp->makequery($treeq); - - $tbases[$kbase]["arrayq"] = $arrayq; - } - } - - - - // ------------------ phrasea_query2 -------------------- - /* - $nbanswers = 0; - foreach($tbases as $kb=>$base) - { - $tbases[$kb]["results"] = NULL; - - set_time_limit(120); - //$tbases[$kb]["results"] = phrasea_query2($ph_session["session_id"], $base["base_id"], $base["searchcoll"], $base["arrayq"], GV_sit, USR_ID, TRUE); - $tbases[$kb]["results"] = phrasea_query2($ph_session["session_id"], $base["base_id"], $base["searchcoll"], $base["arrayq"], GV_sit, (string)(USR_ID) , TRUE , (0) ); - - if($tbases[$kb]["results"]) - { - $nbanswers += $tbases[$kb]["results"]["nbanswers"]; - - $result .= var_export($tbases[$kb]["results"],true); - } - } - - var_dump($result); - */ - $nbanswers = 0; - foreach ($tbases as $kb => $base) - { - $ret = null; - $tbases[$kb]["results"] = NULL; - - set_time_limit(120); - - $code = "\$ret = phrasea_query2(\n"; - $code .= "\t\t\t" . $ph_session["session_id"] . "\t\t// ses_id \n"; - $code .= "\t\t\t, " . $base["sbas_id"] . "\t\t// bsas_id \n"; - $code .= "\t\t\t, " . my_var_export($base["searchcoll"]) . "\t\t// coll_id's \n"; - $code .= "\t\t\t, " . my_var_export($base["arrayq"]) . "\t\t// arrayq \n"; - $code .= "\t\t\t, '" . $registry->get('GV_sit') . "'\t\t// site \n"; - $code .= "\t\t\t, " . USR_ID . " \t\t// usr_id ! \n"; - $code .= "\t\t\t, FALSE \t\t// nocache \n"; - $code .= "\t\t\t, PHRASEA_MULTIDOC_DOCONLY\n"; -// $code .= "\t\t\t, PHRASEA_MULTIDOC_REGONLY\n" ; -// $code .= "\t\t\t, array('DATE') \t\t// sort fields \n" ; - $code .= "\t\t);"; -// $code .= '$base["arrayq"], "'.GV_sit.'", '.USR_ID.', FALSE, PHRASEA_MULTIDOC_DOCONLY, array("DATE")); // USR_ID=0...' ; - - dumpcode($code); - eval($code); - print("
si les bases ne sont pas vides on devrait obtenir le nb de resultats en face de \"nbanswers\""); - dumpvar($ret, '$ret'); - - showtime(); - - - // $tbases[$kb]["results"] = phrasea_query2($ph_session["session_id"], $base["xbas_id"], $base["searchcoll"], $base["arrayq"], GV_sit, USR_ID, FALSE, PHRASEA_MULTIDOC_DOCONLY, array('DATE')); // USR_ID=0... - - if ($ret) - { - $tbases[$kb]["results"] = $ret; - - $nbanswers += $tbases[$kb]["results"]["nbanswers"]; - } - } - /* - */ - if (function_exists('phrasea_save_cache')) - { - // ------------------ phrasea_save_cache -------------------- - - $code = '$ret = phrasea_save_cache(' . $ph_session["session_id"] . ');'; - dumpcode($code); - eval($code); - dumpvar($ret, '$ret'); - - showtime(); - } - - -// die(); - // ------------------ phrasea_fetch_results -------------------- - - $code = '$rs = phrasea_fetch_results(' . $ph_session["session_id"] . ', 1, 20, true, \'[[em]]\', \'[[/em]]\');'; - - dumpcode($code); - eval($code); - dumpvar($rs, '$rs'); - - showtime(); - - - - - // ------------------ phrasea_close_session -------------------- - /* - $code = '$ret = phrasea_close_session('.$ph_session["session_id"].');' ; - - dumpcode($code); - eval($code); - dumpvar($ret, '$ret'); - - showtime(); - */ - } - - function dumpcode($code) - { - print("\n" . '
'); - $h = highlight_string('', true); - $h = str_replace('<?php', '', $h); - $h = str_replace('?>', '', $h); - print($h); - print('
' . "\n"); - } - - function dumpvar($var, $varname) - { - print("\n" . '
'); - $h = highlight_string('', true); - $h = str_replace('<?php', '', $h); - $h = str_replace('?>', '', $h); - print('' . $varname . ' is : ' . $h); - print('
' . "\n"); - } - - function my_var_export($var) - { - $var = str_replace("\n", "", var_export($var, true)); - $var = str_replace(" ", " ", $var); - $var = str_replace(" ", " ", $var); - $var = str_replace(" ", " ", $var); - $var = str_replace(" ", " ", $var); - $var = str_replace(" => ", "=>", $var); - $var = str_replace("array ( ", "array(", $var); - $var = str_replace(", )", ",)", $var); - $var = str_replace(",)", ")", $var); - - return($var); - } -?> - - - - diff --git a/builder.php b/builder.php index 59abc7d85f..f0485f1824 100755 --- a/builder.php +++ b/builder.php @@ -12,7 +12,7 @@ system('./vendors.php'); * * Vendors has to be called two times. * We should fix that - * + * */ system('./vendors.php'); @@ -34,8 +34,9 @@ $finder ->name('.gitmodules') ->name('.gitignore') ->name('check_cs.php') + ->name('cleaner.php') ->name('launchpadToLocales.php') - ->name('localesToLaunchpad.php') + ->name('localesToLaunchPad.php') ->name('pom.xml') ->name('vendors.php') ->name('builder.php') diff --git a/config/config.sample.yml b/config/config.sample.yml index 298c3d8851..21fd501fbf 100644 --- a/config/config.sample.yml +++ b/config/config.sample.yml @@ -41,8 +41,8 @@ prod: template_engine: twig orm: doctrine_prod - cache: memcache_cache - opcodecache: apc_cache + cache: array_cache + opcodecache: array_cache ############## # TEST # diff --git a/config/services.sample.yml b/config/services.sample.yml index 8a67682467..ad315a3f3c 100644 --- a/config/services.sample.yml +++ b/config/services.sample.yml @@ -52,11 +52,11 @@ Orm: dbal: main_connexion cache: query: - service: Cache\apc_cache + service: Cache\array_cache result: - service: Cache\memcache_cache + service: Cache\array_cache metadata: - service: Cache\apc_cache + service: Cache\array_cache TemplateEngine: #Define a template engine service diff --git a/hudson/testJS.sh b/hudson/testJS.sh index 1d0f8805f0..2d61299367 100755 --- a/hudson/testJS.sh +++ b/hudson/testJS.sh @@ -38,7 +38,7 @@ echo "ok !"; # Valid link ? echo -n "Check link validity : "; -wget --no-check-certificate $instance -o /dev/null +wget --no-check-certificate $instance --output-document=/dev/null if [ ! $? -eq 0 ] then echo "Link does not exists."; diff --git a/lib/Alchemy/Phrasea/Application/Api.php b/lib/Alchemy/Phrasea/Application/Api.php index 5178884287..e0c6cd8ed9 100644 --- a/lib/Alchemy/Phrasea/Application/Api.php +++ b/lib/Alchemy/Phrasea/Application/Api.php @@ -307,7 +307,7 @@ return call_user_func(function() * */ $route = '/records/search/'; - $app->post( + $app->match( $route, function() use ($app) { $result = $app['api']->search_records($app['request']); @@ -317,6 +317,19 @@ return call_user_func(function() ); + $route = '/records/{databox_id}/{record_id}/caption/'; + $app->get( + $route, function($databox_id, $record_id) use ($app) + { + $result = $app['api']->caption_records($app['request'], $databox_id, $record_id); + + return $app['response']($result); + } + )->assert('databox_id', '\d+')->assert('record_id', '\d+'); + + $app->get('/records/{any_id}/{anyother_id}/caption/', $bad_request_exception); + + /** * Route : /records/DATABOX_ID/RECORD_ID/metadatas/FORMAT/ * diff --git a/lib/Alchemy/Phrasea/Application/Lightbox.php b/lib/Alchemy/Phrasea/Application/Lightbox.php index caf0a34e6d..642b3e5ef0 100644 --- a/lib/Alchemy/Phrasea/Application/Lightbox.php +++ b/lib/Alchemy/Phrasea/Application/Lightbox.php @@ -232,7 +232,7 @@ return call_user_func( $repository = $em->getRepository('\Entities\Basket'); /* @var $repository \Repositories\BasketRepository */ - $basket_collection = $repository->findActiveByUser( + $basket_collection = $repository->findActiveValidationAndBasketByUser( $app['Core']->getAuthenticatedUser() ); @@ -290,7 +290,7 @@ return call_user_func( $repository = $em->getRepository('\Entities\Basket'); /* @var $repository \Repositories\BasketRepository */ - $basket_collection = $repository->findActiveByUser( + $basket_collection = $repository->findActiveValidationAndBasketByUser( $app['Core']->getAuthenticatedUser() ); @@ -570,7 +570,7 @@ return call_user_func( $expires = new \DateTime('+10 days'); $url = $appbox->get_registry()->get('GV_ServerName') . 'lightbox/index.php?LOG=' . \random::getUrlToken( - 'validate' + \random::TYPE_VALIDATE , $basket->getValidation()->getInitiator()->get_id() , $expires , $basket->getId() diff --git a/lib/Alchemy/Phrasea/Application/OAuth2.php b/lib/Alchemy/Phrasea/Application/OAuth2.php index 7e6ee28031..78b423e05e 100644 --- a/lib/Alchemy/Phrasea/Application/OAuth2.php +++ b/lib/Alchemy/Phrasea/Application/OAuth2.php @@ -207,6 +207,7 @@ return call_user_func(function() if ($oauth2_adapter->isNativeApp($params['redirect_uri'])) { $params = $oauth2_adapter->finishNativeClientAuthorization($app_authorized, $params); + $params['user'] = $app['user']; $html = $twig->render("api/auth/native_app_access_token.twig", $params); return new Response($html, 200, array("content-type" => "text/html")); @@ -270,7 +271,7 @@ return call_user_func(function() */ $route = "/applications/dev/new"; $app->get($route, function() use ($app) - { + { $var = array("violations" => null, 'form' => null, 'request' => $app['request']); return $app['response']('api/auth/application_dev_new.twig', $var); diff --git a/lib/Alchemy/Phrasea/Application/Setup.php b/lib/Alchemy/Phrasea/Application/Setup.php index 6425c98c77..180615c736 100644 --- a/lib/Alchemy/Phrasea/Application/Setup.php +++ b/lib/Alchemy/Phrasea/Application/Setup.php @@ -67,8 +67,10 @@ return call_user_func(function() $app->get('/', function() use ($app) { if ($app['install'] === true) + return $app->redirect('/setup/installer/'); if ($app['upgrade'] === true) + return $app->redirect('/setup/upgrader/'); }); diff --git a/lib/Alchemy/Phrasea/Cache/ApcCache.php b/lib/Alchemy/Phrasea/Cache/ApcCache.php index 277f27002e..33fd6927a9 100644 --- a/lib/Alchemy/Phrasea/Cache/ApcCache.php +++ b/lib/Alchemy/Phrasea/Cache/ApcCache.php @@ -47,4 +47,4 @@ class ApcCache extends DoctrineApc implements Cache return $this; } -} \ No newline at end of file +} diff --git a/lib/Alchemy/Phrasea/Cache/ArrayCache.php b/lib/Alchemy/Phrasea/Cache/ArrayCache.php index 52ec17a144..d8ad78c8fd 100644 --- a/lib/Alchemy/Phrasea/Cache/ArrayCache.php +++ b/lib/Alchemy/Phrasea/Cache/ArrayCache.php @@ -34,6 +34,7 @@ class ArrayCache extends DoctrineArray implements Cache { throw new Exception(sprintf('Unable to find key %s', $id)); } + return $this->fetch($id); } @@ -47,4 +48,4 @@ class ArrayCache extends DoctrineArray implements Cache return; } -} \ No newline at end of file +} diff --git a/lib/Alchemy/Phrasea/Cache/Cache.php b/lib/Alchemy/Phrasea/Cache/Cache.php index 3b8d0bd95a..516072dbba 100644 --- a/lib/Alchemy/Phrasea/Cache/Cache.php +++ b/lib/Alchemy/Phrasea/Cache/Cache.php @@ -28,4 +28,4 @@ interface Cache extends DoctrineCache public function deleteMulti(array $array_keys); -} \ No newline at end of file +} diff --git a/lib/Alchemy/Phrasea/Cache/Manager.php b/lib/Alchemy/Phrasea/Cache/Manager.php index 253b3699b6..106243d4c8 100644 --- a/lib/Alchemy/Phrasea/Cache/Manager.php +++ b/lib/Alchemy/Phrasea/Cache/Manager.php @@ -71,21 +71,23 @@ class Manager try { $configuration = $this->core->getConfiguration()->getService($service_name); - $write = true; + $service = Builder::create($this->core, $service_name, $configuration); + $driver = $service->getDriver(); + $write = true; } catch (\Exception $e) { $configuration = new \Symfony\Component\DependencyInjection\ParameterBag\ParameterBag( - array('type' => 'Cache\\ArrayCache') + array('type' => 'Cache\\ArrayCache') ); + $service = Builder::create($this->core, $service_name, $configuration); + $driver = $service->getDriver(); $write = false; } - $service = Builder::create($this->core, $service_name, $configuration); - if ($this->hasChange($cacheKey, $service_name)) { - $service->getDriver()->flushAll(); + $service->getDriver()->flush(); if ($write) { $this->registry[$cacheKey] = $service_name; @@ -108,7 +110,7 @@ class Manager $this->registry[$name] = $driver; $datas = sprintf("#LastUpdate: %s\n", $date->format(DATE_ISO8601)) - . $this->parser->dump($this->registry); + . $this->parser->dump($this->registry, 6); file_put_contents($this->cacheFile->getPathname(), $datas); } diff --git a/lib/Alchemy/Phrasea/Cache/MemcacheCache.php b/lib/Alchemy/Phrasea/Cache/MemcacheCache.php index e60042f61b..7872e3387a 100644 --- a/lib/Alchemy/Phrasea/Cache/MemcacheCache.php +++ b/lib/Alchemy/Phrasea/Cache/MemcacheCache.php @@ -47,4 +47,4 @@ class MemcacheCache extends DoctrineMemcache implements Cache return $this; } -} \ No newline at end of file +} diff --git a/lib/Alchemy/Phrasea/Cache/XcacheCache.php b/lib/Alchemy/Phrasea/Cache/XcacheCache.php index 32914e8485..2003704a26 100644 --- a/lib/Alchemy/Phrasea/Cache/XcacheCache.php +++ b/lib/Alchemy/Phrasea/Cache/XcacheCache.php @@ -47,4 +47,4 @@ class XcacheCache extends DoctrineXcache implements Cache return $this; } -} \ No newline at end of file +} diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Description.php b/lib/Alchemy/Phrasea/Controller/Admin/Description.php index c01601ffcb..53944dcdac 100644 --- a/lib/Alchemy/Phrasea/Controller/Admin/Description.php +++ b/lib/Alchemy/Phrasea/Controller/Admin/Description.php @@ -99,18 +99,6 @@ class Description implements ControllerProviderInterface $field->set_dces_element($dces_element); $field->save(); - if ($request->get('regname') == $field->get_id()) - { - $field->set_regname(); - } - if ($request->get('regdate') == $field->get_id()) - { - $field->set_regdate(); - } - if ($request->get('regdesc') == $field->get_id()) - { - $field->set_regdesc(); - } } catch (\Exception $e) { diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Basket.php b/lib/Alchemy/Phrasea/Controller/Prod/Basket.php index d2dc2e5f78..c1f964c81a 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Basket.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Basket.php @@ -413,10 +413,24 @@ class Basket implements ControllerProviderInterface $basket->addBasketElement($basket_element); + if(null !== $validationSession = $basket->getValidation()) + { + + $participants = $validationSession->getParticipants(); + + foreach($participants as $participant) + { + $validationData = new \Entities\ValidationData(); + $validationData->setParticipant($participant); + $validationData->setBasketElement($basket_element); + + $em->persist($validationData); + } + } + $n++; } - $em->merge($basket); $em->flush(); $data = array( diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Push.php b/lib/Alchemy/Phrasea/Controller/Prod/Push.php index 5cd9c0b497..2d5c40bfb1 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Push.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Push.php @@ -183,10 +183,12 @@ class Push implements ControllerProviderInterface $appbox = \appbox::get_instance($app['Core']); - $push_name = $request->get( - 'name' - , sprintf(_('Push from %s'), $user->get_display_name()) - ); + $push_name = $request->get('name'); + + if (trim($push_name) === '') + { + $push_name = sprintf(_('Push from %s'), $user->get_display_name()); + } $push_description = $request->get('push_description'); @@ -231,6 +233,9 @@ class Push implements ControllerProviderInterface $BasketElement->setRecord($element); $BasketElement->setBasket($Basket); + $em->persist($BasketElement); + + $Basket->addBasketElement($BasketElement); if ($receiver['HD']) { @@ -248,15 +253,13 @@ class Push implements ControllerProviderInterface , \ACL::GRANT_ACTION_PUSH ); } - - $em->persist($BasketElement); } $em->flush(); $url = $registry->get('GV_ServerName') . 'lightbox/index.php?LOG=' - . \random::getUrlToken('view', $user_receiver->get_id(), null, $Basket->getId()); + . \random::getUrlToken(\random::TYPE_VIEW, $user_receiver->get_id(), null, $Basket->getId()); $params = array( 'from' => $user->get_id() @@ -322,10 +325,12 @@ class Push implements ControllerProviderInterface $repository = $em->getRepository('\Entities\Basket'); - $validation_name = $request->get( - 'name' - , sprintf(_('Validation from %s'), $user->get_display_name()) - ); + $validation_name = $request->get('name'); + + if (trim($validation_name) === '') + { + $validation_name = sprintf(_('Validation from %s'), $user->get_display_name()); + } $validation_description = $request->get('validation_description'); @@ -362,6 +367,8 @@ class Push implements ControllerProviderInterface $BasketElement->setBasket($Basket); $em->persist($BasketElement); + + $Basket->addBasketElement($BasketElement); } $em->flush(); } @@ -485,7 +492,7 @@ class Push implements ControllerProviderInterface $url = $registry->get('GV_ServerName') . 'lightbox/index.php?LOG=' - . \random::getUrlToken('view', $participant_user->get_id(), null, $Basket->getId()); + . \random::getUrlToken(\random::TYPE_VIEW, $participant_user->get_id(), null, $Basket->getId()); $params = array( 'from' => $user->get_id() diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Query.php b/lib/Alchemy/Phrasea/Controller/Prod/Query.php index b631e76e57..c43e56f6ee 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Query.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Query.php @@ -205,11 +205,9 @@ class Query implements ControllerProviderInterface } } - $json['results'] = $twig->render($template, array( 'results' => $result, 'GV_social_tools' => $registry->get('GV_social_tools'), - 'array_selected' => explode(';', $request->get('sel')), 'highlight' => $search_engine->get_query(), 'searchEngine' => $search_engine, 'suggestions' => $prop diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Root.php b/lib/Alchemy/Phrasea/Controller/Prod/Root.php index c227378d88..8d7bd9b7a7 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Root.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Root.php @@ -18,6 +18,7 @@ use Symfony\Component\HttpFoundation\Request, Symfony\Component\HttpFoundation\Response, Symfony\Component\HttpFoundation\RedirectResponse, Symfony\Component\HttpKernel\Exception\HttpException, + Symfony\Component\Finder\Finder, Symfony\Component\HttpKernel\Exception\NotFoundHttpException; use Alchemy\Phrasea\Helper; @@ -40,49 +41,56 @@ class Root implements ControllerProviderInterface \User_Adapter::updateClientInfos(1); $appbox = \appbox::get_instance($app['Core']); - $css = array(); - $cssfile = false; $registry = $app['Core']->getRegistry(); - - $session = $appbox->get_session(); $user = $app['Core']->getAuthenticatedUser(); - $cssPath = $registry->get('GV_RootPath') . 'www/skins/prod/'; - if ($hdir = opendir($cssPath)) + $css = array(); + $cssfile = false; + + $finder = new Finder(); + + $iterator = $finder + ->directories() + ->depth(0) + ->filter(function(\SplFileInfo $fileinfo) + { + return ctype_xdigit($fileinfo->getBasename()); + }) + ->in($cssPath); + + foreach ($iterator as $dir) { - while (false !== ($file = readdir($hdir))) - { - if (substr($file, 0, 1) == "." || mb_strtolower($file) == "cvs") - continue; - if (is_dir($cssPath . $file)) - { - $css[$file] = $file; - } - } - closedir($hdir); + $baseName = $dir->getBaseName(); + $css[$baseName] = $baseName; } $cssfile = $user->getPrefs('css'); + if (!$cssfile && isset($css['000000'])) + { $cssfile = '000000'; + } $user_feeds = \Feed_Collection::load_all($appbox, $user); $feeds = array_merge(array($user_feeds->get_aggregate()), $user_feeds->get_feeds()); - $srt = 'name asc'; - - $thjslist = ""; $queries_topics = ''; + if ($registry->get('GV_client_render_topics') == 'popups') - $queries_topics = queries::dropdown_topics(); + { + $queries_topics = \queries::dropdown_topics(); + } elseif ($registry->get('GV_client_render_topics') == 'tree') + { $queries_topics = \queries::tree_topics(); + } $sbas = $bas2sbas = array(); + foreach ($appbox->get_databoxes() as $databox) { $sbas_id = $databox->get_sbas_id(); @@ -131,8 +139,6 @@ class Root implements ControllerProviderInterface 'GV_bitly_key' => $registry->get('GV_bitly_key') )); - - return new Response($out); }); diff --git a/lib/Alchemy/Phrasea/Controller/Prod/Story.php b/lib/Alchemy/Phrasea/Controller/Prod/Story.php index 6e31a2b06b..ae5d2c3ea3 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/Story.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/Story.php @@ -38,282 +38,311 @@ class Story implements ControllerProviderInterface $controllers->get('/create/', function(Application $app) - { - /* @var $twig \Twig_Environment */ - $twig = $app['Core']->getTwig(); + { + /* @var $twig \Twig_Environment */ + $twig = $app['Core']->getTwig(); - return new Response($twig->render('prod/Story/Create.html.twig', array())); - }); + return new Response($twig->render('prod/Story/Create.html.twig', array())); + }); $controllers->post('/', function(Application $app, Request $request) - { - /* @var $request \Symfony\Component\HttpFoundation\Request */ - $em = $app['Core']->getEntityManager(); + { + /* @var $request \Symfony\Component\HttpFoundation\Request */ + $em = $app['Core']->getEntityManager(); - $user = $app['Core']->getAuthenticatedUser(); + $user = $app['Core']->getAuthenticatedUser(); - $collection = \collection::get_from_base_id($request->get('base_id')); + $collection = \collection::get_from_base_id($request->get('base_id')); - if (!$user->ACL()->has_right_on_base($collection->get_base_id(), 'canaddrecord')) - throw new \Exception_Forbidden('You can not create a story on this collection'); + if (!$user->ACL()->has_right_on_base($collection->get_base_id(), 'canaddrecord')) + { + throw new \Exception_Forbidden('You can not create a story on this collection'); + } - $system_file = new \system_file( - $app['Core']->getRegistry() - ->get('GV_RootPath') . 'www/skins/icons/substitution/regroup_doc.png' - ); + $system_file = new \system_file( + $app['Core']->getRegistry() + ->get('GV_RootPath') . 'www/skins/icons/substitution/regroup_doc.png' + ); - $Story = \record_adapter::create($collection, $system_file, false, true); + $Story = \record_adapter::create($collection, $system_file, false, true); - $metadatas = array(); + foreach (explode(';', $request->get('lst')) as $sbas_rec) + { + $sbas_rec = explode('_', $sbas_rec); - foreach ($collection->get_databox()->get_meta_structure() as $meta) - { - if ($meta->is_regname()) - $value = $request->get('name'); - elseif ($meta->is_regdesc()) - $value = $request->get('description'); - else - continue; + if (count($sbas_rec) !== 2) + { + continue; + } - $metadatas[] = array( - 'meta_struct_id' => $meta->get_id() - , 'meta_id' => null - , 'value' => $value - ); - } + $record = new \record_adapter($sbas_rec[0], $sbas_rec[1]); - $Story->set_metadatas($metadatas) - ->rebuild_subdefs(); + if (!$user->ACL()->has_access_to_base($record->get_base_id()) + && !$user->ACL()->has_hd_grant($record) + && !$user->ACL()->has_preview_grant($record)) + { + continue; + } - $StoryWZ = new \Entities\StoryWZ(); - $StoryWZ->setUser($user); - $StoryWZ->setRecord($Story); + if ($Story->hasChild($record)) + continue; - $em->persist($StoryWZ); + $Story->appendChild($record); + } - $em->flush(); + $metadatas = array(); - if ($request->getRequestFormat() == 'json') - { - $data = array( - 'success' => true - , 'message' => _('Story created') - , 'WorkZone' => $StoryWZ->getId() - , 'story' => array( - 'sbas_id' => $Story->get_sbas_id(), - 'record_id' => $Story->get_record_id(), - ) - ); + foreach ($collection->get_databox()->get_meta_structure() as $meta) + { + if ($meta->get_thumbtitle()) + { + $value = $request->get('name'); + } + else + { + continue; + } - $datas = $app['Core']['Serializer']->serialize($data, 'json'); + $metadatas[] = array( + 'meta_struct_id' => $meta->get_id() + , 'meta_id' => null + , 'value' => $value + ); - return new Response($datas, 200, array('Content-type' => 'application/json')); - } - else - { - return new RedirectResponse(sprintf('/%d/', $StoryWZ->getId())); - } - }); + break; + } + + $Story->set_metadatas($metadatas)->rebuild_subdefs(); + + $StoryWZ = new \Entities\StoryWZ(); + $StoryWZ->setUser($user); + $StoryWZ->setRecord($Story); + + $em->persist($StoryWZ); + + $em->flush(); + + if ($request->getRequestFormat() == 'json') + { + $data = array( + 'success' => true + , 'message' => _('Story created') + , 'WorkZone' => $StoryWZ->getId() + , 'story' => array( + 'sbas_id' => $Story->get_sbas_id(), + 'record_id' => $Story->get_record_id(), + ) + ); + + $datas = $app['Core']['Serializer']->serialize($data, 'json'); + + return new Response($datas, 200, array('Content-type' => 'application/json')); + } + else + { + return new RedirectResponse(sprintf('/%d/', $StoryWZ->getId())); + } + }); $controllers->get('/{sbas_id}/{record_id}/', function(Application $app, $sbas_id, $record_id) - { - $Story = new \record_adapter($sbas_id, $record_id); + { + $Story = new \record_adapter($sbas_id, $record_id); - /* @var $twig \Twig_Environment */ - $twig = $app['Core']->getTwig(); + /* @var $twig \Twig_Environment */ + $twig = $app['Core']->getTwig(); - $html = $twig->render('prod/WorkZone/Story.html.twig', array('Story' => $Story)); + $html = $twig->render('prod/WorkZone/Story.html.twig', array('Story' => $Story)); - return new Response($html); - })->assert('sbas_id', '\d+')->assert('record_id', '\d+'); + return new Response($html); + })->assert('sbas_id', '\d+')->assert('record_id', '\d+'); $controllers->post( - '/{sbas_id}/{record_id}/addElements/' - , function(Application $app, Request $request, $sbas_id, $record_id) - { - $Story = new \record_adapter($sbas_id, $record_id); + '/{sbas_id}/{record_id}/addElements/' + , function(Application $app, Request $request, $sbas_id, $record_id) + { + $Story = new \record_adapter($sbas_id, $record_id); - $user = $app['Core']->getAuthenticatedUser(); + $user = $app['Core']->getAuthenticatedUser(); - if (!$user->ACL()->has_right_on_base($Story->get_base_id(), 'canmodifrecord')) - throw new \Exception_Forbidden('You can not add document to this Story'); + if (!$user->ACL()->has_right_on_base($Story->get_base_id(), 'canmodifrecord')) + throw new \Exception_Forbidden('You can not add document to this Story'); - /* @var $user \User_Adapter */ + /* @var $user \User_Adapter */ - $n = 0; + $n = 0; - foreach (explode(';', $request->get('lst')) as $sbas_rec) - { - $sbas_rec = explode('_', $sbas_rec); + foreach (explode(';', $request->get('lst')) as $sbas_rec) + { + $sbas_rec = explode('_', $sbas_rec); - if (count($sbas_rec) !== 2) - continue; + if (count($sbas_rec) !== 2) + continue; - $record = new \record_adapter($sbas_rec[0], $sbas_rec[1]); + $record = new \record_adapter($sbas_rec[0], $sbas_rec[1]); - if (!$user->ACL()->has_access_to_base($record->get_base_id()) - && !$user->ACL()->has_hd_grant($record) - && !$user->ACL()->has_preview_grant($record)) - { - continue; - } + if (!$user->ACL()->has_access_to_base($record->get_base_id()) + && !$user->ACL()->has_hd_grant($record) + && !$user->ACL()->has_preview_grant($record)) + { + continue; + } - if ($Story->hasChild($record)) - continue; + if ($Story->hasChild($record)) + continue; - $Story->appendChild($record); + $Story->appendChild($record); - $n++; - } + $n++; + } - $data = array( - 'success' => true - , 'message' => sprintf(_('%d records added'), $n) - ); + $data = array( + 'success' => true + , 'message' => sprintf(_('%d records added'), $n) + ); - if ($request->getRequestFormat() == 'json') - { + if ($request->getRequestFormat() == 'json') + { - $datas = $app['Core']['Serializer']->serialize($data, 'json'); + $datas = $app['Core']['Serializer']->serialize($data, 'json'); - return new Response($datas, 200, array('Content-type' => 'application/json')); - } - else - { - return new RedirectResponse('/'); - } - })->assert('sbas_id', '\d+')->assert('record_id', '\d+'); + return new Response($datas, 200, array('Content-type' => 'application/json')); + } + else + { + return new RedirectResponse('/'); + } + })->assert('sbas_id', '\d+')->assert('record_id', '\d+'); $controllers->post( - '/{sbas_id}/{record_id}/delete/{child_sbas_id}/{child_record_id}/' - , function(Application $app, Request $request, $sbas_id, $record_id, $child_sbas_id, $child_record_id) - { - $Story = new \record_adapter($sbas_id, $record_id); + '/{sbas_id}/{record_id}/delete/{child_sbas_id}/{child_record_id}/' + , function(Application $app, Request $request, $sbas_id, $record_id, $child_sbas_id, $child_record_id) + { + $Story = new \record_adapter($sbas_id, $record_id); - $record = new \record_adapter($child_sbas_id, $child_record_id); + $record = new \record_adapter($child_sbas_id, $child_record_id); - $user = $app['Core']->getAuthenticatedUser(); + $user = $app['Core']->getAuthenticatedUser(); - if (!$user->ACL()->has_right_on_base($Story->get_base_id(), 'canmodifrecord')) - throw new \Exception_Forbidden('You can not add document to this Story'); + if (!$user->ACL()->has_right_on_base($Story->get_base_id(), 'canmodifrecord')) + throw new \Exception_Forbidden('You can not add document to this Story'); - /* @var $user \User_Adapter */ + /* @var $user \User_Adapter */ - $Story->removeChild($record); + $Story->removeChild($record); - $data = array( - 'success' => true - , 'message' => _('Record removed from story') - ); + $data = array( + 'success' => true + , 'message' => _('Record removed from story') + ); - if ($request->getRequestFormat() == 'json') - { - $datas = $app['Core']['Serializer']->serialize($data, 'json'); + if ($request->getRequestFormat() == 'json') + { + $datas = $app['Core']['Serializer']->serialize($data, 'json'); - return new Response($datas, 200, array('Content-type' => 'application/json')); - } - else - { - return new RedirectResponse('/'); - } - }) - ->assert('sbas_id', '\d+') - ->assert('record_id', '\d+') - ->assert('child_sbas_id', '\d+') - ->assert('child_record_id', '\d+'); + return new Response($datas, 200, array('Content-type' => 'application/json')); + } + else + { + return new RedirectResponse('/'); + } + }) + ->assert('sbas_id', '\d+') + ->assert('record_id', '\d+') + ->assert('child_sbas_id', '\d+') + ->assert('child_record_id', '\d+'); /** * Get the Basket reorder form */ $controllers->get( - '/{sbas_id}/{record_id}/reorder/' - , function(Application $app, $sbas_id, $record_id) - { - /* @var $em \Doctrine\ORM\EntityManager */ - $em = $app['Core']->getEntityManager(); + '/{sbas_id}/{record_id}/reorder/' + , function(Application $app, $sbas_id, $record_id) + { + /* @var $em \Doctrine\ORM\EntityManager */ + $em = $app['Core']->getEntityManager(); - $story = new \record_adapter($sbas_id, $record_id); + $story = new \record_adapter($sbas_id, $record_id); - if (!$story->is_grouping()) - { - throw new \Exception('This is not a story'); - } + if (!$story->is_grouping()) + { + throw new \Exception('This is not a story'); + } - /* @var $twig \Twig_Environment */ - $twig = $app['Core']->getTwig(); + /* @var $twig \Twig_Environment */ + $twig = $app['Core']->getTwig(); - return new Response( - $twig->render( - 'prod/Story/Reorder.html.twig' - , array('story' => $story) - ) - ); - }) - ->assert('sbas_id', '\d+') - ->assert('record_id', '\d+'); + return new Response( + $twig->render( + 'prod/Story/Reorder.html.twig' + , array('story' => $story) + ) + ); + }) + ->assert('sbas_id', '\d+') + ->assert('record_id', '\d+'); $controllers->post( - '/{sbas_id}/{record_id}/reorder/' - , function(Application $app, $sbas_id, $record_id) - { - $ret = array('success' => false, 'message' => _('An error occured')); - try - { - $user = $app['Core']->getAuthenticatedUser(); - /* @var $user \User_Adapter */ + '/{sbas_id}/{record_id}/reorder/' + , function(Application $app, $sbas_id, $record_id) + { + $ret = array('success' => false, 'message' => _('An error occured')); + try + { + $user = $app['Core']->getAuthenticatedUser(); + /* @var $user \User_Adapter */ - $story = new \record_adapter($sbas_id, $record_id); + $story = new \record_adapter($sbas_id, $record_id); - if (!$story->is_grouping()) - { - throw new \Exception('This is not a story'); - } + if (!$story->is_grouping()) + { + throw new \Exception('This is not a story'); + } - if (!$user->ACL()->has_right_on_base($story->get_base_id(), 'canmodifrecord')) - { - throw new ControllerException(_('You can not edit this story')); - } + if (!$user->ACL()->has_right_on_base($story->get_base_id(), 'canmodifrecord')) + { + throw new ControllerException(_('You can not edit this story')); + } - $sql = 'UPDATE regroup SET ord = :ord + $sql = 'UPDATE regroup SET ord = :ord WHERE rid_parent = :parent_id AND rid_child = :children_id'; - $stmt = $story->get_databox()->get_connection()->prepare($sql); + $stmt = $story->get_databox()->get_connection()->prepare($sql); - foreach ($app['request']->get('element') as $record_id => $ord) - { - $params = array( - ':ord' => $ord, - ':parent_id' => $story->get_record_id(), - ':children_id' => $record_id - ); - $stmt->execute($params); - } + foreach ($app['request']->get('element') as $record_id => $ord) + { + $params = array( + ':ord' => $ord, + ':parent_id' => $story->get_record_id(), + ':children_id' => $record_id + ); + $stmt->execute($params); + } - $stmt->closeCursor(); + $stmt->closeCursor(); - $ret = array('success' => true, 'message' => _('Story updated')); - } - catch (ControllerException $e) - { - $ret = array('success' => false, 'message' => $e->getMessage()); - } - catch (\Exception $e) - { + $ret = array('success' => true, 'message' => _('Story updated')); + } + catch (ControllerException $e) + { + $ret = array('success' => false, 'message' => $e->getMessage()); + } + catch (\Exception $e) + { - } + } - $Serializer = $app['Core']['Serializer']; + $Serializer = $app['Core']['Serializer']; - return new Response($Serializer->serialize($ret, 'json'), 200, array('Content-type' => 'application/json')); - }) - ->assert('sbas_id', '\d+') - ->assert('record_id', '\d+'); + return new Response($Serializer->serialize($ret, 'json'), 200, array('Content-type' => 'application/json')); + }) + ->assert('sbas_id', '\d+') + ->assert('record_id', '\d+'); return $controllers; diff --git a/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php b/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php index 932f4621a3..18d9801fd0 100644 --- a/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php +++ b/lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php @@ -286,7 +286,6 @@ class UsrLists implements ControllerProviderInterface $list->setName($list_name); - $em->merge($list); $em->flush(); $datas = array( @@ -459,7 +458,7 @@ class UsrLists implements ControllerProviderInterface $list->addUsrListEntry($entry); $em->persist($entry); - $em->merge($list); + $inserted_usr_ids[] = $user_entry->get_id(); } @@ -585,14 +584,12 @@ class UsrLists implements ControllerProviderInterface $list->addUsrListOwner($owner); $em->persist($owner); - $em->merge($list); } $role = $app['request']->get('role'); $owner->setRole($role); - $em->merge($owner); $em->flush(); $datas = array( diff --git a/lib/Alchemy/Phrasea/Controller/Setup/Installer.php b/lib/Alchemy/Phrasea/Controller/Setup/Installer.php index a89899e07a..bd047d8d85 100644 --- a/lib/Alchemy/Phrasea/Controller/Setup/Installer.php +++ b/lib/Alchemy/Phrasea/Controller/Setup/Installer.php @@ -33,293 +33,323 @@ class Installer implements ControllerProviderInterface $controllers = new ControllerCollection(); $controllers->get('/', function() use ($app) - { - $request = $app['request']; - - $php_constraint = \setup::check_php_version(); - $writability_constraints = \setup::check_writability(new \Setup_Registry()); - $extension_constraints = \setup::check_php_extension(); - $opcode_constraints = \setup::check_cache_opcode(); - $php_conf_constraints = \setup::check_php_configuration(); - $locales_constraints = \setup::check_system_locales(); - - $constraints_coll = array( - 'php_constraint' => $php_constraint - , 'writability_constraints' => $writability_constraints - , 'extension_constraints' => $extension_constraints - , 'opcode_constraints' => $opcode_constraints - , 'php_conf_constraints' => $php_conf_constraints - , 'locales_constraints' => $locales_constraints - ); - $redirect = true; - - foreach ($constraints_coll as $key => $constraints) - { - $unset = true; - foreach ($constraints as $constraint) - { - if (!$constraint->is_ok() && $constraint->is_blocker()) - $redirect = $unset = false; - } - if ($unset === true) - { - unset($constraints_coll[$key]); - } - } - - if ($redirect) - { - return $app->redirect('/setup/installer/step2/'); - } - - - $ld_path = array(__DIR__ . '/../../../../../templates/web'); - $loader = new \Twig_Loader_Filesystem($ld_path); - $twig = new \Twig_Environment($loader); - - $html = $twig->render( - '/setup/index.html.twig' - , array_merge($constraints_coll, array( - 'locale' => \Session_Handler::get_locale() - , 'available_locales' => $app['Core']::getAvailableLanguages() - , 'version_number' => $app['Core']['Version']->getNumber() - , 'version_name' => $app['Core']['Version']->getName() - , 'current_servername' => $request->getScheme() . '://' . $request->getHttpHost() . '/' - )) - ); - - return new Response($html); - }); - - $controllers->get('/step2/', function() use ($app) - { - \phrasea::use_i18n(\Session_Handler::get_locale()); - - $ld_path = array(__DIR__ . '/../../../../../templates/web'); - $loader = new \Twig_Loader_Filesystem($ld_path); - - $twig = new \Twig_Environment($loader); - $twig->addExtension(new \Twig_Extensions_Extension_I18n()); - - $request = $app['request']; - - $warnings = array(); - if ($request->getScheme() == 'http') - { - $warnings[] = _('It is not recommended to install Phraseanet without HTTPS support'); - } - - $html = $twig->render( - '/setup/step2.html.twig' - , array( - 'locale' => \Session_Handler::get_locale() - , 'available_locales' => $app['Core']::getAvailableLanguages() - , 'available_templates' => \appbox::list_databox_templates() - , 'version_number' => $app['Core']['Version']->getNumber() - , 'version_name' => $app['Core']['Version']->getName() - , 'warnings' => $warnings - , 'current_servername' => $request->getScheme() . '://' . $request->getHttpHost() . '/' - , 'discovered_binaries' => \setup::discover_binaries() - , 'rootpath' => dirname(dirname(dirname(dirname(__DIR__)))) . '/' - ) - ); - - return new Response($html); - }); - - $controllers->post('/install/', function() use ($app) - { - set_time_limit(360); - \phrasea::use_i18n(\Session_Handler::get_locale()); - $request = $app['request']; - - $servername = $request->getScheme() . '://' . $request->getHttpHost() . '/'; - - $setupRegistry = new \Setup_Registry(); - $setupRegistry->set('GV_ServerName', $servername, \registry::TYPE_STRING); - - $conn = $connbas = null; - - $hostname = $request->get('ab_hostname'); - $port = $request->get('ab_port'); - $user_ab = $request->get('ab_user'); - $password = $request->get('ab_password'); - - $appbox_name = $request->get('ab_name'); - $databox_name = $request->get('db_name'); - - try - { - $conn = new \connection_pdo('appbox', $hostname, $port, $user_ab, $password, $appbox_name, array(), $setupRegistry); - } - catch (\Exception $e) - { - return $app->redirect('/setup/installer/step2/?error=' . _('Appbox is unreachable')); - } - - try - { - if ($databox_name) - { - $connbas = new \connection_pdo('databox', $hostname, $port, $user_ab, $password, $databox_name, array(), $setupRegistry); - } - } - catch (\Exception $e) - { - return $app->redirect('/setup/installer/step2/?error=' . _('Databox is unreachable')); - } - - \setup::rollback($conn, $connbas); - - try - { - $setupRegistry = new \Setup_Registry(); - $setupRegistry->set('GV_ServerName', $servername, \registry::TYPE_STRING); - - $appbox = \appbox::create($app['Core'], $setupRegistry, $conn, $appbox_name, true); - - $configuration = \Alchemy\Phrasea\Core\Configuration::build(); - - if ($configuration->isInstalled()) - { - $serviceName = $configuration->getOrm(); - $confService = $configuration->getService($serviceName); - - $ormService = \Alchemy\Phrasea\Core\Service\Builder::create( - $app['Core'] - , $serviceName - , $confService - ); - - if ($ormService->getType() === 'doctrine') { - /* @var $em \Doctrine\ORM\EntityManager */ + $request = $app['request']; - $em = $ormService->getDriver(); + $php_constraint = \setup::check_php_version(); + $writability_constraints = \setup::check_writability(new \Setup_Registry()); + $extension_constraints = \setup::check_php_extension(); + $opcode_constraints = \setup::check_cache_opcode(); + $php_conf_constraints = \setup::check_php_configuration(); + $locales_constraints = \setup::check_system_locales(); - $metadatas = $em->getMetadataFactory()->getAllMetadata(); - - if (!empty($metadatas)) - { - // Create SchemaTool - $tool = new \Doctrine\ORM\Tools\SchemaTool($em); - // Create schema - $tool->dropSchema($metadatas); - $tool->createSchema($metadatas); - } - } - } - - $registry = \registry::get_instance(); - \setup::create_global_values($registry); - - $appbox->set_registry($registry); - - $registry->set('GV_base_datapath_noweb', \p4string::addEndSlash($request->get('datapath_noweb')), \registry::TYPE_STRING); - $registry->set('GV_base_datapath_web', \p4string::addEndSlash($request->get('datapath_web')), \registry::TYPE_STRING); - $registry->set('GV_base_dataurl', \p4string::addEndSlash($request->get('mount_point_web')), \registry::TYPE_STRING); - $registry->set('GV_ServerName', $servername, \registry::TYPE_STRING); - $registry->set('GV_cli', $request->get('binary_php'), \registry::TYPE_STRING); - $registry->set('GV_imagick', $request->get('binary_convert'), \registry::TYPE_STRING); - $registry->set('GV_pathcomposite', $request->get('binary_composite'), \registry::TYPE_STRING); - $registry->set('GV_exiftool', $request->get('binary_exiftool'), \registry::TYPE_STRING); - $registry->set('GV_swf_extract', $request->get('binary_swfextract'), \registry::TYPE_STRING); - $registry->set('GV_pdf2swf', $request->get('binary_pdf2swf'), \registry::TYPE_STRING); - $registry->set('GV_swf_render', $request->get('binary_swfrender'), \registry::TYPE_STRING); - $registry->set('GV_unoconv', $request->get('binary_unoconv'), \registry::TYPE_STRING); - $registry->set('GV_ffmpeg', $request->get('binary_ffmpeg'), \registry::TYPE_STRING); - $registry->set('GV_mp4box', $request->get('binary_MP4Box'), \registry::TYPE_STRING); - $registry->set('GV_mplayer', $request->get('binary_mplayer'), \registry::TYPE_STRING); - $registry->set('GV_pdftotext', $request->get('binary_xpdf'), \registry::TYPE_STRING); - - $user = \User_Adapter::create($appbox, $request->get('email'), $request->get('password'), $request->get('email'), true); - - if (!\p4string::hasAccent($databox_name)) - { - if ($databox_name) - { - $template = new \system_file(__DIR__ . '/../../../../conf.d/data_templates/' . $request->get('db_template') . '.xml'); - $databox = \databox::create($appbox, $connbas, $template, $registry); - $user->ACL() - ->give_access_to_sbas(array($databox->get_sbas_id())) - ->update_rights_to_sbas( - $databox->get_sbas_id(), array( - 'bas_manage' => 1, 'bas_modify_struct' => 1, - 'bas_modif_th' => 1, 'bas_chupub' => 1 - ) + $constraints_coll = array( + 'php_constraint' => $php_constraint + , 'writability_constraints' => $writability_constraints + , 'extension_constraints' => $extension_constraints + , 'opcode_constraints' => $opcode_constraints + , 'php_conf_constraints' => $php_conf_constraints + , 'locales_constraints' => $locales_constraints ); + $redirect = true; - $a = \collection::create($databox, $appbox, 'test', $user); - - $user->ACL()->give_access_to_base(array($a->get_base_id())); - $user->ACL()->update_rights_to_base($a->get_base_id(), array( - 'canpush' => 1, 'cancmd' => 1 - , 'canputinalbum' => 1, 'candwnldhd' => 1, 'candwnldpreview' => 1, 'canadmin' => 1 - , 'actif' => 1, 'canreport' => 1, 'canaddrecord' => 1, 'canmodifrecord' => 1 - , 'candeleterecord' => 1, 'chgstatus' => 1, 'imgtools' => 1, 'manage' => 1 - , 'modify_struct' => 1, 'nowatermark' => 1 - ) - ); - - $tasks = $request->get('create_task', array()); - foreach ($tasks as $task) + foreach ($constraints_coll as $key => $constraints) { - switch ($task) + $unset = true; + foreach ($constraints as $constraint) { - case 'cindexer'; - case 'subdef'; - case 'writemeta'; - $class_name = sprintf('task_period_%s', $task); - if ($task === 'cindexer') - { - $credentials = $databox->get_connection()->get_credentials(); - - $host = $credentials['hostname']; - $port = $credentials['port']; - $user_ab = $credentials['user']; - $password = $credentials['password']; - - $settings = "\n\n" - . str_replace('/phraseanet_indexer', '', $request->get('binary_phraseanet_indexer')) - . "" . $host . "" - . $port . "" - . $appbox_name . "" - . $user_ab . "" - . $password . "25200" - . "10" - . "0utf8"; - } - else - { - $settings = null; - } - - \task_abstract::create($appbox, $class_name, $settings); - break; - default: - break; + if (!$constraint->is_ok() && $constraint->is_blocker()) + $redirect = $unset = false; + } + if ($unset === true) + { + unset($constraints_coll[$key]); } } - } - } - \phrasea::start($app['Core']); + if ($redirect) + { + return $app->redirect('/setup/installer/step2/'); + } - $auth = new \Session_Authentication_None($user); - $appbox->get_session()->authenticate($auth); + $ld_path = array(__DIR__ . '/../../../../../templates/web'); + $loader = new \Twig_Loader_Filesystem($ld_path); + $twig = new \Twig_Environment($loader); - $redirection = '/admin/?section=taskmanager¬ice=install_success'; + $html = $twig->render( + '/setup/index.html.twig' + , array_merge($constraints_coll, array( + 'locale' => \Session_Handler::get_locale() + , 'available_locales' => $app['Core']::getAvailableLanguages() + , 'version_number' => $app['Core']['Version']->getNumber() + , 'version_name' => $app['Core']['Version']->getName() + , 'current_servername' => $request->getScheme() . '://' . $request->getHttpHost() . '/' + )) + ); - return $app->redirect($redirection); - } - catch (\Exception $e) - { - \setup::rollback($conn, $connbas); - } + return new Response($html); + }); - return $app->redirect('/setup/installer/step2/?error=' . sprintf(_('an error occured : %s'), $e->getMessage())); - }); + $controllers->get('/step2/', function() use ($app) + { + \phrasea::use_i18n(\Session_Handler::get_locale()); + + $ld_path = array(__DIR__ . '/../../../../../templates/web'); + $loader = new \Twig_Loader_Filesystem($ld_path); + + $twig = new \Twig_Environment($loader); + $twig->addExtension(new \Twig_Extensions_Extension_I18n()); + + $request = $app['request']; + + $warnings = array(); + + $php_constraint = \setup::check_php_version(); + $writability_constraints = \setup::check_writability(new \Setup_Registry()); + $extension_constraints = \setup::check_php_extension(); + $opcode_constraints = \setup::check_cache_opcode(); + $php_conf_constraints = \setup::check_php_configuration(); + $locales_constraints = \setup::check_system_locales(); + + $constraints_coll = array( + 'php_constraint' => $php_constraint + , 'writability_constraints' => $writability_constraints + , 'extension_constraints' => $extension_constraints + , 'opcode_constraints' => $opcode_constraints + , 'php_conf_constraints' => $php_conf_constraints + , 'locales_constraints' => $locales_constraints + ); + + foreach ($constraints_coll as $key => $constraints) + { + $unset = true; + foreach ($constraints as $constraint) + { + if (!$constraint->is_ok() && !$constraint->is_blocker()) + { + $warnings[] = $constraint->get_message(); + } + } + } + + if ($request->getScheme() == 'http') + { + $warnings[] = _('It is not recommended to install Phraseanet without HTTPS support'); + } + + $html = $twig->render( + '/setup/step2.html.twig' + , array( + 'locale' => \Session_Handler::get_locale() + , 'available_locales' => $app['Core']::getAvailableLanguages() + , 'available_templates' => \appbox::list_databox_templates() + , 'version_number' => $app['Core']['Version']->getNumber() + , 'version_name' => $app['Core']['Version']->getName() + , 'warnings' => $warnings + , 'error' => $request->get('error') + , 'current_servername' => $request->getScheme() . '://' . $request->getHttpHost() . '/' + , 'discovered_binaries' => \setup::discover_binaries() + , 'rootpath' => dirname(dirname(dirname(dirname(__DIR__)))) . '/' + ) + ); + + return new Response($html); + }); + + $controllers->post('/install/', function() use ($app) + { + set_time_limit(360); + \phrasea::use_i18n(\Session_Handler::get_locale()); + $request = $app['request']; + + $servername = $request->getScheme() . '://' . $request->getHttpHost() . '/'; + + $setupRegistry = new \Setup_Registry(); + $setupRegistry->set('GV_ServerName', $servername, \registry::TYPE_STRING); + + $conn = $connbas = null; + + $hostname = $request->get('ab_hostname'); + $port = $request->get('ab_port'); + $user_ab = $request->get('ab_user'); + $password = $request->get('ab_password'); + + $appbox_name = $request->get('ab_name'); + $databox_name = $request->get('db_name'); + + try + { + $conn = new \connection_pdo('appbox', $hostname, $port, $user_ab, $password, $appbox_name, array(), $setupRegistry); + } + catch (\Exception $e) + { + return $app->redirect('/setup/installer/step2/?error=' . _('Appbox is unreachable')); + } + + try + { + if ($databox_name) + { + $connbas = new \connection_pdo('databox', $hostname, $port, $user_ab, $password, $databox_name, array(), $setupRegistry); + } + } + catch (\Exception $e) + { + return $app->redirect('/setup/installer/step2/?error=' . _('Databox is unreachable')); + } + + \setup::rollback($conn, $connbas); + + try + { + $setupRegistry = new \Setup_Registry(); + $setupRegistry->set('GV_ServerName', $servername, \registry::TYPE_STRING); + + $appbox = \appbox::create($app['Core'], $setupRegistry, $conn, $appbox_name, true); + + $configuration = \Alchemy\Phrasea\Core\Configuration::build(); + + if ($configuration->isInstalled()) + { + $serviceName = $configuration->getOrm(); + $confService = $configuration->getService($serviceName); + + $ormService = \Alchemy\Phrasea\Core\Service\Builder::create( + $app['Core'] + , $serviceName + , $confService + ); + + if ($ormService->getType() === 'doctrine') + { + /* @var $em \Doctrine\ORM\EntityManager */ + + $em = $ormService->getDriver(); + + $metadatas = $em->getMetadataFactory()->getAllMetadata(); + + if (!empty($metadatas)) + { + // Create SchemaTool + $tool = new \Doctrine\ORM\Tools\SchemaTool($em); + // Create schema + $tool->dropSchema($metadatas); + $tool->createSchema($metadatas); + } + } + } + + $registry = \registry::get_instance(); + \setup::create_global_values($registry); + + $appbox->set_registry($registry); + + $registry->set('GV_base_datapath_noweb', \p4string::addEndSlash($request->get('datapath_noweb')), \registry::TYPE_STRING); + $registry->set('GV_base_datapath_web', \p4string::addEndSlash($request->get('datapath_web')), \registry::TYPE_STRING); + $registry->set('GV_base_dataurl', \p4string::addEndSlash($request->get('mount_point_web')), \registry::TYPE_STRING); + $registry->set('GV_ServerName', $servername, \registry::TYPE_STRING); + $registry->set('GV_cli', $request->get('binary_php'), \registry::TYPE_STRING); + $registry->set('GV_imagick', $request->get('binary_convert'), \registry::TYPE_STRING); + $registry->set('GV_pathcomposite', $request->get('binary_composite'), \registry::TYPE_STRING); + $registry->set('GV_exiftool', $request->get('binary_exiftool'), \registry::TYPE_STRING); + $registry->set('GV_swf_extract', $request->get('binary_swfextract'), \registry::TYPE_STRING); + $registry->set('GV_pdf2swf', $request->get('binary_pdf2swf'), \registry::TYPE_STRING); + $registry->set('GV_swf_render', $request->get('binary_swfrender'), \registry::TYPE_STRING); + $registry->set('GV_unoconv', $request->get('binary_unoconv'), \registry::TYPE_STRING); + $registry->set('GV_ffmpeg', $request->get('binary_ffmpeg'), \registry::TYPE_STRING); + $registry->set('GV_mp4box', $request->get('binary_MP4Box'), \registry::TYPE_STRING); + $registry->set('GV_mplayer', $request->get('binary_mplayer'), \registry::TYPE_STRING); + $registry->set('GV_pdftotext', $request->get('binary_xpdf'), \registry::TYPE_STRING); + + $user = \User_Adapter::create($appbox, $request->get('email'), $request->get('password'), $request->get('email'), true); + + if (!\p4string::hasAccent($databox_name)) + { + if ($databox_name) + { + $template = new \system_file(__DIR__ . '/../../../../conf.d/data_templates/' . $request->get('db_template') . '.xml'); + $databox = \databox::create($appbox, $connbas, $template, $registry); + $user->ACL() + ->give_access_to_sbas(array($databox->get_sbas_id())) + ->update_rights_to_sbas( + $databox->get_sbas_id(), array( + 'bas_manage' => 1, 'bas_modify_struct' => 1, + 'bas_modif_th' => 1, 'bas_chupub' => 1 + ) + ); + + $a = \collection::create($databox, $appbox, 'test', $user); + + $user->ACL()->give_access_to_base(array($a->get_base_id())); + $user->ACL()->update_rights_to_base($a->get_base_id(), array( + 'canpush' => 1, 'cancmd' => 1 + , 'canputinalbum' => 1, 'candwnldhd' => 1, 'candwnldpreview' => 1, 'canadmin' => 1 + , 'actif' => 1, 'canreport' => 1, 'canaddrecord' => 1, 'canmodifrecord' => 1 + , 'candeleterecord' => 1, 'chgstatus' => 1, 'imgtools' => 1, 'manage' => 1 + , 'modify_struct' => 1, 'nowatermark' => 1 + ) + ); + + $tasks = $request->get('create_task', array()); + foreach ($tasks as $task) + { + switch ($task) + { + case 'cindexer'; + case 'subdef'; + case 'writemeta'; + $class_name = sprintf('task_period_%s', $task); + if ($task === 'cindexer') + { + $credentials = $databox->get_connection()->get_credentials(); + + $host = $credentials['hostname']; + $port = $credentials['port']; + $user_ab = $credentials['user']; + $password = $credentials['password']; + + $settings = "\n\n" + . str_replace('/phraseanet_indexer', '', $request->get('binary_phraseanet_indexer')) + . "" . $host . "" + . $port . "" + . $appbox_name . "" + . $user_ab . "" + . $password . "25200" + . "10" + . "0utf8"; + } + else + { + $settings = null; + } + + \task_abstract::create($appbox, $class_name, $settings); + break; + default: + break; + } + } + } + } + + \phrasea::start($app['Core']); + + $auth = new \Session_Authentication_None($user); + + $appbox->get_session()->authenticate($auth); + + $redirection = '/admin/?section=taskmanager¬ice=install_success'; + + return $app->redirect($redirection); + } + catch (\Exception $e) + { + \setup::rollback($conn, $connbas); + } + + return $app->redirect('/setup/installer/step2/?error=' . sprintf(_('an error occured : %s'), $e->getMessage())); + }); return $controllers; } diff --git a/lib/Alchemy/Phrasea/Core.php b/lib/Alchemy/Phrasea/Core.php index a1a6dd3141..7238354c22 100644 --- a/lib/Alchemy/Phrasea/Core.php +++ b/lib/Alchemy/Phrasea/Core.php @@ -275,7 +275,12 @@ class Core extends \Pimple $appbox = \appbox::get_instance($this); $session = \Session_Handler::getInstance($appbox); - return \User_Adapter::getInstance($session->get_usr_id(), $appbox); + if($session->get_usr_id()) + { + return \User_Adapter::getInstance($session->get_usr_id(), $appbox); + } + + return null; } /** diff --git a/lib/Alchemy/Phrasea/Core/Configuration.php b/lib/Alchemy/Phrasea/Core/Configuration.php index e7d7704e01..a618ac80fc 100644 --- a/lib/Alchemy/Phrasea/Core/Configuration.php +++ b/lib/Alchemy/Phrasea/Core/Configuration.php @@ -49,6 +49,7 @@ class Configuration { $specifications = new Configuration\ApplicationSpecification(); } + return new self($specifications, $environment); } @@ -83,15 +84,6 @@ class Configuration $cacheService = "array_cache"; - if (extension_loaded('apc')) - { - $cacheService = "apc_cache"; - } - elseif (extension_loaded('xcache')) - { - $cacheService = "xcache_cache"; - } - $retrieve_old_credentials = function(\SplFileObject $connexionInc) { require $connexionInc->getPathname(); diff --git a/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php b/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php index abb8b97834..61ca31c428 100644 --- a/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php +++ b/lib/Alchemy/Phrasea/Core/Configuration/ApplicationSpecification.php @@ -31,21 +31,21 @@ class ApplicationSpecification implements Specification public function setConfigurations($configurations) { return file_put_contents( - $this->getConfigurationsPathFile(), $this->parser->dump($configurations, 5) + $this->getConfigurationsPathFile(), $this->parser->dump($configurations, 7) ); } public function setConnexions($connexions) { return file_put_contents( - $this->getConnexionsPathFile(), $this->parser->dump($connexions, 5) + $this->getConnexionsPathFile(), $this->parser->dump($connexions, 7) ); } public function setServices($services) { return file_put_contents( - $this->getServicesPathFile(), $this->parser->dump($services, 5) + $this->getServicesPathFile(), $this->parser->dump($services, 7) ); } @@ -134,12 +134,14 @@ class ApplicationSpecification implements Specification $this->getConfigurationsFile(); $this->getConnexionsFile(); $this->getServicesFile(); + return true; } catch (\Exception $e) { } + return false; } diff --git a/lib/Alchemy/Phrasea/Core/Service/Cache/MemcacheCache.php b/lib/Alchemy/Phrasea/Core/Service/Cache/MemcacheCache.php index 7a50a19512..b0c3ebb533 100644 --- a/lib/Alchemy/Phrasea/Core/Service/Cache/MemcacheCache.php +++ b/lib/Alchemy/Phrasea/Core/Service/Cache/MemcacheCache.php @@ -67,16 +67,15 @@ class MemcacheCache extends ServiceAbstract implements ServiceInterface if (isset($stats[$key])) { - $service = new CacheDriver\MemcacheCache(); - $service->setMemcache($memcache); + $this->cache = new CacheDriver\MemcacheCache(); + $this->cache->setMemcache($memcache); + + $this->cache->setNamespace(md5(realpath(__DIR__.'/../../../../../../'))); } else { throw new \Exception(sprintf("Memcache instance with host '%s' and port '%s' is not reachable", $this->host, $this->port)); } - - $this->cache = $service; - $this->cache->setNamespace(md5(realpath(__DIR__.'/../../../../../../'))); } return $this->cache; diff --git a/lib/Alchemy/Phrasea/Core/Service/Cache/RedisCache.php b/lib/Alchemy/Phrasea/Core/Service/Cache/RedisCache.php index 00e9b44183..586ad6b56c 100644 --- a/lib/Alchemy/Phrasea/Core/Service/Cache/RedisCache.php +++ b/lib/Alchemy/Phrasea/Core/Service/Cache/RedisCache.php @@ -71,16 +71,15 @@ class RedisCache extends ServiceAbstract implements ServiceInterface if ($redis->connect($this->host, $this->port)) { - $service = new CacheDriver\RedisCache(); - $service->setRedis($redis); + $this->cache = new CacheDriver\RedisCache(); + $this->cache->setRedis($redis); + $this->cache->setNamespace(md5(realpath(__DIR__ . '/../../../../../../'))); } else { throw new \Exception(sprintf("Redis instance with host '%s' and port '%s' is not reachable", $this->host, $this->port)); } - $this->cache = $service; - $this->cache->setNamespace(md5(realpath(__DIR__ . '/../../../../../../'))); } return $this->cache; diff --git a/lib/Alchemy/Phrasea/Core/Service/Cache/XcacheCache.php b/lib/Alchemy/Phrasea/Core/Service/Cache/XcacheCache.php index f849caf7f2..fcdf9af11b 100644 --- a/lib/Alchemy/Phrasea/Core/Service/Cache/XcacheCache.php +++ b/lib/Alchemy/Phrasea/Core/Service/Cache/XcacheCache.php @@ -42,9 +42,9 @@ class XcacheCache extends ServiceAbstract implements ServiceInterface if (!$this->cache) { - $service = new CacheDriver\XcacheCache(); + $this->cache = new CacheDriver\XcacheCache(); - $service->setNamespace(md5(realpath(__DIR__ . '/../../../../../../'))); + $this->cache->setNamespace(md5(realpath(__DIR__ . '/../../../../../../'))); } return $this->cache; diff --git a/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php b/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php index 986b51fdcc..237d734448 100644 --- a/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php +++ b/lib/Alchemy/Phrasea/Core/Service/Exception/ServiceNotFound.php @@ -19,4 +19,4 @@ namespace Alchemy\Phrasea\Core\Service\Exception; class ServiceNotFound extends \Exception { -} \ No newline at end of file +} diff --git a/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php b/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php index 819d6bdbec..071c819560 100644 --- a/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php +++ b/lib/Alchemy/Phrasea/Core/Service/Log/FirePHP.php @@ -36,7 +36,7 @@ class FirePHP extends ServiceAbstract implements ServiceInterface $this->logger = new Logger('FirePHP'); $this->logger->pushHandler(new FirePHPHandler()); - + return $this; } @@ -60,4 +60,4 @@ class FirePHP extends ServiceAbstract implements ServiceInterface return array(); } -} \ No newline at end of file +} diff --git a/lib/Alchemy/Phrasea/Core/Service/Log/Monolog.php b/lib/Alchemy/Phrasea/Core/Service/Log/Monolog.php index 6739399e3e..438cac0ec2 100644 --- a/lib/Alchemy/Phrasea/Core/Service/Log/Monolog.php +++ b/lib/Alchemy/Phrasea/Core/Service/Log/Monolog.php @@ -66,7 +66,7 @@ class Monolog extends ServiceAbstract implements ServiceInterface , $handler , $this->name , $this->getScope() - , implode(", ", $this->handler) + , implode(", ", $this->handlers) ) ); } diff --git a/lib/Alchemy/Phrasea/Core/Version.php b/lib/Alchemy/Phrasea/Core/Version.php index 3b270b6c52..2017ca1511 100644 --- a/lib/Alchemy/Phrasea/Core/Version.php +++ b/lib/Alchemy/Phrasea/Core/Version.php @@ -20,7 +20,7 @@ namespace Alchemy\Phrasea\Core; class Version { - protected static $number = '3.6.0.0a2'; + protected static $number = '3.6.0.0RC1'; protected static $name = 'Brachiosaure'; public static function getNumber() diff --git a/lib/Alchemy/Phrasea/Helper/Prod.php b/lib/Alchemy/Phrasea/Helper/Prod.php index 8c4772fa23..be3cf5fce3 100644 --- a/lib/Alchemy/Phrasea/Helper/Prod.php +++ b/lib/Alchemy/Phrasea/Helper/Prod.php @@ -32,10 +32,13 @@ class Prod extends Helper ); $bases = $fields = $dates = array(); - $appbox = \appbox::get_instance($this->core); - $session = $appbox->get_session(); $user = $this->getCore()->getAuthenticatedUser(); + if(!$user instanceof \User_Adapter) + { + return $search_datas; + } + $searchSet = $user->getPrefs('search'); foreach ($user->ACL()->get_granted_sbas() as $databox) diff --git a/lib/Alchemy/Phrasea/Helper/Record/Edit.php b/lib/Alchemy/Phrasea/Helper/Record/Edit.php index a3b43f14c7..f9c2771cbb 100644 --- a/lib/Alchemy/Phrasea/Helper/Record/Edit.php +++ b/lib/Alchemy/Phrasea/Helper/Record/Edit.php @@ -422,27 +422,6 @@ class Edit extends RecordHelper { $i = count($this->javascript_fields); - switch ($meta->get_type()) - { - case 'datetime': - $format = _('phraseanet::technique::datetime-edit-format'); - $explain = _('phraseanet::technique::datetime-edit-explain'); - break; - case 'date': - $format = _('phraseanet::technique::date-edit-format'); - $explain = _('phraseanet::technique::date-edit-explain'); - break; - case 'time': - $format = _('phraseanet::technique::time-edit-format'); - $explain = _('phraseanet::technique::time-edit-explain'); - break; - default: - $format = $explain = ""; - break; - } - - $regfield = ($meta->is_regname() || $meta->is_regdesc() || $meta->is_regdate()); - $source = $meta->get_source(); $separator = $meta->get_separator(); @@ -455,12 +434,11 @@ class Edit extends RecordHelper , 'required' => $meta->is_required() , 'readonly' => $meta->is_readonly() , 'type' => $meta->get_type() - , 'format' => $format - , 'explain' => $explain + , 'format' => '' + , 'explain' => '' , 'tbranch' => $meta->get_tbranch() , 'maxLength' => $source ? $source->maxlength() : 0 , 'minLength' => $source ? $source->minLength() : 0 - , 'regfield' => $regfield , 'multi' => $meta->is_multi() , 'separator' => $separator , 'vocabularyControl' => $meta->getVocabularyControl() ? $meta->getVocabularyControl()->getType() : null @@ -615,55 +593,6 @@ class Edit extends RecordHelper } return $this; - -// foreach ($trecchanges as $fname => $fchange) -// { -// $bool = false; -// if ($regfields && $parm['act_option'] == 'SAVEGRP' -// && $fname == $regfields['regname']) -// { -// try -// { -// $basket = basket_adapter::getInstance($parm['ssel']); -// $basket->name = implode(' ', $fchange['values']); -// $basket->save(); -// $bool = true; -// } -// catch (Exception $e) -// { -// echo $e->getMessage(); -// } -// } -// if ($regfields && $parm['act_option'] == 'SAVEGRP' -// && $fname == $regfields['regdesc']) -// { -// try -// { -// $basket = basket_adapter::getInstance($parm['ssel']); -// $basket->desc = implode(' ', $fchange['values']); -// $basket->save(); -// $bool = true; -// } -// catch (Exception $e) -// { -// echo $e->getMessage(); -// } -// } -// if ($bool) -// { -// try -// { -// $basket = basket_adapter::getInstance($parm['ssel']); -// $basket->delete_cache(); -// } -// catch (Exception $e) -// { -// -// } -// } -// } -// -// return $this; } } diff --git a/lib/Alchemy/Phrasea/Helper/User/Edit.php b/lib/Alchemy/Phrasea/Helper/User/Edit.php index 035d9afce4..08874ae68f 100644 --- a/lib/Alchemy/Phrasea/Helper/User/Edit.php +++ b/lib/Alchemy/Phrasea/Helper/User/Edit.php @@ -131,10 +131,7 @@ class Edit extends \Alchemy\Phrasea\Helper\Helper sum(remain_dwnld) as remain_dwnld, sum(month_dwnld_max) as month_dwnld_max, - mask_xor as maskxordec, - bin(mask_xor) as maskxorbin, - mask_and as maskanddec, - bin(mask_and) as maskandbin + sum(mask_and + mask_xor) as masks FROM (usr u, bas b, sbas s) LEFT JOIN (basusr bu) @@ -206,8 +203,6 @@ class Edit extends \Alchemy\Phrasea\Helper\Helper { $this->base_id = (int) $this->request->get('base_id'); -// $this->base_id = (int) $parm['base_id']; - $sql = "SELECT u.usr_id, restrict_dwnld, remain_dwnld, month_dwnld_max FROM (usr u INNER JOIN basusr bu ON u.usr_id = bu.usr_id) WHERE u.usr_id = " . implode(' OR u.usr_id = ', $this->users) . " diff --git a/lib/Alchemy/Phrasea/Out/Module/PDF.php b/lib/Alchemy/Phrasea/Out/Module/PDF.php index 823ca22c45..6d92f7e829 100644 --- a/lib/Alchemy/Phrasea/Out/Module/PDF.php +++ b/lib/Alchemy/Phrasea/Out/Module/PDF.php @@ -184,8 +184,10 @@ class PDF $fimg = $subdef->get_pathfile(); if (!$user->ACL()->has_right_on_base($rec->get_base_id(), "nowatermark") - && $subdef->get_type() == media_subdef::TYPE_IMAGE) - $fimg = recordutils_image::watermark($rec->get_base_id(), $rec->get_record_id()); + && $subdef->get_type() == \media_subdef::TYPE_IMAGE) + { + $fimg = \recordutils_image::watermark($rec->get_base_id(), $rec->get_record_id()); + } $wimg = $himg = $ImgSize; if ($subdef->get_height() > 0 && $subdef->get_width() > 0) @@ -479,8 +481,8 @@ class PDF $f = $subdef->get_pathfile(); if (!$user->ACL()->has_right_on_base($rec->get_base_id(), "nowatermark") - && $subdef->get_type() == media_subdef::TYPE_IMAGE) - $f = recordutils_image::watermark($rec->get_base_id(), $rec->get_record_id()); + && $subdef->get_type() == \media_subdef::TYPE_IMAGE) + $f = \recordutils_image::watermark($rec->get_base_id(), $rec->get_record_id()); $wimg = $himg = 150; // preview dans un carre de 150 mm if ($subdef->get_width() > 0 && $subdef->get_height() > 0) diff --git a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php index ce4728dbad..cfc1450340 100644 --- a/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php +++ b/lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php @@ -121,7 +121,7 @@ class UserProvider implements ControlProviderInterface public function getRessource($id) { $Core = \bootstrap::getCore(); - + return \User_Adapter::getInstance($id, \appbox::get_instance($Core)); } diff --git a/lib/Doctrine/Proxies/__CG__EntitiesBasket.php b/lib/Doctrine/Proxies/__CG__EntitiesBasket.php index dc1291a29b..4fc6d6b417 100644 --- a/lib/Doctrine/Proxies/__CG__EntitiesBasket.php +++ b/lib/Doctrine/Proxies/__CG__EntitiesBasket.php @@ -229,4 +229,4 @@ class Basket extends \Entities\Basket implements \Doctrine\ORM\Proxy\Proxy } } -} \ No newline at end of file +} diff --git a/lib/Doctrine/Repositories/BasketElementRepository.php b/lib/Doctrine/Repositories/BasketElementRepository.php index 524f30b612..14bc308191 100644 --- a/lib/Doctrine/Repositories/BasketElementRepository.php +++ b/lib/Doctrine/Repositories/BasketElementRepository.php @@ -17,7 +17,7 @@ class BasketElementRepository extends EntityRepository public function findUserElement($element_id, \User_Adapter $user) { - $dql = 'SELECT e, b, s, p, vd + $dql = 'SELECT e FROM Entities\BasketElement e JOIN e.basket b LEFT JOIN e.validation_datas vd @@ -35,9 +35,6 @@ class BasketElementRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters($params); -// $cacheId = "_user_basket_element_" . $element_id . "_" . $user->get_id() . Entities\BasketElement::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $cacheId); - $element = $query->getOneOrNullResult(); /* @var $element \Entities\BasketElement */ @@ -51,7 +48,7 @@ class BasketElementRepository extends EntityRepository public function findElementsByRecord(\record_adapter $record) { - $dql = 'SELECT e, b, s, p + $dql = 'SELECT e FROM Entities\BasketElement e JOIN e.basket b LEFT JOIN b.validation s @@ -67,9 +64,6 @@ class BasketElementRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters($params); -// $cacheId = "_basket_element_by_record_" . $record->get_serialize_key() . Entities\BasketElement::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $cacheId); - return $query->getResult(); } @@ -81,7 +75,7 @@ class BasketElementRepository extends EntityRepository */ public function findReceivedElementsByRecord(\record_adapter $record, \User_Adapter $user) { - $dql = 'SELECT e, b, s, p + $dql = 'SELECT e FROM Entities\BasketElement e JOIN e.basket b LEFT JOIN b.validation s @@ -100,15 +94,12 @@ class BasketElementRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters($params); -// $cacheId = "_receveid_element_by_record_" . $record->get_serialize_key() . "_" . $user->getId() . Entities\BasketElement::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $cacheId); - return $query->getResult(); } public function findReceivedValidationElementsByRecord(\record_adapter $record, \User_Adapter $user) { - $dql = 'SELECT e, b, v, p + $dql = 'SELECT e FROM Entities\BasketElement e JOIN e.basket b JOIN b.validation v @@ -126,9 +117,6 @@ class BasketElementRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters($params); -// $cacheId = "_receveid_validation_element_by_record" . $record->get_serialize_key() . "_" . $user->getId() . Entities\BasketElement::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $cacheId); - return $query->getResult(); } diff --git a/lib/Doctrine/Repositories/BasketRepository.php b/lib/Doctrine/Repositories/BasketRepository.php index 5f8746376b..f4e2265afb 100644 --- a/lib/Doctrine/Repositories/BasketRepository.php +++ b/lib/Doctrine/Repositories/BasketRepository.php @@ -37,11 +37,9 @@ class BasketRepository extends EntityRepository */ public function findActiveByUser(\User_Adapter $user, $sort = null) { - $dql = 'SELECT b, e, s, p + $dql = 'SELECT b FROM Entities\Basket b LEFT JOIN b.elements e - LEFT JOIN b.validation s - LEFT JOIN s.participants p WHERE b.usr_id = :usr_id AND b.archived = false'; @@ -57,9 +55,6 @@ class BasketRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters(array('usr_id' => $user->get_id())); -// $idCache = "_active_by_user_" . ($sort === null ? "" : $sort. "_" ) . $user->get_id() . Entities\Basket::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $idCache); - return $query->getResult(); } @@ -71,7 +66,7 @@ class BasketRepository extends EntityRepository */ public function findUnreadActiveByUser(\User_Adapter $user) { - $dql = 'SELECT b, e, s, p + $dql = 'SELECT b FROM Entities\Basket b JOIN b.elements e LEFT JOIN b.validation s @@ -79,9 +74,11 @@ class BasketRepository extends EntityRepository WHERE b.archived = false AND ( (b.usr_id = :usr_id_owner AND b.is_read = false) - OR (b.usr_id != :usr_id_ownertwo AND p.usr_id = :usr_id_participant - AND p.is_aware = false) + OR (b.usr_id != :usr_id_ownertwo + AND p.usr_id = :usr_id_participant + AND p.is_aware = false) ) + AND (s.expires IS NULL OR s.expires > CURRENT_TIMESTAMP()) ORDER BY e.ord ASC'; $params = array( @@ -93,9 +90,6 @@ class BasketRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters($params); -// $idCache = "findUnreadActiveByUser" . $user->get_id() . Entities\Basket::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $idCache); - return $query->getResult(); } @@ -108,7 +102,7 @@ class BasketRepository extends EntityRepository */ public function findActiveValidationByUser(\User_Adapter $user, $sort = null) { - $dql = 'SELECT b, e, s, p, v + $dql = 'SELECT b FROM Entities\Basket b JOIN b.elements e JOIN e.validation_datas v @@ -129,9 +123,6 @@ class BasketRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters(array(1 => $user->get_id(), 2 => $user->get_id())); -// $idCache = "_active_validation_by_user_" . $user->get_id() . "_" . $sort . Entities\Basket::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $idCache); - return $query->getResult(); } @@ -146,21 +137,15 @@ class BasketRepository extends EntityRepository */ public function findUserBasket($basket_id, \User_Adapter $user, $requireOwner) { - $dql = 'SELECT b, e, s, p, v + $dql = 'SELECT b, e FROM Entities\Basket b LEFT JOIN b.elements e - LEFT JOIN e.validation_datas v - LEFT JOIN b.validation s - LEFT JOIN s.participants p WHERE b.id = :basket_id ORDER BY e.ord ASC'; $query = $this->_em->createQuery($dql); $query->setParameters(array('basket_id' => $basket_id)); -// $cacheId = "_find_user_" . $basket_id . Entities\Basket::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $cacheId); - $basket = $query->getOneOrNullResult(); /* @var $basket \Entities\Basket */ @@ -173,7 +158,6 @@ class BasketRepository extends EntityRepository { $participant = false; - $basket = $this->_em->merge($basket); if ($basket->getValidation() && !$requireOwner) { try @@ -213,9 +197,6 @@ class BasketRepository extends EntityRepository $query = $this->_em->createQuery($dql); $query->setParameters($params); -// $idCache = "_containing_record_" . $record->get_serialize_key() . Entities\Basket::CACHE_SUFFIX; -// $query->useResultCache(true, 1800, $idCache); - return $query->getResult(); } @@ -235,7 +216,7 @@ class BasketRepository extends EntityRepository ); break; case self::VALIDATION_DONE: - $dql = 'SELECT b, e, s + $dql = 'SELECT b, e FROM Entities\Basket b JOIN b.elements e JOIN b.validation s @@ -247,7 +228,7 @@ class BasketRepository extends EntityRepository ); break; case self::VALIDATION_SENT: - $dql = 'SELECT b, v, e + $dql = 'SELECT b, e FROM Entities\Basket b JOIN b.elements e JOIN b.validation v @@ -257,9 +238,9 @@ class BasketRepository extends EntityRepository ); break; default: - $dql = 'SELECT b, e, s, p + $dql = 'SELECT b, e FROM Entities\Basket b - JOIN b.elements e + LEFT JOIN b.elements e LEFT JOIN b.validation s LEFT JOIN s.participants p WHERE (b.usr_id = :usr_id OR p.usr_id = :validating_usr_id)'; @@ -268,6 +249,17 @@ class BasketRepository extends EntityRepository 'validating_usr_id' => $user->get_id() ); break; + case self::MYBASKETS: + $dql = 'SELECT b, e + FROM Entities\Basket b + LEFT JOIN b.elements e + LEFT JOIN b.validation s + LEFT JOIN s.participants p + WHERE (b.usr_id = :usr_id)'; + $params = array( + 'usr_id' => $user->get_id() + ); + break; } if (ctype_digit($year) && strlen($year) == 4) @@ -286,7 +278,7 @@ class BasketRepository extends EntityRepository $params['description'] = '%' . $query . '%'; } - $dql .= ' ORDER BY e.ord ASC'; + $dql .= ' ORDER BY b.id DESC, e.ord ASC'; $query = $this->_em->createQuery($dql); $query->setParameters($params); @@ -294,12 +286,41 @@ class BasketRepository extends EntityRepository $count = Paginate::getTotalQueryResults($query); $paginateQuery = Paginate::getPaginateQuery($query, $offset, $perPage); -// $idCache = "_" . $type . "_workzone_basket_" . $user->get_id() . Entities\Basket::CACHE_SUFFIX; -// $paginateQuery->useResultCache(true, 1800, $idCache); - $result = $paginateQuery->getResult(); return array('count' => $count, 'result' => $result); } + /** + * Return all actives validation where current user is involved and user basket + * @param \User_Adapter $user + * @param type $sort + * @return Array + */ + public function findActiveValidationAndBasketByUser(\User_Adapter $user, $sort = null) + { + $dql = 'SELECT b, e + FROM Entities\Basket b + LEFT JOIN b.elements e + LEFT JOIN b.validation s + LEFT JOIN s.participants p + WHERE (b.usr_id = :usr_id + AND b.archived = false) OR (b.usr_id != :usr_id AND p.usr_id = :usr_id + AND (s.expires IS NULL OR s.expires > CURRENT_TIMESTAMP()))'; + + if ($sort == 'date') + { + $dql .= ' ORDER BY b.created DESC, e.ord ASC'; + } + elseif ($sort == 'name') + { + $dql .= ' ORDER BY b.name ASC, e.ord ASC'; + } + + $query = $this->_em->createQuery($dql); + $query->setParameters(array('usr_id' => $user->get_id())); + + return $query->getResult(); + } + } diff --git a/lib/Doctrine/Repositories/StoryWZRepository.php b/lib/Doctrine/Repositories/StoryWZRepository.php index e14467ad79..8b1db19628 100644 --- a/lib/Doctrine/Repositories/StoryWZRepository.php +++ b/lib/Doctrine/Repositories/StoryWZRepository.php @@ -44,7 +44,26 @@ class StoryWZRepository extends EntityRepository if ($sort == 'name') { - uasort($stories, array('\\Repositories\\StoryWZRepository', 'title_compare')); + $sortedStories = array(); + foreach ($stories as $story) + { + $sortedStories[] = $story->getRecord()->get_title(); + } + + uasort($sortedStories, function($a, $b) + { + if ($a == $b) + { + return 0; + } + + return ($a < $b) ? -1 : 1; + }); + + foreach ($sortedStories as $idStory => $titleStory) + { + $sortedStories[$idStory] = $stories[$idStory]; + } } return $stories; @@ -54,7 +73,7 @@ class StoryWZRepository extends EntityRepository { $story = $this->find($id); - if($story) + if ($story) { try { @@ -66,7 +85,7 @@ class StoryWZRepository extends EntityRepository throw new \Exception_NotFound('Story not found'); } - if($story->getUser()->get_id() !== $user->get_id()) + if ($story->getUser()->get_id() !== $user->get_id()) { throw new \Exception_Forbidden('You have not access to ths story'); } @@ -79,16 +98,6 @@ class StoryWZRepository extends EntityRepository return $story; } - protected static function title_compare(\Entities\StoryWZ $a, \Entities\StoryWZ $b) - { - if ($a->getRecord()->get_title() == $b->getRecord()->get_title()) - { - return 0; - } - - return ($a->getRecord()->get_title() < $b->getRecord()->get_title()) ? -1 : 1; - } - public function findUserStory(\User_Adapter $user, \record_adapter $Story) { $story = $this->findOneBy( diff --git a/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php b/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php index b710f758c0..175eea6e4b 100644 --- a/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php +++ b/lib/classes/API/OAuth2/Form/DevAppDesktop.class.php @@ -53,12 +53,12 @@ class API_OAuth2_Form_DevAppDesktop /** * - * @var string + * @var string */ public $type; public $scheme_website; public $urlwebsite; - + /** * * @param Request $request @@ -116,7 +116,7 @@ class API_OAuth2_Form_DevAppDesktop /** * - * @return string + * @return string */ public function getType() { @@ -132,7 +132,7 @@ class API_OAuth2_Form_DevAppDesktop { return $this->urlwebsite; } - + public function getSchemeCallback() { return ''; @@ -152,7 +152,8 @@ class API_OAuth2_Form_DevAppDesktop $metadata->addPropertyConstraint('description', new Constraints\NotBlank($blank)); $metadata->addPropertyConstraint('urlwebsite', new Constraints\NotBlank($blank)); $metadata->addPropertyConstraint('urlwebsite', new Constraints\Url($url)); + return; } -} \ No newline at end of file +} diff --git a/lib/classes/API/OAuth2/Form/DevAppInternet.class.php b/lib/classes/API/OAuth2/Form/DevAppInternet.class.php index bfde92cdde..4e93dca0a3 100644 --- a/lib/classes/API/OAuth2/Form/DevAppInternet.class.php +++ b/lib/classes/API/OAuth2/Form/DevAppInternet.class.php @@ -50,10 +50,10 @@ class API_OAuth2_Form_DevAppInternet * @var string */ public $callback; - + public $scheme_website; public $scheme_callback; - + public $urlwebsite; public $urlcallback; @@ -71,10 +71,10 @@ class API_OAuth2_Form_DevAppInternet $this->scheme_website = $request->get('scheme-website', 'http://'); $this->scheme_callback = $request->get('scheme-callback', 'http://'); $this->type = API_OAuth2_Application::WEB_TYPE; - + $this->urlwebsite = $this->scheme_website.$this->website; $this->urlcallback = $this->scheme_callback.$this->callback; - + return $this; } @@ -116,7 +116,7 @@ class API_OAuth2_Form_DevAppInternet /** * - * @return string + * @return string */ public function getType() { @@ -159,6 +159,7 @@ class API_OAuth2_Form_DevAppInternet $metadata->addPropertyConstraint('urlwebsite', new Constraints\Url($url)); $metadata->addPropertyConstraint('urlcallback', new Constraints\NotBlank($blank)); $metadata->addPropertyConstraint('urlcallback', new Constraints\Url($url)); + return; } diff --git a/lib/classes/API/V1/adapter.class.php b/lib/classes/API/V1/adapter.class.php index 9f2d602519..6cacd688c8 100644 --- a/lib/classes/API/V1/adapter.class.php +++ b/lib/classes/API/V1/adapter.class.php @@ -204,6 +204,26 @@ class API_V1_adapter extends API_V1_Abstract return $result; } + public function caption_records(Request $request, $databox_id, $record_id) + { + $result = new API_V1_result($request, $this); + + $record = $this->appbox->get_databox($databox_id)->get_record($record_id); + $fields = $record->get_caption()->get_fields(); + $ret = array(); + foreach ($fields as $field) + { + $ret[$field->get_meta_struct_id()] = array( + 'meta_structure_id' => $field->get_meta_struct_id() + , 'name' => $field->get_name() + , 'value' => $field->get_serialized_values(";") + ); + } + $result->set_datas($ret); + + return $result; + } + /** * Get an API_V1_result containing the results of a records search * @@ -274,7 +294,7 @@ class API_V1_adapter extends API_V1_Abstract $options->set_sort($params['sort'], $params['ord']); $options->set_use_stemming($params['stemme']); - $perPage = $params['per_page']; + $perPage = (int) $params['per_page']; $search_engine = new searchEngine_adapter($registry); $search_engine->set_options($options); diff --git a/lib/classes/Bridge/Api/Dailymotion/Container.class.php b/lib/classes/Bridge/Api/Dailymotion/Container.class.php index 99f23fc1d5..d40265c2ec 100644 --- a/lib/classes/Bridge/Api/Dailymotion/Container.class.php +++ b/lib/classes/Bridge/Api/Dailymotion/Container.class.php @@ -131,4 +131,18 @@ class Bridge_Api_Dailymotion_Container implements Bridge_Api_ContainerInterface return $this->url; } + public function get_duration() + { + return ''; + } + + public function get_category() + { + return ''; + } + + public function is_private() + { + return null; + } } diff --git a/lib/classes/Bridge/Api/Flickr.class.php b/lib/classes/Bridge/Api/Flickr.class.php index 9915ca8f7a..f99aa1fb25 100644 --- a/lib/classes/Bridge/Api/Flickr.class.php +++ b/lib/classes/Bridge/Api/Flickr.class.php @@ -377,6 +377,7 @@ class Bridge_Api_Flickr extends Bridge_Api_Abstract implements Bridge_Api_Interf if (!$response->isOk()) { if ($response->err_code === 3) //Already exists in photoset + return; throw new Bridge_Exception_ApiConnectorRequestFailed(); } @@ -663,12 +664,15 @@ class Bridge_Api_Flickr extends Bridge_Api_Abstract implements Bridge_Api_Interf { if (!$this->registry->get('GV_flickr_api')) + return false; if (trim($this->registry->get('GV_flickr_client_id')) === '') + return false; if (trim($this->registry->get('GV_flickr_client_secret')) === '') + return false; return true; diff --git a/lib/classes/Bridge/Api/Flickr/Container.class.php b/lib/classes/Bridge/Api/Flickr/Container.class.php index 20f2954f97..b542d58058 100644 --- a/lib/classes/Bridge/Api/Flickr/Container.class.php +++ b/lib/classes/Bridge/Api/Flickr/Container.class.php @@ -138,4 +138,19 @@ class Bridge_Api_Flickr_Container implements Bridge_Api_ContainerInterface return $this->type; } + + public function get_duration() + { + return ''; + } + + public function get_category() + { + return ''; + } + + public function is_private() + { + return null; + } } diff --git a/lib/classes/Bridge/Api/Flickr/Element.class.php b/lib/classes/Bridge/Api/Flickr/Element.class.php index 241f6397f2..a62874740d 100644 --- a/lib/classes/Bridge/Api/Flickr/Element.class.php +++ b/lib/classes/Bridge/Api/Flickr/Element.class.php @@ -210,7 +210,7 @@ class Bridge_Api_Flickr_Element implements Bridge_Api_ElementInterface */ public function get_category() { - return null; + return ''; } /** @@ -219,7 +219,7 @@ class Bridge_Api_Flickr_Element implements Bridge_Api_ElementInterface */ public function get_duration() { - return null; + return ''; } /** @@ -279,5 +279,4 @@ class Bridge_Api_Flickr_Element implements Bridge_Api_ElementInterface { return $this->entry["tags"]; } - } diff --git a/lib/classes/Bridge/Api/Youtube/Container.class.php b/lib/classes/Bridge/Api/Youtube/Container.class.php index 6a63aee7c0..1775c17d9f 100644 --- a/lib/classes/Bridge/Api/Youtube/Container.class.php +++ b/lib/classes/Bridge/Api/Youtube/Container.class.php @@ -117,4 +117,20 @@ class Bridge_Api_Youtube_Container implements Bridge_Api_ContainerInterface return $this->type; } + public function get_duration() + { + return ''; + } + + + public function get_category() + { + return ''; + } + + + public function is_private() + { + return null; + } } diff --git a/lib/classes/Feed/Entry/Adapter.class.php b/lib/classes/Feed/Entry/Adapter.class.php index aa15389755..6883e58334 100644 --- a/lib/classes/Feed/Entry/Adapter.class.php +++ b/lib/classes/Feed/Entry/Adapter.class.php @@ -141,7 +141,7 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute(array(':id' => $this->id)); - $row = $stmt->fetch(PDO::FETCH_ASSOC); + $row = $stmt->fetch(PDO::FETCH_ASSOC); $stmt->closeCursor(); if (!$row) @@ -156,13 +156,13 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa $this->created_on = new DateTime($row['created_on']); $datas = array( - 'title' => $this->title - , 'subtitle' => $this->subtitle - , 'author_name' => $this->author_name - , 'author_email' => $this->author_email - , 'publisher_id' => $this->publisher_id - , 'updated_on' => $this->updated_on - , 'created_on' => $this->created_on + 'title' => $this->title + , 'subtitle' => $this->subtitle + , 'author_name' => $this->author_name + , 'author_email' => $this->author_email + , 'publisher_id' => $this->publisher_id + , 'updated_on' => $this->updated_on + , 'created_on' => $this->created_on ); $this->set_data_to_cache($datas); @@ -175,9 +175,9 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa $registry = registry::get_instance(); $href = sprintf( - '%slightbox/feeds/entry/%d/' - , $registry->get('GV_ServerName') - , $this->get_id() + '%slightbox/feeds/entry/%d/' + , $registry->get('GV_ServerName') + , $this->get_id() ); return new Feed_Link($href, $this->get_title(), 'text/html'); @@ -231,10 +231,10 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa if ($title === '') throw new Exception_InvalidArgument(); - $sql = 'UPDATE feed_entries + $sql = 'UPDATE feed_entries SET title = :title, updated_on = NOW() WHERE id = :entry_id'; $stmt = $this->appbox->get_connection()->prepare($sql); - $stmt->execute(array(':title' => $title, ':entry_id' => $this->get_id())); + $stmt->execute(array(':title' => $title, ':entry_id' => $this->get_id())); $stmt->closeCursor(); $this->title = $title; $this->delete_data_from_cache(); @@ -251,11 +251,11 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa { $subtitle = strip_tags($subtitle); - $sql = 'UPDATE feed_entries + $sql = 'UPDATE feed_entries SET description = :subtitle, updated_on = NOW() WHERE id = :entry_id'; $params = array(':subtitle' => $subtitle, ':entry_id' => $this->get_id()); - $stmt = $this->appbox->get_connection()->prepare($sql); + $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute($params); $stmt->closeCursor(); $this->subtitle = $subtitle; @@ -271,14 +271,14 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa */ public function set_author_name($author_name) { - $sql = 'UPDATE feed_entries + $sql = 'UPDATE feed_entries SET author_name = :author_name, updated_on = NOW() WHERE id = :entry_id'; $params = array( - ':author_name' => $author_name, - ':entry_id' => $this->get_id() + ':author_name' => $author_name, + ':entry_id' => $this->get_id() ); - $stmt = $this->appbox->get_connection()->prepare($sql); + $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute($params); $stmt->closeCursor(); $this->author_name = $author_name; @@ -294,14 +294,14 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa */ public function set_author_email($author_email) { - $sql = 'UPDATE feed_entries + $sql = 'UPDATE feed_entries SET author_email = :author_email, updated_on = NOW() WHERE id = :entry_id'; $params = array( - ':author_email' => $author_email, - ':entry_id' => $this->get_id() + ':author_email' => $author_email, + ':entry_id' => $this->get_id() ); - $stmt = $this->appbox->get_connection()->prepare($sql); + $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute($params); $stmt->closeCursor(); $this->author_email = $author_email; @@ -312,14 +312,14 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa public function set_created_on(DateTime $datetime) { - $sql = 'UPDATE feed_entries + $sql = 'UPDATE feed_entries SET created_on = :created_on WHERE id = :entry_id'; $params = array( - ':created_on' => $datetime->format(DATE_ISO8601), - ':entry_id' => $this->get_id() + ':created_on' => $datetime->format(DATE_ISO8601), + ':entry_id' => $this->get_id() ); - $stmt = $this->appbox->get_connection()->prepare($sql); + $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute($params); $stmt->closeCursor(); $this->created_on = $datetime; @@ -330,14 +330,14 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa public function set_updated_on(DateTime $datetime) { - $sql = 'UPDATE feed_entries + $sql = 'UPDATE feed_entries SET updated_on = :updated_on WHERE id = :entry_id'; $params = array( - ':updated_on' => $datetime->format(DATE_ISO8601), - ':entry_id' => $this->get_id() + ':updated_on' => $datetime->format(DATE_ISO8601), + ':entry_id' => $this->get_id() ); - $stmt = $this->appbox->get_connection()->prepare($sql); + $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute($params); $stmt->closeCursor(); $this->updated_on = $datetime; @@ -411,10 +411,9 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa public function get_content() { if ($this->items) - return $this->items; - $rs = $this->retrieve_elements(); + $rs = $this->retrieve_elements(); $items = array(); foreach ($rs as $item_id) { @@ -444,11 +443,11 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa } - $sql = 'SELECT id FROM feed_entry_elements + $sql = 'SELECT id FROM feed_entry_elements WHERE entry_id = :entry_id ORDER BY ord ASC'; $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute(array(':entry_id' => $this->get_id())); - $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); + $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); $items = array(); @@ -474,7 +473,7 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa $content->delete(); } - $sql = 'DELETE FROM feed_entries WHERE id = :entry_id'; + $sql = 'DELETE FROM feed_entries WHERE id = :entry_id'; $stmt = $this->appbox->get_connection()->prepare($sql); $stmt->execute(array(':entry_id' => $this->get_id())); $stmt->closeCursor(); @@ -515,12 +514,12 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa , :description, NOW(), NOW(), :author_name, :author_email)'; $params = array( - ':feed_id' => $feed->get_id() - , ':publisher_id' => $publisher->get_id() - , ':title' => trim($title) - , ':description' => trim($subtitle) - , ':author_name' => trim($author_name) - , ':author_email' => trim($author_mail) + ':feed_id' => $feed->get_id() + , ':publisher_id' => $publisher->get_id() + , ':title' => trim($title) + , ':description' => trim($subtitle) + , ':author_name' => trim($author_name) + , ':author_email' => trim($author_mail) ); $stmt = $appbox->get_connection()->prepare($sql); @@ -531,7 +530,12 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa $feed->delete_data_from_cache(); - return new self($appbox, $feed, $entry_id); + $entry = new self($appbox, $feed, $entry_id); + + $eventsmanager = \eventsmanager_broker::getInstance($appbox); + $eventsmanager->trigger('__FEED_ENTRY_CREATE__', array('entry_id' => $entry_id), $entry); + + return $entry; } /** @@ -542,10 +546,10 @@ class Feed_Entry_Adapter implements Feed_Entry_Interface, cache_cacheableInterfa */ public static function load_from_id(appbox $appbox, $id) { - $sql = 'SELECT feed_id FROM feed_entries WHERE id = :entry_id'; + $sql = 'SELECT feed_id FROM feed_entries WHERE id = :entry_id'; $stmt = $appbox->get_connection()->prepare($sql); $stmt->execute(array(':entry_id' => $id)); - $row = $stmt->fetch(PDO::FETCH_ASSOC); + $row = $stmt->fetch(PDO::FETCH_ASSOC); $stmt->closeCursor(); if (!$row) diff --git a/lib/classes/Session/Handler.class.php b/lib/classes/Session/Handler.class.php index d6b37b3448..949a776078 100644 --- a/lib/classes/Session/Handler.class.php +++ b/lib/classes/Session/Handler.class.php @@ -558,7 +558,7 @@ class Session_Handler $browser = Browser::getInstance(); if($this->is_authenticated()) - $user = User_Adapter::getInstance ($this->get_usr_id (), appbox::get_instance ()); + $user = User_Adapter::getInstance ($this->get_usr_id (), appbox::get_instance (\bootstrap::getCore())); return Session_Logger::create($databox, $browser, $this, $user); } diff --git a/lib/classes/User/Adapter.class.php b/lib/classes/User/Adapter.class.php index c4cb634c9f..91839ce4e4 100644 --- a/lib/classes/User/Adapter.class.php +++ b/lib/classes/User/Adapter.class.php @@ -466,7 +466,7 @@ class User_Adapter implements User_Interface, cache_cacheableInterface } if ($token === false) { - $token = random::getUrlToken('rss', $this->id); + $token = random::getUrlToken(\random::TYPE_RSS, $this->id); } return new system_url($registry->get('GV_ServerName') . 'atom/' . $token); diff --git a/lib/classes/appbox.class.php b/lib/classes/appbox.class.php index 5a7aab778e..7b10b21297 100644 --- a/lib/classes/appbox.class.php +++ b/lib/classes/appbox.class.php @@ -136,10 +136,12 @@ class appbox extends base $custom_path.= $collection->get_base_id(); if (is_null($pathfile)) + return $this; $datas = file_get_contents($pathfile->getPathname()); if (is_null($datas)) + return $this; file_put_contents($file, $datas); @@ -191,10 +193,12 @@ class appbox extends base $custom_path.= $pic_type . '_' . $databox->get_sbas_id(); if (is_null($pathfile)) + return $this; $datas = file_get_contents($pathfile->getPathname()); if (is_null($datas)) + return $this; file_put_contents($file, $datas); @@ -456,15 +460,6 @@ class appbox extends base $cacheService = "array_cache"; - if (extension_loaded('apc')) - { - $cacheService = "apc_cache"; - } - elseif (extension_loaded('xcache')) - { - $cacheService = "xcache_cache"; - } - $Core->getConfiguration()->setConnexions($connexion); $services = $Core->getConfiguration()->getConfigurations(); @@ -549,6 +544,7 @@ class appbox extends base public function get_databoxes() { if ($this->databoxes) + return $this->databoxes; $ret = array(); diff --git a/lib/classes/base.class.php b/lib/classes/base.class.php index b5f476b619..f5d87a5270 100644 --- a/lib/classes/base.class.php +++ b/lib/classes/base.class.php @@ -60,11 +60,12 @@ abstract class base implements cache_cacheableInterface /** * */ + const APPLICATION_BOX = 'APPLICATION_BOX'; /** * */ - const DATA_BOX = 'DATA_BOX'; + const DATA_BOX = 'DATA_BOX'; /** * @@ -167,6 +168,7 @@ abstract class base implements cache_cacheableInterface { $this->cache = $this->Core->getCache(); } + return $this->cache; } @@ -178,7 +180,7 @@ abstract class base implements cache_cacheableInterface public function get_data_from_cache($option = null) { - if($this->get_base_type() == self::DATA_BOX) + if ($this->get_base_type() == self::DATA_BOX) { \cache_databox::refresh($this->id); } @@ -245,9 +247,9 @@ abstract class base implements cache_cacheableInterface if ($sql !== '') { - $stmt = $this->get_connection()->prepare($sql); + $stmt = $this->get_connection()->prepare($sql); $stmt->execute(); - $row = $stmt->fetch(PDO::FETCH_ASSOC); + $row = $stmt->fetch(PDO::FETCH_ASSOC); $stmt->closeCursor(); if ($row) $version = $row['version']; @@ -281,13 +283,25 @@ abstract class base implements cache_cacheableInterface $upgrader->add_steps(count($allTables) + 1); - $sql = "SHOW TABLE STATUS"; + $sql = "SHOW TABLE STATUS"; $stmt = $this->get_connection()->prepare($sql); $stmt->execute(); - $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); + $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); + $ORMTables = array( + 'BasketElements', + 'Baskets', + 'StoryWZ', + 'UsrListOwners', + 'UsrLists', + 'UsrListsContent', + 'ValidationDatas', + 'ValidationParticipants', + 'ValidationSessions', + ); + foreach ($rs as $row) { $tname = $row["Name"]; @@ -296,7 +310,7 @@ abstract class base implements cache_cacheableInterface { $upgrader->set_current_message(sprintf(_('Updating table %s'), $tname)); - $engine = strtolower(trim($allTables[$tname]->engine)); + $engine = strtolower(trim($allTables[$tname]->engine)); $ref_engine = strtolower($row['Engine']); if ($engine != $ref_engine && in_array($engine, array('innodb', 'myisam'))) @@ -311,22 +325,22 @@ abstract class base implements cache_cacheableInterface catch (Exception $e) { $recommends[] = array( - 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), - 'sql' => $sql + 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), + 'sql' => $sql ); } } - $ret = self::upgradeTable($allTables[$tname]); + $ret = self::upgradeTable($allTables[$tname]); $recommends = array_merge($recommends, $ret); unset($allTables[$tname]); $upgrader->add_steps_complete(1); } - else + elseif (!in_array($tname, $ORMTables)) { $recommends[] = array( - 'message' => 'Une table pourrait etre supprime', - 'sql' => 'DROP TABLE ' . $this->dbname . '.`' . $tname . '`;' + 'message' => 'Une table pourrait etre supprime', + 'sql' => 'DROP TABLE ' . $this->dbname . '.`' . $tname . '`;' ); } } @@ -434,7 +448,7 @@ abstract class base implements cache_cacheableInterface */ protected function createTable(SimpleXMLElement $table) { - $field_stmt = $defaults_stmt = array(); + $field_stmt = $defaults_stmt = array(); $create_stmt = "CREATE TABLE `" . $table['name'] . "` ("; @@ -451,8 +465,8 @@ abstract class base implements cache_cacheableInterface $character_set = ''; if (in_array(strtolower((string) $field->type), array('text', 'longtext', 'mediumtext', 'tinytext')) - || substr(strtolower((string) $field->type), 0, 7) == 'varchar' - || in_array(substr(strtolower((string) $field->type), 0, 4), array('char', 'enum'))) + || substr(strtolower((string) $field->type), 0, 7) == 'varchar' + || in_array(substr(strtolower((string) $field->type), 0, 4), array('char', 'enum'))) { $collation = trim((string) $field->collation) != '' ? trim((string) $field->collation) : 'utf8_unicode_ci'; @@ -463,8 +477,8 @@ abstract class base implements cache_cacheableInterface } $field_stmt[] = " `" . $field->name . "` " . $field->type . " " - . $field->extra . " " . $character_set . " " - . $is_default . " " . $isnull . ""; + . $field->extra . " " . $character_set . " " + . $is_default . " " . $isnull . ""; } @@ -482,7 +496,7 @@ abstract class base implements cache_cacheableInterface $primary_fields[] = "`" . $field . "`"; } - $field_stmt[] = 'PRIMARY KEY (' . implode(',', $primary_fields) . ')'; + $field_stmt[] = 'PRIMARY KEY (' . implode(',', $primary_fields) . ')'; break; case "UNIQUE": $unique_fields = array(); @@ -511,32 +525,32 @@ abstract class base implements cache_cacheableInterface { foreach ($table->defaults->default as $default) { - $k = $v = $params = $dates_values = array(); + $k = $v = $params = $dates_values = array(); $nonce = random::generatePassword(16); foreach ($default->data as $data) { - $k = trim($data['key']); + $k = trim($data['key']); if ($k === 'usr_password') $data = User_Adapter::salt_password($data, $nonce); if ($k === 'nonce') $data = $nonce; - $v = trim(str_replace(array("\r\n", "\r", "\n", "\t"), '', $data)); + $v = trim(str_replace(array("\r\n", "\r", "\n", "\t"), '', $data)); if (trim(mb_strtolower($v)) == 'now()') $dates_values [$k] = 'NOW()'; else - $params[$k] = (trim(mb_strtolower($v)) == 'null' ? null : $v); + $params[$k] = (trim(mb_strtolower($v)) == 'null' ? null : $v); } $separator = ((count($params) > 0 && count($dates_values) > 0) ? ', ' : ''); $defaults_stmt[] = array( - 'sql' => - 'INSERT INTO `' . $table['name'] . '` (' . implode(', ', array_keys($params)) - . $separator . implode(', ', array_keys($dates_values)) . ') + 'sql' => + 'INSERT INTO `' . $table['name'] . '` (' . implode(', ', array_keys($params)) + . $separator . implode(', ', array_keys($dates_values)) . ') VALUES (:' . implode(', :', array_keys($params)) - . $separator . implode(', ', array_values($dates_values)) . ') ' - , 'params' => $params + . $separator . implode(', ', array_values($dates_values)) . ') ' + , 'params' => $params ); } } @@ -562,8 +576,8 @@ abstract class base implements cache_cacheableInterface catch (Exception $e) { $recommends[] = array( - 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), - 'sql' => $def['sql'] + 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), + 'sql' => $def['sql'] ); } } @@ -574,7 +588,7 @@ abstract class base implements cache_cacheableInterface protected function upgradeTable(SimpleXMLElement $table) { $correct_table = array('fields' => array(), 'indexes' => array(), 'collation' => array()); - $alter = $alter_pre = $return = array(); + $alter = $alter_pre = $return = array(); $registry = registry::get_instance(); @@ -589,8 +603,8 @@ abstract class base implements cache_cacheableInterface $collation = trim((string) $field->collation) != '' ? trim((string) $field->collation) : 'utf8_unicode_ci'; if (in_array(strtolower((string) $field->type), array('text', 'longtext', 'mediumtext', 'tinytext')) - || substr(strtolower((string) $field->type), 0, 7) == 'varchar' - || in_array(substr(strtolower((string) $field->type), 0, 4), array('char', 'enum'))) + || substr(strtolower((string) $field->type), 0, 7) == 'varchar' + || in_array(substr(strtolower((string) $field->type), 0, 4), array('char', 'enum'))) { $code = array_pop(array_reverse(explode('_', $collation))); @@ -618,7 +632,7 @@ abstract class base implements cache_cacheableInterface foreach ($table->indexes->index as $index) { $i_name = (string) $index->name; - $expr = array(); + $expr = array(); foreach ($index->fields->field as $field) $expr[] = '`' . trim((string) $field) . '`'; @@ -630,25 +644,25 @@ abstract class base implements cache_cacheableInterface $correct_table['indexes']['PRIMARY'] = 'PRIMARY KEY (' . $expr . ')'; break; case "UNIQUE": - $correct_table['indexes'][$i_name] = 'UNIQUE KEY `' . $i_name . '` (' . $expr . ')'; + $correct_table['indexes'][$i_name] = 'UNIQUE KEY `' . $i_name . '` (' . $expr . ')'; break; case "INDEX": - $correct_table['indexes'][$i_name] = 'KEY `' . $i_name . '` (' . $expr . ')'; + $correct_table['indexes'][$i_name] = 'KEY `' . $i_name . '` (' . $expr . ')'; break; } } } - $sql = "SHOW FULL FIELDS FROM `" . $table['name'] . "`"; + $sql = "SHOW FULL FIELDS FROM `" . $table['name'] . "`"; $stmt = $this->get_connection()->prepare($sql); $stmt->execute(); - $rs2 = $stmt->fetchAll(PDO::FETCH_ASSOC); + $rs2 = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); foreach ($rs2 as $row2) { - $f_name = $row2['Field']; + $f_name = $row2['Field']; $expr_found = trim($row2['Type']); $_extra = $row2['Extra']; @@ -727,8 +741,8 @@ abstract class base implements cache_cacheableInterface else { $return[] = array( - 'message' => 'Un champ pourrait etre supprime', - 'sql' => "ALTER TABLE " . $this->dbname . ".`" . $table['name'] . "` DROP `$f_name`;" + 'message' => 'Un champ pourrait etre supprime', + 'sql' => "ALTER TABLE " . $this->dbname . ".`" . $table['name'] . "` DROP `$f_name`;" ); } } @@ -739,16 +753,16 @@ abstract class base implements cache_cacheableInterface } $tIndex = array(); - $sql = "SHOW INDEXES FROM `" . $table['name'] . "`"; + $sql = "SHOW INDEXES FROM `" . $table['name'] . "`"; $stmt = $this->get_connection()->prepare($sql); $stmt->execute(); - $rs2 = $stmt->fetchAll(PDO::FETCH_ASSOC); + $rs2 = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); foreach ($rs2 as $row2) { if (!isset($tIndex[$row2['Key_name']])) - $tIndex[$row2['Key_name']] = array('unique' => ((int) ($row2['Non_unique']) == 0), 'columns' => array()); + $tIndex[$row2['Key_name']] = array('unique' => ((int) ($row2['Non_unique']) == 0), 'columns' => array()); $tIndex[$row2['Key_name']]['columns'][(int) ($row2['Seq_in_index'])] = $row2['Column_name']; } @@ -786,8 +800,8 @@ abstract class base implements cache_cacheableInterface else { $return[] = array( - 'message' => 'Un index pourrait etre supprime', - 'sql' => 'ALTER TABLE ' . $this->dbname . '.`' . $table['name'] . '` DROP ' . $full_name_index . ';' + 'message' => 'Un index pourrait etre supprime', + 'sql' => 'ALTER TABLE ' . $this->dbname . '.`' . $table['name'] . '` DROP ' . $full_name_index . ';' ); } } @@ -806,8 +820,8 @@ abstract class base implements cache_cacheableInterface catch (Exception $e) { $return[] = array( - 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), - 'sql' => $a + 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), + 'sql' => $a ); } } @@ -823,8 +837,8 @@ abstract class base implements cache_cacheableInterface catch (Exception $e) { $return[] = array( - 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), - 'sql' => $a + 'message' => sprintf(_('Erreur lors de la tentative ; errreur : %s'), $e->getMessage()), + 'sql' => $a ); } } @@ -882,8 +896,8 @@ abstract class base implements cache_cacheableInterface } $upgrader->add_steps_complete(1) - ->add_steps(count($list_patches)) - ->set_current_message(sprintf(_('Applying patches on %s'), $this->get_dbname())); + ->add_steps(count($list_patches)) + ->set_current_message(sprintf(_('Applying patches on %s'), $this->get_dbname())); ksort($list_patches); $success = true; diff --git a/lib/classes/cache/databox.class.php b/lib/classes/cache/databox.class.php index 9d35fa1e0c..c23a06ad21 100644 --- a/lib/classes/cache/databox.class.php +++ b/lib/classes/cache/databox.class.php @@ -59,6 +59,7 @@ class cache_databox if ($date <= $last_update) { self::$refreshing = false; + return; } diff --git a/lib/classes/caption/field.class.php b/lib/classes/caption/field.class.php index 27636150cc..7b5a33363a 100644 --- a/lib/classes/caption/field.class.php +++ b/lib/classes/caption/field.class.php @@ -403,6 +403,58 @@ class caption_field return $values; } + public static function rename_all_metadatas(databox_field $databox_field) + { + $sql = 'SELECT count(id) as count_id FROM metadatas + WHERE meta_struct_id = :meta_struct_id'; + $stmt = $databox_field->get_databox()->get_connection()->prepare($sql); + $params = array( + ':meta_struct_id' => $databox_field->get_id() + ); + + $stmt->execute($params); + $rowcount = $stmt->rowCount(); + $stmt->closeCursor(); + + $n = 0; + $increment = 500; + + while ($n < $rowcount) + { + $sql = 'SELECT record_id, id FROM metadatas + WHERE meta_struct_id = :meta_struct_id LIMIT ' . $n . ', ' . $increment; + + $params = array( + ':meta_struct_id' => $databox_field->get_id() + ); + + $stmt = $databox_field->get_databox()->get_connection()->prepare($sql); + $stmt->execute($params); + $rowcount = $stmt->rowCount(); + $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); + $stmt->closeCursor(); + unset($stmt); + + foreach ($rs as $row) + { + try + { + $record = $databox_field->get_databox()->get_record($row['record_id']); + $record->set_metadatas(array()); + unset($record); + } + catch (Exception $e) + { + + } + } + + $n += $increment; + } + + return; + } + public static function delete_all_metadatas(databox_field $databox_field) { $sql = 'SELECT count(id) as count_id FROM metadatas @@ -444,6 +496,7 @@ class caption_field $record = $databox_field->get_databox()->get_record($row['record_id']); $caption_field = new caption_field($databox_field, $record); $caption_field->delete(); + $record->set_metadatas(array()); unset($caption_field); unset($record); } diff --git a/lib/classes/caption/record.class.php b/lib/classes/caption/record.class.php index fc99c71940..e80e54d995 100644 --- a/lib/classes/caption/record.class.php +++ b/lib/classes/caption/record.class.php @@ -50,10 +50,6 @@ class caption_record implements caption_interface, cache_cacheableInterface $this->record = $record; $this->databox = $databox; - - $this->retrieve_fields(); - - return $this; } @@ -182,7 +178,7 @@ class caption_record implements caption_interface, cache_cacheableInterface protected function highlight_fields($highlight, Array $grep_fields = null, searchEngine_adapter $searchEngine = null) { $fields = array(); - foreach ($this->fields as $meta_struct_id => $field) + foreach ($this->retrieve_fields() as $meta_struct_id => $field) { if (is_array($grep_fields) && !in_array($field->get_name(), $grep_fields)) continue; diff --git a/lib/classes/collection.class.php b/lib/classes/collection.class.php index e7bbf53c5b..f3e681a952 100644 --- a/lib/classes/collection.class.php +++ b/lib/classes/collection.class.php @@ -514,15 +514,15 @@ class collection implements cache_cacheableInterface $stmt->closeCursor(); $new_bas = $conn->lastInsertId(); - - phrasea::reset_baseDatas(); - self::set_admin($new_bas, $user); $databox->delete_data_from_cache(databox::CACHE_COLLECTIONS); $appbox->delete_data_from_cache(appbox::CACHE_LIST_BASES); cache_databox::update($sbas_id, 'structure'); + phrasea::reset_baseDatas(); + self::set_admin($new_bas, $user); + return self::get_from_coll_id($databox, $new_id); } diff --git a/lib/classes/databox.class.php b/lib/classes/databox.class.php index 9f923c2e8b..4b25166763 100644 --- a/lib/classes/databox.class.php +++ b/lib/classes/databox.class.php @@ -991,13 +991,6 @@ class databox extends base { } - - if (isset($field['regname'])) - $meta_struct_field->set_regname(); - if (isset($field['regdate'])) - $meta_struct_field->set_regdate(); - if (isset($field['regdesc'])) - $meta_struct_field->set_regdesc(); } return $this; diff --git a/lib/classes/databox/field.class.php b/lib/classes/databox/field.class.php index afdabcc906..f8573210ec 100644 --- a/lib/classes/databox/field.class.php +++ b/lib/classes/databox/field.class.php @@ -98,23 +98,15 @@ class databox_field implements cache_cacheableInterface */ protected $thumbtitle; - /** - * - * @var - */ - protected $regdate; + protected $renamed = false; /** * - * @var - */ - protected $regdesc; - - /** * - * @var + * To implement : change multi + * Change vocab Id + * */ - protected $regname; /** * @@ -163,7 +155,7 @@ class databox_field implements cache_cacheableInterface $connbas = $this->get_connection(); - $sql = "SELECT `regdate`, `regdesc`, `regname`, `thumbtitle`, `separator` + $sql = "SELECT `thumbtitle`, `separator` , `dces_element`, `tbranch`, `type`, `report`, `multi`, `required` , `readonly`, `indexable`, `name`, `src` , `VocabularyControlType`, `RestrictToVocabularyControl` @@ -216,10 +208,6 @@ class databox_field implements cache_cacheableInterface $this->separator = $separator; $this->thumbtitle = $row['thumbtitle']; - $this->regdesc = !!$row['regdesc']; - $this->regname = !!$row['regname']; - $this->regdate = !!$row['regdate']; - return $this; } @@ -367,6 +355,12 @@ class databox_field implements cache_cacheableInterface $stmt = $connbas->prepare($sql); $stmt->execute($params); + if ($this->renamed) + { + caption_field::rename_all_metadatas($this); + $this->renamed = false; + } + $dom_struct = $this->databox->get_dom_structure(); $xp_struct = $this->databox->get_xpath_structure(); @@ -421,8 +415,15 @@ class databox_field implements cache_cacheableInterface */ public function set_name($name) { + $previous_name = $this->name; + $this->name = self::generateName($name); + if ($this->name !== $previous_name) + { + $this->renamed = true; + } + return $this; } @@ -621,39 +622,6 @@ class databox_field implements cache_cacheableInterface return $this; } - /** - * - * @return databox_field - */ - public function set_regdate() - { - $this->set_reg_attr('date'); - - return $this; - } - - /** - * - * @return databox_field - */ - public function set_regdesc() - { - $this->set_reg_attr('desc'); - - return $this; - } - - /** - * - * @return databox_field - */ - public function set_regname() - { - $this->set_reg_attr('name'); - - return $this; - } - /** * * @param string $attr @@ -683,33 +651,6 @@ class databox_field implements cache_cacheableInterface return $this; } - /** - * - * @return boolean - */ - public function is_regname() - { - return $this->regname; - } - - /** - * - * @return boolean - */ - public function is_regdesc() - { - return $this->regdesc; - } - - /** - * - * @return boolean - */ - public function is_regdate() - { - return $this->regdate; - } - /** * * @return string @@ -870,10 +811,10 @@ class databox_field implements cache_cacheableInterface $sql = "INSERT INTO metadatas_structure (`id`, `name`, `src`, `readonly`, `indexable`, `type`, `tbranch`, - `thumbtitle`, `multi`, `regname`, `regdesc`, `regdate` , + `thumbtitle`, `multi`, `report`, `sorter`) VALUES (null, :name, '', 0, 1, 'text', '', - null, 0, null, null, null, + null, 0, 1, :sorter)"; $stmt = $databox->get_connection()->prepare($sql); diff --git a/lib/classes/deprecated/getargs.php b/lib/classes/deprecated/getargs.php deleted file mode 100644 index d2c5c5a6d9..0000000000 --- a/lib/classes/deprecated/getargs.php +++ /dev/null @@ -1,96 +0,0 @@ - $v) - printf("\t%s%s\n", $n, $v["usage"]); -} - -function parse_cmdargs(&$argt, &$err) -{ - $err = ""; - global $argc, $argv; - - for ($a = 1; $a < $argc; $a++) - { - //echo "parse_cmdargs :: $a\n"; - - $arg = $argv[$a]; - - - if ($arg == "--" || $arg == "-") - continue; - if (($p = strpos($arg, "=")) === false) - { - parse_arg($arg, $argt, $err); - } - else - { - parse_arg(substr($arg, 0, $p), $argt, $err); - parse_arg("=", $argt, $err); - parse_arg(substr($arg, $p + 1), $argt, $err); - } - } - foreach ($argt as $n => $v) - { - if (!isset($v["values"][0]) && isset($v["default"])) - { - $argt[$n]["set"] = true; - $argt[$n]["values"][] = $v["default"]; - } - } - - return($err == ""); -} - -function parse_arg($arg, &$argt, &$err) -{ - static $last_arg = ""; - static $curopt = null; - - if ($arg != "=") - { - if ($last_arg != "=") - { - if (isset($argt[$arg])) - $argt[$curopt = $arg]["set"] = true; - else - { - $err .= "option '" . $arg . "' inconnue.\n"; - if (isset($argt["--help"])) - $argt["--help"]["set"] = true; - } - } - else - { - if ($curopt) - $argt[$curopt]["values"][] = $arg; - else - { - $err .= "'=' doit suivre un nom d'option.\n"; - if (isset($argt["--help"])) - $argt["--help"]["set"] = true; - } - } - } - $last_arg = $arg; -} - -?> diff --git a/lib/classes/eventsmanager/broker.class.php b/lib/classes/eventsmanager/broker.class.php index d9dd094e91..d4b6048266 100644 --- a/lib/classes/eventsmanager/broker.class.php +++ b/lib/classes/eventsmanager/broker.class.php @@ -27,7 +27,7 @@ class eventsmanager_broker } /** - * @return eventsmanager + * @return \eventsmanager_broker */ public static function getInstance(appbox &$appbox, \Alchemy\Phrasea\Core $core) { diff --git a/lib/classes/eventsmanager/notify/downloadmailfail.class.php b/lib/classes/eventsmanager/notify/downloadmailfail.class.php new file mode 100644 index 0000000000..4ca0204621 --- /dev/null +++ b/lib/classes/eventsmanager/notify/downloadmailfail.class.php @@ -0,0 +1,177 @@ + null + , 'lst' => '' + , 'ssttid' => '' + , 'dest' => '' + , 'reason' => '' + ); + + $params = array_merge($default, $params); + + $dom_xml = new DOMDocument('1.0', 'UTF-8'); + $dom_xml->preserveWhiteSpace = false; + $dom_xml->formatOutput = true; + + $root = $dom_xml->createElement('datas'); + + $lst = $dom_xml->createElement('lst'); + $ssttid = $dom_xml->createElement('ssttid'); + $dest = $dom_xml->createElement('dest'); + $reason = $dom_xml->createElement('reason'); + + $lst->appendChild($dom_xml->createTextNode($params['lst'])); + $ssttid->appendChild($dom_xml->createTextNode($params['ssttid'])); + $dest->appendChild($dom_xml->createTextNode($params['dest'])); + $reason->appendChild($dom_xml->createTextNode($params['reason'])); + + $root->appendChild($lst); + $root->appendChild($ssttid); + $root->appendChild($dest); + $root->appendChild($reason); + + $dom_xml->appendChild($root); + + $datas = $dom_xml->saveXml(); + + $mailed = false; + + $send_notif = ($this->get_prefs(__CLASS__, $params['usr_id']) != '0'); + + if ($send_notif) + { + $user = User_Adapter::getInstance($params['usr_id'], $this->appbox); + $name = $user->get_display_name(); + + $to = array('email' => $user->get_email(), 'name' => $name); + + $from = array( + 'email' => $this->registry->get('GV_defaulmailsenderaddr'), + 'name' => $this->registry->get('GV_homeTitle') + ); + + if (parent::email()) + $mailed = true; + } + + $this->broker->notify($params['usr_id'], __CLASS__, $datas, $mailed); + + return; + } + + /** + * + * @param Array $datas + * @param boolean $unread + * @return Array + */ + public function datas($datas, $unread) + { + $sx = simplexml_load_string($datas); + $usr_id = (int) $sx->usr_id; + $reason = (int) $sx->reason; + $lst = (string) $sx->lst; + $ssttid = (int) $sx->ssttid; + $dest = (string) $sx->dest; + + if ($reason == self::MAIL_NO_VALID) + { + $reason = _('email is not valid'); + } + elseif ($reason == self::MAIL_FAIL) + { + $reason = _('failed to send mail'); + } + else + { + $reason = _('an error occured while exporting records'); + } + + $text = sprintf( + _("The delivery to %s failed for the following reason : %s") + , $dest + , $reason + ); + + $ret = array( + 'text' => $text + , 'class' => '' + ); + + return $ret; + } + + /** + * + * @return string + */ + public function get_name() + { + return _('Email export fails'); + } + + /** + * + * @return string + */ + public function get_description() + { + return _('Get a notification when a mail export fails'); + } + + /** + * + * @return boolean + */ + function is_available() + { + return true; + } + +} diff --git a/lib/classes/eventsmanager/notify/feed.class.php b/lib/classes/eventsmanager/notify/feed.class.php new file mode 100644 index 0000000000..6cb94c51e7 --- /dev/null +++ b/lib/classes/eventsmanager/notify/feed.class.php @@ -0,0 +1,208 @@ + $entry->get_id() + ); + + $dom_xml = new DOMDocument('1.0', 'UTF-8'); + + $dom_xml->preserveWhiteSpace = false; + $dom_xml->formatOutput = true; + + $root = $dom_xml->createElement('datas'); + + $entry_id = $dom_xml->createElement('entry_id'); + + $entry_id->appendChild($dom_xml->createTextNode($params['entry_id'])); + + $root->appendChild($entry_id); + + $dom_xml->appendChild($root); + + $datas = $dom_xml->saveXml(); + + $Query = new \User_Query($this->appbox); + + $Query->include_phantoms(true)->include_invite(false)->include_templates(false); + + if ($entry->get_feed()->get_collection()) + { + $Query->on_base_ids(array($entry->get_feed()->get_collection()->get_base_id())); + } + + $start = 0; + $perLoop = 100; + + $from = array( + 'email' => $entry->get_author_email(), + 'name' => $entry->get_author_name() + ); + + do + { + $results = $Query->limit($start, $perLoop)->execute()->get_results(); + + foreach ($results as $user_to_notif) + { + /* @var $user_to_notif \User_Adapter */ + $mailed = false; + + $send_notif = ($this->get_prefs(__CLASS__, $user_to_notif->get_id()) != '0'); + if ($send_notif) + { + $email = array( + 'email' => $user_to_notif->get_email(), + 'name' => $user_to_notif->get_display_name() + ); + + $token = \random::getUrlToken( + \random::TYPE_FEED_ENTRY + , $user_to_notif->get_id() + , null + , $entry->get_id() + ); + + $url = $this->appbox->get_registry()->get('GV_ServerName') . 'lightbox/index.php?LOG=' . $token; + + if (self::mail($email, $from, $url, $entry)) + $mailed = true; + } + + $this->broker->notify($user_to_notif->get_id(), __CLASS__, $datas, $mailed); + } + $start += $perLoop; + } + while (count($results) > 0); + + return true; + } + + /** + * + * @param Array $datas + * @param boolean $unread + * @return Array + */ + public function datas($datas, $unread) + { + $sx = simplexml_load_string($datas); + + try + { + $entry = \Feed_Entry_Adapter::load_from_id($this->appbox, (int) $sx->entry_id); + } + catch (\Exception $e) + { + return array(); + } + + $ret = array( + 'text' => sprintf( + _('%1$s has published %2$s') + , $entry->get_author_name() + , '' . $entry->get_title() . '' + ) + , 'class' => ($unread == 1 ? 'reload_baskets' : '') + ); + + return $ret; + } + + /** + * + * @return string + */ + public function get_name() + { + return _('Feeds'); + } + + /** + * + * @return string + */ + public function get_description() + { + return _('Recevoir des notifications lorsqu\'on me push quelque chose'); + } + + /** + * + * @return boolean + */ + function is_available() + { + return true; + } + + /** + * + * @param Array $to + * @param Array $from + * @param string $message + * @param string $url + * @param boolean $accuse + * @return boolean + */ + function mail($to, $from, $url, \Feed_Entry_Adapter $entry) + { + $subject = sprintf(_('Nouvelle publication : %s'), $entry->get_title()); + + $body = "
" + . sprintf('%s vient de publier %s', $entry->get_author_name(), $entry->get_title()) + . _('Connectez vous a l\'adresse suivante pour la consulter') + . "
\n"; + + $body .= '
' . $url . "
\n"; + + $body .= "
"; + + $body .= "
\n
\n
\n" + . _('push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas'); + + return mail::send_mail($subject, $body, $to, $from, array()); + } + +} diff --git a/lib/classes/gatekeeper.class.php b/lib/classes/gatekeeper.class.php index b829168ced..c20974e1cd 100644 --- a/lib/classes/gatekeeper.class.php +++ b/lib/classes/gatekeeper.class.php @@ -131,6 +131,7 @@ class gatekeeper if ($this->_PHP_SELF == '/thesaurus2/xmlhttp/getterm.x.php' || $this->_PHP_SELF == '/thesaurus2/xmlhttp/searchcandidate.x.php' || $this->_PHP_SELF == '/thesaurus2/xmlhttp/getsy.x.php') + return; phrasea::redirect('/login/?redirect=/thesaurus2'); break; @@ -292,7 +293,19 @@ class gatekeeper { $datas = random::helloToken($parm['LOG']); - return phrasea::redirect("/lightbox/validate/" . $datas['datas'] . "/"); + switch ($datas['type']) + { + default: + return $this; + break; + case \random::TYPE_FEED_ENTRY: + return phrasea::redirect("/lightbox/feeds/entry/" . $datas['datas'] . "/"); + break; + case \random::TYPE_VALIDATE: + case \random::TYPE_VIEW: + return phrasea::redirect("/lightbox/validate/" . $datas['datas'] . "/"); + break; + } } catch (Exception_NotFound $e) { diff --git a/lib/classes/mail.class.php b/lib/classes/mail.class.php index 28c88e0e26..b27886933e 100644 --- a/lib/classes/mail.class.php +++ b/lib/classes/mail.class.php @@ -127,7 +127,7 @@ class mail { $registry = registry::get_instance(); $date = new DateTime('1 day'); - $token = random::getUrlToken('email', $usr_id, $date, $email); + $token = random::getUrlToken(\random::TYPE_EMAIL, $usr_id, $date, $email); $url = $registry->get('GV_ServerName') . 'login/reset-email.php?token=' . $token; @@ -174,7 +174,7 @@ class mail { $registry = registry::get_instance(); $expire = new DateTime('+3 days'); - $token = random::getUrlToken('password', $usr_id, $expire, $email); + $token = random::getUrlToken(\random::TYPE_PASSWORD, $usr_id, $expire, $email); $subject = _('login::register: sujet email : confirmation de votre adresse email'); @@ -208,8 +208,9 @@ class mail $body = eregi_replace("[\]", '', $body); - $body .= "
\n"._('Si le lien n\'est pas cliquable, copiez-collez le dans votre navigateur.')."
\n"; $body .= "



\n\n\n\n"; + $body .= '
'._('si cet email contient des liens non cliquables copiez/collez ces liens dans votre navigateur.').'
'; + $body .= "
\n"; $body .= '
' . _('phraseanet::signature automatique des notifications par mail, infos a l\'url suivante') . "
\n"; $body .= '
' . $registry->get('GV_ServerName') . "
\n"; $body = '' . $body . ''; @@ -258,7 +259,7 @@ class mail $mail->ConfirmReadingTo = $reading_confirm_to; } - $mail->MsgHTML(strip_tags($body, '

  • ')); + $mail->MsgHTML(strip_tags($body, '


    • ')); foreach ($files as $f) { diff --git a/lib/classes/module/console/checkExtension.class.php b/lib/classes/module/console/checkExtension.class.php new file mode 100644 index 0000000000..f7c5571bc7 --- /dev/null +++ b/lib/classes/module/console/checkExtension.class.php @@ -0,0 +1,248 @@ +setDescription('Delete a documentation field from a Databox'); + + $this->addOption('usr_id', 'u', InputOption::VALUE_OPTIONAL, 'Usr_id to use. If no user, get the first available'); + + $this->addOption('query', '', InputOption::VALUE_OPTIONAL, 'The query', 'last'); + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + + if (!extension_loaded('phrasea2')) + printf("Missing Extension php-phrasea"); + + $appbox = \appbox::get_instance(); + $registry = $appbox->get_registry(); + + $usr_id = $input->getOption('usr_id'); + + try + { + $TestUser = \User_Adapter::getInstance($usr_id, $appbox); + } + catch (\Exception $e) + { + $output->writeln("Wrong user !"); + + return 1; + } + + $output->writeln( + sprintf( + "\nWill do the check with user %s (%s)\n" + , $TestUser->get_display_name() + , $TestUser->get_email() + ) + ); + + $output->writeln("PHRASEA FUNCTIONS"); + + foreach (get_extension_funcs("phrasea2") as $function) + { + $output->writeln("$function"); + } + + require (__DIR__ . '/../../../../config/connexion.inc'); + + + $output->writeln("\n-- phrasea_conn --"); + + if (phrasea_conn($hostname, $port, $user, $password, $dbname) !== true) + { + $output->writeln("Failed ! got no connection"); + + return 1; + } + else + { + $output->writeln("Succes ! got connection"); + } + + $output->writeln(""); + + $output->writeln("\n-- phrasea_info --"); + + foreach (phrasea_info() as $key => $value) + { + $output->writeln("\t$key => $value"); + } + + + $output->writeln(""); + + $output->writeln("\n-- phrasea_create_session --"); + + $sessid = phrasea_create_session((string) $TestUser->get_id()); + + if (ctype_digit((string) $sessid)) + { + $output->writeln("Succes ! got session id $sessid"); + } + else + { + $output->writeln("Failed ! got no session id"); + + return 1; + } + + $output->writeln("\n-- phrasea_open_session --"); + + $ph_session = phrasea_open_session($sessid, $usr_id); + + if ($ph_session) + { + $output->writeln("Succes ! got session "); + } + else + { + $output->writeln("Failed ! got no session "); + + return 1; + } + + $output->writeln("\n-- phrasea_clear_cache --"); + + $ret = phrasea_clear_cache($sessid); + + if ($sessid) + { + $output->writeln("Succes ! got session "); + } + else + { + $output->writeln("Failed ! got no session "); + + return 1; + } + + $tbases = array(); + + foreach ($ph_session["bases"] as $phbase) + { + $tcoll = array(); + foreach ($phbase["collections"] as $coll) + { + $tcoll[] = 0 + $coll["base_id"]; + } + if (sizeof($tcoll) > 0) + { + $kbase = "S" . $phbase["sbas_id"]; + $tbases[$kbase] = array(); + $tbases[$kbase]["sbas_id"] = $phbase["sbas_id"]; + $tbases[$kbase]["searchcoll"] = $tcoll; + $tbases[$kbase]["mask_xor"] = $tbases[$kbase]["mask_and"] = 0; + + $qp = new searchEngine_adapter_phrasea_queryParser(); + $treeq = $qp->parsequery($input->getOption('query')); + $arrayq = $qp->makequery($treeq); + + $tbases[$kbase]["arrayq"] = $arrayq; + } + } + + + $output->writeln("\n-- phrasea_query --"); + + $nbanswers = 0; + foreach ($tbases as $kb => $base) + { + $tbases[$kb]["results"] = NULL; + + $ret = phrasea_query2( + $ph_session["session_id"] + , $base["sbas_id"] + , $base["searchcoll"] + , $base["arrayq"] + , $registry->get('GV_sit') + , $usr_id + , FALSE + , PHRASEA_MULTIDOC_DOCONLY + ); + + + if ($ret) + { + $output->writeln("Succes ! got result on sbas_id " . $base["sbas_id"]); + } + else + { + $output->writeln("Failed ! No results on sbas_id " . $base["sbas_id"]); + + return 1; + } + + $tbases[$kb]["results"] = $ret; + + $nbanswers += $tbases[$kb]["results"]["nbanswers"]; + } + + + $output->writeln("Got a total of $nbanswers answers"); + + $output->writeln("\n-- phrasea_fetch_results --"); + + $rs = phrasea_fetch_results($sessid, $usr_id, 1, true, '[[em]]', '[[/em]]'); + + if ($rs) + { + $output->writeln("Succes ! got result "); + } + else + { + $output->writeln("Failed ! got no result "); + + return 1; + } + + $output->writeln("\n-- phrasea_close_session --"); + + $rs = phrasea_close_session($sessid); + + if ($rs) + { + $output->writeln("Succes ! closed ! "); + } + else + { + $output->writeln("Failed ! not closed "); + + return 1; + } + + return 0; + } + +} \ No newline at end of file diff --git a/lib/classes/module/console/fieldsDelete.class.php b/lib/classes/module/console/fieldsDelete.class.php new file mode 100644 index 0000000000..6d8693af53 --- /dev/null +++ b/lib/classes/module/console/fieldsDelete.class.php @@ -0,0 +1,97 @@ +setDescription('Delete a documentation field from a Databox'); + + $this->addOption('sbas_id', 's', InputOption::VALUE_REQUIRED, 'Databox sbas_id'); + + $this->addOption('meta_struct_id', 'm', InputOption::VALUE_REQUIRED, 'Databox meta structure Id'); + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + + if (!$input->getOption('sbas_id')) + throw new \Exception('Missing argument sbas_id'); + + if (!$input->getOption('meta_struct_id')) + throw new \Exception('Missing argument meta_struct_id'); + + try + { + $databox = \databox::get_instance((int) $input->getOption('sbas_id')); + } + catch (\Exception $e) + { + $output->writeln("Invalid databox id "); + + return 1; + } + + try + { + $field = $databox->get_meta_structure()->get_element((int) $input->getOption('meta_struct_id')); + } + catch (\Exception $e) + { + $output->writeln("Invalid meta struct id "); + + return 1; + } + + + $dialog = $this->getHelperSet()->get('dialog'); + $continue = mb_strtolower( + $dialog->ask( + $output + , "About to delete " . $field->get_name() . " (y/N)" + , 'n' + ) + ); + + if($continue != 'y') + { + $output->writeln("Request canceled by user"); + return 1; + } + + $output->writeln("Deleting ... "); + + $field->delete(); + + $output->writeln("Done with success !"); + + return 0; + } + +} diff --git a/lib/classes/module/console/fieldsList.class.php b/lib/classes/module/console/fieldsList.class.php new file mode 100644 index 0000000000..ad9bb497d8 --- /dev/null +++ b/lib/classes/module/console/fieldsList.class.php @@ -0,0 +1,70 @@ +setDescription('List all databox fields'); + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + + $appbox = \appbox::get_instance(); + + foreach ($appbox->get_databoxes() as $databox) + { + /* @var $databox \databox */ + $output->writeln( + sprintf( + "\n ---------------- \nOn databox %s (sbas_id %d) :\n" + , $databox->get_viewname() + , $databox->get_sbas_id() + ) + ); + + foreach ($databox->get_meta_structure()->get_elements() as $field) + { + $output->writeln( + sprintf( + " %2d - %s (%s) %s" + , $field->get_id() + , $field->get_name() + , $field->get_type() + , ($field->is_multi() ? 'multi' : '') + ) + ); + } + } + + return 0; + } + +} diff --git a/lib/classes/module/console/fieldsMerge.class.php b/lib/classes/module/console/fieldsMerge.class.php new file mode 100644 index 0000000000..d3042a4732 --- /dev/null +++ b/lib/classes/module/console/fieldsMerge.class.php @@ -0,0 +1,284 @@ +setDescription('Merge databox structure fields'); + + $this->addOption( + 'source' + , 'f' + , InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY + , 'Metadata structure ids for source' + , array() + ); + + $this->addOption( + 'destination' + , 'd' + , InputOption::VALUE_REQUIRED + , 'Metadata structure id destination' + ); + + $this->addOption( + 'sbas_id' + , 's' + , InputOption::VALUE_REQUIRED + , 'Databox sbas_id' + ); + + $this->addOption( + 'separator' + , '' + , InputOption::VALUE_OPTIONAL + , 'Separator for concatenation (if destination is monovalued)' + , ';' + ); + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + $output->writeln(""); + + if (!$input->getOption('sbas_id')) + throw new \Exception('Missing argument sbas_id'); + + try + { + $databox = \databox::get_instance((int) $input->getOption('sbas_id')); + } + catch (\Exception $e) + { + $output->writeln("Invalid databox id "); + + return 1; + } + + $sources = array(); + + foreach ($input->getOption('source') as $source_id) + { + $sources[] = $databox->get_meta_structure()->get_element($source_id); + } + + if (count($sources) === 0) + throw new \Exception('No sources to proceed'); + + if (!$input->getOption('destination')) + throw new \Exception('Missing argument destination'); + + $separator = ' ' . $input->getOption('separator') . ' '; + + $destination = $databox->get_meta_structure()->get_element($input->getOption('destination')); + + $types = $multis = array(); + + foreach ($sources as $source) + { + array_push($types, $source->get_type()); + array_push($multis, $source->is_multi()); + } + + $types = array_unique($types); + $multis = array_unique($multis); + + if (count(array_unique($types)) > 1) + { + $output->writeln( + sprintf("Warning, trying to merge inconsistent types : %s\n" + , implode(', ', $types) + ) + ); + } + + if (count(array_unique($multis)) > 1) + { + $output->writeln( + sprintf( + "Warning, trying to merge mono and multi values fields\n" + ) + ); + } + + $field_names = array(); + foreach ($sources as $source) + { + $field_names[] = $source->get_name(); + } + + if (count($multis) == 1) + { + if ($multis[0] === false && !$destination->is_multi()) + { + $output->writeln( + sprintf( + "You are going to merge mono valued fields in a " + . "monovalued field, fields will be " + . "concatenated in the following order : %s" + , implode($separator, $field_names) + ) + ); + $this->displayHelpConcatenation($output); + } + elseif ($multis[0] === true && !$destination->is_multi()) + { + $output->writeln( + sprintf( + "You are going to merge multi valued fields in a " + . "monovalued field, fields will be " + . "concatenated in the following order : %s" + , implode(' ', $field_names) + ) + ); + $this->displayHelpConcatenation($output); + } + elseif ($multis[0] === false && $destination->is_multi()) + { + $output->writeln( + sprintf( + "You are going to merge mono valued fields in a " + . "multivalued field" + ) + ); + } + elseif ($multis[0] === true && $destination->is_multi()) + { + $output->writeln( + sprintf( + "You are going to merge multi valued fields in a " + . "multivalued field" + ) + ); + } + } + elseif ($destination->is_multi()) + { + $output->writeln( + sprintf( + "You are going to merge mixed valued fields in a " + . "multivalued field" + ) + ); + } + else + { + $output->writeln( + sprintf( + "You are going to merge mixed valued fields in a " + . "monovalued field, fields will be " + . "concatenated in the following order : %s" + , implode($separator, $field_names) + ) + ); + $this->displayHelpConcatenation($output); + } + + $start = 0; + $quantity = 100; + + do + { + $sql = 'SELECT record_id FROM record + ORDER BY record_id LIMIT ' . $start . ', ' . $quantity; + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $results = $stmt->fetchAll(PDO::FETCH_ASSOC); + $stmt->closeCursor(); + + foreach ($results as $row) + { + $record = $databox->get_record($row['record_id']); + + $datas = array(); + + foreach ($sources as $source) + { + try + { + $value = $record->get_caption()->get_field($source->get_name())->get_value(); + } + catch (\Exception $e) + { + $value = array(); + } + if (!is_array($value)) + { + $value = array($value); + } + + $datas = array_merge($datas, $value); + } + + $datas = array_unique($datas); + + if (!$destination->is_multi()) + { + $datas = array(implode($separator, $datas)); + } + + try + { + $record->get_caption()->get_field($destination->get_name())->set_value($datas); + } + catch (\Exception $e) + { + $record->set_metadatas( + array( + array( + 'meta_struct_id' => $destination->get_id() + , 'meta_id' => null + , 'value' => $datas + ) + ) + , true + ); + } + unset($record); + } + + $start += $quantity; + } + while (count($results) > 0); + + return 0; + } + + protected function displayHelpConcatenation(OutputInterface $output) + { + + $output->writeln("\nYou can choose the concatenation order in the " + . "commandline (first option is first value) and set a separator " + . "with the --separator option)"); + + return $this; + } + +} diff --git a/lib/classes/module/console/fieldsRename.class.php b/lib/classes/module/console/fieldsRename.class.php new file mode 100644 index 0000000000..992dd7ae10 --- /dev/null +++ b/lib/classes/module/console/fieldsRename.class.php @@ -0,0 +1,105 @@ +setDescription('Rename a documentation field from a Databox'); + + $this->addOption('sbas_id', 's', InputOption::VALUE_REQUIRED, 'Databox sbas_id'); + + $this->addOption('meta_struct_id', 'm', InputOption::VALUE_REQUIRED, 'Databox meta structure Id'); + + $this->addOption('name', 'n', InputOption::VALUE_REQUIRED, 'The new name'); + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + + if (!$input->getOption('sbas_id')) + throw new \Exception('Missing argument sbas_id'); + + if (!$input->getOption('meta_struct_id')) + throw new \Exception('Missing argument meta_struct_id'); + + if (!$input->getOption('name')) + throw new \Exception('Missing argument name'); + + $new_name = $input->getOption('name'); + + try + { + $databox = \databox::get_instance((int) $input->getOption('sbas_id')); + } + catch (\Exception $e) + { + $output->writeln("Invalid databox id "); + + return 1; + } + + try + { + $field = $databox->get_meta_structure()->get_element((int) $input->getArgument('meta_struct_id')); + } + catch (\Exception $e) + { + $output->writeln("Invalid meta struct id "); + + return 1; + } + + + $dialog = $this->getHelperSet()->get('dialog'); + $continue = mb_strtolower( + $dialog->ask( + $output + , "About to rename " . $field->get_name() . " into ".$new_name." (y/N)" + , 'n' + ) + ); + + if($continue != 'y') + { + $output->writeln("Request canceled by user"); + return 1; + } + + $output->writeln("Renaming ... "); + + $field->set_name($new_name); + $field->save(); + + $output->writeln("Done with success !"); + + return 0; + } + +} diff --git a/lib/classes/module/console/fileEnsureDevSetting.class.php b/lib/classes/module/console/fileEnsureDevSetting.class.php new file mode 100644 index 0000000000..8583dd0707 --- /dev/null +++ b/lib/classes/module/console/fileEnsureDevSetting.class.php @@ -0,0 +1,922 @@ +setDescription('Ensure development settings'); + + $this->addArgument('conf', InputArgument::OPTIONAL, 'The file to check', null); + $this->addOption('strict', 's', InputOption::VALUE_NONE, 'Wheter to fail on alerts or not'); + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + $specifications = new \Alchemy\Phrasea\Core\Configuration\ApplicationSpecification(); + + $environnement = $input->getArgument('conf'); + + $this->configuration = \Alchemy\Phrasea\Core\Configuration::build($specifications, $environnement); + + if (!$this->configuration->isInstalled()) + { + $output->writeln(sprintf("\nPhraseanet is not installed\n")); + } + + $this->checkParse($output); + $output->writeln(sprintf("Will Ensure Production Settings on %s", $this->configuration->getEnvironnement())); + + $this->runTests($output); + + $retval = $this->errors; + if ($input->getOption('strict')) + { + $retval += $this->alerts; + } + + if ($retval > 0) + { + $output->writeln("\nSome errors found in your conf"); + } + else + { + $output->writeln("\nYour dev settings are setted correctly ! Enjoy"); + } + $output->writeln('End'); + + return $retval; + } + + private function runTests(OutputInterface $output) + { + foreach ($this->testSuite as $test) + { + $display = ""; + switch ($test) + { + case 'checkPhraseanetScope' : + $display = "Phraseanet Configuration"; + break; + case 'checkDatabaseScope' : + $display = "Database"; + break; + case 'checkTeamplateEngineService' : + $display = "Template Engine"; + break; + case 'checkOrmService' : + $display = "ORM"; + break; + case 'checkCacheService' : + $display = "Cache"; + break; + case 'checkOpcodeCacheService' : + $display = "Opcode"; + break; + default: + throw new \Exception('Unknown test'); + break; + } + + $output->writeln(sprintf("\n||| %s", mb_strtoupper($display))); + + call_user_func(array($this, $test), $output); + } + } + + private function checkParse(OutputInterface $output) + { + + if (!$this->configuration->getConfigurations()) + { + throw new \Exception("Unable to load configurations\n"); + } + if (!$this->configuration->getConnexions()) + { + throw new \Exception("Unable to load connexions\n"); + } + if (!$this->configuration->getServices()) + { + throw new \Exception("Unable to load services\n"); + } + + return; + } + + private function checkCacheService(OutputInterface $output) + { + $cache = $this->configuration->getCache(); + + + if ($this->probeCacheService($output, $cache)) + { + if ($this->recommendedCacheService($output, $cache, true)) + { + $work_message = 'Works !'; + } + else + { + $work_message = 'Cache server recommended'; + $this->alerts++; + } + } + else + { + $work_message = 'Failed - could not connect !'; + $this->errors++; + } + + $verification = sprintf("\t--> Verify %s : %s", 'MainCache', $work_message); + + + $this->printConf($output, "\t" . 'service', $cache, false, $verification); + $this->verifyCacheOptions($output, $cache); + } + + private function checkOpcodeCacheService(OutputInterface $output) + { + $cache = $this->configuration->getOpcodeCache(); + + + if ($this->probeCacheService($output, $cache)) + { + if ($this->recommendedCacheService($output, $cache, false)) + { + $work_message = 'Works !'; + } + else + { + $work_message = 'No cache required'; + $this->errors++; + } + } + else + { + $work_message = 'Failed - could not connect !'; + $this->errors++; + } + + $verification = sprintf("\t--> Verify %s : %s", 'OpcodeCache', $work_message); + + + $this->printConf($output, "\t" . 'service', $cache, false, $verification); + $this->verifyCacheOptions($output, $cache); + } + + private function checkPhraseanetScope(OutputInterface $output) + { + $required = array('servername', 'maintenance', 'debug', 'display_errors', 'database'); + + $phraseanet = $this->configuration->getPhraseanet(); + + foreach ($phraseanet->all() as $conf => $value) + { + switch ($conf) + { + default: + $this->alerts++; + $this->printConf($output, $conf, $value, false, 'Not recognized'); + break; + case 'servername': + $url = $value; + $required = array_diff($required, array($conf)); + + $parseUrl = parse_url($url); + + if (empty($url)) + { + $message = "should not be empty"; + $this->errors++; + } + elseif ($url == 'http://sub.domain.tld/') + { + $this->alerts++; + $message = "may be wrong"; + } + elseif (!filter_var($url, FILTER_VALIDATE_URL)) + { + $message = "not valid"; + $this->errors++; + } + else + { + $message = "OK"; + } + $this->printConf($output, $conf, $value, false, $message); + break; + case 'maintenance': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if ($value !== false) + { + $message = 'Should be true'; + $this->errors++; + } + + $this->printConf($output, $conf, $value, false, $message); + break; + case 'debug': + case 'display_errors': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if ($value !== true) + { + $message = 'Should be true'; + $this->errors++; + } + + $this->printConf($output, $conf, $value, false, $message); + break; + case 'database': + $required = array_diff($required, array($conf)); + try + { + $service = $this->configuration->getConnexion($value); + if ($this->verifyDatabaseConnexion($service)) + { + $message = 'OK'; + } + else + { + $message = 'Connection not available'; + $this->errors++; + } + } + catch (\Exception $e) + { + $message = 'Unknown connection'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); + break; + } + } + + if (count($required) > 0) + { + $output->writeln(sprintf('Miss required keys %s', implode(', ', $required))); + $this->errors++; + } + + return; + } + + private function checkDatabaseScope(OutputInterface $output) + { + $connexionName = $this->configuration->getPhraseanet()->get('database'); + $connexion = $this->configuration->getConnexion($connexionName); + + try + { + if ($this->verifyDatabaseConnexion($connexion)) + { + $work_message = 'Works !'; + } + else + { + $work_message = 'Failed - could not connect !'; + $this->errors++; + } + } + catch (\Exception $e) + { + + $work_message = 'Failed - could not connect !'; + $this->errors++; + } + + $output->writeln(sprintf("\t--> Verify connection %s : %s", $connexionName, $work_message)); + + $required = array('driver'); + + if (!$connexion->has('driver')) + { + $output->writeln("\nConnection has no driver"); + $this->errors++; + } + elseif ($connexion->get('driver') == 'pdo_mysql') + { + $required = array('driver', 'dbname', 'charset', 'password', 'user', 'port', 'host'); + } + elseif ($connexion->get('driver') == 'pdo_sqlite') + { + $required = array('driver', 'path', 'charset'); + } + else + { + $output->writeln("\nYour driver is not managed"); + $this->errors++; + } + + foreach ($connexion->all() as $conf => $value) + { + switch ($conf) + { + default: + $this->alerts++; + $this->printConf($output, $conf, $value, false, 'Not recognized'); + break; + case 'charset': + $required = array_diff($required, array($conf)); + $message = 'OK'; + if ($value !== 'UTF8') + { + $message = 'Not recognized'; + $this->alerts++; + } + $this->printConf($output, $conf, $value, false, $message); + break; + case 'path': + $required = array_diff($required, array($conf)); + $message = is_writable(dirname($value)) ? 'OK' : 'Not writeable'; + $this->printConf($output, $conf, $value, false, $message); + break; + case 'dbname': + case 'user': + case 'host': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if (!is_scalar($value)) + { + $message = 'Should be scalar'; + $this->errors++; + } + + $this->printConf($output, $conf, $value, false, $message); + break; + case 'port': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if (!ctype_digit($value)) + { + $message = 'Should be ctype_digit'; + $this->errors++; + } + + $this->printConf($output, $conf, $value, false, $message); + break; + case 'password': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if (!is_scalar($value)) + { + $message = 'Should be scalar'; + $this->errors++; + } + + $value = '***********'; + $this->printConf($output, $conf, $value, false, $message); + break; + case 'driver': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if ($value !== 'pdo_mysql') + { + $message = 'MySQL recommended'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); + break; + } + } + + if (count($required) > 0) + { + $output->writeln(sprintf('Miss required keys %s', implode(', ', $required))); + $this->errors++; + } + + return; + } + + protected function verifyDatabaseConnexion(\Symfony\Component\DependencyInjection\ParameterBag\ParameterBag $connexion) + { + try + { + $config = new \Doctrine\DBAL\Configuration(); + $conn = \Doctrine\DBAL\DriverManager::getConnection($connexion->all(), $config); + + return true; + } + catch (\Exception $e) + { + + } + + return false; + } + + private function checkTeamplateEngineService(OutputInterface $output) + { + $templateEngineName = $this->configuration->getTemplating(); + $configuration = $this->configuration->getService($templateEngineName); + + try + { + Core\Service\Builder::create(\bootstrap::getCore(), $templateEngineName, $configuration); + $work_message = 'Works !'; + } + catch (\Exception $e) + { + $work_message = 'Failed - could not load template engine !'; + $this->errors++; + } + + $output->writeln(sprintf("\t--> Verify Template engine %s : %s", $templateEngineName, $work_message)); + + if (!$configuration->has('type')) + { + $output->writeln("\nConfiguration has no type"); + $this->errors++; + } + elseif ($configuration->get('type') == 'TemplateEngine\\Twig') + { + $required = array('debug', 'charset', 'strict_variables', 'autoescape', 'optimizer'); + } + else + { + $output->writeln("\nYour type is not managed"); + $this->errors++; + } + + + + foreach ($configuration->all() as $conf => $value) + { + switch ($conf) + { + case 'type': + $message = 'OK'; + + if ($value !== 'TemplateEngine\\Twig') + { + $message = 'Not recognized'; + $this->alerts++; + } + + $this->printConf($output, $conf, $value, false, $message); + break; + case 'options': + $message = 'OK'; + + if (!is_array($value)) + { + $message = 'Should be array'; + $this->errors++; + } + + $this->printConf($output, $conf, 'array()', false, $message); + break; + default: + $this->alerts++; + $this->printConf($output, $conf, 'unknown', false, 'Not recognized'); + break; + } + } + + foreach ($configuration->get('options') as $conf => $value) + { + switch ($conf) + { + case 'debug'; + case 'strict_variables'; + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if ($value !== true) + { + $message = 'Should be false'; + $this->errors++; + } + + $this->printConf($output, "\t" . $conf, $value, false, $message); + break; + case 'autoescape'; + case 'optimizer'; + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if ($value !== true) + { + $message = 'Should be true'; + $this->errors++; + } + + $this->printConf($output, "\t" . $conf, $value, false, $message); + break; + case 'charset'; + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if ($value !== 'utf-8') + { + $message = 'Not recognized'; + $this->alerts++; + } + + $this->printConf($output, "\t" . $conf, $value, false, $message); + break; + default: + $this->alerts++; + $this->printConf($output, "\t" . $conf, $value, false, 'Not recognized'); + break; + } + } + + if (count($required) > 0) + { + $output->writeln(sprintf('Miss required keys %s', implode(', ', $required))); + $this->errors++; + } + + return; + } + + private function checkOrmService(OutputInterface $output) + { + $ormName = $this->configuration->getOrm(); + $configuration = $this->configuration->getService($ormName); + + try + { + $service = Core\Service\Builder::create(\bootstrap::getCore(), $ormName, $configuration); + $work_message = 'Works !'; + } + catch (\Exception $e) + { + $work_message = 'Failed - could not connect !'; + $this->errors++; + } + + $output->writeln(sprintf("\t--> Verify ORM engine %s : %s", $ormName, $work_message)); + + + + if (!$configuration->has('type')) + { + $output->writeln("\nConfiguration has no type"); + $this->errors++; + } + elseif ($configuration->get('type') == 'Orm\\Doctrine') + { + $required = array('debug', 'dbal', 'cache'); + } + else + { + $output->writeln("\nYour type is not managed"); + $this->errors++; + } + + + + foreach ($configuration->all() as $conf => $value) + { + switch ($conf) + { + case 'type': + $message = $value == 'Orm\\Doctrine' ? 'OK' : 'Not recognized'; + $this->printConf($output, $conf, $value, false, $message); + break; + case 'options': + $message = 'OK'; + + if (!is_array($value)) + { + $message = 'Should be array'; + $this->errors++; + } + + $this->printConf($output, $conf, 'array()', false, $message); + break; + default: + $this->alerts++; + $this->printConf($output, $conf, 'unknown', false, 'Not recognized'); + break; + } + } + + + foreach ($configuration->get('options') as $conf => $value) + { + switch ($conf) + { + case 'log': + $message = 'OK'; + + $this->printConf($output, $conf, $value, false, $message); + break; + case 'cache': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if (!is_array($value)) + { + $message = 'Should be Array'; + $this->errors++; + } + + $this->printConf($output, $conf, 'array()', false, $message); + + $required_caches = array('query', 'result', 'metadata'); + foreach ($value as $name => $cache_type) + { + $required_caches = array_diff($required_caches, array($name)); + + foreach ($cache_type as $key_cache => $value_cache) + { + switch ($key_cache) + { + case 'service': + if ($this->probeCacheService($output, $value_cache)) + { + $server = $name === 'result'; + if ($this->recommendedCacheService($output, $value_cache, $server)) + { + $work_message = 'Works !'; + } + else + { + $this->errors++; + $work_message = 'No cache required'; + } + } + else + { + $work_message = 'Failed - could not connect !'; + $this->errors++; + } + + $verification = sprintf("\t--> Verify %s : %s", $name, $work_message); + + + $this->printConf($output, "\t" . $key_cache, $value_cache, false, $verification); + $this->verifyCacheOptions($output, $value_cache); + break; + default: + $this->alerts++; + $this->printConf($output, "\t" . $key_cache, $value_cache, false, 'Not recognized'); + break; + } + if (!isset($cache_type['service'])) + { + $output->writeln('Miss service for %s', $cache_type); + $this->errors++; + } + } + } + + if (count($required_caches) > 0) + { + $output->writeln(sprintf('Miss required caches %s', implode(', ', $required_caches))); + $this->errors++; + } + break; + case 'debug': + $required = array_diff($required, array($conf)); + $message = 'OK'; + + if ($value !== true) + { + $message = 'Should be true'; + $this->errors++; + } + + $this->printConf($output, $conf, $value, false, $message); + break; + case 'dbal': + $required = array_diff($required, array($conf)); + try + { + $connexion = $this->configuration->getConnexion($value); + $this->verifyDatabaseConnexion($connexion); + $message = 'OK'; + } + catch (\Exception $e) + { + $message = 'Failed'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); + break; + default: + $this->alerts++; + $this->printConf($output, $conf, $value, false, 'Not recognized'); + break; + } + } + + if (count($required) > 0) + { + $output->writeln(sprintf('Miss required keys %s', implode(', ', $required))); + $this->errors++; + } + + return; + } + + protected function verifyCacheOptions(OutputInterface $output, $ServiceName) + { + try + { + $conf = $this->configuration->getService($ServiceName); + + $Service = Core\Service\Builder::create( + \bootstrap::getCore(), $ServiceName, $conf + ); + } + catch (\Exception $e) + { + return false; + } + + $required_options = array(); + + switch ($Service->getType()) + { + default: + break; + case 'memcache': + $required_options = array('host', 'port'); + break; + } + + if ($required_options) + { + foreach ($conf->get('options') as $conf => $value) + { + switch ($conf) + { + case 'host'; + $required_options = array_diff($required_options, array($conf)); + $message = 'OK'; + + if (!is_scalar($value)) + { + $message = 'Should be scalar'; + $this->errors++; + } + + $this->printConf($output, "\t\t" . $conf, $value, false, $message); + break; + case 'port'; + $required_options = array_diff($required_options, array($conf)); + $message = 'OK'; + + if (!ctype_digit($value)) + { + $message = 'Not recognized'; + $this->alerts++; + } + + $this->printConf($output, "\t\t" . $conf, $value, false, $message); + break; + default: + $this->alerts++; + $this->printConf($output, "\t\t" . $conf, $value, false, 'Not recognized'); + break; + } + } + } + + if (count($required_options) > 0) + { + $output->writeln(sprintf('Miss required keys %s', implode(', ', $required_options))); + $this->errors++; + } + } + + protected function probeCacheService(OutputInterface $output, $ServiceName) + { + try + { + $originalConfiguration = $this->configuration->getService($ServiceName); + + $Service = Core\Service\Builder::create( + \bootstrap::getCore(), $ServiceName, $originalConfiguration + ); + } + catch (\Exception $e) + { + return false; + } + + if ($Service->getDriver()->isServer()) + { + switch ($Service->getType()) + { + default: + return false; + break; + case 'memcache': + if (!@memcache_connect($Service->getHost(), $Service->getPort())) + { + return false; + } + break; + } + } + + return true; + } + + protected function recommendedCacheService(OutputInterface $output, $ServiceName, $server) + { + try + { + $originalConfiguration = $this->configuration->getService($ServiceName); + + $Service = Core\Service\Builder::create( + \bootstrap::getCore(), $ServiceName, $originalConfiguration + ); + } + catch (\Exception $e) + { + return false; + } + + return $Service->getType() === 'array'; + } + + private function printConf($output, $scope, $value, $scopage = false, $message = '') + { + if (is_array($value)) + { + foreach ($value as $key => $val) + { + if ($scopage) + $key = $scope . ":" . $key; + $this->printConf($output, $key, $val, $scopage, ''); + } + } + elseif (is_bool($value)) + { + if ($value === false) + { + $value = 'false'; + } + elseif ($value === true) + { + $value = 'true'; + } + $output->writeln(sprintf("\t%s: %s %s", $scope, $value, $message)); + } + elseif (!empty($value)) + { + $output->writeln(sprintf("\t%s: %s %s", $scope, $value, $message)); + } + } + +} diff --git a/lib/classes/module/console/fileEnsureProductionSetting.class.php b/lib/classes/module/console/fileEnsureProductionSetting.class.php index b9ed08de2f..b5e87c5f63 100644 --- a/lib/classes/module/console/fileEnsureProductionSetting.class.php +++ b/lib/classes/module/console/fileEnsureProductionSetting.class.php @@ -44,6 +44,7 @@ class module_console_fileEnsureProductionSetting extends Command , 'checkOpcodeCacheService' ); protected $errors = 0; + protected $alerts = 0; public function __construct($name = null) { @@ -52,6 +53,7 @@ class module_console_fileEnsureProductionSetting extends Command $this->setDescription('Ensure production settings'); $this->addArgument('conf', InputArgument::OPTIONAL, 'The file to check', null); + $this->addOption('strict', 's', InputOption::VALUE_NONE, 'Wheter to fail on alerts or not'); return $this; } @@ -74,8 +76,23 @@ class module_console_fileEnsureProductionSetting extends Command $this->runTests($output); + $retval = $this->errors; + if ($input->getOption('strict')) + { + $retval += $this->alerts; + } + + if ($retval > 0) + { + $output->writeln("\nSome errors found in your conf"); + } + else + { + $output->writeln("\nYour production settings are setted correctly ! Enjoy"); + } $output->writeln('End'); - return 0; + + return $retval; } private function runTests(OutputInterface $output) @@ -112,15 +129,6 @@ class module_console_fileEnsureProductionSetting extends Command call_user_func(array($this, $test), $output); } - if ($this->errors) - { - $output->writeln("\nSome errors found in your conf"); - } - else - { - $output->writeln("\nYour production settings are setted correctly ! Enjoy"); - } - return $this->errors; } private function checkParse(OutputInterface $output) @@ -156,6 +164,7 @@ class module_console_fileEnsureProductionSetting extends Command else { $work_message = 'Cache server recommended'; + $this->alerts++; } } else @@ -185,6 +194,7 @@ class module_console_fileEnsureProductionSetting extends Command else { $work_message = 'Opcode recommended'; + $this->alerts++; } } else @@ -211,6 +221,7 @@ class module_console_fileEnsureProductionSetting extends Command switch ($conf) { default: + $this->alerts++; $this->printConf($output, $conf, $value, false, 'Not recognized'); break; case 'servername': @@ -226,6 +237,7 @@ class module_console_fileEnsureProductionSetting extends Command } elseif ($url == 'http://sub.domain.tld/') { + $this->alerts++; $message = "may be wrong"; } elseif (!filter_var($url, FILTER_VALIDATE_URL)) @@ -235,6 +247,7 @@ class module_console_fileEnsureProductionSetting extends Command } elseif ($parseUrl["scheme"] !== "https") { + $this->alerts++; $message = "should be https"; } else @@ -247,7 +260,14 @@ class module_console_fileEnsureProductionSetting extends Command case 'debug': case 'display_errors': $required = array_diff($required, array($conf)); - $message = $value ? 'Should be false' : 'OK'; + $message = 'OK'; + + if ($value !== false) + { + $message = 'Should be false'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); break; case 'database': @@ -280,6 +300,7 @@ class module_console_fileEnsureProductionSetting extends Command $output->writeln(sprintf('Miss required keys %s', implode(', ', $required))); $this->errors++; } + return; } @@ -335,11 +356,17 @@ class module_console_fileEnsureProductionSetting extends Command switch ($conf) { default: + $this->alerts++; $this->printConf($output, $conf, $value, false, 'Not recognized'); break; case 'charset': $required = array_diff($required, array($conf)); - $message = $value == 'UTF8' ? 'OK' : 'Not recognized'; + $message = 'OK'; + if ($value !== 'UTF8') + { + $message = 'Not recognized'; + $this->alerts++; + } $this->printConf($output, $conf, $value, false, $message); break; case 'path': @@ -351,23 +378,50 @@ class module_console_fileEnsureProductionSetting extends Command case 'user': case 'host': $required = array_diff($required, array($conf)); - $message = is_scalar($value) ? 'OK' : 'Should be scalar'; + $message = 'OK'; + + if (!is_scalar($value)) + { + $message = 'Should be scalar'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); break; case 'port': $required = array_diff($required, array($conf)); - $message = ctype_digit($value) ? 'OK' : 'Should be scalar'; + $message = 'OK'; + + if (!ctype_digit($value)) + { + $message = 'Should be ctype_digit'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); break; case 'password': $required = array_diff($required, array($conf)); - $message = is_scalar($value) ? 'OK' : 'Should be scalar'; + $message = 'OK'; + + if (!is_scalar($value)) + { + $message = 'Should be scalar'; + $this->errors++; + } + $value = '***********'; $this->printConf($output, $conf, $value, false, $message); break; case 'driver': $required = array_diff($required, array($conf)); - $message = $value === 'pdo_mysql' ? 'OK' : 'MySQL recommended'; + $message = 'OK'; + + if ($value !== 'pdo_mysql') + { + $message = 'MySQL recommended'; + $this->errors++; + } $this->printConf($output, $conf, $value, false, $message); break; } @@ -388,6 +442,7 @@ class module_console_fileEnsureProductionSetting extends Command { $config = new \Doctrine\DBAL\Configuration(); $conn = \Doctrine\DBAL\DriverManager::getConnection($connexion->all(), $config); + return true; } catch (\Exception $e) @@ -410,7 +465,7 @@ class module_console_fileEnsureProductionSetting extends Command } catch (\Exception $e) { - $work_message = 'Failed - could not connect !'; + $work_message = 'Failed - could not load template engine !'; $this->errors++; } @@ -438,14 +493,29 @@ class module_console_fileEnsureProductionSetting extends Command switch ($conf) { case 'type': - $message = $value == 'TemplateEngine\\Twig' ? 'OK' : 'Not recognized'; + $message = 'OK'; + + if($value !== 'TemplateEngine\\Twig') + { + $message = 'Not recognized'; + $this->alerts++; + } + $this->printConf($output, $conf, $value, false, $message); break; case 'options': - $message = is_array($value) ? 'OK' : 'Should be array'; + $message = 'OK'; + + if (!is_array($value)) + { + $message = 'Should be array'; + $this->errors++; + } + $this->printConf($output, $conf, 'array()', false, $message); break; default: + $this->alerts++; $this->printConf($output, $conf, 'unknown', false, 'Not recognized'); break; } @@ -458,21 +528,43 @@ class module_console_fileEnsureProductionSetting extends Command case 'debug'; case 'strict_variables'; $required = array_diff($required, array($conf)); - $message = $value == false ? 'OK' : 'Should be false'; + $message = 'OK'; + + if ($value !== false) + { + $message = 'Should be false'; + $this->errors++; + } + $this->printConf($output, "\t" . $conf, $value, false, $message); break; case 'autoescape'; case 'optimizer'; $required = array_diff($required, array($conf)); - $message = $value == true ? 'OK' : 'Should be true'; + $message = 'OK'; + + if ($value !== true) + { + $message = 'Should be true'; + $this->errors++; + } + $this->printConf($output, "\t" . $conf, $value, false, $message); break; case 'charset'; $required = array_diff($required, array($conf)); - $message = $value == 'utf-8' ? 'OK' : 'Not recognized'; + $message = 'OK'; + + if ($value !== 'utf-8') + { + $message = 'Not recognized'; + $this->alerts++; + } + $this->printConf($output, "\t" . $conf, $value, false, $message); break; default: + $this->alerts++; $this->printConf($output, "\t" . $conf, $value, false, 'Not recognized'); break; } @@ -533,10 +625,18 @@ class module_console_fileEnsureProductionSetting extends Command $this->printConf($output, $conf, $value, false, $message); break; case 'options': - $message = is_array($value) ? 'OK' : 'Should be array'; + $message = 'OK'; + + if (!is_array($value)) + { + $message = 'Should be array'; + $this->errors++; + } + $this->printConf($output, $conf, 'array()', false, $message); break; default: + $this->alerts++; $this->printConf($output, $conf, 'unknown', false, 'Not recognized'); break; } @@ -548,12 +648,26 @@ class module_console_fileEnsureProductionSetting extends Command switch ($conf) { case 'log': - $message = $value == false ? 'OK' : 'Should be deactivated'; + $message = 'OK'; + + if ($value !== false) + { + $message = 'Should be deactivated'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); break; case 'cache': $required = array_diff($required, array($conf)); - $message = is_array($value) ? 'OK' : 'Should be Array'; + $message = 'OK'; + + if (!is_array($value)) + { + $message = 'Should be Array'; + $this->errors++; + } + $this->printConf($output, $conf, 'array()', false, $message); $required_caches = array('query', 'result', 'metadata'); @@ -575,6 +689,7 @@ class module_console_fileEnsureProductionSetting extends Command } else { + $this->alerts++; if ($server) { $work_message = 'Cache server recommended'; @@ -598,6 +713,7 @@ class module_console_fileEnsureProductionSetting extends Command $this->verifyCacheOptions($output, $value_cache); break; default: + $this->alerts++; $this->printConf($output, "\t" . $key_cache, $value_cache, false, 'Not recognized'); break; } @@ -617,7 +733,14 @@ class module_console_fileEnsureProductionSetting extends Command break; case 'debug': $required = array_diff($required, array($conf)); - $message = $value == false ? 'OK' : 'Should be false'; + $message = 'OK'; + + if ($value !== false) + { + $message = 'Should be false'; + $this->errors++; + } + $this->printConf($output, $conf, $value, false, $message); break; case 'dbal': @@ -636,6 +759,7 @@ class module_console_fileEnsureProductionSetting extends Command $this->printConf($output, $conf, $value, false, $message); break; default: + $this->alerts++; $this->printConf($output, $conf, $value, false, 'Not recognized'); break; } @@ -684,15 +808,30 @@ class module_console_fileEnsureProductionSetting extends Command { case 'host'; $required_options = array_diff($required_options, array($conf)); - $message = is_scalar($value) ? 'OK' : 'Should be scalar'; + $message = 'OK'; + + if (!is_scalar($value)) + { + $message = 'Should be scalar'; + $this->errors++; + } + $this->printConf($output, "\t\t" . $conf, $value, false, $message); break; case 'port'; $required_options = array_diff($required_options, array($conf)); - $message = ctype_digit($value) ? 'OK' : 'Not recognized'; + $message = 'OK'; + + if (!ctype_digit($value)) + { + $message = 'Not recognized'; + $this->alerts++; + } + $this->printConf($output, "\t\t" . $conf, $value, false, $message); break; default: + $this->alerts++; $this->printConf($output, "\t\t" . $conf, $value, false, 'Not recognized'); break; } @@ -729,7 +868,7 @@ class module_console_fileEnsureProductionSetting extends Command return false; break; case 'memcache': - if (!memcache_connect($Service->getHost(), $Service->getPort())) + if (!@memcache_connect($Service->getHost(), $Service->getPort())) { return false; } @@ -759,6 +898,7 @@ class module_console_fileEnsureProductionSetting extends Command { return false; } + return $server === $Service->getDriver()->isServer(); } diff --git a/lib/classes/module/console/sphinxGenerateSuggestion.class.php b/lib/classes/module/console/sphinxGenerateSuggestion.class.php new file mode 100644 index 0000000000..5aec86995a --- /dev/null +++ b/lib/classes/module/console/sphinxGenerateSuggestion.class.php @@ -0,0 +1,148 @@ +setDescription('Generate suggestions for Sphinx Search Engine'); + + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + define('FREQ_THRESHOLD', 10); + define('SUGGEST_DEBUG', 0); + + $appbox = \appbox::get_instance(); + $registry = $appbox->get_registry(); + + $params = phrasea::sbas_params(); + + foreach ($params as $sbas_id => $p) + { + $index = crc32( + str_replace( + array('.', '%') + , '_' + , sprintf('%s_%s_%s_%s', $p['host'], $p['port'], $p['user'], $p['dbname']) + ) + ); + + $tmp_file = $registry->get('GV_RootPath') . 'tmp/dict' . $index . '.txt'; + + $databox = databox::get_instance($sbas_id); + + $output->writeln("process Databox " . $databox->get_viewname() . " / $index\n"); + + $cmd = '/usr/local/bin/indexer metadatas' . $index . ' --buildstops ' . $tmp_file . ' 1000000 --buildfreqs'; + exec($cmd); + + try + { + $connbas = connection::getPDOConnection($sbas_id); + } + catch (Exception $e) + { + continue; + } + + $sql = 'TRUNCATE suggest'; + $stmt = $connbas->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + + $sql = $this->BuildDictionarySQL($output, file_get_contents($tmp_file)); + + if (trim($sql) !== '') + { + $stmt = $connbas->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + } + + unlink($tmp_file); + } + + return 0; + } + + protected function BuildTrigrams($keyword) + { + $t = "__" . $keyword . "__"; + + $trigrams = ""; + for ($i = 0; $i < strlen($t) - 2; $i++) + $trigrams .= substr($t, $i, 3) . " "; + + return $trigrams; + } + + protected function BuildDictionarySQL(OutputInterface $output, $in) + { + $out = ''; + + $n = 0; + $lines = explode("\n", $in); + foreach ($lines as $line) + { + if (trim($line) === '') + continue; + list ( $keyword, $freq ) = explode(" ", trim($line)); + + if ($freq < FREQ_THRESHOLD || strstr($keyword, "_") !== false || strstr($keyword, "'") !== false) + continue; + + if (ctype_digit($keyword)) + { + continue; + } + if (mb_strlen($keyword) < 3) + { + continue; + } + + $trigrams = $this->BuildTrigrams($keyword); + + if ($n++) + $out .= ",\n"; + $out .= "( $n, '$keyword', '$trigrams', $freq )"; + } + + if (trim($out) !== '') + { + $out = "INSERT INTO suggest VALUES " . $out . ";"; + } + + $output->writeln(sprintf("Generated %d suggestions", $n)); + + return $out; + } + +} diff --git a/lib/classes/module/console/systemExport.class.php b/lib/classes/module/console/systemExport.class.php new file mode 100644 index 0000000000..55c611388f --- /dev/null +++ b/lib/classes/module/console/systemExport.class.php @@ -0,0 +1,311 @@ +setDescription('Export all phraseanet records to a directory'); + + /** + * To implement + */ +// $this->addOption('useoriginalname', 'o', InputOption::VALUE_OPTIONAL +// , 'Use original name for dest files', false); + + /** + * To implement + */ +// $this->addOption('excludefield', 'f', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY +// , 'Exclude field from XML', array()); + + /** + * To implement + */ +// $this->addOption('excludestatus', '', InputOption::VALUE_OPTIONAL +// , 'Exclude Status', false); + + $this->addOption('docperdir', 'd', InputOption::VALUE_OPTIONAL + , 'Maximum number of files per dir', 100); + + $this->addOption('caption', 'c', InputOption::VALUE_OPTIONAL + , 'Export Caption (XML)', false); + + $this->addOption('limit', 'l', InputOption::VALUE_OPTIONAL + , 'Limit files quantity (for test purposes)', false); + + $this->addOption('base_id', 'b', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY + , 'Restrict on base_ids', array()); + + $this->addOption('sbas_id', 's', InputOption::VALUE_REQUIRED | InputOption::VALUE_IS_ARRAY + , 'Restrict on sbas_ids', array()); + + $this->addArgument('directory', InputOption::VALUE_REQUIRED + , 'The directory where to export'); + + $this->addOption('sanitize', '', InputOption::VALUE_REQUIRED + , 'Sanitize filenames. Set to 0 to disable', true); + + return $this; + } + + public function execute(InputInterface $input, OutputInterface $output) + { + $docPerDir = max(1, (int) $input->getOption('docperdir')); + + /** + * + * To implement + * + $useOriginalName = !!$input->getOption('useoriginalname'); + $excludeFields = $input->getOption('excludefield'); + $exportStatus = !$input->getOption('excludestatus'); + * + */ + + $Caption = $input->getOption('caption'); + + $limit = ctype_digit($input->getOption('limit')) ? max(0, (int) $input->getOption('limit')) : false; + + $restrictBaseIds = $input->getOption('base_id'); + + $restrictSbasIds = $input->getOption('sbas_id'); + + $sanitize = $input->getOption('sanitize'); + + + $export_directory = $input->getArgument('directory'); + + if (!$export_directory) + { + throw new Exception('Missing directory argument'); + } + + $export_directory = realpath(substr($export_directory, 0, 1) === '/' ? $export_directory : getcwd() . '/' . $export_directory . '/'); + + if (!$export_directory) + { + throw new Exception('Export directory does not exists or is not accessible'); + } + + if (!is_writable($export_directory)) + { + throw new Exception('Export directory is not writable'); + } + + /** + * Sanitize + */ + foreach ($restrictBaseIds as $key => $base_id) + { + $restrictBaseIds[$key] = (int) $base_id; + } + foreach ($restrictSbasIds as $key => $sbas_id) + { + $restrictSbasIds[$key] = (int) $sbas_id; + } + + + if (count($restrictSbasIds) > 0) + { + $output->writeln("Export datas from selected sbas_ids"); + } + elseif (count($restrictBaseIds) > 0) + { + $output->writeln("Export datas from selected base_ids"); + } + + $appbox = \appbox::get_instance(); + + $total = $errors = 0; + + $unicode = new \unicode(); + + foreach ($appbox->get_databoxes() as $databox) + { + $output->writeln(sprintf("Processing %s", $databox->get_viewname())); + + if (count($restrictSbasIds) > 0 && !in_array($databox->get_sbas_id(), $restrictSbasIds)) + { + $output->writeln(sprintf("Databox not selected, bypassing ...")); + continue; + } + + $go = true; + $coll_ids = array(); + + if (count($restrictBaseIds) > 0) + { + $go = false; + foreach ($databox->get_collections() as $collection) + { + if (in_array($collection->get_base_id(), $restrictBaseIds)) + { + + $go = true; + $coll_ids[] = $collection->get_coll_id(); + } + } + } + + if (!$go) + { + $output->writeln(sprintf("Collections not selected, bypassing ...")); + continue; + } + + $local_export = $export_directory + . '/' . $unicode->remove_nonazAZ09($databox->get_viewname(), true, true) + . '/'; + + system_file::mkdir($local_export); + + $sql = 'SELECT record_id FROM record WHERE parent_record_id = 0 '; + + if (count($coll_ids) > 0) + { + $sql .= ' AND coll_id IN (' . implode(', ', $coll_ids) . ') '; + } + + $sql .= ' ORDER BY record_id ASC '; + + if ($limit) + { + $sql .= ' LIMIT 0, ' . $limit; + } + + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); + $stmt->closeCursor(); + + + $done = 0; + $current_total = count($rs); + $total += $current_total; + $l = strlen((string) $current_total) + 1; + + $dir_format = 'datas%' . strlen((string) ceil($current_total / $docPerDir)) . 'd'; + + $dir_increment = 0; + foreach ($rs as $row) + { + $record = $databox->get_record($row['record_id']); + if (($done % $docPerDir) === 0) + { + $dir_increment++; + $in_dir_files = array(); + $current_dir = $local_export . sprintf($dir_format, $dir_increment) . '/'; + system_file::mkdir($current_dir); + } + + if ($sanitize) + { + $filename = $unicode->remove_nonazAZ09($record->get_original_name(), true, true, true); + } + else + { + $filename = $record->get_original_name(); + } + + $this->generateDefinitiveFilename($in_dir_files, $filename); + + $output_file = $current_dir . $filename; + + if (!$this->processRecords($record, $output_file, $Caption)) + { + $errors++; + } + + $done++; + + $output->write(sprintf("\r#%" . $l . "d record remaining", $current_total - $done)); + } + $output->writeln(" | " . $current_total . " records done\n"); + } + + $output->writeln("$total records done, $errors errors occured"); + + return 0; + } + + protected function generateDefinitiveFilename(array &$existing, &$filename) + { + $definitive_filename = $filename; + $suffix = 2; + while (array_key_exists($definitive_filename, $existing)) + { + $pathinfo = pathinfo($filename); + + $definitive_filename = $pathinfo['filename'] . '_' . $suffix . + (isset($pathinfo['extension']) ? '.' . $pathinfo['extension'] : ''); + $suffix++; + } + + $existing[$filename] = $filename; + $filename = $definitive_filename; + + return; + } + + protected function processRecords(\record_adapter $record, $outfile, $caption) + { + + try + { + $file = new system_file($record->get_subdef('document')->get_pathfile()); + } + catch (\Exception_Media_SubdefNotFound $e) + { + return false; + } + + copy($file->getPathname(), $outfile); + + $dest_file = new system_file($outfile); + + touch( + $dest_file->getPathname() + , $record->get_creation_date()->format('U') + , $record->get_modification_date()->format('U') + ); + + switch (strtolower($caption)) + { + case 'xml': + $pathinfo = pathinfo($dest_file->getPathname()); + $xml_file = dirname($outfile) . '/' . $pathinfo['filename'] . '.xml'; + file_put_contents($xml_file, $record->get_xml()); + break; + default: + break; + } + + return true; + } + +} diff --git a/lib/classes/module/report/activity.class.php b/lib/classes/module/report/activity.class.php index 368b34dadb..ccfb27d58c 100644 --- a/lib/classes/module/report/activity.class.php +++ b/lib/classes/module/report/activity.class.php @@ -453,7 +453,6 @@ class module_report_activity extends module_report $this->result[$i]['total'] += 1; $total['tot_dl'] += 1; - } $nb_row = $i + 1; @@ -479,7 +478,7 @@ class module_report_activity extends module_report * @param string $on choose the field on what you want the result * @return array */ - public function getConnexionBase($tab = false, $on= "") + public function getConnexionBase($tab = false, $on = "") { //default group on user column if (empty($on)) @@ -577,7 +576,7 @@ class module_report_activity extends module_report * @param array $tab config for the html table * @return array */ - public function getDetailDownload($tab = false, $on="") + public function getDetailDownload($tab = false, $on = "") { empty($on) ? $on = "user" : ""; //by default always report on user @@ -638,19 +637,37 @@ class module_report_activity extends module_report foreach ($rs as $row) { $user = $row[$on]; - if (($save_user != $user) && !is_null($user)) + if (($save_user != $user) && !is_null($user) && !empty($user)) + { + if ($i >= 0) + { + if (($this->result[$i]['nbprev'] + $this->result[$i]['nbdoc']) == 0 || ($this->result[$i]['poiddoc'] + $this->result[$i]['poidprev']) == 0) + { + unset($this->result[$i]); + } + + if (isset($this->result[$i]['poiddoc']) && isset($this->result[$i]['poidprev'])) + { + $this->result[$i]['poiddoc'] = p4string::format_octets($this->result[$i]['poiddoc']); + $this->result[$i]['poidprev'] = p4string::format_octets($this->result[$i]['poidprev']); + } + } + + $i++; + + $this->result[$i]['nbprev'] = 0; + $this->result[$i]['poidprev'] = 0; + $this->result[$i]['nbdoc'] = 0; + $this->result[$i]['poiddoc'] = 0; + } + //doc info if ($row['final'] == 'document' && !is_null($user) && !is_null($row['usrid'])) { $this->result[$i]['nbdoc'] = (!is_null($row['nb']) ? $row['nb'] : 0); - $this->result[$i]['poiddoc'] = (!is_null($row['poid']) ? - p4string::format_octets($row['poid']) : 0); - if (!isset($this->result[$i]['nbprev'])) - $this->result[$i]['nbprev'] = 0; - if (!isset($this->result[$i]['poidprev'])) - $this->result[$i]['poidprev'] = 0; + $this->result[$i]['poiddoc'] = (!is_null($row['poid']) ? $row['poid'] : 0); $this->result[$i]['user'] = empty($row[$on]) ? "" . _('report:: non-renseigne') . "" : $row[$on]; $total['nbdoc'] += $this->result[$i]['nbdoc']; @@ -658,26 +675,25 @@ class module_report_activity extends module_report $this->result[$i]['usrid'] = $row['usrid']; } //preview info - if ($row['final'] == 'preview' && + if (($row['final'] == 'preview' || $row['final'] == 'thumbnail') && !is_null($user) && !is_null($row['usrid'])) { - if (!isset($this->result[$i]['nbdoc'])) - $this->result[$i]['nbdoc'] = 0; - if (!isset($this->result[$i]['poiddoc'])) - $this->result[$i]['poiddoc'] = 0; - $this->result[$i]['nbprev'] = (!is_null($row['nb']) ? $row['nb'] : 0); - $this->result[$i]['poidprev'] = (!is_null($row['poid']) ? - p4string::format_octets($row['poid']) : 0); + + $this->result[$i]['nbprev'] += (!is_null($row['nb']) ? $row['nb'] : 0); + $this->result[$i]['poidprev'] += (!is_null($row['poid']) ? $row['poid'] : 0); + $this->result[$i]['user'] = empty($row[$on]) ? "" . _('report:: non-renseigne') . "" : $row[$on]; - $total['nbprev'] += $this->result[$i]['nbprev']; + $total['nbprev'] += (!is_null($row['nb']) ? $row['nb'] : 0); $total['poidprev'] += (!is_null($row['poid']) ? $row['poid'] : 0); $this->result[$i]['usrid'] = $row['usrid']; } + $save_user = $user; } + unset($this->result[$i]); $nb_row = $i + 1; $this->total = $nb_row; diff --git a/lib/classes/patch/320h.class.php b/lib/classes/patch/320h.class.php new file mode 100644 index 0000000000..1d4866eabf --- /dev/null +++ b/lib/classes/patch/320h.class.php @@ -0,0 +1,66 @@ +release; + } + + public function require_all_upgrades() + { + return true; + } + + /** + * + * @return Array + */ + function concern() + { + return $this->concern; + } + + function apply(base &$appbox) + { + $sql = 'DELETE FROM basusr WHERE actif = "0"'; + + $stmt = $appbox->get_connection()->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + + return true; + } + +} diff --git a/lib/classes/patch/360.class.php b/lib/classes/patch/360.class.php index 231fcc3524..186e1427c5 100644 --- a/lib/classes/patch/360.class.php +++ b/lib/classes/patch/360.class.php @@ -59,7 +59,7 @@ class patch_360 implements patchInterface foreach ($tables as $table) { - $sql = 'TRUNCATE ' . $table; + $sql = 'DELETE FROM ' . $table; $stmt = $appbox->get_connection()->prepare($sql); $stmt->execute(); $stmt->closeCursor(); diff --git a/lib/classes/patch/3602.class.php b/lib/classes/patch/3602.class.php index f707bfb2c4..150b5d47b6 100644 --- a/lib/classes/patch/3602.class.php +++ b/lib/classes/patch/3602.class.php @@ -54,12 +54,18 @@ class patch_3602 implements patchInterface function apply(base &$databox) { + try + { + $sql = 'ALTER TABLE `metadatas` DROP INDEX `unique`'; - $sql = 'ALTER TABLE `metadatas` DROP INDEX `unique`'; + $stmt = $databox->get_connection()->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + } + catch(\PDOException $e) + { - $stmt = $databox->get_connection()->prepare($sql); - $stmt->execute(); - $stmt->closeCursor(); + } return true; } diff --git a/lib/classes/random.class.php b/lib/classes/random.class.php index 24a615b66f..5a73b0fb31 100644 --- a/lib/classes/random.class.php +++ b/lib/classes/random.class.php @@ -11,18 +11,28 @@ class random { + /** * */ - const NUMBERS = "0123456789"; + + const NUMBERS = "0123456789"; /** * */ - const LETTERS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + const LETTERS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; /** * */ const LETTERS_AND_NUMBERS = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"; + const TYPE_FEED_ENTRY = 'FEED_ENTRY'; + const TYPE_PASSWORD = 'password'; + const TYPE_DOWNLOAD = 'download'; + const TYPE_MAIL_DOWNLOAD = 'mail-download'; + const TYPE_EMAIL = 'email'; + const TYPE_VIEW = 'view'; + const TYPE_VALIDATE = 'validate'; + const TYPE_RSS = 'rss'; /** * @@ -34,15 +44,15 @@ class random { $conn = connection::getPDOConnection(); - $date = new DateTime(); - $date = phraseadate::format_mysql($date); + $date = new DateTime(); + $date = phraseadate::format_mysql($date); $registry = registry::get_instance(); - $sql = 'SELECT * FROM tokens WHERE expire_on < :date + $sql = 'SELECT * FROM tokens WHERE expire_on < :date AND datas IS NOT NULL AND (type="download" OR type="email")'; $stmt = $conn->prepare($sql); $stmt->execute(array(':date' => $date)); - $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); + $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); $stmt->closeCursor(); foreach ($rs as $row) { @@ -57,7 +67,7 @@ class random } } - $sql = 'DELETE FROM tokens WHERE expire_on < :date and (type="download" OR type="email")'; + $sql = 'DELETE FROM tokens WHERE expire_on < :date and (type="download" OR type="email")'; $stmt = $conn->prepare($sql); $stmt->execute(array(':date' => $date)); $stmt->closeCursor(); @@ -85,8 +95,8 @@ class random $password = ""; if (!in_array($possible, array(self::LETTERS_AND_NUMBERS, self::LETTERS, self::NUMBERS))) - $possible = self::LETTERS_AND_NUMBERS; - $i = 0; + $possible = self::LETTERS_AND_NUMBERS; + $i = 0; $possible_length = strlen($possible); while ($i < $length) { @@ -106,18 +116,32 @@ class random * @param mixed content $datas * @return boolean */ - public static function getUrlToken($type, $usr, DateTime $end_date = null, $datas='') + public static function getUrlToken($type, $usr, DateTime $end_date = null, $datas = '') { self::cleanTokens(); - $conn = connection::getPDOConnection(); - $token = $test = false; + $conn = connection::getPDOConnection(); + $token = $test = false; - if (!in_array($type, array('password', 'download', 'mail-download', 'email', 'view', 'validate', 'rss'))) - throw new Exception_InvalidArgument(); + switch ($type) + { + case self::TYPE_DOWNLOAD: + case self::TYPE_PASSWORD: + case self::TYPE_MAIL_DOWNLOAD: + case self::TYPE_EMAIL: + case self::TYPE_VALIDATE: + case self::TYPE_VIEW: + case self::TYPE_RSS: + case self::TYPE_FEED_ENTRY: + + break; + default: + throw new Exception_InvalidArgument(); + break; + } $n = 1; - $sql = 'SELECT id FROM tokens WHERE value = :test '; + $sql = 'SELECT id FROM tokens WHERE value = :test '; $stmt = $conn->prepare($sql); while ($n < 100) { @@ -134,16 +158,16 @@ class random if ($token) { - $sql = 'INSERT INTO tokens (id, value, type, usr_id, created_on, expire_on, datas) + $sql = 'INSERT INTO tokens (id, value, type, usr_id, created_on, expire_on, datas) VALUES (null, :token, :type, :usr, NOW(), :end_date, :datas)'; $stmt = $conn->prepare($sql); $params = array( - ':token' => $token - , ':type' => $type - , ':usr' => ($usr ? $usr : '-1') - , ':end_date' => ($end_date instanceof DateTime ? phraseadate::format_mysql($end_date) : null) - , ':datas' => ((trim($datas) != '') ? $datas : null) + ':token' => $token + , ':type' => $type + , ':usr' => ($usr ? $usr : '-1') + , ':end_date' => ($end_date instanceof DateTime ? phraseadate::format_mysql($end_date) : null) + , ':datas' => ((trim($datas) != '') ? $datas : null) ); $stmt->execute($params); $stmt->closeCursor(); @@ -159,7 +183,7 @@ class random try { $conn = connection::getPDOConnection(); - $sql = 'DELETE FROM tokens WHERE value = :token'; + $sql = 'DELETE FROM tokens WHERE value = :token'; $stmt = $conn->prepare($sql); $stmt->execute(array(':token' => $token)); $stmt->closeCursor(); @@ -202,12 +226,12 @@ class random self::cleanTokens(); $conn = connection::getPDOConnection(); - $sql = 'SELECT * FROM tokens + $sql = 'SELECT * FROM tokens WHERE value = :token AND (expire_on > NOW() OR expire_on IS NULL)'; $stmt = $conn->prepare($sql); $stmt->execute(array(':token' => $token)); - $row = $stmt->fetch(PDO::FETCH_ASSOC); + $row = $stmt->fetch(PDO::FETCH_ASSOC); $stmt->closeCursor(); if (!$row) diff --git a/lib/classes/record/Interface.class.php b/lib/classes/record/Interface.class.php index 5583384643..69678b155b 100644 --- a/lib/classes/record/Interface.class.php +++ b/lib/classes/record/Interface.class.php @@ -95,8 +95,6 @@ interface record_Interface public function set_binary_status($status); - public function get_reg_name(); - public function get_hd_file(); public function delete(); diff --git a/lib/classes/record/adapter.class.php b/lib/classes/record/adapter.class.php index 177348f54a..bd8d3323d1 100644 --- a/lib/classes/record/adapter.class.php +++ b/lib/classes/record/adapter.class.php @@ -140,8 +140,6 @@ class record_adapter implements record_Interface, cache_cacheableInterface const CACHE_GROUPING = 'grouping'; const CACHE_STATUS = 'status'; - protected static $_regfields; - /** * * @param $base_id @@ -895,16 +893,6 @@ class record_adapter implements record_Interface, cache_cacheableInterface */ public function get_title($highlight = false, searchEngine_adapter $searchEngine = null) { - $sbas_id = $this->get_sbas_id(); - $record_id = $this->get_record_id(); - - if ($this->is_grouping()) - { - $regfield = self::getRegFields($sbas_id, $this->get_caption()); - - return $regfield['regname']; - } - $title = ''; $appbox = appbox::get_instance(\bootstrap::getCore()); $session = $appbox->get_session(); @@ -944,98 +932,6 @@ class record_adapter implements record_Interface, cache_cacheableInterface return $title; } - public function get_description() - { - - if (!$this->is_grouping()) - throw new \Exception('This record is not a story'); - - $regfield = self::getRegFields($this->get_sbas_id(), $this->get_caption()); - - return $regfield['regdesc']; - } - - /** - * - * @param $sbas_id - * @param caption_record $desc - * @return - */ - protected static function getRegFields($sbas_id, caption_record $desc) - { - if (!self::$_regfields) - self::load_regfields(); - - $arrayRegFields = self::$_regfields[$sbas_id]; - - $array = array(); - - foreach ($arrayRegFields as $k => $f) - { - $array[$f] = $k; - } - - $fields = array(); - $fields["regname"] = ""; - $fields["regdesc"] = ""; - $fields["regdate"] = ""; - - foreach ($desc->get_fields() as $caption_field) - { - /* @var $caption_field caption_field */ - $meta_struct_id = $caption_field->get_meta_struct_id(); - if (array_key_exists($meta_struct_id, $array)) - { - $fields[$array[$meta_struct_id]] = $caption_field->get_serialized_values(); - } - } - - return $fields; - } - - /** - * get databox reg fields - * - * @todo change this shit - * @return array - */ - protected static function load_regfields() - { - $appbox = appbox::get_instance(\bootstrap::getCore()); - self::$_regfields = array(); - foreach ($appbox->get_databoxes() as $databox) - { - self::$_regfields[$databox->get_sbas_id()] = self::searchRegFields($databox->get_meta_structure()); - } - - return self::$_regfields; - } - - /** - * - * @param databox_descriptionStructure $meta_struct - * @return - */ - protected function searchRegFields(databox_descriptionStructure $meta_struct) - { - $fields = null; - $fields["regname"] = ""; - $fields["regdesc"] = ""; - $fields["regdate"] = ""; - - foreach ($meta_struct as $meta) - { - if ($meta->is_regname()) - $fields["regname"] = $meta->get_id(); - elseif ($meta->is_regdesc()) - $fields["regdesc"] = $meta->get_id(); - elseif ($meta->is_regdate()) - $fields['regdate'] = $meta->get_id(); - } - - return $fields; - } - /** * * @return media_subdef @@ -1487,42 +1383,6 @@ class record_adapter implements record_Interface, cache_cacheableInterface return $this; } - /** - * - * @return string - */ - public function get_reg_name() - { - if (!$this->is_grouping()) - { - return false; - } - - $balisename = ''; - - $struct = $this->databox->get_structure(); - - if ($sxe = simplexml_load_string($struct)) - { - $z = $sxe->xpath('/record/description'); - if ($z && is_array($z)) - { - foreach ($z[0] as $ki => $vi) - { - if ($vi['regname'] == '1') - { - $balisename = $ki; - break; - } - } - } - } - $regname = ''; - if ($sxe = simplexml_load_string($this->get_xml())) - $regname = (string) $sxe->description->$balisename; - - return $regname; - } /** * diff --git a/lib/classes/searchEngine/adapter/phrasea/engine.class.php b/lib/classes/searchEngine/adapter/phrasea/engine.class.php index c410c6e498..55983f3d75 100644 --- a/lib/classes/searchEngine/adapter/phrasea/engine.class.php +++ b/lib/classes/searchEngine/adapter/phrasea/engine.class.php @@ -631,7 +631,7 @@ class searchEngine_adapter_phrasea_engine extends searchEngine_adapter_abstract return array(); $rs = $res['results']; $res = array_shift($rs); - if (!$res['xml']) + if (! isset($res['xml'])) return array(); $sxe = simplexml_load_string($res['xml']); @@ -645,7 +645,8 @@ class searchEngine_adapter_phrasea_engine extends searchEngine_adapter_abstract { $val[] = str_replace(array('[[em]]', '[[/em]]'), array('', ''), (string) $value); } - $val = implode(' '.$field['separator'].' ', $val); + $separator = $field['separator'] ? $field['separator'][0] : ''; + $val = implode(' '.$separator.' ', $val); } else { diff --git a/lib/classes/set/order.class.php b/lib/classes/set/order.class.php index 9eb0014cba..9f0926010e 100644 --- a/lib/classes/set/order.class.php +++ b/lib/classes/set/order.class.php @@ -222,14 +222,26 @@ class set_order extends set_abstract $core = \bootstrap::getCore(); $em = $core->getEntityManager(); - $repository = $em->getRepository('\Entities\Basket'); + $Basket = null; /* @var $repository \Repositories\BasketRepository */ - $Basket = $repository->findUserBasket($this->ssel_id, $core->getAuthenticatedUser(), false); + if($this->ssel_id) + { + $repository = $em->getRepository('\Entities\Basket'); + + try + { + $Basket = $repository->findUserBasket($this->ssel_id, $core->getAuthenticatedUser(), false); + } + catch(\Exception $e) + { + $Basket = null; + } + } if(!$Basket) { - $Basket = new Basket(); + $Basket = new \Entities\Basket(); $Basket->setName(sprintf(_('Commande du %s'), $this->created_on->format('Y-m-d'))); $Basket->setOwner($this->user); $Basket->setPusher($core->getAuthenticatedUser()); @@ -265,7 +277,7 @@ class set_order extends set_abstract $sbas_id = phrasea::sbasFromBas($basrec['base_id']); $record = new record_adapter($sbas_id, $basrec['record_id']); - $BasketElement = new BasketElement(); + $BasketElement = new \Entities\BasketElement(); $BasketElement->setRecord($record); $BasketElement->setBasket($Basket); @@ -273,7 +285,6 @@ class set_order extends set_abstract $em->persist($BasketElement); - $em->merge($Basket); $params = array( ':usr_id' => $session->get_usr_id() diff --git a/lib/classes/setup.class.php b/lib/classes/setup.class.php index a35f90b03f..097e6375f3 100644 --- a/lib/classes/setup.class.php +++ b/lib/classes/setup.class.php @@ -608,17 +608,15 @@ class setup { $stats = $Core->getCache()->getStats(); + echo '
    • ' . sprintf(_('setup::Serveur actif sur %s'), $registry->get('GV_cache_server_host') . ':' . $registry->get('GV_cache_server_port')) . '
    • '; + echo ""; + foreach ($stats as $name => $stat) { - echo '
    • Statistics given by `' . $name . '`
    • '; - echo '
    • ' . sprintf(_('setup::Serveur actif sur %s'), $registry->get('GV_cache_server_host') . ':' . $registry->get('GV_cache_server_port')) . '
    • '; - echo "
      "; - foreach ($stat as $key => $value) - { - echo ""; - } - echo "
      " . $key . " " . $value . "
      "; + echo "" . $name . " " . $stat . ""; } + + echo ""; } else { @@ -643,9 +641,9 @@ class setup } if ($found > 1) - $constraints[] = new Setup_Constraint('Multiple opcode caches', false, 'Many opcode cache load is forbidden', true); + $constraints[] = new Setup_Constraint('Multiple opcode caches', false, _('Many opcode cache load is forbidden'), true); if ($found === 0) - $constraints[] = new Setup_Constraint('No opcode cache', false, 'No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC.', false); + $constraints[] = new Setup_Constraint('No opcode cache', false, _('No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC.'), false); return new Setup_ConstraintsIterator($constraints); } @@ -808,7 +806,7 @@ class setup $appConf = new \Alchemy\Phrasea\Core\Configuration\ApplicationSpecification(); $appConf->delete(); - + return; } diff --git a/lib/classes/sphinx/configuration.class.php b/lib/classes/sphinx/configuration.class.php index 92d9d43607..cbd3b40972 100644 --- a/lib/classes/sphinx/configuration.class.php +++ b/lib/classes/sphinx/configuration.class.php @@ -67,15 +67,17 @@ class sphinx_configuration $defaults = array( 'sbas' => self::OPT_ALL_SBAS - , 'libstemmer' => array(self::OPT_LIBSTEMMER_NONE) + , 'libstemmer' => array(self::OPT_LIBSTEMMER_NONE) , 'enable_star' => self::OPT_ENABLE_STAR_ON - , 'min_prefix_len' => self::OPT_MIN_PREFIX_LEN + , 'min_prefix_len' => self::OPT_MIN_PREFIX_LEN , 'min_infix_len' => self::OPT_MIN_INFIX_LEN , 'charset_tables' => array() ); $options = array_merge($defaults, $options); + $options['charset_tables'] = array_unique($options['charset_tables']); + $lb = phrasea::sbas_params(); $conf = ''; @@ -439,7 +441,7 @@ class sphinx_configuration path = /var/sphinx/datas/docs_realtime_' . $serialized . ' -' . $charset_abstract . ' + ' . $charset_abstract . ' rt_field = value # rt_field = meta_struct_id @@ -593,6 +595,9 @@ searchd # optional, default is 256 # max_filters = 512 + + compat_sphinxql_magics = 0 + } '; diff --git a/lib/classes/sphinxrt.class.php b/lib/classes/sphinxrt.class.php index a8c5b354ce..2a15d0313d 100644 --- a/lib/classes/sphinxrt.class.php +++ b/lib/classes/sphinxrt.class.php @@ -81,7 +81,7 @@ class sphinxrt if ($rt_id) { $this->connection->beginTransaction(); - $sql = "DELETE FROM " . $rt_id . " WHERE id = " . (int) $id . ""; + $sql = "DELETE FROM " . $rt_id . " WHERE id = " . (int) $id . ""; $stmt = $this->connection->prepare($sql); $stmt->execute(); $stmt->closeCursor(); @@ -106,7 +106,7 @@ class sphinxrt $cl->SetConnectTimeout(1); - $status = strrev($status); + $status = strrev($status); $new_stat = array(); for ($i = 4; $i < strlen($status); $i++) { @@ -122,20 +122,18 @@ class sphinxrt return $this; } - public function replace_in_metas($rt_id, $meta_id, $tag_id, $record_id, $sbas_id, $coll_id, $grouping, $type, Array $content, DateTime $created) + public function replace_in_metas($rt_id, $meta_id, $tag_id, $record_id, $sbas_id, $coll_id, $grouping, $type, $content, DateTime $created) { - $crc_sbas_tag = crc32($sbas_id . '_' . $tag_id); - $crc_sbas_coll = crc32($sbas_id . '_' . $coll_id); + $crc_sbas_tag = crc32($sbas_id . '_' . $tag_id); + $crc_sbas_coll = crc32($sbas_id . '_' . $coll_id); $crc_sbas_record = crc32($sbas_id . '_' . $record_id); - $crc_type = crc32($type); + $crc_type = crc32($type); $this->connection->beginTransaction(); -// foreach ($content as $value) -// { - $sql = "REPLACE INTO " . $rt_id . " VALUES ( + $sql = "REPLACE INTO " . $rt_id . " VALUES ( '" . (int) $meta_id . "' - ,'" . str_replace("'", "\'", implode(' ', $content)) . "' + ,'" . str_replace("'", "\'", $content) . "' ,'" . (int) $tag_id . "' ," . (int) $record_id . " ," . (int) $sbas_id . " @@ -149,7 +147,6 @@ class sphinxrt ," . (int) $created->format('U') . " )"; $stmt = $this->connection->prepare($sql); $stmt->execute(); -// } $stmt->closeCursor(); @@ -160,9 +157,9 @@ class sphinxrt public function replace_in_documents($rt_id, $record_id, $value, $sbas_id, $coll_id, $grouping, $type, DateTime $created) { - $crc_sbas_coll = crc32($sbas_id . '_' . $coll_id); + $crc_sbas_coll = crc32($sbas_id . '_' . $coll_id); $crc_sbas_record = crc32($sbas_id . '_' . $record_id); - $crc_type = crc32($type); + $crc_type = crc32($type); $this->connection->beginTransaction(); diff --git a/lib/classes/unicode.class.php b/lib/classes/unicode.class.php index 0838b5ea9a..46d8648a85 100644 --- a/lib/classes/unicode.class.php +++ b/lib/classes/unicode.class.php @@ -1391,7 +1391,7 @@ class unicode return $no_diacritics; } - public function remove_nonazAZ09($string, $keep_underscores = true, $keep_minus = true) + public function remove_nonazAZ09($string, $keep_underscores = true, $keep_minus = true, $keep_dot = false) { $regexp = '/[a-zA-Z0-9'; if ($keep_minus === true) @@ -1402,6 +1402,11 @@ class unicode { $regexp .= '_'; } + if ($keep_dot === true) + { + $regexp .= '\.'; + } + $regexp .= ']{1}/'; $string = $this->remove_diacritics($string); diff --git a/lib/conf.d/_GV_template.inc b/lib/conf.d/_GV_template.inc index 7a5a950a50..f2e4a8a24c 100644 --- a/lib/conf.d/_GV_template.inc +++ b/lib/conf.d/_GV_template.inc @@ -10,8 +10,10 @@ $GV_sit = md5(time() . '--' . mt_rand(1000000, 9999999)); include_once dirname(__FILE__) . "/../../lib/classes/User/Interface.class.php"; include_once dirname(__FILE__) . "/../../lib/classes/User/Adapter.class.php"; -$lngs = User_Adapter::avLanguages(); + +$lngs = User_Adapter::avLanguages(); $avLanguages = array(); + foreach ($lngs as $lng => $locales) { foreach ($locales as $loc => $locname) @@ -20,28 +22,48 @@ foreach ($lngs as $lng => $locales) } } -$eventsmanager = eventsmanager_broker::getInstance(appbox::get_instance(\bootstrap::getCore()), bootstrap::getCore()); +$Core = \bootstrap::getCore(); + +$extractDateFields = function(\Alchemy\Phrasea\Core $Core) { + $date_sort_fields = array(''=>''); + if ($Core->getConfiguration()->isInstalled()) + { + $ProdHelper = new Alchemy\Phrasea\Helper\Prod($Core, Symfony\Component\HttpFoundation\Request::createFromGlobals()); + $datas = $ProdHelper->get_search_datas(); + foreach ($datas['dates'] as $date) + { + $date_sort_fields[$date['fieldname']] = $date['fieldname']; + } + } + + return $date_sort_fields; +}; + +$date_sort_fields = $extractDateFields($Core); + + +$eventsmanager = eventsmanager_broker::getInstance(appbox::get_instance($Core), $Core); $PHP_CONF = array( - 'output_buffering' => '4096' //INI_ALL - , 'memory_limit' => '1024M' //INI_ALL - , 'error_reporting' => '6143' //INI_ALL - , 'default_charset' => 'UTF-8' //INI_ALL - , 'session.use_cookies' => '1' //INI_ALL - , 'session.use_only_cookies' => '1' //INI_ALL - , 'session.auto_start' => '0' //INI_ALL - , 'session.hash_function' => '1' //INI_ALL - , 'session.hash_bits_per_character' => '6' //INI_ALL - , 'allow_url_fopen' => 'on' //INI_ALL - , 'display_errors' => 'off' //INI_ALL - , 'display_startup_errors' => 'off' //INI_ALL - , 'log_errors' => 'off' //INI_ALL + 'output_buffering' => '4096' //INI_ALL + , 'memory_limit' => '1024M' //INI_ALL + , 'error_reporting' => '6143' //INI_ALL + , 'default_charset' => 'UTF-8' //INI_ALL + , 'session.use_cookies' => '1' //INI_ALL + , 'session.use_only_cookies' => '1' //INI_ALL + , 'session.auto_start' => '0' //INI_ALL + , 'session.hash_function' => '1' //INI_ALL + , 'session.hash_bits_per_character' => '6' //INI_ALL + , 'allow_url_fopen' => 'on' //INI_ALL + , 'display_errors' => 'off' //INI_ALL + , 'display_startup_errors' => 'off' //INI_ALL + , 'log_errors' => 'off' //INI_ALL ); -$PHP_REQ = array( - 'safe_mode' => 'off' - , 'file_uploads' => '1' - , 'magic_quotes_runtime' => 'off' //INI_ALL - , 'magic_quotes_gpc' => 'off' //INI_PER_DIR -- just for check +$PHP_REQ = array( + 'safe_mode' => 'off' + , 'file_uploads' => '1' + , 'magic_quotes_runtime' => 'off' //INI_ALL + , 'magic_quotes_gpc' => 'off' //INI_PER_DIR -- just for check ); $youtube_console_url = 'https://code.google.com/apis/console/'; @@ -57,472 +79,452 @@ $dailymotion_callback = '/prod/bridge/callback/dailymotion/'; $create_api_dailymotion = 'http://www.dailymotion.com/profile/developer'; $GV = array( - array( - 'section' => _('GV::section:: Serveur HTTP'), - 'vars' => array( - array( - 'type' => 'timezone', - 'name' => 'GV_timezone', - 'comment' => _('reglages:: Timezone de l\'installation'), - 'default' => 'Europe/Paris', - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_sit', - 'comment' => _('reglages:: Nom de linstallation'), - 'default' => $GV_sit, - 'readonly' => true, - 'required' => true - ), - array( - 'type' => 'enum', - 'name' => 'GV_default_lng', - 'comment' => _('reglages:: Langue par defaut'), - 'default' => 'fr_FR', - 'available' => $avLanguages, - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_STATIC_URL', - 'end_slash' => false, - 'comment' => _('reglages:: URL statique (optionnel)'), - 'default' => '', - 'required' => false - ) - ) - ), array( - 'section' => _('GV::section:: Etat de maintenance'), - 'rolled' => true, - 'vars' => array( - array( - 'type' => 'text', - 'name' => 'GV_message', - 'comment' => _('reglages:: Message a diffuser aux utilisateurs'), - 'default' => "May the force be with you" - ), - array( - 'type' => 'boolean', - 'name' => 'GV_message_on', - 'comment' => _('reglages:: activation du message a diffuser aux utilistaeurs'), - 'default' => false - ), - array( - 'type' => 'boolean', - 'name' => 'GV_log_errors', - 'comment' => _('reglages:: logguer les erreurs'), - 'default' => false - ) - ) - ), array( - 'section' => _('GV::section:: Connectivite aux webservices'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_google_api', - 'comment' => _('reglages:: Utiliser els google apis'), - 'default' => true, - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_i18n_service', - 'comment' => _('reglages:: Service phrasea de localisation'), - 'default' => 'http://localization.webservice.alchemyasp.com/', - 'end_slash' => true, - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_bitly_user', - 'comment' => _('reglages:: Nom d\'utilisateur pour l\'api bit.ly'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_bitly_key', - 'comment' => _('reglages:: ccle d\'api pour l\'api bit.ly'), - 'default' => '', - ), - array( - 'type' => 'boolean', - 'name' => 'GV_captchas', - 'comment' => _('reglages:: Utilisation de l\'api recpatcha'), - 'default' => false, - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_captcha_public_key', - 'comment' => _('reglages:: clef publique recaptcha'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_captcha_private_key', - 'comment' => _('reglages:: clef privee recaptcha'), - 'default' => '' - ) - ) - ), array( - 'section' => _('GV::section:: Connectivite a Youtube'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_youtube_api', - 'comment' => sprintf(_('reglages:: Utiliser l\'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube'), $youtube_console_url), - 'default' => false, - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_youtube_client_id', - 'comment' => _('reglages:: Youtube client id'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_youtube_client_secret', - 'comment' => _('reglages:: Youtube clientsecret'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_youtube_dev_key', - 'comment' => sprintf(_('reglages:: Youtube cle developpeur, voir %s'), $dashboard_youtube), - 'default' => '' - ) - ) - ), array( - 'section' => _('GV::section:: Connectivite a FlickR'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_flickr_api', - 'comment' => sprintf(_('reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s'), $create_api_flickr, $flickr_callback), - 'default' => false, - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_flickr_client_id', - 'comment' => _('reglages:: FlickR client id'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_flickr_client_secret', - 'comment' => _('reglages:: FlickR client secret'), - 'default' => '' - ) - ) - ), array( - 'section' => _('GV::section:: Connectivite a Dailymotion'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_dailymotion_api', - 'comment' => sprintf(_('reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s'), $create_api_dailymotion, $dailymotion_callback), - 'default' => false, - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_dailymotion_client_id', - 'comment' => _('reglages:: dailymotion client id'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_dailymotion_client_secret', - 'comment' => _('reglages:: dailymotion client secret'), - 'default' => '' - ) - ) - ), array( - 'section' => _('GV::section:: Gestionnaire d\'evenements'), - 'vars' => array( - array( - 'type' => 'enum_multi', - 'name' => 'GV_events', - 'default'=>null, - 'comment' => _('reglages:: Evenements'), - 'available'=> $eventsmanager->list_all('event'), - 'default'=> array_keys($eventsmanager->list_all('event')) - ), - array( - 'type' => 'enum_multi', - 'name' => 'GV_notifications', - 'default'=>null, - 'comment' => _('reglages:: Notifications'), - 'available'=> $eventsmanager->list_all('notify'), - 'default'=> array_keys($eventsmanager->list_all('notify')) - ) - ) - ), array( - 'section' => _('GV::section:: Stockage des documents'), - 'vars' => array( - array( - 'type' => 'string', - 'name' => 'GV_appletAllowedFileExt', - 'comment' => _('reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers'), - 'default' => 'jpg,jpeg,bmp,tif,gif,png,pdf,doc,odt,mpg,mpeg,mov,avi,xls,flv,mp3,mp2', - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_base_datapath_web', - 'end_slash' => true, - 'comment' => _('reglages:: dossier de stockage des vignettes publiees en acces direct'), - 'default'=>'', - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_base_datapath_noweb', - 'end_slash' => true, - 'comment' => _('reglages:: dossier de stockage des fichiers proteges de l\'acces direct'), - 'default'=>'', - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_base_dataurl', - 'comment' => _('reglages:: point de montage des vignettes publiees en acces direct'), - 'default' => 'web', - 'end_slash' => false, - 'required' => true - ) - ) + array( + 'section' => _('GV::section:: Serveur HTTP'), + 'vars' => array( + array( + 'type' => 'timezone', + 'name' => 'GV_timezone', + 'comment' => _('reglages:: Timezone de l\'installation'), + 'default' => 'Europe/Paris', + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_sit', + 'comment' => _('reglages:: Nom de linstallation'), + 'default' => $GV_sit, + 'readonly' => true, + 'required' => true + ), + array( + 'type' => 'enum', + 'name' => 'GV_default_lng', + 'comment' => _('reglages:: Langue par defaut'), + 'default' => 'fr_FR', + 'available' => $avLanguages, + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_STATIC_URL', + 'end_slash' => false, + 'comment' => _('reglages:: URL statique (optionnel)'), + 'default' => '', + 'required' => false + ) ) -// , array( -// 'section' => _('GV::section:: Serveurs de cache'), -// 'vars' => array( -// array( -// 'type' => 'boolean', -// 'name' => 'GV_use_cache', -// 'comment' => _('reglages:: Utiliser un serveur de cache'), -// 'default' => false, -// 'required' => true -// ), -// array( -// 'type' => 'enum', -// 'name' => 'GV_cache_server_type', -// 'comment' => _('reglages:: Utiliser un serveur de cache'), -// 'default' => '', -// 'available' => array(''=>_('Aucun'),'redis' => 'Redis', 'memcached' => 'Memcached') -// ), -// array( -// 'type' => 'string', -// 'name' => 'GV_cache_server_host', -// 'comment' => _('setup:: Hote du Serveur de cache'), -// 'default' => '127.0.0.1', -// 'required' => false -// ), -// array( -// 'type' => 'integer', -// 'name' => 'GV_cache_server_port', -// 'comment' => _('reglages:: port du serveur de cache'), -// 'default' => 11211 -// ) -// ) -// ) - ,array( - 'section' => _('GV::section:: Serveur Sphinx'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_sphinx', - 'comment' => _('Utiliser Sphinx'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_sphinx_host', - 'comment' => _('reglages:: de l\'adresse du serveur sphinx'), - 'default' => '127.0.0.1' - ), - array( - 'type' => 'integer', - 'name' => 'GV_sphinx_port', - 'comment' => _('reglages:: port du serveur sphinx'), - 'default' => 9306 - ), - array( - 'type' => 'string', - 'name' => 'GV_sphinx_rt_host', - 'comment' => _('reglages:: de l\'adresse du serveur RT sphinx'), - 'default' => '127.0.0.1' - ), - array( - 'type' => 'integer', - 'name' => 'GV_sphinx_rt_port', - 'comment' => _('reglages:: port du serveur RT sphinx'), - 'default' => 9308 - ) - ) - ), array( - 'section' => _('GV::section:: Executables externes'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_modxsendfile', - 'comment' => _('reglages:: mod_xsendfileapache active'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_X_Accel_Redirect', - 'comment' => _('reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)'), - 'default' => '', - 'end_slash' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_X_Accel_Redirect_mount_point', - 'comment' => _('reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)'), - 'default' => 'noweb', - 'end_slash' => false - ), - array( - 'type' => 'boolean', - 'name' => 'GV_h264_streaming', - 'comment' => _('reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_mod_auth_token_directory', - 'end_slash' => true, - 'comment' => _('reglages:: point de montage du dossier protege via auth_token'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_mod_auth_token_directory_path', - 'end_slash' => false, - 'comment' => _('reglages:: path complet du dossier protege via auth_token'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_mod_auth_token_passphrase', - 'comment' => _('reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_cli', - 'comment' => _('reglages:: executable PHP CLI'), - 'default'=>'', - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_PHP_INI', - 'comment' => _('reglages:: path du php.ini specifique (vide si non utilise)'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_imagick', - 'default'=>'', - 'comment' => _('reglages:: chemin de l\'executable convert'), - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_pathcomposite', - 'default'=>'', - 'comment' => _('reglages:: chemin de l\'executable composite'), - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_exiftool', - 'default'=>'', - 'comment' => _('reglages:: chemin de l\'executable exiftools'), - 'required' => true - ), - array( - 'type' => 'string', - 'name' => 'GV_swf_extract', - 'comment' => _('reglages:: chemin de l\'executable swfextract'), - 'default' => '', - 'required' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_pdf2swf', - 'comment' => _('reglages:: chemin de l\'executable pdf2swf'), - 'default' => '', - 'required' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_swf_render', - 'comment' => _('reglages:: chemin de l\'executable swfrender'), - 'default' => '', - 'required' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_unoconv', - 'comment' => _('reglages:: chemin de l\'executable unoconv'), - 'default' => '', - 'required' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_ffmpeg', - 'comment' => _('reglages:: chemin de l\'executable FFmpeg'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_mp4box', - 'comment' => _('reglages:: chemin de l\'executable MP4Box'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_mplayer', - 'comment' => _('reglages:: chemin de l\'executable Mplayer'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_pdftotext', - 'comment' => _('reglages:: chemin de l\'executable pdftotext (xpdf)'), - 'default' => '' - ), - array( - 'type' => 'integer', - 'name' => 'GV_pdfmaxpages', - 'comment' => _('reglages:: nombre maximum de page a extraire (PDF)'), - 'default' => 5 - ) - ) - ), array( - 'section' => _('GV::section:: Repertoires utilitaires'), - 'vars' => array( - array( - 'type' => 'string', - 'name' => 'GV_filesOwner', - 'comment' => _('reglages:: proprietaire des fichiers'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_filesGroup', - 'comment' => _('reglages:: groupes des fichiers'), - 'default' => '' - ) - ) - ), array( - 'section' => _('GV::section:: Configuration principale'), - 'vars' => array( + ), array( + 'section' => _('GV::section:: Etat de maintenance'), + 'rolled' => true, + 'vars' => array( + array( + 'type' => 'text', + 'name' => 'GV_message', + 'comment' => _('reglages:: Message a diffuser aux utilisateurs'), + 'default' => "May the force be with you" + ), + array( + 'type' => 'boolean', + 'name' => 'GV_message_on', + 'comment' => _('reglages:: activation du message a diffuser aux utilistaeurs'), + 'default' => false + ), + array( + 'type' => 'boolean', + 'name' => 'GV_log_errors', + 'comment' => _('reglages:: logguer les erreurs'), + 'default' => false + ) + ) + ), array( + 'section' => _('GV::section:: Connectivite aux webservices'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_google_api', + 'comment' => _('reglages:: Utiliser els google apis'), + 'default' => true, + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_i18n_service', + 'comment' => _('reglages:: Service phrasea de localisation'), + 'default' => 'http://localization.webservice.alchemyasp.com/', + 'end_slash' => true, + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_bitly_user', + 'comment' => _('reglages:: Nom d\'utilisateur pour l\'api bit.ly'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_bitly_key', + 'comment' => _('reglages:: ccle d\'api pour l\'api bit.ly'), + 'default' => '', + ), + array( + 'type' => 'boolean', + 'name' => 'GV_captchas', + 'comment' => _('reglages:: Utilisation de l\'api recpatcha'), + 'default' => false, + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_captcha_public_key', + 'comment' => _('reglages:: clef publique recaptcha'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_captcha_private_key', + 'comment' => _('reglages:: clef privee recaptcha'), + 'default' => '' + ) + ) + ), array( + 'section' => _('GV::section:: Connectivite a Youtube'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_youtube_api', + 'comment' => sprintf(_('reglages:: Utiliser l\'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube'), $youtube_console_url), + 'default' => false, + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_youtube_client_id', + 'comment' => _('reglages:: Youtube client id'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_youtube_client_secret', + 'comment' => _('reglages:: Youtube clientsecret'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_youtube_dev_key', + 'comment' => sprintf(_('reglages:: Youtube cle developpeur, voir %s'), $dashboard_youtube), + 'default' => '' + ) + ) + ), array( + 'section' => _('GV::section:: Connectivite a FlickR'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_flickr_api', + 'comment' => sprintf(_('reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s'), $create_api_flickr, $flickr_callback), + 'default' => false, + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_flickr_client_id', + 'comment' => _('reglages:: FlickR client id'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_flickr_client_secret', + 'comment' => _('reglages:: FlickR client secret'), + 'default' => '' + ) + ) + ), array( + 'section' => _('GV::section:: Connectivite a Dailymotion'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_dailymotion_api', + 'comment' => sprintf(_('reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s'), $create_api_dailymotion, $dailymotion_callback), + 'default' => false, + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_dailymotion_client_id', + 'comment' => _('reglages:: dailymotion client id'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_dailymotion_client_secret', + 'comment' => _('reglages:: dailymotion client secret'), + 'default' => '' + ) + ) + ), array( + 'section' => _('GV::section:: Gestionnaire d\'evenements'), + 'vars' => array( + array( + 'type' => 'enum_multi', + 'name' => 'GV_events', + 'default' => null, + 'comment' => _('reglages:: Evenements'), + 'available' => $eventsmanager->list_all('event'), + 'default' => array_keys($eventsmanager->list_all('event')) + ), + array( + 'type' => 'enum_multi', + 'name' => 'GV_notifications', + 'default' => null, + 'comment' => _('reglages:: Notifications'), + 'available' => $eventsmanager->list_all('notify'), + 'default' => array_keys($eventsmanager->list_all('notify')) + ) + ) + ), array( + 'section' => _('GV::section:: Stockage des documents'), + 'vars' => array( + array( + 'type' => 'string', + 'name' => 'GV_appletAllowedFileExt', + 'comment' => _('reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers'), + 'default' => 'jpg,jpeg,bmp,tif,gif,png,pdf,doc,odt,mpg,mpeg,mov,avi,xls,flv,mp3,mp2', + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_base_datapath_web', + 'end_slash' => true, + 'comment' => _('reglages:: dossier de stockage des vignettes publiees en acces direct'), + 'default' => '', + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_base_datapath_noweb', + 'end_slash' => true, + 'comment' => _('reglages:: dossier de stockage des fichiers proteges de l\'acces direct'), + 'default' => '', + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_base_dataurl', + 'comment' => _('reglages:: point de montage des vignettes publiees en acces direct'), + 'default' => 'web', + 'end_slash' => false, + 'required' => true + ) + ) + ) + , array( + 'section' => _('GV::section:: Serveur Sphinx'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_sphinx', + 'comment' => _('Utiliser Sphinx'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_sphinx_host', + 'comment' => _('reglages:: de l\'adresse du serveur sphinx'), + 'default' => '127.0.0.1' + ), + array( + 'type' => 'integer', + 'name' => 'GV_sphinx_port', + 'comment' => _('reglages:: port du serveur sphinx'), + 'default' => 9306 + ), + array( + 'type' => 'string', + 'name' => 'GV_sphinx_rt_host', + 'comment' => _('reglages:: de l\'adresse du serveur RT sphinx'), + 'default' => '127.0.0.1' + ), + array( + 'type' => 'integer', + 'name' => 'GV_sphinx_rt_port', + 'comment' => _('reglages:: port du serveur RT sphinx'), + 'default' => 9308 + ) + ) + ) + , array( + 'section' => _('Phrasea Engine'), + 'vars' => array( + array( + 'type' => 'enum', + 'name' => 'GV_phrasea_sort', + 'comment' => _('Default results sort'), + 'default' => '', + 'available' => $date_sort_fields + ) + ) + ), array( + 'section' => _('GV::section:: Executables externes'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_modxsendfile', + 'comment' => _('reglages:: mod_xsendfileapache active'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_X_Accel_Redirect', + 'comment' => _('reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)'), + 'default' => '', + 'end_slash' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_X_Accel_Redirect_mount_point', + 'comment' => _('reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)'), + 'default' => 'noweb', + 'end_slash' => false + ), + array( + 'type' => 'boolean', + 'name' => 'GV_h264_streaming', + 'comment' => _('reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_mod_auth_token_directory', + 'end_slash' => true, + 'comment' => _('reglages:: point de montage du dossier protege via auth_token'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_mod_auth_token_directory_path', + 'end_slash' => false, + 'comment' => _('reglages:: path complet du dossier protege via auth_token'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_mod_auth_token_passphrase', + 'comment' => _('reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_cli', + 'comment' => _('reglages:: executable PHP CLI'), + 'default' => '', + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_PHP_INI', + 'comment' => _('reglages:: path du php.ini specifique (vide si non utilise)'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_imagick', + 'default' => '', + 'comment' => _('reglages:: chemin de l\'executable convert'), + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_pathcomposite', + 'default' => '', + 'comment' => _('reglages:: chemin de l\'executable composite'), + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_exiftool', + 'default' => '', + 'comment' => _('reglages:: chemin de l\'executable exiftools'), + 'required' => true + ), + array( + 'type' => 'string', + 'name' => 'GV_swf_extract', + 'comment' => _('reglages:: chemin de l\'executable swfextract'), + 'default' => '', + 'required' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_pdf2swf', + 'comment' => _('reglages:: chemin de l\'executable pdf2swf'), + 'default' => '', + 'required' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_swf_render', + 'comment' => _('reglages:: chemin de l\'executable swfrender'), + 'default' => '', + 'required' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_unoconv', + 'comment' => _('reglages:: chemin de l\'executable unoconv'), + 'default' => '', + 'required' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_ffmpeg', + 'comment' => _('reglages:: chemin de l\'executable FFmpeg'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_mp4box', + 'comment' => _('reglages:: chemin de l\'executable MP4Box'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_mplayer', + 'comment' => _('reglages:: chemin de l\'executable Mplayer'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_pdftotext', + 'comment' => _('reglages:: chemin de l\'executable pdftotext (xpdf)'), + 'default' => '' + ), + array( + 'type' => 'integer', + 'name' => 'GV_pdfmaxpages', + 'comment' => _('reglages:: nombre maximum de page a extraire (PDF)'), + 'default' => 5 + ) + ) + ), array( + 'section' => _('GV::section:: Repertoires utilitaires'), + 'vars' => array( + array( + 'type' => 'string', + 'name' => 'GV_filesOwner', + 'comment' => _('reglages:: proprietaire des fichiers'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_filesGroup', + 'comment' => _('reglages:: groupes des fichiers'), + 'default' => '' + ) + ) + ), array( + 'section' => _('GV::section:: Configuration principale'), + 'vars' => array( // array( // 'type' => 'boolean', // 'name' => 'GV_logobeforebas', @@ -530,33 +532,33 @@ $GV = array( // 'default' => false, // 'required' => true // ), - array( - 'type' => 'string', - 'name' => 'GV_adminMail', - 'comment' => _('reglages:: email de l\'administrateur'), - 'default' => 'support@alchemy.fr' - ), - array( - 'type' => 'boolean', - 'name' => 'GV_view_bas_and_coll', - 'comment' => _('reglages:: Afficher le nom des bases et des collections'), - 'default' => true, - 'required' => true - ), - array( - 'type' => 'boolean', - 'name' => 'GV_choose_export_title', - 'comment' => _('reglages:: activer le choix du nom de fichier a l\'export'), - 'default' => false, - 'required' => true - ), - array( - 'type' => 'enum', - 'name' => 'GV_default_export_title', - 'comment' => _('reglages:: choix par defaut des noms de fichier a l\'export'), - 'default' => 'support@alchemy.fr', - 'available' => array('title' => 'Titre du document', 'original' => 'Nom original') - ), + array( + 'type' => 'string', + 'name' => 'GV_adminMail', + 'comment' => _('reglages:: email de l\'administrateur'), + 'default' => 'support@alchemy.fr' + ), + array( + 'type' => 'boolean', + 'name' => 'GV_view_bas_and_coll', + 'comment' => _('reglages:: Afficher le nom des bases et des collections'), + 'default' => true, + 'required' => true + ), + array( + 'type' => 'boolean', + 'name' => 'GV_choose_export_title', + 'comment' => _('reglages:: activer le choix du nom de fichier a l\'export'), + 'default' => false, + 'required' => true + ), + array( + 'type' => 'enum', + 'name' => 'GV_default_export_title', + 'comment' => _('reglages:: choix par defaut des noms de fichier a l\'export'), + 'default' => 'support@alchemy.fr', + 'available' => array('title' => 'Titre du document', 'original' => 'Nom original') + ), // array( // 'type' => 'boolean', // 'name' => 'GV_ArchiveSorted', @@ -564,19 +566,19 @@ $GV = array( // 'default' => true, // 'required' => true // ), - array( - 'type' => 'enum', - 'name' => 'GV_social_tools', - 'comment' => _('reglages:: Active les partages Facebook et Twitter'), - 'available' => array('none' => 'Disabled', 'publishers' => 'Publishers', 'all' => 'Activated'), - 'default' => 'none', - 'required' => false - ) - ) - ), array( - 'section' => _('GV::section:: Page d\'accueil'), - 'rolled' => true, - 'vars' => array( + array( + 'type' => 'enum', + 'name' => 'GV_social_tools', + 'comment' => _('reglages:: Active les partages Facebook et Twitter'), + 'available' => array('none' => 'Disabled', 'publishers' => 'Publishers', 'all' => 'Activated'), + 'default' => 'none', + 'required' => false + ) + ) + ), array( + 'section' => _('GV::section:: Page d\'accueil'), + 'rolled' => true, + 'vars' => array( // array( // 'type' => 'boolean', // 'name' => 'GV_find_password', @@ -584,78 +586,78 @@ $GV = array( // 'default' => true, // 'required' => true // ), - array( - 'type' => 'enum', - 'name' => 'GV_home_publi', - 'comment' => _('reglages:: presentation sur la home'), - 'default' => 'COOLIRIS', - 'available' => array('DISPLAYx1' => 'slideshow', 'SCROLL' => 'Bandeau defilant', 'COOLIRIS' => 'Cooliris'), - 'required' => true - ) - ) - ), array( - 'section' => _('GV::section:: Moteur de recherche'), - 'rolled' => true, - 'vars' => array( - array( - 'type' => 'integer', - 'name' => 'GV_min_letters_truncation', - 'comment' => _('reglages:: Nombre minimal de lettre avec la troncature (Recherche)'), - 'default' => 1 - ), - array( - 'type' => 'string', - 'name' => 'GV_defaultQuery', - 'comment' => _('reglages:: Question par defaut'), - 'default' => 'all' - ), - array( - 'type' => 'enum', - 'name' => 'GV_defaultQuery_type', - 'comment' => _('reglages:: type de document cherches par defaut e l\'ouverture du site'), - 'available' => array('0' => 'Documents', '1' => 'Regroupements'), - 'default' => '0' - ) - ) - ), array( - 'section' => _('GV::section:: Report'), - 'rolled' => true, - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_anonymousReport', - 'comment' => _('reglages:: report anonyme (masque les infos concernant les utilisateurs)'), - 'default' => false, - 'required' => true - ) - ) - ), array( - 'section' => _('GV::section:: Modules supplementaires'), - 'rolled' => true, - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_thesaurus', - 'comment' => _('reglages:: Activation de l\'outil thesaurus'), - 'default' => true - ), array( - 'type' => 'boolean', - 'name' => 'GV_multiAndReport', - 'comment' => _('reglages:: Activation du Mode MultiDOC'), - 'default' => true - ), array( - 'type' => 'boolean', - 'name' => 'GV_seeOngChgDoc', - 'comment' => _('reglages:: Substitution de HD d\'un record '), - 'default' => false - ), array( - 'type' => 'boolean', - 'name' => 'GV_seeNewThumb', - 'comment' => _('reglages:: Substitution de thumbnail d\'un record'), - 'default' => false - ) - ) + array( + 'type' => 'enum', + 'name' => 'GV_home_publi', + 'comment' => _('reglages:: presentation sur la home'), + 'default' => 'COOLIRIS', + 'available' => array('DISPLAYx1' => 'slideshow', 'SCROLL' => 'Bandeau defilant', 'COOLIRIS' => 'Cooliris'), + 'required' => true + ) ) + ), array( + 'section' => _('GV::section:: Moteur de recherche'), + 'rolled' => true, + 'vars' => array( + array( + 'type' => 'integer', + 'name' => 'GV_min_letters_truncation', + 'comment' => _('reglages:: Nombre minimal de lettre avec la troncature (Recherche)'), + 'default' => 1 + ), + array( + 'type' => 'string', + 'name' => 'GV_defaultQuery', + 'comment' => _('reglages:: Question par defaut'), + 'default' => 'all' + ), + array( + 'type' => 'enum', + 'name' => 'GV_defaultQuery_type', + 'comment' => _('reglages:: type de document cherches par defaut e l\'ouverture du site'), + 'available' => array('0' => 'Documents', '1' => 'Regroupements'), + 'default' => '0' + ) + ) + ), array( + 'section' => _('GV::section:: Report'), + 'rolled' => true, + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_anonymousReport', + 'comment' => _('reglages:: report anonyme (masque les infos concernant les utilisateurs)'), + 'default' => false, + 'required' => true + ) + ) + ), array( + 'section' => _('GV::section:: Modules supplementaires'), + 'rolled' => true, + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_thesaurus', + 'comment' => _('reglages:: Activation de l\'outil thesaurus'), + 'default' => true + ), array( + 'type' => 'boolean', + 'name' => 'GV_multiAndReport', + 'comment' => _('reglages:: Activation du Mode MultiDOC'), + 'default' => true + ), array( + 'type' => 'boolean', + 'name' => 'GV_seeOngChgDoc', + 'comment' => _('reglages:: Substitution de HD d\'un record '), + 'default' => false + ), array( + 'type' => 'boolean', + 'name' => 'GV_seeNewThumb', + 'comment' => _('reglages:: Substitution de thumbnail d\'un record'), + 'default' => false + ) + ) + ) // , array( // 'section' => _('GV::section:: Authentification LDAP'), // 'rolled' => true, @@ -734,243 +736,242 @@ $GV = array( // ) // ) // ) - , array( - 'section' => _('GV::section:: Envois de mails'), - 'vars' => array( + , array( + 'section' => _('GV::section:: Envois de mails'), + 'vars' => array( // array( // 'type' => 'boolean', // 'name' => 'GV_exportmail', // 'comment' => _('reglages:: Activation de l\'export par mail'), // 'default' => true // ), - array( - 'type' => 'string', - 'name' => 'GV_defaulmailsenderaddr', - 'comment' => _('reglages:: Expediteur mail par defaut'), - 'default' => 'phraseanet@example.com' - ), - array( - 'type' => 'boolean', - 'name' => 'GV_smtp', - 'comment' => _('reglages:: Utilisation d\'un serveur SMTP'), - 'default' => false - ), - array( - 'type' => 'boolean', - 'name' => 'GV_smtp_auth', - 'comment' => _('reglages:: Activation de l\'authentification smtp'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_smtp_host', - 'comment' => _('reglages:: Hote SMTP'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_smtp_port', - 'comment' => _('reglages:: Port SMTP'), - 'default' => '' - ), - array( - 'type' => 'boolean', - 'name' => 'GV_smtp_secure', - 'comment' => _('reglages:: Utiliser une conenction SSL'), - 'default' => false - ), - array( - 'type' => 'string', - 'name' => 'GV_smtp_user', - 'comment' => _('reglages:: User SMTP'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_smtp_password', - 'comment' => _('reglages:: Mot de passe SMTP'), - 'default' => '' - ) - ) - ), array( - 'section' => _('GV::section:: Exports FTP'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_activeFTP', - 'comment' => _('reglages:: active la possibilite d\'exports FTP ou non (onglet dans multiexports)'), - 'default' => false - ), - array( - 'type' => 'boolean', - 'name' => 'GV_ftp_for_user', - 'comment' => _('reglages:: Donne ou non export FTP aux utilisateurs ou e l\'admin uniquement'), - 'default' => false - ) - ) - ), array( - 'section' => _('GV::section:: Configuration du client'), - 'vars' => array( -// array( -// 'type' => 'enum', -// 'name' => 'GV_bandeauHome', -// 'comment' => _('reglages:: Affichage par defaut de la home du client'), -// 'available' => array('QUERY' => _('Question'), 'PUBLI' => _('Publications'), 'HELP' => _('Aide')), -// 'default' => 'QUERY' -// ), - array( - 'type' => 'integer', - 'name' => 'GV_ong_search', - 'comment' => _('reglages:: position de l\'onglet de recherche'), - 'default' => 1 - ), - array( - 'type' => 'integer', - 'name' => 'GV_ong_advsearch', - 'comment' => _('reglages:: position de l\'onglet de recherche avancee'), - 'default' => 2 - ), - array( - 'type' => 'integer', - 'name' => 'GV_ong_topics', - 'comment' => _('reglages:: position de l\'onglet des topics'), - 'default' => 0 - ), - array( - 'type' => 'integer', - 'name' => 'GV_ong_actif', - 'comment' => _('reglages:: numero de l\'onglet actif'), - 'default' => 1 - ), - array( - 'type' => 'enum', - 'name' => 'GV_client_render_topics', - 'comment' => _('reglages:: rendu des topics'), - 'available' => array('tree' => 'Arbres', 'popups' => 'Menus deroulants'), - 'default' => 'tree' - ), + array( + 'type' => 'string', + 'name' => 'GV_defaulmailsenderaddr', + 'comment' => _('reglages:: Expediteur mail par defaut'), + 'default' => 'phraseanet@example.com' + ), + array( + 'type' => 'boolean', + 'name' => 'GV_smtp', + 'comment' => _('reglages:: Utilisation d\'un serveur SMTP'), + 'default' => false + ), + array( + 'type' => 'boolean', + 'name' => 'GV_smtp_auth', + 'comment' => _('reglages:: Activation de l\'authentification smtp'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_smtp_host', + 'comment' => _('reglages:: Hote SMTP'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_smtp_port', + 'comment' => _('reglages:: Port SMTP'), + 'default' => '' + ), + array( + 'type' => 'boolean', + 'name' => 'GV_smtp_secure', + 'comment' => _('reglages:: Utiliser une conenction SSL'), + 'default' => false + ), + array( + 'type' => 'string', + 'name' => 'GV_smtp_user', + 'comment' => _('reglages:: User SMTP'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_smtp_password', + 'comment' => _('reglages:: Mot de passe SMTP'), + 'default' => '' + ) + ) + ), array( + 'section' => _('GV::section:: Exports FTP'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_activeFTP', + 'comment' => _('reglages:: active la possibilite d\'exports FTP ou non (onglet dans multiexports)'), + 'default' => false + ), + array( + 'type' => 'boolean', + 'name' => 'GV_ftp_for_user', + 'comment' => _('reglages:: Donne ou non export FTP aux utilisateurs ou e l\'admin uniquement'), + 'default' => false + ) + ) + ), array( + 'section' => _('GV::section:: Configuration du client'), + 'vars' => array( + array( + 'type' => 'integer', + 'name' => 'GV_download_max', + 'comment' => _('Maximum megabytes allowed in download (if request is bigger, then mail is still available)'), + 'default' => 120 + ), + array( + 'type' => 'integer', + 'name' => 'GV_ong_search', + 'comment' => _('reglages:: position de l\'onglet de recherche'), + 'default' => 1 + ), + array( + 'type' => 'integer', + 'name' => 'GV_ong_advsearch', + 'comment' => _('reglages:: position de l\'onglet de recherche avancee'), + 'default' => 2 + ), + array( + 'type' => 'integer', + 'name' => 'GV_ong_topics', + 'comment' => _('reglages:: position de l\'onglet des topics'), + 'default' => 0 + ), + array( + 'type' => 'integer', + 'name' => 'GV_ong_actif', + 'comment' => _('reglages:: numero de l\'onglet actif'), + 'default' => 1 + ), + array( + 'type' => 'enum', + 'name' => 'GV_client_render_topics', + 'comment' => _('reglages:: rendu des topics'), + 'available' => array('tree' => 'Arbres', 'popups' => 'Menus deroulants'), + 'default' => 'tree' + ), // array( // 'type' => 'boolean', // 'name' => 'GV_grp_preview_list', // 'comment' => _('reglages:: Voir les elements d\'un reportage sans Thumbnail (fenetre de preview)'), // 'default' => false // ), - array( - 'type' => 'boolean', - 'name' => 'GV_rollover_reg_preview', - 'comment' => _('reglages:: Voir le rollover sur les regroupements (fenetre de preview)'), - 'default' => true - ), - array( - 'type' => 'boolean', - 'name' => 'GV_rollover_chu', - 'comment' => _('reglages:: Voir le rollover sur les elements du chutier'), - 'default' => true - ), - array( - 'type' => 'enum', - 'name' => 'GV_client_coll_ckbox', - 'comment' => _('reglages:: Presentation des collections'), - 'default' => 'checkbox', - 'available' => array('popup' => 'Menu deroulant', 'checkbox' => 'case a cocher') - ), - array( - 'type' => 'boolean', - 'name' => 'GV_viewSizeBaket', - 'comment' => _('reglages:: Voir taille HD total des doc d\'un chutiers'), - 'default' => true - ), - array( - 'type' => 'boolean', - 'name' => 'GV_clientAutoShowProposals', - 'comment' => _('reglages:: Afficher automatiquement l\'onglet des propositions s\'il y\'en a'), - 'default' => true - ), - array( - 'type' => 'boolean', - 'name' => 'GV_needAuth2DL', - 'comment' => _('reglages:: Il est necessaire d\'etre connecte pour pouvoir telecharger en compte invite'), - 'default' => true - ) - ) - ), array( - 'section' => _('GV::section:: Parametrage de l\'inscription'), - 'vars' => array( - array( - 'type' => 'boolean', - 'name' => 'GV_autoselectDB', - 'comment' => _('reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s\'inscrit, et l\'inscription se fait sur toutes les bases ou jai le droit de m\'inscrire'), - 'default' => true - ), - array( - 'type' => 'boolean', - 'name' => 'GV_autoregister', - 'comment' => _('reglages:: Activation de l\'autoinscription'), - 'default' => false - ) - ) - ), array( - 'section' => _('GV::section:: Configuration du push'), - 'vars' => array( - array( - 'type' => 'integer', - 'name' => 'GV_validation_reminder', - 'comment' => _('reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel'), - 'default' => 2 - ), + array( + 'type' => 'boolean', + 'name' => 'GV_rollover_reg_preview', + 'comment' => _('reglages:: Voir le rollover sur les regroupements (fenetre de preview)'), + 'default' => true + ), + array( + 'type' => 'boolean', + 'name' => 'GV_rollover_chu', + 'comment' => _('reglages:: Voir le rollover sur les elements du chutier'), + 'default' => true + ), + array( + 'type' => 'enum', + 'name' => 'GV_client_coll_ckbox', + 'comment' => _('reglages:: Presentation des collections'), + 'default' => 'checkbox', + 'available' => array('popup' => 'Menu deroulant', 'checkbox' => 'case a cocher') + ), + array( + 'type' => 'boolean', + 'name' => 'GV_viewSizeBaket', + 'comment' => _('reglages:: Voir taille HD total des doc d\'un chutiers'), + 'default' => true + ), + array( + 'type' => 'boolean', + 'name' => 'GV_clientAutoShowProposals', + 'comment' => _('reglages:: Afficher automatiquement l\'onglet des propositions s\'il y\'en a'), + 'default' => true + ), + array( + 'type' => 'boolean', + 'name' => 'GV_needAuth2DL', + 'comment' => _('reglages:: Il est necessaire d\'etre connecte pour pouvoir telecharger en compte invite'), + 'default' => true + ) + ) + ), array( + 'section' => _('GV::section:: Parametrage de l\'inscription'), + 'vars' => array( + array( + 'type' => 'boolean', + 'name' => 'GV_autoselectDB', + 'comment' => _('reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s\'inscrit, et l\'inscription se fait sur toutes les bases ou jai le droit de m\'inscrire'), + 'default' => true + ), + array( + 'type' => 'boolean', + 'name' => 'GV_autoregister', + 'comment' => _('reglages:: Activation de l\'autoinscription'), + 'default' => false + ) + ) + ), array( + 'section' => _('GV::section:: Configuration du push'), + 'vars' => array( + array( + 'type' => 'integer', + 'name' => 'GV_validation_reminder', + 'comment' => _('reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel'), + 'default' => 2 + ), // array( // 'type' => 'boolean', // 'name' => 'GV_DL_checkit', // 'comment' => _('reglages:: Autorise le telechargement des fichiers pendant le process de validation'), // 'default' => true // ), - array( - 'type' => 'integer', - 'name' => 'GV_val_expiration', - 'comment' => _('reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente'), - 'default' => 10 - ) - ) - ), array( - 'section' => _('GV::section:: Indexation par les robots'), - 'vars' => array( - array( - 'type' => 'string', - 'name' => 'GV_homeTitle', - 'comment' => _('reglages :: Titre de l\'installation'), - 'default' => 'Phraseanet' - ), - array( - 'type' => 'string', - 'name' => 'GV_metaKeywords', - 'comment' => _('reglages:: Mots clefs pour l\'indexation des robots de moteurs de recherche'), - 'default' => '' - ), - array( - 'type' => 'text', - 'name' => 'GV_metaDescription', - 'comment' => _('reglages :: Description de l\'installation'), - 'default' => '' - ), - array( - 'type' => 'string', - 'name' => 'GV_googleAnalytics', - 'comment' => _('reglages:: identifiant google analytics'), - 'default' => '' - ), - array( - 'type' => 'boolean', - 'name' => 'GV_allow_search_engine', - 'comment' => _('Allow the website to be indexed by search engines like Google'), - 'default' => true - ), - array( - 'type' => 'boolean', - 'name' => 'GV_display_gcf', - 'comment' => _('reglages:: Afficher le bandeau Google Chrome Frame'), - 'default' => true - ) - ) + array( + 'type' => 'integer', + 'name' => 'GV_val_expiration', + 'comment' => _('reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente'), + 'default' => 10 + ) ) - ) + ), array( + 'section' => _('GV::section:: Indexation par les robots'), + 'vars' => array( + array( + 'type' => 'string', + 'name' => 'GV_homeTitle', + 'comment' => _('reglages :: Titre de l\'installation'), + 'default' => 'Phraseanet' + ), + array( + 'type' => 'string', + 'name' => 'GV_metaKeywords', + 'comment' => _('reglages:: Mots clefs pour l\'indexation des robots de moteurs de recherche'), + 'default' => '' + ), + array( + 'type' => 'text', + 'name' => 'GV_metaDescription', + 'comment' => _('reglages :: Description de l\'installation'), + 'default' => '' + ), + array( + 'type' => 'string', + 'name' => 'GV_googleAnalytics', + 'comment' => _('reglages:: identifiant google analytics'), + 'default' => '' + ), + array( + 'type' => 'boolean', + 'name' => 'GV_allow_search_engine', + 'comment' => _('Allow the website to be indexed by search engines like Google'), + 'default' => true + ), + array( + 'type' => 'boolean', + 'name' => 'GV_display_gcf', + 'comment' => _('reglages:: Afficher le bandeau Google Chrome Frame'), + 'default' => true + ) + ) + ) + ) ?> diff --git a/lib/conf.d/bases_structure.xml b/lib/conf.d/bases_structure.xml index e3ec3251d1..e9876c89b8 100644 --- a/lib/conf.d/bases_structure.xml +++ b/lib/conf.d/bases_structure.xml @@ -3816,7 +3816,7 @@ type - enum('view','validate','password','rss','email','download') + enum('FEED_ENTRY', 'view','validate','password','rss','email','download') ascii_bin @@ -5160,30 +5160,6 @@ - - regdate - tinyint(1) unsigned - YES - - - - - - regname - tinyint(1) unsigned - YES - - - - - - regdesc - tinyint(1) unsigned - YES - - - - report tinyint(1) unsigned @@ -5261,27 +5237,6 @@ required - - regname - UNIQUE - - regname - - - - regdate - UNIQUE - - regdate - - - - regdesc - UNIQUE - - regdesc - - sorter UNIQUE @@ -5826,7 +5781,7 @@ results int(11) unsigned - + YES 0 diff --git a/lib/conf.d/data_templates/en-simple.xml b/lib/conf.d/data_templates/en-simple.xml index b483b3fdc4..1602fc3170 100644 --- a/lib/conf.d/data_templates/en-simple.xml +++ b/lib/conf.d/data_templates/en-simple.xml @@ -149,7 +149,7 @@ - + @@ -170,7 +170,7 @@ - + @@ -179,7 +179,7 @@ - + diff --git a/lib/conf.d/data_templates/fr-simple.xml b/lib/conf.d/data_templates/fr-simple.xml index e2fa5ff18c..f8c5a5ab2a 100755 --- a/lib/conf.d/data_templates/fr-simple.xml +++ b/lib/conf.d/data_templates/fr-simple.xml @@ -149,7 +149,7 @@ - + @@ -170,7 +170,7 @@ - + @@ -179,7 +179,7 @@ - + diff --git a/lib/phpunit.xml.dist b/lib/phpunit.xml.dist index 0daccfcdda..5a5c136840 100644 --- a/lib/phpunit.xml.dist +++ b/lib/phpunit.xml.dist @@ -32,6 +32,13 @@ + + + ./vendor + ./unitTest + + + diff --git a/lib/unitTest/Alchemy/Phrasea/Application/ApiJsonTest.php b/lib/unitTest/Alchemy/Phrasea/Application/ApiJsonTest.php index 4c1d7e64bc..20852f7dce 100644 --- a/lib/unitTest/Alchemy/Phrasea/Application/ApiJsonTest.php +++ b/lib/unitTest/Alchemy/Phrasea/Application/ApiJsonTest.php @@ -363,6 +363,39 @@ class ApiJsonApplication extends PhraseanetWebTestCaseAbstract } } + public function testRecordsCaptionRoute() + { + foreach (static::$databoxe_ids as $databox_id) + { + $databox = databox::get_instance($databox_id); + + $collection = array_shift($databox->get_collections()); + $system_file = new system_file(__DIR__ . '/../../../testfiles/cestlafete.jpg'); + + $record = record_adapter::create($collection, $system_file); + + $record_id = $record->get_record_id(); + + $route = '/records/' . $databox_id . '/' . $record_id . '/caption/?oauth_token=' . self::$token; + $this->evaluateMethodNotAllowedRoute($route, array('POST', 'PUT', 'DELETE')); + + $crawler = $this->client->request('GET', $route); + $content = json_decode($this->client->getResponse()->getContent()); + + $this->evaluateResponse200($this->client->getResponse()); + $this->evaluateMetaJson200($content); + + $this->evaluateRecordsCaptionResponse($content); + $record->delete(); + } + $route = '/records/24892534/51654651553/metadatas/?oauth_token=' . self::$token; + $this->evaluateNotFoundRoute($route, array('GET')); + $this->evaluateMethodNotAllowedRoute($route, array('POST', 'PUT', 'DELETE')); + $route = '/records/any_bad_id/sfsd5qfsd5/metadatas/?oauth_token=' . self::$token; + $this->evaluateBadRequestRoute($route, array('GET')); + $this->evaluateMethodNotAllowedRoute($route, array('POST', 'PUT', 'DELETE')); + } + public function testRecordsMetadatasRoute() { foreach (static::$databoxe_ids as $databox_id) @@ -1160,6 +1193,20 @@ class ApiJsonApplication extends PhraseanetWebTestCaseAbstract } } + protected function evaluateRecordsCaptionResponse($content) + { + foreach ($content->response as $field) + { + $this->assertTrue(is_object($field), 'Un bloc field est un objet'); + $this->assertObjectHasAttribute('meta_structure_id', $meta); + $this->assertTrue(is_int($field->meta_structure_id)); + $this->assertObjectHasAttribute('name', $field); + $this->assertTrue(is_string($meta->name)); + $this->assertObjectHasAttribute('value', $field); + $this->assertTrue(is_string($meta->value)); + } + } + protected function evaluateRecordsMetadataResponse($content) { $this->assertObjectHasAttribute("metadatas", $content->response); diff --git a/lib/unitTest/Alchemy/Phrasea/Application/ApiYamlTest.php b/lib/unitTest/Alchemy/Phrasea/Application/ApiYamlTest.php index 44b72464f2..819c8cb94c 100644 --- a/lib/unitTest/Alchemy/Phrasea/Application/ApiYamlTest.php +++ b/lib/unitTest/Alchemy/Phrasea/Application/ApiYamlTest.php @@ -369,6 +369,39 @@ class ApiYamlApplication extends PhraseanetWebTestCaseAbstract } } + public function testRecordsCaptionRoute() + { + foreach (static::$databoxe_ids as $databox_id) + { + $databox = databox::get_instance($databox_id); + + $collection = array_shift($databox->get_collections()); + $system_file = new system_file(__DIR__ . '/../../../testfiles/cestlafete.jpg'); + + $record = record_adapter::create($collection, $system_file); + + $record_id = $record->get_record_id(); + + $route = '/records/' . $databox_id . '/' . $record_id . '/caption/?oauth_token=' . self::$token; + $this->evaluateMethodNotAllowedRoute($route, array('POST', 'PUT', 'DELETE')); + + $crawler = $this->client->request('GET', $route , array(), array(), array("HTTP_ACCEPT" => "application/yaml")); + $content = self::$yaml->parse($this->client->getResponse()->getContent()); + + $this->evaluateResponse200($this->client->getResponse()); + $this->evaluateMetaYaml200($content); + + $this->evaluateRecordsCaptionResponse($content); + $record->delete(); + } + $route = '/records/24892534/51654651553/metadatas/?oauth_token=' . self::$token; + $this->evaluateNotFoundRoute($route, array('GET')); + $this->evaluateMethodNotAllowedRoute($route, array('POST', 'PUT', 'DELETE')); + $route = '/records/any_bad_id/sfsd5qfsd5/metadatas/?oauth_token=' . self::$token; + $this->evaluateBadRequestRoute($route, array('GET')); + $this->evaluateMethodNotAllowedRoute($route, array('POST', 'PUT', 'DELETE')); + } + public function testRecordsMetadatasRoute() { foreach (static::$databoxe_ids as $databox_id) @@ -1197,6 +1230,20 @@ class ApiYamlApplication extends PhraseanetWebTestCaseAbstract } } + protected function evaluateRecordsCaptionResponse($content) + { + foreach ($content["response"] as $field) + { + $this->assertTrue(is_array($field), 'Un bloc field est un objet'); + $this->assertArrayHasKey('meta_structure_id', $meta); + $this->assertTrue(is_int($field["meta_structure_id"])); + $this->assertArrayHasKey('name', $field); + $this->assertTrue(is_string($meta["name"])); + $this->assertArrayHasKey('value', $field); + $this->assertTrue(is_string($meta["value"])); + } + } + protected function evaluateRecordsMetadataResponse($content) { $this->assertArrayHasKey("metadatas", $content["response"]); diff --git a/lib/unitTest/Alchemy/Phrasea/Application/LightboxTest.php b/lib/unitTest/Alchemy/Phrasea/Application/LightboxTest.php index 25a88cdb50..4fb1570ab6 100644 --- a/lib/unitTest/Alchemy/Phrasea/Application/LightboxTest.php +++ b/lib/unitTest/Alchemy/Phrasea/Application/LightboxTest.php @@ -312,7 +312,7 @@ class ApplicationLightboxTest extends PhraseanetWebTestCaseAuthenticatedAbstract $datas = json_decode($this->client->getResponse()->getContent()); $this->assertTrue(is_object($datas), 'asserting good json datas'); $this->assertTrue($datas->error); - + $validationBasket = $this->insertOneValidationBasket(); $crawler = $this->client->request('POST', '/ajax/SET_RELEASE/' . $validationBasket->getId() . '/'); diff --git a/lib/unitTest/Alchemy/Phrasea/Controller/Admin/DescriptionTest.php b/lib/unitTest/Alchemy/Phrasea/Controller/Admin/DescriptionTest.php index 0eb1821071..6fdeb3459d 100644 --- a/lib/unitTest/Alchemy/Phrasea/Controller/Admin/DescriptionTest.php +++ b/lib/unitTest/Alchemy/Phrasea/Controller/Admin/DescriptionTest.php @@ -59,9 +59,6 @@ class DescriptionTest extends \PhraseanetWebTestCaseAuthenticatedAbstract , 'readonly_' . $id => 0 , 'type_' . $id => 'string' , 'vocabulary_' . $id => 'User' - , 'regname' => $id - , 'regdate' => $id - , 'regdesc' => $id )); $this->assertTrue($this->client->getResponse()->isRedirect()); @@ -149,9 +146,6 @@ class DescriptionTest extends \PhraseanetWebTestCaseAuthenticatedAbstract , 'readonly_' . $id => 0 , 'type_' . $id => 'string' , 'vocabulary_' . $id => 'Unknow_Vocabulary' - , 'regname' => $id - , 'regdate' => $id - , 'regdesc' => $id )); $this->assertTrue($this->client->getResponse()->isRedirect()); @@ -169,9 +163,6 @@ class DescriptionTest extends \PhraseanetWebTestCaseAuthenticatedAbstract , 'readonly_' . $id => 0 , 'type_' . $id => 'string' , 'vocabulary_' . $id => 'Unknow_Vocabulary' - , 'regname' => $id - , 'regdate' => $id - , 'regdesc' => $id )); $this->assertTrue($this->client->getResponse()->isRedirect()); @@ -194,9 +185,6 @@ class DescriptionTest extends \PhraseanetWebTestCaseAuthenticatedAbstract , 'readonly_' . $id => 0 , 'type_' . $id => 'string' , 'vocabulary_' . $id => 'Unknow_Vocabulary' - , 'regname' => $id - , 'regdate' => $id - , 'regdesc' => $id )); $this->assertTrue($this->client->getResponse()->isRedirect()); @@ -220,9 +208,6 @@ class DescriptionTest extends \PhraseanetWebTestCaseAuthenticatedAbstract , 'readonly_' . $id => 0 , 'type_' . $id => 'string' , 'vocabulary_' . $id => 'Unknow_Vocabulary' - , 'regname' => $id - , 'regdate' => $id - , 'regdesc' => $id )); $this->assertTrue($this->client->getResponse()->isRedirect()); @@ -251,9 +236,6 @@ class DescriptionTest extends \PhraseanetWebTestCaseAuthenticatedAbstract , 'readonly_' . $id => 0 , 'type_' . $id => 'string' , 'vocabulary_' . $id => 'User' - , 'regname' => $id - , 'regdate' => $id - , 'regdesc' => $id )); $this->assertTrue($this->client->getResponse()->isOk()); $this->assertEquals("You are not allowed to access this zone", $this->client->getResponse()->getContent()); diff --git a/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BasketTest.php b/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BasketTest.php index fbf986dcb7..d0b5562041 100644 --- a/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BasketTest.php +++ b/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BasketTest.php @@ -461,6 +461,74 @@ class ControllerBasketTest extends PhraseanetWebTestCaseAuthenticatedAbstract $this->assertEquals(2, $basket->getElements()->count()); } + + public function testAddElementToValidationPost() + { + + $em = self::$core->getEntityManager(); + + $datas = $em->getRepository('Entities\ValidationData')->findAll(); + $countDatas = count($datas); + + $validationSession = new \Entities\ValidationSession(); + + $validationSession->setDescription('Une description au hasard'); + $validationSession->setName('Un nom de validation'); + $expires = new \DateTime(); + $expires->modify('+1 week'); + $validationSession->setExpires($expires); + $validationSession->setInitiator(self::$user); + + $basket = new \Entities\Basket(); + $basket->setName('test'); + $basket->setDescription('description'); + $basket->setOwner(self::$user); + $basket->setValidation($validationSession); + $validationSession->setBasket($basket); + + + $validationParticipant = new \Entities\ValidationParticipant(); + $validationParticipant->setSession($validationSession); + $validationParticipant->setUser(self::$user_alt1); + $validationSession->addValidationParticipant($validationParticipant); + + $em->persist($validationParticipant); + $em->persist($basket); + $em->persist($validationSession); + + $em->flush(); + + $route = sprintf('/baskets/%s/addElements/', $basket->getId()); + + $records = array( + self::$record_1->get_serialize_key(), + self::$record_2->get_serialize_key(), + ' ', + '42', + 'abhak', + self::$record_no_access->get_serialize_key(), + ); + + $lst = implode(';', $records); + + $this->client->request('POST', $route, array('lst' => $lst)); + + $response = $this->client->getResponse(); + + $this->assertEquals(302, $response->getStatusCode()); + + $em = self::$core->getEntityManager(); + /* @var $em \Doctrine\ORM\EntityManager */ + $basket = $em->getRepository('Entities\Basket')->find($basket->getId()); + + $this->assertEquals(2, $basket->getElements()->count()); + + $datas = $em->getRepository('Entities\ValidationData')->findAll(); + + $this->assertTrue($countDatas < count($datas), 'assert that '.count($datas).' > '.$countDatas ); + } + + public function testAddElementPostJSON() { $basket = $this->insertOneBasket(); diff --git a/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BridgeTest.php b/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BridgeTest.php index e3107d17bd..bf454e6fb4 100644 --- a/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BridgeTest.php +++ b/lib/unitTest/Alchemy/Phrasea/Controller/Prod/BridgeTest.php @@ -50,7 +50,7 @@ class BridgeApplication extends PhraseanetWebTestCaseAuthenticatedAbstract public function tearDown() { parent::tearDown(); - if(self::$api instanceof Bridge_Api) + if (self::$api instanceof Bridge_Api) self::$api->delete(); if (self::$account instanceof Bridge_Account) self::$account->delete(); @@ -163,16 +163,6 @@ class BridgeApplication extends PhraseanetWebTestCaseAuthenticatedAbstract self::$account = Bridge_Account::create(appbox::get_instance(\bootstrap::getCore()), self::$api, self::$user, 'kirikoo', 'coucou'); } - public function testLogoutDeconnected() - { - $this->client->followRedirects(); - $url = sprintf('/bridge/adapter/%d/logout/', self::$account->get_id()); - $crawler = $this->client->request('GET', $url); - $pageContent = $this->client->getResponse()->getContent(); - $this->assertContains("/adapter/" . self::$account->get_id() . "/logout/", $pageContent); - $this->deconnected($crawler, $pageContent); - } - public function testLogout() { self::$account->get_settings()->set("auth_token", "somethingNotNull"); //connected @@ -193,16 +183,6 @@ class BridgeApplication extends PhraseanetWebTestCaseAuthenticatedAbstract $this->assertNotContains(self::$account->get_api()->generate_login_url(registry::get_instance(), self::$account->get_api()->get_connector()->get_name()), $this->client->getResponse()->getContent()); } - public function testLoadElementsDisconnected() - { - $url = sprintf("/bridge/adapter/%s/load-elements/%s/", self::$account->get_id(), self::$account->get_api()->get_connector()->get_default_element_type()); - $crawler = $this->client->request('GET', $url, array("page" => 1)); - $this->assertTrue($this->client->getResponse()->isOk()); - $pageContent = $this->client->getResponse()->getContent(); - $this->assertContains($url, $pageContent); - $this->deconnected($crawler, $pageContent); - } - public function testLoadRecords() { self::$account->get_settings()->set("auth_token", "somethingNotNull"); //connected @@ -216,7 +196,8 @@ class BridgeApplication extends PhraseanetWebTestCaseAuthenticatedAbstract public function testLoadRecordsDisconnected() { - self::$account->get_settings()->set("auth_token", null);//deconnected + $this->client->followRedirects(); + self::$account->get_settings()->set("auth_token", null); //deconnected $url = sprintf("/bridge/adapter/%s/load-records/", self::$account->get_id()); $crawler = $this->client->request('GET', $url, array("page" => 1)); $pageContent = $this->client->getResponse()->getContent(); @@ -236,7 +217,8 @@ class BridgeApplication extends PhraseanetWebTestCaseAuthenticatedAbstract public function testLoadContainersDisconnected() { - self::$account->get_settings()->set("auth_token", null);//deconnected + $this->client->followRedirects(); + self::$account->get_settings()->set("auth_token", null); //deconnected $url = sprintf("/bridge/adapter/%s/load-containers/%s/", self::$account->get_id(), self::$account->get_api()->get_connector()->get_default_container_type()); $crawler = $this->client->request('GET', $url, array("page" => 1)); $pageContent = $this->client->getResponse()->getContent(); @@ -244,9 +226,33 @@ class BridgeApplication extends PhraseanetWebTestCaseAuthenticatedAbstract $this->deconnected($crawler, $pageContent); } + public function testLoadElementsDisconnected() + { + $this->client->followRedirects(); + self::$account->get_settings()->set("auth_token", null); //deconnected + $url = sprintf("/bridge/adapter/%s/load-elements/%s/", self::$account->get_id(), self::$account->get_api()->get_connector()->get_default_element_type()); + $crawler = $this->client->request('GET', $url, array("page" => 1)); + $this->assertTrue($this->client->getResponse()->isOk()); + $pageContent = $this->client->getResponse()->getContent(); + $this->assertContains($url, $pageContent); + $this->deconnected($crawler, $pageContent); + } + + public function testLogoutDeconnected() + { + $this->client->followRedirects(); + self::$account->get_settings()->set("auth_token", null); //deconnected + $url = sprintf('/bridge/adapter/%d/logout/', self::$account->get_id()); + $crawler = $this->client->request('GET', $url); + $pageContent = $this->client->getResponse()->getContent(); + $this->assertContains("/adapter/" . self::$account->get_id() . "/logout/", $pageContent); + $this->deconnected($crawler, $pageContent); + } + public function testActionDeconnected() { - self::$account->get_settings()->set("auth_token", null);//deconnected + $this->client->followRedirects(); + self::$account->get_settings()->set("auth_token", null); //deconnected $url = sprintf("/bridge/action/%s/une action/%s/", self::$account->get_id(), self::$account->get_api()->get_connector()->get_default_element_type()); $crawler = $this->client->request('GET', $url); $pageContent = $this->client->getResponse()->getContent(); diff --git a/lib/unitTest/Alchemy/Phrasea/Controller/Prod/StoryTest.php b/lib/unitTest/Alchemy/Phrasea/Controller/Prod/StoryTest.php index 4311c67270..f06a2405dc 100644 --- a/lib/unitTest/Alchemy/Phrasea/Controller/Prod/StoryTest.php +++ b/lib/unitTest/Alchemy/Phrasea/Controller/Prod/StoryTest.php @@ -33,7 +33,7 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract * * @var \record_adapter */ - protected static $need_story = true; + protected static $need_story = true; protected static $need_records = 2; public function setUp() @@ -53,16 +53,16 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract $route = "/story/"; $collections = self::$core->getAuthenticatedUser() - ->ACL() - ->get_granted_base(array('canaddrecord')); + ->ACL() + ->get_granted_base(array('canaddrecord')); $collection = array_shift($collections); $crawler = $this->client->request( - 'POST', $route, array( - 'base_id' => $collection->get_base_id(), - 'name' => 'test story', - 'description' => 'test_description') + 'POST', $route, array( + 'base_id' => $collection->get_base_id(), + 'name' => 'test story' + ) ); $response = $this->client->getResponse(); @@ -70,7 +70,7 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract $this->assertEquals(302, $response->getStatusCode()); $query = self::$core->getEntityManager()->createQuery( - 'SELECT COUNT(w.id) FROM \Entities\StoryWZ w' + 'SELECT COUNT(w.id) FROM \Entities\StoryWZ w' ); $count = $query->getSingleScalarResult(); @@ -83,17 +83,16 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract $route = "/story/"; $collections = self::$core->getAuthenticatedUser() - ->ACL() - ->get_granted_base(array('canaddrecord')); + ->ACL() + ->get_granted_base(array('canaddrecord')); $collection = array_shift($collections); $crawler = $this->client->request( - 'POST', $route, array( - 'base_id' => $collection->get_base_id(), - 'name' => 'test story', - 'description' => 'test_description'), array(), array( - "HTTP_ACCEPT" => "application/json") + 'POST', $route, array( + 'base_id' => $collection->get_base_id(), + 'name' => 'test story'), array(), array( + "HTTP_ACCEPT" => "application/json") ); $response = $this->client->getResponse(); @@ -117,9 +116,6 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract $filter = "form[action='/prod/story/'] input[name='name']"; $this->assertEquals(1, $crawler->filter($filter)->count()); - $filter = "form[action='/prod/story/'] textarea[name='description']"; - $this->assertEquals(1, $crawler->filter($filter)->count()); - $filter = "form[action='/prod/story/'] select[name='base_id']"; $this->assertEquals(1, $crawler->filter($filter)->count()); } @@ -144,8 +140,8 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract $route = sprintf("/story/%s/%s/addElements/", $story->get_sbas_id(), $story->get_record_id()); $records = array( - self::$record_1->get_serialize_key(), - self::$record_2->get_serialize_key() + self::$record_1->get_serialize_key(), + self::$record_2->get_serialize_key() ); $lst = implode(';', $records); @@ -166,15 +162,15 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract $route = sprintf("/story/%s/%s/addElements/", $story->get_sbas_id(), $story->get_record_id()); $records = array( - self::$record_1->get_serialize_key(), - self::$record_2->get_serialize_key() + self::$record_1->get_serialize_key(), + self::$record_2->get_serialize_key() ); $lst = implode(';', $records); $crawler = $this->client->request('POST', $route, array('lst' => $lst) - , array(), array( - "HTTP_ACCEPT" => "application/json")); + , array(), array( + "HTTP_ACCEPT" => "application/json")); $response = $this->client->getResponse(); @@ -188,21 +184,21 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract $story = self::$story_1; $records = array( - self::$record_1, - self::$record_2 + self::$record_1, + self::$record_2 ); $totalRecords = count($records); - $n = 0; + $n = 0; foreach ($records as $record) { /* @var $record \record_adapter */ $route = sprintf( - "/story/%s/%s/delete/%s/%s/" - , $story->get_sbas_id() - , $story->get_record_id() - , $record->get_sbas_id() - , $record->get_record_id() + "/story/%s/%s/delete/%s/%s/" + , $story->get_sbas_id() + , $story->get_record_id() + , $record->get_sbas_id() + , $record->get_record_id() ); if (($n % 2) === 0) @@ -216,10 +212,10 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract else { $crawler = $this->client->request( - 'POST', $route, array(), array(), array( - "HTTP_ACCEPT" => "application/json") + 'POST', $route, array(), array(), array( + "HTTP_ACCEPT" => "application/json") ); - $response = $this->client->getResponse(); + $response = $this->client->getResponse(); $this->assertEquals(200, $response->getStatusCode()); } @@ -229,7 +225,4 @@ class ControllerStoryTest extends \PhraseanetWebTestCaseAuthenticatedAbstract } } - - - } diff --git a/lib/unitTest/databox/databox_fieldTest.php b/lib/unitTest/databox/databox_fieldTest.php index 1a168ad51c..4bab73b927 100644 --- a/lib/unitTest/databox/databox_fieldTest.php +++ b/lib/unitTest/databox/databox_fieldTest.php @@ -300,72 +300,6 @@ class databox_fieldTest extends PhraseanetPHPUnitAbstract ); } - /** - * @todo Implement testSet_regdate(). - */ - public function testSet_regdate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @todo Implement testSet_regdesc(). - */ - public function testSet_regdesc() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @todo Implement testSet_regname(). - */ - public function testSet_regname() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @todo Implement testIs_regname(). - */ - public function testIs_regname() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @todo Implement testIs_regdesc(). - */ - public function testIs_regdesc() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - - /** - * @todo Implement testIs_regdate(). - */ - public function testIs_regdate() - { - // Remove the following lines when you implement this test. - $this->markTestIncomplete( - 'This test has not been implemented yet.' - ); - } - /** * @todo Implement testGet_thumbtitle(). */ diff --git a/lib/unitTest/randomTest.php b/lib/unitTest/randomTest.php index a948df05c9..16c82a4e5a 100644 --- a/lib/unitTest/randomTest.php +++ b/lib/unitTest/randomTest.php @@ -13,7 +13,7 @@ class randomTest extends PhraseanetPHPUnitAbstract { $expires_on = new DateTime('-5 minutes'); $usr_id = self::$user->get_id(); - $token = random::getUrlToken('password', $usr_id, $expires_on, 'some nice datas'); + $token = random::getUrlToken(\random::TYPE_PASSWORD, $usr_id, $expires_on, 'some nice datas'); random::cleanTokens(); try @@ -76,7 +76,7 @@ class randomTest extends PhraseanetPHPUnitAbstract public function testGetUrlToken() { $usr_id = self::$user->get_id(); - $token = random::getUrlToken('password', $usr_id, null, 'some nice datas'); + $token = random::getUrlToken(\random::TYPE_PASSWORD, $usr_id, null, 'some nice datas'); $datas = random::helloToken($token); $this->assertEquals('some nice datas', $datas['datas']); random::updateToken($token, 'some very nice datas'); @@ -101,7 +101,7 @@ class randomTest extends PhraseanetPHPUnitAbstract public function testHelloToken() { $usr_id = self::$user->get_id(); - $token = random::getUrlToken('password', $usr_id, null, 'some nice datas'); + $token = random::getUrlToken(\random::TYPE_PASSWORD, $usr_id, null, 'some nice datas'); $datas = random::helloToken($token); $this->assertEquals('some nice datas', $datas['datas']); $this->assertNull($datas['expire_on']); @@ -125,7 +125,7 @@ class randomTest extends PhraseanetPHPUnitAbstract $expires_on = new DateTime('+5 minutes'); $usr_id = self::$user->get_id(); - $token = random::getUrlToken('password', $usr_id, $expires_on, 'some nice datas'); + $token = random::getUrlToken(\random::TYPE_PASSWORD, $usr_id, $expires_on, 'some nice datas'); $datas = random::helloToken($token); $this->assertEquals('some nice datas', $datas['datas']); $sql_expires = new DateTime($datas['expire_on']); @@ -151,7 +151,7 @@ class randomTest extends PhraseanetPHPUnitAbstract $expires_on = new DateTime('-5 minutes'); $usr_id = self::$user->get_id(); - $token = random::getUrlToken('password', $usr_id, $expires_on, 'some nice datas'); + $token = random::getUrlToken(\random::TYPE_PASSWORD, $usr_id, $expires_on, 'some nice datas'); try { diff --git a/lib/unitTest/record/adapterTest.php b/lib/unitTest/record/adapterTest.php index e40721651b..40bbb4811e 100644 --- a/lib/unitTest/record/adapterTest.php +++ b/lib/unitTest/record/adapterTest.php @@ -384,7 +384,18 @@ class record_adapterTest extends PhraseanetPHPUnitAuthenticatedAbstract $this->assertEquals(1, count($current_fields)); $field = $current_fields[0]; - $multi_imploded = implode(' ' . $meta_el->get_separator() . ' ', array('un', 'jeu', 'de', 'test')); + $separator = $meta_el->get_separator(); + + if(strlen($separator) > 0) + { + $separator = $separator[0]; + } + else + { + $separator = ''; + } + + $multi_imploded = implode(' ' . $separator . ' ', array('un', 'jeu', 'de', 'test')); if ($meta_el->is_multi()) { @@ -468,11 +479,6 @@ class record_adapterTest extends PhraseanetPHPUnitAuthenticatedAbstract ); } - public function testGet_reg_name() - { - $this->assertTrue(is_string(self::$story_1->get_reg_name())); - } - public function testGet_record_by_sha() { $tmp_records = record_adapter::get_record_by_sha(self::$record_1->get_sbas_id(), self::$record_1->get_sha256()); diff --git a/locale/ar_SA/LC_MESSAGES/phraseanet.mo b/locale/ar_SA/LC_MESSAGES/phraseanet.mo index 050c537c32..265a470d2d 100644 Binary files a/locale/ar_SA/LC_MESSAGES/phraseanet.mo and b/locale/ar_SA/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/ar_SA/LC_MESSAGES/phraseanet.po b/locale/ar_SA/LC_MESSAGES/phraseanet.po index f0c4a7e206..6da669bf86 100644 --- a/locale/ar_SA/LC_MESSAGES/phraseanet.po +++ b/locale/ar_SA/LC_MESSAGES/phraseanet.po @@ -2,22 +2,22 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-06 12:59+0100\n" -"PO-Revision-Date: 2012-02-06 13:05+0100\n" +"POT-Creation-Date: 2012-03-08 14:30+0100\n" +"PO-Revision-Date: 2012-03-08 14:30+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n == 2 ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-02-06 11:00+0000\n" -"X-Generator: Launchpad (build 14747)\n" -"Language: \n" +"X-Launchpad-Export-Date: 2012-03-08 09:56+0000\n" +"X-Generator: Launchpad (build 14914)\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" -"X-Poedit-KeywordsList: _e;__\n" -"X-Poedit-Language: Arabic\n" "X-Poedit-Country: SAUDI ARABIA\n" +"Language: \n" +"X-Poedit-Language: Arabic\n" +"X-Poedit-KeywordsList: _e;__\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -27,88 +27,82 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 +#: lib/classes/appbox.class.php:309 +#: lib/classes/appbox.class.php:383 msgid "Flushing cache" msgstr "" -#: lib/classes/appbox.class.php:323 +#: lib/classes/appbox.class.php:316 msgid "Creating new tables" msgstr "" -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 +#: lib/classes/appbox.class.php:333 +#: lib/classes/appbox.class.php:341 msgid "Purging directories" msgstr "" -#: lib/classes/appbox.class.php:356 +#: lib/classes/appbox.class.php:349 msgid "Copying files" msgstr "" -#: lib/classes/appbox.class.php:365 +#: lib/classes/appbox.class.php:358 msgid "Upgrading appbox" msgstr "" -#: lib/classes/appbox.class.php:374 +#: lib/classes/appbox.class.php:367 #, php-format msgid "Upgrading %s" msgstr "" -#: lib/classes/appbox.class.php:382 +#: lib/classes/appbox.class.php:375 msgid "Post upgrade" msgstr "" -#: lib/classes/appbox.class.php:433 +#: lib/classes/appbox.class.php:425 msgid "Nom de base de donnee incorrect" msgstr "" -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "" - -#: lib/classes/appbox.class.php:590 +#: lib/classes/appbox.class.php:518 msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" msgstr "" -#: lib/classes/base.class.php:294 +#: lib/classes/base.class.php:306 #, php-format msgid "Updating table %s" msgstr "" -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 +#: lib/classes/base.class.php:323 +#: lib/classes/base.class.php:573 +#: lib/classes/base.class.php:817 +#: lib/classes/base.class.php:834 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "" -#: lib/classes/base.class.php:333 +#: lib/classes/base.class.php:345 #, php-format msgid "Creating table %s" msgstr "" -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 +#: lib/classes/base.class.php:353 +#: lib/classes/base.class.php:894 #, php-format msgid "Applying patches on %s" msgstr "" -#: lib/classes/base.class.php:842 +#: lib/classes/base.class.php:854 msgid "Looking for patches" msgstr "" -#: lib/classes/databox.class.php:1401 +#: lib/classes/databox.class.php:1394 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "" -#: lib/classes/databox.class.php:1414 +#: lib/classes/databox.class.php:1407 msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "" -#: lib/classes/databox.class.php:1419 +#: lib/classes/databox.class.php:1412 msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" msgstr "" @@ -205,14 +199,14 @@ msgid "login::register: vos demandes concernat les collections suivantes sont su msgstr "طلباتك بخصوص المجموعات التالية تخضع للموافقة من مشرف" #: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 +#: lib/classes/mail.class.php:166 msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" msgstr "سيتم اشعارك عن طريق البريد الإلكتروني بعد معالجة طلباتك" #: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 +#: lib/classes/mail.class.php:148 +#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:179 msgid "login::register: sujet email : confirmation de votre adresse email" msgstr "تأكيد بريدك الإلكتروني" @@ -220,28 +214,28 @@ msgstr "تأكيد بريدك الإلكتروني" msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." msgstr "مرحبا ، لقد تلقينا طلبك لتغيير البريد الإلكتروني. للتأكيد ، يرجى اتباع الوصلة أدناه. إذا كنت تتلقى هذا البريد دون الحاجة لتطبيقها ، نشكركم على حذفه وتجاهله." -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:150 +#: lib/classes/mail.class.php:164 msgid "login::register: merci d'avoir confirme votre adresse email" msgstr "شكرا لتأكيد البريد الإلكتروني الخاص بك" -#: lib/classes/mail.class.php:149 +#: lib/classes/mail.class.php:151 msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " msgstr "يمكنك الآن الاتصال باستخدام العنوان التالي " -#: lib/classes/mail.class.php:163 +#: lib/classes/mail.class.php:165 msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " msgstr "عليك الانتظار تأكيد مشرف؛ طلباتك على المجموعات التالية لا تزال في الانتظار: " -#: lib/classes/mail.class.php:179 +#: lib/classes/mail.class.php:181 msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." msgstr "للتحقق من صحة التسجيل في قاعدة البيانات ، رجاءا تأكيد البريد الإلكتروني الخاص بك عن طريق اتباع الرابط أدناه." -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." +#: lib/classes/mail.class.php:212 +msgid "si cet email contient des liens non cliquables copiez/collez ces liens dans votre navigateur." msgstr "" -#: lib/classes/mail.class.php:211 +#: lib/classes/mail.class.php:214 msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" msgstr "PhraseanetVI رسالة آلية لإدارة الإرسال التلقائيا للبريد الإلكتروني, ارتبط ب" @@ -264,35 +258,35 @@ msgstr "" msgid "Mauvais mode colorimetrique : %s" msgstr "" -#: lib/classes/phrasea.class.php:308 +#: lib/classes/phrasea.class.php:304 msgid "admin::monitor: module production" msgstr "إنتاج" -#: lib/classes/phrasea.class.php:309 +#: lib/classes/phrasea.class.php:305 msgid "admin::monitor: module client" msgstr "زبون" -#: lib/classes/phrasea.class.php:310 +#: lib/classes/phrasea.class.php:306 msgid "admin::monitor: module admin" msgstr "إدارة" -#: lib/classes/phrasea.class.php:311 +#: lib/classes/phrasea.class.php:307 msgid "admin::monitor: module report" msgstr "تقرير" -#: lib/classes/phrasea.class.php:312 +#: lib/classes/phrasea.class.php:308 msgid "admin::monitor: module thesaurus" msgstr "قاموس" -#: lib/classes/phrasea.class.php:313 +#: lib/classes/phrasea.class.php:309 msgid "admin::monitor: module comparateur" msgstr "قارن" -#: lib/classes/phrasea.class.php:314 +#: lib/classes/phrasea.class.php:310 msgid "admin::monitor: module validation" msgstr "تصديق" -#: lib/classes/phrasea.class.php:315 +#: lib/classes/phrasea.class.php:311 msgid "admin::monitor: module upload" msgstr "إرسال" @@ -331,76 +325,81 @@ msgstr "بحث" msgid "client::recherche: dans les categories" msgstr "في التصنيفات" -#: lib/classes/setup.class.php:341 +#: lib/classes/setup.class.php:329 msgid "mod_auth_token correctement configure" msgstr "" -#: lib/classes/setup.class.php:343 +#: lib/classes/setup.class.php:331 msgid "mod_auth_token mal configure" msgstr "" -#: lib/classes/setup.class.php:356 +#: lib/classes/setup.class.php:344 msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " msgstr "" -#: lib/classes/setup.class.php:371 +#: lib/classes/setup.class.php:359 msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" msgstr "" -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 +#: lib/classes/setup.class.php:368 +#: lib/classes/setup.class.php:377 msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" msgstr "" -#: lib/classes/setup.class.php:532 +#: lib/classes/setup.class.php:520 msgid "setup::Tests d'envois d'emails" msgstr "" -#: lib/classes/setup.class.php:536 +#: lib/classes/setup.class.php:524 msgid "boutton::valider" msgstr "موافق" -#: lib/classes/setup.class.php:613 +#: lib/classes/setup.class.php:602 msgid "setup:: Serveur Memcached" msgstr "" -#: lib/classes/setup.class.php:629 +#: lib/classes/setup.class.php:611 #, php-format msgid "setup::Serveur actif sur %s" msgstr "" -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "" - -#: lib/classes/setup.class.php:645 +#: lib/classes/setup.class.php:623 #, php-format msgid "setup::Aucun serveur memcached rattache." msgstr "" -#: lib/classes/setup.class.php:682 +#: lib/classes/setup.class.php:644 +msgid "Many opcode cache load is forbidden" +msgstr "" + +#: lib/classes/setup.class.php:646 +msgid "No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC." +msgstr "" + +#: lib/classes/setup.class.php:660 #, php-format msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" msgstr "" -#: lib/classes/setup.class.php:713 +#: lib/classes/setup.class.php:691 msgid "setup::Etat du moteur de recherche" msgstr "" -#: lib/classes/setup.class.php:724 +#: lib/classes/setup.class.php:702 msgid "setup::Sphinx confguration" msgstr "" -#: lib/classes/setup.class.php:747 +#: lib/classes/setup.class.php:725 msgid "test::test" msgstr "" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:148 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:153 msgid "Cette valeur ne peut être vide" msgstr "" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:149 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:154 msgid "Url non valide" msgstr "" @@ -434,15 +433,11 @@ msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:829 #: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 msgid "Ce champ est obligatoire" msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:834 #: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 #, php-format msgid "Ce champ est trop long %s caracteres max" msgstr "" @@ -454,7 +449,6 @@ msgid "Ce champ est trop court %s caracteres min" msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 msgid "Le record n'a pas de fichier physique" msgstr "" @@ -464,7 +458,6 @@ msgid "La taille maximale d'une video est de %d minutes." msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 #, php-format msgid "Le poids maximum d'un fichier est de %s" msgstr "" @@ -473,15 +466,16 @@ msgstr "" msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:529 +#: lib/classes/Bridge/Api/Flickr.class.php:528 +#: lib/classes/Bridge/Api/Youtube.class.php:542 msgid "L'upload a echoue" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:639 +#: lib/classes/Bridge/Api/Flickr.class.php:638 msgid "Photos" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:648 +#: lib/classes/Bridge/Api/Flickr.class.php:647 msgid "Photosets" msgstr "" @@ -561,25 +555,25 @@ msgstr "" msgid "Service youtube introuvable." msgstr "" -#: lib/classes/caption/record.class.php:171 +#: lib/classes/caption/record.class.php:188 msgid "Open the URL in a new window" msgstr "" -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 +#: lib/classes/databox/cgu.class.php:37 +#: lib/classes/databox/cgu.class.php:110 #, php-format msgid "cgus:: CGUs de la base %s" msgstr "%s شروط الاستخدام العامة لقاعدة البيانات" -#: lib/classes/databox/cgu.class.php:39 +#: lib/classes/databox/cgu.class.php:40 msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" msgstr "للاستمرار، يجب عليك أن تقبل الشروط العامة للاستخدام" -#: lib/classes/databox/cgu.class.php:40 +#: lib/classes/databox/cgu.class.php:41 msgid "cgus :: accepter" msgstr "قبول" -#: lib/classes/databox/cgu.class.php:41 +#: lib/classes/databox/cgu.class.php:42 msgid "cgus :: refuser" msgstr "رفض" @@ -678,34 +672,50 @@ msgid "admin::register: un utilisateur s'est inscrit" msgstr "" #: lib/classes/eventsmanager/notify/autoregister.class.php:235 +#: lib/classes/eventsmanager/notify/order.class.php:221 +#: lib/classes/eventsmanager/notify/register.class.php:240 msgid "admin::compte-utilisateur nom" msgstr "اسم" #: lib/classes/eventsmanager/notify/autoregister.class.php:237 +#: lib/classes/eventsmanager/notify/order.class.php:223 +#: lib/classes/eventsmanager/notify/register.class.php:242 msgid "admin::compte-utilisateur prenom" msgstr "اللقب" #: lib/classes/eventsmanager/notify/autoregister.class.php:239 +#: lib/classes/eventsmanager/notify/order.class.php:225 +#: lib/classes/eventsmanager/notify/register.class.php:244 msgid "admin::compte-utilisateur email" msgstr "البريد الإلكتروني" #: lib/classes/eventsmanager/notify/autoregister.class.php:241 +#: lib/classes/eventsmanager/notify/order.class.php:227 +#: lib/classes/eventsmanager/notify/register.class.php:246 msgid "admin::compte-utilisateur adresse" msgstr "عنوان" #: lib/classes/eventsmanager/notify/autoregister.class.php:245 +#: lib/classes/eventsmanager/notify/order.class.php:231 +#: lib/classes/eventsmanager/notify/register.class.php:250 msgid "admin::compte-utilisateur telephone" msgstr "الهاتف" #: lib/classes/eventsmanager/notify/autoregister.class.php:247 +#: lib/classes/eventsmanager/notify/order.class.php:233 +#: lib/classes/eventsmanager/notify/register.class.php:252 msgid "admin::compte-utilisateur fax" msgstr "فاكس" #: lib/classes/eventsmanager/notify/autoregister.class.php:249 +#: lib/classes/eventsmanager/notify/order.class.php:235 +#: lib/classes/eventsmanager/notify/register.class.php:254 msgid "admin::compte-utilisateur poste" msgstr "المهنة" #: lib/classes/eventsmanager/notify/autoregister.class.php:250 +#: lib/classes/eventsmanager/notify/order.class.php:236 +#: lib/classes/eventsmanager/notify/register.class.php:255 msgid "admin::compte-utilisateur societe" msgstr "الشركة" @@ -725,6 +735,31 @@ msgstr "" msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" msgstr "" +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:125 +msgid "email is not valid" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:129 +msgid "failed to send mail" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:133 +msgid "an error occured while exporting records" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:137 +#, php-format +msgid "The delivery to %s failed for the following reason : %s" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:156 +msgid "Email export fails" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:165 +msgid "Get a notification when a mail export fails" +msgstr "" + #: lib/classes/eventsmanager/notify/order.class.php:162 #, php-format msgid "%1$s a passe une %2$scommande%3$s" @@ -822,7 +857,6 @@ msgstr "انقر فوق الرابط التالي للعرض و المقارنة #: lib/classes/eventsmanager/notify/push.class.php:191 #: lib/classes/eventsmanager/notify/validate.class.php:213 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:233 msgid "push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas" msgstr "تحذير، هذا الرابط فريد من نوعه ومحتوياته سرية، لا تكشف عنه" @@ -858,16 +892,11 @@ msgstr "Phraseanet ادارة طلبات المستخدمين من مواجهة" #: lib/classes/eventsmanager/notify/validate.class.php:33 #: lib/classes/eventsmanager/notify/validate.class.php:177 -#: lib/classes/eventsmanager/notify/validationdone.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:191 msgid "Validation" msgstr "" #: lib/classes/eventsmanager/notify/validate.class.php:148 #: lib/classes/eventsmanager/notify/validate.class.php:152 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:164 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:168 msgid "Une selection" msgstr "" @@ -885,7 +914,6 @@ msgid "push::mail:: Demande de validation de documents" msgstr "" #: lib/classes/eventsmanager/notify/validate.class.php:203 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:223 #, php-format msgid "Le lien suivant vous propose de valider une selection faite par %s" msgstr "%s انقر فوق الارتباط التالي ، الملاحظات طرحها" @@ -1137,43 +1165,43 @@ msgstr "" msgid "report:: non-renseigne" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:52 +#: lib/classes/module/console/systemConfigCheck.class.php:54 msgid "*** CHECK BINARY CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:61 +#: lib/classes/module/console/systemConfigCheck.class.php:65 msgid "*** FILESYSTEM CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:64 +#: lib/classes/module/console/systemConfigCheck.class.php:68 msgid "*** CHECK CACHE OPCODE ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:67 +#: lib/classes/module/console/systemConfigCheck.class.php:71 msgid "*** CHECK CACHE SERVER ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:70 +#: lib/classes/module/console/systemConfigCheck.class.php:74 msgid "*** CHECK PHP CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:73 +#: lib/classes/module/console/systemConfigCheck.class.php:77 msgid "*** CHECK PHP EXTENSIONS ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:76 +#: lib/classes/module/console/systemConfigCheck.class.php:80 msgid "*** CHECK PHRASEA ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:79 +#: lib/classes/module/console/systemConfigCheck.class.php:83 msgid "*** CHECK SYSTEM LOCALES ***" msgstr "" -#: lib/classes/module/console/systemUpgrade.class.php:49 +#: lib/classes/module/console/systemUpgrade.class.php:50 msgid "Create automatically" msgstr "" -#: lib/classes/module/console/systemUpgrade.class.php:97 +#: lib/classes/module/console/systemUpgrade.class.php:81 msgid "Continuer ?" msgstr "" @@ -1202,11 +1230,11 @@ msgstr "" msgid "report:: telechargements par jour" msgstr "" -#: lib/classes/module/report/activity.class.php:531 +#: lib/classes/module/report/activity.class.php:530 msgid "report:: Detail des connexions" msgstr "" -#: lib/classes/module/report/activity.class.php:589 +#: lib/classes/module/report/activity.class.php:588 msgid "report:: Detail des telechargements" msgstr "" @@ -1222,6 +1250,10 @@ msgstr "" msgid "report:: telechargements" msgstr "تنزيلات" +#: lib/classes/module/report/edit.class.php:50 +msgid "report:: edited documents" +msgstr "" + #: lib/classes/module/report/nav.class.php:129 msgid "report:: navigateur" msgstr "" @@ -1266,7 +1298,15 @@ msgstr "" msgid "report:: Information sur le navigateur %s" msgstr "" -#: lib/classes/record/adapter.class.php:939 +#: lib/classes/module/report/push.class.php:50 +msgid "report:: pushed documents" +msgstr "" + +#: lib/classes/module/report/validate.class.php:50 +msgid "report:: validated documents" +msgstr "" + +#: lib/classes/record/adapter.class.php:930 msgid "reponses::document sans titre" msgstr "بدون عنوان" @@ -1292,22 +1332,22 @@ msgstr "ريبورتاج " msgid "preview:: resultat numero %s " msgstr "" -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 +#: lib/classes/record/preview.class.php:565 +#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:587 msgid "report::acces direct" msgstr "دخول مباشر" -#: lib/classes/record/preview.class.php:566 +#: lib/classes/record/preview.class.php:571 msgid "report:: page d'accueil" msgstr "الصفحة الرئيسية" -#: lib/classes/record/preview.class.php:568 +#: lib/classes/record/preview.class.php:573 msgid "report:: visualiseur cooliris" msgstr "Cooliris مشاهد" -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:578 +#: lib/classes/record/preview.class.php:585 msgid "report::presentation page preview" msgstr "وصل خارجي" @@ -1369,11 +1409,11 @@ msgstr "صياغة غير صحيحة، تحتاج الى مزيد من الحر msgid "Sphinx server is offline" msgstr "" -#: lib/classes/set/export.class.php:292 +#: lib/classes/set/export.class.php:301 msgid "export::ftp: reglages manuels" msgstr "إعدادات يدوية" -#: lib/classes/set/order.class.php:233 +#: lib/classes/set/order.class.php:245 #, php-format msgid "Commande du %s" msgstr "" @@ -1684,527 +1724,519 @@ msgstr "" msgid "modele %s" msgstr "" -#: lib/conf.d/_GV_template.php:61 +#: lib/conf.d/_GV_template.php:82 msgid "GV::section:: Serveur HTTP" msgstr "" -#: lib/conf.d/_GV_template.php:66 +#: lib/conf.d/_GV_template.php:87 msgid "reglages:: Timezone de l'installation" msgstr "المنطقة الزمنية للتثبيت" -#: lib/conf.d/_GV_template.php:73 +#: lib/conf.d/_GV_template.php:94 msgid "reglages:: Nom de linstallation" msgstr "Phraseanet IV" -#: lib/conf.d/_GV_template.php:81 +#: lib/conf.d/_GV_template.php:102 msgid "reglages:: Langue par defaut" msgstr "اللغة الافتراضية" -#: lib/conf.d/_GV_template.php:90 +#: lib/conf.d/_GV_template.php:111 msgid "reglages:: URL statique (optionnel)" msgstr "" -#: lib/conf.d/_GV_template.php:96 +#: lib/conf.d/_GV_template.php:117 msgid "GV::section:: Etat de maintenance" msgstr "" -#: lib/conf.d/_GV_template.php:102 +#: lib/conf.d/_GV_template.php:123 msgid "reglages:: Message a diffuser aux utilisateurs" msgstr "رسالة للنشر إلى المستخدمين" -#: lib/conf.d/_GV_template.php:108 +#: lib/conf.d/_GV_template.php:129 msgid "reglages:: activation du message a diffuser aux utilistaeurs" msgstr "تفعيل رسالة للنشر إلى المستخدمين" -#: lib/conf.d/_GV_template.php:114 +#: lib/conf.d/_GV_template.php:135 msgid "reglages:: logguer les erreurs" msgstr "" -#: lib/conf.d/_GV_template.php:119 +#: lib/conf.d/_GV_template.php:140 msgid "GV::section:: Connectivite aux webservices" msgstr "" -#: lib/conf.d/_GV_template.php:124 +#: lib/conf.d/_GV_template.php:145 msgid "reglages:: Utiliser els google apis" msgstr "google apis إستعمال" -#: lib/conf.d/_GV_template.php:131 +#: lib/conf.d/_GV_template.php:152 msgid "reglages:: Service phrasea de localisation" msgstr "" -#: lib/conf.d/_GV_template.php:139 +#: lib/conf.d/_GV_template.php:160 msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" msgstr "bit.ly اسم المستخدم لواجهة برمجة التطبيقات" -#: lib/conf.d/_GV_template.php:145 +#: lib/conf.d/_GV_template.php:166 msgid "reglages:: ccle d'api pour l'api bit.ly" msgstr "Bit.ly مفتاح" -#: lib/conf.d/_GV_template.php:151 +#: lib/conf.d/_GV_template.php:172 msgid "reglages:: Utilisation de l'api recpatcha" msgstr "recaptcha إستعمال" -#: lib/conf.d/_GV_template.php:158 +#: lib/conf.d/_GV_template.php:179 msgid "reglages:: clef publique recaptcha" msgstr "recaptcha المفتاح العمومي" -#: lib/conf.d/_GV_template.php:164 +#: lib/conf.d/_GV_template.php:185 msgid "reglages:: clef privee recaptcha" msgstr "recaptcha المفتاح الخصوصي" -#: lib/conf.d/_GV_template.php:169 +#: lib/conf.d/_GV_template.php:190 msgid "GV::section:: Connectivite a Youtube" msgstr "" -#: lib/conf.d/_GV_template.php:174 +#: lib/conf.d/_GV_template.php:195 #, php-format msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" msgstr "" -#: lib/conf.d/_GV_template.php:181 +#: lib/conf.d/_GV_template.php:202 msgid "reglages:: Youtube client id" msgstr "" -#: lib/conf.d/_GV_template.php:187 +#: lib/conf.d/_GV_template.php:208 msgid "reglages:: Youtube clientsecret" msgstr "" -#: lib/conf.d/_GV_template.php:193 +#: lib/conf.d/_GV_template.php:214 #, php-format msgid "reglages:: Youtube cle developpeur, voir %s" msgstr "" -#: lib/conf.d/_GV_template.php:198 +#: lib/conf.d/_GV_template.php:219 msgid "GV::section:: Connectivite a FlickR" msgstr "" -#: lib/conf.d/_GV_template.php:203 +#: lib/conf.d/_GV_template.php:224 #, php-format msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" msgstr "" -#: lib/conf.d/_GV_template.php:210 +#: lib/conf.d/_GV_template.php:231 msgid "reglages:: FlickR client id" msgstr "" -#: lib/conf.d/_GV_template.php:216 +#: lib/conf.d/_GV_template.php:237 msgid "reglages:: FlickR client secret" msgstr "" -#: lib/conf.d/_GV_template.php:221 +#: lib/conf.d/_GV_template.php:242 msgid "GV::section:: Connectivite a Dailymotion" msgstr "" -#: lib/conf.d/_GV_template.php:226 +#: lib/conf.d/_GV_template.php:247 #, php-format msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" msgstr "" -#: lib/conf.d/_GV_template.php:233 +#: lib/conf.d/_GV_template.php:254 msgid "reglages:: dailymotion client id" msgstr "" -#: lib/conf.d/_GV_template.php:239 +#: lib/conf.d/_GV_template.php:260 msgid "reglages:: dailymotion client secret" msgstr "" -#: lib/conf.d/_GV_template.php:244 +#: lib/conf.d/_GV_template.php:265 msgid "GV::section:: Gestionnaire d'evenements" msgstr "" -#: lib/conf.d/_GV_template.php:250 +#: lib/conf.d/_GV_template.php:271 msgid "reglages:: Evenements" msgstr "" -#: lib/conf.d/_GV_template.php:258 +#: lib/conf.d/_GV_template.php:279 msgid "reglages:: Notifications" msgstr "" -#: lib/conf.d/_GV_template.php:264 +#: lib/conf.d/_GV_template.php:285 msgid "GV::section:: Stockage des documents" msgstr "" -#: lib/conf.d/_GV_template.php:269 +#: lib/conf.d/_GV_template.php:290 msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" msgstr "امتدادات الملفات المسموح تحميلها مفصولة بفواصل و * للسماح لكافة الملفات" -#: lib/conf.d/_GV_template.php:277 +#: lib/conf.d/_GV_template.php:298 msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" msgstr "ملفات تخزين المصغرات المنشورة بالوصول المباشر" -#: lib/conf.d/_GV_template.php:285 +#: lib/conf.d/_GV_template.php:306 msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" msgstr "ملفات تخزين الملفات المحمية من الوصول المباشر" -#: lib/conf.d/_GV_template.php:292 +#: lib/conf.d/_GV_template.php:313 msgid "reglages:: point de montage des vignettes publiees en acces direct" msgstr "نقطة تثبيت المصغرات المنشورة بالوصول المباشر" -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:330 +#: lib/conf.d/_GV_template.php:321 msgid "GV::section:: Serveur Sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:335 +#: lib/conf.d/_GV_template.php:326 msgid "Utiliser Sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:341 +#: lib/conf.d/_GV_template.php:332 msgid "reglages:: de l'adresse du serveur sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:347 +#: lib/conf.d/_GV_template.php:338 msgid "reglages:: port du serveur sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:353 +#: lib/conf.d/_GV_template.php:344 msgid "reglages:: de l'adresse du serveur RT sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:359 +#: lib/conf.d/_GV_template.php:350 msgid "reglages:: port du serveur RT sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:364 +#: lib/conf.d/_GV_template.php:356 +msgid "Phrasea Engine" +msgstr "" + +#: lib/conf.d/_GV_template.php:361 +msgid "Default results sort" +msgstr "" + +#: lib/conf.d/_GV_template.php:367 msgid "GV::section:: Executables externes" msgstr "" -#: lib/conf.d/_GV_template.php:369 +#: lib/conf.d/_GV_template.php:372 msgid "reglages:: mod_xsendfileapache active" msgstr "Enable xsendfile for apache" -#: lib/conf.d/_GV_template.php:375 +#: lib/conf.d/_GV_template.php:378 msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" msgstr "" -#: lib/conf.d/_GV_template.php:382 +#: lib/conf.d/_GV_template.php:385 msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" msgstr "" -#: lib/conf.d/_GV_template.php:389 +#: lib/conf.d/_GV_template.php:392 msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" msgstr "" -#: lib/conf.d/_GV_template.php:396 +#: lib/conf.d/_GV_template.php:399 msgid "reglages:: point de montage du dossier protege via auth_token" msgstr "" -#: lib/conf.d/_GV_template.php:403 +#: lib/conf.d/_GV_template.php:406 msgid "reglages:: path complet du dossier protege via auth_token" msgstr "" -#: lib/conf.d/_GV_template.php:409 +#: lib/conf.d/_GV_template.php:412 msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" msgstr "" -#: lib/conf.d/_GV_template.php:415 +#: lib/conf.d/_GV_template.php:418 msgid "reglages:: executable PHP CLI" msgstr "PHP CLI مسار ملف تشغيل" -#: lib/conf.d/_GV_template.php:422 +#: lib/conf.d/_GV_template.php:425 msgid "reglages:: path du php.ini specifique (vide si non utilise)" msgstr "php.ini تحديد المسار إلى ملف" -#: lib/conf.d/_GV_template.php:429 +#: lib/conf.d/_GV_template.php:432 msgid "reglages:: chemin de l'executable convert" msgstr "convert مسار ملف تشغيل" -#: lib/conf.d/_GV_template.php:436 +#: lib/conf.d/_GV_template.php:439 msgid "reglages:: chemin de l'executable composite" msgstr "composite مسار ملف تشغيل" -#: lib/conf.d/_GV_template.php:443 +#: lib/conf.d/_GV_template.php:446 msgid "reglages:: chemin de l'executable exiftools" msgstr "exiftools مسار ملف تشغيل" -#: lib/conf.d/_GV_template.php:449 +#: lib/conf.d/_GV_template.php:452 msgid "reglages:: chemin de l'executable swfextract" msgstr "" -#: lib/conf.d/_GV_template.php:456 +#: lib/conf.d/_GV_template.php:459 msgid "reglages:: chemin de l'executable pdf2swf" msgstr "" -#: lib/conf.d/_GV_template.php:463 +#: lib/conf.d/_GV_template.php:466 msgid "reglages:: chemin de l'executable swfrender" msgstr "" -#: lib/conf.d/_GV_template.php:470 +#: lib/conf.d/_GV_template.php:473 msgid "reglages:: chemin de l'executable unoconv" msgstr "" -#: lib/conf.d/_GV_template.php:477 +#: lib/conf.d/_GV_template.php:480 msgid "reglages:: chemin de l'executable FFmpeg" msgstr "FFmpeg مسار ملف تشغيل" -#: lib/conf.d/_GV_template.php:483 +#: lib/conf.d/_GV_template.php:486 msgid "reglages:: chemin de l'executable MP4Box" msgstr "" -#: lib/conf.d/_GV_template.php:489 +#: lib/conf.d/_GV_template.php:492 msgid "reglages:: chemin de l'executable Mplayer" msgstr "" -#: lib/conf.d/_GV_template.php:495 +#: lib/conf.d/_GV_template.php:498 msgid "reglages:: chemin de l'executable pdftotext (xpdf)" msgstr "" -#: lib/conf.d/_GV_template.php:501 +#: lib/conf.d/_GV_template.php:504 msgid "reglages:: nombre maximum de page a extraire (PDF)" msgstr "(pdf) الحد الأقصى لعدد الصفحات المطلوب استخلاصها لملفات" -#: lib/conf.d/_GV_template.php:506 +#: lib/conf.d/_GV_template.php:509 msgid "GV::section:: Repertoires utilitaires" msgstr "" -#: lib/conf.d/_GV_template.php:511 +#: lib/conf.d/_GV_template.php:514 msgid "reglages:: proprietaire des fichiers" msgstr "ماذا تريد ان تفعل بالملفات؟" -#: lib/conf.d/_GV_template.php:517 +#: lib/conf.d/_GV_template.php:520 msgid "reglages:: groupes des fichiers" msgstr "إعادة ترتيب الملفات" -#: lib/conf.d/_GV_template.php:522 +#: lib/conf.d/_GV_template.php:525 msgid "GV::section:: Configuration principale" msgstr "" -#: lib/conf.d/_GV_template.php:534 +#: lib/conf.d/_GV_template.php:537 msgid "reglages:: email de l'administrateur" msgstr "البريد الإلكتروني للمشرف" -#: lib/conf.d/_GV_template.php:540 +#: lib/conf.d/_GV_template.php:543 msgid "reglages:: Afficher le nom des bases et des collections" msgstr "إظهار أسماء قواعد البيانات و أسماء المجموعات" -#: lib/conf.d/_GV_template.php:547 +#: lib/conf.d/_GV_template.php:550 msgid "reglages:: activer le choix du nom de fichier a l'export" msgstr "تمكين اختيار اسم الملف عند التحميل" -#: lib/conf.d/_GV_template.php:554 +#: lib/conf.d/_GV_template.php:557 msgid "reglages:: choix par defaut des noms de fichier a l'export" msgstr "الخيار الافتراضي لأسماء الملفات عند التحميل" -#: lib/conf.d/_GV_template.php:568 +#: lib/conf.d/_GV_template.php:571 msgid "reglages:: Active les partages Facebook et Twitter" msgstr "" -#: lib/conf.d/_GV_template.php:575 +#: lib/conf.d/_GV_template.php:578 msgid "GV::section:: Page d'accueil" msgstr "" -#: lib/conf.d/_GV_template.php:588 +#: lib/conf.d/_GV_template.php:591 msgid "reglages:: presentation sur la home" msgstr "عرض الإعدادات" -#: lib/conf.d/_GV_template.php:595 +#: lib/conf.d/_GV_template.php:598 msgid "GV::section:: Moteur de recherche" msgstr "" -#: lib/conf.d/_GV_template.php:601 +#: lib/conf.d/_GV_template.php:604 msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" msgstr "الحد الأدنى لعدد الرسائل مع اقتطاع عند البحث" -#: lib/conf.d/_GV_template.php:607 +#: lib/conf.d/_GV_template.php:610 msgid "reglages:: Question par defaut" msgstr "اللغة الافتراضية" -#: lib/conf.d/_GV_template.php:613 +#: lib/conf.d/_GV_template.php:616 msgid "reglages:: type de document cherches par defaut e l'ouverture du site" msgstr "نوع الوثائق المطلوبة افتراضيا عند فتح موقع" -#: lib/conf.d/_GV_template.php:619 +#: lib/conf.d/_GV_template.php:622 msgid "GV::section:: Report" msgstr "" -#: lib/conf.d/_GV_template.php:625 +#: lib/conf.d/_GV_template.php:628 msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" msgstr "" -#: lib/conf.d/_GV_template.php:631 +#: lib/conf.d/_GV_template.php:634 msgid "GV::section:: Modules supplementaires" msgstr "" -#: lib/conf.d/_GV_template.php:637 +#: lib/conf.d/_GV_template.php:640 msgid "reglages:: Activation de l'outil thesaurus" msgstr "تفعيل أداة القاموس" -#: lib/conf.d/_GV_template.php:642 +#: lib/conf.d/_GV_template.php:645 msgid "reglages:: Activation du Mode MultiDOC" msgstr "تفعيل نظام الريبورتجات" -#: lib/conf.d/_GV_template.php:647 +#: lib/conf.d/_GV_template.php:650 msgid "reglages:: Substitution de HD d'un record " msgstr "" -#: lib/conf.d/_GV_template.php:652 +#: lib/conf.d/_GV_template.php:655 msgid "reglages:: Substitution de thumbnail d'un record" msgstr "تفعيل نظام مصغرات الوثائق البديلة" -#: lib/conf.d/_GV_template.php:736 +#: lib/conf.d/_GV_template.php:739 msgid "GV::section:: Envois de mails" msgstr "" -#: lib/conf.d/_GV_template.php:747 +#: lib/conf.d/_GV_template.php:750 msgid "reglages:: Expediteur mail par defaut" msgstr "البريد الإلكتروني الإفتراضي للمرسل" -#: lib/conf.d/_GV_template.php:753 +#: lib/conf.d/_GV_template.php:756 msgid "reglages:: Utilisation d'un serveur SMTP" msgstr "" -#: lib/conf.d/_GV_template.php:759 +#: lib/conf.d/_GV_template.php:762 msgid "reglages:: Activation de l'authentification smtp" msgstr "" -#: lib/conf.d/_GV_template.php:765 +#: lib/conf.d/_GV_template.php:768 msgid "reglages:: Hote SMTP" msgstr "" -#: lib/conf.d/_GV_template.php:771 +#: lib/conf.d/_GV_template.php:774 msgid "reglages:: Port SMTP" msgstr "" -#: lib/conf.d/_GV_template.php:777 +#: lib/conf.d/_GV_template.php:780 msgid "reglages:: Utiliser une conenction SSL" msgstr "" -#: lib/conf.d/_GV_template.php:783 +#: lib/conf.d/_GV_template.php:786 msgid "reglages:: User SMTP" msgstr "" -#: lib/conf.d/_GV_template.php:789 +#: lib/conf.d/_GV_template.php:792 msgid "reglages:: Mot de passe SMTP" msgstr "" -#: lib/conf.d/_GV_template.php:794 +#: lib/conf.d/_GV_template.php:797 msgid "GV::section:: Exports FTP" msgstr "" -#: lib/conf.d/_GV_template.php:799 +#: lib/conf.d/_GV_template.php:802 msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" msgstr "FTP اتاحة امكانية تصدير أو عدمها ب" -#: lib/conf.d/_GV_template.php:805 +#: lib/conf.d/_GV_template.php:808 msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" msgstr "تمكين المستخدمين من الإستصدار اذا لا = الادارة فقط" -#: lib/conf.d/_GV_template.php:810 +#: lib/conf.d/_GV_template.php:813 msgid "GV::section:: Configuration du client" msgstr "" -#: lib/conf.d/_GV_template.php:822 +#: lib/conf.d/_GV_template.php:818 +msgid "Maximum megabytes allowed in download (if request is bigger, then mail is still available)" +msgstr "" + +#: lib/conf.d/_GV_template.php:824 msgid "reglages:: position de l'onglet de recherche" msgstr "ترتيب العرض في تبويب البحث الاول من اليسار" -#: lib/conf.d/_GV_template.php:828 +#: lib/conf.d/_GV_template.php:830 msgid "reglages:: position de l'onglet de recherche avancee" msgstr "موضع التبويب في البحث المتقدم" -#: lib/conf.d/_GV_template.php:834 +#: lib/conf.d/_GV_template.php:836 msgid "reglages:: position de l'onglet des topics" msgstr "موضع تبويب الواجهات" -#: lib/conf.d/_GV_template.php:840 +#: lib/conf.d/_GV_template.php:842 msgid "reglages:: numero de l'onglet actif" msgstr "رقم التبويب المشغل" -#: lib/conf.d/_GV_template.php:846 +#: lib/conf.d/_GV_template.php:848 msgid "reglages:: rendu des topics" msgstr "خيارات عرض الواجهات" -#: lib/conf.d/_GV_template.php:859 +#: lib/conf.d/_GV_template.php:861 msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" msgstr "تمكين عرض الصور المصغرة في نافذة عرض التفاصيل عند تمرير الفأرة" -#: lib/conf.d/_GV_template.php:865 +#: lib/conf.d/_GV_template.php:867 msgid "reglages:: Voir le rollover sur les elements du chutier" msgstr "تمكين العرض عند تمرير الفأرة على الصور المصغرة في السلال" -#: lib/conf.d/_GV_template.php:871 +#: lib/conf.d/_GV_template.php:873 msgid "reglages:: Presentation des collections" msgstr "إدارة المجموعات" -#: lib/conf.d/_GV_template.php:878 +#: lib/conf.d/_GV_template.php:880 msgid "reglages:: Voir taille HD total des doc d'un chutiers" msgstr "إظهار الحجم الكلي للسلة أي مجموع أحجام الوثائق في السلة" -#: lib/conf.d/_GV_template.php:884 +#: lib/conf.d/_GV_template.php:886 msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" msgstr "عرض تبويب المقترحات تلقائيا من القاموس إن وجد" -#: lib/conf.d/_GV_template.php:890 +#: lib/conf.d/_GV_template.php:892 msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" msgstr "توجيه لامستخدمين الضيوف الذين يرغبون في التنزيل الى المصادقة" -#: lib/conf.d/_GV_template.php:895 +#: lib/conf.d/_GV_template.php:897 msgid "GV::section:: Parametrage de l'inscription" msgstr "" -#: lib/conf.d/_GV_template.php:900 +#: lib/conf.d/_GV_template.php:902 msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" msgstr "إخفاء قائمة المجموعات للمستخدم في استمارة التسجيل الذي سيتم على كافة المجموعات المؤهلة" -#: lib/conf.d/_GV_template.php:906 +#: lib/conf.d/_GV_template.php:908 msgid "reglages:: Activation de l'autoinscription" msgstr "تمكين القبول الذاتي للمستخدمين الذين لديهم تصديق على جميع مراحل التسجيل" -#: lib/conf.d/_GV_template.php:911 +#: lib/conf.d/_GV_template.php:913 msgid "GV::section:: Configuration du push" msgstr "" -#: lib/conf.d/_GV_template.php:916 +#: lib/conf.d/_GV_template.php:918 msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" msgstr "" -#: lib/conf.d/_GV_template.php:928 +#: lib/conf.d/_GV_template.php:930 msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" msgstr "مدة الصلاحية بالأيام للوصلات المولدة الخاصة بعملية التحقق من الصحة ، 0 لفترة غير محدودة" -#: lib/conf.d/_GV_template.php:933 +#: lib/conf.d/_GV_template.php:935 msgid "GV::section:: Indexation par les robots" msgstr "" -#: lib/conf.d/_GV_template.php:938 +#: lib/conf.d/_GV_template.php:940 msgid "reglages :: Titre de l'installation" msgstr "" -#: lib/conf.d/_GV_template.php:944 +#: lib/conf.d/_GV_template.php:946 msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" msgstr "" -#: lib/conf.d/_GV_template.php:950 +#: lib/conf.d/_GV_template.php:952 msgid "reglages :: Description de l'installation" msgstr "" -#: lib/conf.d/_GV_template.php:956 +#: lib/conf.d/_GV_template.php:958 msgid "reglages:: identifiant google analytics" msgstr "" -#: lib/conf.d/_GV_template.php:962 +#: lib/conf.d/_GV_template.php:964 msgid "Allow the website to be indexed by search engines like Google" msgstr "" -#: lib/conf.d/_GV_template.php:968 +#: lib/conf.d/_GV_template.php:970 msgid "reglages:: Afficher le bandeau Google Chrome Frame" msgstr "" @@ -2424,7 +2456,7 @@ msgstr "تسجيل الدخول" msgid "admin::compte-utilisateur mot de passe" msgstr "كلمة السر" -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 +#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:112 msgid "report::Heures" msgstr "" @@ -2445,7 +2477,7 @@ msgid "boutton::editer" msgstr "" #: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:78 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1436 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1437 msgid "boutton::supprimer" msgstr "حذف" @@ -2470,6 +2502,95 @@ msgstr "" msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "" +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:36 +msgid "Vous avez recu un nouveau panier" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:38 +msgid "rafraichir" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:90 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:106 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:252 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:440 +msgid "action::exporter" +msgstr "استصدار" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:117 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:263 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:451 +msgid "action::editer" +msgstr "تحرير" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:142 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:303 +msgid "action::Valider" +msgstr "موافق" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:219 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "لقد ارسلت سلة من أجل المصادقة" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:232 +msgid "paniers:: panier recu de %pusher%" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:279 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:285 +msgid "action::renommer" +msgstr "اعادة تسمية" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:320 +msgid "Archive" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:332 +msgid "action : supprimer" +msgstr "حذف" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:341 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:347 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:475 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:483 +msgid "Re-ordonner" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:466 +msgid "action::detacher" +msgstr "إطلاق من منطقة السلة" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:692 +msgid "delete" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:783 +msgid "panier:: ordre du panier" +msgstr "مصدر السلة" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:791 +msgid "panier:: ordre Validation ascendante" +msgstr "الاحسن تقييما" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:799 +msgid "panier:: ordre Validation descendante" +msgstr "أقل تقييما" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:845 +msgid "L'utilisateur approuve ce document" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:851 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:857 +msgid "L'utilisateur desapprouve ce document" +msgstr "" + #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:47 msgid "Users" msgstr "" @@ -2665,37 +2786,37 @@ msgstr "%s حذف من الفيش الكلمة المرشحة" #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:860 msgid "prod::thesaurusTab:tree:loading" msgstr "تحميل" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1232 msgid "boutton::ok" msgstr "موافق" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1258 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1284 msgid "prod::thesaurusTab:dlg:OK" msgstr "موافق" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1265 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1291 msgid "prod::thesaurusTab:dlg:Annuler" msgstr "إلغاء" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1316 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1326 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "قبول كمرادف" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1408 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1427 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "عوض ب" @@ -2864,6 +2985,10 @@ msgstr "" msgid "report:: 2 - Bases" msgstr "" +#: tmp/cache_twig/12/0a/b3d79d1d4e6aa2159ebb650983c4.php:55 +msgid "Voulez-vous dire %link% ?" +msgstr "" + #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 msgid "Ajouter une publication" msgstr "" @@ -2917,6 +3042,58 @@ msgstr "" msgid "validation::envoyer mon rapport" msgstr "" +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:14 +msgid "You are not authorized to do this" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:21 +msgid "About Roles : " +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:26 +msgid "Admin can edit shares, modify content" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:32 +msgid "Editor can modify content" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:38 +msgid "Access user have readonly access" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:46 +msgid "Find a user" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:83 +msgid "You are Admin" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:92 +msgid "Role" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:105 +msgid "Access" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:118 +msgid "Editor" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:131 +msgid "Admin" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:147 +msgid "Remove" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:156 +msgid "Notify" +msgstr "" + #: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 msgid "notice" msgstr "" @@ -2929,6 +3106,10 @@ msgstr "" msgid "action : exporter" msgstr "صدّر" +#: tmp/cache_twig/15/06/d2e85f3a9ae09f5a6f26a134bc0d.php:37 +msgid "%nb_records% records" +msgstr "" + #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 msgid "First Name" msgstr "" @@ -2946,7 +3127,6 @@ msgid "Job" msgstr "" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:174 msgid "Company" msgstr "" @@ -2954,33 +3134,40 @@ msgstr "" msgid "City" msgstr "" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:87 +msgid "Add" msgstr "" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 -msgid "Add" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:91 +msgid "Cancel" msgstr "" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:23 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:17 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:23 msgid "boutton::precedent" msgstr "" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:29 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:29 msgid "boutton::demarrer" msgstr "" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:35 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:35 msgid "boutton::pause" msgstr "" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:41 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:47 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:41 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:47 msgid "boutton::suivant" msgstr "" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:53 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:53 msgid "boutton::telecharger" msgstr "تحميل" @@ -2992,40 +3179,60 @@ msgstr "" msgid "En cours d'envoi" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:28 msgid "List Name" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:37 +msgid "Save" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:59 +msgid "Share the list" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:64 msgid "Set sharing permission" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:79 +msgid "Delete" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:101 +msgid "%length% peoples" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:107 +msgid "Edit" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 +msgid "View" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:208 msgid "Activite" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:214 msgid "Template" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:226 msgid "Country" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:232 msgid "Position" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 -msgid "%length% peoples" +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:241 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:266 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:291 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:317 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:343 +msgid "All" msgstr "" #: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 @@ -3036,11 +3243,11 @@ msgstr "" msgid "lightbox::recaptitulatif" msgstr "" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:121 msgid "validation:: OUI" msgstr "" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:136 msgid "validation:: NON" msgstr "" @@ -3112,6 +3319,7 @@ msgid "action : ajouter au panier" msgstr "أضف سلةً" #: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 msgid "action : print" msgstr "الطباعة" @@ -3199,234 +3407,230 @@ msgstr "" msgid "Unable to connect to MySQL server" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:435 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:441 msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:451 msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:517 +msgid "Prerequisite and Configuration" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:551 msgid "Executables externes" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:594 msgid "Required field" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:618 msgid "Phraseanet may require many binaries." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:624 msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:630 msgid "Don't worry, You can modify your configuration later" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:669 msgid "Creation de votre compte" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:681 msgid "Votre adresse email" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:688 msgid "Votre mot de passe" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 msgid "Confirmation de votre mot de passe" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:717 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "بخصوص تأمين كلمة المرور" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:721 msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" msgstr "كلمات المرور يجب أن تكون مختلفة بصورة واضحة عن تسجيل الدخول وتحتوي على ما لا يقل عن نوعين اثنين من بين الأحرف التالية :" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:726 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "خاصة" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:730 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "أحرف كبيرة" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:734 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "أحرف صغيرة" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:738 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "رقمية" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:758 msgid "Your email will be used to log in the application." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:762 msgid "Please be sure it is still valid and you can access it" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:820 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1104 msgid "MySQL database connection parameters" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:827 msgid "phraseanet:: adresse" msgstr "عنوان" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:834 msgid "Database user" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:848 msgid "phraseanet:: port" msgstr "منفذ" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:855 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1119 msgid "Database" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:863 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1127 msgid "boutton::tester" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:883 msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:902 msgid "ApplicationBox is a Mysql database." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:908 msgid "It stores users datas, rights, and references to DataBoxes where records are stored." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:920 msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:964 msgid "setup::Configuration des repertoires de stockage" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:976 msgid "Repertoire de stockage des fichiers" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:983 msgid "Repertoire de stockage des imagettes" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:990 msgid "Point de montage des imagettes (voir aide ci dessous)" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:999 msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1004 msgid "Exemple Apache" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 msgid "Exemple Nginx" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1042 msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1048 msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1054 msgid "If you plan to store large files, be sure it will fit in these directories." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 msgid "setup::Configuration de la base de stockage DataBox" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1111 msgid "Ne pas creer de DataBox maintenant" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1139 msgid "Modele de donnees" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1170 msgid "Creation des taches" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1175 msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1186 msgid "Creer la tache d'ecriture des metadonnees" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1195 msgid "Creer la tache de creation des sous-definitions" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1204 msgid "Creer la tache d'indexation" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1221 msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1225 msgid "Databoxes store records, metadatas and their classifications" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1246 msgid "button::Install" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1256 msgid "Install in progess" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1262 msgid "Installation is currenlty processing, please wait..." msgstr "" @@ -3435,66 +3639,45 @@ msgid "validation:: editer ma note" msgstr "" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 msgid "action : editer" msgstr "حرِّر" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 msgid "action : status" msgstr "خصائص" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 msgid "action : collection" msgstr "نقل" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 msgid "action : push" msgstr "دفع" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:89 +msgid "Feedback" +msgstr "" + +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:100 msgid "action : bridge" msgstr "" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 msgid "action : publier" msgstr "" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:119 msgid "action : outils" msgstr "أدوات" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "حذف" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:135 msgid "Certaines donnees du panier ont change" msgstr "" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 msgid "Votre recherche ne retourne aucun resultat" msgstr "" -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." msgstr "" @@ -3631,473 +3814,426 @@ msgstr "" msgid "phraseanet:: panier" msgstr "سلة" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:361 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:365 msgid "phraseanet:: propositions" msgstr "مقترحات" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:373 msgid "phraseanet:: thesaurus" msgstr "قاموس" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:384 +msgid "Close the WorkZone" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "الجميع" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "صفر" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "جميع المجالات" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "من" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "إلى" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:410 msgid "prod::thesaurusTab:thesaurus" msgstr "قاموس" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:414 msgid "prod::thesaurusTab:candidats" msgstr "مرشح" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:426 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "قبول المرشح" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:432 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "تبديل بالكلمة" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:832 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1090 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:439 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:707 msgid "boutton::rechercher" msgstr "بحث" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:552 msgid "chargement" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:581 msgid "prod::thesaurusTab:dlg:supprimer le terme ?" msgstr "حذف الكلمة؟" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:587 msgid "prod::thesaurusTab:dlg:accepter le terme ?" msgstr "قبول الكلمة؟" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:593 msgid "prod::thesaurusTab:dlg:remplacer le terme ?" msgstr "تبديل بالكلمة؟" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:609 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:613 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:617 msgid "action:: nouveau panier" msgstr "سلة جديدة" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:624 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:628 msgid "Browse Baskets" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:635 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:639 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:643 msgid "action:: nouveau reportage" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:652 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:656 msgid "phraseanet:: tri par date" msgstr "تصنيف حسب التاريخ" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:664 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:668 msgid "phraseanet:: tri par nom" msgstr "تصنيف حسب الإسم" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:676 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1589 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1761 msgid "Preferences" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:702 +msgid "Advanced Search" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:720 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1194 msgid "phraseanet::type:: documents" msgstr "وثائق" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 msgid "phraseanet::type:: reportages" msgstr "ريبورتاجات" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:740 msgid "Tout type" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:744 msgid "Image" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:748 msgid "Video" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:752 msgid "Audio" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:756 msgid "Document" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 msgid "Flash" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:788 +msgid "boutton:: selectionner toutes les bases" +msgstr "الجميع" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:793 +msgid "boutton:: selectionner aucune base" +msgstr "صفر" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:808 +msgid "Re-initialiser" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:816 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:850 +msgid "Trier par " msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:821 +msgid "pertinence" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +msgid "date dajout" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:829 +msgid "aleatoire" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:835 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:887 +msgid "descendant" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:839 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:891 +msgid "ascendant" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:844 +msgid "rechercher par stemme" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:902 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:908 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1092 +msgid "rechercher dans tous les champs" +msgstr "جميع المجالات" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:954 +msgid "Status des documents a rechercher" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1060 +msgid "Rechercher dans un champ date" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1102 +msgid "phraseanet::time:: de" +msgstr "من" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +msgid "phraseanet::time:: a" +msgstr "إلى" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1169 msgid "Select" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1176 msgid "reponses:: selectionner tout" msgstr "الكل" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1182 msgid "reponses:: selectionner rien" msgstr "لاشئ" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1188 msgid "phraseanet::type:: images" msgstr "صور" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1200 msgid "phraseanet::type:: videos" msgstr "فيديوات" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1206 msgid "phraseanet::type:: audios" msgstr "صوتيات" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1222 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1355 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1455 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1492 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 msgid "Select an action" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1643 msgid "raccourci :: a propos des raccourcis claviers" msgstr "حول اختصارات لوحة المفاتيح" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1648 msgid "Raccourcis claviers en cours de recherche : " msgstr "اختصارات النافذة الرئيسية " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1653 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1689 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a اختيار الكل " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1657 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1693 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p طباعة المختارات " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1661 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1697 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e تحرير المختارات " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1665 msgid "Raccourcis::fleche gauche : page precedente " msgstr "سهم لليسار : الصفحة السابقة " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1669 msgid "Raccourcis::fleche droite : page suivante " msgstr "السهم الأيمن : الصفحة التالية " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1673 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "السهم الأعلى : التمرير إلى أعلى " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1677 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "السهم الأسفل : التمرير الى الأسفل " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1684 msgid "Raccourcis claviers de la zone des paniers : " msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1704 msgid "Raccourcis claviers en cours de editing : " msgstr "الاختصار الى نافذة التحرير " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1709 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab للانتقال الى مختلف المجالات " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 msgid "Raccourcis claviers en cours de preview : " msgstr "الاختصار الى نافذة العرض التفصيلي " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1721 msgid "Raccourcis::fleche gauche : en avant " msgstr "السهم الأيمن : الوثيقة التالية " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1725 msgid "Raccourcis::fleche gauche : en arriere " msgstr "سهم لليسار : الوثيقة السابقة " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1729 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "بداية عرض الشرائح " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1737 msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "echap يمكنك إغلاق معظم نوافذ بالضغط على مفتاح الهروب " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1747 msgid "raccourcis :: ne plus montrer cette aide" msgstr "لا تظهر هذه المساعدة من جديد" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1767 msgid "Affichage" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1771 msgid "Configuration" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1779 msgid "Mode de presentation" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1793 msgid "reponses:: mode vignettes" msgstr "مصغرات" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1803 msgid "reponses:: mode liste" msgstr "قائمة" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1809 msgid "Theme" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1818 msgid "Selecteur de theme" msgstr "منتقي الواجهات" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1840 msgid "Presentation de vignettes" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1851 msgid "Iconographe (description au rollover)" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1863 msgid "Graphiste (preview au rollover)" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1873 msgid "Informations techniques" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1884 msgid "Afficher" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1896 msgid "Afficher dans la notice" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1908 msgid "Ne pas afficher" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1918 msgid "Type de documents" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1929 msgid "Afficher une icone" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1937 msgid "reponses:: images par pages : " msgstr "النتائج بالصفحة " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1950 msgid "reponses:: taille des images : " msgstr "حجم الصور " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1964 msgid "Couleur de selection" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1969 msgid "choisir" msgstr "اختيار" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1979 msgid "Affichage au demarrage" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1995 msgid "Ma derniere question" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2006 msgid "Une question personnelle" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 msgid "Aide" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2078 msgid "preview:: Description" msgstr "وصف" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2082 msgid "preview:: Historique" msgstr "سابق" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2089 msgid "preview:: Popularite" msgstr "شعبية" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2142 msgid "Presentation de vignettes de panier" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2159 msgid "Afficher les status" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2177 msgid "Afficher la fiche descriptive" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2195 msgid "Afficher le titre" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "" - #: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 msgid "preview::statistiques de visualisation pour le lien" msgstr "إحصائيات المعاينة" @@ -4279,20 +4415,32 @@ msgstr "" msgid "Ajouter a" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:21 msgid "Fail" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:27 msgid "Success" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:75 +msgid "Hello %username%" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:90 +msgid "Erreur" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:97 +msgid "%error%" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:113 +msgid "Code d'accès" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:120 +msgid "Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis :" msgstr "" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 @@ -4311,31 +4459,31 @@ msgstr "" msgid "Edition des droits de %number% utilisateurs" msgstr "" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:698 msgid "admin::compte-utilisateur sexe" msgstr "الجنس" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:709 msgid "admin::compte-utilisateur:sexe: mademoiselle" msgstr "آنسة" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:717 msgid "admin::compte-utilisateur:sexe: madame" msgstr "سيدة" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:725 msgid "admin::compte-utilisateur:sexe: monsieur" msgstr "سيد" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:760 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:790 msgid "admin::compte-utilisateur code postal" msgstr "الرمز البريدي" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:774 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:804 msgid "admin::compte-utilisateur ville" msgstr "المدينة" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:818 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:848 msgid "admin::compte-utilisateur activite" msgstr "نشاط" @@ -4368,25 +4516,25 @@ msgid "panier:: description" msgstr "وصف" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:280 msgid "No results" msgstr "" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:286 msgid "1 result" msgstr "" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:292 msgid "%Total% results" msgstr "" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:189 msgid "Received from %user_name%" msgstr "" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:240 msgid "Sent for validation to %list_participants%" msgstr "" @@ -4451,19 +4599,23 @@ msgstr "" msgid "Creer un utilisateur" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:288 +msgid "Successful install" +msgstr "" + +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:311 msgid "Ajouter un nouvel utilisateur" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:316 msgid "Adresse email du nouvel utilisateur" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:324 msgid "Creer un modele" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:329 msgid "Nom du nouveau modele" msgstr "" @@ -4480,11 +4632,6 @@ msgid "Story name" msgstr "" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:47 -msgid "Story description" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:53 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:28 msgid "Ajouter ma selection courrante" msgstr "أضف الى الإختيارات الحالية" @@ -4553,12 +4700,24 @@ msgstr "" msgid "Lists" msgstr "" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:27 msgid "Refresh" msgstr "" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -msgid "Delete" +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:63 +msgid "(%length%)" +msgstr "" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:16 +msgid "Reordonner automatiquement" +msgstr "" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:21 +msgid "Choisir" +msgstr "" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:38 +msgid "Inverser" msgstr "" #: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 @@ -4577,11 +4736,11 @@ msgstr "" msgid "Aucun bridge disponible. Veuillez contacté un administrateur." msgstr "" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:509 msgid "Vous n'avez pas assez de droits sur les elements selectionnes" msgstr "" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:516 msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" msgstr "" @@ -4593,107 +4752,111 @@ msgstr "" msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:122 msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:145 msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:147 msgid "La precedente attribution a ete desactivee" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:223 msgid "Attention !" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:282 msgid "boutton::ajouter" msgstr "إضافة" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:300 msgid "Nom" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:312 msgid "DublinCore Element Set" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:318 msgid "Multivalue" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:324 msgid "Indexable" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:330 msgid "Vocabulary Type" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:336 msgid "Vocabulary restricted" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:348 msgid "Lecture seule" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:354 msgid "Type" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:360 msgid "Separateur" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:366 msgid "Branche Thesaurus" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:372 msgid "Affiche dans report" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:378 msgid "Afficher en titre" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:483 msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:582 msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:786 msgid "Tous" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:794 +msgid "Aucun" +msgstr "" + +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:802 msgid "Francais" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:810 msgid "Allemand" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:818 msgid "Anglais" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:826 msgid "Arabe" msgstr "" @@ -4760,12 +4923,10 @@ msgid "%basket_length% documents" msgstr "" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 msgid "Suppression de %n_element% videos" msgstr "" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 msgid "Etes vous sur de supprimer %number% videos ?" msgstr "" @@ -4807,32 +4968,36 @@ msgstr "" msgid "Which playlist you want to put you %number% elements into ?" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -msgid "mauvais login / mot de passe" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:74 +msgid "Erreur de login / mot de passe" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:82 +msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" +msgid "Se connecter" msgstr "" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" +msgid "Problèmes de connexion ?" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:134 +msgid "Autorisation d'accès" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:145 +msgid "Autorisez-vous l'application \"%application_name%\" à accéder à votre contenu sur %home_title% ?" +msgstr "" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:175 +msgid "Autoriser" +msgstr "" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:199 +msgid "Ne pas autoriser" msgstr "" #: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 @@ -4900,144 +5065,102 @@ msgstr "" msgid "You are not the feed owner" msgstr "" -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "لقد ارسلت سلة من أجل المصادقة" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:309 -msgid "action::exporter" -msgstr "استصدار" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:320 -msgid "action::editer" -msgstr "تحرير" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "اعادة تسمية" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "موافق" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:194 -msgid "Archive" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:335 -msgid "action::detacher" -msgstr "إطلاق من منطقة السلة" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:561 -msgid "delete" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:652 -msgid "panier:: ordre du panier" -msgstr "مصدر السلة" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:660 -msgid "panier:: ordre Validation ascendante" -msgstr "الاحسن تقييما" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:668 -msgid "panier:: ordre Validation descendante" -msgstr "أقل تقييما" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur approuve ce document" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:717 -msgid "L'utilisateur desapprouve ce document" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:723 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "" - #: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 msgid "validation:: note" msgstr "" -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:32 +msgid "Grant rights" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:43 +msgid "Contributor" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:51 +msgid "See others" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:62 msgid "HD Download" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:79 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:444 +msgid "List Manager" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 +msgid "Save this list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:162 +msgid "Select a user in the list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:166 +msgid "or" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:169 +msgid "Add user" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:256 +msgid "and %n% more peoples" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:277 +msgid "Please consider send this validation to the following users : %recommendation%" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:286 +msgid "Users suggestion" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:334 msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" msgstr "" "دفع يمكن من إرسال مجموعة من الصور للمتلقي \n" "المستفيدون سيتلقون بريدا مع وجود صلة تطلق صندوق عرض الصور والوثائق وطلب التعليق و/أو التحميل.\n" "المصادقة متوفرة على شكل سلة للمستخدمين المسجلين" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:340 +msgid "Push::une validation est une demande d'appreciation a d'autres personnes" msgstr "" +"انقر لإرسال طلب للحصول على تعليقات على مجموعة مختارة من الوثائق للمستفيدين.\n" +"المستفيدون سيتلقون بريدا مع وجود صلة تطلق صندوق عرض الصور والوثائق وطلب التعليق و/أو التحميل.\n" +"المصادقة متوفرة على شكل سلة للمستخدمين المسجلين" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 -msgid "List Manager" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:361 msgid "Select all" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:365 msgid "Deselect all" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:411 +msgid "Send" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:429 msgid "Back to Push" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:435 +msgid "Back to Feedback" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:462 msgid "Welcome to the ListManager !" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:471 msgid "Start by creating one by using the \"add\" button on the left !" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:480 msgid "Select a list on the left and edit it !" msgstr "" @@ -5045,46 +5168,27 @@ msgstr "" msgid "Do you want to send your report ?" msgstr "" -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 -msgid "Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" -"انقر لإرسال طلب للحصول على تعليقات على مجموعة مختارة من الوثائق للمستفيدين.\n" -"المستفيدون سيتلقون بريدا مع وجود صلة تطلق صندوق عرض الصور والوثائق وطلب التعليق و/أو التحميل.\n" -"المصادقة متوفرة على شكل سلة للمستخدمين المسجلين" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 -msgid "Back to Feedback" -msgstr "" - #: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 msgid "report:: Volumetrie des questions posees sur %home_title%" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:89 msgid "Site web" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:104 msgid "Type d'application" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:108 msgid "Application web" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:115 msgid "Application desktop" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:128 msgid "URL de callback" msgstr "" @@ -5145,7 +5249,6 @@ msgid "2000 caracteres maximum" msgstr "" #: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:170 -#: tmp/cache_twig/bd/a8/2c59a65e6a28629b0d4eecf283e3.php:139 msgid "Categorie" msgstr "" @@ -5165,15 +5268,15 @@ msgstr "" msgid "Retour" msgstr "" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:31 msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" msgstr "" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:37 msgid "cocher tout" msgstr "" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:44 msgid "tout decocher" msgstr "" @@ -5275,130 +5378,134 @@ msgstr[1] "" msgid "Edition de 1 element" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:174 msgid "Aucun statut editable" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:180 msgid "Les status de certains documents ne sont pas accessible par manque de droits" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:258 msgid "boutton::remplacer" msgstr "إستبدال" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:295 msgid "phraseanet:: presse-papier" msgstr "الحافظة" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:303 msgid "prod::editing: rechercher-remplacer" msgstr "بحث / استبدال" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:307 msgid "prod::editing: modeles de fiches" msgstr "نماذج" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:335 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:333 msgid "phraseanet::chargement" msgstr "جاري التحميل" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:355 msgid "prod::editing::replace: remplacer dans le champ" msgstr "استبدال في الحقل" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:361 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "استبدال في كل الحقول" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:386 msgid "prod::editing:replace: chaine a rechercher" msgstr "ايجاد" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:393 msgid "prod::editing:remplace: chaine remplacante" msgstr "استبدال ب" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:400 msgid "prod::editing:remplace: options de remplacement" msgstr "خيارات" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:406 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "عبارة اعتيادية" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:437 msgid "Aide sur les expressions regulieres" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:445 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "استبدال الجميع" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:451 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "لا يهم احترام نوعية الاحرف" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:458 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "حقل تام" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:464 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "موجودة في الحقل" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:470 msgid "prod::editing:remplace::option respecter la casse" msgstr "احترم حجم الحروف" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:522 msgid "prod::editing:indexation en cours" msgstr "جاري الفهرسة" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:545 msgid "prod::editing: valider ou annuler les modifications" msgstr "تأكيد أو إلغاء التغييرات" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:552 msgid "edit::preset:: titre" msgstr "العنوان" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:561 msgid "Edition impossible" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:570 msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" msgstr "لا يمكن تحرير وثائق قادمة من قواعد بيانات مختلفة في وقت واحد" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:576 msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:612 msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:618 msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "سلة لا تحتوي على أي وثيقة" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:778 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:815 msgid "edit: chosiir limage du regroupement" msgstr "تعيين كصورة رئيسية" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:859 msgid "prod::editing::fields: status " msgstr "وضع " -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:914 msgid "Ce champ est decrit comme un element DublinCore" msgstr "" +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:923 +msgid "This field is represent the title of the document" +msgstr "" + #: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" msgstr "" @@ -5411,51 +5518,51 @@ msgstr "" msgid "report::Edition des meta-donnees" msgstr "نشر البيانات الوصفية" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:91 +msgid "report::Changement de collection vers : %coll_name%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:97 msgid "report::Edition des status" msgstr "تعديل الضعية" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:106 msgid "report::Impression des formats : %format%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:115 msgid "report::Substitution de %dest%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:124 msgid "report::Publication de %dest%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:133 msgid "report::Telechargement de %dest%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:145 msgid "Envoi par mail a %dest% de %content%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:157 msgid "Envoi par ftp a %dest% de %content%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:163 msgid "report::supression du document" msgstr "إزالة الوثيقة" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:169 msgid "report::ajout du documentt" msgstr "إضافة الوثيقة" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:175 msgid "report::Modification du document -- je ne me souviens plus de quoi..." msgstr "عملية غير معروفة على الوثيقة" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:192 msgid "report:: par %user_infos%" msgstr "" @@ -5471,23 +5578,23 @@ msgstr "" msgid "Les parametres oauth de votre application." msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:123 msgid "Votre token d'access" msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:127 msgid "Les paramétres oauth de votre application." msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:135 msgid "Token" msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:151 msgid "Le token n'a pas encore ete genere" msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:165 msgid "boutton::generer" msgstr "" @@ -5624,51 +5731,51 @@ msgstr "" msgid "Vous devez selectionner un type de sous definitions" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "" - #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 -msgid "You can alternatively receive an email when the download is ready." +msgid "You can not directly download more than %max_download% Mo ; time to package all documents is too long" msgstr "" #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 +msgid "You can alternatively receive an email when the download is ready." +msgstr "" + +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:960 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1127 msgid "phraseanet:: utiliser SSL" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1179 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Utiliser le mode passif" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1199 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "عدد المحاولات" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1217 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "ملف الوصول" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1235 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1265 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1307 msgid "Nom des fichiers a l'export" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1320 msgid "export::titre: titre du documument" msgstr "العنوان" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1334 msgid "export::titre: nom original du document" msgstr "الاسم الأصلي" @@ -5776,82 +5883,90 @@ msgstr "" msgid "boutton::enregistrer" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:43 msgid "Login" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:61 msgid "First/Last Name" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:97 msgid "E-Mail" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:133 msgid "Last Template" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:151 msgid "Creation date" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:271 +msgid "Previous" +msgstr "" + +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:288 +msgid "Next" +msgstr "" + +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:219 msgid "Create new subdef" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:223 msgid "Delete the subdef ?" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:229 msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:240 msgid "Subdef name" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:245 msgid "classe d'acces" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:254 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:382 msgid "preview" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:258 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:390 msgid "tout le monde" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:336 msgid "Telechargeable" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:354 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:366 msgid "classe" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 msgid "Baseurl" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:435 msgid "Write Metas" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:456 msgid "mediatype" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:637 msgid "yes" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:646 msgid "no" msgstr "" @@ -6061,15 +6176,15 @@ msgstr "" msgid "Back to basket list" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:163 msgid "No records" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:169 msgid "1 record" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:175 msgid "%ElementsCount% records" msgstr "" @@ -6093,13 +6208,29 @@ msgstr "" msgid "Aucune" msgstr "" -#: www/admin/adminFeedback.php:297 -#: www/admin/database.php:212 +#: www/admin/adminFeedback.php:69 +msgid "Base empty successful" +msgstr "" + +#: www/admin/adminFeedback.php:85 +#: www/admin/adminFeedback.php:118 +msgid "A task has been creted, please run it to complete empty collection" +msgstr "" + +#: www/admin/adminFeedback.php:91 +#: www/admin/adminFeedback.php:123 +msgid "An error occurred" +msgstr "" + +#: www/admin/adminFeedback.php:96 +msgid "Collection empty successful" +msgstr "" + +#: www/admin/adminFeedback.php:316 msgid "admin::base: aucun alias" msgstr "لا كنيات" -#: www/admin/adminFeedback.php:387 -#: www/admin/database.php:255 +#: www/admin/adminFeedback.php:406 msgid "admin::base: vider la base avant de la supprimer" msgstr "تفريغ قاعدة البيانات قبل الحذف" @@ -6144,119 +6275,120 @@ msgstr "خطأ في إرسال الملف" msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "تأكيد تفريغ نشر هذه المجموعة" -#: www/admin/collection.php:302 +#: www/admin/collection.php:303 msgid "admin::base:collection: etes vous sur de demonter cette collection ?" msgstr "تأكيد تفكيك هذه المجموعة" -#: www/admin/collection.php:316 +#: www/admin/collection.php:317 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "تأكيد نشر هذه المجموعة" -#: www/admin/collection.php:321 +#: www/admin/collection.php:322 msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" msgstr "تأكيد توقيف نشر هذه المجموعة" -#: www/admin/collection.php:391 -#: www/admin/database.php:430 +#: www/admin/collection.php:392 +#: www/admin/database.php:431 msgid "phraseanet:: collection" msgstr "مجموعة" -#: www/admin/collection.php:398 +#: www/admin/collection.php:399 msgid "admin::base:collection: numero de collection distante" msgstr "مجموعة بعيدة id" -#: www/admin/collection.php:402 +#: www/admin/collection.php:403 msgid "admin::base:collection: etat de la collection" msgstr "حالة المجموعة" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: activer la collection" msgstr "تفعيل المجموعة" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: descativer la collection" msgstr "تعطيل مجموعة" -#: www/admin/collection.php:413 -#: www/admin/database.php:398 +#: www/admin/collection.php:414 +#: www/admin/database.php:399 msgid "phraseanet:: details" msgstr "تفاصيل" -#: www/admin/collection.php:423 -#: www/admin/database.php:420 +#: www/admin/collection.php:424 +#: www/admin/database.php:421 msgid "admin::base: masquer les details" msgstr "إخفاء التفاصيل" -#: www/admin/collection.php:439 -#: www/admin/database.php:435 +#: www/admin/collection.php:440 +#: www/admin/database.php:436 msgid "admin::base: objet" msgstr "شيئ" -#: www/admin/collection.php:443 -#: www/admin/database.php:437 +#: www/admin/collection.php:444 +#: www/admin/database.php:438 msgid "admin::base: nombre" msgstr "عدد" -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 -#: www/admin/database.php:438 +#: www/admin/collection.php:447 +#: www/admin/collection.php:450 #: www/admin/database.php:439 +#: www/admin/database.php:440 msgid "admin::base: poids" msgstr "حجم" -#: www/admin/collection.php:590 +#: www/admin/collection.php:591 msgid "admin::collection:: Gestionnaires des commandes" msgstr "" -#: www/admin/collection.php:605 +#: www/admin/collection.php:606 msgid "setup:: ajouter un administrateur des commandes" msgstr "" -#: www/admin/collection.php:623 +#: www/admin/collection.php:624 msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" msgstr "Phraseanet عرض الخيارات للوثائق المشتركة خارج" -#: www/admin/collection.php:625 +#: www/admin/collection.php:626 msgid "admin::colelction::presentation des elements : rien" msgstr "افتراضي" -#: www/admin/collection.php:626 +#: www/admin/collection.php:627 msgid "admin::colelction::presentation des elements : watermark" msgstr "ملف وشم الصورة" -#: www/admin/collection.php:627 +#: www/admin/collection.php:628 msgid "admin::colelction::presentation des elements : stamp" msgstr "Stamp" -#: www/admin/collection.php:633 +#: www/admin/collection.php:634 msgid "admin::base:collection: renommer la collection" msgstr "إعادة تسمية" -#: www/admin/collection.php:640 +#: www/admin/collection.php:641 +#: www/admin/newcoll.php:142 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "الاسم " -#: www/admin/collection.php:665 +#: www/admin/collection.php:666 msgid "admin::base:collection: vider la collection" msgstr "تفريغ" -#: www/admin/collection.php:679 +#: www/admin/collection.php:680 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "" -#: www/admin/collection.php:692 +#: www/admin/collection.php:693 msgid "admin::base:collection: minilogo actuel" msgstr "الشعار المصغر الحالي" -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 -#: www/admin/database.php:724 +#: www/admin/collection.php:713 +#: www/admin/collection.php:743 +#: www/admin/database.php:725 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "لا ملف" -#: www/admin/collection.php:781 +#: www/admin/collection.php:782 msgid "admin::base:collection: image de presentation : " msgstr "صورة العرض " @@ -6290,7 +6422,7 @@ msgid "Confirmez-vous la re-indexation de la base ?" msgstr "" #: www/admin/database.php:174 -#: www/admin/database.php:378 +#: www/admin/database.php:379 msgid "admin::base: Alias" msgstr "كنية" @@ -6298,310 +6430,316 @@ msgstr "كنية" msgid "admin::base: Confirmer le vidage complet de la base" msgstr "تأكيد تفريغ كامل لقاعدة البيانات" -#: www/admin/database.php:259 +#: www/admin/database.php:260 msgid "admin::base: Confirmer la suppression de la base" msgstr "" -#: www/admin/database.php:286 +#: www/admin/database.php:287 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "log تأكيد حذف جميع تسجلات ال" -#: www/admin/database.php:312 +#: www/admin/database.php:313 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "تأكيد وقف نشر قاعدة البيانات" -#: www/admin/database.php:394 +#: www/admin/database.php:395 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "عدد التسجيلات" -#: www/admin/database.php:405 +#: www/admin/database.php:406 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "الكلمات الفريدة على قاعدة البيانات " -#: www/admin/database.php:410 +#: www/admin/database.php:411 msgid "admin::base: nombre de mots indexes sur la base" msgstr "الكلمات المفهرسة على قاعدة البيانات" -#: www/admin/database.php:417 +#: www/admin/database.php:418 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "الفاظ القاموس المفهرسة" -#: www/admin/database.php:471 +#: www/admin/database.php:472 msgid "admin::base: enregistrements orphelins" msgstr "تسجيلات يتيمة" -#: www/admin/database.php:505 -#: www/admin/database.php:522 +#: www/admin/database.php:506 +#: www/admin/database.php:523 msgid "report:: total" msgstr "مجموع" -#: www/admin/database.php:547 +#: www/admin/database.php:548 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "وثائق مفهرسة بالنص الكامل" -#: www/admin/database.php:557 +#: www/admin/database.php:558 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "وثائق مفهرسة بالقاموس" -#: www/admin/database.php:573 +#: www/admin/database.php:574 msgid "admin::base: Cette base est indexable" msgstr "يمكن فهرسة البيانات" -#: www/admin/database.php:580 +#: www/admin/database.php:581 msgid "base:: re-indexer" msgstr "إعادة فهرسة البيانات العملية قد تستغرق عدة ساعات حسب عدد الوثائق" -#: www/admin/database.php:588 +#: www/admin/database.php:589 +#: www/admin/newcoll.php:122 msgid "admin::base:collection: Creer une collection" msgstr "احداث مجموعة" -#: www/admin/database.php:600 +#: www/admin/database.php:601 msgid "admin::base:collection: Monter une collection" msgstr "" -#: www/admin/database.php:621 +#: www/admin/database.php:622 +#: www/admin/newcoll.php:152 msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " msgstr "تطبيق الحقوق و المستخدمين من الجموعة " -#: www/admin/database.php:635 +#: www/admin/database.php:636 msgid "Monter" msgstr "" -#: www/admin/database.php:649 +#: www/admin/database.php:650 msgid "Activer une collection" msgstr "" -#: www/admin/database.php:675 +#: www/admin/database.php:676 msgid "admin::base: supprimer tous les logs" msgstr "logs حذف جميع تسجلات ال" -#: www/admin/database.php:681 +#: www/admin/database.php:682 msgid "admin::base: arreter la publication de la base" msgstr "وقف نشر قاعدة البيانات" -#: www/admin/database.php:687 +#: www/admin/database.php:688 msgid "admin::base: vider la base" msgstr "تفريغ قاعدة البيانات" -#: www/admin/database.php:693 +#: www/admin/database.php:694 msgid "admin::base: supprimer la base" msgstr "حذف قاعدة البيانات" -#: www/admin/database.php:703 +#: www/admin/database.php:704 msgid "admin::base: logo impression PDF" msgstr "شعار الطباعة" -#: www/admin/database.php:716 +#: www/admin/database.php:717 msgid "admin::base:collection: supprimer le logo" msgstr "حذف شعار" -#: www/admin/database.php:739 +#: www/admin/database.php:740 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "إرسال شعار (jpeg 35px حد أقصى للإرتفاع)" -#: www/admin/databases.php:66 +#: www/admin/databases.php:67 msgid "Propositions de modifications des tables" msgstr "" -#: www/admin/databases.php:75 +#: www/admin/databases.php:76 msgid "N'oubliez pas de redemarrer le planificateur de taches" msgstr "" -#: www/admin/databases.php:82 +#: www/admin/databases.php:83 msgid "Veuillez arreter le planificateur avant la mise a jour" msgstr "" -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 +#: www/admin/databases.php:94 +#: www/admin/databases.php:140 +#: www/admin/databases.php:167 msgid "Database name can not contains special characters" msgstr "" -#: www/admin/databases.php:134 +#: www/admin/databases.php:129 msgid "Database does not exists or can not be accessed" msgstr "" -#: www/admin/databases.php:329 +#: www/admin/databases.php:318 msgid "admin::base: Version" msgstr "" -#: www/admin/databases.php:334 +#: www/admin/databases.php:323 msgid "update::Votre application necessite une mise a jour vers : " msgstr "" -#: www/admin/databases.php:340 +#: www/admin/databases.php:329 msgid "update::Votre version est a jour : " msgstr "إصدارك الاحدث " -#: www/admin/databases.php:346 +#: www/admin/databases.php:335 msgid "update::Verifier els tables" msgstr "إصلاح الجدول" -#: www/admin/databases.php:351 +#: www/admin/databases.php:340 msgid "admin::base: creer une base" msgstr "إنشاء قاعدة بيانات جديدة" -#: www/admin/databases.php:355 +#: www/admin/databases.php:344 msgid "phraseanet:: Creer une base sur un serveur different de l'application box" msgstr "عفوا ! لقد حدث خطأ ما" -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 +#: www/admin/databases.php:348 +#: www/admin/databases.php:400 msgid "phraseanet:: hostname" msgstr "اسم المضيف" -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 +#: www/admin/databases.php:354 +#: www/admin/databases.php:406 msgid "phraseanet:: user" msgstr "المستخدم" -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 +#: www/admin/databases.php:357 +#: www/admin/databases.php:409 msgid "phraseanet:: password" msgstr "منفذ" -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 +#: www/admin/databases.php:361 +#: www/admin/databases.php:413 msgid "phraseanet:: dbname" msgstr "اسم قاعدة البيانات" -#: www/admin/databases.php:375 +#: www/admin/databases.php:364 msgid "phraseanet:: Modele de donnees" msgstr "XML نماذج البنية" -#: www/admin/databases.php:397 +#: www/admin/databases.php:386 msgid "boutton::creer" msgstr "انشاء" -#: www/admin/databases.php:403 +#: www/admin/databases.php:392 msgid "admin::base: Monter une base" msgstr "ركب قاعدة بيانات" -#: www/admin/databases.php:407 +#: www/admin/databases.php:396 msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" msgstr "تركيب قاعدة البيانات من مضيف بعيد" -#: www/admin/databases.php:428 +#: www/admin/databases.php:417 msgid "boutton::monter" msgstr "تركيب" -#: www/admin/demand.php:366 +#: www/admin/demand.php:372 msgid "admin:: demandes en cours" msgstr "طلبات في الانتظار" -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 +#: www/admin/demand.php:377 +#: www/admin/demand.php:504 msgid "admin:: refuser l'acces" msgstr "منع الدخول" -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 +#: www/admin/demand.php:378 +#: www/admin/demand.php:507 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "ضبط نشر السلات" -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 +#: www/admin/demand.php:379 +#: www/admin/demand.php:510 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "القيود المفروضة على التحميل" -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 +#: www/admin/demand.php:380 +#: www/admin/demand.php:513 msgid "admin:: watermarquer les documents" msgstr "طبق وشم الصورة على المصغرات" -#: www/admin/demand.php:377 +#: www/admin/demand.php:383 msgid "admin::compte-utilisateur date d'inscription" msgstr "تسجيل" -#: www/admin/demand.php:378 +#: www/admin/demand.php:384 msgid "admin::collection" msgstr "مجموعة" -#: www/admin/demand.php:480 +#: www/admin/demand.php:486 msgid "admin:: appliquer le modele " msgstr "تطبيق النموذج " -#: www/admin/newcoll.php:42 +#: www/admin/newcoll.php:43 msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" msgstr "مجموعة لم تنشأ يجب إعطاء اسم للمجموعة" -#: www/admin/sessionwhois.php:58 +#: www/admin/newcoll.php:175 +msgid "Collection successfully created" +msgstr "" + +#: www/admin/sessionwhois.php:59 msgid "admin::monitor: utilisateur" msgstr "المستعمل" -#: www/admin/sessionwhois.php:59 +#: www/admin/sessionwhois.php:60 msgid "admin::monitor: modules" msgstr "وحدة" -#: www/admin/sessionwhois.php:61 +#: www/admin/sessionwhois.php:62 msgid "admin::monitor: date de connexion" msgstr "" -#: www/admin/sessionwhois.php:62 +#: www/admin/sessionwhois.php:63 msgid "admin::monitor: dernier access" msgstr "" -#: www/admin/sessionwhois.php:101 +#: www/admin/sessionwhois.php:102 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "قواعد بيانات الموصولة " -#: www/admin/sessionwhois.php:116 +#: www/admin/sessionwhois.php:117 msgid "Session persistente" msgstr "" -#: www/admin/sessionwhois.php:134 +#: www/admin/sessionwhois.php:135 msgid "admin::monitor: module inconnu" msgstr "غير معروف" -#: www/admin/sessionwhois.php:243 +#: www/admin/sessionwhois.php:244 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "مستخدمون فريدون " -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" +#: www/admin/sitestruct.php:187 +msgid "all caches services have been flushed" msgstr "" -#: www/admin/sitestruct.php:189 +#: www/admin/sitestruct.php:193 msgid "setup:: administrateurs de l'application" msgstr "" -#: www/admin/sitestruct.php:201 +#: www/admin/sitestruct.php:205 msgid "setup:: ajouter un administrateur de l'application" msgstr "" -#: www/admin/sitestruct.php:207 +#: www/admin/sitestruct.php:211 msgid "setup:: Reinitialisation des droits admins" msgstr "" -#: www/admin/sitestruct.php:211 +#: www/admin/sitestruct.php:215 msgid "boutton::reinitialiser" msgstr "" -#: www/admin/sitestruct.php:214 +#: www/admin/sitestruct.php:218 msgid "setup:: Reglages generaux" msgstr "" -#: www/admin/sitestruct.php:216 +#: www/admin/sitestruct.php:220 msgid "setup::Votre configuration" msgstr "الترتيبك الخاص" -#: www/admin/sitestruct.php:244 +#: www/admin/sitestruct.php:248 msgid "setup::Filesystem configuration" msgstr "" -#: www/admin/sitestruct.php:258 +#: www/admin/sitestruct.php:262 msgid "setup::Executables" msgstr "" -#: www/admin/sitestruct.php:272 +#: www/admin/sitestruct.php:276 msgid "setup::PHP extensions" msgstr "" -#: www/admin/sitestruct.php:285 +#: www/admin/sitestruct.php:289 msgid "setup::Serveur de cache" msgstr "" -#: www/admin/sitestruct.php:304 +#: www/admin/sitestruct.php:308 msgid "Phrasea Module" msgstr "" @@ -6716,29 +6854,29 @@ msgstr "عرض رموز الوضع فوق المصغرات لجميع المست msgid "admin::status: confirmer la suppression du status ?" msgstr "تأكيد حذف الوضع" -#: www/admin/structure.php:76 +#: www/admin/structure.php:77 msgid "admin::base: structure" msgstr "بنية" -#: www/admin/structure.php:91 +#: www/admin/structure.php:92 msgid "admin::base: xml invalide, les changements ne seront pas appliques" msgstr "غير صالح لا يمكن تطبيق التغييراتxml" -#: www/admin/sugval.php:934 +#: www/admin/sugval.php:935 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" "Continuer quand meme ?" msgstr "حذار, الإنتقال إلى الواجهة الرسومية قذ يؤدي إلى خسارة تغيرات اكسمل إذا لم تسجل التغييرات. الاستمرار على أي حال؟" -#: www/admin/sugval.php:966 +#: www/admin/sugval.php:967 msgid "Suggested values" msgstr "" -#: www/admin/sugval.php:983 +#: www/admin/sugval.php:984 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "قيم مقترحة -- التفضيليات المجموعة" -#: www/admin/sugval.php:1008 +#: www/admin/sugval.php:1009 msgid "admin::sugval: champs" msgstr "حقول" @@ -6747,235 +6885,223 @@ msgstr "حقول" msgid "admin::tasks: xml invalide, restaurer la version precedente ?" msgstr "غير صالح ، استعادة الإصدار السابق؟ XML" -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 +#: www/admin/taskmanager.php:261 +#: www/admin/taskmanager.php:595 msgid "admin::tasks: supprimer la tache ?" msgstr "حذف المهمة" -#: www/admin/taskmanager.php:278 +#: www/admin/taskmanager.php:280 msgid "Fermer" msgstr "" -#: www/admin/taskmanager.php:279 +#: www/admin/taskmanager.php:281 msgid "Renouveller" msgstr "" -#: www/admin/taskmanager.php:470 +#: www/admin/taskmanager.php:472 msgid "admin::tasks: planificateur de taches" msgstr "مجدول المهام" -#: www/admin/taskmanager.php:478 +#: www/admin/taskmanager.php:480 #, php-format msgid "Last update at %s." msgstr "" -#: www/admin/taskmanager.php:479 +#: www/admin/taskmanager.php:481 msgid "admin::tasks: Nouvelle tache" msgstr "مهمة جديدة" -#: www/admin/taskmanager.php:486 +#: www/admin/taskmanager.php:488 msgid "admin::tasks: statut de la tache" msgstr "وضع" -#: www/admin/taskmanager.php:487 +#: www/admin/taskmanager.php:489 msgid "admin::tasks: process_id de la tache" msgstr "Process_id المهمة" -#: www/admin/taskmanager.php:488 +#: www/admin/taskmanager.php:490 msgid "admin::tasks: etat de progression de la tache" msgstr "جاري التقدم" -#: www/admin/taskmanager.php:751 +#: www/admin/taskmanager.php:753 msgid "Preferences du TaskManager" msgstr "" -#: www/admin/taskmanager.php:753 +#: www/admin/taskmanager.php:755 msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" msgstr "" -#: www/client/answer.php:186 +#: www/client/answer.php:182 msgid "client::answers: rapport de questions par bases" msgstr "تقرير حسب الأسئلة قواعد البيانات" -#: www/client/answer.php:191 +#: www/client/answer.php:187 #, php-format msgid "client::answers: %d reponses" msgstr "اجابة %d" -#: www/client/answer.php:488 +#: www/client/answer.php:486 msgid "reponses:: Votre recherche ne retourne aucun resultat" msgstr "" -#: www/client/baskets.php:130 +#: www/client/baskets.php:124 msgid "paniers::categories: mes paniers" msgstr "سلاتي" -#: www/client/baskets.php:136 +#: www/client/baskets.php:130 msgid "paniers::categories: paniers recus" msgstr "سلات متلقات" -#: www/client/baskets.php:153 +#: www/client/baskets.php:147 #, php-format msgid "paniers:: %d documents dans le panier" msgstr "وثيقة %d" -#: www/client/baskets.php:158 +#: www/client/baskets.php:152 #, php-format msgid "paniers:: paniers:: %d documents dans le panier" msgstr "وثيقة %d" -#: www/client/baskets.php:179 +#: www/client/baskets.php:173 msgid "action : ouvrir dans le comparateur" msgstr "اطلاق المقارن" -#: www/client/baskets.php:188 +#: www/client/baskets.php:182 #, php-format msgid "paniers:: panier emis par %s" msgstr "%s سلة مرسلة من" -#: www/client/baskets.php:266 +#: www/client/baskets.php:260 msgid "paniers:: vous avez de nouveaux paniers non consultes" msgstr "لديك سلال جديدة لم تقم بزيارتها" #: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "%d %b %Y à %Hh%s" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "%d-%m-%Y" - -#: www/client/homeinterpubbask.php:80 msgid "publications:: dernieres publications" msgstr "آخر المنشورات" -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "غير مقروءة" - -#: www/client/homeinterpubbask.php:140 +#: www/client/homeinterpubbask.php:68 msgid "publications:: derniere mise a jour" msgstr "آخر تحديث" -#: www/client/index.php:152 +#: www/client/index.php:161 msgid "client:: recherche" msgstr "بحث" -#: www/client/index.php:159 +#: www/client/index.php:168 msgid "client:: recherche avancee" msgstr "بحث متقدم" -#: www/client/index.php:166 +#: www/client/index.php:175 msgid "client:: topics" msgstr "مواضيع" -#: www/client/index.php:188 -#: www/client/index.php:196 +#: www/client/index.php:197 +#: www/client/index.php:205 msgid "phraseanet::technique:: et" msgstr "و" -#: www/client/index.php:189 -#: www/client/index.php:197 +#: www/client/index.php:198 +#: www/client/index.php:206 msgid "phraseanet::technique:: or" msgstr "أو" -#: www/client/index.php:190 -#: www/client/index.php:198 +#: www/client/index.php:199 +#: www/client/index.php:207 msgid "phraseanet::technique:: except" msgstr "إلا" -#: www/client/index.php:210 +#: www/client/index.php:219 msgid "client::recherche: rechercher dans les bases :" msgstr "البحث" -#: www/client/index.php:263 +#: www/client/index.php:261 msgid "client::recherche: rechercher dans toutes les bases" msgstr "جميع قواعد البيانات" -#: www/client/index.php:272 +#: www/client/index.php:268 msgid "phraseanet:: presentation des resultats" msgstr "عرض الإعدادات" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "phraseanet:: collections" msgstr "مجموعات" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" msgstr "انقر هنا لتعطيل جميع المرشحات لجميع قواعد البيانات" -#: www/client/index.php:342 +#: www/client/index.php:338 msgid "phraseanet:: historique" msgstr "سابق" -#: www/client/index.php:374 +#: www/client/index.php:368 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "تعطيل كافة المرشحات" -#: www/client/index.php:465 +#: www/client/index.php:437 msgid "client::recherche: filter sur" msgstr "تصفية" -#: www/client/index.php:468 +#: www/client/index.php:440 msgid "client::recherche: filtrer par dates" msgstr "حسب التاريخ" -#: www/client/index.php:470 +#: www/client/index.php:442 msgid "client::recherche: filtrer par status" msgstr "حسب الحالة" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs" msgstr "حسب المجال" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "كل المجالات" -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 +#: www/include/download_anonymous.php:73 +#: www/include/download_anonymous.php:116 +#: www/include/download_prepare.php:108 +#: www/include/download_prepare.php:151 msgid "phraseanet:: Telechargement de documents" msgstr "" -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 +#: www/include/download_anonymous.php:121 +#: www/include/download_prepare.php:153 msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." msgstr "" -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 +#: www/include/download_anonymous.php:128 +#: www/include/download_prepare.php:158 #, php-format msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" msgstr "" -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 +#: www/include/download_anonymous.php:133 +#: www/include/download_prepare.php:161 msgid "telechargement::Le fichier contient les elements suivants" msgstr "" -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 -msgid "phrseanet:: base" -msgstr "" - -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 -msgid "document:: nom" -msgstr "" - #: www/include/download_anonymous.php:137 #: www/include/download_prepare.php:165 -msgid "phrseanet:: sous definition" +msgid "phrseanet:: base" msgstr "" #: www/include/download_anonymous.php:138 #: www/include/download_prepare.php:166 +msgid "document:: nom" +msgstr "" + +#: www/include/download_anonymous.php:139 +#: www/include/download_prepare.php:167 +msgid "phrseanet:: sous definition" +msgstr "" + +#: www/include/download_anonymous.php:140 +#: www/include/download_prepare.php:168 msgid "poids" msgstr "" -#: www/include/download_anonymous.php:172 +#: www/include/download_anonymous.php:174 msgid "Votre lien est corrompu" msgstr "" @@ -7011,613 +7137,561 @@ msgstr "" msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" msgstr "" -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "" - -#: www/include/updses.php:92 +#: www/include/updses.php:93 msgid "The application is going down for maintenance, please logout." msgstr "سيتم تعطيل التطبيق لأعمال الصيانة ، شكرا لقطع لاتصال في أسرع وقت ممكن" -#: www/login/account.php:181 +#: www/login/account.php:182 msgid "etes vous sur de vouloir supprimer cette application" msgstr "" -#: www/login/account.php:188 +#: www/login/account.php:183 +msgid "oui" +msgstr "" + +#: www/login/account.php:184 +msgid "non" +msgstr "" + +#: www/login/account.php:189 msgid "Erreur lors du chargement" msgstr "" -#: www/login/account.php:412 +#: www/login/account.php:413 msgid "Informations" msgstr "" -#: www/login/account.php:413 +#: www/login/account.php:414 msgid "Acces" msgstr "" -#: www/login/account.php:414 +#: www/login/account.php:415 msgid "Sessions" msgstr "" -#: www/login/account.php:416 +#: www/login/account.php:417 msgid "Developpeur" msgstr "" -#: www/login/account.php:431 -#: www/login/index.php:110 +#: www/login/account.php:432 +#: www/login/index.php:112 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "تم تحديث كلمة السر" -#: www/login/account.php:434 +#: www/login/account.php:435 msgid "login::notification: Changements enregistres" msgstr "تغييرات مؤكدة" -#: www/login/account.php:437 +#: www/login/account.php:438 msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "خطأ عند حفظ التغييرات" -#: www/login/account.php:440 +#: www/login/account.php:441 msgid "login::notification: Vos demandes ont ete prises en compte" msgstr "طلباتك قد أخذت بعين الاعتبار" -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 -#: www/login/reset-email.php:44 -#: www/login/reset-email.php:55 -#: www/login/reset-email.php:78 -#: www/login/reset-email.php:89 -#: www/login/reset-email.php:158 -#: www/login/reset-email.php:207 +#: www/login/account.php:456 +#: www/login/forgotpwd.php:100 +#: www/login/reset-email.php:46 +#: www/login/reset-email.php:57 +#: www/login/reset-email.php:80 +#: www/login/reset-email.php:91 +#: www/login/reset-email.php:160 +#: www/login/reset-email.php:209 +#: www/login/reset-password.php:140 msgid "admin::compte-utilisateur changer mon mot de passe" msgstr "تغيير كلمة السر" -#: www/login/account.php:497 +#: www/login/account.php:498 msgid "login:: Changer mon adresse email" msgstr "تغيير بريدي الإلكتروني" -#: www/login/account.php:603 +#: www/login/account.php:604 msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" msgstr "ftp تفعيل" -#: www/login/account.php:644 +#: www/login/account.php:645 msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" msgstr "بادئة أسماء الملفات" -#: www/login/account.php:665 +#: www/login/account.php:666 msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" msgstr "معطيات مرسلة آليا" -#: www/login/account.php:667 +#: www/login/account.php:668 msgid "phraseanet:: original" msgstr "أصلي" -#: www/login/account.php:669 +#: www/login/account.php:670 msgid "phraseanet:: imagette" msgstr "صورة مصغرة" -#: www/login/forgotpwd.php:71 -#: www/login/register.php:102 +#: www/login/forgotpwd.php:73 +#: www/login/register.php:101 +#: www/login/reset-password.php:53 msgid "forms::la valeur donnee contient des caracteres invalides" msgstr "يحتوي على أحرف سيئة" -#: www/login/forgotpwd.php:175 +#: www/login/forgotpwd.php:177 msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." msgstr "" -#: www/login/forgotpwd.php:176 +#: www/login/forgotpwd.php:178 msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." msgstr "" -#: www/login/forgotpwd.php:184 +#: www/login/forgotpwd.php:186 +#: www/login/reset-password.php:171 msgid "admin::compte-utilisateur nouveau mot de passe" msgstr "كلمة السر الجديدة" -#: www/login/forgotpwd.php:204 +#: www/login/forgotpwd.php:206 +#: www/login/reset-password.php:185 msgid "admin::compte-utilisateur confirmer le mot de passe" msgstr "تأكيد كلمة السر" -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 +#: www/login/forgotpwd.php:225 +#: www/login/forgotpwd.php:287 msgid "login:: Retour a l'accueil" msgstr "العودة إلى الصفحة الرئيسية" -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 +#: www/login/forgotpwd.php:252 +#: www/login/forgotpwd.php:258 msgid "phraseanet::erreur: Echec du serveur mail" msgstr "للحصول على أفضل أداء ، نوصي باستخدام واحدة من متصفحات الوب التالية" -#: www/login/forgotpwd.php:253 +#: www/login/forgotpwd.php:255 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "لم يتم العثور على الحساب" -#: www/login/forgotpwd.php:259 +#: www/login/forgotpwd.php:261 msgid "phraseanet::erreur: l'url n'est plus valide" msgstr "العنوان غير صالح" -#: www/login/forgotpwd.php:268 +#: www/login/forgotpwd.php:270 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "اللحظة تم إرسال بريد إلكتروني إليك" -#: www/login/forgotpwd.php:278 +#: www/login/forgotpwd.php:280 msgid "login:: Entrez votre adresse email" msgstr "أدخل بريدك الإلكتروني" -#: www/login/index.php:68 +#: www/login/index.php:70 msgid "login::erreur: Erreur d'authentification" msgstr "خطأ في محاولة التعريف" -#: www/login/index.php:71 +#: www/login/index.php:73 msgid "login::erreur: Erreur de captcha" msgstr "أخطاء كثيرة في محاولة التعريف شكرا لملأ كلمة التحقيق للتأكد من أنك لست روبوت" -#: www/login/index.php:74 +#: www/login/index.php:76 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "من المستحيل الدخول، لم يتم تأكيد البريد الإلكتروني الخاص بك." -#: www/login/index.php:76 +#: www/login/index.php:78 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "أرسل لي من جديد رسالة للتأكيد" -#: www/login/index.php:79 +#: www/login/index.php:81 msgid "login::erreur: Aucune base n'est actuellment accessible" msgstr "ليس لديك حق الوصول إلى أية قاعدة بيانات منشورة حاليا" -#: www/login/index.php:82 +#: www/login/index.php:84 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" -#: www/login/index.php:85 +#: www/login/index.php:87 msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" msgstr "" -#: www/login/index.php:97 +#: www/login/index.php:99 msgid "login::notification: cette email est deja confirmee" msgstr "تم تأكيد عنوان البريد الإلكتروني هذا" -#: www/login/index.php:100 +#: www/login/index.php:102 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "تم إرسال طلب تأكيد عن طريق البريد الالكتروني" -#: www/login/index.php:103 -#: www/login/index.php:106 +#: www/login/index.php:105 +#: www/login/index.php:108 msgid "login::notification: votre email est desormais confirme" msgstr "تم تأكيد عنوانك البريد الإلكتروني" -#: www/login/index.php:123 +#: www/login/index.php:125 msgid "login::captcha: obtenir une autre captcha" msgstr "الحصول على كلمة تحقيق أخرى" -#: www/login/index.php:126 +#: www/login/index.php:128 msgid "login::captcha: recopier les mots ci dessous" msgstr "نسخ الكلمات أدناه" -#: www/login/index.php:139 +#: www/login/index.php:141 msgid "Accueil" msgstr "" -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 +#: www/login/register.php:106 +#: www/login/register.php:290 +#: www/login/reset-email.php:147 +#: www/login/reset-email.php:187 msgid "forms::l'email semble invalide" msgstr "البريد الإلكتروني يبدو غير صحيح" -#: www/login/register.php:124 +#: www/login/register.php:123 msgid "forms::un utilisateur utilisant cette adresse email existe deja" msgstr "عنوان البريد الإلكتروني مسجل بالفعل" -#: www/login/register.php:129 +#: www/login/register.php:128 msgid "forms::un utilisateur utilisant ce login existe deja" msgstr "مستخدم بهذا الاسم يوجد من قبل" -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" +#: www/login/register.php:292 +msgid "login invalide (5 caracteres sans accents ni espaces)" msgstr "" -#: www/login/register.php:298 +#: www/login/register.php:304 +#: www/login/reset-password.php:92 msgid "forms::le mot de passe est simple" msgstr "" -#: www/login/register.php:375 -#: www/login/register.php:392 +#: www/login/register.php:379 +msgid "5 caracteres minimum" +msgstr "" + +#: www/login/register.php:396 +#: www/login/reset-password.php:172 msgid "8 caracteres minimum" msgstr "" -#: www/login/register.php:400 +#: www/login/register.php:404 msgid "Resistance du mot de passe" msgstr "" -#: www/login/register.php:426 +#: www/login/register.php:430 msgid "admin::compte-utilisateur A propos de la securite des mots de passe" msgstr "" -#: www/login/reset-email.php:62 +#: www/login/reset-email.php:64 msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" msgstr "تم تحيث البريد الإلكتروني" -#: www/login/reset-email.php:63 +#: www/login/reset-email.php:65 msgid "accueil:: retour a l'accueil" msgstr "العودة إلى الرئيسية" -#: www/login/reset-email.php:96 +#: www/login/reset-email.php:98 msgid "admin::compte-utilisateur: erreur lors de la mise a jour" msgstr "" -#: www/login/reset-email.php:142 +#: www/login/reset-email.php:144 msgid "phraseanet::erreur: echec du serveur de mail" msgstr "فشل موزع البريد الاكتروني" -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 +#: www/login/reset-email.php:150 +#: www/login/reset-email.php:191 msgid "forms::les emails ne correspondent pas" msgstr "عناوين البريد الإلكتروني لا تتوافق" -#: www/login/reset-email.php:152 +#: www/login/reset-email.php:154 +#: www/login/reset-password.php:68 msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" msgstr "كلمة سر خاطئة" -#: www/login/reset-email.php:217 +#: www/login/reset-email.php:219 msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" msgstr "تأكيد عبر البريد الالكتروني قد أرسل لك. يرجى اتباع التعليمات للمرسلة" -#: www/login/reset-email.php:221 +#: www/login/reset-email.php:223 msgid "admin::compte-utilisateur retour a mon compte" msgstr "رجوع إلى حسابي" -#: www/login/reset-email.php:230 +#: www/login/reset-email.php:232 +#: www/login/reset-password.php:150 msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" msgstr "عفوا! لقد حدث خطأ ما!" -#: www/login/reset-email.php:251 +#: www/login/reset-email.php:253 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "البريد الإلكتروني الجديد" -#: www/login/reset-email.php:256 +#: www/login/reset-email.php:258 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "تأكيد البريد الإلكتروني" -#: www/login/reset-email.php:265 +#: www/login/reset-email.php:267 msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" msgstr "مشرف::حساب المستخدم: لماذا طلب مني كلمة السر لتغيير عنوان بريدي الإلكتروني؟" -#: www/login/reset-email.php:266 +#: www/login/reset-email.php:268 msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." msgstr "بريدك الإلكتروني سيتستخدم في حالة فقدان كلمة السر بحيث يمكن إعادتها، فمن المهم أن تكون الشخص الوحيد القادر على تغييرها ." -#: www/login/reset-password.php:160 +#: www/login/reset-password.php:162 msgid "admin::compte-utilisateur ancien mot de passe" msgstr "كلمة السر القديمة" -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "نتيجة %d" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "اجابة %d" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "وثيقة مختارة %s" - -#: www/prod/chghddocument.php:42 +#: www/prod/chghddocument.php:39 msgid "prod::substitution::erreur : document de substitution invalide" msgstr "خطأ : الوثيقة البديلة غير صالحة" -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 +#: www/prod/chghddocument.php:61 +#: www/prod/chgthumb.php:49 msgid "prod::substitution::document remplace avec succes" msgstr "تبديل الوثيقة" -#: www/prod/chgstatus.php:130 +#: www/prod/chgstatus.php:131 #, php-format msgid "prod::proprietes : %d documents modifies" msgstr "وثيقة معدلة %d" -#: www/prod/chgthumb.php:42 +#: www/prod/chgthumb.php:44 msgid "prod::substitution::erreur : impossible d'ajouter ce document" msgstr "لا يمكن إضافة هذه الوثيقة" -#: www/prod/docfunction.php:327 +#: www/prod/docfunction.php:337 msgid "prod::proprietes:: status" msgstr "وضع" -#: www/prod/docfunction.php:328 +#: www/prod/docfunction.php:338 msgid "prod::proprietes:: type" msgstr "النوع" -#: www/prod/docfunction.php:356 +#: www/prod/docfunction.php:366 #, php-format msgid "prod::status: edition de status de %d regroupements" msgstr "%d تحرير الأوضاع للتجميعات وعددها" -#: www/prod/docfunction.php:358 +#: www/prod/docfunction.php:368 #, php-format msgid "prod::status: edition de status de %d documents" msgstr "%d تحرير الأوضاع للوثائق وعددها" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remettre a zero les status non nommes" msgstr "إعادة إلى 0 الحالات غير المسمات" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remetter a zero tous les status" msgstr "خفض جميع الاوضاع" -#: www/prod/docfunction.php:408 +#: www/prod/docfunction.php:418 msgid "prod::status: aucun status n'est defini sur cette base" msgstr "لا وضع مختار على قاعدة البيانات" -#: www/prod/docfunction.php:424 +#: www/prod/docfunction.php:434 msgid "prod::status: changer egalement le status des document rattaches aux regroupements" msgstr "غير أيضا وضعية الوثائق المرتبطة بهذه الريبورتاجات" -#: www/prod/docfunction.php:454 +#: www/prod/docfunction.php:464 #, php-format msgid "prod::status: %d documents ne peuvent avoir une edition des status" msgstr "%d تحرير مستحيل لأوضاع الوثائق التي عددها" -#: www/prod/docfunction.php:461 +#: www/prod/docfunction.php:471 msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" msgstr "ليس لديك إذن لتغيير حالة الوثائق المختارة" -#: www/prod/docfunction.php:496 +#: www/prod/docfunction.php:506 msgid "prod::type: appliquer a tous les documents selectionnes" msgstr "طبق على جميع الوثائق" -#: www/prod/imgfunction.php:137 +#: www/prod/imgfunction.php:139 msgid "prod::tools: regeneration de sous definitions" msgstr "أعد بناء" -#: www/prod/imgfunction.php:138 +#: www/prod/imgfunction.php:140 msgid "prod::tools: outils image" msgstr "صورة" -#: www/prod/imgfunction.php:143 +#: www/prod/imgfunction.php:145 msgid "prod::tools: substitution HD" msgstr "عوض أصلي" -#: www/prod/imgfunction.php:148 +#: www/prod/imgfunction.php:150 msgid "prod::tools: substitution de sous definition" msgstr "إستبدال المصغرات" -#: www/prod/imgfunction.php:153 +#: www/prod/imgfunction.php:155 msgid "prod::tools: meta-datas" msgstr "ميتاداتا" -#: www/prod/imgfunction.php:163 +#: www/prod/imgfunction.php:165 msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." msgstr "تنبيه، بعض الوثائق لها صور جودة منخفضة بديلة" -#: www/prod/imgfunction.php:164 +#: www/prod/imgfunction.php:166 msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." msgstr "فرض إعادة البناء على التسجيلات ذات المصغرات المعوضة" -#: www/prod/imgfunction.php:174 +#: www/prod/imgfunction.php:176 msgid "prod::tools:regeneration: Reconstruire les sous definitions" msgstr "إعادة بناء صور الجودة المنخفضة" -#: www/prod/imgfunction.php:177 +#: www/prod/imgfunction.php:179 msgid "prod::tools: option : recreer aucune les sous-definitions" msgstr "لا تنشئ صور الجودة المنخفضة" -#: www/prod/imgfunction.php:178 +#: www/prod/imgfunction.php:180 msgid "prod::tools: option : recreer toutes les sous-definitions" msgstr "أنشئ كل المصغرات" -#: www/prod/imgfunction.php:192 +#: www/prod/imgfunction.php:194 msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" msgstr "هذا الإجراء يتعلق فقط بالجودة المنخفضة للتسجيلات من النوع صورة" -#: www/prod/imgfunction.php:193 +#: www/prod/imgfunction.php:195 msgid "prod::tools::image: rotation 90 degres horaire" msgstr "°اتجاه عقارب الساعة 90" -#: www/prod/imgfunction.php:195 +#: www/prod/imgfunction.php:197 msgid "prod::tools::image rotation 90 degres anti-horaires" msgstr "°عكس عقارب الساعة 90" -#: www/prod/imgfunction.php:219 +#: www/prod/imgfunction.php:221 msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" msgstr "إعادة إنشاء صور الجودة المنخفضة بعد الاستبدال" -#: www/prod/prodFeedBack.php:82 -msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." -msgstr "سيمكنك اشتراكك من الاطلاع على المنشورات RSS" - -#: www/prod/prodFeedBack.php:83 -msgid "publications::Ne le partagez pas, il est strictement confidentiel" -msgstr "لا تشاركه احدا، فهو سري" - -#: www/prod/prodFeedBack.php:85 -msgid "publications::votre rss personnel" -msgstr "الخاصة بك rss" - -#: www/prod/prodFeedBack.php:271 +#: www/prod/prodFeedBack.php:237 msgid "les enregistrements ont ete correctement commandes" msgstr "" -#: www/prod/prodFeedBack.php:275 +#: www/prod/prodFeedBack.php:241 msgid "Erreur lors de la commande des enregistrements" msgstr "" -#: www/prod/prodFeedBack.php:306 +#: www/prod/prodFeedBack.php:272 msgid "Les documents ne peuvent etre envoyes par FTP" msgstr "" -#: www/prod/prodFeedBack.php:315 +#: www/prod/prodFeedBack.php:281 msgid "Export enregistre dans la file dattente" msgstr "" -#: www/prod/prodFeedBack.php:340 +#: www/prod/prodFeedBack.php:306 msgid "Connection au FTP avec succes" msgstr "" -#: www/prod/prodFeedBack.php:344 +#: www/prod/prodFeedBack.php:310 #, php-format msgid "Erreur lors de la connection au FTP : %s" msgstr "" -#: www/prod/share.php:131 +#: www/prod/share.php:132 msgid "Aucune URL disponible" msgstr "" -#: www/prod/share.php:146 +#: www/prod/share.php:147 msgid "Aucun code disponible" msgstr "" #: www/report/ajax_table_content.php:62 #: www/report/ajax_table_content.php:638 -#: www/report/tab.php:63 -#: www/report/tab.php:845 msgid "report:: titre" msgstr "عنوان" #: www/report/ajax_table_content.php:63 #: www/report/ajax_table_content.php:639 -#: www/report/tab.php:64 -#: www/report/tab.php:846 msgid "report:: poids" msgstr "حجم" #: www/report/ajax_table_content.php:66 #: www/report/ajax_table_content.php:689 -#: www/report/tab.php:67 -#: www/report/tab.php:909 msgid "report:: identifiant" msgstr "" #: www/report/ajax_table_content.php:67 #: www/report/ajax_table_content.php:690 -#: www/report/tab.php:68 -#: www/report/tab.php:910 msgid "report:: nom" msgstr "" #: www/report/ajax_table_content.php:68 #: www/report/ajax_table_content.php:691 -#: www/report/tab.php:69 -#: www/report/tab.php:911 msgid "report:: email" msgstr "" #: www/report/ajax_table_content.php:69 #: www/report/ajax_table_content.php:692 -#: www/report/tab.php:70 -#: www/report/tab.php:912 msgid "report:: adresse" msgstr "" #: www/report/ajax_table_content.php:70 #: www/report/ajax_table_content.php:693 -#: www/report/tab.php:71 -#: www/report/tab.php:913 msgid "report:: telephone" msgstr "" #: www/report/ajax_table_content.php:74 #: www/report/ajax_table_content.php:367 -#: www/report/tab.php:437 msgid "report:: IP" msgstr "IP" #: www/report/ajax_table_content.php:302 -#: www/report/tab.php:351 msgid "configuration" msgstr "" #: www/report/ajax_table_content.php:329 -#: www/report/tab.php:379 #, php-format msgid "filtrer les resultats sur la colonne %s" msgstr "" #: www/report/ajax_table_content.php:365 #: www/report/ajax_table_content.php:475 -#: www/report/tab.php:435 msgid "phraseanet::utilisateurs" msgstr "مستخدمون" #: www/report/ajax_table_content.php:440 -#: www/report/tab.php:559 msgid "report:: plateforme" msgstr "نظام تشغيل" #: www/report/ajax_table_content.php:448 -#: www/report/tab.php:567 msgid "report:: module" msgstr "" #: www/report/ajax_table_content.php:489 #: www/report/ajax_table_content.php:507 -#: www/report/tab.php:632 -#: www/report/tab.php:664 msgid "report:: nombre de reponses" msgstr "" #: www/report/ajax_table_content.php:531 -#: www/report/tab.php:715 msgid "report:: total des telechargements" msgstr "" #: www/report/ajax_table_content.php:532 -#: www/report/tab.php:716 msgid "report:: preview" msgstr "" #: www/report/ajax_table_content.php:533 -#: www/report/tab.php:717 msgid "report:: document original" msgstr "" #: www/report/ajax_table_content.php:548 -#: www/report/tab.php:745 msgid "report:: nombre de documents" msgstr "" #: www/report/ajax_table_content.php:549 -#: www/report/tab.php:746 msgid "report:: poids des documents" msgstr "" #: www/report/ajax_table_content.php:550 -#: www/report/tab.php:747 msgid "report:: nombre de preview" msgstr "" #: www/report/ajax_table_content.php:551 -#: www/report/tab.php:748 msgid "report:: poids des previews" msgstr "" #: www/report/ajax_table_content.php:589 -#: www/report/tab.php:796 msgid "report:: historique des connexions" msgstr "" #: www/report/ajax_table_content.php:596 #: www/report/ajax_table_content.php:681 -#: www/report/tab.php:803 -#: www/report/tab.php:892 msgid "report:: historique des telechargements" msgstr "" #: www/report/ajax_table_content.php:602 -#: www/report/tab.php:809 msgid "report:: historique des questions" msgstr "" #: www/report/ajax_table_content.php:712 -#: www/report/tab.php:941 msgid "report::version " msgstr "" @@ -7637,277 +7711,277 @@ msgstr "" msgid "report::societe" msgstr "" -#: www/thesaurus2/accept.php:46 +#: www/thesaurus2/accept.php:48 msgid "thesaurus:: accepter..." msgstr "قبول" -#: www/thesaurus2/accept.php:165 +#: www/thesaurus2/accept.php:167 msgid "thesaurus:: removed_src" msgstr "removed_src" -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 +#: www/thesaurus2/accept.php:170 +#: www/thesaurus2/accept.php:228 msgid "thesaurus:: refresh" msgstr "تحديث" -#: www/thesaurus2/accept.php:223 +#: www/thesaurus2/accept.php:225 msgid "thesaurus:: removed tgt" msgstr "removed_tgt" -#: www/thesaurus2/accept.php:259 +#: www/thesaurus2/accept.php:261 msgid "thesaurus:: Accepter le terme comme" msgstr "قبول اللفظ ك" -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 +#: www/thesaurus2/accept.php:263 +#: www/thesaurus2/accept.php:273 msgid "thesaurus:: comme terme specifique" msgstr "كلفظ خصوصي" -#: www/thesaurus2/accept.php:265 +#: www/thesaurus2/accept.php:267 #, php-format msgid "thesaurus:: comme synonyme de %s" msgstr "%s كمرادف ل" -#: www/thesaurus2/accept.php:270 +#: www/thesaurus2/accept.php:272 msgid "thesaurus:: Accepter la branche comme" msgstr "قبول الفرع ك" -#: www/thesaurus2/accept.php:294 +#: www/thesaurus2/accept.php:296 #, php-format msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" msgstr "%s في هذا المكان من القاموس، لايمكن قبول مرشح من المجال" -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 +#: www/thesaurus2/export_text.php:53 +#: www/thesaurus2/export_text_dlg.php:44 +#: www/thesaurus2/export_text_dlg.php:148 msgid "thesaurus:: export au format texte" msgstr "نص" -#: www/thesaurus2/export_text_dlg.php:137 +#: www/thesaurus2/export_text_dlg.php:139 msgid "thesaurus:: options d'export : " msgstr "إصدار " -#: www/thesaurus2/export_text_dlg.php:138 +#: www/thesaurus2/export_text_dlg.php:140 msgid "thesaurus:: example" msgstr "مثال" -#: www/thesaurus2/export_text_dlg.php:151 +#: www/thesaurus2/export_text_dlg.php:153 msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" msgstr "المرادفات على نفس السطر" -#: www/thesaurus2/export_text_dlg.php:155 +#: www/thesaurus2/export_text_dlg.php:157 msgid "thesaurus:: exporter avec une ligne par synonyme" msgstr "سطر لكل مرادفة" -#: www/thesaurus2/export_text_dlg.php:159 +#: www/thesaurus2/export_text_dlg.php:161 msgid "thesaurus:: export : numeroter les lignes " msgstr "اظهار أرقام الأسطر " -#: www/thesaurus2/export_text_dlg.php:163 +#: www/thesaurus2/export_text_dlg.php:165 msgid "thesaurus:: export : inclure la langue" msgstr "إدراج اللغة" -#: www/thesaurus2/export_text_dlg.php:167 +#: www/thesaurus2/export_text_dlg.php:169 msgid "thesaurus:: export : inclure les hits" msgstr "إدراج عدد النتائج" -#: www/thesaurus2/export_text_dlg.php:173 +#: www/thesaurus2/export_text_dlg.php:175 msgid "thesaurus:: export : format topics" msgstr "واجهات" -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 +#: www/thesaurus2/export_topics.php:100 +#: www/thesaurus2/export_topics_dlg.php:45 msgid "thesaurus:: export en topics" msgstr "واجهات" -#: www/thesaurus2/export_topics.php:159 +#: www/thesaurus2/export_topics.php:161 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "%s تم إنشاء الملف يوم" -#: www/thesaurus2/export_topics.php:178 +#: www/thesaurus2/export_topics.php:180 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "ملفا منشأ %s" -#: www/thesaurus2/export_topics.php:180 +#: www/thesaurus2/export_topics.php:182 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "خطأ أثناء حفظ الملف" -#: www/thesaurus2/export_topics_dlg.php:117 +#: www/thesaurus2/export_topics_dlg.php:119 msgid "thesaurus:: exporter" msgstr "صدّر" -#: www/thesaurus2/export_topics_dlg.php:120 +#: www/thesaurus2/export_topics_dlg.php:122 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "إصدار لكل اللغات" -#: www/thesaurus2/export_topics_dlg.php:128 +#: www/thesaurus2/export_topics_dlg.php:130 msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" msgstr "عرض في اللغة الحالية" -#: www/thesaurus2/export_topics_dlg.php:135 +#: www/thesaurus2/export_topics_dlg.php:137 msgid "phraseanet:: tri" msgstr "تصنيف" -#: www/thesaurus2/export_topics_dlg.php:145 +#: www/thesaurus2/export_topics_dlg.php:147 msgid "thesaurus:: recherche" msgstr "بحث" -#: www/thesaurus2/export_topics_dlg.php:148 +#: www/thesaurus2/export_topics_dlg.php:150 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "قاموس*: بحث" -#: www/thesaurus2/export_topics_dlg.php:152 +#: www/thesaurus2/export_topics_dlg.php:154 msgid "thesaurus:: recherche fulltext" msgstr "نص كامل" -#: www/thesaurus2/export_topics_dlg.php:156 +#: www/thesaurus2/export_topics_dlg.php:158 msgid "thesaurus:: question complete (avec operateurs)" msgstr "السؤال الكامل (مع المشغل)" -#: www/thesaurus2/export_topics_dlg.php:163 +#: www/thesaurus2/export_topics_dlg.php:165 msgid "thesaurus:: presentation" msgstr "عرض" -#: www/thesaurus2/export_topics_dlg.php:166 +#: www/thesaurus2/export_topics_dlg.php:168 msgid "thesaurus:: presentation : branches refermables" msgstr "فروع غلوقة" -#: www/thesaurus2/export_topics_dlg.php:170 +#: www/thesaurus2/export_topics_dlg.php:172 msgid "thesaurus:: presentation : branche ouvertes" msgstr "فروع مفتوحة" -#: www/thesaurus2/export_topics_dlg.php:174 +#: www/thesaurus2/export_topics_dlg.php:176 msgid "thesaurus:: tout deployer - refermable" msgstr "توسيع الكل-غلوق" -#: www/thesaurus2/export_topics_dlg.php:178 +#: www/thesaurus2/export_topics_dlg.php:180 msgid "thesaurus:: tout deployer - statique" msgstr "توسيع الكل-ثابت" -#: www/thesaurus2/export_topics_dlg.php:182 +#: www/thesaurus2/export_topics_dlg.php:184 msgid "thesaurus:: tout fermer" msgstr "إغلاق جميع" -#: www/thesaurus2/import.php:158 +#: www/thesaurus2/import.php:159 #, php-format msgid "over-indent at line %s" msgstr "" -#: www/thesaurus2/import.php:166 +#: www/thesaurus2/import.php:167 #, php-format msgid "bad encoding at line %s" msgstr "" -#: www/thesaurus2/import.php:173 +#: www/thesaurus2/import.php:174 #, php-format msgid "bad character at line %s" msgstr "" -#: www/thesaurus2/import_dlg.php:42 +#: www/thesaurus2/import_dlg.php:44 msgid "thesaurus:: Importer" msgstr "توربد" -#: www/thesaurus2/import_dlg.php:85 +#: www/thesaurus2/import_dlg.php:87 msgid "thesaurus:: coller ici la liste des termes a importer" msgstr "ألصق هنا قائمة الكلمات التي تريد إدخالها" -#: www/thesaurus2/import_dlg.php:86 +#: www/thesaurus2/import_dlg.php:88 msgid "thesaurus:: langue par default" msgstr "اللغة الافتراضية" -#: www/thesaurus2/import_dlg.php:93 +#: www/thesaurus2/import_dlg.php:95 msgid "Fichier ASCII tabule" msgstr "" -#: www/thesaurus2/import_dlg.php:110 +#: www/thesaurus2/import_dlg.php:112 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "إزالة روابط مجالات الفروع" -#: www/thesaurus2/import_dlg.php:113 +#: www/thesaurus2/import_dlg.php:115 msgid "thesaurus:: reindexer la base apres l'import" msgstr "إعادة فهرسة بعد التوريد" -#: www/thesaurus2/index.php:96 +#: www/thesaurus2/index.php:98 msgid "thesaurus:: Editer le thesaurus" msgstr "عدل القاموس" -#: www/thesaurus2/index.php:118 +#: www/thesaurus2/index.php:120 msgid "phraseanet:: choisir" msgstr "إختيار" -#: www/thesaurus2/index.php:144 +#: www/thesaurus2/index.php:146 msgid "thesaurus:: langue pivot" msgstr "اللغة المحورية" -#: www/thesaurus2/index.php:161 +#: www/thesaurus2/index.php:163 msgid "thesaurus:: Vous n'avez acces a aucune base" msgstr "لاتملك حق الوصول إلى أية قاعدة بيانات" -#: www/thesaurus2/linkfield.php:32 +#: www/thesaurus2/linkfield.php:34 msgid "thesaurus:: Lier la branche de thesaurus au champ" msgstr "ربط فرع القاموس بالمجال" -#: www/thesaurus2/linkfield.php:112 +#: www/thesaurus2/linkfield.php:114 #, php-format msgid "thesaurus:: Lier la branche de thesaurus au champ %s" msgstr "%s ربط فرع القاموس بالمجال" -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 +#: www/thesaurus2/linkfield2.php:34 +#: www/thesaurus2/linkfield3.php:35 msgid "thesaurus:: Lier la branche de thesaurus" msgstr "ربط الفرع" -#: www/thesaurus2/linkfield2.php:116 +#: www/thesaurus2/linkfield2.php:118 #, php-format msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " msgstr "هذا المجال قد تم تغيره ؛ الفرع القديم هو %s " -#: www/thesaurus2/linkfield2.php:145 +#: www/thesaurus2/linkfield2.php:147 msgid "thesaurus:: nouvelle branche" msgstr "فرع جديد" -#: www/thesaurus2/linkfield2.php:150 +#: www/thesaurus2/linkfield2.php:152 msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" msgstr "هذا المجال ليس مربوطا بالقاموس. الالفاظ المفهرسة و المرشحة سيتم حذفه" -#: www/thesaurus2/linkfield2.php:158 +#: www/thesaurus2/linkfield2.php:160 msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" msgstr "هذا المجال يجب أن يربط بالقاموس. إعادة فهرسة قاعدة البيانات ضرورية" -#: www/thesaurus2/linkfield2.php:162 +#: www/thesaurus2/linkfield2.php:164 msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" msgstr "الرابط القاموس يجب تغييره، من الضروري إعادة فهرسة قاعدة بيانات" -#: www/thesaurus2/linkfield2.php:177 +#: www/thesaurus2/linkfield2.php:179 msgid "thesaurus:: reindexation necessaire" msgstr "إعادة فهرسة ضرورية" -#: www/thesaurus2/linkfield2.php:181 +#: www/thesaurus2/linkfield2.php:183 msgid "thesaurus:: pas de reindexation" msgstr "لا حاجة لإعادة الفهرسة" -#: www/thesaurus2/linkfield3.php:78 +#: www/thesaurus2/linkfield3.php:80 #, php-format msgid "thesaurus:: suppression du lien du champ %s" msgstr "%s حذف رابط المجال" -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 +#: www/thesaurus2/linkfield3.php:88 +#: www/thesaurus2/linkfield3.php:104 #, php-format msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" msgstr "%s حذف فرع الكلمات المرشحة للمجال" -#: www/thesaurus2/linkfield3.php:112 +#: www/thesaurus2/linkfield3.php:114 msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." msgstr "تسجيل اللائحة المعدلة من الكلمات المرشحة" -#: www/thesaurus2/linkfield3.php:124 +#: www/thesaurus2/linkfield3.php:126 msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" msgstr "إزالة الفهارس نحو القاموس للمجال" -#: www/thesaurus2/linkfield3.php:135 +#: www/thesaurus2/linkfield3.php:137 msgid "thesaurus:: reindexer tous les enregistrements" msgstr "إعادة فهرسة كل التسجيلات" @@ -7915,262 +7989,264 @@ msgstr "إعادة فهرسة كل التسجيلات" msgid "thesaurus:: corbeille" msgstr "سلة المهملات" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: Nouveau terme" msgstr "مصطلح جديد" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: terme" msgstr "لفظ" -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newsy_dlg.php:39 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau synonyme" msgstr "مرادف جديد" -#: www/thesaurus2/newsy_dlg.php:37 +#: www/thesaurus2/newsy_dlg.php:39 msgid "thesaurus:: synonyme" msgstr "مرادف" -#: www/thesaurus2/newsy_dlg.php:91 +#: www/thesaurus2/newsy_dlg.php:93 msgid "thesaurus:: contexte" msgstr "السياق" -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau terme specifique" msgstr "مرادف جديد محدد" -#: www/thesaurus2/newterm.php:72 +#: www/thesaurus2/newterm.php:74 #, php-format msgid "thesaurus:: le terme %s" msgstr "%s المصطلح" -#: www/thesaurus2/newterm.php:74 +#: www/thesaurus2/newterm.php:76 #, php-format msgid "thesaurus:: avec contexte %s" msgstr "%s مع المضمون" -#: www/thesaurus2/newterm.php:76 +#: www/thesaurus2/newterm.php:78 msgid "thesaurus:: sans contexte" msgstr "بدون سياق" -#: www/thesaurus2/newterm.php:104 +#: www/thesaurus2/newterm.php:106 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "هو مرشح من المجال المقبول: " -#: www/thesaurus2/newterm.php:106 +#: www/thesaurus2/newterm.php:108 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "هو مرشح من المجالات المقبولة: " -#: www/thesaurus2/newterm.php:146 +#: www/thesaurus2/newterm.php:148 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "حدد مصدرا للقبول" -#: www/thesaurus2/newterm.php:162 #: www/thesaurus2/newterm.php:164 +#: www/thesaurus2/newterm.php:166 msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" msgstr "مرشح من المجالات لكن لا يقبل كلفظ مرشح في هذا الموضع من القاموس" -#: www/thesaurus2/newterm.php:169 +#: www/thesaurus2/newterm.php:171 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "غير موجود بين الألفاظ المرشحة" -#: www/thesaurus2/newterm.php:173 +#: www/thesaurus2/newterm.php:175 msgid "thesaurus:: attention :" msgstr "حذار" -#: www/thesaurus2/newterm.php:184 +#: www/thesaurus2/newterm.php:186 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "إضافة مصطلح دون إعادة الفهرسة" -#: www/thesaurus2/newterm.php:186 +#: www/thesaurus2/newterm.php:188 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "إضافة المصطلح و إعادة الفهرسة" -#: www/thesaurus2/properties.php:47 +#: www/thesaurus2/properties.php:49 msgid "thesaurus:: Proprietes" msgstr "خصائص" -#: www/thesaurus2/properties.php:92 +#: www/thesaurus2/properties.php:94 +#: www/thesaurus2/thesaurus.php:230 +#: www/thesaurus2/thesaurus.php:255 msgid "thesaurus::menu: supprimer" msgstr "حذف" -#: www/thesaurus2/properties.php:93 +#: www/thesaurus2/properties.php:95 msgid "thesaurus:: remplacer" msgstr "إستبدال" -#: www/thesaurus2/properties.php:120 +#: www/thesaurus2/properties.php:122 #, php-format msgid "thesaurus:: %s reponses retournees" msgstr "نتيجة %s" -#: www/thesaurus2/properties.php:147 +#: www/thesaurus2/properties.php:149 msgid "thesaurus:: synonymes" msgstr "مرادفات" -#: www/thesaurus2/properties.php:148 +#: www/thesaurus2/properties.php:150 msgid "thesaurus:: hits" msgstr "عدد النتائج" -#: www/thesaurus2/properties.php:149 +#: www/thesaurus2/properties.php:151 msgid "thesaurus:: ids" msgstr "هويات" -#: www/thesaurus2/properties.php:321 +#: www/thesaurus2/properties.php:323 #, php-format msgid "thesaurus:: Confirmer la suppression du terme %s" msgstr "%s تأكيد حذف المصطلح" -#: www/thesaurus2/search.php:77 +#: www/thesaurus2/search.php:79 msgid "thesaurus:: le terme" msgstr "الكلمة" -#: www/thesaurus2/search.php:78 +#: www/thesaurus2/search.php:80 msgid "thesaurus:: est egal a " msgstr "تساوي " -#: www/thesaurus2/search.php:82 +#: www/thesaurus2/search.php:84 msgid "thesaurus:: commence par" msgstr "تبدأ ب" -#: www/thesaurus2/search.php:86 +#: www/thesaurus2/search.php:88 msgid "thesaurus:: contient" msgstr "تحوي" -#: www/thesaurus2/search.php:91 +#: www/thesaurus2/search.php:93 msgid "thesaurus:: fini par" msgstr "تنتهي ب" -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 +#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:251 msgid "thesaurus::menu: proprietes" msgstr "خصائص" -#: www/thesaurus2/thesaurus.php:225 +#: www/thesaurus2/thesaurus.php:227 msgid "thesaurus::menu: refuser" msgstr "رفض" -#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:228 msgid "thesaurus::menu: accepter" msgstr "أجز" -#: www/thesaurus2/thesaurus.php:229 +#: www/thesaurus2/thesaurus.php:231 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "حذف الألفاظ المرشحة التي تعط جواب" -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 +#: www/thesaurus2/thesaurus.php:233 +#: www/thesaurus2/thesaurus.php:254 msgid "thesaurus::menu: remplacer" msgstr "إستبدال" -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 +#: www/thesaurus2/thesaurus.php:237 +#: www/thesaurus2/thesaurus.php:257 msgid "thesaurus::menu: chercher" msgstr "بحث" -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 +#: www/thesaurus2/thesaurus.php:238 +#: www/thesaurus2/thesaurus.php:258 msgid "thesaurus::menu: exporter" msgstr "استصدار" -#: www/thesaurus2/thesaurus.php:239 +#: www/thesaurus2/thesaurus.php:241 msgid "thesaurus::menu: relire les candidats" msgstr "إعادة قراءة الألفاظ المرشحة" -#: www/thesaurus2/thesaurus.php:245 +#: www/thesaurus2/thesaurus.php:247 msgid "thesaurus::menu: importer" msgstr "توريد" -#: www/thesaurus2/thesaurus.php:250 +#: www/thesaurus2/thesaurus.php:252 msgid "thesaurus::menu: Nouveau terme" msgstr "مصطلح جديد" -#: www/thesaurus2/thesaurus.php:251 +#: www/thesaurus2/thesaurus.php:253 msgid "thesaurus::menu: Nouveau synonyme" msgstr "مرادف جديد" -#: www/thesaurus2/thesaurus.php:257 +#: www/thesaurus2/thesaurus.php:259 msgid "thesaurus::menu: export topics" msgstr "استصدار واجهات" -#: www/thesaurus2/thesaurus.php:259 +#: www/thesaurus2/thesaurus.php:261 msgid "thesaurus::menu: lier au champ" msgstr "إربط بالمجال" -#: www/thesaurus2/thesaurus.php:294 +#: www/thesaurus2/thesaurus.php:296 msgid "thesaurus:: onglet stock" msgstr "مخزون" -#: www/thesaurus2/thesaurus.php:299 +#: www/thesaurus2/thesaurus.php:301 msgid "thesaurus:: afficher les termes refuses" msgstr "عرض المصطلحات المرفوضة" -#: www/thesaurus2/thesaurus.php:313 +#: www/thesaurus2/thesaurus.php:315 msgid "thesaurus:: onglet thesaurus" msgstr "قاموس" -#: www/thesaurus2/thesaurus.php:513 +#: www/thesaurus2/thesaurus.php:515 msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "حذف هذا الفرع؟ الكلمات المعنية ترشح للفهرسة في المرة القادمة" -#: www/thesaurus2/thesaurus.php:515 +#: www/thesaurus2/thesaurus.php:517 msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "" "هذا الفرع يقدم أجوبة.\n" "حذف على أي حال؟ الكلمات المعنية تصبح مرشحة للفهرسة" -#: www/thesaurus2/thesaurus.php:557 +#: www/thesaurus2/thesaurus.php:559 msgid "thesaurus:: Tous les termes ont des hits" msgstr "كل الألفاظ تعطي نتائج" -#: www/thesaurus2/thesaurus.php:563 +#: www/thesaurus2/thesaurus.php:565 msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" msgstr "هناك الفاظ من هذا الفرع لا تعط أي نتائج. تريد إزالتها؟" -#: www/thesaurus2/thesaurus.php:652 +#: www/thesaurus2/thesaurus.php:654 msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" msgstr "إزالة جميع المفردات المرشحة، واحالة كافة الملفات الى اعادة الفهرسة" -#: www/thesaurus2/thesaurus.php:1096 +#: www/thesaurus2/thesaurus.php:1098 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "انقل الكلمات الى المخزون" -#: www/upload/index.php:75 +#: www/upload/index.php:76 msgid "upload:You do not have right to upload datas" msgstr "ليس لديك حق مساهم" -#: www/upload/index.php:186 +#: www/upload/index.php:187 msgid "Selectionner une action" msgstr "" -#: www/upload/index.php:187 +#: www/upload/index.php:188 msgid "Aucune enregistrement selectionne" msgstr "" -#: www/upload/index.php:188 +#: www/upload/index.php:189 msgid "Transfert en court, vous devez attendre la fin du transfert" msgstr "" -#: www/upload/index.php:189 +#: www/upload/index.php:190 msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" msgstr "" -#: www/upload/index.php:241 +#: www/upload/index.php:242 #, php-format msgid "upload:: %d fichiers uploades" msgstr "ملفا محولا %d" -#: www/upload/index.php:243 +#: www/upload/index.php:244 #: www/upload/index.php:414 #, php-format msgid "upload:: %d fichier uploade" msgstr "ملفا محولا %d" -#: www/upload/index.php:247 +#: www/upload/index.php:248 msgid "Certains elements uploades sont passes en quarantaine" msgstr "" -#: www/upload/index.php:276 +#: www/upload/index.php:277 #, php-format msgid "upload :: choisir les fichiers a uploader (max : %d MB)" msgstr "%d اختر الملفات التي تريد اضافتها لا تتعدى هنا الحجم بالميغا" @@ -8243,37 +8319,37 @@ msgstr "" msgid "Supprimer precedentes propositions a la substitution" msgstr "" -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 +#: www/upload/upload.php:45 +#: www/upload/upload.php:54 msgid "Internal Server Error" msgstr "" -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 +#: www/upload/upload.php:140 +#: www/upload/upload.php:163 msgid "erreur lors de l'archivage" msgstr "" -#: www/upload/upload.php:144 +#: www/upload/upload.php:143 msgid "Document ajoute a la quarantaine" msgstr "" -#: www/upload/upload.php:147 +#: www/upload/upload.php:146 msgid "Fichier uploade, en attente" msgstr "" -#: www/upload/upload.php:187 +#: www/upload/upload.php:186 msgid "Fichier uploade !" msgstr "" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:402 msgid "Erreur lors de l'enregistrement des donnees" msgstr "" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:475 msgid "Erreur lors de la mise a jour des donnes " msgstr "" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:599 msgid "Envoie avec succes" msgstr "" @@ -8297,20 +8373,24 @@ msgstr "" msgid "Basket has been updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:311 +msgid "Basket updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:346 msgid "Basket has been archived" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:350 msgid "Basket has been unarchived" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:442 #, php-format msgid "%d records added" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:504 #, php-format msgid "%d records moved" msgstr "" @@ -8347,6 +8427,21 @@ msgstr "" msgid "Action Forbidden : You are not the publisher" msgstr "" +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:292 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:316 +msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." +msgstr "سيمكنك اشتراكك من الاطلاع على المنشورات RSS" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:293 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:317 +msgid "publications::Ne le partagez pas, il est strictement confidentiel" +msgstr "لا تشاركه احدا، فهو سري" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:319 +msgid "publications::votre rss personnel" +msgstr "الخاصة بك rss" + #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 msgid "prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." msgstr "تحذير: قائمة قواعد البيانات التي تم اختيارها للبحث تم تغييرها" @@ -8453,7 +8548,7 @@ msgid "panier:: vous ne pouvez pas supprimer un panier public" msgstr "لا يمكنك حذف سلة عمومية" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:81 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" +msgid "Vous ne pouvez pas selectionner plus de 800 enregistrements" msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 @@ -8501,97 +8596,146 @@ msgid "Message" msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +msgid "Time for feedback (days)" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +msgid "Accuse de reception" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#, php-format +msgid "%d fields have been updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "No users selected" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:308 msgid "Unable to send the documents" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:190 #, php-format msgid "Push from %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:199 msgid "No receivers specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:204 msgid "No elements to push" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:218 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:434 #, php-format msgid "Unknown user %d" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:281 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:331 #, php-format msgid "Validation from %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:340 msgid "No participants specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:345 msgid "No elements to validate" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:425 #, php-format msgid "Missing mandatory participant parameter %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:515 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:601 msgid "First name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:604 msgid "Last name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:607 msgid "Email is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:610 msgid "Email is invalid" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:629 msgid "User already exists" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:656 msgid "User successfully created" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:662 msgid "Error while creating user" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:153 +#, php-format +msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:157 +#, php-format +msgid "reponses:: %d Resultats" +msgstr "نتيجة %d" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %d reponses" +msgstr "اجابة %d" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %s documents selectionnes" +msgstr "وثيقة مختارة %s" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:100 msgid "Story created" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:209 msgid "Record removed from story" msgstr "" +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:279 +msgid "You can not edit this story" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:298 +msgid "Story updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:40 +msgid "Error while saving preference" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:53 +msgid "Preference saved !" +msgstr "" + #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 #, php-format msgid "Unable to create list %s" @@ -8611,130 +8755,100 @@ msgstr "" msgid "Unable to update list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:293 msgid "List has been updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:339 #, php-format msgid "List has been deleted" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:354 #, php-format msgid "Unable to delete list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:395 msgid "Entry removed from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:410 msgid "Unable to remove entry from list " msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:471 #, php-format msgid "%d Users added to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:479 #, php-format msgid "%d User added to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:496 msgid "Unable to add usr to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:597 msgid "List shared to user" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:612 msgid "Unable to share the list with the usr" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:650 msgid "Owner removed from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:664 msgid "Unable to remove usr from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:177 #, php-format msgid "%d Story attached to the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:184 #, php-format msgid "%d Stories attached to the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:194 #, php-format msgid "%1$d Story attached to the WorkZone, %2$d already attached" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:202 #, php-format msgid "%1$d Stories attached to the WorkZone, %2$d already attached" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:253 msgid "Story detached from the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:138 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:187 msgid "Appbox is unreachable" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:199 msgid "Databox is unreachable" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:351 #, php-format msgid "an error occured : %s" msgstr "" -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "YYYY/MM/DD HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "YYYY/MM/DD" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "aaaa//mm//jj" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "HH:MM:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "hh:mm:ss" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:570 msgid "Email addess is not valid" msgstr "" @@ -8766,19 +8880,15 @@ msgstr "" msgid "Processus de validation recu de %s" msgstr "" -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 +#: lib/Doctrine/Repositories/BasketElementRepository.php:46 msgid "Element is not found" msgstr "" -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" -msgstr "" - -#: lib/Doctrine/Repositories/BasketRepository.php:103 +#: lib/Doctrine/Repositories/BasketRepository.php:171 msgid "Basket is not found" msgstr "" -#: lib/Doctrine/Repositories/BasketRepository.php:108 +#: lib/Doctrine/Repositories/BasketRepository.php:193 msgid "You have not access to this basket" msgstr "" @@ -8799,3 +8909,26 @@ msgstr "" msgid "You have not access to this list" msgstr "" +#~ msgid "phraseanet::technique::datetime-edit-format" +#~ msgstr "YYYY/MM/DD HH:NN:SS" + +#~ msgid "phraseanet::technique::date-edit-format" +#~ msgstr "YYYY/MM/DD" + +#~ msgid "phraseanet::technique::date-edit-explain" +#~ msgstr "aaaa//mm//jj" + +#~ msgid "phraseanet::technique::time-edit-format" +#~ msgstr "HH:MM:SS" + +#~ msgid "phraseanet::technique::time-edit-explain" +#~ msgstr "hh:mm:ss" + +#~ msgid "phraseanet::technique::datetime" +#~ msgstr "%d %b %Y à %Hh%s" + +#~ msgid "phraseanet::technique::date" +#~ msgstr "%d-%m-%Y" + +#~ msgid "publications:: publication non lue" +#~ msgstr "غير مقروءة" diff --git a/locale/de_DE/LC_MESSAGES/phraseanet.mo b/locale/de_DE/LC_MESSAGES/phraseanet.mo index 83fdb7540f..81945027d8 100644 Binary files a/locale/de_DE/LC_MESSAGES/phraseanet.mo and b/locale/de_DE/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/de_DE/LC_MESSAGES/phraseanet.po b/locale/de_DE/LC_MESSAGES/phraseanet.po index d3cf210507..5b3c89c676 100644 --- a/locale/de_DE/LC_MESSAGES/phraseanet.po +++ b/locale/de_DE/LC_MESSAGES/phraseanet.po @@ -2,22 +2,22 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-06 12:59+0100\n" -"PO-Revision-Date: 2012-02-06 13:05+0100\n" +"POT-Creation-Date: 2012-03-08 14:30+0100\n" +"PO-Revision-Date: 2012-03-08 14:30+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-02-06 11:01+0000\n" -"X-Generator: Launchpad (build 14747)\n" -"Language: de_DE\n" +"X-Launchpad-Export-Date: 2012-03-08 09:56+0000\n" +"X-Generator: Launchpad (build 14914)\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" -"X-Poedit-KeywordsList: _e;__\n" -"X-Poedit-Language: German\n" "X-Poedit-Country: GERMANY\n" +"Language: \n" +"X-Poedit-Language: German\n" +"X-Poedit-KeywordsList: _e;__\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -27,88 +27,82 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 +#: lib/classes/appbox.class.php:309 +#: lib/classes/appbox.class.php:383 msgid "Flushing cache" msgstr "Cache wird gespüllt" -#: lib/classes/appbox.class.php:323 +#: lib/classes/appbox.class.php:316 msgid "Creating new tables" msgstr "Neue Tabellen erstellen" -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 +#: lib/classes/appbox.class.php:333 +#: lib/classes/appbox.class.php:341 msgid "Purging directories" msgstr "Verzeichnisse werden reinigt" -#: lib/classes/appbox.class.php:356 +#: lib/classes/appbox.class.php:349 msgid "Copying files" msgstr "Dateien werden kopiert" -#: lib/classes/appbox.class.php:365 +#: lib/classes/appbox.class.php:358 msgid "Upgrading appbox" msgstr "Appbox wird aktualisiert" -#: lib/classes/appbox.class.php:374 +#: lib/classes/appbox.class.php:367 #, php-format msgid "Upgrading %s" msgstr "%s wird aktualisiert" -#: lib/classes/appbox.class.php:382 +#: lib/classes/appbox.class.php:375 msgid "Post upgrade" msgstr "Nach der Aktualisierung" -#: lib/classes/appbox.class.php:433 +#: lib/classes/appbox.class.php:425 msgid "Nom de base de donnee incorrect" msgstr "falsche Datenbankname" -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "Unmöglich, in %s Datei zu schreiben" - -#: lib/classes/appbox.class.php:590 +#: lib/classes/appbox.class.php:518 msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" msgstr "Die Datenbank besteht schon und Sie haben keine Rechte darauf oder Sie haben keinen Zugriff, diese Datenbank zu erstellen" -#: lib/classes/base.class.php:294 +#: lib/classes/base.class.php:306 #, php-format msgid "Updating table %s" msgstr "Tabelle %s werden aktualisiert" -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 +#: lib/classes/base.class.php:323 +#: lib/classes/base.class.php:573 +#: lib/classes/base.class.php:817 +#: lib/classes/base.class.php:834 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Fehler beim Versuch ; Fehler : %s" -#: lib/classes/base.class.php:333 +#: lib/classes/base.class.php:345 #, php-format msgid "Creating table %s" msgstr "Tabelle %s werden erstellt" -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 +#: lib/classes/base.class.php:353 +#: lib/classes/base.class.php:894 #, php-format msgid "Applying patches on %s" msgstr "Patches zu %s werden angewendet" -#: lib/classes/base.class.php:842 +#: lib/classes/base.class.php:854 msgid "Looking for patches" msgstr "Patches werden gesucht" -#: lib/classes/databox.class.php:1401 +#: lib/classes/databox.class.php:1394 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "FEHLER : Alle \"subdefgroup\" tags brauchen ein \"name\" Attribut" -#: lib/classes/databox.class.php:1414 +#: lib/classes/databox.class.php:1407 msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "FEHLER : das \"name\" Attribut des Knotens \"subdef\" ist zwingend und einzig durch Gruppe von subdef" -#: lib/classes/databox.class.php:1419 +#: lib/classes/databox.class.php:1412 msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" msgstr "FEHLER : das \"class\" Attribut des Knotens \"subdef\" ist nötig und gleichwertig zu \"thumbnail\",\"preview\" oder \"document\"" @@ -205,14 +199,14 @@ msgid "login::register: vos demandes concernat les collections suivantes sont su msgstr "Ihre Zugriffanfragen auf die folgenden Kollektionen müssen erst von einem Administrator akzeptiert werden" #: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 +#: lib/classes/mail.class.php:166 msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" msgstr "Sie werden eine Nachricht bekommen, wenn Ihre Anfrage behandelt sind" #: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 +#: lib/classes/mail.class.php:148 +#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:179 msgid "login::register: sujet email : confirmation de votre adresse email" msgstr "E-Mail Adresse Bestätigung" @@ -220,28 +214,28 @@ msgstr "E-Mail Adresse Bestätigung" msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." msgstr "Guten Tag, Ihre Anfrage, um Ihre Email Adresse zu verändern, wurde bei uns eingegangen. Um diese Anfrage zu bestätigen, bitte folgen Sie folgendem Link. Wenn Sie dieses Mail gegen Ihnen Willen bekommen, bitte zerstören Sie diese Nachricht." -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:150 +#: lib/classes/mail.class.php:164 msgid "login::register: merci d'avoir confirme votre adresse email" msgstr "Wir danken Ihnen, um Ihre E-Mail Adresse bestätigt zu haben" -#: lib/classes/mail.class.php:149 +#: lib/classes/mail.class.php:151 msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " msgstr "Sie dürfen jetzt Ihnen mit dem folgenden Link einloggen " -#: lib/classes/mail.class.php:163 +#: lib/classes/mail.class.php:165 msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " msgstr "Ihre Zugriffanfragen auf die folgende Kollektionen müssen von einem Administrator akzeptiert werden : Sie sind noch schwebend : " -#: lib/classes/mail.class.php:179 +#: lib/classes/mail.class.php:181 msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." msgstr "Um Ihre Anmeldung zu der Datenbank zu bestätigen, bitte bestätigen Sie Ihre E-Mail Adresse mit dem folgenden Link" -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." -msgstr "Wenn der Link nicht klickbar ist, bitte kopieren und fügen Sie ihn in die Adresszeile Ihres Browsers ein." +#: lib/classes/mail.class.php:212 +msgid "si cet email contient des liens non cliquables copiez/collez ces liens dans votre navigateur." +msgstr "" -#: lib/classes/mail.class.php:211 +#: lib/classes/mail.class.php:214 msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" msgstr "Phraseanet IV Automatische Meldung - Bitte besuchen Sie dieses Link, um automatisierte Meldungen zu verwalten" @@ -264,35 +258,35 @@ msgstr "Grösse zu klein: %dpx" msgid "Mauvais mode colorimetrique : %s" msgstr "schlechter kolorimetrische Modus : %s" -#: lib/classes/phrasea.class.php:308 +#: lib/classes/phrasea.class.php:304 msgid "admin::monitor: module production" msgstr "Prod" -#: lib/classes/phrasea.class.php:309 +#: lib/classes/phrasea.class.php:305 msgid "admin::monitor: module client" msgstr "Client" -#: lib/classes/phrasea.class.php:310 +#: lib/classes/phrasea.class.php:306 msgid "admin::monitor: module admin" msgstr "Admin" -#: lib/classes/phrasea.class.php:311 +#: lib/classes/phrasea.class.php:307 msgid "admin::monitor: module report" msgstr "Report" -#: lib/classes/phrasea.class.php:312 +#: lib/classes/phrasea.class.php:308 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" -#: lib/classes/phrasea.class.php:313 +#: lib/classes/phrasea.class.php:309 msgid "admin::monitor: module comparateur" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:314 +#: lib/classes/phrasea.class.php:310 msgid "admin::monitor: module validation" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:315 +#: lib/classes/phrasea.class.php:311 msgid "admin::monitor: module upload" msgstr "Upload" @@ -331,76 +325,81 @@ msgstr "suchen" msgid "client::recherche: dans les categories" msgstr "In den Kategorien" -#: lib/classes/setup.class.php:341 +#: lib/classes/setup.class.php:329 msgid "mod_auth_token correctement configure" msgstr "mod_auth_token wurde gut konfiguriert" -#: lib/classes/setup.class.php:343 +#: lib/classes/setup.class.php:331 msgid "mod_auth_token mal configure" msgstr "mod_auth_token wurde schlecht konfiguriert" -#: lib/classes/setup.class.php:356 +#: lib/classes/setup.class.php:344 msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " msgstr "Vorsicht, mod Aktivierung Test wurde erfolgreich, aber Lauftest wurde noch nicht ausgeführt " -#: lib/classes/setup.class.php:371 +#: lib/classes/setup.class.php:359 msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" msgstr "Vorsicht, bitte überprüfen Sie die Konfiguration xsendfile, die zurzeit in Setup Phrasea Modul aktiviert ist" -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 +#: lib/classes/setup.class.php:368 +#: lib/classes/setup.class.php:377 msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" msgstr "Vorsicht, bitte überprüfen Sie die Konfiguration h264_streaming, die zurzeit in Setup aktiviert ist" -#: lib/classes/setup.class.php:532 +#: lib/classes/setup.class.php:520 msgid "setup::Tests d'envois d'emails" msgstr "Test E-Mail Überprüfungen" -#: lib/classes/setup.class.php:536 +#: lib/classes/setup.class.php:524 msgid "boutton::valider" msgstr "Validieren" -#: lib/classes/setup.class.php:613 +#: lib/classes/setup.class.php:602 msgid "setup:: Serveur Memcached" msgstr "memcached Server Addresse" -#: lib/classes/setup.class.php:629 +#: lib/classes/setup.class.php:611 #, php-format msgid "setup::Serveur actif sur %s" msgstr "Server aktiviert auf %s" -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "Der memcached Server antwortet nicht, Sie sollten den Cache deaktivieren" - -#: lib/classes/setup.class.php:645 +#: lib/classes/setup.class.php:623 #, php-format msgid "setup::Aucun serveur memcached rattache." msgstr "Kein memcached Server verbunden" -#: lib/classes/setup.class.php:682 +#: lib/classes/setup.class.php:644 +msgid "Many opcode cache load is forbidden" +msgstr "" + +#: lib/classes/setup.class.php:646 +msgid "No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC." +msgstr "" + +#: lib/classes/setup.class.php:660 #, php-format msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" msgstr "Schlechte Konfiguration: für die Variante %1$s, gegebene Konfiguration : %2$s ; erwartete : %3$s" -#: lib/classes/setup.class.php:713 +#: lib/classes/setup.class.php:691 msgid "setup::Etat du moteur de recherche" msgstr "Suchmaschinestatus" -#: lib/classes/setup.class.php:724 +#: lib/classes/setup.class.php:702 msgid "setup::Sphinx confguration" msgstr "Sphinx Konfiguration" -#: lib/classes/setup.class.php:747 +#: lib/classes/setup.class.php:725 msgid "test::test" msgstr "test" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:148 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:153 msgid "Cette valeur ne peut être vide" msgstr "Dieser Wert kann nicht leer sein" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:149 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:154 msgid "Url non valide" msgstr "URL nicht gültig" @@ -434,15 +433,11 @@ msgstr "OK" #: lib/classes/Bridge/Api/Dailymotion.class.php:829 #: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 msgid "Ce champ est obligatoire" msgstr "Dieses Feld ist ein Pflichtfeld" #: lib/classes/Bridge/Api/Dailymotion.class.php:834 #: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 #, php-format msgid "Ce champ est trop long %s caracteres max" msgstr "Dieses Feld ist zu lang, max. %s Zeichen" @@ -454,7 +449,6 @@ msgid "Ce champ est trop court %s caracteres min" msgstr "Dieses Feld ist zu kurz, min. %s Zeichen" #: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 msgid "Le record n'a pas de fichier physique" msgstr "Der Datensatz hat keine physikalische Datei" @@ -464,7 +458,6 @@ msgid "La taille maximale d'une video est de %d minutes." msgstr "Das maximale Gewicht für eine Video ist %d Minuten." #: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 #, php-format msgid "Le poids maximum d'un fichier est de %s" msgstr "Maximales Gewicht für eine Datei ist %s" @@ -473,15 +466,16 @@ msgstr "Maximales Gewicht für eine Datei ist %s" msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" msgstr "Dieses Produkt verwendet das Flickr API, ist jedoch nicht von Flickr zugelassen oder lizenziert." -#: lib/classes/Bridge/Api/Flickr.class.php:529 +#: lib/classes/Bridge/Api/Flickr.class.php:528 +#: lib/classes/Bridge/Api/Youtube.class.php:542 msgid "L'upload a echoue" msgstr "Upload ist fehlgeschlagen" -#: lib/classes/Bridge/Api/Flickr.class.php:639 +#: lib/classes/Bridge/Api/Flickr.class.php:638 msgid "Photos" msgstr "Bilder" -#: lib/classes/Bridge/Api/Flickr.class.php:648 +#: lib/classes/Bridge/Api/Flickr.class.php:647 msgid "Photosets" msgstr "Fotosets" @@ -561,25 +555,25 @@ msgstr "Aktuelle Operationen können nicht ausgeführt werden, weil die Website msgid "Service youtube introuvable." msgstr "YouTube Service nicht gefunden" -#: lib/classes/caption/record.class.php:171 +#: lib/classes/caption/record.class.php:188 msgid "Open the URL in a new window" msgstr "URL in einem neuen Fenster öffnen" -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 +#: lib/classes/databox/cgu.class.php:37 +#: lib/classes/databox/cgu.class.php:110 #, php-format msgid "cgus:: CGUs de la base %s" msgstr "ANB (Allgemeinen Nutzungsbedingungen) für die %s Datenbank" -#: lib/classes/databox/cgu.class.php:39 +#: lib/classes/databox/cgu.class.php:40 msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" msgstr "Um fortzusetzen, müssen Sie die ANB akzeptieren" -#: lib/classes/databox/cgu.class.php:40 +#: lib/classes/databox/cgu.class.php:41 msgid "cgus :: accepter" msgstr "annehmen" -#: lib/classes/databox/cgu.class.php:41 +#: lib/classes/databox/cgu.class.php:42 msgid "cgus :: refuser" msgstr "ablehnen" @@ -678,34 +672,50 @@ msgid "admin::register: un utilisateur s'est inscrit" msgstr "Ein Benutzer hat sich angemeldet" #: lib/classes/eventsmanager/notify/autoregister.class.php:235 +#: lib/classes/eventsmanager/notify/order.class.php:221 +#: lib/classes/eventsmanager/notify/register.class.php:240 msgid "admin::compte-utilisateur nom" msgstr "Name" #: lib/classes/eventsmanager/notify/autoregister.class.php:237 +#: lib/classes/eventsmanager/notify/order.class.php:223 +#: lib/classes/eventsmanager/notify/register.class.php:242 msgid "admin::compte-utilisateur prenom" msgstr "Vorname" #: lib/classes/eventsmanager/notify/autoregister.class.php:239 +#: lib/classes/eventsmanager/notify/order.class.php:225 +#: lib/classes/eventsmanager/notify/register.class.php:244 msgid "admin::compte-utilisateur email" msgstr "E-Mail" #: lib/classes/eventsmanager/notify/autoregister.class.php:241 +#: lib/classes/eventsmanager/notify/order.class.php:227 +#: lib/classes/eventsmanager/notify/register.class.php:246 msgid "admin::compte-utilisateur adresse" msgstr "Adresse" #: lib/classes/eventsmanager/notify/autoregister.class.php:245 +#: lib/classes/eventsmanager/notify/order.class.php:231 +#: lib/classes/eventsmanager/notify/register.class.php:250 msgid "admin::compte-utilisateur telephone" msgstr "Telefon" #: lib/classes/eventsmanager/notify/autoregister.class.php:247 +#: lib/classes/eventsmanager/notify/order.class.php:233 +#: lib/classes/eventsmanager/notify/register.class.php:252 msgid "admin::compte-utilisateur fax" msgstr "Fax" #: lib/classes/eventsmanager/notify/autoregister.class.php:249 +#: lib/classes/eventsmanager/notify/order.class.php:235 +#: lib/classes/eventsmanager/notify/register.class.php:254 msgid "admin::compte-utilisateur poste" msgstr "Beruf" #: lib/classes/eventsmanager/notify/autoregister.class.php:250 +#: lib/classes/eventsmanager/notify/order.class.php:236 +#: lib/classes/eventsmanager/notify/register.class.php:255 msgid "admin::compte-utilisateur societe" msgstr "Unternehmensname" @@ -725,6 +735,31 @@ msgstr "Bridge Upload Misserfolg" msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" msgstr "Benachrichtigungen bekommen im Falle von Bridge Upload Misserfolg" +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:125 +msgid "email is not valid" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:129 +msgid "failed to send mail" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:133 +msgid "an error occured while exporting records" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:137 +#, php-format +msgid "The delivery to %s failed for the following reason : %s" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:156 +msgid "Email export fails" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:165 +msgid "Get a notification when a mail export fails" +msgstr "" + #: lib/classes/eventsmanager/notify/order.class.php:162 #, php-format msgid "%1$s a passe une %2$scommande%3$s" @@ -822,7 +857,6 @@ msgstr "Sie dürfen sich nun mit dem folgenden Link einloggen, um Ihr Sammelkorb #: lib/classes/eventsmanager/notify/push.class.php:191 #: lib/classes/eventsmanager/notify/validate.class.php:213 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:233 msgid "push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas" msgstr "Vorsicht : Dieses Link ist einzig und geheim, bitte nicht enthüllen" @@ -858,16 +892,11 @@ msgstr "Benutzer Anfragen in Phraseanet Admin bewältigen" #: lib/classes/eventsmanager/notify/validate.class.php:33 #: lib/classes/eventsmanager/notify/validate.class.php:177 -#: lib/classes/eventsmanager/notify/validationdone.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:191 msgid "Validation" msgstr "Validierung" #: lib/classes/eventsmanager/notify/validate.class.php:148 #: lib/classes/eventsmanager/notify/validate.class.php:152 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:164 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:168 msgid "Une selection" msgstr "eine Auswahl ohne Titel" @@ -882,10 +911,9 @@ msgstr "Benachrichtigungen per E-mail erhalten" #: lib/classes/eventsmanager/notify/validate.class.php:200 msgid "push::mail:: Demande de validation de documents" -msgstr "Dokumente Validierungsabfrage" +msgstr "Validierungsanfrage für Dokumente" #: lib/classes/eventsmanager/notify/validate.class.php:203 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:223 #, php-format msgid "Le lien suivant vous propose de valider une selection faite par %s" msgstr "Das folgende Link schlägt Ihnen vor, Ihre Validierung auf die Dokumente, die von %s geschickt wurden, zu geben" @@ -924,7 +952,7 @@ msgstr "Mahnung für eine Validierungsanfrage" #: lib/classes/eventsmanager/notify/validationreminder.class.php:212 msgid "push::mail:: Rappel de demande de validation de documents" -msgstr "Mahnung für eineValidierungsanfrage von Dokumenten" +msgstr "Mahnung für eine Validierungsanfrage von Dokumenten" #: lib/classes/eventsmanager/notify/validationreminder.class.php:216 #, php-format @@ -1137,43 +1165,43 @@ msgstr "Dezember" msgid "report:: non-renseigne" msgstr "nicht ausgefüllt" -#: lib/classes/module/console/systemConfigCheck.class.php:52 +#: lib/classes/module/console/systemConfigCheck.class.php:54 msgid "*** CHECK BINARY CONFIGURATION ***" msgstr "***ÜBERPRÜFEN SIE DIE BINÄRE KONFIGURATION***" -#: lib/classes/module/console/systemConfigCheck.class.php:61 +#: lib/classes/module/console/systemConfigCheck.class.php:65 msgid "*** FILESYSTEM CONFIGURATION ***" msgstr "*** FILESYSTEM KONFIGURATION ***" -#: lib/classes/module/console/systemConfigCheck.class.php:64 +#: lib/classes/module/console/systemConfigCheck.class.php:68 msgid "*** CHECK CACHE OPCODE ***" msgstr "***ÜBERPRÜFEN SIE DIE CACHE OPCODE***" -#: lib/classes/module/console/systemConfigCheck.class.php:67 +#: lib/classes/module/console/systemConfigCheck.class.php:71 msgid "*** CHECK CACHE SERVER ***" msgstr "***ÜBERPRÜFEN SIE DIE CACHE SERVER***" -#: lib/classes/module/console/systemConfigCheck.class.php:70 +#: lib/classes/module/console/systemConfigCheck.class.php:74 msgid "*** CHECK PHP CONFIGURATION ***" msgstr "***ÜBERPRÜFEN SIE DIE PHP KONFIGURATION***" -#: lib/classes/module/console/systemConfigCheck.class.php:73 +#: lib/classes/module/console/systemConfigCheck.class.php:77 msgid "*** CHECK PHP EXTENSIONS ***" msgstr "***ÜBERPRÜFEN SIE DIE PHP ERWEITERUNGEN***" -#: lib/classes/module/console/systemConfigCheck.class.php:76 +#: lib/classes/module/console/systemConfigCheck.class.php:80 msgid "*** CHECK PHRASEA ***" msgstr "***ÜBERPRÜFEN SIE PHRASEA***" -#: lib/classes/module/console/systemConfigCheck.class.php:79 +#: lib/classes/module/console/systemConfigCheck.class.php:83 msgid "*** CHECK SYSTEM LOCALES ***" msgstr "***ÜBERPRÜFEN SIE DIE SYSTEMSSPRACHUMGEBUNGEN***" -#: lib/classes/module/console/systemUpgrade.class.php:49 +#: lib/classes/module/console/systemUpgrade.class.php:50 msgid "Create automatically" msgstr "Automatisch erstellen" -#: lib/classes/module/console/systemUpgrade.class.php:97 +#: lib/classes/module/console/systemUpgrade.class.php:81 msgid "Continuer ?" msgstr "Fortsetzen?" @@ -1202,11 +1230,11 @@ msgstr "Herunterladen für den Benutzer %s" msgid "report:: telechargements par jour" msgstr "Herunterladen" -#: lib/classes/module/report/activity.class.php:531 +#: lib/classes/module/report/activity.class.php:530 msgid "report:: Detail des connexions" msgstr "Verbindungen" -#: lib/classes/module/report/activity.class.php:589 +#: lib/classes/module/report/activity.class.php:588 msgid "report:: Detail des telechargements" msgstr "Herunterladen" @@ -1222,6 +1250,10 @@ msgstr "Verbindungen" msgid "report:: telechargements" msgstr "Herunterladen" +#: lib/classes/module/report/edit.class.php:50 +msgid "report:: edited documents" +msgstr "Bearbeitete Dokumente" + #: lib/classes/module/report/nav.class.php:129 msgid "report:: navigateur" msgstr "Webbrowser" @@ -1266,7 +1298,15 @@ msgstr "Information über Aufnahme %d" msgid "report:: Information sur le navigateur %s" msgstr "Information über Webbrowser %s" -#: lib/classes/record/adapter.class.php:939 +#: lib/classes/module/report/push.class.php:50 +msgid "report:: pushed documents" +msgstr "\"Pushed\" Dokumente" + +#: lib/classes/module/report/validate.class.php:50 +msgid "report:: validated documents" +msgstr "Validierte Dokumente" + +#: lib/classes/record/adapter.class.php:930 msgid "reponses::document sans titre" msgstr "unbetitelt" @@ -1292,22 +1332,22 @@ msgstr "Berichte " msgid "preview:: resultat numero %s " msgstr "Ergebnis Nummer %s " -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 +#: lib/classes/record/preview.class.php:565 +#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:587 msgid "report::acces direct" msgstr "Direkt Zugriff" -#: lib/classes/record/preview.class.php:566 +#: lib/classes/record/preview.class.php:571 msgid "report:: page d'accueil" msgstr "Hautpseite" -#: lib/classes/record/preview.class.php:568 +#: lib/classes/record/preview.class.php:573 msgid "report:: visualiseur cooliris" msgstr "Cooliris Viewer" -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:578 +#: lib/classes/record/preview.class.php:585 msgid "report::presentation page preview" msgstr "externer Link" @@ -1369,11 +1409,11 @@ msgstr "falsche Formulierung, braucht mehrere Zeichen " msgid "Sphinx server is offline" msgstr "Sphinx Server ist offline" -#: lib/classes/set/export.class.php:292 +#: lib/classes/set/export.class.php:301 msgid "export::ftp: reglages manuels" msgstr "manuelle Einstellungen" -#: lib/classes/set/order.class.php:233 +#: lib/classes/set/order.class.php:245 #, php-format msgid "Commande du %s" msgstr "Bestellung von %s" @@ -1684,527 +1724,519 @@ msgstr "Ein Benutzer existiert schon mit Email %s" msgid "modele %s" msgstr "Vorlage %s" -#: lib/conf.d/_GV_template.php:61 +#: lib/conf.d/_GV_template.php:82 msgid "GV::section:: Serveur HTTP" msgstr "HTTP Server" -#: lib/conf.d/_GV_template.php:66 +#: lib/conf.d/_GV_template.php:87 msgid "reglages:: Timezone de l'installation" msgstr "Zeitzone" -#: lib/conf.d/_GV_template.php:73 +#: lib/conf.d/_GV_template.php:94 msgid "reglages:: Nom de linstallation" msgstr "einziger Schlüssel des Falles" -#: lib/conf.d/_GV_template.php:81 +#: lib/conf.d/_GV_template.php:102 msgid "reglages:: Langue par defaut" msgstr "standardmässige Sprache" -#: lib/conf.d/_GV_template.php:90 +#: lib/conf.d/_GV_template.php:111 msgid "reglages:: URL statique (optionnel)" msgstr "statische URL" -#: lib/conf.d/_GV_template.php:96 +#: lib/conf.d/_GV_template.php:117 msgid "GV::section:: Etat de maintenance" msgstr "Pflegezustand" -#: lib/conf.d/_GV_template.php:102 +#: lib/conf.d/_GV_template.php:123 msgid "reglages:: Message a diffuser aux utilisateurs" msgstr "Warnmeldung für Benutzer" -#: lib/conf.d/_GV_template.php:108 +#: lib/conf.d/_GV_template.php:129 msgid "reglages:: activation du message a diffuser aux utilistaeurs" msgstr "Warnmeldung für Benutzer aktivieren" -#: lib/conf.d/_GV_template.php:114 +#: lib/conf.d/_GV_template.php:135 msgid "reglages:: logguer les erreurs" msgstr "Fehler melden" -#: lib/conf.d/_GV_template.php:119 +#: lib/conf.d/_GV_template.php:140 msgid "GV::section:: Connectivite aux webservices" msgstr "Verbindung mit Webservices" -#: lib/conf.d/_GV_template.php:124 +#: lib/conf.d/_GV_template.php:145 msgid "reglages:: Utiliser els google apis" msgstr "Google Programmierschnittstelle benutzen" -#: lib/conf.d/_GV_template.php:131 +#: lib/conf.d/_GV_template.php:152 msgid "reglages:: Service phrasea de localisation" msgstr "Phrasea Lokalisierungdienstleister" -#: lib/conf.d/_GV_template.php:139 +#: lib/conf.d/_GV_template.php:160 msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" msgstr "bit.ly Benutzername" -#: lib/conf.d/_GV_template.php:145 +#: lib/conf.d/_GV_template.php:166 msgid "reglages:: ccle d'api pour l'api bit.ly" msgstr "bit.ly API Key" -#: lib/conf.d/_GV_template.php:151 +#: lib/conf.d/_GV_template.php:172 msgid "reglages:: Utilisation de l'api recpatcha" msgstr "ReCaptcha API benutzen" -#: lib/conf.d/_GV_template.php:158 +#: lib/conf.d/_GV_template.php:179 msgid "reglages:: clef publique recaptcha" msgstr "ReCaptcha öffentlichen Schlüssel" -#: lib/conf.d/_GV_template.php:164 +#: lib/conf.d/_GV_template.php:185 msgid "reglages:: clef privee recaptcha" msgstr "ReCaptcha privaten Schlüssel" -#: lib/conf.d/_GV_template.php:169 +#: lib/conf.d/_GV_template.php:190 msgid "GV::section:: Connectivite a Youtube" msgstr "Youtube Verbindung" -#: lib/conf.d/_GV_template.php:174 +#: lib/conf.d/_GV_template.php:195 #, php-format msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" msgstr "Das YouTube API benutzen, bitte %s sehen,
      machen Sie Callback zu WEBSITE_URL/prod/bridge/callback/youtube" -#: lib/conf.d/_GV_template.php:181 +#: lib/conf.d/_GV_template.php:202 msgid "reglages:: Youtube client id" msgstr "Youtube Kundennummer" -#: lib/conf.d/_GV_template.php:187 +#: lib/conf.d/_GV_template.php:208 msgid "reglages:: Youtube clientsecret" msgstr "Youtube geheimer Client-Schlüssel" -#: lib/conf.d/_GV_template.php:193 +#: lib/conf.d/_GV_template.php:214 #, php-format msgid "reglages:: Youtube cle developpeur, voir %s" msgstr "Youtube Entwicklerschlüssel, bitte %s sehen" -#: lib/conf.d/_GV_template.php:198 +#: lib/conf.d/_GV_template.php:219 msgid "GV::section:: Connectivite a FlickR" msgstr "Flickr Verbindung" -#: lib/conf.d/_GV_template.php:203 +#: lib/conf.d/_GV_template.php:224 #, php-format msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" msgstr "Benutzen Sie das Flickr API, bitte %s sehen, dann machen Sie Callback zu %s" -#: lib/conf.d/_GV_template.php:210 +#: lib/conf.d/_GV_template.php:231 msgid "reglages:: FlickR client id" msgstr "Flickr Kundennummer" -#: lib/conf.d/_GV_template.php:216 +#: lib/conf.d/_GV_template.php:237 msgid "reglages:: FlickR client secret" msgstr "Flickr geheimer Client-Schlüssel" -#: lib/conf.d/_GV_template.php:221 +#: lib/conf.d/_GV_template.php:242 msgid "GV::section:: Connectivite a Dailymotion" msgstr "Dailymotion Verbindung" -#: lib/conf.d/_GV_template.php:226 +#: lib/conf.d/_GV_template.php:247 #, php-format msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" msgstr "Benutzen Sie das Dailymotion API, bitte %s sehen, dann machen Sie Callback zu %s" -#: lib/conf.d/_GV_template.php:233 +#: lib/conf.d/_GV_template.php:254 msgid "reglages:: dailymotion client id" msgstr "Dailymotion Kundennummer" -#: lib/conf.d/_GV_template.php:239 +#: lib/conf.d/_GV_template.php:260 msgid "reglages:: dailymotion client secret" msgstr "Dailymotion geheimer Client-Schlüssel" -#: lib/conf.d/_GV_template.php:244 +#: lib/conf.d/_GV_template.php:265 msgid "GV::section:: Gestionnaire d'evenements" msgstr "Ereignis-Manager" -#: lib/conf.d/_GV_template.php:250 +#: lib/conf.d/_GV_template.php:271 msgid "reglages:: Evenements" msgstr "Ereignisse" -#: lib/conf.d/_GV_template.php:258 +#: lib/conf.d/_GV_template.php:279 msgid "reglages:: Notifications" msgstr "Benachrichtigungen" -#: lib/conf.d/_GV_template.php:264 +#: lib/conf.d/_GV_template.php:285 msgid "GV::section:: Stockage des documents" msgstr "Dokumentspeicherung" -#: lib/conf.d/_GV_template.php:269 +#: lib/conf.d/_GV_template.php:290 msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" msgstr "Dateierweiterungen, die zum Hochladen in Phraseanet IV erlaubt sind, auflisten (Komma als Trennzeichen benutzen. \" * \" benutzen, um alle Dateiformate zu erlauben)" -#: lib/conf.d/_GV_template.php:277 +#: lib/conf.d/_GV_template.php:298 msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" msgstr "direkter Zugriff auf Datenspeicher für Speicherung der Miniaturansichten" -#: lib/conf.d/_GV_template.php:285 +#: lib/conf.d/_GV_template.php:306 msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" msgstr "Datenspeicher für Speicherung der geschützten Dateien" -#: lib/conf.d/_GV_template.php:292 +#: lib/conf.d/_GV_template.php:313 msgid "reglages:: point de montage des vignettes publiees en acces direct" msgstr "Web Miniaturansichten Ordner Alias" -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "Cache Servers" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "ein Cache Server benutzen" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "Kein(e)" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "Cache Server Host" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "Cache Server Schnittstelle" - -#: lib/conf.d/_GV_template.php:330 +#: lib/conf.d/_GV_template.php:321 msgid "GV::section:: Serveur Sphinx" msgstr "Sphinx Server" -#: lib/conf.d/_GV_template.php:335 +#: lib/conf.d/_GV_template.php:326 msgid "Utiliser Sphinx" msgstr "Sphinx benutzen" -#: lib/conf.d/_GV_template.php:341 +#: lib/conf.d/_GV_template.php:332 msgid "reglages:: de l'adresse du serveur sphinx" msgstr "Sphinx Server Adresse" -#: lib/conf.d/_GV_template.php:347 +#: lib/conf.d/_GV_template.php:338 msgid "reglages:: port du serveur sphinx" msgstr "Sphinx Server Schnittstelle" -#: lib/conf.d/_GV_template.php:353 +#: lib/conf.d/_GV_template.php:344 msgid "reglages:: de l'adresse du serveur RT sphinx" msgstr "Sphinx RT Server Adresse" -#: lib/conf.d/_GV_template.php:359 +#: lib/conf.d/_GV_template.php:350 msgid "reglages:: port du serveur RT sphinx" msgstr "Sphinx RT Server Schnittstelle" -#: lib/conf.d/_GV_template.php:364 +#: lib/conf.d/_GV_template.php:356 +msgid "Phrasea Engine" +msgstr "" + +#: lib/conf.d/_GV_template.php:361 +msgid "Default results sort" +msgstr "" + +#: lib/conf.d/_GV_template.php:367 msgid "GV::section:: Executables externes" msgstr "externe ausführbare Dateien" -#: lib/conf.d/_GV_template.php:369 +#: lib/conf.d/_GV_template.php:372 msgid "reglages:: mod_xsendfileapache active" msgstr "xsendfile für Apache erlauben" -#: lib/conf.d/_GV_template.php:375 +#: lib/conf.d/_GV_template.php:378 msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" msgstr "Zugang Pfad für X-Accel-Redirect (nur Nginx)" -#: lib/conf.d/_GV_template.php:382 +#: lib/conf.d/_GV_template.php:385 msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" msgstr "Einhängpunkt für X-Accel-Redirect (nur Nginx)" -#: lib/conf.d/_GV_template.php:389 +#: lib/conf.d/_GV_template.php:392 msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" msgstr "Aktivierung der Stream h264 durch mod_token - vorsicht, benötigt die Module apache mod_h264_streaming und mod_auth_token" -#: lib/conf.d/_GV_template.php:396 +#: lib/conf.d/_GV_template.php:399 msgid "reglages:: point de montage du dossier protege via auth_token" msgstr "Aufsetzpunkt der geschützen Datei durch auth_token" -#: lib/conf.d/_GV_template.php:403 +#: lib/conf.d/_GV_template.php:406 msgid "reglages:: path complet du dossier protege via auth_token" msgstr "Pfad zur geschützen Datei durch auth_token" -#: lib/conf.d/_GV_template.php:409 +#: lib/conf.d/_GV_template.php:412 msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" msgstr "Passphrase der mod_auth_token (definitiert in der apache Konfigurationsdatei)" -#: lib/conf.d/_GV_template.php:415 +#: lib/conf.d/_GV_template.php:418 msgid "reglages:: executable PHP CLI" msgstr "Pfad zu PHP CLI (Common Line Interface)" -#: lib/conf.d/_GV_template.php:422 +#: lib/conf.d/_GV_template.php:425 msgid "reglages:: path du php.ini specifique (vide si non utilise)" msgstr "Pfad zu gezielt php.ini (freiwillig)" -#: lib/conf.d/_GV_template.php:429 +#: lib/conf.d/_GV_template.php:432 msgid "reglages:: chemin de l'executable convert" msgstr "Pfad zum ImageMajick Bestandteil (konvertieren)" -#: lib/conf.d/_GV_template.php:436 +#: lib/conf.d/_GV_template.php:439 msgid "reglages:: chemin de l'executable composite" msgstr "Pfad zum Composite Bestandteil" -#: lib/conf.d/_GV_template.php:443 +#: lib/conf.d/_GV_template.php:446 msgid "reglages:: chemin de l'executable exiftools" msgstr "Pfad zum Exiftool Bestandteil" -#: lib/conf.d/_GV_template.php:449 +#: lib/conf.d/_GV_template.php:452 msgid "reglages:: chemin de l'executable swfextract" msgstr "Pfad zur SWF extract ausführbare Datei" -#: lib/conf.d/_GV_template.php:456 +#: lib/conf.d/_GV_template.php:459 msgid "reglages:: chemin de l'executable pdf2swf" msgstr "Pfad zur PDF 2 SWF ausführbare Datei" -#: lib/conf.d/_GV_template.php:463 +#: lib/conf.d/_GV_template.php:466 msgid "reglages:: chemin de l'executable swfrender" msgstr "Pfad zur SWF render ausführbare Datei" -#: lib/conf.d/_GV_template.php:470 +#: lib/conf.d/_GV_template.php:473 msgid "reglages:: chemin de l'executable unoconv" msgstr "Pfad zum Unoconv Bestandteil" -#: lib/conf.d/_GV_template.php:477 +#: lib/conf.d/_GV_template.php:480 msgid "reglages:: chemin de l'executable FFmpeg" msgstr "Pfad zum FFmpeg Bestandteil" -#: lib/conf.d/_GV_template.php:483 +#: lib/conf.d/_GV_template.php:486 msgid "reglages:: chemin de l'executable MP4Box" msgstr "Pfad zur MP4Box ausführbare Datei" -#: lib/conf.d/_GV_template.php:489 +#: lib/conf.d/_GV_template.php:492 msgid "reglages:: chemin de l'executable Mplayer" msgstr "Pfad zur Mplayer ausführbare Datei" -#: lib/conf.d/_GV_template.php:495 +#: lib/conf.d/_GV_template.php:498 msgid "reglages:: chemin de l'executable pdftotext (xpdf)" msgstr "Pfad für ausführbares Programm pdftotext (xpdf)" -#: lib/conf.d/_GV_template.php:501 +#: lib/conf.d/_GV_template.php:504 msgid "reglages:: nombre maximum de page a extraire (PDF)" msgstr "Begrenzung der Text-Seitenanzahl, um PDF Dateien zu ziehen" -#: lib/conf.d/_GV_template.php:506 +#: lib/conf.d/_GV_template.php:509 msgid "GV::section:: Repertoires utilitaires" msgstr "Arbeit Repositories" -#: lib/conf.d/_GV_template.php:511 +#: lib/conf.d/_GV_template.php:514 msgid "reglages:: proprietaire des fichiers" msgstr "Dateibesitzer (Apache Server Konto-Name)" -#: lib/conf.d/_GV_template.php:517 +#: lib/conf.d/_GV_template.php:520 msgid "reglages:: groupes des fichiers" msgstr "Benutzer Gruppe (Name der Gruppe der Apache Server Ausführung)" -#: lib/conf.d/_GV_template.php:522 +#: lib/conf.d/_GV_template.php:525 msgid "GV::section:: Configuration principale" msgstr "Haupteinstellung" -#: lib/conf.d/_GV_template.php:534 +#: lib/conf.d/_GV_template.php:537 msgid "reglages:: email de l'administrateur" msgstr "E-Mail des Administrators" -#: lib/conf.d/_GV_template.php:540 +#: lib/conf.d/_GV_template.php:543 msgid "reglages:: Afficher le nom des bases et des collections" msgstr "Datenbanken und Kollektionen anzeigen" -#: lib/conf.d/_GV_template.php:547 +#: lib/conf.d/_GV_template.php:550 msgid "reglages:: activer le choix du nom de fichier a l'export" msgstr "Benutzer erlauben, die herunterladene Dateiname zu verändern" -#: lib/conf.d/_GV_template.php:554 +#: lib/conf.d/_GV_template.php:557 msgid "reglages:: choix par defaut des noms de fichier a l'export" msgstr "standardmässige exportierte Dateien werden genannt mit" -#: lib/conf.d/_GV_template.php:568 +#: lib/conf.d/_GV_template.php:571 msgid "reglages:: Active les partages Facebook et Twitter" msgstr "Facebook und Twitter Teilung aktivieren" -#: lib/conf.d/_GV_template.php:575 +#: lib/conf.d/_GV_template.php:578 msgid "GV::section:: Page d'accueil" msgstr "Hauptseite" -#: lib/conf.d/_GV_template.php:588 +#: lib/conf.d/_GV_template.php:591 msgid "reglages:: presentation sur la home" msgstr "Hauptseite Sammekorb(ë) Anzeigeeinrichtungen" -#: lib/conf.d/_GV_template.php:595 +#: lib/conf.d/_GV_template.php:598 msgid "GV::section:: Moteur de recherche" msgstr "Suchmaschine" -#: lib/conf.d/_GV_template.php:601 +#: lib/conf.d/_GV_template.php:604 msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" msgstr "Für die Benutzer Suche, minimale Anzahl von Zeichen vor einem Trunkierungsoperator (1, standardmässiges)" -#: lib/conf.d/_GV_template.php:607 +#: lib/conf.d/_GV_template.php:610 msgid "reglages:: Question par defaut" msgstr "standardmässige Abfrage" -#: lib/conf.d/_GV_template.php:613 +#: lib/conf.d/_GV_template.php:616 msgid "reglages:: type de document cherches par defaut e l'ouverture du site" msgstr "Suche Voreinstellungen sind" -#: lib/conf.d/_GV_template.php:619 +#: lib/conf.d/_GV_template.php:622 msgid "GV::section:: Report" msgstr "Report" -#: lib/conf.d/_GV_template.php:625 +#: lib/conf.d/_GV_template.php:628 msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" msgstr "Anonymer Report (versteckt die Informationen über alle Benutzer)" -#: lib/conf.d/_GV_template.php:631 +#: lib/conf.d/_GV_template.php:634 msgid "GV::section:: Modules supplementaires" msgstr "zusätzliche Module" -#: lib/conf.d/_GV_template.php:637 +#: lib/conf.d/_GV_template.php:640 msgid "reglages:: Activation de l'outil thesaurus" msgstr "Phraseanet IV Thesaurus erlauben" -#: lib/conf.d/_GV_template.php:642 +#: lib/conf.d/_GV_template.php:645 msgid "reglages:: Activation du Mode MultiDOC" msgstr "Bericht Mode erlauben" -#: lib/conf.d/_GV_template.php:647 +#: lib/conf.d/_GV_template.php:650 msgid "reglages:: Substitution de HD d'un record " msgstr "Dokument Ersetzung " -#: lib/conf.d/_GV_template.php:652 +#: lib/conf.d/_GV_template.php:655 msgid "reglages:: Substitution de thumbnail d'un record" msgstr "Dokumente Miniaturansichten erlauben" -#: lib/conf.d/_GV_template.php:736 +#: lib/conf.d/_GV_template.php:739 msgid "GV::section:: Envois de mails" msgstr "E Mail Senden" -#: lib/conf.d/_GV_template.php:747 +#: lib/conf.d/_GV_template.php:750 msgid "reglages:: Expediteur mail par defaut" msgstr "standardmässige E-mail Adresse des Senders" -#: lib/conf.d/_GV_template.php:753 +#: lib/conf.d/_GV_template.php:756 msgid "reglages:: Utilisation d'un serveur SMTP" msgstr "Nutzung von SMTP Server" -#: lib/conf.d/_GV_template.php:759 +#: lib/conf.d/_GV_template.php:762 msgid "reglages:: Activation de l'authentification smtp" msgstr "eine Authentifizierung benutzen" -#: lib/conf.d/_GV_template.php:765 +#: lib/conf.d/_GV_template.php:768 msgid "reglages:: Hote SMTP" msgstr "Host" -#: lib/conf.d/_GV_template.php:771 +#: lib/conf.d/_GV_template.php:774 msgid "reglages:: Port SMTP" msgstr "Schnittstelle" -#: lib/conf.d/_GV_template.php:777 +#: lib/conf.d/_GV_template.php:780 msgid "reglages:: Utiliser une conenction SSL" msgstr "eine SSL Verbindung benutzen" -#: lib/conf.d/_GV_template.php:783 +#: lib/conf.d/_GV_template.php:786 msgid "reglages:: User SMTP" msgstr "Benutzer" -#: lib/conf.d/_GV_template.php:789 +#: lib/conf.d/_GV_template.php:792 msgid "reglages:: Mot de passe SMTP" msgstr "Passwort" -#: lib/conf.d/_GV_template.php:794 +#: lib/conf.d/_GV_template.php:797 msgid "GV::section:: Exports FTP" msgstr "FTP Exporte" -#: lib/conf.d/_GV_template.php:799 +#: lib/conf.d/_GV_template.php:802 msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" msgstr "FTP Exportfunktionen aktivieren" -#: lib/conf.d/_GV_template.php:805 +#: lib/conf.d/_GV_template.php:808 msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" msgstr "FTP Export funktionen für die Benutzer aktivieren (\"false\": nur die Administrator Benutzer dürfen die FTP benutzen)" -#: lib/conf.d/_GV_template.php:810 +#: lib/conf.d/_GV_template.php:813 msgid "GV::section:: Configuration du client" msgstr "Kunde Konfiguration" -#: lib/conf.d/_GV_template.php:822 +#: lib/conf.d/_GV_template.php:818 +msgid "Maximum megabytes allowed in download (if request is bigger, then mail is still available)" +msgstr "" + +#: lib/conf.d/_GV_template.php:824 msgid "reglages:: position de l'onglet de recherche" msgstr "Anzeige Ordnung der \"Suche\" Reiter (1= erste von links)" -#: lib/conf.d/_GV_template.php:828 +#: lib/conf.d/_GV_template.php:830 msgid "reglages:: position de l'onglet de recherche avancee" msgstr "Anzeige Ordnung der \"erweiterte Suche\" Reiter (2= zweite von links)" -#: lib/conf.d/_GV_template.php:834 +#: lib/conf.d/_GV_template.php:836 msgid "reglages:: position de l'onglet des topics" msgstr "Anzeige Ordnung der \"Themen\" Reiter" -#: lib/conf.d/_GV_template.php:840 +#: lib/conf.d/_GV_template.php:842 msgid "reglages:: numero de l'onglet actif" msgstr "markierter Reiter auswählen" -#: lib/conf.d/_GV_template.php:846 +#: lib/conf.d/_GV_template.php:848 msgid "reglages:: rendu des topics" msgstr "Anzeigeoption der Themen auswählen" -#: lib/conf.d/_GV_template.php:859 +#: lib/conf.d/_GV_template.php:861 msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" msgstr "Rollover Anzeige auf Miniaturansichten im Detailansicht Fenster erlauben" -#: lib/conf.d/_GV_template.php:865 +#: lib/conf.d/_GV_template.php:867 msgid "reglages:: Voir le rollover sur les elements du chutier" msgstr "Rollover Anzeige auf Miniaturansichten in Sammelkörbe erlauben" -#: lib/conf.d/_GV_template.php:871 +#: lib/conf.d/_GV_template.php:873 msgid "reglages:: Presentation des collections" msgstr "Ansichtsoptionen der Kollektionen in Phraseanet Client" -#: lib/conf.d/_GV_template.php:878 +#: lib/conf.d/_GV_template.php:880 msgid "reglages:: Voir taille HD total des doc d'un chutiers" msgstr "Gesamtgewicht eines Sammelkorbes anzeigen (Gesamtgewicht der Dokumente eines Sammelkorbes)" -#: lib/conf.d/_GV_template.php:884 +#: lib/conf.d/_GV_template.php:886 msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" msgstr "Anzeige des Reiters der \"Vorschläge\" erlauben, wenn Thesaurus aktiviert ist" -#: lib/conf.d/_GV_template.php:890 +#: lib/conf.d/_GV_template.php:892 msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" msgstr "Gastbenutzer, die herunterladen möchten, nach der Anmeldung umleiten" -#: lib/conf.d/_GV_template.php:895 +#: lib/conf.d/_GV_template.php:897 msgid "GV::section:: Parametrage de l'inscription" msgstr "Anmeldung Konfiguration" -#: lib/conf.d/_GV_template.php:900 +#: lib/conf.d/_GV_template.php:902 msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" msgstr "Kollektionsliste von Anmeldeformular verstecken - Benutzer Anmeldung wird für alle Kollektionen, die für die Anmeldung erlaubt sind, gesendet" -#: lib/conf.d/_GV_template.php:906 +#: lib/conf.d/_GV_template.php:908 msgid "reglages:: Activation de l'autoinscription" msgstr "Auto-Registrierung aktivieren, wenn der Benutzer mit seiner Anmeldung fertig ist" -#: lib/conf.d/_GV_template.php:911 +#: lib/conf.d/_GV_template.php:913 msgid "GV::section:: Configuration du push" msgstr "Push Konfiguration" -#: lib/conf.d/_GV_template.php:916 +#: lib/conf.d/_GV_template.php:918 msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" msgstr "Anzahl von Tagen vor der Validierung für Senden der Erinnerungs-Email" -#: lib/conf.d/_GV_template.php:928 +#: lib/conf.d/_GV_template.php:930 msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" msgstr "Laufzeit (in Tage) der generierten Verknüpfungen in Push Validierung Prozess (0= kein Ablaufdatum)" -#: lib/conf.d/_GV_template.php:933 +#: lib/conf.d/_GV_template.php:935 msgid "GV::section:: Indexation par les robots" msgstr "Indexierung von Roboten" -#: lib/conf.d/_GV_template.php:938 +#: lib/conf.d/_GV_template.php:940 msgid "reglages :: Titre de l'installation" msgstr "Titel der Installation" -#: lib/conf.d/_GV_template.php:944 +#: lib/conf.d/_GV_template.php:946 msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" msgstr "indexierte Meta-Keywords für die Suchmaschinen" -#: lib/conf.d/_GV_template.php:950 +#: lib/conf.d/_GV_template.php:952 msgid "reglages :: Description de l'installation" msgstr "Beschreibung der Installation" -#: lib/conf.d/_GV_template.php:956 +#: lib/conf.d/_GV_template.php:958 msgid "reglages:: identifiant google analytics" msgstr "Google Analytics ID (UA-XXXXXXX-X)" -#: lib/conf.d/_GV_template.php:962 +#: lib/conf.d/_GV_template.php:964 msgid "Allow the website to be indexed by search engines like Google" msgstr "Die Website ermöglichen, von Suchmaschinen wie Google indexiert zu werden." -#: lib/conf.d/_GV_template.php:968 +#: lib/conf.d/_GV_template.php:970 msgid "reglages:: Afficher le bandeau Google Chrome Frame" msgstr "Google Chrome Frame Banner anzeigen" @@ -2424,7 +2456,7 @@ msgstr "Benutzername" msgid "admin::compte-utilisateur mot de passe" msgstr "Passwort" -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 +#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:112 msgid "report::Heures" msgstr "Module" @@ -2445,7 +2477,7 @@ msgid "boutton::editer" msgstr "bearbeiten" #: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:78 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1436 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1437 msgid "boutton::supprimer" msgstr "löschen" @@ -2470,6 +2502,95 @@ msgstr "Beschreibung" msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "Für mehrere Informationen, bitte sehen Sie folgendes Link %lien%" +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:36 +msgid "Vous avez recu un nouveau panier" +msgstr "Sie haben einen neuen Sammelkorb bekommen" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:38 +msgid "rafraichir" +msgstr "aktualisieren" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:90 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "Sie haben eine Dokumente Validierungsanfrage auf diesen Sammelkorb" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:106 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:252 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:440 +msgid "action::exporter" +msgstr "exportieren" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:117 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:263 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:451 +msgid "action::editer" +msgstr "bearbeiten" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:142 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:303 +msgid "action::Valider" +msgstr "validieren" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:219 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "Sie haben eine Dokument Validierung angefordert" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:232 +msgid "paniers:: panier recu de %pusher%" +msgstr "Sammelkorb von %pusher% bekommen" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:279 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:285 +msgid "action::renommer" +msgstr "umbenennen" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:320 +msgid "Archive" +msgstr "Archivieren" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:332 +msgid "action : supprimer" +msgstr "löschen" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:341 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:347 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:475 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:483 +msgid "Re-ordonner" +msgstr "wieder ordnen" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:466 +msgid "action::detacher" +msgstr "entfernen" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:692 +msgid "delete" +msgstr "löschen" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:783 +msgid "panier:: ordre du panier" +msgstr "Sammelkorb Reihenfolge" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:791 +msgid "panier:: ordre Validation ascendante" +msgstr "gut bewertet" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:799 +msgid "panier:: ordre Validation descendante" +msgstr "weniger bewertet" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:845 +msgid "L'utilisateur approuve ce document" +msgstr "Benutzer genehmigt dieses Dokument" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:851 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "Benutzer hat seine Meinung nocht nicht gegeben" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:857 +msgid "L'utilisateur desapprouve ce document" +msgstr "Benutzer lehnt dieses Dokument ab" + #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:47 msgid "Users" msgstr "Benutzer" @@ -2665,37 +2786,37 @@ msgstr "Begriff \"%s\" von der Beschreibung(en) löschen?" #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:860 msgid "prod::thesaurusTab:tree:loading" msgstr "ladend" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1232 msgid "boutton::ok" msgstr "OK" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1258 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1284 msgid "prod::thesaurusTab:dlg:OK" msgstr "OK" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1265 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1291 msgid "prod::thesaurusTab:dlg:Annuler" msgstr "Abbrechen" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1316 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "als bestimmter Begriff annehmen" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1326 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "als Synonym annehmen" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1408 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "in %lng_code% annehmen" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1427 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "ersetzen durch" @@ -2864,6 +2985,10 @@ msgstr "Dieses Feld wird als Element der %DublinCoreElementSet% beschrieben." msgid "report:: 2 - Bases" msgstr "2 - Datenbanken" +#: tmp/cache_twig/12/0a/b3d79d1d4e6aa2159ebb650983c4.php:55 +msgid "Voulez-vous dire %link% ?" +msgstr "Meinen Sie %link%?" + #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 msgid "Ajouter une publication" msgstr "eine Veröffentlichung hinzufügen" @@ -2917,6 +3042,58 @@ msgstr "Nachdem Sie die Veröffentlichung gelöscht haben, werden die veröffent msgid "validation::envoyer mon rapport" msgstr "Mein Bericht senden" +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:14 +msgid "You are not authorized to do this" +msgstr "Sie haben dafür keine Zugriffsrechte" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:21 +msgid "About Roles : " +msgstr "Über die Funktionen : " + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:26 +msgid "Admin can edit shares, modify content" +msgstr "Admin kann Anteile bearbeiten und Inhalte verändern" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:32 +msgid "Editor can modify content" +msgstr "Editor kann Inhalte verändern" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:38 +msgid "Access user have readonly access" +msgstr "Viewer hat ein Nur-Lesen Zugriff" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:46 +msgid "Find a user" +msgstr "Einen Benutzer suchen" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:83 +msgid "You are Admin" +msgstr "Sie sind Admin" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:92 +msgid "Role" +msgstr "Funktion" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:105 +msgid "Access" +msgstr "Viewer" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:118 +msgid "Editor" +msgstr "Editor" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:131 +msgid "Admin" +msgstr "Admin" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:147 +msgid "Remove" +msgstr "Löschen" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:156 +msgid "Notify" +msgstr "Benachrichtigen" + #: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 msgid "notice" msgstr "Beschreibung" @@ -2929,6 +3106,10 @@ msgstr "Alle Dokumente herunterladen" msgid "action : exporter" msgstr "exportieren" +#: tmp/cache_twig/15/06/d2e85f3a9ae09f5a6f26a134bc0d.php:37 +msgid "%nb_records% records" +msgstr "%nb_records% Datensätze" + #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 msgid "First Name" msgstr "Vorname" @@ -2946,7 +3127,6 @@ msgid "Job" msgstr "Beruf" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:174 msgid "Company" msgstr "Unternehmen" @@ -2954,33 +3134,40 @@ msgstr "Unternehmen" msgid "City" msgstr "Stadt" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" -msgstr "Abbrechen" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:87 msgid "Add" msgstr "Hinzufügen" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:91 +msgid "Cancel" +msgstr "Abbrechen" + #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:23 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:17 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:23 msgid "boutton::precedent" msgstr "vorherige" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:29 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:29 msgid "boutton::demarrer" msgstr "Dia Show" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:35 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:35 msgid "boutton::pause" msgstr "Pause" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:41 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:47 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:41 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:47 msgid "boutton::suivant" msgstr "folgende" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:53 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:53 msgid "boutton::telecharger" msgstr "herunterladen" @@ -2992,41 +3179,61 @@ msgstr "schwebend" msgid "En cours d'envoi" msgstr "wird gesendet" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:28 msgid "List Name" msgstr "Name der Liste" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:37 +msgid "Save" +msgstr "Speichern" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:59 +msgid "Share the list" +msgstr "Die Liste teilen" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:64 msgid "Set sharing permission" msgstr "Legen sie die Teilung Zugriffe fest" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:79 +msgid "Delete" +msgstr "Löschen" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:101 +msgid "%length% peoples" +msgstr "%length% Leute" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:107 +msgid "Edit" +msgstr "Bearbeiten" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 +msgid "View" +msgstr "Ansehen" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:208 msgid "Activite" msgstr "Aktivität" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" -msgstr "Alle" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:214 msgid "Template" msgstr "Schablone" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:226 msgid "Country" msgstr "Land" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:232 msgid "Position" msgstr "Funktion" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 -msgid "%length% peoples" -msgstr "%length% Leute" +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:241 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:266 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:291 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:317 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:343 +msgid "All" +msgstr "Alle" #: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 msgid "VALIDATION" @@ -3036,11 +3243,11 @@ msgstr "Validierung" msgid "lightbox::recaptitulatif" msgstr "Übersicht" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:121 msgid "validation:: OUI" msgstr "Ja" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:136 msgid "validation:: NON" msgstr "Nein" @@ -3112,6 +3319,7 @@ msgid "action : ajouter au panier" msgstr "Zum Sammelkorb hinzufügen" #: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 msgid "action : print" msgstr "drucken" @@ -3199,234 +3407,230 @@ msgstr "Verbindung ist OK aber die Datenbank existiert nicht oder kann nicht zug msgid "Unable to connect to MySQL server" msgstr "Unfähig, mit einem MySQL-Server zu verbinden" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "Guten Tag, Sie sind bereits, Phraseanet zu installieren." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:435 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "Bitte lesen Sie Online die Voraussetzungen und die Web-Server Konfiguration" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:441 msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." msgstr "Sie müssen einen MySQL Server und Ablageordner für Ihre Dokumente festlegen. Sie müssen auch Ihre Web Server einstellen, um einige Ablageordner zu veröffentlichen." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:451 msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." msgstr "Bevor Sie fortsetzen können, bitte beachten Sie den folgenden Hinweis. Sie können forsetzen, ohne diese Probleme zu korrigieren." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" -msgstr "Voraussetzungen" +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:517 +msgid "Prerequisite and Configuration" +msgstr "Voraussetzungen und Konfiguration" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "Web Server Konfiguration" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:551 msgid "Executables externes" msgstr "externe ausführbare Programme" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:594 msgid "Required field" msgstr "Pflichtfeld" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:618 msgid "Phraseanet may require many binaries." msgstr "Phraseanet kann mehrere Binärprogramme erfordern" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:624 msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." msgstr "Einige sind benötigt, wie den Indizierer, Exiftool oder ImageMagick. Einige sind fakultativ, wie FFmpeg (benutzt, um Videodateien anzusehen)." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:630 msgid "Don't worry, You can modify your configuration later" msgstr "Keine Sorge: Sie können die Konfiguration später verändern." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:669 msgid "Creation de votre compte" msgstr "Erstellung von Ihrem Benutzerkonto" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:681 msgid "Votre adresse email" msgstr "Ihre Email Adresse" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:688 msgid "Votre mot de passe" msgstr "Ihr Passwort" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 msgid "Confirmation de votre mot de passe" msgstr "Passwort Bestätigung" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:717 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "über die Sicherheit den Passwörtern" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:721 msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" msgstr "Passwörter müssen eindeutig von Benutzernamen sein und mindestens zwei Zeichen enthalten, unter diesen :" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:726 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Sonderzeichen" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:730 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Grossbuchstaben" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:734 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Kleinbuchstaben" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:738 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Digitale" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:758 msgid "Your email will be used to log in the application." msgstr "Ihre Email wird für Ihre Anmeldung benötigt" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:762 msgid "Please be sure it is still valid and you can access it" msgstr "Bitte achten Sie, dass sie immer noch gültig ist und dass Sie einen Zugriff darauf haben" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "Konfiguration der ApplicationBox Konto-Datenbank" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:820 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1104 msgid "MySQL database connection parameters" msgstr "MySQL Datenbank Verbindungsparameter" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:827 msgid "phraseanet:: adresse" msgstr "Adresse" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:834 msgid "Database user" msgstr "Datenbank Benutzer" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:848 msgid "phraseanet:: port" msgstr "Schnittstelle" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:855 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1119 msgid "Database" msgstr "Datenbank" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:863 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1127 msgid "boutton::tester" msgstr "Prüfen" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:883 msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" msgstr "Sollten Sie noch mehrere Parameter benötigen, %debut_lien%mehr Optionen anzeigen%fin_lien%" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:902 msgid "ApplicationBox is a Mysql database." msgstr "ApplicationBox ist eine MySQL Datenbank" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:908 msgid "It stores users datas, rights, and references to DataBoxes where records are stored." msgstr "Es speichert Benutzer Daten, Rechte und Referenzen zu DataBoxes, wo Datensätze gespeichert werden." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:920 msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." msgstr "Phraseanet empfehlt dringend die Benutzung von %link_start%MariaDB%link_end%, um MySQL zu ersetzen" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:964 msgid "setup::Configuration des repertoires de stockage" msgstr "Konfiguration von den Ablageordnern" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:976 msgid "Repertoire de stockage des fichiers" msgstr "Ablageordner der Dateien" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:983 msgid "Repertoire de stockage des imagettes" msgstr "Ablageordner der Miniaturansichten" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:990 msgid "Point de montage des imagettes (voir aide ci dessous)" msgstr "Mount-Punkt der Miniaturansichten (siehe Hilfe unten)" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:999 msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" msgstr "Sie müssen in Ihrem Web Server eine Befestigung in Richtung des Miniaturansichten Ablageordners erklären" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1004 msgid "Exemple Apache" msgstr "Apache Beispiel" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 msgid "Exemple Nginx" msgstr "Nginx Beispiel" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1042 msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." msgstr "Ihre Media und Unterauflösungen (Voransichten, Miniaturandsichten..) werden in diese Verzeichnisse gespeichert." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1048 msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." msgstr "Miniaturansichtenverzeichnis wird befestigt, um durch HTTP erreichbar zu werden, aber andere Dateien nicht." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1054 msgid "If you plan to store large files, be sure it will fit in these directories." msgstr "Wenn Sie vorhaben, grossen Dateien zu speichern, bitte vergewissern Sie, dass sie in diese Verzeichnisse einpassen werden." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 msgid "setup::Configuration de la base de stockage DataBox" msgstr "Konfiguration der DataBox SpeicherDatenbank" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1111 msgid "Ne pas creer de DataBox maintenant" msgstr "Databox nicht nun erstellen" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1139 msgid "Modele de donnees" msgstr "Daten-Templates" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1170 msgid "Creation des taches" msgstr "Erstellung von Aufgaben" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1175 msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" msgstr "Phraseanet hat eine Aufgabe Suchmaschine für das Lesen/Schreiben der Metadaten und andere Arbeitsgänge" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1186 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Aufgabe erstellen für das Schreiben der Metadaten" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1195 msgid "Creer la tache de creation des sous-definitions" msgstr "Aufgabe erstellen für die Unterauflösungen Erstellungen" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1204 msgid "Creer la tache d'indexation" msgstr "Indexierung Aufgabe erstellen" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1221 msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." msgstr "Phraseanet DataBoxes sind MySQL Datenbanken, die von Phraseanet ApplicationBox abgefragt werden können." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1225 msgid "Databoxes store records, metadatas and their classifications" msgstr "Databoxes speichern Datensätze, Metadaten und ihre Klassifizierungen" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1246 msgid "button::Install" msgstr "Installation" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1256 msgid "Install in progess" msgstr "Installation wird durchgeführt" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1262 msgid "Installation is currenlty processing, please wait..." msgstr "Installation wird derzeit bearbeitet, bitte warten Sie..." @@ -3435,66 +3639,45 @@ msgid "validation:: editer ma note" msgstr "mein Kommentar verändern" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 msgid "action : editer" msgstr "bearbeiten" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 msgid "action : status" msgstr "Eigenschaften" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 msgid "action : collection" msgstr "verschieben" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 msgid "action : push" msgstr "Push" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:89 +msgid "Feedback" +msgstr "Feedback" + +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:100 msgid "action : bridge" msgstr "Bridge" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 msgid "action : publier" msgstr "Veröffentlichen" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:119 msgid "action : outils" msgstr "Werkzeuge" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "löschen" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:135 msgid "Certaines donnees du panier ont change" msgstr "Einige Daten des Sammelkorbs wurden verändert" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "aktualisieren" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 msgid "Votre recherche ne retourne aucun resultat" msgstr "Ihre Suche gibt kein Ergebnis zurück." -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "Meinen Sie %link%?" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." msgstr "Die Suche wird mit dem Dialogfenster links oben vorgeführt" @@ -3631,473 +3814,426 @@ msgstr "Ladend" msgid "phraseanet:: panier" msgstr "Sammelkorb" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "Suche" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:361 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:365 msgid "phraseanet:: propositions" msgstr "Vorschläge" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:373 msgid "phraseanet:: thesaurus" msgstr "Thesaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" -msgstr "Zurücksetzen" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:384 +msgid "Close the WorkZone" +msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "Alle Wörter" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "Mit genauer Ausdruck" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "Mindestens ein Wort" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "Keines dieser Wörter" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "Alle" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "Keine" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " -msgstr "Sortieren nach " - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "Relevanz" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "hinzugefügtes Datum" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "zufällig" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "absteigend" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "aufsteigend" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "nach Theme suchen" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "Die Begriffe befinden sich in Feld(er):" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "Alle Felder" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "Zustand der Dokumente zu suchen" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "im Feld \"Datum\" suchen" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "von" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "zu" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:410 msgid "prod::thesaurusTab:thesaurus" msgstr "Thesaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:414 msgid "prod::thesaurusTab:candidats" msgstr "mögliche Begriffe" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:426 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "mögliche Begriffe annehmen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:432 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "ersetzen durch den Begriff" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:832 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1090 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:439 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:707 msgid "boutton::rechercher" msgstr "suchen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:552 msgid "chargement" msgstr "Verladung" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:581 msgid "prod::thesaurusTab:dlg:supprimer le terme ?" msgstr "Begriff löschen?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:587 msgid "prod::thesaurusTab:dlg:accepter le terme ?" msgstr "Begriff annehmen?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:593 msgid "prod::thesaurusTab:dlg:remplacer le terme ?" msgstr "Begriff ersetzen?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:609 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:613 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:617 msgid "action:: nouveau panier" msgstr "Neuer" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:624 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:628 msgid "Browse Baskets" msgstr "Sammelkörbe durchsuchen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:635 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:639 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:643 msgid "action:: nouveau reportage" msgstr "Neuer Bericht" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:652 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:656 msgid "phraseanet:: tri par date" msgstr "nach Datum sortieren" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:664 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:668 msgid "phraseanet:: tri par nom" msgstr "alphabetische Sortierung" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:676 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1589 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1761 msgid "Preferences" msgstr "Einstellungen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:702 +msgid "Advanced Search" +msgstr "Erweiterte Suche" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:720 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1194 msgid "phraseanet::type:: documents" msgstr "Dokumente" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 msgid "phraseanet::type:: reportages" msgstr "Berichte" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:740 msgid "Tout type" msgstr "Bildschirmtyp" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:744 msgid "Image" msgstr "Bild" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:748 msgid "Video" msgstr "Video" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:752 msgid "Audio" msgstr "Audio" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:756 msgid "Document" msgstr "Dokument" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 msgid "Flash" msgstr "Flash" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" -msgstr "Datenbanken" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:788 +msgid "boutton:: selectionner toutes les bases" +msgstr "Alle" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" -msgstr "History" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:793 +msgid "boutton:: selectionner aucune base" +msgstr "Keine" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" -msgstr "Themen" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:808 +msgid "Re-initialiser" +msgstr "Zurücksetzen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:816 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:850 +msgid "Trier par " +msgstr "Sortieren nach " + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:821 +msgid "pertinence" +msgstr "Relevanz" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +msgid "date dajout" +msgstr "hinzugefügtes Datum" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:829 +msgid "aleatoire" +msgstr "zufällig" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:835 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:887 +msgid "descendant" +msgstr "absteigend" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:839 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:891 +msgid "ascendant" +msgstr "aufsteigend" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:844 +msgid "rechercher par stemme" +msgstr "nach Theme suchen" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:902 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "Die Begriffe befinden sich in Feld(er):" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:908 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1092 +msgid "rechercher dans tous les champs" +msgstr "Alle Felder" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:954 +msgid "Status des documents a rechercher" +msgstr "Zustand der Dokumente zu suchen" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1060 +msgid "Rechercher dans un champ date" +msgstr "im Feld \"Datum\" suchen" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1102 +msgid "phraseanet::time:: de" +msgstr "von" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +msgid "phraseanet::time:: a" +msgstr "zu" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1169 msgid "Select" msgstr "Auswählen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1176 msgid "reponses:: selectionner tout" msgstr "alles" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1182 msgid "reponses:: selectionner rien" msgstr "nichts" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1188 msgid "phraseanet::type:: images" msgstr "Bilder" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1200 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1206 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1222 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1355 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1455 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1492 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 msgid "Select an action" msgstr "Wählen Sie eine Handlung aus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" -msgstr "Feedback" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1643 msgid "raccourci :: a propos des raccourcis claviers" msgstr "Über Abkürzungen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1648 msgid "Raccourcis claviers en cours de recherche : " msgstr "Hauptfenster Abkürzungen " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1653 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1689 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : alles auswählen " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1657 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1693 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : drucken " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1661 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1697 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : Auswahl bearbeiten " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1665 msgid "Raccourcis::fleche gauche : page precedente " msgstr "Linkspfeil: vorherige Seite " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1669 msgid "Raccourcis::fleche droite : page suivante " msgstr "Rechtspfeil: nächste Seite " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1673 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "Pfeil oben: vertikal scrollen " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1677 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "Abwärtspfeil: vertikal scrollen " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1684 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Sammelkörbe und Funktionen Abkürzungen " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1704 msgid "Raccourcis claviers en cours de editing : " msgstr "Fenster Abkürzungen bearbeiten " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1709 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : Feld ändern " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 msgid "Raccourcis claviers en cours de preview : " msgstr "Fenster Abkürzungen, Detailansicht " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1721 msgid "Raccourcis::fleche gauche : en avant " msgstr "Rechtspfeil: nächstes Dokument " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1725 msgid "Raccourcis::fleche gauche : en arriere " msgstr "Abwärtspfeil: letztes Dokument " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1729 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "Dia-Schau starten " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1737 msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "esc : Sie können die meiste Teile der Overlay Fenster schliessen " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1747 msgid "raccourcis :: ne plus montrer cette aide" msgstr "diese Hilfe nicht mehr anzeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1767 msgid "Affichage" msgstr "Anzeige" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1771 msgid "Configuration" msgstr "Konfiguration" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1779 msgid "Mode de presentation" msgstr "Anzeigemodus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1793 msgid "reponses:: mode vignettes" msgstr "Miniaturansichten" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1803 msgid "reponses:: mode liste" msgstr "Liste" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1809 msgid "Theme" msgstr "Thema" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1818 msgid "Selecteur de theme" msgstr "Thema Selektor" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1840 msgid "Presentation de vignettes" msgstr "Miniaturansichten" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1851 msgid "Iconographe (description au rollover)" msgstr "Bildredakteur (Beschreibung mit Rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1863 msgid "Graphiste (preview au rollover)" msgstr "Grafiker (Voransicht mit Rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1873 msgid "Informations techniques" msgstr "Technische Informationen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1884 msgid "Afficher" msgstr "zeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1896 msgid "Afficher dans la notice" msgstr "in Beschreibung zeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1908 msgid "Ne pas afficher" msgstr "verstecken" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1918 msgid "Type de documents" msgstr "Dokumenttyp" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1929 msgid "Afficher une icone" msgstr "eine Ikone anzeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1937 msgid "reponses:: images par pages : " msgstr "Suchergebnisse nach Seite " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1950 msgid "reponses:: taille des images : " msgstr "Miniaturansichtengrösse " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1964 msgid "Couleur de selection" msgstr "Farbauswahl" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1969 msgid "choisir" msgstr "wählen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1979 msgid "Affichage au demarrage" msgstr "beim Start anzeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1995 msgid "Ma derniere question" msgstr "meine letzte Suchabfrage" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2006 msgid "Une question personnelle" msgstr "eine persönliche Frage" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 msgid "Aide" msgstr "die Hilfe" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2078 msgid "preview:: Description" msgstr "Beschreibung" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2082 msgid "preview:: Historique" msgstr "Historie" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2089 msgid "preview:: Popularite" msgstr "Beliebtheit" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2142 msgid "Presentation de vignettes de panier" msgstr "Vorstellung der Voransichten des Sammelkorbes" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2159 msgid "Afficher les status" msgstr "die Zustände anzeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2177 msgid "Afficher la fiche descriptive" msgstr "das beschriftliche Blatt anzeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2195 msgid "Afficher le titre" msgstr "den Titel anzeigen" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "wieder ordnen" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "automatisch wider ordnen" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "wählen" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "umkehren" - #: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 msgid "preview::statistiques de visualisation pour le lien" msgstr "Ansicht Statistiken" @@ -4279,21 +4415,33 @@ msgstr "Keine Übereinstimmung gefunden" msgid "Ajouter a" msgstr "Hinzufügen zu" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:21 msgid "Fail" msgstr "Fehler" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:27 msgid "Success" msgstr "Erfolg" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" -msgstr "Fehler : %error%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:75 +msgid "Hello %username%" +msgstr "Hallo %username%" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" -msgstr "erlischt in %expiration_date%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:90 +msgid "Erreur" +msgstr "Fehler" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:97 +msgid "%error%" +msgstr "%error%" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:113 +msgid "Code d'accès" +msgstr "Zugriffscode" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:120 +msgid "Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis :" +msgstr "Kopieren Sie bitte einfach die unstehenden Code, gehen Sie in Ihre Anwendung zurück und fügen Sie sie im angeforderten Ort ein :" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 msgid "Rights" @@ -4311,31 +4459,31 @@ msgstr "Bearbeitung von %display_name% Rechten" msgid "Edition des droits de %number% utilisateurs" msgstr "Bearbeitung von %number% Benutzer Rechten" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:698 msgid "admin::compte-utilisateur sexe" msgstr "Anrede" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:709 msgid "admin::compte-utilisateur:sexe: mademoiselle" msgstr "Fräulein" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:717 msgid "admin::compte-utilisateur:sexe: madame" msgstr "Frau" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:725 msgid "admin::compte-utilisateur:sexe: monsieur" msgstr "Herr" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:760 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:790 msgid "admin::compte-utilisateur code postal" msgstr "PLZ" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:774 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:804 msgid "admin::compte-utilisateur ville" msgstr "Ort" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:818 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:848 msgid "admin::compte-utilisateur activite" msgstr "Tätigkeit" @@ -4368,25 +4516,25 @@ msgid "panier:: description" msgstr "Beschreibung" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:280 msgid "No results" msgstr "Keine Ergebnisse" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:286 msgid "1 result" msgstr "1 Ergebnis" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:292 msgid "%Total% results" msgstr "%Total% Ergebnisse" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:189 msgid "Received from %user_name%" msgstr "Von %user_name% bekommen" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:240 msgid "Sent for validation to %list_participants%" msgstr "Für die Bestätigung zu %list_participants% gesendet" @@ -4451,19 +4599,23 @@ msgstr "eine Vorlage erstellen" msgid "Creer un utilisateur" msgstr "einen Benutzer erstellen" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:288 +msgid "Successful install" +msgstr "Erfolgreiche Installation" + +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:311 msgid "Ajouter un nouvel utilisateur" msgstr "einen neuen benutzer hinzufügen" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:316 msgid "Adresse email du nouvel utilisateur" msgstr "Email Adresse der neuen Benutzer" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:324 msgid "Creer un modele" msgstr "eine Vorlage erstellen" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:329 msgid "Nom du nouveau modele" msgstr "Name der neue Vorlage" @@ -4480,11 +4632,6 @@ msgid "Story name" msgstr "Bericht Name" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:47 -msgid "Story description" -msgstr "Bericht Beschreibung" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:53 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:28 msgid "Ajouter ma selection courrante" msgstr "Meine aktuelle Auswahl hinzufügen" @@ -4553,13 +4700,25 @@ msgstr "Anzahl von bearbeiteten Dokumenten" msgid "Lists" msgstr "Liste" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:27 msgid "Refresh" msgstr "Aktualisieren" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -msgid "Delete" -msgstr "Löschen" +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:63 +msgid "(%length%)" +msgstr "(%length%)" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:16 +msgid "Reordonner automatiquement" +msgstr "automatisch wider ordnen" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:21 +msgid "Choisir" +msgstr "wählen" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:38 +msgid "Inverser" +msgstr "umkehren" #: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 msgid "Playlist" @@ -4577,11 +4736,11 @@ msgstr "Mit welchem API möchten Sie sich verbinden ?" msgid "Aucun bridge disponible. Veuillez contacté un administrateur." msgstr "Kein Bridge verfügbar. Bitte kontaktieren Sie einen Administrator." -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:509 msgid "Vous n'avez pas assez de droits sur les elements selectionnes" msgstr "Sie haben nicht genügende Rechte auf die ausgewählte Elemente." -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:516 msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" msgstr "Sie haben nicht genügende Rechte auf einige ausgewählte Elemente." @@ -4593,107 +4752,111 @@ msgstr "1 - Zeit" msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" msgstr "Das benötigte API Connector wurde falsch konfiguriert. Bitte kontaktieren Sie einen Administrator." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:122 msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" msgstr "Sind Sie sicher, diese Metadaten zu löschen? Nachdem wird sie endgültig verloren werden" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:145 msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." msgstr "Vorsicht, zwei Felder können nicht das gleiche Dublin Core Element darstellen." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:147 msgid "La precedente attribution a ete desactivee" msgstr "Die letzte Zuordnung wurde deaktiviert" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:223 msgid "Attention !" msgstr "Achtung!" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:282 msgid "boutton::ajouter" msgstr "hinzufügen" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:300 msgid "Nom" msgstr "Name" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:312 msgid "DublinCore Element Set" msgstr "DublinCore Element Set" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:318 msgid "Multivalue" msgstr "Multivalue" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:324 msgid "Indexable" msgstr "indizierbar" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:330 msgid "Vocabulary Type" msgstr "Vokabeln Typ" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:336 msgid "Vocabulary restricted" msgstr "Vokabeln beschränkt" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:348 msgid "Lecture seule" msgstr "schreibgeschützt" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:354 msgid "Type" msgstr "Typ" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:360 msgid "Separateur" msgstr "Trennzeichen" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:366 msgid "Branche Thesaurus" msgstr "Thesaurus Verzweigung" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:372 msgid "Affiche dans report" msgstr "zeigt in Report" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:378 msgid "Afficher en titre" msgstr "als Titel anzeigen" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:483 msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" msgstr "Vorsicht, die ausgewählte beschreibende Quelle ist nicht mehrwertig. Sie müssten diesen Kasten deaktivieren." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" msgstr "Vorsicht, die ausgewählte beschreibende Quelle ist mehrwertig. Sie müssten diesen Kasten aktivieren." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:582 msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" msgstr "Vorsicht, die ausgewählte beschreibende Quelle ist nicht schreibgeschützt. Sie müssten diesen Kasten deaktivieren." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" msgstr "Vorsicht, die ausgewählte beschreibende Quelle ist schreibgeschützt. Sie müssten diesen Kasten aktivieren." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:786 msgid "Tous" msgstr "Alle" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:794 +msgid "Aucun" +msgstr "Kein(e)" + +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:802 msgid "Francais" msgstr "französisch" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:810 msgid "Allemand" msgstr "deutsch" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:818 msgid "Anglais" msgstr "englisch" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:826 msgid "Arabe" msgstr "arabisch" @@ -4760,12 +4923,10 @@ msgid "%basket_length% documents" msgstr "%basket_length% dokument(e)" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 msgid "Suppression de %n_element% videos" msgstr "Löschen von %n_element% Videos" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 msgid "Etes vous sur de supprimer %number% videos ?" msgstr "Sind Sie sicher, %number% Videos zu löschen?" @@ -4807,33 +4968,37 @@ msgstr "Zurück zur Startseite" msgid "Which playlist you want to put you %number% elements into ?" msgstr "Welche Playlist möchten Sie für Ihre %number% Elemente benutzen?" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -msgid "mauvais login / mot de passe" -msgstr "Schlechte Benutzername / Passwort" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:74 +msgid "Erreur de login / mot de passe" +msgstr "Benutzername / Passwort Fehler" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" -msgstr "Guten Tag, bitte melden Sie sich auf %home_title% an." - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" -msgstr "Hallo %username%" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:82 +msgid "Bonjour, veuillez vous identifier sur %home_title% :" +msgstr "Guten Tag, bitte melden Sie sich auf %home_title% an :" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" -msgstr "%application_name% will einen Zugriff auf Ihre Daten auf %home_title%" +msgid "Se connecter" +msgstr "Sich einloggen" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" -msgstr "Genehmigen Sie die Anwendung, es zu tun?" +msgid "Problèmes de connexion ?" +msgstr "Anmeldungsprobleme ?" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" -msgstr "Ja" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:134 +msgid "Autorisation d'accès" +msgstr "Zugriffsberechtigung" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" -msgstr "Nein" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:145 +msgid "Autorisez-vous l'application \"%application_name%\" à accéder à votre contenu sur %home_title% ?" +msgstr "Berechtigen Sie die Anwendung \"%application_name%\", Ihrem Inhalt auf %home_title% zu zugreifen?" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:175 +msgid "Autoriser" +msgstr "Berechtigen" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:199 +msgid "Ne pas autoriser" +msgstr "Nicht berechtigen" #: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 msgid "Apparait aussi dans ces reportages" @@ -4900,141 +5065,96 @@ msgstr "Name oder Email" msgid "You are not the feed owner" msgstr "Sie sind nicht der Besitzer von diesem Feed" -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "Sie haben einen neuen Sammelkorb bekommen" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "Sie haben eine Dokument Validierung angefordert" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "Sammelkorb von %pusher% bekommen" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:309 -msgid "action::exporter" -msgstr "exportieren" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:320 -msgid "action::editer" -msgstr "bearbeiten" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "umbenennen" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "validieren" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:194 -msgid "Archive" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:335 -msgid "action::detacher" -msgstr "entfernen" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:561 -msgid "delete" -msgstr "löschen" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:652 -msgid "panier:: ordre du panier" -msgstr "Sammelkorb Reihenfolge" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:660 -msgid "panier:: ordre Validation ascendante" -msgstr "gut bewertet" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:668 -msgid "panier:: ordre Validation descendante" -msgstr "weniger bewertet" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur approuve ce document" -msgstr "Benutzer genehmigt dieses Dokument" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:717 -msgid "L'utilisateur desapprouve ce document" -msgstr "Benutzer lehnt dieses Dokument ab" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:723 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "Benutzer hat seine Meinung nocht nicht gegeben" - #: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 msgid "validation:: note" msgstr "Kommentare" -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" -msgstr "%nb_records% Datensätze" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:32 +msgid "Grant rights" +msgstr "Rechte gewähren" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" -msgstr "" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:43 +msgid "Contributor" +msgstr "Benutzer" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:51 +msgid "See others" +msgstr "Andere sehen" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:62 msgid "HD Download" msgstr "HD Download" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "Ein Push ermöglicht, einen Stapel Bildern an Emfängern zu senden. Sie werden eine E-Mail mit einem Link bekommen, das Phraseanet Lightbox starten wird. Es wird erlauben, die Dokumente anzuchauen und/oder herunterzuladen. Für die angemeldete Benutzer ist Push auch verfügbar als einen \"bekommen\" Sammelkorb" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" -msgstr "Benutzer hinzufügen" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "Senden" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "Diese Liste speichern" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:79 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:444 msgid "List Manager" msgstr "Liste Manager" #: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 +msgid "Save this list" +msgstr "Diese Liste speichern" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:162 +msgid "Select a user in the list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:166 +msgid "or" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:169 +msgid "Add user" +msgstr "Benutzer hinzufügen" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:256 +msgid "and %n% more peoples" +msgstr "und %n% mehr Leute" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:277 +msgid "Please consider send this validation to the following users : %recommendation%" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:286 +msgid "Users suggestion" +msgstr "Benutzer Vorschlag" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:334 +msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" +msgstr "Ein Push ermöglicht, einen Stapel Bildern an Emfängern zu senden. Sie werden eine E-Mail mit einem Link bekommen, das Phraseanet Lightbox starten wird. Es wird erlauben, die Dokumente anzuchauen und/oder herunterzuladen. Für die angemeldete Benutzer ist Push auch verfügbar als einen \"bekommen\" Sammelkorb" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:340 +msgid "Push::une validation est une demande d'appreciation a d'autres personnes" +msgstr "\"Validieren\" erlaubt, eine Meinungsanfrage auf Dokumente an Empfängern zu senden. Sie werden eine E-Mail bekommen, die einen Link beinhaltet, das Phraseanet Lightbox startet. Sie werden dann einen Zugriff auf die Dokumente haben, um Ihre Meinung zu geben und/oder um sie herunterzuladen. Für die Benutzer, die schon eingeloggt sind, ist die \"Validierung\" auch verfügbar als Sammelkorb." + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:361 msgid "Select all" msgstr "Alle auswählen" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:365 msgid "Deselect all" msgstr "Alle abwählen" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:411 +msgid "Send" +msgstr "Senden" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:429 msgid "Back to Push" msgstr "Zurück zum Push" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:435 +msgid "Back to Feedback" +msgstr "Zurück zum Feedback" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:462 msgid "Welcome to the ListManager !" msgstr "Herzlich Willkommen bei der Liste Manager !" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:471 msgid "Start by creating one by using the \"add\" button on the left !" msgstr "Beginnen Sie mit der Erstellung: Klicken sie auf \"Hinzufügen\" links !" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:480 msgid "Select a list on the left and edit it !" msgstr "Wählen Sie eine Liste links aus und bearbeiten Sie sie!" @@ -5042,43 +5162,27 @@ msgstr "Wählen Sie eine Liste links aus und bearbeiten Sie sie!" msgid "Do you want to send your report ?" msgstr "Möchten Sie, Ihren Bericht zu senden ?" -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "Benutzer" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "Andere sehen" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 -msgid "Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "\"Validieren\" erlaubt, eine Meinungsanfrage auf Dokumente an Empfängern zu senden. Sie werden eine E-Mail bekommen, die einen Link beinhaltet, das Phraseanet Lightbox startet. Sie werden dann einen Zugriff auf die Dokumente haben, um Ihre Meinung zu geben und/oder um sie herunterzuladen. Für die Benutzer, die schon eingeloggt sind, ist die \"Validierung\" auch verfügbar als Sammelkorb." - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 -msgid "Back to Feedback" -msgstr "Zurück zum Feedback" - #: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 msgid "report:: Volumetrie des questions posees sur %home_title%" msgstr "häufigsten Suchabfragen in %home_title%" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:89 msgid "Site web" msgstr "Webseite" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:104 msgid "Type d'application" msgstr "Anwendungstyp" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:108 msgid "Application web" msgstr "Webanwendung" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:115 msgid "Application desktop" msgstr "Desktopanwendung" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:128 msgid "URL de callback" msgstr "Callback URL" @@ -5139,7 +5243,6 @@ msgid "2000 caracteres maximum" msgstr "2000 Zeichen max." #: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:170 -#: tmp/cache_twig/bd/a8/2c59a65e6a28629b0d4eecf283e3.php:139 msgid "Categorie" msgstr "Kategorie" @@ -5159,15 +5262,15 @@ msgstr "Wenn Sie auf \"Hinzufügen\" klicken, erklären Sie sich damit einversta msgid "Retour" msgstr "Zurück" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:31 msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" msgstr "Markieren Sie die Felder, die Sie in Report sehen möchten" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:37 msgid "cocher tout" msgstr "Alles aktivieren" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:44 msgid "tout decocher" msgstr "Alles deaktivieren" @@ -5269,130 +5372,134 @@ msgstr[1] "%value% Likes" msgid "Edition de 1 element" msgstr "Bearbeitung von 1 Element" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:174 msgid "Aucun statut editable" msgstr "Keine editierbare Status" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:180 msgid "Les status de certains documents ne sont pas accessible par manque de droits" msgstr "die Status von einigen Dokumenten werden nicht erreichbar (fehlende Rechte)" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:258 msgid "boutton::remplacer" msgstr "ersetzen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:295 msgid "phraseanet:: presse-papier" msgstr "Zwischenablage" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:303 msgid "prod::editing: rechercher-remplacer" msgstr "suchen / ersetzen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:307 msgid "prod::editing: modeles de fiches" msgstr "Vorlage" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:335 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:333 msgid "phraseanet::chargement" msgstr "ladend" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:355 msgid "prod::editing::replace: remplacer dans le champ" msgstr "In dem Feld ersetzen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:361 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "In allen Feldern ersetzen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:386 msgid "prod::editing:replace: chaine a rechercher" msgstr "Suchen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:393 msgid "prod::editing:remplace: chaine remplacante" msgstr "ersetzen durch" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:400 msgid "prod::editing:remplace: options de remplacement" msgstr "Optionen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:406 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "regulärer Ausdruck" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:437 msgid "Aide sur les expressions regulieres" msgstr "Hilfe zu reguläre Ausdrücken" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:445 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "alles ersetzen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:451 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Gross- und Kleinschreibung nicht unterschieden" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:458 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "vollständiges Feld" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:464 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "im Feld gehalten" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:470 msgid "prod::editing:remplace::option respecter la casse" msgstr "Gross- und Kleinschreibung unterschieden" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:522 msgid "prod::editing:indexation en cours" msgstr "Indexierung in Vorbereitung" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:545 msgid "prod::editing: valider ou annuler les modifications" msgstr "Änderungen bestätigen oder abbrechen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:552 msgid "edit::preset:: titre" msgstr "Titel" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:561 msgid "Edition impossible" msgstr "Bearbeitung nicht möglich" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:570 msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" msgstr "Es ist unmöglich, Dokumente, die verschiedenen Bilddatenbanken entstammen, gleichzeitig zu bearbeiten" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:576 msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" msgstr "Keine Dokumente dürfen bearbeitet werden, weil Sie keine Rechte darauf haben" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:612 msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" msgstr "%not_actionable% Dokumente dürfen nicht bearbeitet werden, weil Sie keine Rechte darauf haben" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:618 msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "Keine Bearbeitung möglich, Sie haben keinen Zugriff darauf" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:778 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Einige Felder müssen ausgefüllt werden, um diese Bearbeitung zu bestätigen" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:815 msgid "edit: chosiir limage du regroupement" msgstr "Als Hauptbild einrichten" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:859 msgid "prod::editing::fields: status " msgstr "Status " -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:914 msgid "Ce champ est decrit comme un element DublinCore" msgstr "Dieses Feld wird als einen Dublin Core Element beschrieben" +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:923 +msgid "This field is represent the title of the document" +msgstr "" + #: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" msgstr "Push zu %n_user% Benutzer ab ApplicationBox %appbox%" @@ -5405,51 +5512,51 @@ msgstr "Validierung Abfrage zu %n_user% Benutzer ab ApplicationBox %appbox%" msgid "report::Edition des meta-donnees" msgstr "Metadaten Bearbeitung" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" -msgstr "Kollektion veränderung zu : %dest%" +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:91 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "Kollektion Verschiebung zu : %coll_name%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:97 msgid "report::Edition des status" msgstr "Status Bearbeitung" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:106 msgid "report::Impression des formats : %format%" msgstr "Format Drucken : %format%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:115 msgid "report::Substitution de %dest%" msgstr "Ersatz von %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:124 msgid "report::Publication de %dest%" msgstr "Veröffentlichung von %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:133 msgid "report::Telechargement de %dest%" msgstr "Herunterladen von %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:145 msgid "Envoi par mail a %dest% de %content%" msgstr "durch Email zu %dest% von %content% senden" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:157 msgid "Envoi par ftp a %dest% de %content%" msgstr "durch ftp zu %dest% von %content%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:163 msgid "report::supression du document" msgstr "Dokument löschen" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:169 msgid "report::ajout du documentt" msgstr "Dokument hinzufügen" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:175 msgid "report::Modification du document -- je ne me souviens plus de quoi..." msgstr "unbekannte Handlung auf das Dokument" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:192 msgid "report:: par %user_infos%" msgstr "von %user_infos%" @@ -5465,23 +5572,23 @@ msgstr "OAuth Einstellungen" msgid "Les parametres oauth de votre application." msgstr "Die oauth Parameter Ihrer Applikation" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:123 msgid "Votre token d'access" msgstr "Ihr Zugriff Token" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:127 msgid "Les paramétres oauth de votre application." msgstr "Ihre Anwendung OAuth Parameter" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:135 msgid "Token" msgstr "Token" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:151 msgid "Le token n'a pas encore ete genere" msgstr "das Token wurde nicht noch erstellt" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:165 msgid "boutton::generer" msgstr "erstellen" @@ -5618,51 +5725,51 @@ msgstr "Bitte füllen Sie die erforderlichen Felder aus" msgid "Vous devez selectionner un type de sous definitions" msgstr "Sie müssen einen Typ von Unterauflösungen auswählen" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "Sie dürfen nicht direkt mehr als 120Mo hochladen; Zeit zu lange, um alle Dokumente zu verpacken." - #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 +msgid "You can not directly download more than %max_download% Mo ; time to package all documents is too long" +msgstr "" + +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 msgid "You can alternatively receive an email when the download is ready." msgstr "Sie können auch eine Email bekommen, wenn Ihr Download fertig ist." -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:960 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Möchten Sie eine Email bekommen, wenn Ihr Download fertig ist ?" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1127 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1179 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Passiv Mode benutzen" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1199 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "maximale Anzahl von Versuchen" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1217 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "FTP Zielordner" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1235 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Directory erstellen" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1265 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "ein Log Datei schreiben" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1307 msgid "Nom des fichiers a l'export" msgstr "Name der Dateien für Herunterladen" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1320 msgid "export::titre: titre du documument" msgstr "Titel" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1334 msgid "export::titre: nom original du document" msgstr "ursprüngliche Name" @@ -5770,82 +5877,90 @@ msgstr "Kommentare" msgid "boutton::enregistrer" msgstr "speichern" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:43 msgid "Login" msgstr "Benutzername" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:61 msgid "First/Last Name" msgstr "Vorname / Nachname" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:97 msgid "E-Mail" msgstr "Email" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:133 msgid "Last Template" msgstr "Letzte Schablone" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:151 msgid "Creation date" msgstr "Erstellungsdatum" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:271 +msgid "Previous" +msgstr "Zurück" + +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:288 +msgid "Next" +msgstr "Weiter" + +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:219 msgid "Create new subdef" msgstr "Neuer subdef erstellen" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:223 msgid "Delete the subdef ?" msgstr "subdef löschen?" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:229 msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" msgstr "Diese subdef wird endgültig gelöscht werden und kann nicht wiederhergestellt werden. Sind Sie sicher?" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:240 msgid "Subdef name" msgstr "Subdef Name" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:245 msgid "classe d'acces" msgstr "Zugriff Klasse" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:254 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:382 msgid "preview" msgstr "Voransicht" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:258 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:390 msgid "tout le monde" msgstr "Alle" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:336 msgid "Telechargeable" msgstr "Herunterladbar" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:354 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:366 msgid "classe" msgstr "Klasse" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 msgid "Baseurl" msgstr "Baseurl" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:435 msgid "Write Metas" msgstr "Meta schreiben" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:456 msgid "mediatype" msgstr "Media Typ" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:637 msgid "yes" msgstr "Ja" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:646 msgid "no" msgstr "Nein" @@ -6055,15 +6170,15 @@ msgstr "Tags" msgid "Back to basket list" msgstr "Zurück zur Sammelkörbe Liste" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:163 msgid "No records" msgstr "Keine Datensätze" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:169 msgid "1 record" msgstr "1 Datensatz" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:175 msgid "%ElementsCount% records" msgstr "%ElementsCount% Datensätze" @@ -6087,13 +6202,29 @@ msgstr "Zustand" msgid "Aucune" msgstr "Kein" -#: www/admin/adminFeedback.php:297 -#: www/admin/database.php:212 +#: www/admin/adminFeedback.php:69 +msgid "Base empty successful" +msgstr "Datenbank Leerung wurde erfolgreich" + +#: www/admin/adminFeedback.php:85 +#: www/admin/adminFeedback.php:118 +msgid "A task has been creted, please run it to complete empty collection" +msgstr "Eine Aufgabe wurde erstellt, bitte ausführen, um die Kollektion Leerung fertig zu stellen" + +#: www/admin/adminFeedback.php:91 +#: www/admin/adminFeedback.php:123 +msgid "An error occurred" +msgstr "Ein Fehler ist aufgetreten" + +#: www/admin/adminFeedback.php:96 +msgid "Collection empty successful" +msgstr "Kollektion Leerung wurde erfolgreich" + +#: www/admin/adminFeedback.php:316 msgid "admin::base: aucun alias" msgstr "Kein Alias" -#: www/admin/adminFeedback.php:387 -#: www/admin/database.php:255 +#: www/admin/adminFeedback.php:406 msgid "admin::base: vider la base avant de la supprimer" msgstr "Datenbank leeren, bevor sie gelöscht wird" @@ -6138,119 +6269,120 @@ msgstr "Ein Fehler erschien, als Ihr Datei gesendet wurde" msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Sind Sie sicher, dass Sie die Kollektion leeren möchten?" -#: www/admin/collection.php:302 +#: www/admin/collection.php:303 msgid "admin::base:collection: etes vous sur de demonter cette collection ?" msgstr "Zerlegung dieser Kollektion bestätigen" -#: www/admin/collection.php:316 +#: www/admin/collection.php:317 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Veröffentlichung dieser Kollektion bestätigen?" -#: www/admin/collection.php:321 +#: www/admin/collection.php:322 msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" msgstr "Ende der Kollektionveröffentlichung bestätigen" -#: www/admin/collection.php:391 -#: www/admin/database.php:430 +#: www/admin/collection.php:392 +#: www/admin/database.php:431 msgid "phraseanet:: collection" msgstr "Kollektion" -#: www/admin/collection.php:398 +#: www/admin/collection.php:399 msgid "admin::base:collection: numero de collection distante" msgstr "entfernte ID Kollektion" -#: www/admin/collection.php:402 +#: www/admin/collection.php:403 msgid "admin::base:collection: etat de la collection" msgstr "Kollektion Status" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: activer la collection" msgstr "Kollektion aktivieren" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: descativer la collection" msgstr "Kollektion deaktivieren" -#: www/admin/collection.php:413 -#: www/admin/database.php:398 +#: www/admin/collection.php:414 +#: www/admin/database.php:399 msgid "phraseanet:: details" msgstr "Einzelheiten" -#: www/admin/collection.php:423 -#: www/admin/database.php:420 +#: www/admin/collection.php:424 +#: www/admin/database.php:421 msgid "admin::base: masquer les details" msgstr "Einzelheiten verstecken" -#: www/admin/collection.php:439 -#: www/admin/database.php:435 +#: www/admin/collection.php:440 +#: www/admin/database.php:436 msgid "admin::base: objet" msgstr "Objekt" -#: www/admin/collection.php:443 -#: www/admin/database.php:437 +#: www/admin/collection.php:444 +#: www/admin/database.php:438 msgid "admin::base: nombre" msgstr "Anzahl" -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 -#: www/admin/database.php:438 +#: www/admin/collection.php:447 +#: www/admin/collection.php:450 #: www/admin/database.php:439 +#: www/admin/database.php:440 msgid "admin::base: poids" msgstr "Gewicht" -#: www/admin/collection.php:590 +#: www/admin/collection.php:591 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Bestellungen Manager" -#: www/admin/collection.php:605 +#: www/admin/collection.php:606 msgid "setup:: ajouter un administrateur des commandes" msgstr "ein Manager für die Bestellungen hinzufügen" -#: www/admin/collection.php:623 +#: www/admin/collection.php:624 msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" msgstr "Vorstellung den Elementen beim externen Veröffentlichungen" -#: www/admin/collection.php:625 +#: www/admin/collection.php:626 msgid "admin::colelction::presentation des elements : rien" msgstr "standardmässig" -#: www/admin/collection.php:626 +#: www/admin/collection.php:627 msgid "admin::colelction::presentation des elements : watermark" msgstr "Wasserzeichen Datei" -#: www/admin/collection.php:627 +#: www/admin/collection.php:628 msgid "admin::colelction::presentation des elements : stamp" msgstr "Stempel" -#: www/admin/collection.php:633 +#: www/admin/collection.php:634 msgid "admin::base:collection: renommer la collection" msgstr "umbenennen" -#: www/admin/collection.php:640 +#: www/admin/collection.php:641 +#: www/admin/newcoll.php:142 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "Name : " -#: www/admin/collection.php:665 +#: www/admin/collection.php:666 msgid "admin::base:collection: vider la collection" msgstr "leeren" -#: www/admin/collection.php:679 +#: www/admin/collection.php:680 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Löschen der Kollektion bestätigen?" -#: www/admin/collection.php:692 +#: www/admin/collection.php:693 msgid "admin::base:collection: minilogo actuel" msgstr "aktuelles Mini Logo" -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 -#: www/admin/database.php:724 +#: www/admin/collection.php:713 +#: www/admin/collection.php:743 +#: www/admin/database.php:725 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "Keine Datei" -#: www/admin/collection.php:781 +#: www/admin/collection.php:782 msgid "admin::base:collection: image de presentation : " msgstr "Kollektion Bildvorstellung " @@ -6284,7 +6416,7 @@ msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Bestätigen Sie die Wieder Indizierung der Datenbank?" #: www/admin/database.php:174 -#: www/admin/database.php:378 +#: www/admin/database.php:379 msgid "admin::base: Alias" msgstr "Alias" @@ -6292,310 +6424,316 @@ msgstr "Alias" msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Ganze Leerung der Datenbank bestätigen?" -#: www/admin/database.php:259 +#: www/admin/database.php:260 msgid "admin::base: Confirmer la suppression de la base" msgstr "Löschen der Datenbank bestätigen" -#: www/admin/database.php:286 +#: www/admin/database.php:287 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "das Löschen aller Logdateien bestätigen?" -#: www/admin/database.php:312 +#: www/admin/database.php:313 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Ende der Datenbankveröffentlichung bestätigen?" -#: www/admin/database.php:394 +#: www/admin/database.php:395 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Anzahl von Datensätze auf die Datenbank" -#: www/admin/database.php:405 +#: www/admin/database.php:406 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "einzelne Wörter : " -#: www/admin/database.php:410 +#: www/admin/database.php:411 msgid "admin::base: nombre de mots indexes sur la base" msgstr "indexierte Wörter :" -#: www/admin/database.php:417 +#: www/admin/database.php:418 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "indexierte Thesaurus-Begriffe:" -#: www/admin/database.php:471 +#: www/admin/database.php:472 msgid "admin::base: enregistrements orphelins" msgstr "Waise Datensätze" -#: www/admin/database.php:505 -#: www/admin/database.php:522 +#: www/admin/database.php:506 +#: www/admin/database.php:523 msgid "report:: total" msgstr "Gesamtzahl" -#: www/admin/database.php:547 +#: www/admin/database.php:548 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Volltext indexierte Dokumente" -#: www/admin/database.php:557 +#: www/admin/database.php:558 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Thesaurus indexierte Dokumente" -#: www/admin/database.php:573 +#: www/admin/database.php:574 msgid "admin::base: Cette base est indexable" msgstr "Indexierung in dieser Datenbank möglich" -#: www/admin/database.php:580 +#: www/admin/database.php:581 msgid "base:: re-indexer" msgstr "Jetzt die Datenbank neu indexieren (es könnte Stunden dauern, wenn Sie viele Dokumente haben)" -#: www/admin/database.php:588 +#: www/admin/database.php:589 +#: www/admin/newcoll.php:122 msgid "admin::base:collection: Creer une collection" msgstr "eine Kollektion erstellen" -#: www/admin/database.php:600 +#: www/admin/database.php:601 msgid "admin::base:collection: Monter une collection" msgstr "eine Kollektion erstellen" -#: www/admin/database.php:621 +#: www/admin/database.php:622 +#: www/admin/newcoll.php:152 msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " msgstr "Benutzer und Rechte von der Kollektion anwenden : " -#: www/admin/database.php:635 +#: www/admin/database.php:636 msgid "Monter" msgstr "erstellen" -#: www/admin/database.php:649 +#: www/admin/database.php:650 msgid "Activer une collection" msgstr "eine Kollektion aktivieren" -#: www/admin/database.php:675 +#: www/admin/database.php:676 msgid "admin::base: supprimer tous les logs" msgstr "Alle Logdateien löschen" -#: www/admin/database.php:681 +#: www/admin/database.php:682 msgid "admin::base: arreter la publication de la base" msgstr "Veröffentlichung stoppen" -#: www/admin/database.php:687 +#: www/admin/database.php:688 msgid "admin::base: vider la base" msgstr "Datenbank leeren" -#: www/admin/database.php:693 +#: www/admin/database.php:694 msgid "admin::base: supprimer la base" msgstr "Datenbank löschen" -#: www/admin/database.php:703 +#: www/admin/database.php:704 msgid "admin::base: logo impression PDF" msgstr "Logo für das PDF-Drucken" -#: www/admin/database.php:716 +#: www/admin/database.php:717 msgid "admin::base:collection: supprimer le logo" msgstr "Logo löschen" -#: www/admin/database.php:739 +#: www/admin/database.php:740 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Ein Logo senden (Höhe ist 35 px max., JPEG)" -#: www/admin/databases.php:66 +#: www/admin/databases.php:67 msgid "Propositions de modifications des tables" msgstr "Vorschläge für die Veränderungen der Tabellen" -#: www/admin/databases.php:75 +#: www/admin/databases.php:76 msgid "N'oubliez pas de redemarrer le planificateur de taches" msgstr "Vergessen Sie nicht, den Task Manager neu zu starten" -#: www/admin/databases.php:82 +#: www/admin/databases.php:83 msgid "Veuillez arreter le planificateur avant la mise a jour" msgstr "Task Manager beenden, bevor Sie die Update starten" -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 +#: www/admin/databases.php:94 +#: www/admin/databases.php:140 +#: www/admin/databases.php:167 msgid "Database name can not contains special characters" msgstr "Datenbank kann nicht Sonderzeichen beinhalten" -#: www/admin/databases.php:134 +#: www/admin/databases.php:129 msgid "Database does not exists or can not be accessed" msgstr "Verbindung ist OK aber die Datenbank existiert nicht oder kann nicht zugegriffen werden." -#: www/admin/databases.php:329 +#: www/admin/databases.php:318 msgid "admin::base: Version" msgstr "Version" -#: www/admin/databases.php:334 +#: www/admin/databases.php:323 msgid "update::Votre application necessite une mise a jour vers : " msgstr "Ihre Anwendung erfordert eine Aktualiserung zu: " -#: www/admin/databases.php:340 +#: www/admin/databases.php:329 msgid "update::Votre version est a jour : " msgstr "Ihre Version ist aktuell " -#: www/admin/databases.php:346 +#: www/admin/databases.php:335 msgid "update::Verifier els tables" msgstr "Tabellen wiederherstellen" -#: www/admin/databases.php:351 +#: www/admin/databases.php:340 msgid "admin::base: creer une base" msgstr "eine neue Datenbank erstellen" -#: www/admin/databases.php:355 +#: www/admin/databases.php:344 msgid "phraseanet:: Creer une base sur un serveur different de l'application box" msgstr "eine neue Datenbank auf andere Server erstellen" -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 +#: www/admin/databases.php:348 +#: www/admin/databases.php:400 msgid "phraseanet:: hostname" msgstr "Host Name" -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 +#: www/admin/databases.php:354 +#: www/admin/databases.php:406 msgid "phraseanet:: user" msgstr "Benutzer" -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 +#: www/admin/databases.php:357 +#: www/admin/databases.php:409 msgid "phraseanet:: password" msgstr "Passwort" -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 +#: www/admin/databases.php:361 +#: www/admin/databases.php:413 msgid "phraseanet:: dbname" msgstr "Datenbank Name" -#: www/admin/databases.php:375 +#: www/admin/databases.php:364 msgid "phraseanet:: Modele de donnees" msgstr "XML Struktur Vorlage" -#: www/admin/databases.php:397 +#: www/admin/databases.php:386 msgid "boutton::creer" msgstr "suchen" -#: www/admin/databases.php:403 +#: www/admin/databases.php:392 msgid "admin::base: Monter une base" msgstr "eine Datenbank erstellen" -#: www/admin/databases.php:407 +#: www/admin/databases.php:396 msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" msgstr "Datenbank von entferntem Host erstellen" -#: www/admin/databases.php:428 +#: www/admin/databases.php:417 msgid "boutton::monter" msgstr "erstellen" -#: www/admin/demand.php:366 +#: www/admin/demand.php:372 msgid "admin:: demandes en cours" msgstr "schwebende Anfragen" -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 +#: www/admin/demand.php:377 +#: www/admin/demand.php:504 msgid "admin:: refuser l'acces" msgstr "Zugriff verboten" -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 +#: www/admin/demand.php:378 +#: www/admin/demand.php:507 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "Ansicht und Herunterladen der Voransichten erlauben" -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 +#: www/admin/demand.php:379 +#: www/admin/demand.php:510 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "Herunterladen der Voransichten und Dokumente erlauben" -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 +#: www/admin/demand.php:380 +#: www/admin/demand.php:513 msgid "admin:: watermarquer les documents" msgstr "Wasserzeichen auf Voransichten anwenden" -#: www/admin/demand.php:377 +#: www/admin/demand.php:383 msgid "admin::compte-utilisateur date d'inscription" msgstr "Anmeldung" -#: www/admin/demand.php:378 +#: www/admin/demand.php:384 msgid "admin::collection" msgstr "Kollektion" -#: www/admin/demand.php:480 +#: www/admin/demand.php:486 msgid "admin:: appliquer le modele " msgstr "Vorlage anwenden " -#: www/admin/newcoll.php:42 +#: www/admin/newcoll.php:43 msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" msgstr "Kollektion wurde nicht erstellt: sie müssen eine Name eingeben" -#: www/admin/sessionwhois.php:58 +#: www/admin/newcoll.php:175 +msgid "Collection successfully created" +msgstr "Kollektion wurde erfolgreich erstellt" + +#: www/admin/sessionwhois.php:59 msgid "admin::monitor: utilisateur" msgstr "Benutzer" -#: www/admin/sessionwhois.php:59 +#: www/admin/sessionwhois.php:60 msgid "admin::monitor: modules" msgstr "Module" -#: www/admin/sessionwhois.php:61 +#: www/admin/sessionwhois.php:62 msgid "admin::monitor: date de connexion" msgstr "Verbindungsdatum" -#: www/admin/sessionwhois.php:62 +#: www/admin/sessionwhois.php:63 msgid "admin::monitor: dernier access" msgstr "Letzter Zugriff" -#: www/admin/sessionwhois.php:101 +#: www/admin/sessionwhois.php:102 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "eingeloggte Datenbanken " -#: www/admin/sessionwhois.php:116 +#: www/admin/sessionwhois.php:117 msgid "Session persistente" msgstr "anhaltende Session" -#: www/admin/sessionwhois.php:134 +#: www/admin/sessionwhois.php:135 msgid "admin::monitor: module inconnu" msgstr "unbekannt" -#: www/admin/sessionwhois.php:243 +#: www/admin/sessionwhois.php:244 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Gesamtzahl der einzelnen Benutzer " -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" -msgstr "Kein memcached Server verbunden" +#: www/admin/sitestruct.php:187 +msgid "all caches services have been flushed" +msgstr "" -#: www/admin/sitestruct.php:189 +#: www/admin/sitestruct.php:193 msgid "setup:: administrateurs de l'application" msgstr "Anwendung Administratoren" -#: www/admin/sitestruct.php:201 +#: www/admin/sitestruct.php:205 msgid "setup:: ajouter un administrateur de l'application" msgstr "ein Administrator hinzufügen" -#: www/admin/sitestruct.php:207 +#: www/admin/sitestruct.php:211 msgid "setup:: Reinitialisation des droits admins" msgstr "die Rechte von Administratoren zurücksetzen" -#: www/admin/sitestruct.php:211 +#: www/admin/sitestruct.php:215 msgid "boutton::reinitialiser" msgstr "Zurücksetzen" -#: www/admin/sitestruct.php:214 +#: www/admin/sitestruct.php:218 msgid "setup:: Reglages generaux" msgstr "Allgemeine Einstellungen" -#: www/admin/sitestruct.php:216 +#: www/admin/sitestruct.php:220 msgid "setup::Votre configuration" msgstr "Ihre Konfiguration" -#: www/admin/sitestruct.php:244 +#: www/admin/sitestruct.php:248 msgid "setup::Filesystem configuration" msgstr "Filesystem Konfiguration" -#: www/admin/sitestruct.php:258 +#: www/admin/sitestruct.php:262 msgid "setup::Executables" msgstr "ausführbare" -#: www/admin/sitestruct.php:272 +#: www/admin/sitestruct.php:276 msgid "setup::PHP extensions" msgstr "PHP Erweiterungen" -#: www/admin/sitestruct.php:285 +#: www/admin/sitestruct.php:289 msgid "setup::Serveur de cache" msgstr "Cache Server" -#: www/admin/sitestruct.php:304 +#: www/admin/sitestruct.php:308 msgid "Phrasea Module" msgstr "Phrasea Modul" @@ -6710,29 +6848,29 @@ msgstr "angezeigte Bildzeichen" msgid "admin::status: confirmer la suppression du status ?" msgstr "das Löschen des Status bestätigen ?" -#: www/admin/structure.php:76 +#: www/admin/structure.php:77 msgid "admin::base: structure" msgstr "Struktur" -#: www/admin/structure.php:91 +#: www/admin/structure.php:92 msgid "admin::base: xml invalide, les changements ne seront pas appliques" msgstr "XML ungültig, die Änderungen werden nicht angewendet sein" -#: www/admin/sugval.php:934 +#: www/admin/sugval.php:935 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" "Continuer quand meme ?" msgstr "Vorsicht, Umstellung auf grafischen Ansicht beinhaltet XML Veränderungenverlust, wenn Sie die Änderungen nicht bevor anwenden.Wollen Sie trotzdem fortsetzen?" -#: www/admin/sugval.php:966 +#: www/admin/sugval.php:967 msgid "Suggested values" msgstr "Vorschlagswerte" -#: www/admin/sugval.php:983 +#: www/admin/sugval.php:984 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Vorschlagswerte - Kollektion Einstellungen" -#: www/admin/sugval.php:1008 +#: www/admin/sugval.php:1009 msgid "admin::sugval: champs" msgstr "Felder" @@ -6741,235 +6879,223 @@ msgstr "Felder" msgid "admin::tasks: xml invalide, restaurer la version precedente ?" msgstr "ungültiges XML, frühere Version wiederherstellen?" -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 +#: www/admin/taskmanager.php:261 +#: www/admin/taskmanager.php:595 msgid "admin::tasks: supprimer la tache ?" msgstr "Aufgabe löschen?" -#: www/admin/taskmanager.php:278 +#: www/admin/taskmanager.php:280 msgid "Fermer" msgstr "schliessen" -#: www/admin/taskmanager.php:279 +#: www/admin/taskmanager.php:281 msgid "Renouveller" msgstr "erneuern" -#: www/admin/taskmanager.php:470 +#: www/admin/taskmanager.php:472 msgid "admin::tasks: planificateur de taches" msgstr "Aufgaben-Scheduler" -#: www/admin/taskmanager.php:478 +#: www/admin/taskmanager.php:480 #, php-format msgid "Last update at %s." msgstr "Letzte Aktualisierung am %s" -#: www/admin/taskmanager.php:479 +#: www/admin/taskmanager.php:481 msgid "admin::tasks: Nouvelle tache" msgstr "Neue Aufgabe" -#: www/admin/taskmanager.php:486 +#: www/admin/taskmanager.php:488 msgid "admin::tasks: statut de la tache" msgstr "Status" -#: www/admin/taskmanager.php:487 +#: www/admin/taskmanager.php:489 msgid "admin::tasks: process_id de la tache" msgstr "Prozess id" -#: www/admin/taskmanager.php:488 +#: www/admin/taskmanager.php:490 msgid "admin::tasks: etat de progression de la tache" msgstr "im Gange" -#: www/admin/taskmanager.php:751 +#: www/admin/taskmanager.php:753 msgid "Preferences du TaskManager" msgstr "TaskManager Einstellungen" -#: www/admin/taskmanager.php:753 +#: www/admin/taskmanager.php:755 msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" msgstr "Dieses URL ermöglicht Ihnen, der Scheduler als ein Manager wie Cron zu benutzen" -#: www/client/answer.php:186 +#: www/client/answer.php:182 msgid "client::answers: rapport de questions par bases" msgstr "Suchabfragen Bericht" -#: www/client/answer.php:191 +#: www/client/answer.php:187 #, php-format msgid "client::answers: %d reponses" msgstr "%d Ergebnis(se)" -#: www/client/answer.php:488 +#: www/client/answer.php:486 msgid "reponses:: Votre recherche ne retourne aucun resultat" msgstr "Die Suche ergab keine Treffer" -#: www/client/baskets.php:130 +#: www/client/baskets.php:124 msgid "paniers::categories: mes paniers" msgstr "Meine Sammelkörbe" -#: www/client/baskets.php:136 +#: www/client/baskets.php:130 msgid "paniers::categories: paniers recus" msgstr "Sammelkörben bekommen" -#: www/client/baskets.php:153 +#: www/client/baskets.php:147 #, php-format msgid "paniers:: %d documents dans le panier" msgstr "%d Dokument(e)" -#: www/client/baskets.php:158 +#: www/client/baskets.php:152 #, php-format msgid "paniers:: paniers:: %d documents dans le panier" msgstr "%d Dokument(e)" -#: www/client/baskets.php:179 +#: www/client/baskets.php:173 msgid "action : ouvrir dans le comparateur" msgstr "im Lightbox öffnen" -#: www/client/baskets.php:188 +#: www/client/baskets.php:182 #, php-format msgid "paniers:: panier emis par %s" msgstr "Sammelkorb von %s übertragen" -#: www/client/baskets.php:266 +#: www/client/baskets.php:260 msgid "paniers:: vous avez de nouveaux paniers non consultes" msgstr "neu(e)r Sammelkorb(ë) bekommen" #: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "%b, %d %Y %l:%s %p" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "%d- %m- %Y" - -#: www/client/homeinterpubbask.php:80 msgid "publications:: dernieres publications" msgstr "Letzte Veröffentlichungen" -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "ungelesen" - -#: www/client/homeinterpubbask.php:140 +#: www/client/homeinterpubbask.php:68 msgid "publications:: derniere mise a jour" msgstr "Letzte Aktualisierung" -#: www/client/index.php:152 +#: www/client/index.php:161 msgid "client:: recherche" msgstr "Suche" -#: www/client/index.php:159 +#: www/client/index.php:168 msgid "client:: recherche avancee" msgstr "erweiterte Suche" -#: www/client/index.php:166 +#: www/client/index.php:175 msgid "client:: topics" msgstr "Themen" -#: www/client/index.php:188 -#: www/client/index.php:196 +#: www/client/index.php:197 +#: www/client/index.php:205 msgid "phraseanet::technique:: et" msgstr "und" -#: www/client/index.php:189 -#: www/client/index.php:197 +#: www/client/index.php:198 +#: www/client/index.php:206 msgid "phraseanet::technique:: or" msgstr "oder" -#: www/client/index.php:190 -#: www/client/index.php:198 +#: www/client/index.php:199 +#: www/client/index.php:207 msgid "phraseanet::technique:: except" msgstr "ohne" -#: www/client/index.php:210 +#: www/client/index.php:219 msgid "client::recherche: rechercher dans les bases :" msgstr "Suchen" -#: www/client/index.php:263 +#: www/client/index.php:261 msgid "client::recherche: rechercher dans toutes les bases" msgstr "Alle Datenbanken" -#: www/client/index.php:272 +#: www/client/index.php:268 msgid "phraseanet:: presentation des resultats" msgstr "Anzeige-Einstellungen" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "phraseanet:: collections" msgstr "Kollektionen" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" msgstr "Hier klicken, um alle Filter allen Datenbanken zu deaktivieren" -#: www/client/index.php:342 +#: www/client/index.php:338 msgid "phraseanet:: historique" msgstr "Historie" -#: www/client/index.php:374 +#: www/client/index.php:368 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "Hier klicken, um alle Filter dieser Datenbank zu deaktivieren" -#: www/client/index.php:465 +#: www/client/index.php:437 msgid "client::recherche: filter sur" msgstr "filtern" -#: www/client/index.php:468 +#: www/client/index.php:440 msgid "client::recherche: filtrer par dates" msgstr "nach Datum" -#: www/client/index.php:470 +#: www/client/index.php:442 msgid "client::recherche: filtrer par status" msgstr "Nach Status" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs" msgstr "nach Feld" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "Alle Felder" -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 +#: www/include/download_anonymous.php:73 +#: www/include/download_anonymous.php:116 +#: www/include/download_prepare.php:108 +#: www/include/download_prepare.php:151 msgid "phraseanet:: Telechargement de documents" msgstr "Herunterladen Vorlauf" -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 +#: www/include/download_anonymous.php:121 +#: www/include/download_prepare.php:153 msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." msgstr "Bitte warten, Ihre Dateien werden versammelt, dieser Betrieb kann einige Minuten dauern" -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 +#: www/include/download_anonymous.php:128 +#: www/include/download_prepare.php:158 #, php-format msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" msgstr "Ihre Dokumente sind nun fertig. Wenn Herunterladen nicht beginnt, bitte %s klicken Sie hier %s" -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 +#: www/include/download_anonymous.php:133 +#: www/include/download_prepare.php:161 msgid "telechargement::Le fichier contient les elements suivants" msgstr "ZIP Datei enthält die folgende Dokumente" -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 +#: www/include/download_anonymous.php:137 +#: www/include/download_prepare.php:165 msgid "phrseanet:: base" msgstr "Datenbank" -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 +#: www/include/download_anonymous.php:138 +#: www/include/download_prepare.php:166 msgid "document:: nom" msgstr "Dokumentname" -#: www/include/download_anonymous.php:137 -#: www/include/download_prepare.php:165 +#: www/include/download_anonymous.php:139 +#: www/include/download_prepare.php:167 msgid "phrseanet:: sous definition" msgstr "Dokumenttyp" -#: www/include/download_anonymous.php:138 -#: www/include/download_prepare.php:166 +#: www/include/download_anonymous.php:140 +#: www/include/download_prepare.php:168 msgid "poids" msgstr "Gewicht" -#: www/include/download_anonymous.php:172 +#: www/include/download_anonymous.php:174 msgid "Votre lien est corrompu" msgstr "Ihr Link ist beschädigt" @@ -7005,613 +7131,561 @@ msgstr "Ein interner Fehler erschien. Die Verbindung mit dem server wurde unterb msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" msgstr "Wenn dieses Problem wieder erscheint, bitte kontaktieren Sie den Systemadministrator" -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "Fehler beim Senden zu E-Mail Addressen %s" - -#: www/include/updses.php:92 +#: www/include/updses.php:93 msgid "The application is going down for maintenance, please logout." msgstr "die Anwendung wird wegen Überarbeitung heruntergefahren; Vielen Dank für Ihr Verständnis" -#: www/login/account.php:181 +#: www/login/account.php:182 msgid "etes vous sur de vouloir supprimer cette application" msgstr "Sind Sie sicher, diese Applikation zu löschen?" -#: www/login/account.php:188 +#: www/login/account.php:183 +msgid "oui" +msgstr "Ja" + +#: www/login/account.php:184 +msgid "non" +msgstr "Nein" + +#: www/login/account.php:189 msgid "Erreur lors du chargement" msgstr "Fehler beim Hochladen" -#: www/login/account.php:412 +#: www/login/account.php:413 msgid "Informations" msgstr "Informationen" -#: www/login/account.php:413 +#: www/login/account.php:414 msgid "Acces" msgstr "Zugriff" -#: www/login/account.php:414 +#: www/login/account.php:415 msgid "Sessions" msgstr "Sessions" -#: www/login/account.php:416 +#: www/login/account.php:417 msgid "Developpeur" msgstr "Entwickler" -#: www/login/account.php:431 -#: www/login/index.php:110 +#: www/login/account.php:432 +#: www/login/index.php:112 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "erfolgreiche Passwort Aktualisierung" -#: www/login/account.php:434 +#: www/login/account.php:435 msgid "login::notification: Changements enregistres" msgstr "Veränderungen wurden bestätigt" -#: www/login/account.php:437 +#: www/login/account.php:438 msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Ein Fehler erschien, als Ihr Datei gesendet wurde" -#: www/login/account.php:440 +#: www/login/account.php:441 msgid "login::notification: Vos demandes ont ete prises en compte" msgstr "Wir haben Ihre Anfragen gespeichert" -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 -#: www/login/reset-email.php:44 -#: www/login/reset-email.php:55 -#: www/login/reset-email.php:78 -#: www/login/reset-email.php:89 -#: www/login/reset-email.php:158 -#: www/login/reset-email.php:207 +#: www/login/account.php:456 +#: www/login/forgotpwd.php:100 +#: www/login/reset-email.php:46 +#: www/login/reset-email.php:57 +#: www/login/reset-email.php:80 +#: www/login/reset-email.php:91 +#: www/login/reset-email.php:160 +#: www/login/reset-email.php:209 +#: www/login/reset-password.php:140 msgid "admin::compte-utilisateur changer mon mot de passe" msgstr "mein Passwort ändern" -#: www/login/account.php:497 +#: www/login/account.php:498 msgid "login:: Changer mon adresse email" msgstr "meine E-Mail Adresse verändern" -#: www/login/account.php:603 +#: www/login/account.php:604 msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" msgstr "FTP-Funktion aktivieren" -#: www/login/account.php:644 +#: www/login/account.php:645 msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" msgstr "Ordner Namens-Prefix" -#: www/login/account.php:665 +#: www/login/account.php:666 msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" msgstr "Dateien werden automatisch per FTP geschickt" -#: www/login/account.php:667 +#: www/login/account.php:668 msgid "phraseanet:: original" msgstr "Original" -#: www/login/account.php:669 +#: www/login/account.php:670 msgid "phraseanet:: imagette" msgstr "Miniaturansicht" -#: www/login/forgotpwd.php:71 -#: www/login/register.php:102 +#: www/login/forgotpwd.php:73 +#: www/login/register.php:101 +#: www/login/reset-password.php:53 msgid "forms::la valeur donnee contient des caracteres invalides" msgstr "beinhaltet ungültige Zeichen" -#: www/login/forgotpwd.php:175 +#: www/login/forgotpwd.php:177 msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." msgstr "Um die Sicherheit der Anwendung zu verbessern, bitte updaten Sie Ihr Passwort" -#: www/login/forgotpwd.php:176 +#: www/login/forgotpwd.php:178 msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." msgstr "Diese Aufgabe kann nicht automatisiert werden, so müssen Sie es tun" -#: www/login/forgotpwd.php:184 +#: www/login/forgotpwd.php:186 +#: www/login/reset-password.php:171 msgid "admin::compte-utilisateur nouveau mot de passe" msgstr "Neues Passwort" -#: www/login/forgotpwd.php:204 +#: www/login/forgotpwd.php:206 +#: www/login/reset-password.php:185 msgid "admin::compte-utilisateur confirmer le mot de passe" msgstr "Passwort bestätigen" -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 +#: www/login/forgotpwd.php:225 +#: www/login/forgotpwd.php:287 msgid "login:: Retour a l'accueil" msgstr "Zurück zur Startseite" -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 +#: www/login/forgotpwd.php:252 +#: www/login/forgotpwd.php:258 msgid "phraseanet::erreur: Echec du serveur mail" msgstr "Zur optimalen Anzeige empfehlen wir Ihnen die folgende Browser zu benutzen" -#: www/login/forgotpwd.php:253 +#: www/login/forgotpwd.php:255 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "Konto nicht gefunden" -#: www/login/forgotpwd.php:259 +#: www/login/forgotpwd.php:261 msgid "phraseanet::erreur: l'url n'est plus valide" msgstr "Dies ist kein gültiger URL" -#: www/login/forgotpwd.php:268 +#: www/login/forgotpwd.php:270 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "Wir haben Ihnen ein E-Mail gesendet" -#: www/login/forgotpwd.php:278 +#: www/login/forgotpwd.php:280 msgid "login:: Entrez votre adresse email" msgstr "Bitte geben Sie Ihre E-Mail Adresse ein" -#: www/login/index.php:68 +#: www/login/index.php:70 msgid "login::erreur: Erreur d'authentification" msgstr "Authentifizierungsfehler" -#: www/login/index.php:71 +#: www/login/index.php:73 msgid "login::erreur: Erreur de captcha" msgstr "Zuviele Authentifizierungsfehler. Bitte geben Sie die Captcha ein." -#: www/login/index.php:74 +#: www/login/index.php:76 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "Zugriff unerreichbar, Sie haben Ihre E-Mail Adresse noch nicht bestätigt" -#: www/login/index.php:76 +#: www/login/index.php:78 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "Bitte senden Sie mir wieder eine E-Mail Bestätigung" -#: www/login/index.php:79 +#: www/login/index.php:81 msgid "login::erreur: Aucune base n'est actuellment accessible" msgstr "Sie haben jetzt keinen Zugriff auf die veröffentlichten Datenbanken" -#: www/login/index.php:82 +#: www/login/index.php:84 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "Fehler: Keine verfügbare Verbindung - Bitte kontaktieren Sie Systemadministrator" -#: www/login/index.php:85 +#: www/login/index.php:87 msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" msgstr "Wartungsmodus, wir entschuldigen uns für die Unannehmlichkeiten und bedanken Ihnen für Ihr Verständnis" -#: www/login/index.php:97 +#: www/login/index.php:99 msgid "login::notification: cette email est deja confirmee" msgstr "Diese E-mail Adresse wurde schon bestätigt" -#: www/login/index.php:100 +#: www/login/index.php:102 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "E-Mail Bestätigungsanfrage gesendet" -#: www/login/index.php:103 -#: www/login/index.php:106 +#: www/login/index.php:105 +#: www/login/index.php:108 msgid "login::notification: votre email est desormais confirme" msgstr "Ihre E-Mail Adresse ist nun bestätigt" -#: www/login/index.php:123 +#: www/login/index.php:125 msgid "login::captcha: obtenir une autre captcha" msgstr "Eine andere Captcha-Code bekommen" -#: www/login/index.php:126 +#: www/login/index.php:128 msgid "login::captcha: recopier les mots ci dessous" msgstr "Bitte kopieren Sie die Wörter im Feld darunter" -#: www/login/index.php:139 +#: www/login/index.php:141 msgid "Accueil" msgstr "Startseite" -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 +#: www/login/register.php:106 +#: www/login/register.php:290 +#: www/login/reset-email.php:147 +#: www/login/reset-email.php:187 msgid "forms::l'email semble invalide" msgstr "E-Mail scheint ungültig" -#: www/login/register.php:124 +#: www/login/register.php:123 msgid "forms::un utilisateur utilisant cette adresse email existe deja" msgstr "Einen Benutzer mit dieser E-Mail Adresse existiert bereits in unserer Datenbank" -#: www/login/register.php:129 +#: www/login/register.php:128 msgid "forms::un utilisateur utilisant ce login existe deja" msgstr "Diese Benutzername existiert bereits in unserer Datenbank" -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" -msgstr "ungültiges Login (8 Zeichen ohne Akzente oder Zwischenräume)" +#: www/login/register.php:292 +msgid "login invalide (5 caracteres sans accents ni espaces)" +msgstr "Ungültige Benutzername (mind. 5 Zeichen, ohne Umlaute oder Leerfeld)" -#: www/login/register.php:298 +#: www/login/register.php:304 +#: www/login/reset-password.php:92 msgid "forms::le mot de passe est simple" msgstr "Passwort ist einfach" -#: www/login/register.php:375 -#: www/login/register.php:392 +#: www/login/register.php:379 +msgid "5 caracteres minimum" +msgstr "mindestens 5 Zeichen" + +#: www/login/register.php:396 +#: www/login/reset-password.php:172 msgid "8 caracteres minimum" msgstr "8 Zeichen minimum" -#: www/login/register.php:400 +#: www/login/register.php:404 msgid "Resistance du mot de passe" msgstr "Passwortstärke" -#: www/login/register.php:426 +#: www/login/register.php:430 msgid "admin::compte-utilisateur A propos de la securite des mots de passe" msgstr "Über die Sicherheit von den Passwörtern" -#: www/login/reset-email.php:62 +#: www/login/reset-email.php:64 msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" msgstr "Die E-Mail wurde aktualisiert" -#: www/login/reset-email.php:63 +#: www/login/reset-email.php:65 msgid "accueil:: retour a l'accueil" msgstr "Zurück zur Startseite" -#: www/login/reset-email.php:96 +#: www/login/reset-email.php:98 msgid "admin::compte-utilisateur: erreur lors de la mise a jour" msgstr "Fehler beim Updaten" -#: www/login/reset-email.php:142 +#: www/login/reset-email.php:144 msgid "phraseanet::erreur: echec du serveur de mail" msgstr "Mailserver-Ausfall" -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 +#: www/login/reset-email.php:150 +#: www/login/reset-email.php:191 msgid "forms::les emails ne correspondent pas" msgstr "Die E-Mail sind nicht paarig" -#: www/login/reset-email.php:152 +#: www/login/reset-email.php:154 +#: www/login/reset-password.php:68 msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" msgstr "falsches Passwort" -#: www/login/reset-email.php:217 +#: www/login/reset-email.php:219 msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" msgstr "Wir haben Ihnen eine Email Bestätigung geschickt. Bitte folgen Sie die Anweisungen, um fortzusetzen." -#: www/login/reset-email.php:221 +#: www/login/reset-email.php:223 msgid "admin::compte-utilisateur retour a mon compte" msgstr "Zurück nach Benutzerkonto" -#: www/login/reset-email.php:230 +#: www/login/reset-email.php:232 +#: www/login/reset-password.php:150 msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" msgstr "Hoppla! Leider ist ein Fehler aufgetreten!" -#: www/login/reset-email.php:251 +#: www/login/reset-email.php:253 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "Neue E-Mail Adresse" -#: www/login/reset-email.php:256 +#: www/login/reset-email.php:258 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "E-mail Adresse bestätigen" -#: www/login/reset-email.php:265 +#: www/login/reset-email.php:267 msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" msgstr "Warum brauche ich mein Passwort, um mein E-mail Adresse zu verändern?" -#: www/login/reset-email.php:266 +#: www/login/reset-email.php:268 msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." msgstr "Ihr E-Mail Adresse wird benutzt sein, falls Sie Ihr Passwort vergessen haben und zurücksetzen, es ist ganz wichtig, dass Sie die einzige Person, die dieses Passwort ändern dürfen." -#: www/login/reset-password.php:160 +#: www/login/reset-password.php:162 msgid "admin::compte-utilisateur ancien mot de passe" msgstr "altes Passwort" -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "%d Ergebnisse gegeben aus %d gefunden" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "%d Ergebnis(se)" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "%d Ergebnisse" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "%s ausgewählte Dokumente" - -#: www/prod/chghddocument.php:42 +#: www/prod/chghddocument.php:39 msgid "prod::substitution::erreur : document de substitution invalide" msgstr "ungültiges Dateiformat" -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 +#: www/prod/chghddocument.php:61 +#: www/prod/chgthumb.php:49 msgid "prod::substitution::document remplace avec succes" msgstr "Dokument wurde erfolgreich ersetzt" -#: www/prod/chgstatus.php:130 +#: www/prod/chgstatus.php:131 #, php-format msgid "prod::proprietes : %d documents modifies" msgstr "%d veränderte(s) Dokument(e)" -#: www/prod/chgthumb.php:42 +#: www/prod/chgthumb.php:44 msgid "prod::substitution::erreur : impossible d'ajouter ce document" msgstr "Es ist unmöglich, dieses Dokument hinzufügen" -#: www/prod/docfunction.php:327 +#: www/prod/docfunction.php:337 msgid "prod::proprietes:: status" msgstr "Status" -#: www/prod/docfunction.php:328 +#: www/prod/docfunction.php:338 msgid "prod::proprietes:: type" msgstr "Typ" -#: www/prod/docfunction.php:356 +#: www/prod/docfunction.php:366 #, php-format msgid "prod::status: edition de status de %d regroupements" msgstr "Status Bearbeitung für %d Bericht(e)" -#: www/prod/docfunction.php:358 +#: www/prod/docfunction.php:368 #, php-format msgid "prod::status: edition de status de %d documents" msgstr "Status Bearbeitung für %d Dokument(e)" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remettre a zero les status non nommes" msgstr "die unbenennte Status auf Null zurücksetzen" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remetter a zero tous les status" msgstr "die Status auf Null zurücksetzen" -#: www/prod/docfunction.php:408 +#: www/prod/docfunction.php:418 msgid "prod::status: aucun status n'est defini sur cette base" msgstr "Kein Status wurde hier festgelegt" -#: www/prod/docfunction.php:424 +#: www/prod/docfunction.php:434 msgid "prod::status: changer egalement le status des document rattaches aux regroupements" msgstr "Auch der Dokumentestatus zur Berichte verknüpft verändern" -#: www/prod/docfunction.php:454 +#: www/prod/docfunction.php:464 #, php-format msgid "prod::status: %d documents ne peuvent avoir une edition des status" msgstr "Status Bearbeitung unmöglich für diese(s) %d Dokument(e)" -#: www/prod/docfunction.php:461 +#: www/prod/docfunction.php:471 msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" msgstr "Ihre Zugriffrechte sind ungenügend, um die markierte Dokumente Status zu verändern" -#: www/prod/docfunction.php:496 +#: www/prod/docfunction.php:506 msgid "prod::type: appliquer a tous les documents selectionnes" msgstr "bei allen Dokumenten anwenden" -#: www/prod/imgfunction.php:137 +#: www/prod/imgfunction.php:139 msgid "prod::tools: regeneration de sous definitions" msgstr "Unterauflösungen neu erstellen" -#: www/prod/imgfunction.php:138 +#: www/prod/imgfunction.php:140 msgid "prod::tools: outils image" msgstr "Unterauflösung drehen" -#: www/prod/imgfunction.php:143 +#: www/prod/imgfunction.php:145 msgid "prod::tools: substitution HD" msgstr "HD Dokument Ersetzung" -#: www/prod/imgfunction.php:148 +#: www/prod/imgfunction.php:150 msgid "prod::tools: substitution de sous definition" msgstr "Unterauflösungen ersetzen" -#: www/prod/imgfunction.php:153 +#: www/prod/imgfunction.php:155 msgid "prod::tools: meta-datas" msgstr "Metadaten" -#: www/prod/imgfunction.php:163 +#: www/prod/imgfunction.php:165 msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." msgstr "Vorsicht : Einige Dokumente haben ersetzte Unterauflösungen" -#: www/prod/imgfunction.php:164 +#: www/prod/imgfunction.php:166 msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." msgstr "Datensätze umbauen, die ersetzte Miniaturansichten haben" -#: www/prod/imgfunction.php:174 +#: www/prod/imgfunction.php:176 msgid "prod::tools:regeneration: Reconstruire les sous definitions" msgstr "Unterauflösungen umbauen" -#: www/prod/imgfunction.php:177 +#: www/prod/imgfunction.php:179 msgid "prod::tools: option : recreer aucune les sous-definitions" msgstr "Keine Unterauflösung wieder erstellen" -#: www/prod/imgfunction.php:178 +#: www/prod/imgfunction.php:180 msgid "prod::tools: option : recreer toutes les sous-definitions" msgstr "Alle Unterauflösungen wieder erstellen" -#: www/prod/imgfunction.php:192 +#: www/prod/imgfunction.php:194 msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" msgstr "Diese Handlung wirkt nur auf die Bilder" -#: www/prod/imgfunction.php:193 +#: www/prod/imgfunction.php:195 msgid "prod::tools::image: rotation 90 degres horaire" msgstr "90° im Uhrzeigersinn drehen" -#: www/prod/imgfunction.php:195 +#: www/prod/imgfunction.php:197 msgid "prod::tools::image rotation 90 degres anti-horaires" msgstr "90° entgegen dem Uhrzeigersinn drehen" -#: www/prod/imgfunction.php:219 +#: www/prod/imgfunction.php:221 msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" msgstr "ursprüngliche Dateiname nach Ersetzung aktualisieren" -#: www/prod/prodFeedBack.php:82 -msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." -msgstr "Hier finden Sie bitte Ihr eigenes RSS Feed, Sie werden dann dank dem RSS über die Veröffentlichungen gut unterrichtet sein" - -#: www/prod/prodFeedBack.php:83 -msgid "publications::Ne le partagez pas, il est strictement confidentiel" -msgstr "Bitte tauchen Sie es nicht, es ist streng vertraulich" - -#: www/prod/prodFeedBack.php:85 -msgid "publications::votre rss personnel" -msgstr "Ihr eigenes RSS" - -#: www/prod/prodFeedBack.php:271 +#: www/prod/prodFeedBack.php:237 msgid "les enregistrements ont ete correctement commandes" msgstr "Datensätze wurden richtig bestellt" -#: www/prod/prodFeedBack.php:275 +#: www/prod/prodFeedBack.php:241 msgid "Erreur lors de la commande des enregistrements" msgstr "Fehler bei der Bestellung der Dokumente" -#: www/prod/prodFeedBack.php:306 +#: www/prod/prodFeedBack.php:272 msgid "Les documents ne peuvent etre envoyes par FTP" msgstr "Die Dokumente können nicht mit dem FTP gesendet werden" -#: www/prod/prodFeedBack.php:315 +#: www/prod/prodFeedBack.php:281 msgid "Export enregistre dans la file dattente" msgstr "Export wurde in Warteschlange gespeichert" -#: www/prod/prodFeedBack.php:340 +#: www/prod/prodFeedBack.php:306 msgid "Connection au FTP avec succes" msgstr "erfolgreiche Verbindung mit FTP Server" -#: www/prod/prodFeedBack.php:344 +#: www/prod/prodFeedBack.php:310 #, php-format msgid "Erreur lors de la connection au FTP : %s" msgstr "Fehler bei der Verbindung mit FTP : %s" -#: www/prod/share.php:131 +#: www/prod/share.php:132 msgid "Aucune URL disponible" msgstr "keine URL verfügbar" -#: www/prod/share.php:146 +#: www/prod/share.php:147 msgid "Aucun code disponible" msgstr "kein Embed Code verfügbar" #: www/report/ajax_table_content.php:62 #: www/report/ajax_table_content.php:638 -#: www/report/tab.php:63 -#: www/report/tab.php:845 msgid "report:: titre" msgstr "Titel" #: www/report/ajax_table_content.php:63 #: www/report/ajax_table_content.php:639 -#: www/report/tab.php:64 -#: www/report/tab.php:846 msgid "report:: poids" msgstr "Gewicht" #: www/report/ajax_table_content.php:66 #: www/report/ajax_table_content.php:689 -#: www/report/tab.php:67 -#: www/report/tab.php:909 msgid "report:: identifiant" msgstr "Benutzer Id" #: www/report/ajax_table_content.php:67 #: www/report/ajax_table_content.php:690 -#: www/report/tab.php:68 -#: www/report/tab.php:910 msgid "report:: nom" msgstr "Name" #: www/report/ajax_table_content.php:68 #: www/report/ajax_table_content.php:691 -#: www/report/tab.php:69 -#: www/report/tab.php:911 msgid "report:: email" msgstr "E Mail" #: www/report/ajax_table_content.php:69 #: www/report/ajax_table_content.php:692 -#: www/report/tab.php:70 -#: www/report/tab.php:912 msgid "report:: adresse" msgstr "Addresse" #: www/report/ajax_table_content.php:70 #: www/report/ajax_table_content.php:693 -#: www/report/tab.php:71 -#: www/report/tab.php:913 msgid "report:: telephone" msgstr "Telefon" #: www/report/ajax_table_content.php:74 #: www/report/ajax_table_content.php:367 -#: www/report/tab.php:437 msgid "report:: IP" msgstr "IP" #: www/report/ajax_table_content.php:302 -#: www/report/tab.php:351 msgid "configuration" msgstr "Konfiguration" #: www/report/ajax_table_content.php:329 -#: www/report/tab.php:379 #, php-format msgid "filtrer les resultats sur la colonne %s" msgstr "Ergebnisse auf Spalte %s filtern" #: www/report/ajax_table_content.php:365 #: www/report/ajax_table_content.php:475 -#: www/report/tab.php:435 msgid "phraseanet::utilisateurs" msgstr "Benutzer" #: www/report/ajax_table_content.php:440 -#: www/report/tab.php:559 msgid "report:: plateforme" msgstr "Plattform" #: www/report/ajax_table_content.php:448 -#: www/report/tab.php:567 msgid "report:: module" msgstr "Module" #: www/report/ajax_table_content.php:489 #: www/report/ajax_table_content.php:507 -#: www/report/tab.php:632 -#: www/report/tab.php:664 msgid "report:: nombre de reponses" msgstr "Durchschnittszahl der Ergebnisse" #: www/report/ajax_table_content.php:531 -#: www/report/tab.php:715 msgid "report:: total des telechargements" msgstr "Allgemeine Herunterladen" #: www/report/ajax_table_content.php:532 -#: www/report/tab.php:716 msgid "report:: preview" msgstr "Unterauflösungen" #: www/report/ajax_table_content.php:533 -#: www/report/tab.php:717 msgid "report:: document original" msgstr "ursprüngliches Dokument" #: www/report/ajax_table_content.php:548 -#: www/report/tab.php:745 msgid "report:: nombre de documents" msgstr "Anzahl von Dokumenten" #: www/report/ajax_table_content.php:549 -#: www/report/tab.php:746 msgid "report:: poids des documents" msgstr "Gewicht von Dokumenten" #: www/report/ajax_table_content.php:550 -#: www/report/tab.php:747 msgid "report:: nombre de preview" msgstr "Anzahl von Miniaturansichten" #: www/report/ajax_table_content.php:551 -#: www/report/tab.php:748 msgid "report:: poids des previews" msgstr "Gewicht von Miniaturansichten" #: www/report/ajax_table_content.php:589 -#: www/report/tab.php:796 msgid "report:: historique des connexions" msgstr "Historie von Verbindungen" #: www/report/ajax_table_content.php:596 #: www/report/ajax_table_content.php:681 -#: www/report/tab.php:803 -#: www/report/tab.php:892 msgid "report:: historique des telechargements" msgstr "Historie von Herunterladen" #: www/report/ajax_table_content.php:602 -#: www/report/tab.php:809 msgid "report:: historique des questions" msgstr "Suchabfragen History" #: www/report/ajax_table_content.php:712 -#: www/report/tab.php:941 msgid "report::version " msgstr "Version " @@ -7631,277 +7705,277 @@ msgstr "Land" msgid "report::societe" msgstr "Unternehmen" -#: www/thesaurus2/accept.php:46 +#: www/thesaurus2/accept.php:48 msgid "thesaurus:: accepter..." msgstr "annehmen" -#: www/thesaurus2/accept.php:165 +#: www/thesaurus2/accept.php:167 msgid "thesaurus:: removed_src" msgstr "removed_src" -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 +#: www/thesaurus2/accept.php:170 +#: www/thesaurus2/accept.php:228 msgid "thesaurus:: refresh" msgstr "aktualiseren" -#: www/thesaurus2/accept.php:223 +#: www/thesaurus2/accept.php:225 msgid "thesaurus:: removed tgt" msgstr "removed tgt" -#: www/thesaurus2/accept.php:259 +#: www/thesaurus2/accept.php:261 msgid "thesaurus:: Accepter le terme comme" msgstr "Begriff akzeptieren als :" -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 +#: www/thesaurus2/accept.php:263 +#: www/thesaurus2/accept.php:273 msgid "thesaurus:: comme terme specifique" msgstr "als bestimmter Begriff" -#: www/thesaurus2/accept.php:265 +#: www/thesaurus2/accept.php:267 #, php-format msgid "thesaurus:: comme synonyme de %s" msgstr "als Synonym von %s" -#: www/thesaurus2/accept.php:270 +#: www/thesaurus2/accept.php:272 msgid "thesaurus:: Accepter la branche comme" msgstr "Verzweigung akzeptieren als :" -#: www/thesaurus2/accept.php:294 +#: www/thesaurus2/accept.php:296 #, php-format msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" msgstr "Hier im Thesaurus kann ein Begriff des Feldes %s nicht angenommen werden" -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 +#: www/thesaurus2/export_text.php:53 +#: www/thesaurus2/export_text_dlg.php:44 +#: www/thesaurus2/export_text_dlg.php:148 msgid "thesaurus:: export au format texte" msgstr "Text" -#: www/thesaurus2/export_text_dlg.php:137 +#: www/thesaurus2/export_text_dlg.php:139 msgid "thesaurus:: options d'export : " msgstr "Export " -#: www/thesaurus2/export_text_dlg.php:138 +#: www/thesaurus2/export_text_dlg.php:140 msgid "thesaurus:: example" msgstr "Beispiel" -#: www/thesaurus2/export_text_dlg.php:151 +#: www/thesaurus2/export_text_dlg.php:153 msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" msgstr "Synonyme(n) auf die selbe Zeile" -#: www/thesaurus2/export_text_dlg.php:155 +#: www/thesaurus2/export_text_dlg.php:157 msgid "thesaurus:: exporter avec une ligne par synonyme" msgstr "Eine Zeile nach Synonym" -#: www/thesaurus2/export_text_dlg.php:159 +#: www/thesaurus2/export_text_dlg.php:161 msgid "thesaurus:: export : numeroter les lignes " msgstr "Zeilen nummern " -#: www/thesaurus2/export_text_dlg.php:163 +#: www/thesaurus2/export_text_dlg.php:165 msgid "thesaurus:: export : inclure la langue" msgstr "die Sprache beinhalten" -#: www/thesaurus2/export_text_dlg.php:167 +#: www/thesaurus2/export_text_dlg.php:169 msgid "thesaurus:: export : inclure les hits" msgstr "Anzahl der Ergebnisse beinhalten" -#: www/thesaurus2/export_text_dlg.php:173 +#: www/thesaurus2/export_text_dlg.php:175 msgid "thesaurus:: export : format topics" msgstr "Themen" -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 +#: www/thesaurus2/export_topics.php:100 +#: www/thesaurus2/export_topics_dlg.php:45 msgid "thesaurus:: export en topics" msgstr "Themen" -#: www/thesaurus2/export_topics.php:159 +#: www/thesaurus2/export_topics.php:161 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "Datei erzeugt : %s" -#: www/thesaurus2/export_topics.php:178 +#: www/thesaurus2/export_topics.php:180 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s Datei(en) erzeugt" -#: www/thesaurus2/export_topics.php:180 +#: www/thesaurus2/export_topics.php:182 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Fehler beim Dateidatensatz" -#: www/thesaurus2/export_topics_dlg.php:117 +#: www/thesaurus2/export_topics_dlg.php:119 msgid "thesaurus:: exporter" msgstr "exportieren" -#: www/thesaurus2/export_topics_dlg.php:120 +#: www/thesaurus2/export_topics_dlg.php:122 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "für alle Sprachen exportieren" -#: www/thesaurus2/export_topics_dlg.php:128 +#: www/thesaurus2/export_topics_dlg.php:130 msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" msgstr "für die aktuelle Sprache anzeigen" -#: www/thesaurus2/export_topics_dlg.php:135 +#: www/thesaurus2/export_topics_dlg.php:137 msgid "phraseanet:: tri" msgstr "Sortierung" -#: www/thesaurus2/export_topics_dlg.php:145 +#: www/thesaurus2/export_topics_dlg.php:147 msgid "thesaurus:: recherche" msgstr "Suche" -#: www/thesaurus2/export_topics_dlg.php:148 +#: www/thesaurus2/export_topics_dlg.php:150 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Thesaurus:*\"Anfrage\"" -#: www/thesaurus2/export_topics_dlg.php:152 +#: www/thesaurus2/export_topics_dlg.php:154 msgid "thesaurus:: recherche fulltext" msgstr "volltext" -#: www/thesaurus2/export_topics_dlg.php:156 +#: www/thesaurus2/export_topics_dlg.php:158 msgid "thesaurus:: question complete (avec operateurs)" msgstr "vollständige Anfrage (mit Operators)" -#: www/thesaurus2/export_topics_dlg.php:163 +#: www/thesaurus2/export_topics_dlg.php:165 msgid "thesaurus:: presentation" msgstr "Anzeigeoptionen" -#: www/thesaurus2/export_topics_dlg.php:166 +#: www/thesaurus2/export_topics_dlg.php:168 msgid "thesaurus:: presentation : branches refermables" msgstr "aktuelle Ansicht wiedergeben (verschliessene Verzweigungen)" -#: www/thesaurus2/export_topics_dlg.php:170 +#: www/thesaurus2/export_topics_dlg.php:172 msgid "thesaurus:: presentation : branche ouvertes" msgstr "aktuelle Ansicht wiedergeben (geöffnete Verzweigungen)" -#: www/thesaurus2/export_topics_dlg.php:174 +#: www/thesaurus2/export_topics_dlg.php:176 msgid "thesaurus:: tout deployer - refermable" msgstr "Alle aufklappen (verschliessbar)" -#: www/thesaurus2/export_topics_dlg.php:178 +#: www/thesaurus2/export_topics_dlg.php:180 msgid "thesaurus:: tout deployer - statique" msgstr "Alle aufklappen (statisch)" -#: www/thesaurus2/export_topics_dlg.php:182 +#: www/thesaurus2/export_topics_dlg.php:184 msgid "thesaurus:: tout fermer" msgstr "Alle zuklappen (mit Browsen)" -#: www/thesaurus2/import.php:158 +#: www/thesaurus2/import.php:159 #, php-format msgid "over-indent at line %s" msgstr "over-indent at line %s" -#: www/thesaurus2/import.php:166 +#: www/thesaurus2/import.php:167 #, php-format msgid "bad encoding at line %s" msgstr "bad encoding at line %s" -#: www/thesaurus2/import.php:173 +#: www/thesaurus2/import.php:174 #, php-format msgid "bad character at line %s" msgstr "bad character at line %s" -#: www/thesaurus2/import_dlg.php:42 +#: www/thesaurus2/import_dlg.php:44 msgid "thesaurus:: Importer" msgstr "Importieren" -#: www/thesaurus2/import_dlg.php:85 +#: www/thesaurus2/import_dlg.php:87 msgid "thesaurus:: coller ici la liste des termes a importer" msgstr "Hier die Liste der Begriffe zu importieren einfügen" -#: www/thesaurus2/import_dlg.php:86 +#: www/thesaurus2/import_dlg.php:88 msgid "thesaurus:: langue par default" msgstr "standardmässige Sprache" -#: www/thesaurus2/import_dlg.php:93 +#: www/thesaurus2/import_dlg.php:95 msgid "Fichier ASCII tabule" msgstr "tabellierte ASCII Datei" -#: www/thesaurus2/import_dlg.php:110 +#: www/thesaurus2/import_dlg.php:112 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "die Verbindung(en) zwischen den Felder(n) und Verzweigung(en) löschen" -#: www/thesaurus2/import_dlg.php:113 +#: www/thesaurus2/import_dlg.php:115 msgid "thesaurus:: reindexer la base apres l'import" msgstr "wieder indexieren nach dem Import" -#: www/thesaurus2/index.php:96 +#: www/thesaurus2/index.php:98 msgid "thesaurus:: Editer le thesaurus" msgstr "Thesaurus bearbeiten" -#: www/thesaurus2/index.php:118 +#: www/thesaurus2/index.php:120 msgid "phraseanet:: choisir" msgstr "wählen" -#: www/thesaurus2/index.php:144 +#: www/thesaurus2/index.php:146 msgid "thesaurus:: langue pivot" msgstr "Sprachdatei auswählen" -#: www/thesaurus2/index.php:161 +#: www/thesaurus2/index.php:163 msgid "thesaurus:: Vous n'avez acces a aucune base" msgstr "Sie haben keinen Zugriff auf die Datenbanken" -#: www/thesaurus2/linkfield.php:32 +#: www/thesaurus2/linkfield.php:34 msgid "thesaurus:: Lier la branche de thesaurus au champ" msgstr "die Verzweigung mit dem Feld %s verbinden" -#: www/thesaurus2/linkfield.php:112 +#: www/thesaurus2/linkfield.php:114 #, php-format msgid "thesaurus:: Lier la branche de thesaurus au champ %s" msgstr "die Verzweigung mit dem Feld %s verbinden" -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 +#: www/thesaurus2/linkfield2.php:34 +#: www/thesaurus2/linkfield3.php:35 msgid "thesaurus:: Lier la branche de thesaurus" msgstr "die Verzweigung verbinden?" -#: www/thesaurus2/linkfield2.php:116 +#: www/thesaurus2/linkfield2.php:118 #, php-format msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " msgstr "Dieses Feld wurde geändert; alte Verzweigung: %s " -#: www/thesaurus2/linkfield2.php:145 +#: www/thesaurus2/linkfield2.php:147 msgid "thesaurus:: nouvelle branche" msgstr "Neue Verzweigung" -#: www/thesaurus2/linkfield2.php:150 +#: www/thesaurus2/linkfield2.php:152 msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" msgstr "Dieses Feld wird nicht mehr zum Thesaurus verknüpft. Die mögliche und indexierte Begriffe werden gelöscht" -#: www/thesaurus2/linkfield2.php:158 +#: www/thesaurus2/linkfield2.php:160 msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" msgstr "Dieses Feld muss zum Thesaurus verknüpft werden. Wieder Indexierung der Datenbank erforderlich" -#: www/thesaurus2/linkfield2.php:162 +#: www/thesaurus2/linkfield2.php:164 msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" msgstr "Das Link mit dem Thesaurus soll verändert werden, die Wieder Indexierung ist erforderlich" -#: www/thesaurus2/linkfield2.php:177 +#: www/thesaurus2/linkfield2.php:179 msgid "thesaurus:: reindexation necessaire" msgstr "wieder Indexierung erforderlich" -#: www/thesaurus2/linkfield2.php:181 +#: www/thesaurus2/linkfield2.php:183 msgid "thesaurus:: pas de reindexation" msgstr "Keine Wieder Indexierung" -#: www/thesaurus2/linkfield3.php:78 +#: www/thesaurus2/linkfield3.php:80 #, php-format msgid "thesaurus:: suppression du lien du champ %s" msgstr "Löschen der Verbindung des Feldes %s" -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 +#: www/thesaurus2/linkfield3.php:88 +#: www/thesaurus2/linkfield3.php:104 #, php-format msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" msgstr "Löschen der Verzweigung der möglichen Begriffe für das Feld %s" -#: www/thesaurus2/linkfield3.php:112 +#: www/thesaurus2/linkfield3.php:114 msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." msgstr "Datensatz der veränderte Liste von möglichen Begriffen" -#: www/thesaurus2/linkfield3.php:124 +#: www/thesaurus2/linkfield3.php:126 msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" msgstr "Löschen der Indexierte nach dem Thesaurus für das Feld" -#: www/thesaurus2/linkfield3.php:135 +#: www/thesaurus2/linkfield3.php:137 msgid "thesaurus:: reindexer tous les enregistrements" msgstr "Alle Datensätze wieder indexieren" @@ -7909,260 +7983,262 @@ msgstr "Alle Datensätze wieder indexieren" msgid "thesaurus:: corbeille" msgstr "Stock" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: Nouveau terme" msgstr "Neuer Begriff" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: terme" msgstr "Begriff" -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newsy_dlg.php:39 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau synonyme" msgstr "Neuer Synonym" -#: www/thesaurus2/newsy_dlg.php:37 +#: www/thesaurus2/newsy_dlg.php:39 msgid "thesaurus:: synonyme" msgstr "Synonym" -#: www/thesaurus2/newsy_dlg.php:91 +#: www/thesaurus2/newsy_dlg.php:93 msgid "thesaurus:: contexte" msgstr "Kontext" -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau terme specifique" msgstr "Neuer bestimmte Begriff" -#: www/thesaurus2/newterm.php:72 +#: www/thesaurus2/newterm.php:74 #, php-format msgid "thesaurus:: le terme %s" msgstr "Begriff %s" -#: www/thesaurus2/newterm.php:74 +#: www/thesaurus2/newterm.php:76 #, php-format msgid "thesaurus:: avec contexte %s" msgstr "mit Kontext %s" -#: www/thesaurus2/newterm.php:76 +#: www/thesaurus2/newterm.php:78 msgid "thesaurus:: sans contexte" msgstr "ohne Kontext" -#: www/thesaurus2/newterm.php:104 +#: www/thesaurus2/newterm.php:106 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "ist schon ein möglicher Begriff und stammt aus dem zulässigen Feld : " -#: www/thesaurus2/newterm.php:106 +#: www/thesaurus2/newterm.php:108 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "ist schon ein möglicher Begriff und stammt aus zulässigen Feldern : " -#: www/thesaurus2/newterm.php:146 +#: www/thesaurus2/newterm.php:148 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Ursprung zu akzeptieren markieren" -#: www/thesaurus2/newterm.php:162 #: www/thesaurus2/newterm.php:164 +#: www/thesaurus2/newterm.php:166 msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" msgstr "ist ein möglicher Begriff aus Felder Ursprung aber kann nicht in diesem Ort des Thesaurus akzeptiert werden" -#: www/thesaurus2/newterm.php:169 +#: www/thesaurus2/newterm.php:171 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "ist fehlend bei den möglichen Begriffen" -#: www/thesaurus2/newterm.php:173 +#: www/thesaurus2/newterm.php:175 msgid "thesaurus:: attention :" msgstr "Vorsicht :" -#: www/thesaurus2/newterm.php:184 +#: www/thesaurus2/newterm.php:186 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Begriff hinzufügen, ohne ihn zu wieder indexieren" -#: www/thesaurus2/newterm.php:186 +#: www/thesaurus2/newterm.php:188 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Begriff hinzufügen und wieder indexieren" -#: www/thesaurus2/properties.php:47 +#: www/thesaurus2/properties.php:49 msgid "thesaurus:: Proprietes" msgstr "Eigenschaften" -#: www/thesaurus2/properties.php:92 +#: www/thesaurus2/properties.php:94 +#: www/thesaurus2/thesaurus.php:230 +#: www/thesaurus2/thesaurus.php:255 msgid "thesaurus::menu: supprimer" msgstr "löschen" -#: www/thesaurus2/properties.php:93 +#: www/thesaurus2/properties.php:95 msgid "thesaurus:: remplacer" msgstr "ersetzen" -#: www/thesaurus2/properties.php:120 +#: www/thesaurus2/properties.php:122 #, php-format msgid "thesaurus:: %s reponses retournees" msgstr "%s zurückgegebene Ergebnisse" -#: www/thesaurus2/properties.php:147 +#: www/thesaurus2/properties.php:149 msgid "thesaurus:: synonymes" msgstr "Synonyme" -#: www/thesaurus2/properties.php:148 +#: www/thesaurus2/properties.php:150 msgid "thesaurus:: hits" msgstr "Ergebnisse" -#: www/thesaurus2/properties.php:149 +#: www/thesaurus2/properties.php:151 msgid "thesaurus:: ids" msgstr "Benutzernamen" -#: www/thesaurus2/properties.php:321 +#: www/thesaurus2/properties.php:323 #, php-format msgid "thesaurus:: Confirmer la suppression du terme %s" msgstr "das Löschen des Begriffes \"%s\" bestätigen" -#: www/thesaurus2/search.php:77 +#: www/thesaurus2/search.php:79 msgid "thesaurus:: le terme" msgstr "Begriff" -#: www/thesaurus2/search.php:78 +#: www/thesaurus2/search.php:80 msgid "thesaurus:: est egal a " msgstr "gleich " -#: www/thesaurus2/search.php:82 +#: www/thesaurus2/search.php:84 msgid "thesaurus:: commence par" msgstr "beginnt mit" -#: www/thesaurus2/search.php:86 +#: www/thesaurus2/search.php:88 msgid "thesaurus:: contient" msgstr "beinhaltet" -#: www/thesaurus2/search.php:91 +#: www/thesaurus2/search.php:93 msgid "thesaurus:: fini par" msgstr "endet mit" -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 +#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:251 msgid "thesaurus::menu: proprietes" msgstr "Eigenschaften" -#: www/thesaurus2/thesaurus.php:225 +#: www/thesaurus2/thesaurus.php:227 msgid "thesaurus::menu: refuser" msgstr "ablehnen" -#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:228 msgid "thesaurus::menu: accepter" msgstr "annehmen" -#: www/thesaurus2/thesaurus.php:229 +#: www/thesaurus2/thesaurus.php:231 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "die mögliche Begriffe löschen, die ergebnislos sind?" -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 +#: www/thesaurus2/thesaurus.php:233 +#: www/thesaurus2/thesaurus.php:254 msgid "thesaurus::menu: remplacer" msgstr "ersetzen" -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 +#: www/thesaurus2/thesaurus.php:237 +#: www/thesaurus2/thesaurus.php:257 msgid "thesaurus::menu: chercher" msgstr "suchen" -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 +#: www/thesaurus2/thesaurus.php:238 +#: www/thesaurus2/thesaurus.php:258 msgid "thesaurus::menu: exporter" msgstr "exportieren" -#: www/thesaurus2/thesaurus.php:239 +#: www/thesaurus2/thesaurus.php:241 msgid "thesaurus::menu: relire les candidats" msgstr "die mögliche Begriffe wieder lesen" -#: www/thesaurus2/thesaurus.php:245 +#: www/thesaurus2/thesaurus.php:247 msgid "thesaurus::menu: importer" msgstr "Importieren" -#: www/thesaurus2/thesaurus.php:250 +#: www/thesaurus2/thesaurus.php:252 msgid "thesaurus::menu: Nouveau terme" msgstr "Neuer Begriff" -#: www/thesaurus2/thesaurus.php:251 +#: www/thesaurus2/thesaurus.php:253 msgid "thesaurus::menu: Nouveau synonyme" msgstr "Neuer Synonym" -#: www/thesaurus2/thesaurus.php:257 +#: www/thesaurus2/thesaurus.php:259 msgid "thesaurus::menu: export topics" msgstr "exportieren als Themen" -#: www/thesaurus2/thesaurus.php:259 +#: www/thesaurus2/thesaurus.php:261 msgid "thesaurus::menu: lier au champ" msgstr "mit dem Feld verbinden" -#: www/thesaurus2/thesaurus.php:294 +#: www/thesaurus2/thesaurus.php:296 msgid "thesaurus:: onglet stock" msgstr "mögliche Begriffe" -#: www/thesaurus2/thesaurus.php:299 +#: www/thesaurus2/thesaurus.php:301 msgid "thesaurus:: afficher les termes refuses" msgstr "abgelehnte Begriffe anzeigen" -#: www/thesaurus2/thesaurus.php:313 +#: www/thesaurus2/thesaurus.php:315 msgid "thesaurus:: onglet thesaurus" msgstr "Thesaurus" -#: www/thesaurus2/thesaurus.php:513 +#: www/thesaurus2/thesaurus.php:515 msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "diese Verzweigung löschen? (die betroffenende Begriffe werden als mögliche Begriffe beim nächsten Indexierung erscheinen)" -#: www/thesaurus2/thesaurus.php:515 +#: www/thesaurus2/thesaurus.php:517 msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "Ergebnisse werden von dieser Verzweigung zurückgesendet? Möchten Sie trotzdem löschen? (die betroffenende Begriffe werden als mögliche Begriffe beim nächsten Indexierung erscheinen)" -#: www/thesaurus2/thesaurus.php:557 +#: www/thesaurus2/thesaurus.php:559 msgid "thesaurus:: Tous les termes ont des hits" msgstr "Alle Begriffe verweisen auf Ergebnisse" -#: www/thesaurus2/thesaurus.php:563 +#: www/thesaurus2/thesaurus.php:565 msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" msgstr "Begriffe dieser Verzweigung zeigen keine Ergebnisse. Möchten Sie diese Begriffe löschen?" -#: www/thesaurus2/thesaurus.php:652 +#: www/thesaurus2/thesaurus.php:654 msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" msgstr "alle mögliche Begriffe löschen und alle Zettel in Thesaurus Wieder Indexierung setzen?" -#: www/thesaurus2/thesaurus.php:1096 +#: www/thesaurus2/thesaurus.php:1098 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Begriffe zum Stock verschieben" -#: www/upload/index.php:75 +#: www/upload/index.php:76 msgid "upload:You do not have right to upload datas" msgstr "Sie haben keine Berechtigung zum Herunterladen" -#: www/upload/index.php:186 +#: www/upload/index.php:187 msgid "Selectionner une action" msgstr "eine Aktion auswählen" -#: www/upload/index.php:187 +#: www/upload/index.php:188 msgid "Aucune enregistrement selectionne" msgstr "Keine Datensätze ausgewählt" -#: www/upload/index.php:188 +#: www/upload/index.php:189 msgid "Transfert en court, vous devez attendre la fin du transfert" msgstr "Transfer in Bearbeitung, bitte warten Sie die Ende" -#: www/upload/index.php:189 +#: www/upload/index.php:190 msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" msgstr "die Warteschlange ist nicht leer, möchten Sie diese Bestandteile löschen?" -#: www/upload/index.php:241 +#: www/upload/index.php:242 #, php-format msgid "upload:: %d fichiers uploades" msgstr "%d Dateien hochgeladen" -#: www/upload/index.php:243 +#: www/upload/index.php:244 #: www/upload/index.php:414 #, php-format msgid "upload:: %d fichier uploade" msgstr "%d Datei hochgeladen" -#: www/upload/index.php:247 +#: www/upload/index.php:248 msgid "Certains elements uploades sont passes en quarantaine" msgstr "Einige hochgeladene Bestandteile wurden in Quarantäne gelegt" -#: www/upload/index.php:276 +#: www/upload/index.php:277 #, php-format msgid "upload :: choisir les fichiers a uploader (max : %d MB)" msgstr "Dateien, die zu herunterladen sind, auswählen (max: %d MB)" @@ -8235,37 +8311,37 @@ msgstr "blockierte Dokumente löschen" msgid "Supprimer precedentes propositions a la substitution" msgstr "vorausgegangenen Vorschläge für Ersatz löschen" -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 +#: www/upload/upload.php:45 +#: www/upload/upload.php:54 msgid "Internal Server Error" msgstr "Interner Serverfehler" -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 +#: www/upload/upload.php:140 +#: www/upload/upload.php:163 msgid "erreur lors de l'archivage" msgstr "Fehler bei Archiverung" -#: www/upload/upload.php:144 +#: www/upload/upload.php:143 msgid "Document ajoute a la quarantaine" msgstr "Dokument zur Quarantine hinzugefügt" -#: www/upload/upload.php:147 +#: www/upload/upload.php:146 msgid "Fichier uploade, en attente" msgstr "hochgeladene Datei, anhängig..." -#: www/upload/upload.php:187 +#: www/upload/upload.php:186 msgid "Fichier uploade !" msgstr "hochgeladene Datei !" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:402 msgid "Erreur lors de l'enregistrement des donnees" msgstr "Fehler bei Speicherung der Daten" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:475 msgid "Erreur lors de la mise a jour des donnes " msgstr "Fehler während Datenaktualisierung " -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:599 msgid "Envoie avec succes" msgstr "erfolgreich versendet" @@ -8289,20 +8365,24 @@ msgstr "Datensatz wurde aus dem Sammelkorb gelöscht" msgid "Basket has been updated" msgstr "Sammelkorb wurde aktualisiert" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:311 +msgid "Basket updated" +msgstr "Sammelkorb wurde aktualisiert" + +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:346 msgid "Basket has been archived" msgstr "Sammelkorb wurde archiviert" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:350 msgid "Basket has been unarchived" msgstr "Sammelkorb wurde nicht mehr archiviert" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:442 #, php-format msgid "%d records added" msgstr "%d Datensätze hinzugefügt" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:504 #, php-format msgid "%d records moved" msgstr "%d Datensätze verschoben" @@ -8339,6 +8419,21 @@ msgstr "Eintritt für Eingabe nicht gefunden" msgid "Action Forbidden : You are not the publisher" msgstr "Handlung verboten: Sie sind nicht der Veröffentlicher" +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:292 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:316 +msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." +msgstr "Hier finden Sie bitte Ihr eigenes RSS Feed, Sie werden dann dank dem RSS über die Veröffentlichungen gut unterrichtet sein" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:293 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:317 +msgid "publications::Ne le partagez pas, il est strictement confidentiel" +msgstr "Bitte tauchen Sie es nicht, es ist streng vertraulich" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:319 +msgid "publications::votre rss personnel" +msgstr "Ihr eigenes RSS" + #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 msgid "prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." msgstr "Vorsicht : die ausgewählte Datenbanken Liste für die Suche wurde verändert" @@ -8445,8 +8540,8 @@ msgid "panier:: vous ne pouvez pas supprimer un panier public" msgstr "Sie dürfen nicht, einen leeren öffentlichen Sammelkorb löschen" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:81 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" -msgstr "Sie dürfen nicht mehr als 400 Datensätze auswählen" +msgid "Vous ne pouvez pas selectionner plus de 800 enregistrements" +msgstr "Sie dürfen nicht, mehr als 800 Datensätze auswählen" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 msgid "Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" @@ -8493,97 +8588,146 @@ msgid "Message" msgstr "Nachricht" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +msgid "Time for feedback (days)" +msgstr "Zeit für Feedback (Tage)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +msgid "Accuse de reception" +msgstr "Rückschein" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#, php-format +msgid "%d fields have been updated" +msgstr "%d Felder wurden aktualisiert" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "No users selected" msgstr "Kein Benutzer ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:308 msgid "Unable to send the documents" msgstr "Unmöglich, Dokumente zu senden" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:190 #, php-format msgid "Push from %s" msgstr "Push von %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:199 msgid "No receivers specified" msgstr "Kein Empfänger ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:204 msgid "No elements to push" msgstr "Keine Dokumente für den Push" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:218 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:434 #, php-format msgid "Unknown user %d" msgstr "Unbekannte Benutzer %d" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:281 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "%1$d Datensätze wurden zu %2$d Benutzer gesendet" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:331 #, php-format msgid "Validation from %s" msgstr "Bestätigung von %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:340 msgid "No participants specified" msgstr "Keine Teilnehmer ausgewählt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:345 msgid "No elements to validate" msgstr "Keine Dokumente zu bestätigen" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:425 #, php-format msgid "Missing mandatory participant parameter %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:515 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "%1$d Datensätze wurden für Bestätigung zu %2$d Benutzer gesendet" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:601 msgid "First name is required" msgstr "Vorname wird erfordert" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:604 msgid "Last name is required" msgstr "Nachname wird erfordert" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:607 msgid "Email is required" msgstr "Email Adresse wird erfordert" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:610 msgid "Email is invalid" msgstr "Ungültige Email Adresse" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:629 msgid "User already exists" msgstr "Benutzer existiert schon" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:656 msgid "User successfully created" msgstr "Benutzer wurde erfolgreich erstellt" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:662 msgid "Error while creating user" msgstr "Fehler bei Benutzer Erstellung" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:153 +#, php-format +msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" +msgstr "%d Ergebnisse gegeben aus %d gefunden" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:157 +#, php-format +msgid "reponses:: %d Resultats" +msgstr "%d Ergebnis(se)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %d reponses" +msgstr "%d Ergebnisse" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %s documents selectionnes" +msgstr "%s ausgewählte Dokumente" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:100 msgid "Story created" msgstr "Bericht erfolgreich erstellt" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:209 msgid "Record removed from story" msgstr "Datensatz wurde von Bericht entfernt" +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:279 +msgid "You can not edit this story" +msgstr "Sie dürfen diesen Bericht nicht bearbeiten" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:298 +msgid "Story updated" +msgstr "Bericht wurde aktualisiert" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:40 +msgid "Error while saving preference" +msgstr "Beim Speichern der Einstellungen ist ein Fehler eingetreten" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:53 +msgid "Preference saved !" +msgstr "Einstellungen gespeichert !" + #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 #, php-format msgid "Unable to create list %s" @@ -8603,130 +8747,100 @@ msgstr "Liste %s wurde erstellt" msgid "Unable to update list" msgstr "Unmöglich, die Liste zu aktualisieren" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:293 msgid "List has been updated" msgstr "Liste wurde aktualisiert" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:339 #, php-format msgid "List has been deleted" msgstr "Liste wurde gelöscht" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:354 #, php-format msgid "Unable to delete list" msgstr "Unmöglich, die Liste zu löschen" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:395 msgid "Entry removed from list" msgstr "Eingabe wurde von der Liste entfernt" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:410 msgid "Unable to remove entry from list " msgstr "Unmöglich, die Eingabe von der Liste zu entfernen " -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:471 #, php-format msgid "%d Users added to list" msgstr "%d hinzugefügte Benutzer zu der Liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:479 #, php-format msgid "%d User added to list" msgstr "%d hinzugefügter Benutzer zu der Liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:496 msgid "Unable to add usr to list" msgstr "Unmöglich, Benutzer zur Liste hinzufügen" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:597 msgid "List shared to user" msgstr "Liste mit Benuzer geteilt" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:612 msgid "Unable to share the list with the usr" msgstr "Unmöglich, die Liste mit dem Benutzer zu teilen" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:650 msgid "Owner removed from list" msgstr "Besitzer wurde von der Liste entfernt" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:664 msgid "Unable to remove usr from list" msgstr "Unmöglich , den Benutzer von der Liste zu entfernen" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:177 #, php-format msgid "%d Story attached to the WorkZone" msgstr "%d Bericht zum Arbeitsbereich angehängt" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:184 #, php-format msgid "%d Stories attached to the WorkZone" msgstr "%d Berichte zum Arbeitsbereich angehängt" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:194 #, php-format msgid "%1$d Story attached to the WorkZone, %2$d already attached" msgstr "%1$d Bericht zum Arbeitsbereich, %2$d schon angehängt" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:202 #, php-format msgid "%1$d Stories attached to the WorkZone, %2$d already attached" msgstr "%1$d Berichte zum Arbeitsbereich, %2$d schon angehängt" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:253 msgid "Story detached from the WorkZone" msgstr "Bericht wurde zum Arbeitsbereich gelöst" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:138 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "Es wird nicht empfohlen, Phraseanet ohne HTTPS Unterstützung zu installieren." -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:187 msgid "Appbox is unreachable" msgstr "Appbox ist unerreichbar" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:199 msgid "Databox is unreachable" msgstr "Databox ist unerreichbar" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:351 #, php-format msgid "an error occured : %s" msgstr "Ein Fehler ist aufgetreten: %s" -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "Unmöglich, im Ordner %s zu schreiben" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "Unmöglich, Datei %s zu löschen" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "YYYY/MM/DD HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "YYYY/MM/DD" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "yyyy/mm/dd" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "hh:mm:ss" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:570 msgid "Email addess is not valid" msgstr "Email Adresse ist nicht gültig" @@ -8758,19 +8872,15 @@ msgstr "Validierungsprozess von %s für %d Benutzer bekommen" msgid "Processus de validation recu de %s" msgstr "Validierungsprozess von %s bekommen" -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 +#: lib/Doctrine/Repositories/BasketElementRepository.php:46 msgid "Element is not found" msgstr "Element nicht gefunden" -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" -msgstr "Sie haben keinen Zugriff auf dieses Element von dem Sammelkorb" - -#: lib/Doctrine/Repositories/BasketRepository.php:103 +#: lib/Doctrine/Repositories/BasketRepository.php:171 msgid "Basket is not found" msgstr "Sammelkorb nicht gefunden" -#: lib/Doctrine/Repositories/BasketRepository.php:108 +#: lib/Doctrine/Repositories/BasketRepository.php:193 msgid "You have not access to this basket" msgstr "Sie haben keinen Zugriff auf diesen Sammelkorb" @@ -8791,3 +8901,94 @@ msgstr "Liste nicht gefunden" msgid "You have not access to this list" msgstr "Sie haben keinen Zugriff auf diese Liste" +#~ msgid "phraseanet::technique::datetime-edit-format" +#~ msgstr "YYYY/MM/DD HH:NN:SS" + +#~ msgid "phraseanet::technique::date-edit-format" +#~ msgstr "YYYY/MM/DD" + +#~ msgid "phraseanet::technique::date-edit-explain" +#~ msgstr "yyyy/mm/dd" + +#~ msgid "phraseanet::technique::time-edit-format" +#~ msgstr "HH:NN:SS" + +#~ msgid "phraseanet::technique::time-edit-explain" +#~ msgstr "hh:mm:ss" + +#~ msgid "Story description" +#~ msgstr "Bericht Beschreibung" + +#~ msgid "Or" +#~ msgstr "Oder" + +#~ msgid "admin::Le serveur memcached a ete flushe" +#~ msgstr "Kein memcached Server verbunden" + +#~ msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" +#~ msgstr "Fehler beim Senden zu E-Mail Addressen %s" + +#~ msgid "Impossible d'ecrire dans le fichier %s" +#~ msgstr "Unmöglich, in %s Datei zu schreiben" + +#~ msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" +#~ msgstr "" +#~ "Der memcached Server antwortet nicht, Sie sollten den Cache deaktivieren" + +#~ msgid "GV::section:: Serveurs de cache" +#~ msgstr "Cache Servers" + +#~ msgid "reglages:: Utiliser un serveur de cache" +#~ msgstr "ein Cache Server benutzen" + +#~ msgid "setup:: Hote du Serveur de cache" +#~ msgstr "Cache Server Host" + +#~ msgid "reglages:: port du serveur de cache" +#~ msgstr "Cache Server Schnittstelle" + +#~ msgid "Impossible d'ecrire dans le dossier %s" +#~ msgstr "Unmöglich, im Ordner %s zu schreiben" + +#~ msgid "Impossible d'effacer le fichier %s" +#~ msgstr "Unmöglich, Datei %s zu löschen" + +#~ msgid "recherche" +#~ msgstr "Suche" + +#~ msgid "Chercher tous les mots" +#~ msgstr "Alle Wörter" + +#~ msgid "Cette expression exacte" +#~ msgstr "Mit genauer Ausdruck" + +#~ msgid "Au moins un des mots suivants" +#~ msgstr "Mindestens ein Wort" + +#~ msgid "Aucun des mots suivants" +#~ msgstr "Keines dieser Wörter" + +#~ msgid "recherche :: Bases" +#~ msgstr "Datenbanken" + +#~ msgid "recherche :: Historique" +#~ msgstr "History" + +#~ msgid "recherche :: Themes" +#~ msgstr "Themen" + +#~ msgid "Expire dans %expiration_date%" +#~ msgstr "erlischt in %expiration_date%" + +#~ msgid "%application_name% wants to acces to your data on %home_title%" +#~ msgstr "" +#~ "%application_name% will einen Zugriff auf Ihre Daten auf %home_title%" + +#~ msgid "phraseanet::technique::datetime" +#~ msgstr "%b, %d %Y %l:%s %p" + +#~ msgid "phraseanet::technique::date" +#~ msgstr "%d- %m- %Y" + +#~ msgid "publications:: publication non lue" +#~ msgstr "ungelesen" diff --git a/locale/en_GB/LC_MESSAGES/phraseanet.mo b/locale/en_GB/LC_MESSAGES/phraseanet.mo index ecfa47816a..886baaf943 100644 Binary files a/locale/en_GB/LC_MESSAGES/phraseanet.mo and b/locale/en_GB/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/en_GB/LC_MESSAGES/phraseanet.po b/locale/en_GB/LC_MESSAGES/phraseanet.po index b16d3f56cf..f490cdccd8 100644 --- a/locale/en_GB/LC_MESSAGES/phraseanet.po +++ b/locale/en_GB/LC_MESSAGES/phraseanet.po @@ -2,22 +2,22 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-06 12:58+0100\n" -"PO-Revision-Date: 2012-02-06 13:05+0100\n" +"POT-Creation-Date: 2012-03-08 14:30+0100\n" +"PO-Revision-Date: 2012-03-08 14:30+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-02-06 11:01+0000\n" -"X-Generator: Launchpad (build 14747)\n" -"Language: en_GB\n" +"X-Launchpad-Export-Date: 2012-03-08 09:56+0000\n" +"X-Generator: Launchpad (build 14914)\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" -"X-Poedit-KeywordsList: _e;__\n" -"X-Poedit-Language: English\n" "X-Poedit-Country: UNITED KINGDOM\n" +"Language: \n" +"X-Poedit-Language: English\n" +"X-Poedit-KeywordsList: _e;__\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -27,88 +27,82 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 +#: lib/classes/appbox.class.php:309 +#: lib/classes/appbox.class.php:383 msgid "Flushing cache" msgstr "Flushing cache" -#: lib/classes/appbox.class.php:323 +#: lib/classes/appbox.class.php:316 msgid "Creating new tables" -msgstr "" +msgstr "Creating new tables" -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 +#: lib/classes/appbox.class.php:333 +#: lib/classes/appbox.class.php:341 msgid "Purging directories" msgstr "Purging directories" -#: lib/classes/appbox.class.php:356 +#: lib/classes/appbox.class.php:349 msgid "Copying files" msgstr "Copying files" -#: lib/classes/appbox.class.php:365 +#: lib/classes/appbox.class.php:358 msgid "Upgrading appbox" msgstr "Upgrading appbox" -#: lib/classes/appbox.class.php:374 +#: lib/classes/appbox.class.php:367 #, php-format msgid "Upgrading %s" msgstr "Upgrading %s" -#: lib/classes/appbox.class.php:382 +#: lib/classes/appbox.class.php:375 msgid "Post upgrade" msgstr "Post upgrade" -#: lib/classes/appbox.class.php:433 +#: lib/classes/appbox.class.php:425 msgid "Nom de base de donnee incorrect" msgstr "Wrong database name" -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "" - -#: lib/classes/appbox.class.php:590 +#: lib/classes/appbox.class.php:518 msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" msgstr "You do not have required permissions to create Database or it already exists" -#: lib/classes/base.class.php:294 +#: lib/classes/base.class.php:306 #, php-format msgid "Updating table %s" msgstr "Updating table %s" -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 +#: lib/classes/base.class.php:323 +#: lib/classes/base.class.php:573 +#: lib/classes/base.class.php:817 +#: lib/classes/base.class.php:834 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Error when trying; error : %s" -#: lib/classes/base.class.php:333 +#: lib/classes/base.class.php:345 #, php-format msgid "Creating table %s" msgstr "Creating table %s" -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 +#: lib/classes/base.class.php:353 +#: lib/classes/base.class.php:894 #, php-format msgid "Applying patches on %s" msgstr "Applying patches on %s" -#: lib/classes/base.class.php:842 +#: lib/classes/base.class.php:854 msgid "Looking for patches" msgstr "Looking for patches" -#: lib/classes/databox.class.php:1401 +#: lib/classes/databox.class.php:1394 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "Error : All \"subdefgroup\" tags must have an attribute \"name\"" -#: lib/classes/databox.class.php:1414 +#: lib/classes/databox.class.php:1407 msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "Error : Attribute \"name\" from node \"subdef\" is required and single" -#: lib/classes/databox.class.php:1419 +#: lib/classes/databox.class.php:1412 msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" msgstr "Error : Attribute \"class\" from node \"subdef\" is required and must be \"thumbnail\" or \"preview\" or \"document\"" @@ -205,14 +199,14 @@ msgid "login::register: vos demandes concernat les collections suivantes sont su msgstr "Your request on the following collections is subject to administrator approbation" #: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 +#: lib/classes/mail.class.php:166 msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" msgstr "You will be informed by e-mail as soon as your request will have been processed" #: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 +#: lib/classes/mail.class.php:148 +#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:179 msgid "login::register: sujet email : confirmation de votre adresse email" msgstr "E-mail adress check" @@ -220,28 +214,28 @@ msgstr "E-mail adress check" msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." msgstr "Hello, we received your request to change your e-mail adress. Click the following link to process. If you did not ask for e-mail change, please ignore this message." -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:150 +#: lib/classes/mail.class.php:164 msgid "login::register: merci d'avoir confirme votre adresse email" msgstr "Thank you for confirming your e-mail" -#: lib/classes/mail.class.php:149 +#: lib/classes/mail.class.php:151 msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " msgstr "You can now connect using the folllowing adress : " -#: lib/classes/mail.class.php:163 +#: lib/classes/mail.class.php:165 msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " msgstr "You have to wait for administrator confirmation; your request on the following collections is still under process : " -#: lib/classes/mail.class.php:179 +#: lib/classes/mail.class.php:181 msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." msgstr "To process your registration, please confirm your e-mail adress by using the following link" -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." +#: lib/classes/mail.class.php:212 +msgid "si cet email contient des liens non cliquables copiez/collez ces liens dans votre navigateur." msgstr "" -#: lib/classes/mail.class.php:211 +#: lib/classes/mail.class.php:214 msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" msgstr "Automatic message of Phraseanet IV. To manage how you receive messages, connect to the following address" @@ -264,35 +258,35 @@ msgstr "Size too small : %dpx" msgid "Mauvais mode colorimetrique : %s" msgstr "Wrong color mode : %s" -#: lib/classes/phrasea.class.php:308 +#: lib/classes/phrasea.class.php:304 msgid "admin::monitor: module production" msgstr "Production" -#: lib/classes/phrasea.class.php:309 +#: lib/classes/phrasea.class.php:305 msgid "admin::monitor: module client" msgstr "Client" -#: lib/classes/phrasea.class.php:310 +#: lib/classes/phrasea.class.php:306 msgid "admin::monitor: module admin" msgstr "Admin" -#: lib/classes/phrasea.class.php:311 +#: lib/classes/phrasea.class.php:307 msgid "admin::monitor: module report" msgstr "Report" -#: lib/classes/phrasea.class.php:312 +#: lib/classes/phrasea.class.php:308 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" -#: lib/classes/phrasea.class.php:313 +#: lib/classes/phrasea.class.php:309 msgid "admin::monitor: module comparateur" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:314 +#: lib/classes/phrasea.class.php:310 msgid "admin::monitor: module validation" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:315 +#: lib/classes/phrasea.class.php:311 msgid "admin::monitor: module upload" msgstr "Upload" @@ -331,76 +325,81 @@ msgstr "Search" msgid "client::recherche: dans les categories" msgstr "In categories" -#: lib/classes/setup.class.php:341 +#: lib/classes/setup.class.php:329 msgid "mod_auth_token correctement configure" msgstr "mod_auth_token correctly configured" -#: lib/classes/setup.class.php:343 +#: lib/classes/setup.class.php:331 msgid "mod_auth_token mal configure" msgstr "mod_auth_token bad configuration" -#: lib/classes/setup.class.php:356 +#: lib/classes/setup.class.php:344 msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " msgstr "Warning : mod activation test successful, running test not performed " -#: lib/classes/setup.class.php:371 +#: lib/classes/setup.class.php:359 msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" msgstr "Warning : Check xsendfile existing configuration in setup" -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 +#: lib/classes/setup.class.php:368 +#: lib/classes/setup.class.php:377 msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" msgstr "Warning : Check h264_streaming existing configuration in setup" -#: lib/classes/setup.class.php:532 +#: lib/classes/setup.class.php:520 msgid "setup::Tests d'envois d'emails" msgstr "E-mails send test" -#: lib/classes/setup.class.php:536 +#: lib/classes/setup.class.php:524 msgid "boutton::valider" msgstr "Validate" -#: lib/classes/setup.class.php:613 +#: lib/classes/setup.class.php:602 msgid "setup:: Serveur Memcached" msgstr "Memcached server Address" -#: lib/classes/setup.class.php:629 +#: lib/classes/setup.class.php:611 #, php-format msgid "setup::Serveur actif sur %s" msgstr "Active server on %s" -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "memcached server unavailable, you should disable cache" - -#: lib/classes/setup.class.php:645 +#: lib/classes/setup.class.php:623 #, php-format msgid "setup::Aucun serveur memcached rattache." msgstr "No Memcached server linked" -#: lib/classes/setup.class.php:682 +#: lib/classes/setup.class.php:644 +msgid "Many opcode cache load is forbidden" +msgstr "" + +#: lib/classes/setup.class.php:646 +msgid "No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC." +msgstr "" + +#: lib/classes/setup.class.php:660 #, php-format msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" msgstr "Bad configuration : For variable %1$s, value is : %2$s ; expected value is : %3$s" -#: lib/classes/setup.class.php:713 +#: lib/classes/setup.class.php:691 msgid "setup::Etat du moteur de recherche" msgstr "Search engine status" -#: lib/classes/setup.class.php:724 +#: lib/classes/setup.class.php:702 msgid "setup::Sphinx confguration" msgstr "Sphinx setup" -#: lib/classes/setup.class.php:747 +#: lib/classes/setup.class.php:725 msgid "test::test" msgstr "test" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:148 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:153 msgid "Cette valeur ne peut être vide" msgstr "This value can't be empty" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:149 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:154 msgid "Url non valide" msgstr "Url is not valid" @@ -434,15 +433,11 @@ msgstr "OK" #: lib/classes/Bridge/Api/Dailymotion.class.php:829 #: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 msgid "Ce champ est obligatoire" msgstr "This field is mandadory" #: lib/classes/Bridge/Api/Dailymotion.class.php:834 #: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 #, php-format msgid "Ce champ est trop long %s caracteres max" msgstr "This field contains too many caracters, %s caracters maximum allowed" @@ -454,7 +449,6 @@ msgid "Ce champ est trop court %s caracteres min" msgstr "Tos few caracters for this field : %s minimum caracters expected" #: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 msgid "Le record n'a pas de fichier physique" msgstr "No physical file for this record" @@ -464,7 +458,6 @@ msgid "La taille maximale d'une video est de %d minutes." msgstr "Video maximum length allowed is %d minutes" #: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 #, php-format msgid "Le poids maximum d'un fichier est de %s" msgstr "Maximum file size is %s" @@ -473,15 +466,16 @@ msgstr "Maximum file size is %s" msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" msgstr "Phraseanet uses Flickr API, but is not supported or certified by Flickr" -#: lib/classes/Bridge/Api/Flickr.class.php:529 +#: lib/classes/Bridge/Api/Flickr.class.php:528 +#: lib/classes/Bridge/Api/Youtube.class.php:542 msgid "L'upload a echoue" msgstr "Upload failed" -#: lib/classes/Bridge/Api/Flickr.class.php:639 +#: lib/classes/Bridge/Api/Flickr.class.php:638 msgid "Photos" msgstr "Photos" -#: lib/classes/Bridge/Api/Flickr.class.php:648 +#: lib/classes/Bridge/Api/Flickr.class.php:647 msgid "Photosets" msgstr "Photos set" @@ -561,25 +555,25 @@ msgstr "The site is temporarily in maintenance mode, current operations cannot b msgid "Service youtube introuvable." msgstr "Youtube Service cannot be found." -#: lib/classes/caption/record.class.php:171 +#: lib/classes/caption/record.class.php:188 msgid "Open the URL in a new window" msgstr "OPen the link in a new window" -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 +#: lib/classes/databox/cgu.class.php:37 +#: lib/classes/databox/cgu.class.php:110 #, php-format msgid "cgus:: CGUs de la base %s" msgstr "General Terms of Use for database %s" -#: lib/classes/databox/cgu.class.php:39 +#: lib/classes/databox/cgu.class.php:40 msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" msgstr "To continue, you have to accept the General Terms of Use" -#: lib/classes/databox/cgu.class.php:40 +#: lib/classes/databox/cgu.class.php:41 msgid "cgus :: accepter" msgstr "Accept" -#: lib/classes/databox/cgu.class.php:41 +#: lib/classes/databox/cgu.class.php:42 msgid "cgus :: refuser" msgstr "Reject" @@ -678,34 +672,50 @@ msgid "admin::register: un utilisateur s'est inscrit" msgstr "A new user has registered" #: lib/classes/eventsmanager/notify/autoregister.class.php:235 +#: lib/classes/eventsmanager/notify/order.class.php:221 +#: lib/classes/eventsmanager/notify/register.class.php:240 msgid "admin::compte-utilisateur nom" msgstr "Last name" #: lib/classes/eventsmanager/notify/autoregister.class.php:237 +#: lib/classes/eventsmanager/notify/order.class.php:223 +#: lib/classes/eventsmanager/notify/register.class.php:242 msgid "admin::compte-utilisateur prenom" msgstr "First name" #: lib/classes/eventsmanager/notify/autoregister.class.php:239 +#: lib/classes/eventsmanager/notify/order.class.php:225 +#: lib/classes/eventsmanager/notify/register.class.php:244 msgid "admin::compte-utilisateur email" msgstr "E-mail" #: lib/classes/eventsmanager/notify/autoregister.class.php:241 +#: lib/classes/eventsmanager/notify/order.class.php:227 +#: lib/classes/eventsmanager/notify/register.class.php:246 msgid "admin::compte-utilisateur adresse" msgstr "Address" #: lib/classes/eventsmanager/notify/autoregister.class.php:245 +#: lib/classes/eventsmanager/notify/order.class.php:231 +#: lib/classes/eventsmanager/notify/register.class.php:250 msgid "admin::compte-utilisateur telephone" msgstr "Phone" #: lib/classes/eventsmanager/notify/autoregister.class.php:247 +#: lib/classes/eventsmanager/notify/order.class.php:233 +#: lib/classes/eventsmanager/notify/register.class.php:252 msgid "admin::compte-utilisateur fax" msgstr "Fax" #: lib/classes/eventsmanager/notify/autoregister.class.php:249 +#: lib/classes/eventsmanager/notify/order.class.php:235 +#: lib/classes/eventsmanager/notify/register.class.php:254 msgid "admin::compte-utilisateur poste" msgstr "Job" #: lib/classes/eventsmanager/notify/autoregister.class.php:250 +#: lib/classes/eventsmanager/notify/order.class.php:236 +#: lib/classes/eventsmanager/notify/register.class.php:255 msgid "admin::compte-utilisateur societe" msgstr "Company" @@ -725,6 +735,31 @@ msgstr "Bridge upload failed" msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" msgstr "Receive a notification when a bridge upload fail" +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:125 +msgid "email is not valid" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:129 +msgid "failed to send mail" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:133 +msgid "an error occured while exporting records" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:137 +#, php-format +msgid "The delivery to %s failed for the following reason : %s" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:156 +msgid "Email export fails" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:165 +msgid "Get a notification when a mail export fails" +msgstr "" + #: lib/classes/eventsmanager/notify/order.class.php:162 #, php-format msgid "%1$s a passe une %2$scommande%3$s" @@ -822,7 +857,6 @@ msgstr "Click the following link to view and compare & download received selecti #: lib/classes/eventsmanager/notify/push.class.php:191 #: lib/classes/eventsmanager/notify/validate.class.php:213 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:233 msgid "push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas" msgstr "Warning this link is unique, don't communicate it." @@ -858,16 +892,11 @@ msgstr "Manage user(s) demands from Phraseanet Admin" #: lib/classes/eventsmanager/notify/validate.class.php:33 #: lib/classes/eventsmanager/notify/validate.class.php:177 -#: lib/classes/eventsmanager/notify/validationdone.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:191 msgid "Validation" msgstr "Feedback" #: lib/classes/eventsmanager/notify/validate.class.php:148 #: lib/classes/eventsmanager/notify/validate.class.php:152 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:164 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:168 msgid "Une selection" msgstr "an untitled selection" @@ -885,7 +914,6 @@ msgid "push::mail:: Demande de validation de documents" msgstr "Document(s) feedback demand" #: lib/classes/eventsmanager/notify/validate.class.php:203 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:223 #, php-format msgid "Le lien suivant vous propose de valider une selection faite par %s" msgstr "Click the following link, your feedback is asked by %s" @@ -1137,43 +1165,43 @@ msgstr "December" msgid "report:: non-renseigne" msgstr "Not filled" -#: lib/classes/module/console/systemConfigCheck.class.php:52 +#: lib/classes/module/console/systemConfigCheck.class.php:54 msgid "*** CHECK BINARY CONFIGURATION ***" msgstr "*** CHECK BINARY CONFIGURATION ***" -#: lib/classes/module/console/systemConfigCheck.class.php:61 +#: lib/classes/module/console/systemConfigCheck.class.php:65 msgid "*** FILESYSTEM CONFIGURATION ***" msgstr "*** FILESYSTEM CONFIGURATION ***" -#: lib/classes/module/console/systemConfigCheck.class.php:64 +#: lib/classes/module/console/systemConfigCheck.class.php:68 msgid "*** CHECK CACHE OPCODE ***" msgstr "*** CHECK CACHE OPCODE ***" -#: lib/classes/module/console/systemConfigCheck.class.php:67 +#: lib/classes/module/console/systemConfigCheck.class.php:71 msgid "*** CHECK CACHE SERVER ***" msgstr "*** CHECK CACHE SERVER ***" -#: lib/classes/module/console/systemConfigCheck.class.php:70 +#: lib/classes/module/console/systemConfigCheck.class.php:74 msgid "*** CHECK PHP CONFIGURATION ***" msgstr "*** CHECK PHP CONFIGURATION ***" -#: lib/classes/module/console/systemConfigCheck.class.php:73 +#: lib/classes/module/console/systemConfigCheck.class.php:77 msgid "*** CHECK PHP EXTENSIONS ***" msgstr "Copy text \t *** CHECK PHP EXTENSIONS ***" -#: lib/classes/module/console/systemConfigCheck.class.php:76 +#: lib/classes/module/console/systemConfigCheck.class.php:80 msgid "*** CHECK PHRASEA ***" msgstr "*** CHECK PHRASEA ***" -#: lib/classes/module/console/systemConfigCheck.class.php:79 +#: lib/classes/module/console/systemConfigCheck.class.php:83 msgid "*** CHECK SYSTEM LOCALES ***" msgstr "*** CHECK SYSTEM LOCALES ***" -#: lib/classes/module/console/systemUpgrade.class.php:49 +#: lib/classes/module/console/systemUpgrade.class.php:50 msgid "Create automatically" -msgstr "" +msgstr "Create automatically" -#: lib/classes/module/console/systemUpgrade.class.php:97 +#: lib/classes/module/console/systemUpgrade.class.php:81 msgid "Continuer ?" msgstr "Continue ?" @@ -1202,11 +1230,11 @@ msgstr "downloads from user %s" msgid "report:: telechargements par jour" msgstr "Downloads" -#: lib/classes/module/report/activity.class.php:531 +#: lib/classes/module/report/activity.class.php:530 msgid "report:: Detail des connexions" msgstr "Connections" -#: lib/classes/module/report/activity.class.php:589 +#: lib/classes/module/report/activity.class.php:588 msgid "report:: Detail des telechargements" msgstr "Downloads" @@ -1222,6 +1250,10 @@ msgstr "Connections" msgid "report:: telechargements" msgstr "Downloads" +#: lib/classes/module/report/edit.class.php:50 +msgid "report:: edited documents" +msgstr "Edited documents" + #: lib/classes/module/report/nav.class.php:129 msgid "report:: navigateur" msgstr "Browser" @@ -1266,7 +1298,15 @@ msgstr "Information about record %d" msgid "report:: Information sur le navigateur %s" msgstr "Information about web browser %s" -#: lib/classes/record/adapter.class.php:939 +#: lib/classes/module/report/push.class.php:50 +msgid "report:: pushed documents" +msgstr "Pushed documents" + +#: lib/classes/module/report/validate.class.php:50 +msgid "report:: validated documents" +msgstr "Validated documents" + +#: lib/classes/record/adapter.class.php:930 msgid "reponses::document sans titre" msgstr "Untitled" @@ -1292,22 +1332,22 @@ msgstr "Stories " msgid "preview:: resultat numero %s " msgstr "result number %s " -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 +#: lib/classes/record/preview.class.php:565 +#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:587 msgid "report::acces direct" msgstr "Direct access" -#: lib/classes/record/preview.class.php:566 +#: lib/classes/record/preview.class.php:571 msgid "report:: page d'accueil" msgstr "Home page" -#: lib/classes/record/preview.class.php:568 +#: lib/classes/record/preview.class.php:573 msgid "report:: visualiseur cooliris" msgstr "Cooliris viewer" -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:578 +#: lib/classes/record/preview.class.php:585 msgid "report::presentation page preview" msgstr "External link" @@ -1369,11 +1409,11 @@ msgstr "Too few characters to search " msgid "Sphinx server is offline" msgstr "Sphinx server is offline" -#: lib/classes/set/export.class.php:292 +#: lib/classes/set/export.class.php:301 msgid "export::ftp: reglages manuels" msgstr "Manual settings" -#: lib/classes/set/order.class.php:233 +#: lib/classes/set/order.class.php:245 #, php-format msgid "Commande du %s" msgstr "Order done %s" @@ -1585,7 +1625,7 @@ msgstr "SSL" #: lib/classes/task/period/outofdate.class.php:26 msgid "Documents perimes" -msgstr "" +msgstr "Expired documents" #: lib/classes/task/period/outofdate.class.php:411 #: lib/classes/task/period/workflow01.class.php:317 @@ -1677,534 +1717,526 @@ msgstr "Delete Metadatas from documents if not compliant with Database structure #: lib/classes/User/Adapter.class.php:413 #, php-format msgid "A user already exists with email addres %s" -msgstr "" +msgstr "A user with email address %s already exists" #: lib/classes/User/Adapter.class.php:1356 #, php-format msgid "modele %s" msgstr "Template %s" -#: lib/conf.d/_GV_template.php:61 +#: lib/conf.d/_GV_template.php:82 msgid "GV::section:: Serveur HTTP" msgstr "Http Server" -#: lib/conf.d/_GV_template.php:66 +#: lib/conf.d/_GV_template.php:87 msgid "reglages:: Timezone de l'installation" msgstr "Time zone" -#: lib/conf.d/_GV_template.php:73 +#: lib/conf.d/_GV_template.php:94 msgid "reglages:: Nom de linstallation" msgstr "Instance unique key" -#: lib/conf.d/_GV_template.php:81 +#: lib/conf.d/_GV_template.php:102 msgid "reglages:: Langue par defaut" msgstr "Default language" -#: lib/conf.d/_GV_template.php:90 +#: lib/conf.d/_GV_template.php:111 msgid "reglages:: URL statique (optionnel)" msgstr "Static URL" -#: lib/conf.d/_GV_template.php:96 +#: lib/conf.d/_GV_template.php:117 msgid "GV::section:: Etat de maintenance" msgstr "Maintenance mode" -#: lib/conf.d/_GV_template.php:102 +#: lib/conf.d/_GV_template.php:123 msgid "reglages:: Message a diffuser aux utilisateurs" msgstr "Warning message to users" -#: lib/conf.d/_GV_template.php:108 +#: lib/conf.d/_GV_template.php:129 msgid "reglages:: activation du message a diffuser aux utilistaeurs" msgstr "Activate warning message" -#: lib/conf.d/_GV_template.php:114 +#: lib/conf.d/_GV_template.php:135 msgid "reglages:: logguer les erreurs" msgstr "Log errors" -#: lib/conf.d/_GV_template.php:119 +#: lib/conf.d/_GV_template.php:140 msgid "GV::section:: Connectivite aux webservices" msgstr "Webservice connections" -#: lib/conf.d/_GV_template.php:124 +#: lib/conf.d/_GV_template.php:145 msgid "reglages:: Utiliser els google apis" msgstr "Use Google API(s)" -#: lib/conf.d/_GV_template.php:131 +#: lib/conf.d/_GV_template.php:152 msgid "reglages:: Service phrasea de localisation" msgstr "Phraseanet localisation service" -#: lib/conf.d/_GV_template.php:139 +#: lib/conf.d/_GV_template.php:160 msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" msgstr "Bit.ly username" -#: lib/conf.d/_GV_template.php:145 +#: lib/conf.d/_GV_template.php:166 msgid "reglages:: ccle d'api pour l'api bit.ly" msgstr "Bit.ly API key" -#: lib/conf.d/_GV_template.php:151 +#: lib/conf.d/_GV_template.php:172 msgid "reglages:: Utilisation de l'api recpatcha" msgstr "Use ReCaptcha API" -#: lib/conf.d/_GV_template.php:158 +#: lib/conf.d/_GV_template.php:179 msgid "reglages:: clef publique recaptcha" msgstr "ReCaptcha public key" -#: lib/conf.d/_GV_template.php:164 +#: lib/conf.d/_GV_template.php:185 msgid "reglages:: clef privee recaptcha" msgstr "ReCaptcha private key" -#: lib/conf.d/_GV_template.php:169 +#: lib/conf.d/_GV_template.php:190 msgid "GV::section:: Connectivite a Youtube" msgstr "Youtube Connectivity" -#: lib/conf.d/_GV_template.php:174 +#: lib/conf.d/_GV_template.php:195 #, php-format msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" msgstr "Use Youtube APi, see %s,
      set callback to WEBSITE_URL/prod/bridge/callback/youtube" -#: lib/conf.d/_GV_template.php:181 +#: lib/conf.d/_GV_template.php:202 msgid "reglages:: Youtube client id" msgstr "Youtube client id" -#: lib/conf.d/_GV_template.php:187 +#: lib/conf.d/_GV_template.php:208 msgid "reglages:: Youtube clientsecret" msgstr "Youtube client secret" -#: lib/conf.d/_GV_template.php:193 +#: lib/conf.d/_GV_template.php:214 #, php-format msgid "reglages:: Youtube cle developpeur, voir %s" msgstr "Youtube developer key, see %s" -#: lib/conf.d/_GV_template.php:198 +#: lib/conf.d/_GV_template.php:219 msgid "GV::section:: Connectivite a FlickR" msgstr "FlickR connectivity" -#: lib/conf.d/_GV_template.php:203 +#: lib/conf.d/_GV_template.php:224 #, php-format msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" msgstr "Use FlickR Api, see %s, set callback to %s" -#: lib/conf.d/_GV_template.php:210 +#: lib/conf.d/_GV_template.php:231 msgid "reglages:: FlickR client id" msgstr "FlickR client id" -#: lib/conf.d/_GV_template.php:216 +#: lib/conf.d/_GV_template.php:237 msgid "reglages:: FlickR client secret" msgstr "FlickR Client secret" -#: lib/conf.d/_GV_template.php:221 +#: lib/conf.d/_GV_template.php:242 msgid "GV::section:: Connectivite a Dailymotion" msgstr "Dailymotion Connectivity" -#: lib/conf.d/_GV_template.php:226 +#: lib/conf.d/_GV_template.php:247 #, php-format msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" msgstr "Use Dailymotion API, see %s, set callback to %s" -#: lib/conf.d/_GV_template.php:233 +#: lib/conf.d/_GV_template.php:254 msgid "reglages:: dailymotion client id" msgstr "Dailymotion client id" -#: lib/conf.d/_GV_template.php:239 +#: lib/conf.d/_GV_template.php:260 msgid "reglages:: dailymotion client secret" msgstr "Dailymotion client secret" -#: lib/conf.d/_GV_template.php:244 +#: lib/conf.d/_GV_template.php:265 msgid "GV::section:: Gestionnaire d'evenements" msgstr "Event manager" -#: lib/conf.d/_GV_template.php:250 +#: lib/conf.d/_GV_template.php:271 msgid "reglages:: Evenements" msgstr "Events" -#: lib/conf.d/_GV_template.php:258 +#: lib/conf.d/_GV_template.php:279 msgid "reglages:: Notifications" msgstr "Notifications" -#: lib/conf.d/_GV_template.php:264 +#: lib/conf.d/_GV_template.php:285 msgid "GV::section:: Stockage des documents" msgstr "Data Storage" -#: lib/conf.d/_GV_template.php:269 +#: lib/conf.d/_GV_template.php:290 msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" msgstr "Enter files extensions autorised for upload in Phraseanet IV (use comma as separator. Use \" * \" to accept any kind of file format)" -#: lib/conf.d/_GV_template.php:277 +#: lib/conf.d/_GV_template.php:298 msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" msgstr "direct access to storage folders for thumbnail(s)" -#: lib/conf.d/_GV_template.php:285 +#: lib/conf.d/_GV_template.php:306 msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" msgstr "Protected files storage folder" -#: lib/conf.d/_GV_template.php:292 +#: lib/conf.d/_GV_template.php:313 msgid "reglages:: point de montage des vignettes publiees en acces direct" msgstr "Thumbnail web folder alias" -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "Cache server" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "Use a cache server" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "None" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "Cache server host" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "Chache server port" - -#: lib/conf.d/_GV_template.php:330 +#: lib/conf.d/_GV_template.php:321 msgid "GV::section:: Serveur Sphinx" msgstr "Sphink server" -#: lib/conf.d/_GV_template.php:335 +#: lib/conf.d/_GV_template.php:326 msgid "Utiliser Sphinx" msgstr "Use Sphinx" -#: lib/conf.d/_GV_template.php:341 +#: lib/conf.d/_GV_template.php:332 msgid "reglages:: de l'adresse du serveur sphinx" msgstr "Sphinx server address" -#: lib/conf.d/_GV_template.php:347 +#: lib/conf.d/_GV_template.php:338 msgid "reglages:: port du serveur sphinx" msgstr "Sphinx server port" -#: lib/conf.d/_GV_template.php:353 +#: lib/conf.d/_GV_template.php:344 msgid "reglages:: de l'adresse du serveur RT sphinx" msgstr "RT Sphinx server address" -#: lib/conf.d/_GV_template.php:359 +#: lib/conf.d/_GV_template.php:350 msgid "reglages:: port du serveur RT sphinx" msgstr "RT Sphinx server port" -#: lib/conf.d/_GV_template.php:364 +#: lib/conf.d/_GV_template.php:356 +msgid "Phrasea Engine" +msgstr "" + +#: lib/conf.d/_GV_template.php:361 +msgid "Default results sort" +msgstr "" + +#: lib/conf.d/_GV_template.php:367 msgid "GV::section:: Executables externes" msgstr "Exernal exec." -#: lib/conf.d/_GV_template.php:369 +#: lib/conf.d/_GV_template.php:372 msgid "reglages:: mod_xsendfileapache active" msgstr "Enable xsendfile for apache" -#: lib/conf.d/_GV_template.php:375 +#: lib/conf.d/_GV_template.php:378 msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" msgstr "X-Accel-Redirect (NginX only) access path" -#: lib/conf.d/_GV_template.php:382 +#: lib/conf.d/_GV_template.php:385 msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" msgstr "X-Accel-Redirect (Nginx only) mounting point" -#: lib/conf.d/_GV_template.php:389 +#: lib/conf.d/_GV_template.php:392 msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" msgstr "\"stream h264\" activation via \"mod_token\" - Warning, \"apache mod_h264_streaming\" and \"mod_auth_token\" binaries are required" -#: lib/conf.d/_GV_template.php:396 +#: lib/conf.d/_GV_template.php:399 msgid "reglages:: point de montage du dossier protege via auth_token" msgstr "Mount point of protected folder via \"auth_token\"" -#: lib/conf.d/_GV_template.php:403 +#: lib/conf.d/_GV_template.php:406 msgid "reglages:: path complet du dossier protege via auth_token" msgstr "Full path to protected folfer via \"auth_token\"" -#: lib/conf.d/_GV_template.php:409 +#: lib/conf.d/_GV_template.php:412 msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" msgstr "\"mod_auth_token\" passphrase (setup from apache configuration file)" -#: lib/conf.d/_GV_template.php:415 +#: lib/conf.d/_GV_template.php:418 msgid "reglages:: executable PHP CLI" msgstr "Path to PHP CLI (Common Line Interface)" -#: lib/conf.d/_GV_template.php:422 +#: lib/conf.d/_GV_template.php:425 msgid "reglages:: path du php.ini specifique (vide si non utilise)" msgstr "Path to specific php.ini (optional)" -#: lib/conf.d/_GV_template.php:429 +#: lib/conf.d/_GV_template.php:432 msgid "reglages:: chemin de l'executable convert" msgstr "Path to convert binary" -#: lib/conf.d/_GV_template.php:436 +#: lib/conf.d/_GV_template.php:439 msgid "reglages:: chemin de l'executable composite" msgstr "Path to Composite binary" -#: lib/conf.d/_GV_template.php:443 +#: lib/conf.d/_GV_template.php:446 msgid "reglages:: chemin de l'executable exiftools" msgstr "Path to Exiftool component" -#: lib/conf.d/_GV_template.php:449 +#: lib/conf.d/_GV_template.php:452 msgid "reglages:: chemin de l'executable swfextract" msgstr "Path to SWF extract component" -#: lib/conf.d/_GV_template.php:456 +#: lib/conf.d/_GV_template.php:459 msgid "reglages:: chemin de l'executable pdf2swf" msgstr "Path to PDF 2 SWF component" -#: lib/conf.d/_GV_template.php:463 +#: lib/conf.d/_GV_template.php:466 msgid "reglages:: chemin de l'executable swfrender" msgstr "Path to SWF render component" -#: lib/conf.d/_GV_template.php:470 +#: lib/conf.d/_GV_template.php:473 msgid "reglages:: chemin de l'executable unoconv" msgstr "Path to Unoconv component" -#: lib/conf.d/_GV_template.php:477 +#: lib/conf.d/_GV_template.php:480 msgid "reglages:: chemin de l'executable FFmpeg" msgstr "Path to FFmpeg component" -#: lib/conf.d/_GV_template.php:483 +#: lib/conf.d/_GV_template.php:486 msgid "reglages:: chemin de l'executable MP4Box" msgstr "Path to MP4Box component" -#: lib/conf.d/_GV_template.php:489 +#: lib/conf.d/_GV_template.php:492 msgid "reglages:: chemin de l'executable Mplayer" msgstr "Path to Mplayer component" -#: lib/conf.d/_GV_template.php:495 +#: lib/conf.d/_GV_template.php:498 msgid "reglages:: chemin de l'executable pdftotext (xpdf)" msgstr "pdftotext (xpdf) path" -#: lib/conf.d/_GV_template.php:501 +#: lib/conf.d/_GV_template.php:504 msgid "reglages:: nombre maximum de page a extraire (PDF)" msgstr "Limit number of pages of text to extract for PDF files" -#: lib/conf.d/_GV_template.php:506 +#: lib/conf.d/_GV_template.php:509 msgid "GV::section:: Repertoires utilitaires" msgstr "Tools folders" -#: lib/conf.d/_GV_template.php:511 +#: lib/conf.d/_GV_template.php:514 msgid "reglages:: proprietaire des fichiers" msgstr "File Owner (Apache execution account name)" -#: lib/conf.d/_GV_template.php:517 +#: lib/conf.d/_GV_template.php:520 msgid "reglages:: groupes des fichiers" msgstr "User Group (Apache Execution user group name)" -#: lib/conf.d/_GV_template.php:522 +#: lib/conf.d/_GV_template.php:525 msgid "GV::section:: Configuration principale" msgstr "Main configuration" -#: lib/conf.d/_GV_template.php:534 +#: lib/conf.d/_GV_template.php:537 msgid "reglages:: email de l'administrateur" msgstr "Administrator e-mail" -#: lib/conf.d/_GV_template.php:540 +#: lib/conf.d/_GV_template.php:543 msgid "reglages:: Afficher le nom des bases et des collections" msgstr "Dissplay databases and collections names" -#: lib/conf.d/_GV_template.php:547 +#: lib/conf.d/_GV_template.php:550 msgid "reglages:: activer le choix du nom de fichier a l'export" msgstr "Give user option to change downloaded file name" -#: lib/conf.d/_GV_template.php:554 +#: lib/conf.d/_GV_template.php:557 msgid "reglages:: choix par defaut des noms de fichier a l'export" msgstr "By default exported files will be named with ..." -#: lib/conf.d/_GV_template.php:568 +#: lib/conf.d/_GV_template.php:571 msgid "reglages:: Active les partages Facebook et Twitter" msgstr "Activate Facebook and Twitter shares" -#: lib/conf.d/_GV_template.php:575 +#: lib/conf.d/_GV_template.php:578 msgid "GV::section:: Page d'accueil" msgstr "Home Page" -#: lib/conf.d/_GV_template.php:588 +#: lib/conf.d/_GV_template.php:591 msgid "reglages:: presentation sur la home" msgstr "Home page basket(s) display settings" -#: lib/conf.d/_GV_template.php:595 +#: lib/conf.d/_GV_template.php:598 msgid "GV::section:: Moteur de recherche" msgstr "Search engine" -#: lib/conf.d/_GV_template.php:601 +#: lib/conf.d/_GV_template.php:604 msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" msgstr "For user research, minimum number of caracters prior to a troncature operator insertion (1 by default)" -#: lib/conf.d/_GV_template.php:607 +#: lib/conf.d/_GV_template.php:610 msgid "reglages:: Question par defaut" msgstr "default query" -#: lib/conf.d/_GV_template.php:613 +#: lib/conf.d/_GV_template.php:616 msgid "reglages:: type de document cherches par defaut e l'ouverture du site" msgstr "Set default query settings to..." -#: lib/conf.d/_GV_template.php:619 +#: lib/conf.d/_GV_template.php:622 msgid "GV::section:: Report" msgstr "Report" -#: lib/conf.d/_GV_template.php:625 +#: lib/conf.d/_GV_template.php:628 msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" msgstr "Anonymous Report (hide users names and infos from reports)" -#: lib/conf.d/_GV_template.php:631 +#: lib/conf.d/_GV_template.php:634 msgid "GV::section:: Modules supplementaires" msgstr "Additional modules" -#: lib/conf.d/_GV_template.php:637 +#: lib/conf.d/_GV_template.php:640 msgid "reglages:: Activation de l'outil thesaurus" msgstr "Enable Phraseanet IV Thesaurus" -#: lib/conf.d/_GV_template.php:642 +#: lib/conf.d/_GV_template.php:645 msgid "reglages:: Activation du Mode MultiDOC" msgstr "Enable Story mode" -#: lib/conf.d/_GV_template.php:647 +#: lib/conf.d/_GV_template.php:650 msgid "reglages:: Substitution de HD d'un record " msgstr "Document substitution " -#: lib/conf.d/_GV_template.php:652 +#: lib/conf.d/_GV_template.php:655 msgid "reglages:: Substitution de thumbnail d'un record" msgstr "Enable Documents thumbnails substitution" -#: lib/conf.d/_GV_template.php:736 +#: lib/conf.d/_GV_template.php:739 msgid "GV::section:: Envois de mails" msgstr "Emails delivery" -#: lib/conf.d/_GV_template.php:747 +#: lib/conf.d/_GV_template.php:750 msgid "reglages:: Expediteur mail par defaut" msgstr "Sender default e-mail address" -#: lib/conf.d/_GV_template.php:753 +#: lib/conf.d/_GV_template.php:756 msgid "reglages:: Utilisation d'un serveur SMTP" msgstr "SMTP server use" -#: lib/conf.d/_GV_template.php:759 +#: lib/conf.d/_GV_template.php:762 msgid "reglages:: Activation de l'authentification smtp" msgstr "Use Authentification" -#: lib/conf.d/_GV_template.php:765 +#: lib/conf.d/_GV_template.php:768 msgid "reglages:: Hote SMTP" msgstr "Host" -#: lib/conf.d/_GV_template.php:771 +#: lib/conf.d/_GV_template.php:774 msgid "reglages:: Port SMTP" msgstr "Port" -#: lib/conf.d/_GV_template.php:777 +#: lib/conf.d/_GV_template.php:780 msgid "reglages:: Utiliser une conenction SSL" msgstr "Use SSL" -#: lib/conf.d/_GV_template.php:783 +#: lib/conf.d/_GV_template.php:786 msgid "reglages:: User SMTP" msgstr "User" -#: lib/conf.d/_GV_template.php:789 +#: lib/conf.d/_GV_template.php:792 msgid "reglages:: Mot de passe SMTP" msgstr "Password" -#: lib/conf.d/_GV_template.php:794 +#: lib/conf.d/_GV_template.php:797 msgid "GV::section:: Exports FTP" msgstr "Ftp Export" -#: lib/conf.d/_GV_template.php:799 +#: lib/conf.d/_GV_template.php:802 msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" msgstr "Enable FTP use to export document" -#: lib/conf.d/_GV_template.php:805 +#: lib/conf.d/_GV_template.php:808 msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" msgstr "Enable FTP export for users (false = Admin only)" -#: lib/conf.d/_GV_template.php:810 +#: lib/conf.d/_GV_template.php:813 msgid "GV::section:: Configuration du client" msgstr "Client Configuration" -#: lib/conf.d/_GV_template.php:822 +#: lib/conf.d/_GV_template.php:818 +msgid "Maximum megabytes allowed in download (if request is bigger, then mail is still available)" +msgstr "" + +#: lib/conf.d/_GV_template.php:824 msgid "reglages:: position de l'onglet de recherche" msgstr "\"Search\" tab display position (1 =1st position from left)" -#: lib/conf.d/_GV_template.php:828 +#: lib/conf.d/_GV_template.php:830 msgid "reglages:: position de l'onglet de recherche avancee" msgstr "\"Advanced search\" tab display position (2= 2nd position from left)" -#: lib/conf.d/_GV_template.php:834 +#: lib/conf.d/_GV_template.php:836 msgid "reglages:: position de l'onglet des topics" msgstr "\"Topics\" tab display position ..." -#: lib/conf.d/_GV_template.php:840 +#: lib/conf.d/_GV_template.php:842 msgid "reglages:: numero de l'onglet actif" msgstr "Select default displayed tab (from numbers above)" -#: lib/conf.d/_GV_template.php:846 +#: lib/conf.d/_GV_template.php:848 msgid "reglages:: rendu des topics" msgstr "Set \"Topics\" display as.." -#: lib/conf.d/_GV_template.php:859 +#: lib/conf.d/_GV_template.php:861 msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" msgstr "Enable rollover display on thumbnails in detail view window" -#: lib/conf.d/_GV_template.php:865 +#: lib/conf.d/_GV_template.php:867 msgid "reglages:: Voir le rollover sur les elements du chutier" msgstr "Enable rollover display on thumbnails in baskets" -#: lib/conf.d/_GV_template.php:871 +#: lib/conf.d/_GV_template.php:873 msgid "reglages:: Presentation des collections" msgstr "Collections display option in Phraseanet Client" -#: lib/conf.d/_GV_template.php:878 +#: lib/conf.d/_GV_template.php:880 msgid "reglages:: Voir taille HD total des doc d'un chutiers" msgstr "Enable Display of documents total size in baskets" -#: lib/conf.d/_GV_template.php:884 +#: lib/conf.d/_GV_template.php:886 msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" msgstr "Enable \"proposals\" tab display when thesaurus active" -#: lib/conf.d/_GV_template.php:890 +#: lib/conf.d/_GV_template.php:892 msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" msgstr "Redirect to register guest users when intending download" -#: lib/conf.d/_GV_template.php:895 +#: lib/conf.d/_GV_template.php:897 msgid "GV::section:: Parametrage de l'inscription" msgstr "Register configuration" -#: lib/conf.d/_GV_template.php:900 +#: lib/conf.d/_GV_template.php:902 msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" msgstr "Hide collection list from registration form - User registration is send for all collections \"enabled for registration\"" -#: lib/conf.d/_GV_template.php:906 +#: lib/conf.d/_GV_template.php:908 msgid "reglages:: Activation de l'autoinscription" msgstr "Enable Auto registration - Auto accept users at the end of registration process" -#: lib/conf.d/_GV_template.php:911 +#: lib/conf.d/_GV_template.php:913 msgid "GV::section:: Configuration du push" msgstr "Push configuration" -#: lib/conf.d/_GV_template.php:916 +#: lib/conf.d/_GV_template.php:918 msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" msgstr "Days before sending reminder for feedback" -#: lib/conf.d/_GV_template.php:928 +#: lib/conf.d/_GV_template.php:930 msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" msgstr "Enable expiration date in feedback push (0= no expiration date)" -#: lib/conf.d/_GV_template.php:933 +#: lib/conf.d/_GV_template.php:935 msgid "GV::section:: Indexation par les robots" msgstr "Robots indexation" -#: lib/conf.d/_GV_template.php:938 +#: lib/conf.d/_GV_template.php:940 msgid "reglages :: Titre de l'installation" msgstr "Website Title" -#: lib/conf.d/_GV_template.php:944 +#: lib/conf.d/_GV_template.php:946 msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" msgstr "indexed meta keywords for search engines" -#: lib/conf.d/_GV_template.php:950 +#: lib/conf.d/_GV_template.php:952 msgid "reglages :: Description de l'installation" msgstr "Meta description" -#: lib/conf.d/_GV_template.php:956 +#: lib/conf.d/_GV_template.php:958 msgid "reglages:: identifiant google analytics" msgstr "Google Analytics ID (UA-XXXXXXX-X)" -#: lib/conf.d/_GV_template.php:962 +#: lib/conf.d/_GV_template.php:964 msgid "Allow the website to be indexed by search engines like Google" msgstr "Allow search engines (such as Google) indexation" -#: lib/conf.d/_GV_template.php:968 +#: lib/conf.d/_GV_template.php:970 msgid "reglages:: Afficher le bandeau Google Chrome Frame" msgstr "Display Google Chrome frame banner" @@ -2424,7 +2456,7 @@ msgstr "Login" msgid "admin::compte-utilisateur mot de passe" msgstr "Password" -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 +#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:112 msgid "report::Heures" msgstr "Hours" @@ -2445,7 +2477,7 @@ msgid "boutton::editer" msgstr "Edit" #: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:78 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1436 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1437 msgid "boutton::supprimer" msgstr "Delete" @@ -2470,9 +2502,98 @@ msgstr "Caption" msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "For more information follow the link %lien%" +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:36 +msgid "Vous avez recu un nouveau panier" +msgstr "You have a new basket available" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:38 +msgid "rafraichir" +msgstr "Refresh" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:90 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "You have received a feedback demand for documents from this basket" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:106 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:252 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:440 +msgid "action::exporter" +msgstr "Export" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:117 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:263 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:451 +msgid "action::editer" +msgstr "Edit" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:142 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:303 +msgid "action::Valider" +msgstr "Validate" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:219 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "You have pushed this basket for feedback" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:232 +msgid "paniers:: panier recu de %pusher%" +msgstr "Basket received from %pusher%" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:279 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:285 +msgid "action::renommer" +msgstr "Rename" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:320 +msgid "Archive" +msgstr "Archive" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:332 +msgid "action : supprimer" +msgstr "Delete" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:341 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:347 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:475 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:483 +msgid "Re-ordonner" +msgstr "Set order" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:466 +msgid "action::detacher" +msgstr "Release from Basket zone" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:692 +msgid "delete" +msgstr "Delete" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:783 +msgid "panier:: ordre du panier" +msgstr "Basket order" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:791 +msgid "panier:: ordre Validation ascendante" +msgstr "Most approved" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:799 +msgid "panier:: ordre Validation descendante" +msgstr "Less approved" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:845 +msgid "L'utilisateur approuve ce document" +msgstr "User approve this document" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:851 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "User hasn't decided yet" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:857 +msgid "L'utilisateur desapprouve ce document" +msgstr "User disapprove this document" + #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:47 msgid "Users" -msgstr "" +msgstr "Users" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:54 msgid "admin::user: nouvel utilisateur" @@ -2500,7 +2621,7 @@ msgstr "Auto register set up" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:114 msgid "Filter" -msgstr "" +msgstr "Filter" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:123 msgid "Push::filter on login" @@ -2532,15 +2653,15 @@ msgstr "Starts with" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:184 msgid "Apply a template" -msgstr "" +msgstr "Apply a template" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:189 msgid "boutton::choisir" -msgstr "" +msgstr "Choose" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:211 msgid "boutton::appliquer" -msgstr "" +msgstr "Apply" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:227 msgid "admin::compte-utilisateur id utilisateur" @@ -2564,11 +2685,11 @@ msgstr "Creation date" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:412 msgid "This is a template" -msgstr "" +msgstr "This is a template user" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:421 msgid "This user has no rights" -msgstr "" +msgstr "This user has no rights" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:622 #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:633 @@ -2665,37 +2786,37 @@ msgstr "Delete \"%s\" term from caption(s)" #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:860 msgid "prod::thesaurusTab:tree:loading" msgstr "Loading..." -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1232 msgid "boutton::ok" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1258 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1284 msgid "prod::thesaurusTab:dlg:OK" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1265 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1291 msgid "prod::thesaurusTab:dlg:Annuler" msgstr "Cancel" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1316 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "Accept as new term" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1326 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "Accept as a synonym" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1408 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "Accept in %lng_code%" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1427 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "Replace with" @@ -2864,17 +2985,21 @@ msgstr "This field is linked to the DublinCore field %DublinCoreElementSet%" msgid "report:: 2 - Bases" msgstr "2 - Databases" +#: tmp/cache_twig/12/0a/b3d79d1d4e6aa2159ebb650983c4.php:55 +msgid "Voulez-vous dire %link% ?" +msgstr "Do you mean %link% ?" + #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 msgid "Ajouter une publication" msgstr "Add a publication" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:58 msgid "Feed name" -msgstr "" +msgstr "Feed name" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:68 msgid "Short description" -msgstr "" +msgstr "Short description" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:72 msgid "Sous-titre" @@ -2902,11 +3027,11 @@ msgstr "Restriction" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:153 msgid "Public" -msgstr "" +msgstr "Public" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:231 msgid "This feed is public" -msgstr "" +msgstr "This feed is public" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:278 msgid "Une fois la publication supprimee, les donnees publiees seront definitivement perdues. Continuer ?" @@ -2917,6 +3042,58 @@ msgstr "Once the publication is deleted, all information about it are lost, proc msgid "validation::envoyer mon rapport" msgstr "Send my report" +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:14 +msgid "You are not authorized to do this" +msgstr "You are not authorized to do this action" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:21 +msgid "About Roles : " +msgstr "About Roles : " + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:26 +msgid "Admin can edit shares, modify content" +msgstr "Admin can edit shares and modify content" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:32 +msgid "Editor can modify content" +msgstr "Editor can modify content" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:38 +msgid "Access user have readonly access" +msgstr "Access has readonly rights" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:46 +msgid "Find a user" +msgstr "Find a user" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:83 +msgid "You are Admin" +msgstr "You are administrator" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:92 +msgid "Role" +msgstr "Role" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:105 +msgid "Access" +msgstr "Access" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:118 +msgid "Editor" +msgstr "Editor" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:131 +msgid "Admin" +msgstr "Administrator" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:147 +msgid "Remove" +msgstr "Remove" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:156 +msgid "Notify" +msgstr "Notify" + #: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 msgid "notice" msgstr "Caption" @@ -2929,58 +3106,68 @@ msgstr "Download all" msgid "action : exporter" msgstr "Export" +#: tmp/cache_twig/15/06/d2e85f3a9ae09f5a6f26a134bc0d.php:37 +msgid "%nb_records% records" +msgstr "%nb_records% records" + #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 msgid "First Name" -msgstr "" +msgstr "First Name" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:31 msgid "Last Name" -msgstr "" +msgstr "Last Name" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:42 msgid "Email Name" -msgstr "" +msgstr "Email address" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:53 msgid "Job" -msgstr "" +msgstr "Job" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:174 msgid "Company" -msgstr "" +msgstr "Company" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:75 msgid "City" -msgstr "" +msgstr "City" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:87 msgid "Add" -msgstr "" +msgstr "Add" + +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:91 +msgid "Cancel" +msgstr "Cancel" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:23 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:17 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:23 msgid "boutton::precedent" msgstr "Previous" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:29 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:29 msgid "boutton::demarrer" msgstr "Slideshow" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:35 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:35 msgid "boutton::pause" msgstr "Pause" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:41 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:47 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:41 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:47 msgid "boutton::suivant" msgstr "Next" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:53 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:53 msgid "boutton::telecharger" msgstr "Download" @@ -2992,41 +3179,61 @@ msgstr "Pending" msgid "En cours d'envoi" msgstr "Sending in progress" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:28 msgid "List Name" -msgstr "" +msgstr "List Name" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:37 +msgid "Save" +msgstr "Save" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:59 +msgid "Share the list" +msgstr "Share the list" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:64 msgid "Set sharing permission" -msgstr "" +msgstr "Set sharing permission" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 -msgid "Activite" -msgstr "" +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:79 +msgid "Delete" +msgstr "Delete" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 -msgid "Template" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 -msgid "Country" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 -msgid "Position" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:101 msgid "%length% peoples" -msgstr "" +msgstr "%length% people" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:107 +msgid "Edit" +msgstr "Edit" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 +msgid "View" +msgstr "View" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:208 +msgid "Activite" +msgstr "Activity" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:214 +msgid "Template" +msgstr "Template" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:226 +msgid "Country" +msgstr "Country" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:232 +msgid "Position" +msgstr "Position" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:241 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:266 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:291 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:317 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:343 +msgid "All" +msgstr "All" #: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 msgid "VALIDATION" @@ -3036,11 +3243,11 @@ msgstr "VALIDATION" msgid "lightbox::recaptitulatif" msgstr "Summary" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:121 msgid "validation:: OUI" msgstr "YES" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:136 msgid "validation:: NON" msgstr "NO" @@ -3112,6 +3319,7 @@ msgid "action : ajouter au panier" msgstr "Add to Basket" #: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 msgid "action : print" msgstr "Print" @@ -3199,234 +3407,230 @@ msgstr "Connection to server is Ok, but database does not exists or can not be msgid "Unable to connect to MySQL server" msgstr "Unable to connect to MySQL server" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "Welcome, You are about to install Phraseanet" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:435 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "Check Online for required list of components and web server setup" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:441 msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." msgstr "You will need a MySQL server, documents storage folders, and setup web server to publish some of these folders" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:451 msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." msgstr "Please take notice of the followings points, and finish installation." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" -msgstr "Prerequisite" +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:517 +msgid "Prerequisite and Configuration" +msgstr "Prerequisite and Configuration" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "Web Server Setup" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:551 msgid "Executables externes" msgstr "External binaries" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:594 msgid "Required field" msgstr "Required field" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:618 msgid "Phraseanet may require many binaries." msgstr "Phraseanet requires many binaries." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:624 msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." msgstr "Some of them are required, like the indexer, Exiftool or ImageMagick, others are optionnal, like FFmpeg, used to create previews for video files." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:630 msgid "Don't worry, You can modify your configuration later" msgstr "Don't worry, You can modify your configuration later" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:669 msgid "Creation de votre compte" msgstr "User account creation" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:681 msgid "Votre adresse email" msgstr "Your Email address" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:688 msgid "Votre mot de passe" msgstr "You Password" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 msgid "Confirmation de votre mot de passe" msgstr "Confirm Password" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:717 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "About password security policy" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:721 msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" msgstr "Password has to be clearly different from login and must contain 2 types of characters among the following :" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:726 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Special" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:730 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Uppercase" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:734 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Lowercase" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:738 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Numeric" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:758 msgid "Your email will be used to log in the application." msgstr "Your email will be used to log in the application." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:762 msgid "Please be sure it is still valid and you can access it" msgstr "Make sure to use a valid email address" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "ApplicationBox Setup" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:820 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1104 msgid "MySQL database connection parameters" msgstr "MySQL database connection parameters" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:827 msgid "phraseanet:: adresse" msgstr "Address" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:834 msgid "Database user" msgstr "Database user" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:848 msgid "phraseanet:: port" msgstr "Port" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:855 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1119 msgid "Database" msgstr "Database" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:863 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1127 msgid "boutton::tester" msgstr "Test" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:883 msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" msgstr "If you need more parameters, %debut_lien%show more options%fin_lien%" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:902 msgid "ApplicationBox is a Mysql database." msgstr "ApplicationBox is a Mysql database." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:908 msgid "It stores users datas, rights, and references to DataBoxes where records are stored." msgstr "It stores users datas, rights, and references to DataBoxes where records are stored." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:920 msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." msgstr "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:964 msgid "setup::Configuration des repertoires de stockage" msgstr "Storage folders Setup" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:976 msgid "Repertoire de stockage des fichiers" msgstr "Documents storage folder" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:983 msgid "Repertoire de stockage des imagettes" msgstr "Thumbnail storage folder setup" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:990 msgid "Point de montage des imagettes (voir aide ci dessous)" msgstr "Thumbnail mount point (help available below)" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:999 msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" msgstr "You have to setup a mount point for thumbnails in your web server configuration." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1004 msgid "Exemple Apache" msgstr "Apache example" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 msgid "Exemple Nginx" msgstr "Nginx example" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1042 msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." msgstr "Documents and their subviews (previews, thumbnails..) will be stored in the following directories." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1048 msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." msgstr "Thumbnails directory is mounted to be accessible via HTTP, while others directories are not." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1054 msgid "If you plan to store large files, be sure it will fit in these directories." msgstr "If you plan to store large files, make sure they will fit in these directories." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 msgid "setup::Configuration de la base de stockage DataBox" msgstr "Databox setup" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1111 msgid "Ne pas creer de DataBox maintenant" msgstr "Do not create Databox for now" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1139 msgid "Modele de donnees" msgstr "Metadatas template" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1170 msgid "Creation des taches" msgstr "Task setup" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1175 msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" msgstr "Phraseanet has an embeded task engine to read and write metadatas et perform other operations" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1186 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Create a task to write metadatas" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1195 msgid "Creer la tache de creation des sous-definitions" msgstr "Create a task to make subviews" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1204 msgid "Creer la tache d'indexation" msgstr "Create a task for indexation" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1221 msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." msgstr "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1225 msgid "Databoxes store records, metadatas and their classifications" msgstr "Databoxes are used to store records, metadatas and their classifications" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1246 msgid "button::Install" msgstr "Install" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1256 msgid "Install in progess" msgstr "Installation in progress" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1262 msgid "Installation is currenlty processing, please wait..." msgstr "Installation is currenlty processing, please wait..." @@ -3435,66 +3639,45 @@ msgid "validation:: editer ma note" msgstr "Modify my notes" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 msgid "action : editer" msgstr "Edit" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 msgid "action : status" msgstr "Properties" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 msgid "action : collection" msgstr "Move" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 msgid "action : push" msgstr "Push" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:89 +msgid "Feedback" +msgstr "Feedback" + +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:100 msgid "action : bridge" msgstr "Bridge" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 msgid "action : publier" msgstr "Publish" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:119 msgid "action : outils" msgstr "Tools" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "Delete" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:135 msgid "Certaines donnees du panier ont change" msgstr "This basket has been updated" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "Refresh" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 msgid "Votre recherche ne retourne aucun resultat" msgstr "No result for this search" -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "Do you mean %link% ?" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." msgstr "Search using the dialog box (top left of window)" @@ -3631,473 +3814,426 @@ msgstr "Loading..." msgid "phraseanet:: panier" msgstr "Basket" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "Search" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:361 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:365 msgid "phraseanet:: propositions" msgstr "Proposals" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:373 msgid "phraseanet:: thesaurus" msgstr "Thesaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" -msgstr "Reset" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:384 +msgid "Close the WorkZone" +msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "all these words" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "this exact wording or phrase" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "one or more of these words" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "None of these words" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "All" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "None" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " -msgstr "Sort by " - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "Relevance" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "Add date" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "Random" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "descending" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "ascending" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "Stemme search" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "Word(s) from field(s)" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "All fields" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "Document status" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "In a date field" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "From" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "To" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:410 msgid "prod::thesaurusTab:thesaurus" msgstr "Thesaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:414 msgid "prod::thesaurusTab:candidats" msgstr "Candidats" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:426 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "Accept candidat" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:432 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "Replace with term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:832 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1090 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:439 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:707 msgid "boutton::rechercher" msgstr "Search" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:552 msgid "chargement" msgstr "Loading" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:581 msgid "prod::thesaurusTab:dlg:supprimer le terme ?" msgstr "Delete term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:587 msgid "prod::thesaurusTab:dlg:accepter le terme ?" msgstr "Accept term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:593 msgid "prod::thesaurusTab:dlg:remplacer le terme ?" msgstr "Replace term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:609 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:613 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:617 msgid "action:: nouveau panier" msgstr "New" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:624 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:628 msgid "Browse Baskets" -msgstr "" +msgstr "Browse Baskets" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:635 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:639 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:643 msgid "action:: nouveau reportage" -msgstr "" +msgstr "New Story" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:652 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:656 msgid "phraseanet:: tri par date" msgstr "Sort by date" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:664 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:668 msgid "phraseanet:: tri par nom" msgstr "Sort by name" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:676 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1589 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1761 msgid "Preferences" msgstr "Settings" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:702 +msgid "Advanced Search" +msgstr "Advanced Search" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:720 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1194 msgid "phraseanet::type:: documents" msgstr "Documents" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 msgid "phraseanet::type:: reportages" msgstr "Story" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:740 msgid "Tout type" msgstr "Screen type" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:744 msgid "Image" msgstr "Image" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:748 msgid "Video" msgstr "Video" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:752 msgid "Audio" msgstr "Audio" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:756 msgid "Document" msgstr "Document" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 msgid "Flash" msgstr "Flash" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" -msgstr "Databases" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:788 +msgid "boutton:: selectionner toutes les bases" +msgstr "All" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" -msgstr "History" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:793 +msgid "boutton:: selectionner aucune base" +msgstr "None" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" -msgstr "Topics" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:808 +msgid "Re-initialiser" +msgstr "Reset" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:816 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:850 +msgid "Trier par " +msgstr "Sort by " + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:821 +msgid "pertinence" +msgstr "Relevance" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +msgid "date dajout" +msgstr "Add date" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:829 +msgid "aleatoire" +msgstr "Random" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:835 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:887 +msgid "descendant" +msgstr "descending" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:839 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:891 +msgid "ascendant" +msgstr "ascending" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:844 +msgid "rechercher par stemme" +msgstr "Stemme search" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:902 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "Word(s) from field(s)" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:908 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1092 +msgid "rechercher dans tous les champs" +msgstr "All fields" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:954 +msgid "Status des documents a rechercher" +msgstr "Document status" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1060 +msgid "Rechercher dans un champ date" +msgstr "In a date field" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1102 +msgid "phraseanet::time:: de" +msgstr "From" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +msgid "phraseanet::time:: a" +msgstr "To" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1169 msgid "Select" -msgstr "" +msgstr "Select" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1176 msgid "reponses:: selectionner tout" msgstr "All" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1182 msgid "reponses:: selectionner rien" msgstr "None" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1188 msgid "phraseanet::type:: images" msgstr "Images" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1200 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1206 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1222 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1355 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1455 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1492 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 msgid "Select an action" -msgstr "" +msgstr "Select an action" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1643 msgid "raccourci :: a propos des raccourcis claviers" msgstr "About Short cuts" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1648 msgid "Raccourcis claviers en cours de recherche : " msgstr "Main windows shortcuts " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1653 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1689 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : select all " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1657 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1693 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : print selected " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1661 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1697 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : edit selection " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1665 msgid "Raccourcis::fleche gauche : page precedente " msgstr "left arrow : previous page " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1669 msgid "Raccourcis::fleche droite : page suivante " msgstr "right arrow : next page " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1673 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "up arrow : vertical scroll " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1677 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "down arrow : vertical scroll " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1684 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Baskets & features zone shortcuts " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1704 msgid "Raccourcis claviers en cours de editing : " msgstr "Edit window shortcuts " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1709 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : change field " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 msgid "Raccourcis claviers en cours de preview : " msgstr "Details View window shortcut " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1721 msgid "Raccourcis::fleche gauche : en avant " msgstr "right arrow : next document " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1725 msgid "Raccourcis::fleche gauche : en arriere " msgstr "left arrow : previous document " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1729 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "space : start/stop diaporama " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1737 msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "esc : close most of overlayed windows " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1747 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Do not display help anymore" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1767 msgid "Affichage" msgstr "Display" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1771 msgid "Configuration" msgstr "Configuration" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1779 msgid "Mode de presentation" msgstr "Display mode" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1793 msgid "reponses:: mode vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1803 msgid "reponses:: mode liste" msgstr "List" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1809 msgid "Theme" msgstr "Skin" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1818 msgid "Selecteur de theme" msgstr "Theme picker" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1840 msgid "Presentation de vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1851 msgid "Iconographe (description au rollover)" msgstr "Iconograph (caption on rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1863 msgid "Graphiste (preview au rollover)" msgstr "Graphist (preview on rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1873 msgid "Informations techniques" msgstr "Technical informations" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1884 msgid "Afficher" msgstr "Display" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1896 msgid "Afficher dans la notice" msgstr "Display in caption" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1908 msgid "Ne pas afficher" msgstr "Hide" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1918 msgid "Type de documents" msgstr "Document(s) Type" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1929 msgid "Afficher une icone" msgstr "Display an Icon" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1937 msgid "reponses:: images par pages : " msgstr "Results per page " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1950 msgid "reponses:: taille des images : " msgstr "Thumbnails size " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1964 msgid "Couleur de selection" msgstr "Selection color" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1969 msgid "choisir" msgstr "Select" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1979 msgid "Affichage au demarrage" msgstr "Display On startup" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1995 msgid "Ma derniere question" msgstr "My last query" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2006 msgid "Une question personnelle" msgstr "The query" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 msgid "Aide" msgstr "Help" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2078 msgid "preview:: Description" msgstr "Caption" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2082 msgid "preview:: Historique" msgstr "Timeline" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2089 msgid "preview:: Popularite" msgstr "Popularity" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2142 msgid "Presentation de vignettes de panier" msgstr "Basket display setup" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2159 msgid "Afficher les status" msgstr "Show Status" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2177 msgid "Afficher la fiche descriptive" msgstr "Show Caption" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2195 msgid "Afficher le titre" msgstr "Show Title" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "Set order" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "Automatic sort" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "Choose" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "Reverse" - #: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 msgid "preview::statistiques de visualisation pour le lien" msgstr "View statistics" @@ -4164,7 +4300,7 @@ msgstr "yyyy/mm/dd hh:mm:ss" #: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:43 msgid "phraseanet::technique::date-edit-explain (aaaa/mm/jj)" -msgstr "" +msgstr "date-edit-explain (aaaa/mm/jj)" #: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:49 msgid "phraseanet::technique::time-edit-explain (hh:mm:ss)" @@ -4245,11 +4381,11 @@ msgstr "Update" #: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:138 msgid "Before any upgrade, you have to fix your database." -msgstr "" +msgstr "Before any upgrade, you have to repair your database." #: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:141 msgid "Some users have the same email address. You can fix this problem with this script :" -msgstr "" +msgstr "Some users are using the same email address. You can fix this problem using this script :" #: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:163 msgid "Une mise a jour de l'application est necessaire, il est vivement recommande de l'effectuer en ligne de commande via la commande :" @@ -4279,29 +4415,41 @@ msgstr "No matches found" msgid "Ajouter a" msgstr "Add to" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:21 msgid "Fail" msgstr "Fail" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:27 msgid "Success" msgstr "Success" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" -msgstr "Error : %error%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:75 +msgid "Hello %username%" +msgstr "Hi %username%" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" -msgstr "Expire in %expiration_date%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:90 +msgid "Erreur" +msgstr "Erreur" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:97 +msgid "%error%" +msgstr "%error%" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:113 +msgid "Code d'accès" +msgstr "Access code" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:120 +msgid "Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis :" +msgstr "Copy it below, return to you application et paste it where required" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 msgid "Rights" -msgstr "" +msgstr "Rights" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:78 msgid "Infos" -msgstr "" +msgstr "Infos" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:125 msgid "Edition des droits de %display_name%" @@ -4311,31 +4459,31 @@ msgstr "%display_name% user right edition" msgid "Edition des droits de %number% utilisateurs" msgstr "User rights edition of %number% users" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:698 msgid "admin::compte-utilisateur sexe" msgstr "Gender" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:709 msgid "admin::compte-utilisateur:sexe: mademoiselle" msgstr "Miss" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:717 msgid "admin::compte-utilisateur:sexe: madame" msgstr "Mrs." -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:725 msgid "admin::compte-utilisateur:sexe: monsieur" msgstr "Mr." -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:760 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:790 msgid "admin::compte-utilisateur code postal" msgstr "Zip code" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:774 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:804 msgid "admin::compte-utilisateur ville" msgstr "City" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:818 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:848 msgid "admin::compte-utilisateur activite" msgstr "Activity" @@ -4368,27 +4516,27 @@ msgid "panier:: description" msgstr "Caption" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:280 msgid "No results" -msgstr "" +msgstr "No results" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:286 msgid "1 result" -msgstr "" +msgstr "1 result" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:292 msgid "%Total% results" -msgstr "" +msgstr "%Total% results" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:189 msgid "Received from %user_name%" -msgstr "" +msgstr "Received from %user_name%" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:240 msgid "Sent for validation to %list_participants%" -msgstr "" +msgstr "Sent for validation to %list_participants%" #: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:34 msgid "Vous avez autorise ces applications a acceder a votre compte" @@ -4451,19 +4599,23 @@ msgstr "Create a template user" msgid "Creer un utilisateur" msgstr "Create a new user" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:288 +msgid "Successful install" +msgstr "Successful installation" + +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:311 msgid "Ajouter un nouvel utilisateur" msgstr "Add a new user" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:316 msgid "Adresse email du nouvel utilisateur" msgstr "New user email address" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:324 msgid "Creer un modele" msgstr "Create a template" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:329 msgid "Nom du nouveau modele" msgstr "New template name" @@ -4473,18 +4625,13 @@ msgstr "Publish" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:15 msgid "Collection" -msgstr "" +msgstr "Collection" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:41 msgid "Story name" -msgstr "" +msgstr "Story name" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:47 -msgid "Story description" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:53 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:28 msgid "Ajouter ma selection courrante" msgstr "Add my current selection" @@ -4551,15 +4698,27 @@ msgstr "Number of documents edited" #: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:15 msgid "Lists" -msgstr "" +msgstr "Lists" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:27 msgid "Refresh" -msgstr "" +msgstr "Refresh" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -msgid "Delete" -msgstr "" +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:63 +msgid "(%length%)" +msgstr "(%length%)" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:16 +msgid "Reordonner automatiquement" +msgstr "Automatic sort" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:21 +msgid "Choisir" +msgstr "Choose" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:38 +msgid "Inverser" +msgstr "Reverse" #: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 msgid "Playlist" @@ -4577,11 +4736,11 @@ msgstr "Select which API to connect to ?" msgid "Aucun bridge disponible. Veuillez contacté un administrateur." msgstr "No Bridge available, Contact system Administrator" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:509 msgid "Vous n'avez pas assez de droits sur les elements selectionnes" msgstr "You miss some rights on the selected documents" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:516 msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" msgstr "You miss some rights on some of the selected documents" @@ -4593,107 +4752,111 @@ msgstr "1 - Time space" msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" msgstr "The required API connector has a bad configuration , please contact Application administrator" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:122 msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" msgstr "Do you confirm that metadata delete ? it will be definitly delected" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:145 msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." msgstr "Two fields can't be linked to the smae Dublin Core element" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:147 msgid "La precedente attribution a ete desactivee" -msgstr "" +msgstr "Previous attribution has been deactivated" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:223 msgid "Attention !" msgstr "Warning !" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:282 msgid "boutton::ajouter" msgstr "Add" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:300 msgid "Nom" msgstr "Name" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:312 msgid "DublinCore Element Set" msgstr "DublinCore Element Set" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:318 msgid "Multivalue" msgstr "Multivalued" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:324 msgid "Indexable" msgstr "Indexable" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:330 msgid "Vocabulary Type" -msgstr "" +msgstr "Vocabulary Type" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:336 msgid "Vocabulary restricted" -msgstr "" +msgstr "Vocabulary restricted" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:348 msgid "Lecture seule" msgstr "Read only" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:354 msgid "Type" -msgstr "" +msgstr "Type" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:360 msgid "Separateur" -msgstr "" +msgstr "Separator" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:366 msgid "Branche Thesaurus" msgstr "Thesaurus branch" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:372 msgid "Affiche dans report" msgstr "Display on reports" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:378 msgid "Afficher en titre" msgstr "Display as Title" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:483 msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" msgstr "Selected documentary source is not mutlivalued, you should uncheck that box" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" msgstr "Selected documentary source is multivalued, you should check that box" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:582 msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" msgstr "Selected documentary source is not read only, you should uncheck that box" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" msgstr "Selected documentary source is read only, you should check that box" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:786 msgid "Tous" msgstr "All" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:794 +msgid "Aucun" +msgstr "None" + +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:802 msgid "Francais" msgstr "French" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:810 msgid "Allemand" msgstr "German" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:818 msgid "Anglais" msgstr "English" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:826 msgid "Arabe" msgstr "Arabic" @@ -4760,12 +4923,10 @@ msgid "%basket_length% documents" msgstr "%basket_length% document(s)" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 msgid "Suppression de %n_element% videos" msgstr "Deleting %n_element% videos" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 msgid "Etes vous sur de supprimer %number% videos ?" msgstr "Confirm delete of %number% videos ?" @@ -4807,33 +4968,37 @@ msgstr "Back to Home" msgid "Which playlist you want to put you %number% elements into ?" msgstr "Select a Playlist to add the %number% documents" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -msgid "mauvais login / mot de passe" -msgstr "Wrong Login or Password" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:74 +msgid "Erreur de login / mot de passe" +msgstr "Login / Password error" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" -msgstr "Welcome, please login on %home_title%" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" -msgstr "Hi %username%" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:82 +msgid "Bonjour, veuillez vous identifier sur %home_title% :" +msgstr "Hi, please identify on %home_title% :" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" -msgstr "%application_name% wants to acces to your data on %home_title%" +msgid "Se connecter" +msgstr "Connect" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" -msgstr "Do you authorize this app to access these datas ?" +msgid "Problèmes de connexion ?" +msgstr "Connexion problem" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" -msgstr "Yes" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:134 +msgid "Autorisation d'accès" +msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" -msgstr "No" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:145 +msgid "Autorisez-vous l'application \"%application_name%\" à accéder à votre contenu sur %home_title% ?" +msgstr "Do you authorize application \"%application_name%\" to access your content on %home_title% ?" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:175 +msgid "Autoriser" +msgstr "Authorize" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:199 +msgid "Ne pas autoriser" +msgstr "Do not Authorize" #: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 msgid "Apparait aussi dans ces reportages" @@ -4878,15 +5043,15 @@ msgstr "list of users allowed to publish on this feed" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:198 msgid "Id" -msgstr "" +msgstr "Id" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:203 msgid "Email" -msgstr "" +msgstr "Email" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:207 msgid "Owner" -msgstr "" +msgstr "Owner" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:305 msgid "Ajouter un publisher" @@ -4894,197 +5059,136 @@ msgstr "Add a Publisher" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:309 msgid "Name or email" -msgstr "" +msgstr "Name or Email" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:434 msgid "You are not the feed owner" msgstr "You are not the feed owner" -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "You have a new basket available" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "You have pushed this basket for feedback" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "Basket received from %pusher%" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:309 -msgid "action::exporter" -msgstr "Export" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:320 -msgid "action::editer" -msgstr "Edit" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "Rename" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "Validate" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:194 -msgid "Archive" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:335 -msgid "action::detacher" -msgstr "Release from Basket zone" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:561 -msgid "delete" -msgstr "Delete" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:652 -msgid "panier:: ordre du panier" -msgstr "Basket order" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:660 -msgid "panier:: ordre Validation ascendante" -msgstr "Most approved" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:668 -msgid "panier:: ordre Validation descendante" -msgstr "Less approved" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur approuve ce document" -msgstr "User approve this document" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:717 -msgid "L'utilisateur desapprouve ce document" -msgstr "User disapprove this document" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:723 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "User hasn't decided yet" - #: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 msgid "validation:: note" msgstr "Comments" -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" -msgstr "" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:32 +msgid "Grant rights" +msgstr "Grant rights" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" -msgstr "" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:43 +msgid "Contributor" +msgstr "Contributor" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:51 +msgid "See others" +msgstr "See others choices" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:62 msgid "HD Download" +msgstr "Document Download" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:79 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:444 +msgid "List Manager" +msgstr "List Manager" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 +msgid "Save this list" +msgstr "Save this list" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:162 +msgid "Select a user in the list" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:166 +msgid "or" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:169 +msgid "Add user" +msgstr "Add user" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:256 +msgid "and %n% more peoples" +msgstr "and %n% more peoples" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:277 +msgid "Please consider send this validation to the following users : %recommendation%" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:286 +msgid "Users suggestion" +msgstr "Users suggestion" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:334 msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" msgstr "" "Push is used to send a selection of documents to recipients.\n" "Recipients will receive a mail with a link that will launch Phraseanet Lightbox, display documents for visualisation and/or download.\n" "Push is also available as a \"received\" basket within Phraseanet for registered users" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 -msgid "List Manager" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 -msgid "Select all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 -msgid "Deselect all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 -msgid "Back to Push" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 -msgid "Welcome to the ListManager !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 -msgid "Select a list on the left and edit it !" -msgstr "" - -#: tmp/cache_twig/a5/4a/3c031045d47e838eac5252dfd6a9.php:380 -msgid "Do you want to send your report ?" -msgstr "Send your Report ?" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:340 msgid "Push::une validation est une demande d'appreciation a d'autres personnes" msgstr "" "Click to send a request for feedback on a selection of documents to recipients.\n" "Recipients will receive a mail with a link, that will launch Phraseanet Lightbox, display documents and ask user(s) for feedback and/or download.\n" "Feed back is available as a validation Basket within Phraseanet for registered users" -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:361 +msgid "Select all" +msgstr "Select all" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:365 +msgid "Deselect all" +msgstr "Deselect all" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:411 +msgid "Send" +msgstr "Send" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:429 +msgid "Back to Push" +msgstr "Back to Push" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:435 msgid "Back to Feedback" -msgstr "" +msgstr "Back to Feedback" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:462 +msgid "Welcome to the ListManager !" +msgstr "Welcome in the ListManager !" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:471 +msgid "Start by creating one by using the \"add\" button on the left !" +msgstr "Start by creating a list using the \"add\" button on the left !" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:480 +msgid "Select a list on the left and edit it !" +msgstr "Select a list on the left and then edit it !" + +#: tmp/cache_twig/a5/4a/3c031045d47e838eac5252dfd6a9.php:380 +msgid "Do you want to send your report ?" +msgstr "Send your Report ?" #: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 msgid "report:: Volumetrie des questions posees sur %home_title%" msgstr "Questions asked" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:89 msgid "Site web" msgstr "Web site" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:104 msgid "Type d'application" msgstr "Application type" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:108 msgid "Application web" msgstr "Web application" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:115 msgid "Application desktop" msgstr "Desktop application" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:128 msgid "URL de callback" msgstr "Callback url" @@ -5118,7 +5222,7 @@ msgstr "Thumbnails" #: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:82 msgid "None of the selected records can be printed " -msgstr "" +msgstr "None of the selected records can be printed " #: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:88 msgid "export:: erreur : aucun document selectionne" @@ -5145,7 +5249,6 @@ msgid "2000 caracteres maximum" msgstr "2000 maximum caracters" #: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:170 -#: tmp/cache_twig/bd/a8/2c59a65e6a28629b0d4eecf283e3.php:139 msgid "Categorie" msgstr "Category" @@ -5165,15 +5268,15 @@ msgstr "Clicking on the Upload button means that you have the rights on the cont msgid "Retour" msgstr "Return" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:31 msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" msgstr "Select the columns to be displayed in report" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:37 msgid "cocher tout" msgstr "Select all" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:44 msgid "tout decocher" msgstr "Unselect all" @@ -5209,11 +5312,11 @@ msgstr "Structure set up" #: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:266 msgid "CHAMPS" -msgstr "" +msgstr "FIELDS" #: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:278 msgid "SUBDEFS" -msgstr "" +msgstr "SUBVIEWS" #: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:290 msgid "admin::status: reglage des status" @@ -5275,130 +5378,134 @@ msgstr[1] "%value% likes" msgid "Edition de 1 element" msgstr "Editing 1 document" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:174 msgid "Aucun statut editable" msgstr "No editable status" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:180 msgid "Les status de certains documents ne sont pas accessible par manque de droits" msgstr "You do not have the required permission to change some of the documents status" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:258 msgid "boutton::remplacer" msgstr "Replace" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:295 msgid "phraseanet:: presse-papier" msgstr "Clipboard" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:303 msgid "prod::editing: rechercher-remplacer" msgstr "Find / Replace" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:307 msgid "prod::editing: modeles de fiches" msgstr "Caption template" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:335 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:333 msgid "phraseanet::chargement" msgstr "Loading" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:355 msgid "prod::editing::replace: remplacer dans le champ" msgstr "Replace in field" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:361 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "Replace in all fields" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:386 msgid "prod::editing:replace: chaine a rechercher" msgstr "Find" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:393 msgid "prod::editing:remplace: chaine remplacante" msgstr "Replace with" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:400 msgid "prod::editing:remplace: options de remplacement" msgstr "Options" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:406 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "Regular expression" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:437 msgid "Aide sur les expressions regulieres" msgstr "Help about Regular expressions" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:445 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "Replace All" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:451 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Case insensitive" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:458 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "Whole field" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:464 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "In field" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:470 msgid "prod::editing:remplace::option respecter la casse" msgstr "Case sensitive" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:522 msgid "prod::editing:indexation en cours" msgstr "Processing indexation" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:545 msgid "prod::editing: valider ou annuler les modifications" msgstr "Valid changes or Cancel" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:552 msgid "edit::preset:: titre" msgstr "Title" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:561 msgid "Edition impossible" msgstr "Unable to edit" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:570 msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" msgstr "Selected documents come from differents databases, unable to edit" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:576 msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" msgstr "Your user right do not allow you to edit any of the selected documents" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:612 msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" msgstr "Your user rights do not allow you to edit %not_actionable% documents from selection" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:618 msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "You do not have the required permissions to edit 1 document" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:778 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Some fields must be filled to save changes" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:815 msgid "edit: chosiir limage du regroupement" msgstr "Set as cover document" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:859 msgid "prod::editing::fields: status " msgstr "Status " -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:914 msgid "Ce champ est decrit comme un element DublinCore" msgstr "This field has a Dublin Core link" +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:923 +msgid "This field is represent the title of the document" +msgstr "" + #: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" msgstr "Push to %link% ici %endlink% users from application box %appbox%" @@ -5411,51 +5518,51 @@ msgstr "Validation demand toward %n_user% user from application box %appbox%" msgid "report::Edition des meta-donnees" msgstr "Metadatas Edition" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" -msgstr "Move(s) to collection : %dest%" +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:91 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "documents moved to : %coll_name%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:97 msgid "report::Edition des status" msgstr "Edit Status" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:106 msgid "report::Impression des formats : %format%" msgstr "Printing(s) : %format%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:115 msgid "report::Substitution de %dest%" msgstr "Substitution of %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:124 msgid "report::Publication de %dest%" msgstr "Publication(s) from %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:133 msgid "report::Telechargement de %dest%" msgstr "Download(s) from %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:145 msgid "Envoi par mail a %dest% de %content%" msgstr "Sent by email of %content% to %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:157 msgid "Envoi par ftp a %dest% de %content%" msgstr "Sent by ftp of %content% to %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:163 msgid "report::supression du document" msgstr "Delete document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:169 msgid "report::ajout du documentt" msgstr "Add document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:175 msgid "report::Modification du document -- je ne me souviens plus de quoi..." msgstr "Unknown action on document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:192 msgid "report:: par %user_infos%" msgstr "By %user_infos%" @@ -5471,23 +5578,23 @@ msgstr "OAuth settings" msgid "Les parametres oauth de votre application." msgstr "Your application oauth settings" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:123 msgid "Votre token d'access" msgstr "Your access token" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:127 msgid "Les paramétres oauth de votre application." msgstr "your application Oauth settings" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:135 msgid "Token" msgstr "Token" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:151 msgid "Le token n'a pas encore ete genere" msgstr "Token not generated yet" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:165 msgid "boutton::generer" msgstr "Generate" @@ -5624,51 +5731,51 @@ msgstr "Some fields must be completed" msgid "Vous devez selectionner un type de sous definitions" msgstr "Select type of subviews" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "Maximum Direct Download size is 120 Mb; Waiting time to create bigger package is too long" - #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 +msgid "You can not directly download more than %max_download% Mo ; time to package all documents is too long" +msgstr "" + +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 msgid "You can alternatively receive an email when the download is ready." msgstr "You can alternatively receive an email when the download is ready." -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:960 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Would you like to receive an e-mail when your download is ready ?" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1127 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1179 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Use passive mode" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1199 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Max. retry" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1217 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "Ftp reception folder" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1235 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Create directory" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1265 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "Write a log file" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1307 msgid "Nom des fichiers a l'export" msgstr "FIles name to use for Download" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1320 msgid "export::titre: titre du documument" msgstr "Title" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1334 msgid "export::titre: nom original du document" msgstr "Original name" @@ -5776,82 +5883,90 @@ msgstr "Comments" msgid "boutton::enregistrer" msgstr "Save" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:43 msgid "Login" -msgstr "" +msgstr "Login" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:61 msgid "First/Last Name" -msgstr "" +msgstr "First/Last Name" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:97 msgid "E-Mail" -msgstr "" +msgstr "Email" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:133 msgid "Last Template" -msgstr "" +msgstr "Last Template" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:151 msgid "Creation date" -msgstr "" +msgstr "Creation date" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:271 +msgid "Previous" +msgstr "Previous" + +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:288 +msgid "Next" +msgstr "Next" + +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:219 msgid "Create new subdef" msgstr "Create new subview" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:223 msgid "Delete the subdef ?" msgstr "Delete the subview" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:229 msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" msgstr "These subdef will be permanently deleted, recovery will be impossible. Are you sure?" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:240 msgid "Subdef name" msgstr "Subview mane" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:245 msgid "classe d'acces" msgstr "Access Class" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:254 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:382 msgid "preview" msgstr "Preveiw" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:258 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:390 msgid "tout le monde" msgstr "Everyone" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:336 msgid "Telechargeable" msgstr "Downloadable" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:354 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:366 msgid "classe" msgstr "Class" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 msgid "Baseurl" msgstr "Baseurl" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:435 msgid "Write Metas" msgstr "Write Metadatas" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:456 msgid "mediatype" msgstr "Media type" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:637 msgid "yes" msgstr "Yes" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:646 msgid "no" msgstr "No" @@ -5987,43 +6102,43 @@ msgstr "Move also Stories linked documents ?" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:18 msgid "Search baskets" -msgstr "" +msgstr "Search baskets" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:23 msgid "See" -msgstr "" +msgstr "See" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:43 msgid "My baskets" -msgstr "" +msgstr "My baskets" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:55 msgid "Received baskets" -msgstr "" +msgstr "Received baskets" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:67 msgid "Validations sent" -msgstr "" +msgstr "Validations sent" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:79 msgid "Validations received" -msgstr "" +msgstr "Validations received" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:86 msgid "When" -msgstr "" +msgstr "When" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:94 msgid "Any time" -msgstr "" +msgstr "Any time" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:106 msgid "This year" -msgstr "" +msgstr "This year" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:122 msgid "Past year" -msgstr "" +msgstr "Past year" #: tmp/cache_twig/f6/6b/0f79bfdfd04259ceea6613007599.php:77 msgid "Retour a l'accueil" @@ -6059,19 +6174,19 @@ msgstr "tags" #: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:20 msgid "Back to basket list" -msgstr "" +msgstr "Back to basket list" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:163 msgid "No records" -msgstr "" +msgstr "No records" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:169 msgid "1 record" -msgstr "" +msgstr "1 record" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:175 msgid "%ElementsCount% records" -msgstr "" +msgstr "%ElementsCount% records" #: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:26 msgid "Page %current_page%" @@ -6093,13 +6208,29 @@ msgstr "Status" msgid "Aucune" msgstr "None" -#: www/admin/adminFeedback.php:297 -#: www/admin/database.php:212 +#: www/admin/adminFeedback.php:69 +msgid "Base empty successful" +msgstr "Dabase succesfully emptied" + +#: www/admin/adminFeedback.php:85 +#: www/admin/adminFeedback.php:118 +msgid "A task has been creted, please run it to complete empty collection" +msgstr "A task has been created, please run it to empty collection" + +#: www/admin/adminFeedback.php:91 +#: www/admin/adminFeedback.php:123 +msgid "An error occurred" +msgstr "An error occurred" + +#: www/admin/adminFeedback.php:96 +msgid "Collection empty successful" +msgstr "Collection successfully emptied" + +#: www/admin/adminFeedback.php:316 msgid "admin::base: aucun alias" msgstr "No aliases" -#: www/admin/adminFeedback.php:387 -#: www/admin/database.php:255 +#: www/admin/adminFeedback.php:406 msgid "admin::base: vider la base avant de la supprimer" msgstr "Empty database before delete" @@ -6144,119 +6275,120 @@ msgstr "File sending error" msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Confirm collection dump ?" -#: www/admin/collection.php:302 +#: www/admin/collection.php:303 msgid "admin::base:collection: etes vous sur de demonter cette collection ?" msgstr "Confirm collection unmount ?" -#: www/admin/collection.php:316 +#: www/admin/collection.php:317 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Confirm collection publication ?" -#: www/admin/collection.php:321 +#: www/admin/collection.php:322 msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" msgstr "Confirm collection stop ?" -#: www/admin/collection.php:391 -#: www/admin/database.php:430 +#: www/admin/collection.php:392 +#: www/admin/database.php:431 msgid "phraseanet:: collection" msgstr "Collection" -#: www/admin/collection.php:398 +#: www/admin/collection.php:399 msgid "admin::base:collection: numero de collection distante" msgstr "Distant collection ID" -#: www/admin/collection.php:402 +#: www/admin/collection.php:403 msgid "admin::base:collection: etat de la collection" msgstr "Collection Status" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: activer la collection" msgstr "Enable collection" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: descativer la collection" msgstr "Disable collection" -#: www/admin/collection.php:413 -#: www/admin/database.php:398 +#: www/admin/collection.php:414 +#: www/admin/database.php:399 msgid "phraseanet:: details" msgstr "Details" -#: www/admin/collection.php:423 -#: www/admin/database.php:420 +#: www/admin/collection.php:424 +#: www/admin/database.php:421 msgid "admin::base: masquer les details" msgstr "Hide details" -#: www/admin/collection.php:439 -#: www/admin/database.php:435 +#: www/admin/collection.php:440 +#: www/admin/database.php:436 msgid "admin::base: objet" msgstr "Object" -#: www/admin/collection.php:443 -#: www/admin/database.php:437 +#: www/admin/collection.php:444 +#: www/admin/database.php:438 msgid "admin::base: nombre" msgstr "Number" -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 -#: www/admin/database.php:438 +#: www/admin/collection.php:447 +#: www/admin/collection.php:450 #: www/admin/database.php:439 +#: www/admin/database.php:440 msgid "admin::base: poids" msgstr "Size" -#: www/admin/collection.php:590 +#: www/admin/collection.php:591 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Order Managers" -#: www/admin/collection.php:605 +#: www/admin/collection.php:606 msgid "setup:: ajouter un administrateur des commandes" msgstr "Add a new order Manager" -#: www/admin/collection.php:623 +#: www/admin/collection.php:624 msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" msgstr "Display options for documents shared outside Phraseanet" -#: www/admin/collection.php:625 +#: www/admin/collection.php:626 msgid "admin::colelction::presentation des elements : rien" msgstr "Default" -#: www/admin/collection.php:626 +#: www/admin/collection.php:627 msgid "admin::colelction::presentation des elements : watermark" msgstr "Watermark file" -#: www/admin/collection.php:627 +#: www/admin/collection.php:628 msgid "admin::colelction::presentation des elements : stamp" msgstr "Stamp" -#: www/admin/collection.php:633 +#: www/admin/collection.php:634 msgid "admin::base:collection: renommer la collection" msgstr "Rename" -#: www/admin/collection.php:640 +#: www/admin/collection.php:641 +#: www/admin/newcoll.php:142 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "Name : " -#: www/admin/collection.php:665 +#: www/admin/collection.php:666 msgid "admin::base:collection: vider la collection" msgstr "Empty" -#: www/admin/collection.php:679 +#: www/admin/collection.php:680 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Confirm collection delete ?" -#: www/admin/collection.php:692 +#: www/admin/collection.php:693 msgid "admin::base:collection: minilogo actuel" msgstr "Current minilogo" -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 -#: www/admin/database.php:724 +#: www/admin/collection.php:713 +#: www/admin/collection.php:743 +#: www/admin/database.php:725 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "No file" -#: www/admin/collection.php:781 +#: www/admin/collection.php:782 msgid "admin::base:collection: image de presentation : " msgstr "Collection introduction banner " @@ -6290,7 +6422,7 @@ msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Confirm Database re-indexation" #: www/admin/database.php:174 -#: www/admin/database.php:378 +#: www/admin/database.php:379 msgid "admin::base: Alias" msgstr "Alias" @@ -6298,310 +6430,316 @@ msgstr "Alias" msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Delete full content of database ?" -#: www/admin/database.php:259 +#: www/admin/database.php:260 msgid "admin::base: Confirmer la suppression de la base" msgstr "Confirm Database removal" -#: www/admin/database.php:286 +#: www/admin/database.php:287 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "Delete complete log of database ?" -#: www/admin/database.php:312 +#: www/admin/database.php:313 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Stop database publication ?" -#: www/admin/database.php:394 +#: www/admin/database.php:395 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Records on database :" -#: www/admin/database.php:405 +#: www/admin/database.php:406 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "Unique words : " -#: www/admin/database.php:410 +#: www/admin/database.php:411 msgid "admin::base: nombre de mots indexes sur la base" msgstr "indexed words :" -#: www/admin/database.php:417 +#: www/admin/database.php:418 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "Thesaurus indexed terms :" -#: www/admin/database.php:471 +#: www/admin/database.php:472 msgid "admin::base: enregistrements orphelins" msgstr "Orphans documents" -#: www/admin/database.php:505 -#: www/admin/database.php:522 +#: www/admin/database.php:506 +#: www/admin/database.php:523 msgid "report:: total" msgstr "Sum" -#: www/admin/database.php:547 +#: www/admin/database.php:548 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Full text indexed documents" -#: www/admin/database.php:557 +#: www/admin/database.php:558 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Thesaurus indexed documents" -#: www/admin/database.php:573 +#: www/admin/database.php:574 msgid "admin::base: Cette base est indexable" msgstr "This database can be indexed" -#: www/admin/database.php:580 +#: www/admin/database.php:581 msgid "base:: re-indexer" msgstr "Re-index database now (regarding quantity of documents, this operation can last several hours)" -#: www/admin/database.php:588 +#: www/admin/database.php:589 +#: www/admin/newcoll.php:122 msgid "admin::base:collection: Creer une collection" msgstr "Create collection" -#: www/admin/database.php:600 +#: www/admin/database.php:601 msgid "admin::base:collection: Monter une collection" msgstr "Mount a collection" -#: www/admin/database.php:621 +#: www/admin/database.php:622 +#: www/admin/newcoll.php:152 msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " msgstr "apply users and rights from collection : " -#: www/admin/database.php:635 +#: www/admin/database.php:636 msgid "Monter" msgstr "Mount" -#: www/admin/database.php:649 +#: www/admin/database.php:650 msgid "Activer une collection" msgstr "Activate a collection" -#: www/admin/database.php:675 +#: www/admin/database.php:676 msgid "admin::base: supprimer tous les logs" msgstr "Delete all Logs" -#: www/admin/database.php:681 +#: www/admin/database.php:682 msgid "admin::base: arreter la publication de la base" msgstr "Stop database publication" -#: www/admin/database.php:687 +#: www/admin/database.php:688 msgid "admin::base: vider la base" msgstr "Empty database" -#: www/admin/database.php:693 +#: www/admin/database.php:694 msgid "admin::base: supprimer la base" msgstr "Delete database" -#: www/admin/database.php:703 +#: www/admin/database.php:704 msgid "admin::base: logo impression PDF" msgstr "Print Logo" -#: www/admin/database.php:716 +#: www/admin/database.php:717 msgid "admin::base:collection: supprimer le logo" msgstr "Delete logo" -#: www/admin/database.php:739 +#: www/admin/database.php:740 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Upload Logo (Height 35px max., jpeg)" -#: www/admin/databases.php:66 +#: www/admin/databases.php:67 msgid "Propositions de modifications des tables" msgstr "Proposals for tables modifications" -#: www/admin/databases.php:75 +#: www/admin/databases.php:76 msgid "N'oubliez pas de redemarrer le planificateur de taches" msgstr "Don't forget to restart task scheduler" -#: www/admin/databases.php:82 +#: www/admin/databases.php:83 msgid "Veuillez arreter le planificateur avant la mise a jour" msgstr "Please stop Scheduler before updating" -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 +#: www/admin/databases.php:94 +#: www/admin/databases.php:140 +#: www/admin/databases.php:167 msgid "Database name can not contains special characters" -msgstr "" +msgstr "Database name can not contains special characters" -#: www/admin/databases.php:134 +#: www/admin/databases.php:129 msgid "Database does not exists or can not be accessed" msgstr "Connection to server is Ok, but database does not exists or can not be accessed." -#: www/admin/databases.php:329 +#: www/admin/databases.php:318 msgid "admin::base: Version" msgstr "Version" -#: www/admin/databases.php:334 +#: www/admin/databases.php:323 msgid "update::Votre application necessite une mise a jour vers : " msgstr "Your application needs an update to : " -#: www/admin/databases.php:340 +#: www/admin/databases.php:329 msgid "update::Votre version est a jour : " msgstr "Your version is up to date " -#: www/admin/databases.php:346 +#: www/admin/databases.php:335 msgid "update::Verifier els tables" msgstr "Repair table" -#: www/admin/databases.php:351 +#: www/admin/databases.php:340 msgid "admin::base: creer une base" msgstr "Create new database" -#: www/admin/databases.php:355 +#: www/admin/databases.php:344 msgid "phraseanet:: Creer une base sur un serveur different de l'application box" msgstr "Create a new database on another server" -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 +#: www/admin/databases.php:348 +#: www/admin/databases.php:400 msgid "phraseanet:: hostname" msgstr "Host name" -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 +#: www/admin/databases.php:354 +#: www/admin/databases.php:406 msgid "phraseanet:: user" msgstr "User" -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 +#: www/admin/databases.php:357 +#: www/admin/databases.php:409 msgid "phraseanet:: password" msgstr "Password" -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 +#: www/admin/databases.php:361 +#: www/admin/databases.php:413 msgid "phraseanet:: dbname" msgstr "Database Name" -#: www/admin/databases.php:375 +#: www/admin/databases.php:364 msgid "phraseanet:: Modele de donnees" msgstr "XML structure template" -#: www/admin/databases.php:397 +#: www/admin/databases.php:386 msgid "boutton::creer" msgstr "Create" -#: www/admin/databases.php:403 +#: www/admin/databases.php:392 msgid "admin::base: Monter une base" msgstr "Mount database" -#: www/admin/databases.php:407 +#: www/admin/databases.php:396 msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" msgstr "Mount Database from a distant host." -#: www/admin/databases.php:428 +#: www/admin/databases.php:417 msgid "boutton::monter" msgstr "Mount" -#: www/admin/demand.php:366 +#: www/admin/demand.php:372 msgid "admin:: demandes en cours" msgstr "Pending registration" -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 +#: www/admin/demand.php:377 +#: www/admin/demand.php:504 msgid "admin:: refuser l'acces" msgstr "Deny access" -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 +#: www/admin/demand.php:378 +#: www/admin/demand.php:507 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "Allow Display and download for previews" -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 +#: www/admin/demand.php:379 +#: www/admin/demand.php:510 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "Allow previews and documents download" -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 +#: www/admin/demand.php:380 +#: www/admin/demand.php:513 msgid "admin:: watermarquer les documents" msgstr "Apply watermark on previews" -#: www/admin/demand.php:377 +#: www/admin/demand.php:383 msgid "admin::compte-utilisateur date d'inscription" msgstr "Register" -#: www/admin/demand.php:378 +#: www/admin/demand.php:384 msgid "admin::collection" msgstr "Collection" -#: www/admin/demand.php:480 +#: www/admin/demand.php:486 msgid "admin:: appliquer le modele " msgstr "Apply template " -#: www/admin/newcoll.php:42 +#: www/admin/newcoll.php:43 msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" msgstr "Collection not created, it must have a name" -#: www/admin/sessionwhois.php:58 +#: www/admin/newcoll.php:175 +msgid "Collection successfully created" +msgstr "Collection successfully created" + +#: www/admin/sessionwhois.php:59 msgid "admin::monitor: utilisateur" msgstr "User" -#: www/admin/sessionwhois.php:59 +#: www/admin/sessionwhois.php:60 msgid "admin::monitor: modules" msgstr "Modules" -#: www/admin/sessionwhois.php:61 +#: www/admin/sessionwhois.php:62 msgid "admin::monitor: date de connexion" msgstr "Connection date" -#: www/admin/sessionwhois.php:62 +#: www/admin/sessionwhois.php:63 msgid "admin::monitor: dernier access" msgstr "Last access" -#: www/admin/sessionwhois.php:101 +#: www/admin/sessionwhois.php:102 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "Connected databases " -#: www/admin/sessionwhois.php:116 +#: www/admin/sessionwhois.php:117 msgid "Session persistente" msgstr "Persistent session(s)" -#: www/admin/sessionwhois.php:134 +#: www/admin/sessionwhois.php:135 msgid "admin::monitor: module inconnu" msgstr "Unknown" -#: www/admin/sessionwhois.php:243 +#: www/admin/sessionwhois.php:244 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Unique visitors " -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" -msgstr "No Memcached server linked" +#: www/admin/sitestruct.php:187 +msgid "all caches services have been flushed" +msgstr "" -#: www/admin/sitestruct.php:189 +#: www/admin/sitestruct.php:193 msgid "setup:: administrateurs de l'application" msgstr "Administrators" -#: www/admin/sitestruct.php:201 +#: www/admin/sitestruct.php:205 msgid "setup:: ajouter un administrateur de l'application" msgstr "Add an admin" -#: www/admin/sitestruct.php:207 +#: www/admin/sitestruct.php:211 msgid "setup:: Reinitialisation des droits admins" msgstr "Reset admin rights" -#: www/admin/sitestruct.php:211 +#: www/admin/sitestruct.php:215 msgid "boutton::reinitialiser" msgstr "Reset" -#: www/admin/sitestruct.php:214 +#: www/admin/sitestruct.php:218 msgid "setup:: Reglages generaux" msgstr "Main settings" -#: www/admin/sitestruct.php:216 +#: www/admin/sitestruct.php:220 msgid "setup::Votre configuration" msgstr "Your configuration" -#: www/admin/sitestruct.php:244 +#: www/admin/sitestruct.php:248 msgid "setup::Filesystem configuration" msgstr "File System configuration" -#: www/admin/sitestruct.php:258 +#: www/admin/sitestruct.php:262 msgid "setup::Executables" msgstr "Executables" -#: www/admin/sitestruct.php:272 +#: www/admin/sitestruct.php:276 msgid "setup::PHP extensions" msgstr "PHP Extensions" -#: www/admin/sitestruct.php:285 +#: www/admin/sitestruct.php:289 msgid "setup::Serveur de cache" msgstr "Cache server" -#: www/admin/sitestruct.php:304 +#: www/admin/sitestruct.php:308 msgid "Phrasea Module" msgstr "Phrasea Module" @@ -6716,29 +6854,29 @@ msgstr "Display illustrations on top of thumbnails, for all users" msgid "admin::status: confirmer la suppression du status ?" msgstr "Confirm status delete" -#: www/admin/structure.php:76 +#: www/admin/structure.php:77 msgid "admin::base: structure" msgstr "Structure" -#: www/admin/structure.php:91 +#: www/admin/structure.php:92 msgid "admin::base: xml invalide, les changements ne seront pas appliques" msgstr "Invalid XML, unable to apply changes" -#: www/admin/sugval.php:934 +#: www/admin/sugval.php:935 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" "Continuer quand meme ?" msgstr "Warning, switch to graphic view may loss your xml if you did not save it. Continue ?" -#: www/admin/sugval.php:966 +#: www/admin/sugval.php:967 msgid "Suggested values" -msgstr "" +msgstr "Suggested values" -#: www/admin/sugval.php:983 +#: www/admin/sugval.php:984 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Suggested values - collection settings" -#: www/admin/sugval.php:1008 +#: www/admin/sugval.php:1009 msgid "admin::sugval: champs" msgstr "Fields" @@ -6747,235 +6885,223 @@ msgstr "Fields" msgid "admin::tasks: xml invalide, restaurer la version precedente ?" msgstr "Invalid Xml, restore previous version ?" -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 +#: www/admin/taskmanager.php:261 +#: www/admin/taskmanager.php:595 msgid "admin::tasks: supprimer la tache ?" msgstr "Delete Task ?" -#: www/admin/taskmanager.php:278 +#: www/admin/taskmanager.php:280 msgid "Fermer" msgstr "Close" -#: www/admin/taskmanager.php:279 +#: www/admin/taskmanager.php:281 msgid "Renouveller" msgstr "Renew" -#: www/admin/taskmanager.php:470 +#: www/admin/taskmanager.php:472 msgid "admin::tasks: planificateur de taches" msgstr "Scheduler" -#: www/admin/taskmanager.php:478 +#: www/admin/taskmanager.php:480 #, php-format msgid "Last update at %s." -msgstr "" +msgstr "Last update at %s." -#: www/admin/taskmanager.php:479 +#: www/admin/taskmanager.php:481 msgid "admin::tasks: Nouvelle tache" msgstr "New task" -#: www/admin/taskmanager.php:486 +#: www/admin/taskmanager.php:488 msgid "admin::tasks: statut de la tache" msgstr "Status" -#: www/admin/taskmanager.php:487 +#: www/admin/taskmanager.php:489 msgid "admin::tasks: process_id de la tache" msgstr "Process_id" -#: www/admin/taskmanager.php:488 +#: www/admin/taskmanager.php:490 msgid "admin::tasks: etat de progression de la tache" msgstr "Progression" -#: www/admin/taskmanager.php:751 +#: www/admin/taskmanager.php:753 msgid "Preferences du TaskManager" msgstr "TaskManager preferences" -#: www/admin/taskmanager.php:753 +#: www/admin/taskmanager.php:755 msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" msgstr "This url allows to control Scheduler from a cron manager" -#: www/client/answer.php:186 +#: www/client/answer.php:182 msgid "client::answers: rapport de questions par bases" msgstr "Query Report" -#: www/client/answer.php:191 +#: www/client/answer.php:187 #, php-format msgid "client::answers: %d reponses" msgstr "%d result(s)" -#: www/client/answer.php:488 +#: www/client/answer.php:486 msgid "reponses:: Votre recherche ne retourne aucun resultat" msgstr "No results for your search" -#: www/client/baskets.php:130 +#: www/client/baskets.php:124 msgid "paniers::categories: mes paniers" msgstr "My baskets" -#: www/client/baskets.php:136 +#: www/client/baskets.php:130 msgid "paniers::categories: paniers recus" msgstr "Baskets received" -#: www/client/baskets.php:153 +#: www/client/baskets.php:147 #, php-format msgid "paniers:: %d documents dans le panier" msgstr "%d document(s)" -#: www/client/baskets.php:158 +#: www/client/baskets.php:152 #, php-format msgid "paniers:: paniers:: %d documents dans le panier" msgstr "%d document(s)" -#: www/client/baskets.php:179 +#: www/client/baskets.php:173 msgid "action : ouvrir dans le comparateur" msgstr "Launch Lighbox" -#: www/client/baskets.php:188 +#: www/client/baskets.php:182 #, php-format msgid "paniers:: panier emis par %s" msgstr "Basket sent by %s" -#: www/client/baskets.php:266 +#: www/client/baskets.php:260 msgid "paniers:: vous avez de nouveaux paniers non consultes" msgstr "New basket(s) received" #: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "%b, %d %Y %l:%s %p" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "%d-%m-%Y" - -#: www/client/homeinterpubbask.php:80 msgid "publications:: dernieres publications" msgstr "Last Publications" -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "Unread" - -#: www/client/homeinterpubbask.php:140 +#: www/client/homeinterpubbask.php:68 msgid "publications:: derniere mise a jour" msgstr "Last update" -#: www/client/index.php:152 +#: www/client/index.php:161 msgid "client:: recherche" msgstr "Search" -#: www/client/index.php:159 +#: www/client/index.php:168 msgid "client:: recherche avancee" msgstr "Advanced Search" -#: www/client/index.php:166 +#: www/client/index.php:175 msgid "client:: topics" msgstr "Topics" -#: www/client/index.php:188 -#: www/client/index.php:196 +#: www/client/index.php:197 +#: www/client/index.php:205 msgid "phraseanet::technique:: et" msgstr "And" -#: www/client/index.php:189 -#: www/client/index.php:197 +#: www/client/index.php:198 +#: www/client/index.php:206 msgid "phraseanet::technique:: or" msgstr "Or" -#: www/client/index.php:190 -#: www/client/index.php:198 +#: www/client/index.php:199 +#: www/client/index.php:207 msgid "phraseanet::technique:: except" msgstr "Except" -#: www/client/index.php:210 +#: www/client/index.php:219 msgid "client::recherche: rechercher dans les bases :" msgstr "Search" -#: www/client/index.php:263 +#: www/client/index.php:261 msgid "client::recherche: rechercher dans toutes les bases" msgstr "All databases" -#: www/client/index.php:272 +#: www/client/index.php:268 msgid "phraseanet:: presentation des resultats" msgstr "Display settings" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "phraseanet:: collections" msgstr "Collections" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" msgstr "Clic here to reset all filters" -#: www/client/index.php:342 +#: www/client/index.php:338 msgid "phraseanet:: historique" msgstr "Timeline" -#: www/client/index.php:374 +#: www/client/index.php:368 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "Reset all filters" -#: www/client/index.php:465 +#: www/client/index.php:437 msgid "client::recherche: filter sur" msgstr "Filter" -#: www/client/index.php:468 +#: www/client/index.php:440 msgid "client::recherche: filtrer par dates" msgstr "By Date" -#: www/client/index.php:470 +#: www/client/index.php:442 msgid "client::recherche: filtrer par status" msgstr "By Status" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs" msgstr "By Field" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "All fields" -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 +#: www/include/download_anonymous.php:73 +#: www/include/download_anonymous.php:116 +#: www/include/download_prepare.php:108 +#: www/include/download_prepare.php:151 msgid "phraseanet:: Telechargement de documents" msgstr "Download Manager" -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 +#: www/include/download_anonymous.php:121 +#: www/include/download_prepare.php:153 msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." msgstr "Be Patient, requested documents are being gathered, this operation can take several minutes." -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 +#: www/include/download_anonymous.php:128 +#: www/include/download_prepare.php:158 #, php-format msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" msgstr "Your download is ready. If download does not start within seconds, %s click here %s" -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 +#: www/include/download_anonymous.php:133 +#: www/include/download_prepare.php:161 msgid "telechargement::Le fichier contient les elements suivants" msgstr "Zip file contains the following documents" -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 +#: www/include/download_anonymous.php:137 +#: www/include/download_prepare.php:165 msgid "phrseanet:: base" msgstr "Database" -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 +#: www/include/download_anonymous.php:138 +#: www/include/download_prepare.php:166 msgid "document:: nom" msgstr "Document name" -#: www/include/download_anonymous.php:137 -#: www/include/download_prepare.php:165 +#: www/include/download_anonymous.php:139 +#: www/include/download_prepare.php:167 msgid "phrseanet:: sous definition" msgstr "Document type" -#: www/include/download_anonymous.php:138 -#: www/include/download_prepare.php:166 +#: www/include/download_anonymous.php:140 +#: www/include/download_prepare.php:168 msgid "poids" msgstr "Size" -#: www/include/download_anonymous.php:172 +#: www/include/download_anonymous.php:174 msgid "Votre lien est corrompu" msgstr "Your link is corrupted" @@ -7011,613 +7137,561 @@ msgstr "An internal error occured. Server connection interupted" msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" msgstr "If the problem persists, System Administrator" -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "Delivery Error for %s e-mail(s)" - -#: www/include/updses.php:92 +#: www/include/updses.php:93 msgid "The application is going down for maintenance, please logout." msgstr "You will be disconnected for maintenance, please quit Phraseanet" -#: www/login/account.php:181 +#: www/login/account.php:182 msgid "etes vous sur de vouloir supprimer cette application" msgstr "Confirm delete of this application ?" -#: www/login/account.php:188 +#: www/login/account.php:183 +msgid "oui" +msgstr "Yes" + +#: www/login/account.php:184 +msgid "non" +msgstr "No" + +#: www/login/account.php:189 msgid "Erreur lors du chargement" msgstr "Loading error" -#: www/login/account.php:412 +#: www/login/account.php:413 msgid "Informations" msgstr "Infos" -#: www/login/account.php:413 +#: www/login/account.php:414 msgid "Acces" msgstr "Access" -#: www/login/account.php:414 +#: www/login/account.php:415 msgid "Sessions" msgstr "Sessions" -#: www/login/account.php:416 +#: www/login/account.php:417 msgid "Developpeur" msgstr "Developer" -#: www/login/account.php:431 -#: www/login/index.php:110 +#: www/login/account.php:432 +#: www/login/index.php:112 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "Password update done" -#: www/login/account.php:434 +#: www/login/account.php:435 msgid "login::notification: Changements enregistres" msgstr "Changes saved" -#: www/login/account.php:437 +#: www/login/account.php:438 msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Error when saving modifications" -#: www/login/account.php:440 +#: www/login/account.php:441 msgid "login::notification: Vos demandes ont ete prises en compte" msgstr "Requests are beeing processed" -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 -#: www/login/reset-email.php:44 -#: www/login/reset-email.php:55 -#: www/login/reset-email.php:78 -#: www/login/reset-email.php:89 -#: www/login/reset-email.php:158 -#: www/login/reset-email.php:207 +#: www/login/account.php:456 +#: www/login/forgotpwd.php:100 +#: www/login/reset-email.php:46 +#: www/login/reset-email.php:57 +#: www/login/reset-email.php:80 +#: www/login/reset-email.php:91 +#: www/login/reset-email.php:160 +#: www/login/reset-email.php:209 +#: www/login/reset-password.php:140 msgid "admin::compte-utilisateur changer mon mot de passe" msgstr "Change password" -#: www/login/account.php:497 +#: www/login/account.php:498 msgid "login:: Changer mon adresse email" msgstr "Change my e-mail" -#: www/login/account.php:603 +#: www/login/account.php:604 msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" msgstr "Enable FTP fonction" -#: www/login/account.php:644 +#: www/login/account.php:645 msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" msgstr "Repository prefix name" -#: www/login/account.php:665 +#: www/login/account.php:666 msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" msgstr "Data sent automatically" -#: www/login/account.php:667 +#: www/login/account.php:668 msgid "phraseanet:: original" msgstr "Original" -#: www/login/account.php:669 +#: www/login/account.php:670 msgid "phraseanet:: imagette" msgstr "Thumbnail" -#: www/login/forgotpwd.php:71 -#: www/login/register.php:102 +#: www/login/forgotpwd.php:73 +#: www/login/register.php:101 +#: www/login/reset-password.php:53 msgid "forms::la valeur donnee contient des caracteres invalides" msgstr "contains bad characters" -#: www/login/forgotpwd.php:175 +#: www/login/forgotpwd.php:177 msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." msgstr "To optimize security you must update you password" -#: www/login/forgotpwd.php:176 +#: www/login/forgotpwd.php:178 msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." msgstr "This operation can not be automatized, perform it manually" -#: www/login/forgotpwd.php:184 +#: www/login/forgotpwd.php:186 +#: www/login/reset-password.php:171 msgid "admin::compte-utilisateur nouveau mot de passe" msgstr "New password" -#: www/login/forgotpwd.php:204 +#: www/login/forgotpwd.php:206 +#: www/login/reset-password.php:185 msgid "admin::compte-utilisateur confirmer le mot de passe" msgstr "Confirm password" -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 +#: www/login/forgotpwd.php:225 +#: www/login/forgotpwd.php:287 msgid "login:: Retour a l'accueil" msgstr "Back to homepage" -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 +#: www/login/forgotpwd.php:252 +#: www/login/forgotpwd.php:258 msgid "phraseanet::erreur: Echec du serveur mail" msgstr "Mailserver error" -#: www/login/forgotpwd.php:253 +#: www/login/forgotpwd.php:255 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "Account does not exist" -#: www/login/forgotpwd.php:259 +#: www/login/forgotpwd.php:261 msgid "phraseanet::erreur: l'url n'est plus valide" msgstr "Url does not exist anymore" -#: www/login/forgotpwd.php:268 +#: www/login/forgotpwd.php:270 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "e-mail has been sent" -#: www/login/forgotpwd.php:278 +#: www/login/forgotpwd.php:280 msgid "login:: Entrez votre adresse email" msgstr "Enter your e-mail address" -#: www/login/index.php:68 +#: www/login/index.php:70 msgid "login::erreur: Erreur d'authentification" msgstr "Authentication error" -#: www/login/index.php:71 +#: www/login/index.php:73 msgid "login::erreur: Erreur de captcha" msgstr "To many authentification error. Please use the captcha" -#: www/login/index.php:74 +#: www/login/index.php:76 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "Access denied, you have not confirmed your e-mail adress." -#: www/login/index.php:76 +#: www/login/index.php:78 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "Send me a new confirmation e-mail" -#: www/login/index.php:79 +#: www/login/index.php:81 msgid "login::erreur: Aucune base n'est actuellment accessible" msgstr "You have access to no collection at the moment" -#: www/login/index.php:82 +#: www/login/index.php:84 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "No available connection. Please contact system administrator" -#: www/login/index.php:85 +#: www/login/index.php:87 msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" msgstr "Maintenance in progess, Please try to connect later" -#: www/login/index.php:97 +#: www/login/index.php:99 msgid "login::notification: cette email est deja confirmee" msgstr "This e-mail is already confirmed" -#: www/login/index.php:100 +#: www/login/index.php:102 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "E-mail confirmation sent" -#: www/login/index.php:103 -#: www/login/index.php:106 +#: www/login/index.php:105 +#: www/login/index.php:108 msgid "login::notification: votre email est desormais confirme" msgstr "You e-mail is now confirmed" -#: www/login/index.php:123 +#: www/login/index.php:125 msgid "login::captcha: obtenir une autre captcha" msgstr "Get another Captcha" -#: www/login/index.php:126 +#: www/login/index.php:128 msgid "login::captcha: recopier les mots ci dessous" msgstr "Copy the words below" -#: www/login/index.php:139 +#: www/login/index.php:141 msgid "Accueil" msgstr "Home" -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 +#: www/login/register.php:106 +#: www/login/register.php:290 +#: www/login/reset-email.php:147 +#: www/login/reset-email.php:187 msgid "forms::l'email semble invalide" msgstr "E-Mail seems invalid" -#: www/login/register.php:124 +#: www/login/register.php:123 msgid "forms::un utilisateur utilisant cette adresse email existe deja" msgstr "Email address already registered" -#: www/login/register.php:129 +#: www/login/register.php:128 msgid "forms::un utilisateur utilisant ce login existe deja" msgstr "A user with this login already exists" -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" -msgstr "8 lettering minimum" +#: www/login/register.php:292 +msgid "login invalide (5 caracteres sans accents ni espaces)" +msgstr "Unvalid login ( 5 caracters without accents and \"spaces\")" -#: www/login/register.php:298 +#: www/login/register.php:304 +#: www/login/reset-password.php:92 msgid "forms::le mot de passe est simple" msgstr "Password is too simple" -#: www/login/register.php:375 -#: www/login/register.php:392 +#: www/login/register.php:379 +msgid "5 caracteres minimum" +msgstr "5 caracters minimum" + +#: www/login/register.php:396 +#: www/login/reset-password.php:172 msgid "8 caracteres minimum" msgstr "8 lettering minimum" -#: www/login/register.php:400 +#: www/login/register.php:404 msgid "Resistance du mot de passe" msgstr "Password resistance" -#: www/login/register.php:426 +#: www/login/register.php:430 msgid "admin::compte-utilisateur A propos de la securite des mots de passe" msgstr "About Password security" -#: www/login/reset-email.php:62 +#: www/login/reset-email.php:64 msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" msgstr "E-mail updated" -#: www/login/reset-email.php:63 +#: www/login/reset-email.php:65 msgid "accueil:: retour a l'accueil" msgstr "Back to home page" -#: www/login/reset-email.php:96 +#: www/login/reset-email.php:98 msgid "admin::compte-utilisateur: erreur lors de la mise a jour" msgstr "Error while updating" -#: www/login/reset-email.php:142 +#: www/login/reset-email.php:144 msgid "phraseanet::erreur: echec du serveur de mail" msgstr "Mail-server error" -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 +#: www/login/reset-email.php:150 +#: www/login/reset-email.php:191 msgid "forms::les emails ne correspondent pas" msgstr "E-mails do not match" -#: www/login/reset-email.php:152 +#: www/login/reset-email.php:154 +#: www/login/reset-password.php:68 msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" msgstr "Wrong password" -#: www/login/reset-email.php:217 +#: www/login/reset-email.php:219 msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" msgstr "Confirmation e-mail sent. Please follow received instructions" -#: www/login/reset-email.php:221 +#: www/login/reset-email.php:223 msgid "admin::compte-utilisateur retour a mon compte" msgstr "Back to my account" -#: www/login/reset-email.php:230 +#: www/login/reset-email.php:232 +#: www/login/reset-password.php:150 msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" msgstr "Oops ! An error occured !" -#: www/login/reset-email.php:251 +#: www/login/reset-email.php:253 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "New e-mail address" -#: www/login/reset-email.php:256 +#: www/login/reset-email.php:258 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "Confirm e-mail address" -#: www/login/reset-email.php:265 +#: www/login/reset-email.php:267 msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" msgstr "Why should I give my password to change my e-mail ?" -#: www/login/reset-email.php:266 +#: www/login/reset-email.php:268 msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." msgstr "Your e-mail address will be used if you loose your password. It is important that you are the only one who can change it" -#: www/login/reset-password.php:160 +#: www/login/reset-password.php:162 msgid "admin::compte-utilisateur ancien mot de passe" msgstr "Old password" -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "%d results displayed from a total of %d found" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "%d results" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "%d result(s)" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "%s document(s) selected." - -#: www/prod/chghddocument.php:42 +#: www/prod/chghddocument.php:39 msgid "prod::substitution::erreur : document de substitution invalide" msgstr "Invalid file format" -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 +#: www/prod/chghddocument.php:61 +#: www/prod/chgthumb.php:49 msgid "prod::substitution::document remplace avec succes" msgstr "Document replaced" -#: www/prod/chgstatus.php:130 +#: www/prod/chgstatus.php:131 #, php-format msgid "prod::proprietes : %d documents modifies" msgstr "%d documents modified" -#: www/prod/chgthumb.php:42 +#: www/prod/chgthumb.php:44 msgid "prod::substitution::erreur : impossible d'ajouter ce document" msgstr "Document can't be added" -#: www/prod/docfunction.php:327 +#: www/prod/docfunction.php:337 msgid "prod::proprietes:: status" msgstr "Status" -#: www/prod/docfunction.php:328 +#: www/prod/docfunction.php:338 msgid "prod::proprietes:: type" msgstr "Type" -#: www/prod/docfunction.php:356 +#: www/prod/docfunction.php:366 #, php-format msgid "prod::status: edition de status de %d regroupements" msgstr "Editing Status from %d story (ies)" -#: www/prod/docfunction.php:358 +#: www/prod/docfunction.php:368 #, php-format msgid "prod::status: edition de status de %d documents" msgstr "Editing Status from %d document(s)" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remettre a zero les status non nommes" msgstr "Reset to 0 all unnamed status" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remetter a zero tous les status" msgstr "Reset to 0 all unnamed status" -#: www/prod/docfunction.php:408 +#: www/prod/docfunction.php:418 msgid "prod::status: aucun status n'est defini sur cette base" msgstr "No Status defined for this database" -#: www/prod/docfunction.php:424 +#: www/prod/docfunction.php:434 msgid "prod::status: changer egalement le status des document rattaches aux regroupements" msgstr "Change also Status for documents linked to stories" -#: www/prod/docfunction.php:454 +#: www/prod/docfunction.php:464 #, php-format msgid "prod::status: %d documents ne peuvent avoir une edition des status" msgstr "Status edition impossible for %d documents" -#: www/prod/docfunction.php:461 +#: www/prod/docfunction.php:471 msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" msgstr "You do not have the required permissions to change status on selected documents" -#: www/prod/docfunction.php:496 +#: www/prod/docfunction.php:506 msgid "prod::type: appliquer a tous les documents selectionnes" msgstr "Apply to all selected documents" -#: www/prod/imgfunction.php:137 +#: www/prod/imgfunction.php:139 msgid "prod::tools: regeneration de sous definitions" msgstr "Re-construct subview" -#: www/prod/imgfunction.php:138 +#: www/prod/imgfunction.php:140 msgid "prod::tools: outils image" msgstr "Rotate subview" -#: www/prod/imgfunction.php:143 +#: www/prod/imgfunction.php:145 msgid "prod::tools: substitution HD" msgstr "Substitute document" -#: www/prod/imgfunction.php:148 +#: www/prod/imgfunction.php:150 msgid "prod::tools: substitution de sous definition" msgstr "Substitute subviews" -#: www/prod/imgfunction.php:153 +#: www/prod/imgfunction.php:155 msgid "prod::tools: meta-datas" msgstr "Meta-datas" -#: www/prod/imgfunction.php:163 +#: www/prod/imgfunction.php:165 msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." msgstr "Warning : Some documents have substitued subviews" -#: www/prod/imgfunction.php:164 +#: www/prod/imgfunction.php:166 msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." msgstr "Re-construct custom defined thumbnails" -#: www/prod/imgfunction.php:174 +#: www/prod/imgfunction.php:176 msgid "prod::tools:regeneration: Reconstruire les sous definitions" msgstr "Reconstruct subviews" -#: www/prod/imgfunction.php:177 +#: www/prod/imgfunction.php:179 msgid "prod::tools: option : recreer aucune les sous-definitions" msgstr "Do not re-construct any subviews" -#: www/prod/imgfunction.php:178 +#: www/prod/imgfunction.php:180 msgid "prod::tools: option : recreer toutes les sous-definitions" msgstr "Re-construct all subviews" -#: www/prod/imgfunction.php:192 +#: www/prod/imgfunction.php:194 msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" msgstr "This action only concerns subviews from Image type documents" -#: www/prod/imgfunction.php:193 +#: www/prod/imgfunction.php:195 msgid "prod::tools::image: rotation 90 degres horaire" msgstr "Turn 90° clockwise" -#: www/prod/imgfunction.php:195 +#: www/prod/imgfunction.php:197 msgid "prod::tools::image rotation 90 degres anti-horaires" msgstr "Turn 90° anticlockwise" -#: www/prod/imgfunction.php:219 +#: www/prod/imgfunction.php:221 msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" msgstr "Update original file name after substitution" -#: www/prod/prodFeedBack.php:82 -msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." -msgstr "This is your personnal rss flow, it will inform you about publications" - -#: www/prod/prodFeedBack.php:83 -msgid "publications::Ne le partagez pas, il est strictement confidentiel" -msgstr "Don't share it, it's yours only" - -#: www/prod/prodFeedBack.php:85 -msgid "publications::votre rss personnel" -msgstr "Your own rss" - -#: www/prod/prodFeedBack.php:271 +#: www/prod/prodFeedBack.php:237 msgid "les enregistrements ont ete correctement commandes" msgstr "Documents ordered" -#: www/prod/prodFeedBack.php:275 +#: www/prod/prodFeedBack.php:241 msgid "Erreur lors de la commande des enregistrements" msgstr "Error when ordering documents" -#: www/prod/prodFeedBack.php:306 +#: www/prod/prodFeedBack.php:272 msgid "Les documents ne peuvent etre envoyes par FTP" msgstr "Documents can't be sent by FTP" -#: www/prod/prodFeedBack.php:315 +#: www/prod/prodFeedBack.php:281 msgid "Export enregistre dans la file dattente" msgstr "Export registered in queue file" -#: www/prod/prodFeedBack.php:340 +#: www/prod/prodFeedBack.php:306 msgid "Connection au FTP avec succes" msgstr "succesfull connection to ftp server" -#: www/prod/prodFeedBack.php:344 +#: www/prod/prodFeedBack.php:310 #, php-format msgid "Erreur lors de la connection au FTP : %s" msgstr "Error connecting to FTP : %s" -#: www/prod/share.php:131 +#: www/prod/share.php:132 msgid "Aucune URL disponible" msgstr "No URL avalaible" -#: www/prod/share.php:146 +#: www/prod/share.php:147 msgid "Aucun code disponible" msgstr "No embed code avalaible" #: www/report/ajax_table_content.php:62 #: www/report/ajax_table_content.php:638 -#: www/report/tab.php:63 -#: www/report/tab.php:845 msgid "report:: titre" msgstr "Title" #: www/report/ajax_table_content.php:63 #: www/report/ajax_table_content.php:639 -#: www/report/tab.php:64 -#: www/report/tab.php:846 msgid "report:: poids" msgstr "Size" #: www/report/ajax_table_content.php:66 #: www/report/ajax_table_content.php:689 -#: www/report/tab.php:67 -#: www/report/tab.php:909 msgid "report:: identifiant" msgstr "User id" #: www/report/ajax_table_content.php:67 #: www/report/ajax_table_content.php:690 -#: www/report/tab.php:68 -#: www/report/tab.php:910 msgid "report:: nom" msgstr "Name" #: www/report/ajax_table_content.php:68 #: www/report/ajax_table_content.php:691 -#: www/report/tab.php:69 -#: www/report/tab.php:911 msgid "report:: email" msgstr "Email" #: www/report/ajax_table_content.php:69 #: www/report/ajax_table_content.php:692 -#: www/report/tab.php:70 -#: www/report/tab.php:912 msgid "report:: adresse" msgstr "Address" #: www/report/ajax_table_content.php:70 #: www/report/ajax_table_content.php:693 -#: www/report/tab.php:71 -#: www/report/tab.php:913 msgid "report:: telephone" msgstr "Phone" #: www/report/ajax_table_content.php:74 #: www/report/ajax_table_content.php:367 -#: www/report/tab.php:437 msgid "report:: IP" msgstr "IP" #: www/report/ajax_table_content.php:302 -#: www/report/tab.php:351 msgid "configuration" msgstr "Configuration" #: www/report/ajax_table_content.php:329 -#: www/report/tab.php:379 #, php-format msgid "filtrer les resultats sur la colonne %s" msgstr "Filter results on column %s" #: www/report/ajax_table_content.php:365 #: www/report/ajax_table_content.php:475 -#: www/report/tab.php:435 msgid "phraseanet::utilisateurs" msgstr "Users" #: www/report/ajax_table_content.php:440 -#: www/report/tab.php:559 msgid "report:: plateforme" msgstr "Platform" #: www/report/ajax_table_content.php:448 -#: www/report/tab.php:567 msgid "report:: module" msgstr "Modules" #: www/report/ajax_table_content.php:489 #: www/report/ajax_table_content.php:507 -#: www/report/tab.php:632 -#: www/report/tab.php:664 msgid "report:: nombre de reponses" msgstr "Average hits" #: www/report/ajax_table_content.php:531 -#: www/report/tab.php:715 msgid "report:: total des telechargements" msgstr "Total downloads" #: www/report/ajax_table_content.php:532 -#: www/report/tab.php:716 msgid "report:: preview" msgstr "Subviews" #: www/report/ajax_table_content.php:533 -#: www/report/tab.php:717 msgid "report:: document original" msgstr "Original name %s" #: www/report/ajax_table_content.php:548 -#: www/report/tab.php:745 msgid "report:: nombre de documents" msgstr "Occurences" #: www/report/ajax_table_content.php:549 -#: www/report/tab.php:746 msgid "report:: poids des documents" msgstr "size of documents" #: www/report/ajax_table_content.php:550 -#: www/report/tab.php:747 msgid "report:: nombre de preview" msgstr "number of preview(s)" #: www/report/ajax_table_content.php:551 -#: www/report/tab.php:748 msgid "report:: poids des previews" msgstr "Weight of previews" #: www/report/ajax_table_content.php:589 -#: www/report/tab.php:796 msgid "report:: historique des connexions" msgstr "Connections" #: www/report/ajax_table_content.php:596 #: www/report/ajax_table_content.php:681 -#: www/report/tab.php:803 -#: www/report/tab.php:892 msgid "report:: historique des telechargements" msgstr "Downloads" #: www/report/ajax_table_content.php:602 -#: www/report/tab.php:809 msgid "report:: historique des questions" msgstr "Query log" #: www/report/ajax_table_content.php:712 -#: www/report/tab.php:941 msgid "report::version " msgstr "Version " @@ -7637,277 +7711,277 @@ msgstr "Country" msgid "report::societe" msgstr "Company" -#: www/thesaurus2/accept.php:46 +#: www/thesaurus2/accept.php:48 msgid "thesaurus:: accepter..." msgstr "Accept" -#: www/thesaurus2/accept.php:165 +#: www/thesaurus2/accept.php:167 msgid "thesaurus:: removed_src" msgstr "removed_src" -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 +#: www/thesaurus2/accept.php:170 +#: www/thesaurus2/accept.php:228 msgid "thesaurus:: refresh" msgstr "Refresh" -#: www/thesaurus2/accept.php:223 +#: www/thesaurus2/accept.php:225 msgid "thesaurus:: removed tgt" msgstr "remove_tgt" -#: www/thesaurus2/accept.php:259 +#: www/thesaurus2/accept.php:261 msgid "thesaurus:: Accepter le terme comme" msgstr "Accept term as :" -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 +#: www/thesaurus2/accept.php:263 +#: www/thesaurus2/accept.php:273 msgid "thesaurus:: comme terme specifique" msgstr "Specific term" -#: www/thesaurus2/accept.php:265 +#: www/thesaurus2/accept.php:267 #, php-format msgid "thesaurus:: comme synonyme de %s" msgstr "as a synonym of %s" -#: www/thesaurus2/accept.php:270 +#: www/thesaurus2/accept.php:272 msgid "thesaurus:: Accepter la branche comme" msgstr "Accept branch as" -#: www/thesaurus2/accept.php:294 +#: www/thesaurus2/accept.php:296 #, php-format msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" msgstr "A candidat from field %s can't be accepted for the branch" -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 +#: www/thesaurus2/export_text.php:53 +#: www/thesaurus2/export_text_dlg.php:44 +#: www/thesaurus2/export_text_dlg.php:148 msgid "thesaurus:: export au format texte" msgstr "Text" -#: www/thesaurus2/export_text_dlg.php:137 +#: www/thesaurus2/export_text_dlg.php:139 msgid "thesaurus:: options d'export : " msgstr "Export " -#: www/thesaurus2/export_text_dlg.php:138 +#: www/thesaurus2/export_text_dlg.php:140 msgid "thesaurus:: example" msgstr "example" -#: www/thesaurus2/export_text_dlg.php:151 +#: www/thesaurus2/export_text_dlg.php:153 msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" msgstr "Synonym(s) on same line" -#: www/thesaurus2/export_text_dlg.php:155 +#: www/thesaurus2/export_text_dlg.php:157 msgid "thesaurus:: exporter avec une ligne par synonyme" msgstr "One line per synonym" -#: www/thesaurus2/export_text_dlg.php:159 +#: www/thesaurus2/export_text_dlg.php:161 msgid "thesaurus:: export : numeroter les lignes " msgstr "Print line numbers " -#: www/thesaurus2/export_text_dlg.php:163 +#: www/thesaurus2/export_text_dlg.php:165 msgid "thesaurus:: export : inclure la langue" msgstr "Include language" -#: www/thesaurus2/export_text_dlg.php:167 +#: www/thesaurus2/export_text_dlg.php:169 msgid "thesaurus:: export : inclure les hits" msgstr "Include hits" -#: www/thesaurus2/export_text_dlg.php:173 +#: www/thesaurus2/export_text_dlg.php:175 msgid "thesaurus:: export : format topics" msgstr "Topics" -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 +#: www/thesaurus2/export_topics.php:100 +#: www/thesaurus2/export_topics_dlg.php:45 msgid "thesaurus:: export en topics" msgstr "Topics" -#: www/thesaurus2/export_topics.php:159 +#: www/thesaurus2/export_topics.php:161 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "File generated : %s" -#: www/thesaurus2/export_topics.php:178 +#: www/thesaurus2/export_topics.php:180 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s file(s) generated" -#: www/thesaurus2/export_topics.php:180 +#: www/thesaurus2/export_topics.php:182 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Error during file registration" -#: www/thesaurus2/export_topics_dlg.php:117 +#: www/thesaurus2/export_topics_dlg.php:119 msgid "thesaurus:: exporter" msgstr "Export" -#: www/thesaurus2/export_topics_dlg.php:120 +#: www/thesaurus2/export_topics_dlg.php:122 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "Export for all languages" -#: www/thesaurus2/export_topics_dlg.php:128 +#: www/thesaurus2/export_topics_dlg.php:130 msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" msgstr "Display for the current language" -#: www/thesaurus2/export_topics_dlg.php:135 +#: www/thesaurus2/export_topics_dlg.php:137 msgid "phraseanet:: tri" msgstr "Sort" -#: www/thesaurus2/export_topics_dlg.php:145 +#: www/thesaurus2/export_topics_dlg.php:147 msgid "thesaurus:: recherche" msgstr "Search" -#: www/thesaurus2/export_topics_dlg.php:148 +#: www/thesaurus2/export_topics_dlg.php:150 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Thesaurus *:\"query\"" -#: www/thesaurus2/export_topics_dlg.php:152 +#: www/thesaurus2/export_topics_dlg.php:154 msgid "thesaurus:: recherche fulltext" msgstr "Fulltext" -#: www/thesaurus2/export_topics_dlg.php:156 +#: www/thesaurus2/export_topics_dlg.php:158 msgid "thesaurus:: question complete (avec operateurs)" msgstr "Full question (with operators)" -#: www/thesaurus2/export_topics_dlg.php:163 +#: www/thesaurus2/export_topics_dlg.php:165 msgid "thesaurus:: presentation" msgstr "Display options" -#: www/thesaurus2/export_topics_dlg.php:166 +#: www/thesaurus2/export_topics_dlg.php:168 msgid "thesaurus:: presentation : branches refermables" msgstr "Reproduce current view (with navigation)" -#: www/thesaurus2/export_topics_dlg.php:170 +#: www/thesaurus2/export_topics_dlg.php:172 msgid "thesaurus:: presentation : branche ouvertes" msgstr "Reproduce current view (without navigation)" -#: www/thesaurus2/export_topics_dlg.php:174 +#: www/thesaurus2/export_topics_dlg.php:176 msgid "thesaurus:: tout deployer - refermable" msgstr "All deployed ( with navigation)" -#: www/thesaurus2/export_topics_dlg.php:178 +#: www/thesaurus2/export_topics_dlg.php:180 msgid "thesaurus:: tout deployer - statique" msgstr "All deployed (static)" -#: www/thesaurus2/export_topics_dlg.php:182 +#: www/thesaurus2/export_topics_dlg.php:184 msgid "thesaurus:: tout fermer" msgstr "Close all (with navigation)" -#: www/thesaurus2/import.php:158 +#: www/thesaurus2/import.php:159 #, php-format msgid "over-indent at line %s" msgstr "Over-indent at line %s" -#: www/thesaurus2/import.php:166 +#: www/thesaurus2/import.php:167 #, php-format msgid "bad encoding at line %s" msgstr "Bad encoding at line %s" -#: www/thesaurus2/import.php:173 +#: www/thesaurus2/import.php:174 #, php-format msgid "bad character at line %s" msgstr "Bad character at line %s" -#: www/thesaurus2/import_dlg.php:42 +#: www/thesaurus2/import_dlg.php:44 msgid "thesaurus:: Importer" msgstr "Import" -#: www/thesaurus2/import_dlg.php:85 +#: www/thesaurus2/import_dlg.php:87 msgid "thesaurus:: coller ici la liste des termes a importer" msgstr "Paste here list of terms to import" -#: www/thesaurus2/import_dlg.php:86 +#: www/thesaurus2/import_dlg.php:88 msgid "thesaurus:: langue par default" msgstr "Default language" -#: www/thesaurus2/import_dlg.php:93 +#: www/thesaurus2/import_dlg.php:95 msgid "Fichier ASCII tabule" msgstr "Tabulated ASCII file" -#: www/thesaurus2/import_dlg.php:110 +#: www/thesaurus2/import_dlg.php:112 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "Delete existing link(s) between thesaurus branch(s) and field(s)" -#: www/thesaurus2/import_dlg.php:113 +#: www/thesaurus2/import_dlg.php:115 msgid "thesaurus:: reindexer la base apres l'import" msgstr "Re-index after import" -#: www/thesaurus2/index.php:96 +#: www/thesaurus2/index.php:98 msgid "thesaurus:: Editer le thesaurus" msgstr "Edit thesaurus" -#: www/thesaurus2/index.php:118 +#: www/thesaurus2/index.php:120 msgid "phraseanet:: choisir" msgstr "Choose" -#: www/thesaurus2/index.php:144 +#: www/thesaurus2/index.php:146 msgid "thesaurus:: langue pivot" msgstr "Select edit language" -#: www/thesaurus2/index.php:161 +#: www/thesaurus2/index.php:163 msgid "thesaurus:: Vous n'avez acces a aucune base" msgstr "No Database access" -#: www/thesaurus2/linkfield.php:32 +#: www/thesaurus2/linkfield.php:34 msgid "thesaurus:: Lier la branche de thesaurus au champ" msgstr "Link thesaurus branch to field" -#: www/thesaurus2/linkfield.php:112 +#: www/thesaurus2/linkfield.php:114 #, php-format msgid "thesaurus:: Lier la branche de thesaurus au champ %s" msgstr "Link thesaurus branch to field %s" -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 +#: www/thesaurus2/linkfield2.php:34 +#: www/thesaurus2/linkfield3.php:35 msgid "thesaurus:: Lier la branche de thesaurus" msgstr "Link branch ?" -#: www/thesaurus2/linkfield2.php:116 +#: www/thesaurus2/linkfield2.php:118 #, php-format msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " msgstr "This fields has been modified; previous branch was : %s " -#: www/thesaurus2/linkfield2.php:145 +#: www/thesaurus2/linkfield2.php:147 msgid "thesaurus:: nouvelle branche" msgstr "New branch" -#: www/thesaurus2/linkfield2.php:150 +#: www/thesaurus2/linkfield2.php:152 msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" msgstr "This field is no longer linked to thesaurus, indexed terms and candidats will be deleted" -#: www/thesaurus2/linkfield2.php:158 +#: www/thesaurus2/linkfield2.php:160 msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" msgstr "This field must be linked to thesaurus. Database re indexation needed" -#: www/thesaurus2/linkfield2.php:162 +#: www/thesaurus2/linkfield2.php:164 msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" msgstr "Link to thesaurus must be modified , database re indextion needed" -#: www/thesaurus2/linkfield2.php:177 +#: www/thesaurus2/linkfield2.php:179 msgid "thesaurus:: reindexation necessaire" msgstr "Re indexation needed" -#: www/thesaurus2/linkfield2.php:181 +#: www/thesaurus2/linkfield2.php:183 msgid "thesaurus:: pas de reindexation" msgstr "No re-index" -#: www/thesaurus2/linkfield3.php:78 +#: www/thesaurus2/linkfield3.php:80 #, php-format msgid "thesaurus:: suppression du lien du champ %s" msgstr "Delete link to field %s" -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 +#: www/thesaurus2/linkfield3.php:88 +#: www/thesaurus2/linkfield3.php:104 #, php-format msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" msgstr "Delete candidats branch linked to field %s" -#: www/thesaurus2/linkfield3.php:112 +#: www/thesaurus2/linkfield3.php:114 msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." msgstr "Recording modified list of candidats" -#: www/thesaurus2/linkfield3.php:124 +#: www/thesaurus2/linkfield3.php:126 msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" msgstr "Delete indexes from thesaurus for field" -#: www/thesaurus2/linkfield3.php:135 +#: www/thesaurus2/linkfield3.php:137 msgid "thesaurus:: reindexer tous les enregistrements" msgstr "Re-index all records" @@ -7915,260 +7989,262 @@ msgstr "Re-index all records" msgid "thesaurus:: corbeille" msgstr "Stock" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: Nouveau terme" msgstr "New term" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: terme" msgstr "Term" -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newsy_dlg.php:39 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau synonyme" msgstr "New Synonym" -#: www/thesaurus2/newsy_dlg.php:37 +#: www/thesaurus2/newsy_dlg.php:39 msgid "thesaurus:: synonyme" msgstr "Synonym" -#: www/thesaurus2/newsy_dlg.php:91 +#: www/thesaurus2/newsy_dlg.php:93 msgid "thesaurus:: contexte" msgstr "Context" -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau terme specifique" msgstr "New specific term" -#: www/thesaurus2/newterm.php:72 +#: www/thesaurus2/newterm.php:74 #, php-format msgid "thesaurus:: le terme %s" msgstr "Term %s" -#: www/thesaurus2/newterm.php:74 +#: www/thesaurus2/newterm.php:76 #, php-format msgid "thesaurus:: avec contexte %s" msgstr "contexted by %s" -#: www/thesaurus2/newterm.php:76 +#: www/thesaurus2/newterm.php:78 msgid "thesaurus:: sans contexte" msgstr "Without context" -#: www/thesaurus2/newterm.php:104 +#: www/thesaurus2/newterm.php:106 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "is already a candidat from valid field " -#: www/thesaurus2/newterm.php:106 +#: www/thesaurus2/newterm.php:108 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "Is already a candidat from valid fields " -#: www/thesaurus2/newterm.php:146 +#: www/thesaurus2/newterm.php:148 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Select origin to accept" -#: www/thesaurus2/newterm.php:162 #: www/thesaurus2/newterm.php:164 +#: www/thesaurus2/newterm.php:166 msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" msgstr "is a candidat from fields but can't be accepted for this branch" -#: www/thesaurus2/newterm.php:169 +#: www/thesaurus2/newterm.php:171 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "is not a candidat" -#: www/thesaurus2/newterm.php:173 +#: www/thesaurus2/newterm.php:175 msgid "thesaurus:: attention :" msgstr "Warning :" -#: www/thesaurus2/newterm.php:184 +#: www/thesaurus2/newterm.php:186 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Add term without re indexetation" -#: www/thesaurus2/newterm.php:186 +#: www/thesaurus2/newterm.php:188 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Add term and re index" -#: www/thesaurus2/properties.php:47 +#: www/thesaurus2/properties.php:49 msgid "thesaurus:: Proprietes" msgstr "Properties" -#: www/thesaurus2/properties.php:92 +#: www/thesaurus2/properties.php:94 +#: www/thesaurus2/thesaurus.php:230 +#: www/thesaurus2/thesaurus.php:255 msgid "thesaurus::menu: supprimer" msgstr "Delete" -#: www/thesaurus2/properties.php:93 +#: www/thesaurus2/properties.php:95 msgid "thesaurus:: remplacer" msgstr "Replace" -#: www/thesaurus2/properties.php:120 +#: www/thesaurus2/properties.php:122 #, php-format msgid "thesaurus:: %s reponses retournees" msgstr "%s result(s)" -#: www/thesaurus2/properties.php:147 +#: www/thesaurus2/properties.php:149 msgid "thesaurus:: synonymes" msgstr "Synonyms" -#: www/thesaurus2/properties.php:148 +#: www/thesaurus2/properties.php:150 msgid "thesaurus:: hits" msgstr "hits" -#: www/thesaurus2/properties.php:149 +#: www/thesaurus2/properties.php:151 msgid "thesaurus:: ids" msgstr "ids" -#: www/thesaurus2/properties.php:321 +#: www/thesaurus2/properties.php:323 #, php-format msgid "thesaurus:: Confirmer la suppression du terme %s" msgstr "Confirm term \"%s\" delete" -#: www/thesaurus2/search.php:77 +#: www/thesaurus2/search.php:79 msgid "thesaurus:: le terme" msgstr "term" -#: www/thesaurus2/search.php:78 +#: www/thesaurus2/search.php:80 msgid "thesaurus:: est egal a " msgstr "equals " -#: www/thesaurus2/search.php:82 +#: www/thesaurus2/search.php:84 msgid "thesaurus:: commence par" msgstr "Starts with" -#: www/thesaurus2/search.php:86 +#: www/thesaurus2/search.php:88 msgid "thesaurus:: contient" msgstr "contains" -#: www/thesaurus2/search.php:91 +#: www/thesaurus2/search.php:93 msgid "thesaurus:: fini par" msgstr "ends with" -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 +#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:251 msgid "thesaurus::menu: proprietes" msgstr "Properties" -#: www/thesaurus2/thesaurus.php:225 +#: www/thesaurus2/thesaurus.php:227 msgid "thesaurus::menu: refuser" msgstr "Reject" -#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:228 msgid "thesaurus::menu: accepter" msgstr "Allow" -#: www/thesaurus2/thesaurus.php:229 +#: www/thesaurus2/thesaurus.php:231 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "Delete candidats with no hits" -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 +#: www/thesaurus2/thesaurus.php:233 +#: www/thesaurus2/thesaurus.php:254 msgid "thesaurus::menu: remplacer" msgstr "Replace" -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 +#: www/thesaurus2/thesaurus.php:237 +#: www/thesaurus2/thesaurus.php:257 msgid "thesaurus::menu: chercher" msgstr "Search" -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 +#: www/thesaurus2/thesaurus.php:238 +#: www/thesaurus2/thesaurus.php:258 msgid "thesaurus::menu: exporter" msgstr "Export" -#: www/thesaurus2/thesaurus.php:239 +#: www/thesaurus2/thesaurus.php:241 msgid "thesaurus::menu: relire les candidats" msgstr "Review candidats" -#: www/thesaurus2/thesaurus.php:245 +#: www/thesaurus2/thesaurus.php:247 msgid "thesaurus::menu: importer" msgstr "Import" -#: www/thesaurus2/thesaurus.php:250 +#: www/thesaurus2/thesaurus.php:252 msgid "thesaurus::menu: Nouveau terme" msgstr "New term" -#: www/thesaurus2/thesaurus.php:251 +#: www/thesaurus2/thesaurus.php:253 msgid "thesaurus::menu: Nouveau synonyme" msgstr "New synonym" -#: www/thesaurus2/thesaurus.php:257 +#: www/thesaurus2/thesaurus.php:259 msgid "thesaurus::menu: export topics" msgstr "Export as topics" -#: www/thesaurus2/thesaurus.php:259 +#: www/thesaurus2/thesaurus.php:261 msgid "thesaurus::menu: lier au champ" msgstr "Link to fields" -#: www/thesaurus2/thesaurus.php:294 +#: www/thesaurus2/thesaurus.php:296 msgid "thesaurus:: onglet stock" msgstr "Candidats" -#: www/thesaurus2/thesaurus.php:299 +#: www/thesaurus2/thesaurus.php:301 msgid "thesaurus:: afficher les termes refuses" msgstr "Display rejected terms" -#: www/thesaurus2/thesaurus.php:313 +#: www/thesaurus2/thesaurus.php:315 msgid "thesaurus:: onglet thesaurus" msgstr "Thesaurus" -#: www/thesaurus2/thesaurus.php:513 +#: www/thesaurus2/thesaurus.php:515 msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "Delete branch : (concerned terms will be displayed as candidats on futur indexation" -#: www/thesaurus2/thesaurus.php:515 +#: www/thesaurus2/thesaurus.php:517 msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "This branch has hits,confirm delete ? (Concerned terms will move back to candidats)" -#: www/thesaurus2/thesaurus.php:557 +#: www/thesaurus2/thesaurus.php:559 msgid "thesaurus:: Tous les termes ont des hits" msgstr "All terms have hits" -#: www/thesaurus2/thesaurus.php:563 +#: www/thesaurus2/thesaurus.php:565 msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" msgstr "Terms from this branch have no hits : delete Terms ?" -#: www/thesaurus2/thesaurus.php:652 +#: www/thesaurus2/thesaurus.php:654 msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" msgstr "Delete all candidats et re index all documents with thesaurus" -#: www/thesaurus2/thesaurus.php:1096 +#: www/thesaurus2/thesaurus.php:1098 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Move Terms to stock" -#: www/upload/index.php:75 +#: www/upload/index.php:76 msgid "upload:You do not have right to upload datas" msgstr "You do not have the required permissions to upload documents" -#: www/upload/index.php:186 +#: www/upload/index.php:187 msgid "Selectionner une action" msgstr "Select an action" -#: www/upload/index.php:187 +#: www/upload/index.php:188 msgid "Aucune enregistrement selectionne" msgstr "No document selected" -#: www/upload/index.php:188 +#: www/upload/index.php:189 msgid "Transfert en court, vous devez attendre la fin du transfert" msgstr "Upload in progress, wait until current upload ends" -#: www/upload/index.php:189 +#: www/upload/index.php:190 msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" msgstr "Queue file is not empty, do you to delete files in queue ?" -#: www/upload/index.php:241 +#: www/upload/index.php:242 #, php-format msgid "upload:: %d fichiers uploades" msgstr "%d files uploaded" -#: www/upload/index.php:243 +#: www/upload/index.php:244 #: www/upload/index.php:414 #, php-format msgid "upload:: %d fichier uploade" msgstr "%d file uploaded" -#: www/upload/index.php:247 +#: www/upload/index.php:248 msgid "Certains elements uploades sont passes en quarantaine" msgstr "Some uploaded documents have been sent to quarantine" -#: www/upload/index.php:276 +#: www/upload/index.php:277 #, php-format msgid "upload :: choisir les fichiers a uploader (max : %d MB)" msgstr "Select files to add (max size : %d Mb)" @@ -8241,37 +8317,37 @@ msgstr "Delet blocked documents" msgid "Supprimer precedentes propositions a la substitution" msgstr "Delete previous candidats to substitution" -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 +#: www/upload/upload.php:45 +#: www/upload/upload.php:54 msgid "Internal Server Error" msgstr "Internal server error" -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 +#: www/upload/upload.php:140 +#: www/upload/upload.php:163 msgid "erreur lors de l'archivage" msgstr "Error while adding" -#: www/upload/upload.php:144 +#: www/upload/upload.php:143 msgid "Document ajoute a la quarantaine" msgstr "Documents added to quarantine" -#: www/upload/upload.php:147 +#: www/upload/upload.php:146 msgid "Fichier uploade, en attente" msgstr "Pending files..." -#: www/upload/upload.php:187 +#: www/upload/upload.php:186 msgid "Fichier uploade !" msgstr "FIle Uploaded" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:402 msgid "Erreur lors de l'enregistrement des donnees" msgstr "Error when saving datas" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:475 msgid "Erreur lors de la mise a jour des donnes " msgstr "Error when updating datas " -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:599 msgid "Envoie avec succes" msgstr "Successful delivery" @@ -8281,37 +8357,41 @@ msgstr "You are not the owner of this feed, you can not edit it" #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:104 msgid "Basket created" -msgstr "" +msgstr "Basket created" #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:138 msgid "Basket has been deleted" -msgstr "" +msgstr "Basket has been deleted" #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:180 msgid "Record removed from basket" -msgstr "" +msgstr "Record removed from basket" #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:217 msgid "Basket has been updated" -msgstr "" +msgstr "Basket has been updated" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:311 +msgid "Basket updated" +msgstr "Basket updated" + +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:346 msgid "Basket has been archived" -msgstr "" +msgstr "Basket has been archived" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:350 msgid "Basket has been unarchived" -msgstr "" +msgstr "Basket has been unarchived" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:442 #, php-format msgid "%d records added" -msgstr "" +msgstr "%d records added" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:504 #, php-format msgid "%d records moved" -msgstr "" +msgstr "%d records moved" #: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:237 #: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:308 @@ -8334,7 +8414,7 @@ msgstr "%d document pending" #: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:64 msgid "Vocabulary not found" -msgstr "" +msgstr "Vocabulary not found" #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:164 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:207 @@ -8343,7 +8423,22 @@ msgstr "Feed entry not found" #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:196 msgid "Action Forbidden : You are not the publisher" -msgstr "" +msgstr "Action Forbidden : You are not the publisher" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:292 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:316 +msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." +msgstr "This is your personnal rss flow, it will inform you about publications" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:293 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:317 +msgid "publications::Ne le partagez pas, il est strictement confidentiel" +msgstr "Don't share it, it's yours only" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:319 +msgid "publications::votre rss personnel" +msgstr "Your own rss" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 msgid "prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." @@ -8451,8 +8546,8 @@ msgid "panier:: vous ne pouvez pas supprimer un panier public" msgstr "You do not have the required permissions to delete public basket" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:81 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" -msgstr "You can't select more than 400 records" +msgid "Vous ne pouvez pas selectionner plus de 800 enregistrements" +msgstr "You Can not select more then 800 records" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 msgid "Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" @@ -8484,257 +8579,276 @@ msgstr "No document selected" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 msgid "Are you sure you want to delete this list ?" -msgstr "" +msgstr "Are you sure you want to delete this list ?" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 msgid "New list name ?" -msgstr "" +msgstr "New list name ?" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 msgid "List name can not be empty" -msgstr "" +msgstr "List name can not be emptied" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 msgid "Message" msgstr "Message" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +msgid "Time for feedback (days)" +msgstr "Time for feedback (in days)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +msgid "Accuse de reception" +msgstr "Acknowledge receipt" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#, php-format +msgid "%d fields have been updated" +msgstr "%d fields have been updated" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "No users selected" -msgstr "" +msgstr "No users selected" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:308 msgid "Unable to send the documents" -msgstr "" +msgstr "Unable to send the documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:190 #, php-format msgid "Push from %s" -msgstr "" +msgstr "Push from %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:199 msgid "No receivers specified" -msgstr "" +msgstr "No receivers specified" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:204 msgid "No elements to push" -msgstr "" +msgstr "No documents to push" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:218 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:434 #, php-format msgid "Unknown user %d" -msgstr "" +msgstr "Unknown user %d" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:281 #, php-format msgid "%1$d records have been sent to %2$d users" -msgstr "" +msgstr "%1$d records have been sent to %2$d users" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:331 #, php-format msgid "Validation from %s" -msgstr "" +msgstr "Validation from %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:340 msgid "No participants specified" -msgstr "" +msgstr "No participants specified" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:345 msgid "No elements to validate" -msgstr "" +msgstr "No documents to validate" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:425 #, php-format msgid "Missing mandatory participant parameter %s" -msgstr "" +msgstr "Missing mandatory participant parameter %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:515 #, php-format msgid "%1$d records have been sent for validation to %2$d users" -msgstr "" +msgstr "%1$d records have been sent for validation to %2$d users" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:601 msgid "First name is required" -msgstr "" +msgstr "First name is required" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:604 msgid "Last name is required" -msgstr "" +msgstr "Last name is required" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:607 msgid "Email is required" -msgstr "" +msgstr "Email is required" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:610 msgid "Email is invalid" -msgstr "" +msgstr "Email is invalid" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:629 msgid "User already exists" -msgstr "" +msgstr "User already exists" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:656 msgid "User successfully created" -msgstr "" +msgstr "User successfully created" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:662 msgid "Error while creating user" -msgstr "" +msgstr "Error while creating user" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:153 +#, php-format +msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" +msgstr "%d results displayed from a total of %d found" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:157 +#, php-format +msgid "reponses:: %d Resultats" +msgstr "%d results" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %d reponses" +msgstr "%d result(s)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %s documents selectionnes" +msgstr "%s document(s) selected." + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:100 msgid "Story created" -msgstr "" +msgstr "Story created" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:209 msgid "Record removed from story" -msgstr "" +msgstr "Record removed from story" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:279 +msgid "You can not edit this story" +msgstr "You can not edit this story" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:298 +msgid "Story updated" +msgstr "Story updated" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:40 +msgid "Error while saving preference" +msgstr "Error while saving preferences" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:53 +msgid "Preference saved !" +msgstr "Preferences saved !" #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 #, php-format msgid "Unable to create list %s" -msgstr "" +msgstr "Unable to create list %s" #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:152 #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:272 msgid "List name is required" -msgstr "" +msgstr "List name is required" #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:173 #, php-format msgid "List %s has been created" -msgstr "" +msgstr "List %s has been created" #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:263 msgid "Unable to update list" -msgstr "" +msgstr "Unable to update list" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:293 msgid "List has been updated" -msgstr "" +msgstr "List has been updated" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:339 #, php-format msgid "List has been deleted" -msgstr "" +msgstr "List has been deleted" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:354 #, php-format msgid "Unable to delete list" -msgstr "" +msgstr "Unable to delete list" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:395 msgid "Entry removed from list" -msgstr "" +msgstr "Entry removed from list" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:410 msgid "Unable to remove entry from list " -msgstr "" +msgstr "Unable to remove entry from list " -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:471 #, php-format msgid "%d Users added to list" -msgstr "" +msgstr "%d Users added to list" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:479 #, php-format msgid "%d User added to list" -msgstr "" +msgstr "%d User added to list" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:496 msgid "Unable to add usr to list" -msgstr "" +msgstr "Unable to add user to list" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:597 msgid "List shared to user" -msgstr "" +msgstr "List shared to user" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:612 msgid "Unable to share the list with the usr" -msgstr "" +msgstr "Unable to share the list with this user" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:650 msgid "Owner removed from list" -msgstr "" +msgstr "Owner removed from list" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:664 msgid "Unable to remove usr from list" -msgstr "" +msgstr "Unable to remove user from list" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:177 #, php-format msgid "%d Story attached to the WorkZone" -msgstr "" +msgstr "%d Story attached to the WorkZone" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:184 #, php-format msgid "%d Stories attached to the WorkZone" -msgstr "" +msgstr "%d Stories attached to the WorkZone" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:194 #, php-format msgid "%1$d Story attached to the WorkZone, %2$d already attached" -msgstr "" +msgstr "%1$d Story attached to the WorkZone, %2$d already attached" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:202 #, php-format msgid "%1$d Stories attached to the WorkZone, %2$d already attached" -msgstr "" +msgstr "%1$d Stories attached to the WorkZone, %2$d already attached" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:253 msgid "Story detached from the WorkZone" -msgstr "" +msgstr "Story detached from the WorkZone" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:138 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "It is not recommended to install Phraseanet without HTTPS support" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:187 msgid "Appbox is unreachable" msgstr "Appbox can't be reached" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:199 msgid "Databox is unreachable" msgstr "Databox can't be reached" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:351 #, php-format msgid "an error occured : %s" msgstr "an error occured : %s" -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "Can't Write in folder %s" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "YYYY/MM/DD HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "YYYY/MM/DD" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "yyyy/mm/dd" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "hh:mm:ss" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:570 msgid "Email addess is not valid" -msgstr "" +msgstr "Email addess is not valid" #: lib/Alchemy/Phrasea/Helper/User/Manage.php:165 msgid "Invalid mail address" @@ -8764,36 +8878,121 @@ msgstr "Feedback requested from %s and sent to %d other users" msgid "Processus de validation recu de %s" msgstr "Feedback requested from %s" -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 +#: lib/Doctrine/Repositories/BasketElementRepository.php:46 msgid "Element is not found" -msgstr "" +msgstr "Document can not be found" -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" -msgstr "" - -#: lib/Doctrine/Repositories/BasketRepository.php:103 +#: lib/Doctrine/Repositories/BasketRepository.php:171 msgid "Basket is not found" -msgstr "" +msgstr "Basket can not be found" -#: lib/Doctrine/Repositories/BasketRepository.php:108 +#: lib/Doctrine/Repositories/BasketRepository.php:193 msgid "You have not access to this basket" -msgstr "" +msgstr "You have not access to this basket" #: lib/Doctrine/Repositories/UsrListOwnerRepository.php:30 #: lib/Doctrine/Repositories/UsrListOwnerRepository.php:67 msgid "Owner is not found" -msgstr "" +msgstr "Owner can not be found" #: lib/Doctrine/Repositories/UsrListOwnerRepository.php:35 msgid "Owner and list mismatch" -msgstr "" +msgstr "Owner and list mismatch" #: lib/Doctrine/Repositories/UsrListRepository.php:51 msgid "List is not found" -msgstr "" +msgstr "List is not found" #: lib/Doctrine/Repositories/UsrListRepository.php:56 msgid "You have not access to this list" -msgstr "" +msgstr "You have not access to this list" +#~ msgid "phraseanet::technique::datetime-edit-format" +#~ msgstr "YYYY/MM/DD HH:NN:SS" + +#~ msgid "phraseanet::technique::date-edit-format" +#~ msgstr "YYYY/MM/DD" + +#~ msgid "phraseanet::technique::date-edit-explain" +#~ msgstr "yyyy/mm/dd" + +#~ msgid "phraseanet::technique::time-edit-format" +#~ msgstr "HH:NN:SS" + +#~ msgid "phraseanet::technique::time-edit-explain" +#~ msgstr "hh:mm:ss" + +#~ msgid "Story description" +#~ msgstr "Story description" + +#~ msgid "Or" +#~ msgstr "Or" + +#~ msgid "admin::Le serveur memcached a ete flushe" +#~ msgstr "No Memcached server linked" + +#~ msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" +#~ msgstr "Delivery Error for %s e-mail(s)" + +#~ msgid "Impossible d'ecrire dans le fichier %s" +#~ msgstr "Unable to write in file %s" + +#~ msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" +#~ msgstr "memcached server unavailable, you should disable cache" + +#~ msgid "GV::section:: Serveurs de cache" +#~ msgstr "Cache server" + +#~ msgid "reglages:: Utiliser un serveur de cache" +#~ msgstr "Use a cache server" + +#~ msgid "setup:: Hote du Serveur de cache" +#~ msgstr "Cache server host" + +#~ msgid "reglages:: port du serveur de cache" +#~ msgstr "Chache server port" + +#~ msgid "Impossible d'ecrire dans le dossier %s" +#~ msgstr "Can't Write in folder %s" + +#~ msgid "Impossible d'effacer le fichier %s" +#~ msgstr "Unable to delete file %s" + +#~ msgid "recherche" +#~ msgstr "Search" + +#~ msgid "Chercher tous les mots" +#~ msgstr "all these words" + +#~ msgid "Cette expression exacte" +#~ msgstr "this exact wording or phrase" + +#~ msgid "Au moins un des mots suivants" +#~ msgstr "one or more of these words" + +#~ msgid "Aucun des mots suivants" +#~ msgstr "None of these words" + +#~ msgid "recherche :: Bases" +#~ msgstr "Databases" + +#~ msgid "recherche :: Historique" +#~ msgstr "History" + +#~ msgid "recherche :: Themes" +#~ msgstr "Topics" + +#~ msgid "Expire dans %expiration_date%" +#~ msgstr "Expire in %expiration_date%" + +#~ msgid "%application_name% wants to acces to your data on %home_title%" +#~ msgstr "%application_name% wants to acces to your data on %home_title%" + +#~ msgid "phraseanet::technique::datetime" +#~ msgstr "%b, %d %Y %l:%s %p" + +#~ msgid "phraseanet::technique::date" +#~ msgstr "%d-%m-%Y" + +#~ msgid "publications:: publication non lue" +#~ msgstr "Unread" diff --git a/locale/es_ES/LC_MESSAGES/phraseanet.mo b/locale/es_ES/LC_MESSAGES/phraseanet.mo index c0a67089a4..9f08563e63 100644 Binary files a/locale/es_ES/LC_MESSAGES/phraseanet.mo and b/locale/es_ES/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/es_ES/LC_MESSAGES/phraseanet.po b/locale/es_ES/LC_MESSAGES/phraseanet.po index 8313b6db3a..3c59ea6fd2 100644 --- a/locale/es_ES/LC_MESSAGES/phraseanet.po +++ b/locale/es_ES/LC_MESSAGES/phraseanet.po @@ -2,22 +2,20 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-06 12:58+0100\n" -"PO-Revision-Date: 2012-02-06 13:02+0100\n" +"POT-Creation-Date: 2012-03-08 14:29+0100\n" +"PO-Revision-Date: 2012-03-08 14:29+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-02-06 11:00+0000\n" -"X-Generator: Launchpad (build 14747)\n" -"Language: es_ES\n" +"X-Launchpad-Export-Date: 2012-03-08 09:56+0000\n" +"X-Generator: Launchpad (build 14914)\n" +"Language: \n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" "X-Poedit-KeywordsList: _e;__\n" -"X-Poedit-Language: Spanish\n" -"X-Poedit-Country: SPAIN\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -27,88 +25,82 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 +#: lib/classes/appbox.class.php:309 +#: lib/classes/appbox.class.php:383 msgid "Flushing cache" msgstr "" -#: lib/classes/appbox.class.php:323 +#: lib/classes/appbox.class.php:316 msgid "Creating new tables" msgstr "" -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 +#: lib/classes/appbox.class.php:333 +#: lib/classes/appbox.class.php:341 msgid "Purging directories" msgstr "" -#: lib/classes/appbox.class.php:356 +#: lib/classes/appbox.class.php:349 msgid "Copying files" msgstr "" -#: lib/classes/appbox.class.php:365 +#: lib/classes/appbox.class.php:358 msgid "Upgrading appbox" msgstr "" -#: lib/classes/appbox.class.php:374 +#: lib/classes/appbox.class.php:367 #, php-format msgid "Upgrading %s" msgstr "" -#: lib/classes/appbox.class.php:382 +#: lib/classes/appbox.class.php:375 msgid "Post upgrade" msgstr "" -#: lib/classes/appbox.class.php:433 +#: lib/classes/appbox.class.php:425 msgid "Nom de base de donnee incorrect" msgstr "" -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "" - -#: lib/classes/appbox.class.php:590 +#: lib/classes/appbox.class.php:518 msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" msgstr "" -#: lib/classes/base.class.php:294 +#: lib/classes/base.class.php:306 #, php-format msgid "Updating table %s" msgstr "" -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 +#: lib/classes/base.class.php:323 +#: lib/classes/base.class.php:573 +#: lib/classes/base.class.php:817 +#: lib/classes/base.class.php:834 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "" -#: lib/classes/base.class.php:333 +#: lib/classes/base.class.php:345 #, php-format msgid "Creating table %s" msgstr "" -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 +#: lib/classes/base.class.php:353 +#: lib/classes/base.class.php:894 #, php-format msgid "Applying patches on %s" msgstr "" -#: lib/classes/base.class.php:842 +#: lib/classes/base.class.php:854 msgid "Looking for patches" msgstr "" -#: lib/classes/databox.class.php:1401 +#: lib/classes/databox.class.php:1394 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "Error : Todas \"subdefgroup\" las etiquetas deben de tener un atributo \"name\"" -#: lib/classes/databox.class.php:1414 +#: lib/classes/databox.class.php:1407 msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "Error : Los nombres de los grupos son unicos y necesarios \"subdef\"" -#: lib/classes/databox.class.php:1419 +#: lib/classes/databox.class.php:1412 msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" msgstr "Error : La clase \"class\" de los nodos \"subdef\" es requerida \"thumbnail\" o \"preview\" o \"document\"" @@ -205,14 +197,14 @@ msgid "login::register: vos demandes concernat les collections suivantes sont su msgstr "Su solicitud en las siguienes colecciones esta sujeta a la aprobacion del administrador" #: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 +#: lib/classes/mail.class.php:166 msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" msgstr "se le informará por correo una vez su solicitud ha sido procesada." #: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 +#: lib/classes/mail.class.php:148 +#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:179 msgid "login::register: sujet email : confirmation de votre adresse email" msgstr "confirmación del correo electrónico" @@ -220,28 +212,28 @@ msgstr "confirmación del correo electrónico" msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." msgstr "Hola, recibimos la solicitud para cambiar su direccion de e-mail. Has click en el siguiente link para continuar. Si no solicito un cambio de direccion de e-mail porfavor ignore este mensaje." -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:150 +#: lib/classes/mail.class.php:164 msgid "login::register: merci d'avoir confirme votre adresse email" msgstr "Gracias por confirmar su e-mail" -#: lib/classes/mail.class.php:149 +#: lib/classes/mail.class.php:151 msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " msgstr "Ahora se puede conectar usando la siguiente direccion: " -#: lib/classes/mail.class.php:163 +#: lib/classes/mail.class.php:165 msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " msgstr "Tiene que esperar la confirmacion del administrador; su solicitud para las siguientes colecciones esta todavia en proceso. " -#: lib/classes/mail.class.php:179 +#: lib/classes/mail.class.php:181 msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." msgstr "Para procesar su registro, porfavor confirme su direccion de e-mail usando el siguiente link." -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." +#: lib/classes/mail.class.php:212 +msgid "si cet email contient des liens non cliquables copiez/collez ces liens dans votre navigateur." msgstr "" -#: lib/classes/mail.class.php:211 +#: lib/classes/mail.class.php:214 msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" msgstr "Mensaje auomatico de Phraseanet IV. Para administar como recibes los mensajes, conectate en la siguiente direccion." @@ -264,35 +256,35 @@ msgstr "Tamaño demasiado pequeño: %dpx" msgid "Mauvais mode colorimetrique : %s" msgstr "Modo de color incorrecto: %s" -#: lib/classes/phrasea.class.php:308 +#: lib/classes/phrasea.class.php:304 msgid "admin::monitor: module production" msgstr "Produción" -#: lib/classes/phrasea.class.php:309 +#: lib/classes/phrasea.class.php:305 msgid "admin::monitor: module client" msgstr "Cliente" -#: lib/classes/phrasea.class.php:310 +#: lib/classes/phrasea.class.php:306 msgid "admin::monitor: module admin" msgstr "Admin" -#: lib/classes/phrasea.class.php:311 +#: lib/classes/phrasea.class.php:307 msgid "admin::monitor: module report" msgstr "Reporte" -#: lib/classes/phrasea.class.php:312 +#: lib/classes/phrasea.class.php:308 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" -#: lib/classes/phrasea.class.php:313 +#: lib/classes/phrasea.class.php:309 msgid "admin::monitor: module comparateur" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:314 +#: lib/classes/phrasea.class.php:310 msgid "admin::monitor: module validation" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:315 +#: lib/classes/phrasea.class.php:311 msgid "admin::monitor: module upload" msgstr "Subir" @@ -331,76 +323,81 @@ msgstr "Buscar" msgid "client::recherche: dans les categories" msgstr "En categorias" -#: lib/classes/setup.class.php:341 +#: lib/classes/setup.class.php:329 msgid "mod_auth_token correctement configure" msgstr "mod_auth_tokenconfigurado correctamente" -#: lib/classes/setup.class.php:343 +#: lib/classes/setup.class.php:331 msgid "mod_auth_token mal configure" msgstr "mod_auth_token configurado mal" -#: lib/classes/setup.class.php:356 +#: lib/classes/setup.class.php:344 msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " msgstr "Atención : solo se efectua la prueba de la activación de los modos, su funcionamiento correcto no esta garantizado " -#: lib/classes/setup.class.php:371 +#: lib/classes/setup.class.php:359 msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" msgstr "Atención: verificar la configuración de xsendfile, que está activo en la configuración" -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 +#: lib/classes/setup.class.php:368 +#: lib/classes/setup.class.php:377 msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" msgstr "Atención: verificar la configuración h264_streaming, que está activo en la configuración" -#: lib/classes/setup.class.php:532 +#: lib/classes/setup.class.php:520 msgid "setup::Tests d'envois d'emails" msgstr "prueba de enviar correos" -#: lib/classes/setup.class.php:536 +#: lib/classes/setup.class.php:524 msgid "boutton::valider" msgstr "Validar" -#: lib/classes/setup.class.php:613 +#: lib/classes/setup.class.php:602 msgid "setup:: Serveur Memcached" msgstr "servidor Memcached" -#: lib/classes/setup.class.php:629 +#: lib/classes/setup.class.php:611 #, php-format msgid "setup::Serveur actif sur %s" msgstr "servidor activo en %s" -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "" - -#: lib/classes/setup.class.php:645 +#: lib/classes/setup.class.php:623 #, php-format msgid "setup::Aucun serveur memcached rattache." msgstr "No hay ningún servidor Memcached ligado" -#: lib/classes/setup.class.php:682 +#: lib/classes/setup.class.php:644 +msgid "Many opcode cache load is forbidden" +msgstr "" + +#: lib/classes/setup.class.php:646 +msgid "No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC." +msgstr "" + +#: lib/classes/setup.class.php:660 #, php-format msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" msgstr "la configuración está mal: para la variable %1$s, la configuración es : %2$s ; la configuración esperada es : %3$s" -#: lib/classes/setup.class.php:713 +#: lib/classes/setup.class.php:691 msgid "setup::Etat du moteur de recherche" msgstr "" -#: lib/classes/setup.class.php:724 +#: lib/classes/setup.class.php:702 msgid "setup::Sphinx confguration" msgstr "" -#: lib/classes/setup.class.php:747 +#: lib/classes/setup.class.php:725 msgid "test::test" msgstr "prueba" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:148 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:153 msgid "Cette valeur ne peut être vide" msgstr "" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:149 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:154 msgid "Url non valide" msgstr "" @@ -434,15 +431,11 @@ msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:829 #: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 msgid "Ce champ est obligatoire" msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:834 #: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 #, php-format msgid "Ce champ est trop long %s caracteres max" msgstr "" @@ -454,7 +447,6 @@ msgid "Ce champ est trop court %s caracteres min" msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 msgid "Le record n'a pas de fichier physique" msgstr "" @@ -464,7 +456,6 @@ msgid "La taille maximale d'une video est de %d minutes." msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 #, php-format msgid "Le poids maximum d'un fichier est de %s" msgstr "" @@ -473,15 +464,16 @@ msgstr "" msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:529 +#: lib/classes/Bridge/Api/Flickr.class.php:528 +#: lib/classes/Bridge/Api/Youtube.class.php:542 msgid "L'upload a echoue" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:639 +#: lib/classes/Bridge/Api/Flickr.class.php:638 msgid "Photos" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:648 +#: lib/classes/Bridge/Api/Flickr.class.php:647 msgid "Photosets" msgstr "" @@ -561,25 +553,25 @@ msgstr "" msgid "Service youtube introuvable." msgstr "" -#: lib/classes/caption/record.class.php:171 +#: lib/classes/caption/record.class.php:188 msgid "Open the URL in a new window" msgstr "Abrir el link en en una nueva ventana" -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 +#: lib/classes/databox/cgu.class.php:37 +#: lib/classes/databox/cgu.class.php:110 #, php-format msgid "cgus:: CGUs de la base %s" msgstr "Terminos geneales de uso para la base de datos %s" -#: lib/classes/databox/cgu.class.php:39 +#: lib/classes/databox/cgu.class.php:40 msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" msgstr "Para continuar tiene que aceptar los terminos generales e uso" -#: lib/classes/databox/cgu.class.php:40 +#: lib/classes/databox/cgu.class.php:41 msgid "cgus :: accepter" msgstr "Aceptar" -#: lib/classes/databox/cgu.class.php:41 +#: lib/classes/databox/cgu.class.php:42 msgid "cgus :: refuser" msgstr "Rechazar" @@ -678,34 +670,50 @@ msgid "admin::register: un utilisateur s'est inscrit" msgstr "un usuario nuevo ha sido registrado" #: lib/classes/eventsmanager/notify/autoregister.class.php:235 +#: lib/classes/eventsmanager/notify/order.class.php:221 +#: lib/classes/eventsmanager/notify/register.class.php:240 msgid "admin::compte-utilisateur nom" msgstr "Apellido" #: lib/classes/eventsmanager/notify/autoregister.class.php:237 +#: lib/classes/eventsmanager/notify/order.class.php:223 +#: lib/classes/eventsmanager/notify/register.class.php:242 msgid "admin::compte-utilisateur prenom" msgstr "Nombre" #: lib/classes/eventsmanager/notify/autoregister.class.php:239 +#: lib/classes/eventsmanager/notify/order.class.php:225 +#: lib/classes/eventsmanager/notify/register.class.php:244 msgid "admin::compte-utilisateur email" msgstr "Correo" #: lib/classes/eventsmanager/notify/autoregister.class.php:241 +#: lib/classes/eventsmanager/notify/order.class.php:227 +#: lib/classes/eventsmanager/notify/register.class.php:246 msgid "admin::compte-utilisateur adresse" msgstr "Dirección" #: lib/classes/eventsmanager/notify/autoregister.class.php:245 +#: lib/classes/eventsmanager/notify/order.class.php:231 +#: lib/classes/eventsmanager/notify/register.class.php:250 msgid "admin::compte-utilisateur telephone" msgstr "Teléfono" #: lib/classes/eventsmanager/notify/autoregister.class.php:247 +#: lib/classes/eventsmanager/notify/order.class.php:233 +#: lib/classes/eventsmanager/notify/register.class.php:252 msgid "admin::compte-utilisateur fax" msgstr "Fax" #: lib/classes/eventsmanager/notify/autoregister.class.php:249 +#: lib/classes/eventsmanager/notify/order.class.php:235 +#: lib/classes/eventsmanager/notify/register.class.php:254 msgid "admin::compte-utilisateur poste" msgstr "Ocupación" #: lib/classes/eventsmanager/notify/autoregister.class.php:250 +#: lib/classes/eventsmanager/notify/order.class.php:236 +#: lib/classes/eventsmanager/notify/register.class.php:255 msgid "admin::compte-utilisateur societe" msgstr "Empresa" @@ -725,6 +733,31 @@ msgstr "" msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" msgstr "" +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:125 +msgid "email is not valid" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:129 +msgid "failed to send mail" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:133 +msgid "an error occured while exporting records" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:137 +#, php-format +msgid "The delivery to %s failed for the following reason : %s" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:156 +msgid "Email export fails" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:165 +msgid "Get a notification when a mail export fails" +msgstr "" + #: lib/classes/eventsmanager/notify/order.class.php:162 #, php-format msgid "%1$s a passe une %2$scommande%3$s" @@ -822,7 +855,6 @@ msgstr "haz click en el siguiente enlace para ver, comparar y descargar los docu #: lib/classes/eventsmanager/notify/push.class.php:191 #: lib/classes/eventsmanager/notify/validate.class.php:213 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:233 msgid "push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas" msgstr "atención, ese enlace es único, no lo transfiera." @@ -858,16 +890,11 @@ msgstr "se puede tratar a sus aplicaciones en línea a través de la interfaz de #: lib/classes/eventsmanager/notify/validate.class.php:33 #: lib/classes/eventsmanager/notify/validate.class.php:177 -#: lib/classes/eventsmanager/notify/validationdone.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:191 msgid "Validation" msgstr "Retroalimentación" #: lib/classes/eventsmanager/notify/validate.class.php:148 #: lib/classes/eventsmanager/notify/validate.class.php:152 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:164 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:168 msgid "Une selection" msgstr "una selección" @@ -885,7 +912,6 @@ msgid "push::mail:: Demande de validation de documents" msgstr "Document(s) feedback demand" #: lib/classes/eventsmanager/notify/validate.class.php:203 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:223 #, php-format msgid "Le lien suivant vous propose de valider une selection faite par %s" msgstr "haz click en el siguiente enlace, para validar una selección hecha por %s" @@ -1137,43 +1163,43 @@ msgstr "Diciembre" msgid "report:: non-renseigne" msgstr "No rellenado" -#: lib/classes/module/console/systemConfigCheck.class.php:52 +#: lib/classes/module/console/systemConfigCheck.class.php:54 msgid "*** CHECK BINARY CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:61 +#: lib/classes/module/console/systemConfigCheck.class.php:65 msgid "*** FILESYSTEM CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:64 +#: lib/classes/module/console/systemConfigCheck.class.php:68 msgid "*** CHECK CACHE OPCODE ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:67 +#: lib/classes/module/console/systemConfigCheck.class.php:71 msgid "*** CHECK CACHE SERVER ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:70 +#: lib/classes/module/console/systemConfigCheck.class.php:74 msgid "*** CHECK PHP CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:73 +#: lib/classes/module/console/systemConfigCheck.class.php:77 msgid "*** CHECK PHP EXTENSIONS ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:76 +#: lib/classes/module/console/systemConfigCheck.class.php:80 msgid "*** CHECK PHRASEA ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:79 +#: lib/classes/module/console/systemConfigCheck.class.php:83 msgid "*** CHECK SYSTEM LOCALES ***" msgstr "" -#: lib/classes/module/console/systemUpgrade.class.php:49 +#: lib/classes/module/console/systemUpgrade.class.php:50 msgid "Create automatically" msgstr "" -#: lib/classes/module/console/systemUpgrade.class.php:97 +#: lib/classes/module/console/systemUpgrade.class.php:81 msgid "Continuer ?" msgstr "" @@ -1202,11 +1228,11 @@ msgstr "descargas desde usuario %s" msgid "report:: telechargements par jour" msgstr "Descargas" -#: lib/classes/module/report/activity.class.php:531 +#: lib/classes/module/report/activity.class.php:530 msgid "report:: Detail des connexions" msgstr "Conexiones" -#: lib/classes/module/report/activity.class.php:589 +#: lib/classes/module/report/activity.class.php:588 msgid "report:: Detail des telechargements" msgstr "Descargas" @@ -1222,6 +1248,10 @@ msgstr "Conexiones" msgid "report:: telechargements" msgstr "Descargas" +#: lib/classes/module/report/edit.class.php:50 +msgid "report:: edited documents" +msgstr "" + #: lib/classes/module/report/nav.class.php:129 msgid "report:: navigateur" msgstr "Navegador" @@ -1266,7 +1296,15 @@ msgstr "Informacion acerca de registro %d" msgid "report:: Information sur le navigateur %s" msgstr "Informacion acerca del navegador web%s" -#: lib/classes/record/adapter.class.php:939 +#: lib/classes/module/report/push.class.php:50 +msgid "report:: pushed documents" +msgstr "" + +#: lib/classes/module/report/validate.class.php:50 +msgid "report:: validated documents" +msgstr "" + +#: lib/classes/record/adapter.class.php:930 msgid "reponses::document sans titre" msgstr "Sin titulo" @@ -1292,22 +1330,22 @@ msgstr "grupo " msgid "preview:: resultat numero %s " msgstr "" -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 +#: lib/classes/record/preview.class.php:565 +#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:587 msgid "report::acces direct" msgstr "acceso directo" -#: lib/classes/record/preview.class.php:566 +#: lib/classes/record/preview.class.php:571 msgid "report:: page d'accueil" msgstr "página inicial" -#: lib/classes/record/preview.class.php:568 +#: lib/classes/record/preview.class.php:573 msgid "report:: visualiseur cooliris" msgstr "visor de Cooliris" -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:578 +#: lib/classes/record/preview.class.php:585 msgid "report::presentation page preview" msgstr "presentación de la vista previa" @@ -1369,11 +1407,11 @@ msgstr "Formulacion incorrecta, muy pocos caracteres " msgid "Sphinx server is offline" msgstr "" -#: lib/classes/set/export.class.php:292 +#: lib/classes/set/export.class.php:301 msgid "export::ftp: reglages manuels" msgstr "Configuraciones maneales" -#: lib/classes/set/order.class.php:233 +#: lib/classes/set/order.class.php:245 #, php-format msgid "Commande du %s" msgstr "Control %s" @@ -1684,527 +1722,519 @@ msgstr "" msgid "modele %s" msgstr "" -#: lib/conf.d/_GV_template.php:61 +#: lib/conf.d/_GV_template.php:82 msgid "GV::section:: Serveur HTTP" msgstr "servidor Http" -#: lib/conf.d/_GV_template.php:66 +#: lib/conf.d/_GV_template.php:87 msgid "reglages:: Timezone de l'installation" msgstr "zona de tiempo" -#: lib/conf.d/_GV_template.php:73 +#: lib/conf.d/_GV_template.php:94 msgid "reglages:: Nom de linstallation" msgstr "nombre de la instalación" -#: lib/conf.d/_GV_template.php:81 +#: lib/conf.d/_GV_template.php:102 msgid "reglages:: Langue par defaut" msgstr "" -#: lib/conf.d/_GV_template.php:90 +#: lib/conf.d/_GV_template.php:111 msgid "reglages:: URL statique (optionnel)" msgstr "" -#: lib/conf.d/_GV_template.php:96 +#: lib/conf.d/_GV_template.php:117 msgid "GV::section:: Etat de maintenance" msgstr "modo de mantenamiento" -#: lib/conf.d/_GV_template.php:102 +#: lib/conf.d/_GV_template.php:123 msgid "reglages:: Message a diffuser aux utilisateurs" msgstr "El mensaje es transmitido a los usuarios" -#: lib/conf.d/_GV_template.php:108 +#: lib/conf.d/_GV_template.php:129 msgid "reglages:: activation du message a diffuser aux utilistaeurs" msgstr "activación de un mensaje de difusión a los usuarios" -#: lib/conf.d/_GV_template.php:114 +#: lib/conf.d/_GV_template.php:135 msgid "reglages:: logguer les erreurs" msgstr "registro de errores" -#: lib/conf.d/_GV_template.php:119 +#: lib/conf.d/_GV_template.php:140 msgid "GV::section:: Connectivite aux webservices" msgstr "Conectividad a los servicios web" -#: lib/conf.d/_GV_template.php:124 +#: lib/conf.d/_GV_template.php:145 msgid "reglages:: Utiliser els google apis" msgstr "Usar Google API(s)" -#: lib/conf.d/_GV_template.php:131 +#: lib/conf.d/_GV_template.php:152 msgid "reglages:: Service phrasea de localisation" msgstr "" -#: lib/conf.d/_GV_template.php:139 +#: lib/conf.d/_GV_template.php:160 msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" msgstr "Nombre de usuario api bit.ly" -#: lib/conf.d/_GV_template.php:145 +#: lib/conf.d/_GV_template.php:166 msgid "reglages:: ccle d'api pour l'api bit.ly" msgstr "Bit.ly API key" -#: lib/conf.d/_GV_template.php:151 +#: lib/conf.d/_GV_template.php:172 msgid "reglages:: Utilisation de l'api recpatcha" msgstr "Usar ReCaptcha API" -#: lib/conf.d/_GV_template.php:158 +#: lib/conf.d/_GV_template.php:179 msgid "reglages:: clef publique recaptcha" msgstr "clave pública ReCaptcha" -#: lib/conf.d/_GV_template.php:164 +#: lib/conf.d/_GV_template.php:185 msgid "reglages:: clef privee recaptcha" msgstr "clave privada ReCaptcha" -#: lib/conf.d/_GV_template.php:169 +#: lib/conf.d/_GV_template.php:190 msgid "GV::section:: Connectivite a Youtube" msgstr "" -#: lib/conf.d/_GV_template.php:174 +#: lib/conf.d/_GV_template.php:195 #, php-format msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" msgstr "" -#: lib/conf.d/_GV_template.php:181 +#: lib/conf.d/_GV_template.php:202 msgid "reglages:: Youtube client id" msgstr "" -#: lib/conf.d/_GV_template.php:187 +#: lib/conf.d/_GV_template.php:208 msgid "reglages:: Youtube clientsecret" msgstr "" -#: lib/conf.d/_GV_template.php:193 +#: lib/conf.d/_GV_template.php:214 #, php-format msgid "reglages:: Youtube cle developpeur, voir %s" msgstr "" -#: lib/conf.d/_GV_template.php:198 +#: lib/conf.d/_GV_template.php:219 msgid "GV::section:: Connectivite a FlickR" msgstr "" -#: lib/conf.d/_GV_template.php:203 +#: lib/conf.d/_GV_template.php:224 #, php-format msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" msgstr "" -#: lib/conf.d/_GV_template.php:210 +#: lib/conf.d/_GV_template.php:231 msgid "reglages:: FlickR client id" msgstr "" -#: lib/conf.d/_GV_template.php:216 +#: lib/conf.d/_GV_template.php:237 msgid "reglages:: FlickR client secret" msgstr "" -#: lib/conf.d/_GV_template.php:221 +#: lib/conf.d/_GV_template.php:242 msgid "GV::section:: Connectivite a Dailymotion" msgstr "" -#: lib/conf.d/_GV_template.php:226 +#: lib/conf.d/_GV_template.php:247 #, php-format msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" msgstr "" -#: lib/conf.d/_GV_template.php:233 +#: lib/conf.d/_GV_template.php:254 msgid "reglages:: dailymotion client id" msgstr "" -#: lib/conf.d/_GV_template.php:239 +#: lib/conf.d/_GV_template.php:260 msgid "reglages:: dailymotion client secret" msgstr "" -#: lib/conf.d/_GV_template.php:244 +#: lib/conf.d/_GV_template.php:265 msgid "GV::section:: Gestionnaire d'evenements" msgstr "" -#: lib/conf.d/_GV_template.php:250 +#: lib/conf.d/_GV_template.php:271 msgid "reglages:: Evenements" msgstr "" -#: lib/conf.d/_GV_template.php:258 +#: lib/conf.d/_GV_template.php:279 msgid "reglages:: Notifications" msgstr "" -#: lib/conf.d/_GV_template.php:264 +#: lib/conf.d/_GV_template.php:285 msgid "GV::section:: Stockage des documents" msgstr "almacenamiento de los documentos" -#: lib/conf.d/_GV_template.php:269 +#: lib/conf.d/_GV_template.php:290 msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" msgstr "entrar las extensiones de las carpetas autorizados para subir en Phraseanet IV (usar coma como separador. Usar \" * \" para acceptar cualquier forma de archivo)" -#: lib/conf.d/_GV_template.php:277 +#: lib/conf.d/_GV_template.php:298 msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" msgstr "" -#: lib/conf.d/_GV_template.php:285 +#: lib/conf.d/_GV_template.php:306 msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" msgstr "" -#: lib/conf.d/_GV_template.php:292 +#: lib/conf.d/_GV_template.php:313 msgid "reglages:: point de montage des vignettes publiees en acces direct" msgstr "punto de montaje de miniaturas publicadas en acceso directo" -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "servidor cache" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:330 +#: lib/conf.d/_GV_template.php:321 msgid "GV::section:: Serveur Sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:335 +#: lib/conf.d/_GV_template.php:326 msgid "Utiliser Sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:341 +#: lib/conf.d/_GV_template.php:332 msgid "reglages:: de l'adresse du serveur sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:347 +#: lib/conf.d/_GV_template.php:338 msgid "reglages:: port du serveur sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:353 +#: lib/conf.d/_GV_template.php:344 msgid "reglages:: de l'adresse du serveur RT sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:359 +#: lib/conf.d/_GV_template.php:350 msgid "reglages:: port du serveur RT sphinx" msgstr "" -#: lib/conf.d/_GV_template.php:364 +#: lib/conf.d/_GV_template.php:356 +msgid "Phrasea Engine" +msgstr "" + +#: lib/conf.d/_GV_template.php:361 +msgid "Default results sort" +msgstr "" + +#: lib/conf.d/_GV_template.php:367 msgid "GV::section:: Executables externes" msgstr "Ejecutables externos" -#: lib/conf.d/_GV_template.php:369 +#: lib/conf.d/_GV_template.php:372 msgid "reglages:: mod_xsendfileapache active" msgstr "mod_xsendfileapache activos" -#: lib/conf.d/_GV_template.php:375 +#: lib/conf.d/_GV_template.php:378 msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" msgstr "" -#: lib/conf.d/_GV_template.php:382 +#: lib/conf.d/_GV_template.php:385 msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" msgstr "" -#: lib/conf.d/_GV_template.php:389 +#: lib/conf.d/_GV_template.php:392 msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" msgstr "\"stream h264\" activar via \"mod_token\" - Atención, \"apache mod_h264_streaming\" y se requiere binarios \"mod_auth_token\"" -#: lib/conf.d/_GV_template.php:396 +#: lib/conf.d/_GV_template.php:399 msgid "reglages:: point de montage du dossier protege via auth_token" msgstr "punto de montaje para la carpeta protegida a través de auth_token" -#: lib/conf.d/_GV_template.php:403 +#: lib/conf.d/_GV_template.php:406 msgid "reglages:: path complet du dossier protege via auth_token" msgstr "Ruta completa del archivo protegido a través de auth_token" -#: lib/conf.d/_GV_template.php:409 +#: lib/conf.d/_GV_template.php:412 msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" msgstr "frase de contraseña mod_auth_token (como se define en el archivo de configuración de Apache)" -#: lib/conf.d/_GV_template.php:415 +#: lib/conf.d/_GV_template.php:418 msgid "reglages:: executable PHP CLI" msgstr "camino a PHP CLI (Common Line Interface)" -#: lib/conf.d/_GV_template.php:422 +#: lib/conf.d/_GV_template.php:425 msgid "reglages:: path du php.ini specifique (vide si non utilise)" msgstr "Enlace a php.ini especifico (opcional)" -#: lib/conf.d/_GV_template.php:429 +#: lib/conf.d/_GV_template.php:432 msgid "reglages:: chemin de l'executable convert" msgstr "camino a convertir el binario" -#: lib/conf.d/_GV_template.php:436 +#: lib/conf.d/_GV_template.php:439 msgid "reglages:: chemin de l'executable composite" msgstr "Path to Composite binary" -#: lib/conf.d/_GV_template.php:443 +#: lib/conf.d/_GV_template.php:446 msgid "reglages:: chemin de l'executable exiftools" msgstr "Enlace a componente Exiftool" -#: lib/conf.d/_GV_template.php:449 +#: lib/conf.d/_GV_template.php:452 msgid "reglages:: chemin de l'executable swfextract" msgstr "Enlace a componente de extraccion SWF" -#: lib/conf.d/_GV_template.php:456 +#: lib/conf.d/_GV_template.php:459 msgid "reglages:: chemin de l'executable pdf2swf" msgstr "Enlace a componenete PDF 2 SWF" -#: lib/conf.d/_GV_template.php:463 +#: lib/conf.d/_GV_template.php:466 msgid "reglages:: chemin de l'executable swfrender" msgstr "Enlace a componente reproductor SWF" -#: lib/conf.d/_GV_template.php:470 +#: lib/conf.d/_GV_template.php:473 msgid "reglages:: chemin de l'executable unoconv" msgstr "Enlace a componente Unoco" -#: lib/conf.d/_GV_template.php:477 +#: lib/conf.d/_GV_template.php:480 msgid "reglages:: chemin de l'executable FFmpeg" msgstr "Enlace a componente FFmpeg" -#: lib/conf.d/_GV_template.php:483 +#: lib/conf.d/_GV_template.php:486 msgid "reglages:: chemin de l'executable MP4Box" msgstr "Enlace a componente MP4Box" -#: lib/conf.d/_GV_template.php:489 +#: lib/conf.d/_GV_template.php:492 msgid "reglages:: chemin de l'executable Mplayer" msgstr "Enlace a componente Mplayer" -#: lib/conf.d/_GV_template.php:495 +#: lib/conf.d/_GV_template.php:498 msgid "reglages:: chemin de l'executable pdftotext (xpdf)" msgstr "Enlace a componente pdftotext (xpdf)" -#: lib/conf.d/_GV_template.php:501 +#: lib/conf.d/_GV_template.php:504 msgid "reglages:: nombre maximum de page a extraire (PDF)" msgstr "imitar numero de paginas de texto para extraer archivos de PDF" -#: lib/conf.d/_GV_template.php:506 +#: lib/conf.d/_GV_template.php:509 msgid "GV::section:: Repertoires utilitaires" msgstr "Folders de herramientas" -#: lib/conf.d/_GV_template.php:511 +#: lib/conf.d/_GV_template.php:514 msgid "reglages:: proprietaire des fichiers" msgstr "Propietario de archivo (Apache execution account name)" -#: lib/conf.d/_GV_template.php:517 +#: lib/conf.d/_GV_template.php:520 msgid "reglages:: groupes des fichiers" msgstr "Usuario de Grupo (Apache Execution user group name)" -#: lib/conf.d/_GV_template.php:522 +#: lib/conf.d/_GV_template.php:525 msgid "GV::section:: Configuration principale" msgstr "Configuracion principal" -#: lib/conf.d/_GV_template.php:534 +#: lib/conf.d/_GV_template.php:537 msgid "reglages:: email de l'administrateur" msgstr "E-mail del administrador" -#: lib/conf.d/_GV_template.php:540 +#: lib/conf.d/_GV_template.php:543 msgid "reglages:: Afficher le nom des bases et des collections" msgstr "Mostar base de datos y nombres de coleccion" -#: lib/conf.d/_GV_template.php:547 +#: lib/conf.d/_GV_template.php:550 msgid "reglages:: activer le choix du nom de fichier a l'export" msgstr "Dar opcion al usuario para cambiar nombre del archivo descargado" -#: lib/conf.d/_GV_template.php:554 +#: lib/conf.d/_GV_template.php:557 msgid "reglages:: choix par defaut des noms de fichier a l'export" msgstr "Los arhivos seran nombrados por defaut como ..." -#: lib/conf.d/_GV_template.php:568 +#: lib/conf.d/_GV_template.php:571 msgid "reglages:: Active les partages Facebook et Twitter" msgstr "Activar intercambio con Facebook y Twitter" -#: lib/conf.d/_GV_template.php:575 +#: lib/conf.d/_GV_template.php:578 msgid "GV::section:: Page d'accueil" msgstr "Pagina de Inicio" -#: lib/conf.d/_GV_template.php:588 +#: lib/conf.d/_GV_template.php:591 msgid "reglages:: presentation sur la home" msgstr "Mostar configuracion de la(s) canasta(s) de la pagina de inicio" -#: lib/conf.d/_GV_template.php:595 +#: lib/conf.d/_GV_template.php:598 msgid "GV::section:: Moteur de recherche" msgstr "Motor de busqueda" -#: lib/conf.d/_GV_template.php:601 +#: lib/conf.d/_GV_template.php:604 msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" msgstr "Para busqueda de usuario, For user research, minimum number of caracters prior to a troncature operator insertion (1 by default)" -#: lib/conf.d/_GV_template.php:607 +#: lib/conf.d/_GV_template.php:610 msgid "reglages:: Question par defaut" msgstr "consulta por defecto" -#: lib/conf.d/_GV_template.php:613 +#: lib/conf.d/_GV_template.php:616 msgid "reglages:: type de document cherches par defaut e l'ouverture du site" msgstr "tipo de documento tiene por objeto abrir el sitio electrónico predeterminado" -#: lib/conf.d/_GV_template.php:619 +#: lib/conf.d/_GV_template.php:622 msgid "GV::section:: Report" msgstr "Reporte" -#: lib/conf.d/_GV_template.php:625 +#: lib/conf.d/_GV_template.php:628 msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" msgstr "reporte anónimo (esconder nombres de usuarios y la información de los reportes)" -#: lib/conf.d/_GV_template.php:631 +#: lib/conf.d/_GV_template.php:634 msgid "GV::section:: Modules supplementaires" msgstr "módulos suplementarios" -#: lib/conf.d/_GV_template.php:637 +#: lib/conf.d/_GV_template.php:640 msgid "reglages:: Activation de l'outil thesaurus" msgstr "permitir tesauro Phraseanet IV" -#: lib/conf.d/_GV_template.php:642 +#: lib/conf.d/_GV_template.php:645 msgid "reglages:: Activation du Mode MultiDOC" msgstr "activar modo MultiDOC" -#: lib/conf.d/_GV_template.php:647 +#: lib/conf.d/_GV_template.php:650 msgid "reglages:: Substitution de HD d'un record " msgstr "La sustitución de grabar HD " -#: lib/conf.d/_GV_template.php:652 +#: lib/conf.d/_GV_template.php:655 msgid "reglages:: Substitution de thumbnail d'un record" msgstr "sustitución de un registro en miniatura" -#: lib/conf.d/_GV_template.php:736 +#: lib/conf.d/_GV_template.php:739 msgid "GV::section:: Envois de mails" msgstr "envío de correos" -#: lib/conf.d/_GV_template.php:747 +#: lib/conf.d/_GV_template.php:750 msgid "reglages:: Expediteur mail par defaut" msgstr "Remitente del correo por defecto" -#: lib/conf.d/_GV_template.php:753 +#: lib/conf.d/_GV_template.php:756 msgid "reglages:: Utilisation d'un serveur SMTP" msgstr "utilización del servidor SMTP" -#: lib/conf.d/_GV_template.php:759 +#: lib/conf.d/_GV_template.php:762 msgid "reglages:: Activation de l'authentification smtp" msgstr "activación de la autentificación smtp" -#: lib/conf.d/_GV_template.php:765 +#: lib/conf.d/_GV_template.php:768 msgid "reglages:: Hote SMTP" msgstr "Host" -#: lib/conf.d/_GV_template.php:771 +#: lib/conf.d/_GV_template.php:774 msgid "reglages:: Port SMTP" msgstr "Puerto smtp" -#: lib/conf.d/_GV_template.php:777 +#: lib/conf.d/_GV_template.php:780 msgid "reglages:: Utiliser une conenction SSL" msgstr "Usar SSL" -#: lib/conf.d/_GV_template.php:783 +#: lib/conf.d/_GV_template.php:786 msgid "reglages:: User SMTP" msgstr "Usuario" -#: lib/conf.d/_GV_template.php:789 +#: lib/conf.d/_GV_template.php:792 msgid "reglages:: Mot de passe SMTP" msgstr "contraseña" -#: lib/conf.d/_GV_template.php:794 +#: lib/conf.d/_GV_template.php:797 msgid "GV::section:: Exports FTP" msgstr "exportación Ftp" -#: lib/conf.d/_GV_template.php:799 +#: lib/conf.d/_GV_template.php:802 msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" msgstr "permitir la posibilidad de exportar FTP o no (en varias pestañas)" -#: lib/conf.d/_GV_template.php:805 +#: lib/conf.d/_GV_template.php:808 msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" msgstr "Dar o no exportar usuarios de FTP o sólo a los correos admin" -#: lib/conf.d/_GV_template.php:810 +#: lib/conf.d/_GV_template.php:813 msgid "GV::section:: Configuration du client" msgstr "configuración del cliente" -#: lib/conf.d/_GV_template.php:822 +#: lib/conf.d/_GV_template.php:818 +msgid "Maximum megabytes allowed in download (if request is bigger, then mail is still available)" +msgstr "" + +#: lib/conf.d/_GV_template.php:824 msgid "reglages:: position de l'onglet de recherche" msgstr "posición de la pestaña de búsqueda" -#: lib/conf.d/_GV_template.php:828 +#: lib/conf.d/_GV_template.php:830 msgid "reglages:: position de l'onglet de recherche avancee" msgstr "\"búsqueda avanzada\" tab display posición (2= 2da posición de la izquierda)" -#: lib/conf.d/_GV_template.php:834 +#: lib/conf.d/_GV_template.php:836 msgid "reglages:: position de l'onglet des topics" msgstr "posición de la pestaña \"temas\"" -#: lib/conf.d/_GV_template.php:840 +#: lib/conf.d/_GV_template.php:842 msgid "reglages:: numero de l'onglet actif" msgstr "número de la pestaña activa" -#: lib/conf.d/_GV_template.php:846 +#: lib/conf.d/_GV_template.php:848 msgid "reglages:: rendu des topics" msgstr "establece \"temas\" como" -#: lib/conf.d/_GV_template.php:859 +#: lib/conf.d/_GV_template.php:861 msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" msgstr "" -#: lib/conf.d/_GV_template.php:865 +#: lib/conf.d/_GV_template.php:867 msgid "reglages:: Voir le rollover sur les elements du chutier" msgstr "ver la renovación de los elementos de la papelera" -#: lib/conf.d/_GV_template.php:871 +#: lib/conf.d/_GV_template.php:873 msgid "reglages:: Presentation des collections" msgstr "presentación de los colecciones" -#: lib/conf.d/_GV_template.php:878 +#: lib/conf.d/_GV_template.php:880 msgid "reglages:: Voir taille HD total des doc d'un chutiers" msgstr "Vea el tamaño de HD total de contenedores de un documento" -#: lib/conf.d/_GV_template.php:884 +#: lib/conf.d/_GV_template.php:886 msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" msgstr "" -#: lib/conf.d/_GV_template.php:890 +#: lib/conf.d/_GV_template.php:892 msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" msgstr "Es necesario estar registrado para descargar" -#: lib/conf.d/_GV_template.php:895 +#: lib/conf.d/_GV_template.php:897 msgid "GV::section:: Parametrage de l'inscription" msgstr "configuración del registro" -#: lib/conf.d/_GV_template.php:900 +#: lib/conf.d/_GV_template.php:902 msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" msgstr "esconder lista de las colecciones del formulario de registro - el registro de usuario se envie para todas las colecciones \"enabled for registration\"" -#: lib/conf.d/_GV_template.php:906 +#: lib/conf.d/_GV_template.php:908 msgid "reglages:: Activation de l'autoinscription" msgstr "activación del autoregistro" -#: lib/conf.d/_GV_template.php:911 +#: lib/conf.d/_GV_template.php:913 msgid "GV::section:: Configuration du push" msgstr "empujar configuración" -#: lib/conf.d/_GV_template.php:916 +#: lib/conf.d/_GV_template.php:918 msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" msgstr "Número de días antes del final de la validación para el envío de recordatorio por correo electrónico" -#: lib/conf.d/_GV_template.php:928 +#: lib/conf.d/_GV_template.php:930 msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" msgstr "validez de los enlaces generales para la validación, si 0 => Vence" -#: lib/conf.d/_GV_template.php:933 +#: lib/conf.d/_GV_template.php:935 msgid "GV::section:: Indexation par les robots" msgstr "indexación por robots" -#: lib/conf.d/_GV_template.php:938 +#: lib/conf.d/_GV_template.php:940 msgid "reglages :: Titre de l'installation" msgstr "título de la instalación" -#: lib/conf.d/_GV_template.php:944 +#: lib/conf.d/_GV_template.php:946 msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" msgstr "Palabras clave para motores de búsqueda indexar robots" -#: lib/conf.d/_GV_template.php:950 +#: lib/conf.d/_GV_template.php:952 msgid "reglages :: Description de l'installation" msgstr "descripión de la instalación" -#: lib/conf.d/_GV_template.php:956 +#: lib/conf.d/_GV_template.php:958 msgid "reglages:: identifiant google analytics" msgstr "ID de Google Analytics (UA-XXXXXXX-X)" -#: lib/conf.d/_GV_template.php:962 +#: lib/conf.d/_GV_template.php:964 msgid "Allow the website to be indexed by search engines like Google" msgstr "" -#: lib/conf.d/_GV_template.php:968 +#: lib/conf.d/_GV_template.php:970 msgid "reglages:: Afficher le bandeau Google Chrome Frame" msgstr "" @@ -2424,7 +2454,7 @@ msgstr "Login" msgid "admin::compte-utilisateur mot de passe" msgstr "Contraseña" -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 +#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:112 msgid "report::Heures" msgstr "Horas" @@ -2445,7 +2475,7 @@ msgid "boutton::editer" msgstr "" #: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:78 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1436 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1437 msgid "boutton::supprimer" msgstr "Eliminado" @@ -2470,6 +2500,95 @@ msgstr "" msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "" +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:36 +msgid "Vous avez recu un nouveau panier" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:38 +msgid "rafraichir" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:90 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:106 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:252 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:440 +msgid "action::exporter" +msgstr "Exportación" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:117 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:263 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:451 +msgid "action::editer" +msgstr "Editar" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:142 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:303 +msgid "action::Valider" +msgstr "Validar" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:219 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "usted ha empujado esa canasta para una retroalimentación." + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:232 +msgid "paniers:: panier recu de %pusher%" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:279 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:285 +msgid "action::renommer" +msgstr "Renombrar" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:320 +msgid "Archive" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:332 +msgid "action : supprimer" +msgstr "Eliminar" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:341 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:347 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:475 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:483 +msgid "Re-ordonner" +msgstr "Establecer orden" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:466 +msgid "action::detacher" +msgstr "separar" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:692 +msgid "delete" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:783 +msgid "panier:: ordre du panier" +msgstr "Orden de la canasta" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:791 +msgid "panier:: ordre Validation ascendante" +msgstr "Más aprobados" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:799 +msgid "panier:: ordre Validation descendante" +msgstr "Menos aprobados" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:845 +msgid "L'utilisateur approuve ce document" +msgstr "Usuario aprobó el documento" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:851 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "El usuario todavía no ha decidido" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:857 +msgid "L'utilisateur desapprouve ce document" +msgstr "Usuario no aprobó el documento" + #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:47 msgid "Users" msgstr "" @@ -2665,37 +2784,37 @@ msgstr "Eliminar \"%s\" término de la(s) ficha(s)" #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:860 msgid "prod::thesaurusTab:tree:loading" msgstr "Cargando..." -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1232 msgid "boutton::ok" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1258 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1284 msgid "prod::thesaurusTab:dlg:OK" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1265 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1291 msgid "prod::thesaurusTab:dlg:Annuler" msgstr "Cancelar" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1316 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "Acceptar como término nuevo" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1326 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "Acceptar como sinónimo" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1408 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1427 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "Reemplazar con" @@ -2864,6 +2983,10 @@ msgstr "" msgid "report:: 2 - Bases" msgstr "2 - bases de datos" +#: tmp/cache_twig/12/0a/b3d79d1d4e6aa2159ebb650983c4.php:55 +msgid "Voulez-vous dire %link% ?" +msgstr "" + #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 msgid "Ajouter une publication" msgstr "" @@ -2917,6 +3040,58 @@ msgstr "" msgid "validation::envoyer mon rapport" msgstr "Enviar mi reporte" +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:14 +msgid "You are not authorized to do this" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:21 +msgid "About Roles : " +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:26 +msgid "Admin can edit shares, modify content" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:32 +msgid "Editor can modify content" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:38 +msgid "Access user have readonly access" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:46 +msgid "Find a user" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:83 +msgid "You are Admin" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:92 +msgid "Role" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:105 +msgid "Access" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:118 +msgid "Editor" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:131 +msgid "Admin" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:147 +msgid "Remove" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:156 +msgid "Notify" +msgstr "" + #: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 msgid "notice" msgstr "Caption" @@ -2929,6 +3104,10 @@ msgstr "Descargar todo" msgid "action : exporter" msgstr "Exporte" +#: tmp/cache_twig/15/06/d2e85f3a9ae09f5a6f26a134bc0d.php:37 +msgid "%nb_records% records" +msgstr "" + #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 msgid "First Name" msgstr "" @@ -2946,7 +3125,6 @@ msgid "Job" msgstr "" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:174 msgid "Company" msgstr "" @@ -2954,33 +3132,40 @@ msgstr "" msgid "City" msgstr "" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:87 +msgid "Add" msgstr "" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 -msgid "Add" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:91 +msgid "Cancel" msgstr "" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:23 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:17 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:23 msgid "boutton::precedent" msgstr "Previo" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:29 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:29 msgid "boutton::demarrer" msgstr "Slideshow" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:35 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:35 msgid "boutton::pause" msgstr "Pausa" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:41 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:47 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:41 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:47 msgid "boutton::suivant" msgstr "Próximo" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:53 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:53 msgid "boutton::telecharger" msgstr "Download" @@ -2992,40 +3177,60 @@ msgstr "" msgid "En cours d'envoi" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:28 msgid "List Name" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:37 +msgid "Save" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:59 +msgid "Share the list" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:64 msgid "Set sharing permission" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:79 +msgid "Delete" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:101 +msgid "%length% peoples" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:107 +msgid "Edit" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 +msgid "View" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:208 msgid "Activite" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:214 msgid "Template" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:226 msgid "Country" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:232 msgid "Position" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 -msgid "%length% peoples" +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:241 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:266 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:291 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:317 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:343 +msgid "All" msgstr "" #: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 @@ -3036,11 +3241,11 @@ msgstr "VALIDACIÒN" msgid "lightbox::recaptitulatif" msgstr "Resumen" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:121 msgid "validation:: OUI" msgstr "SÌ" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:136 msgid "validation:: NON" msgstr "NO" @@ -3112,6 +3317,7 @@ msgid "action : ajouter au panier" msgstr "Agregar a la canasta" #: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 msgid "action : print" msgstr "Imprimir" @@ -3199,234 +3405,230 @@ msgstr "" msgid "Unable to connect to MySQL server" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:435 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:441 msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:451 msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:517 +msgid "Prerequisite and Configuration" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:551 msgid "Executables externes" msgstr "binarios externos" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:594 msgid "Required field" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:618 msgid "Phraseanet may require many binaries." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:624 msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:630 msgid "Don't worry, You can modify your configuration later" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:669 msgid "Creation de votre compte" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:681 msgid "Votre adresse email" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:688 msgid "Votre mot de passe" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 msgid "Confirmation de votre mot de passe" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:717 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "acerca de la seguridad de las contraseñas" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:721 msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" msgstr "La contraseña tiene que diferenciarse claramente de la ID y tiene que contener 2 tipos de carácteres, entre ellos los siguienes" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:726 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "caracteres especiales de seguridad" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:730 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Carácteres mayúsculas" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:734 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "carácteres minúsculas" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:738 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "carácteres numéricos" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:758 msgid "Your email will be used to log in the application." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:762 msgid "Please be sure it is still valid and you can access it" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:820 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1104 msgid "MySQL database connection parameters" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:827 msgid "phraseanet:: adresse" msgstr "Dirección" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:834 msgid "Database user" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:848 msgid "phraseanet:: port" msgstr "Port" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:855 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1119 msgid "Database" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:863 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1127 msgid "boutton::tester" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:883 msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:902 msgid "ApplicationBox is a Mysql database." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:908 msgid "It stores users datas, rights, and references to DataBoxes where records are stored." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:920 msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:964 msgid "setup::Configuration des repertoires de stockage" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:976 msgid "Repertoire de stockage des fichiers" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:983 msgid "Repertoire de stockage des imagettes" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:990 msgid "Point de montage des imagettes (voir aide ci dessous)" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:999 msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1004 msgid "Exemple Apache" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 msgid "Exemple Nginx" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1042 msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1048 msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1054 msgid "If you plan to store large files, be sure it will fit in these directories." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 msgid "setup::Configuration de la base de stockage DataBox" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1111 msgid "Ne pas creer de DataBox maintenant" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1139 msgid "Modele de donnees" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1170 msgid "Creation des taches" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1175 msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" msgstr "Phraseanet incorpora un motor de tareas para leer y escribir metadatos y hacer otras operaciones" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1186 msgid "Creer la tache d'ecriture des metadonnees" msgstr "crear una tarea para escribir los metadatos" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1195 msgid "Creer la tache de creation des sous-definitions" msgstr "crear una tarea para crear sub-definicienos" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1204 msgid "Creer la tache d'indexation" msgstr "crear una tarea para una indexación" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1221 msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1225 msgid "Databoxes store records, metadatas and their classifications" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1246 msgid "button::Install" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1256 msgid "Install in progess" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1262 msgid "Installation is currenlty processing, please wait..." msgstr "" @@ -3435,66 +3637,45 @@ msgid "validation:: editer ma note" msgstr "Modificar mis notas" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 msgid "action : editer" msgstr "Editar" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 msgid "action : status" msgstr "Estatus" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 msgid "action : collection" msgstr "Mover" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 msgid "action : push" msgstr "Empujar ? in welchem zusammenhang (rechazar?)" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:89 +msgid "Feedback" +msgstr "" + +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:100 msgid "action : bridge" msgstr "" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 msgid "action : publier" msgstr "" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:119 msgid "action : outils" msgstr "Herramientas" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "Eliminar" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:135 msgid "Certaines donnees du panier ont change" msgstr "" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 msgid "Votre recherche ne retourne aucun resultat" msgstr "" -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." msgstr "" @@ -3631,473 +3812,426 @@ msgstr "Cargando..." msgid "phraseanet:: panier" msgstr "canasta" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:361 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:365 msgid "phraseanet:: propositions" msgstr "Propuestas" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:373 msgid "phraseanet:: thesaurus" msgstr "Tesauro" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" -msgstr "Reset" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "todas las palabras" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "palabra exacta o frase" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "una o más de estas palabras" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "Ninguna de esas palabras" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "Todo" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "Ninguna" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:384 +msgid "Close the WorkZone" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "Palabra(s) de campo(s)" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "Todos campos" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "buscar en un campo de fecha" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "De" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "A" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:410 msgid "prod::thesaurusTab:thesaurus" msgstr "Tesaurio" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:414 msgid "prod::thesaurusTab:candidats" msgstr "Candidatos ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:426 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "Acceptar candidato" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:432 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "Reemplazar con término ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:832 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1090 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:439 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:707 msgid "boutton::rechercher" msgstr "Buscar" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:552 msgid "chargement" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:581 msgid "prod::thesaurusTab:dlg:supprimer le terme ?" msgstr "Eliminar término ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:587 msgid "prod::thesaurusTab:dlg:accepter le terme ?" msgstr "Acceptar término ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:593 msgid "prod::thesaurusTab:dlg:remplacer le terme ?" msgstr "Reemplazar término ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:609 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:613 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:617 msgid "action:: nouveau panier" msgstr "Nueva canasta" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:624 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:628 msgid "Browse Baskets" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:635 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:639 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:643 msgid "action:: nouveau reportage" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:652 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:656 msgid "phraseanet:: tri par date" msgstr "Ordenar por fecha" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:664 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:668 msgid "phraseanet:: tri par nom" msgstr "Ordenar por nombre" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:676 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1589 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1761 msgid "Preferences" msgstr "Ajustes" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:702 +msgid "Advanced Search" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:720 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1194 msgid "phraseanet::type:: documents" msgstr "Documentos" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 msgid "phraseanet::type:: reportages" msgstr "registro" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:740 msgid "Tout type" msgstr "Tipo de pantalla" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:744 msgid "Image" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:748 msgid "Video" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:752 msgid "Audio" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:756 msgid "Document" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 msgid "Flash" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" -msgstr "bases de datos" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:788 +msgid "boutton:: selectionner toutes les bases" +msgstr "Todo" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" -msgstr "Registro" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:793 +msgid "boutton:: selectionner aucune base" +msgstr "Ninguna" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" -msgstr "Temas" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:808 +msgid "Re-initialiser" +msgstr "Reset" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:816 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:850 +msgid "Trier par " +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:821 +msgid "pertinence" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +msgid "date dajout" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:829 +msgid "aleatoire" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:835 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:887 +msgid "descendant" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:839 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:891 +msgid "ascendant" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:844 +msgid "rechercher par stemme" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:902 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "Palabra(s) de campo(s)" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:908 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1092 +msgid "rechercher dans tous les champs" +msgstr "Todos campos" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:954 +msgid "Status des documents a rechercher" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1060 +msgid "Rechercher dans un champ date" +msgstr "buscar en un campo de fecha" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1102 +msgid "phraseanet::time:: de" +msgstr "De" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +msgid "phraseanet::time:: a" +msgstr "A" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1169 msgid "Select" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1176 msgid "reponses:: selectionner tout" msgstr "Todo" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1182 msgid "reponses:: selectionner rien" msgstr "Ninguno" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1188 msgid "phraseanet::type:: images" msgstr "Imágenes" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1200 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1206 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1222 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1355 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1455 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1492 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 msgid "Select an action" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1643 msgid "raccourci :: a propos des raccourcis claviers" msgstr "Acerca de los Short cuts" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1648 msgid "Raccourcis claviers en cours de recherche : " msgstr "shortcuts/atajo de teclado de la ventana principial " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1653 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1689 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : seleccionar todo " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1657 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1693 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : imprimir en selección " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1661 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1697 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : editar selección " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1665 msgid "Raccourcis::fleche gauche : page precedente " msgstr "flecha izquierda : página previa " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1669 msgid "Raccourcis::fleche droite : page suivante " msgstr "flecha derecha : página siguiente " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1673 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "flecha superior : deslizamiento vertical " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1677 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "flecha inerior : deslizamiento vertical " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1684 msgid "Raccourcis claviers de la zone des paniers : " msgstr "atajos de teclado del área de canastas " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1704 msgid "Raccourcis claviers en cours de editing : " msgstr "Editar shortcuts de la ventana " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1709 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : cambiar campo " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 msgid "Raccourcis claviers en cours de preview : " msgstr "Vista detallada de los shortcuts de la ventaba " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1721 msgid "Raccourcis::fleche gauche : en avant " msgstr "flecha derecha : documento siguiente " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1725 msgid "Raccourcis::fleche gauche : en arriere " msgstr "flecha izquierda : documento previo " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1729 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "espacio : start/stop diaporama " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1737 msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "esc : cerrar las ventanas superpuestas " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1747 msgid "raccourcis :: ne plus montrer cette aide" msgstr "No más mostrar la ayuda" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1767 msgid "Affichage" msgstr "Vista" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1771 msgid "Configuration" msgstr "Configuración" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1779 msgid "Mode de presentation" msgstr "Modo de presentación" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1793 msgid "reponses:: mode vignettes" msgstr "Vistas en miniatura" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1803 msgid "reponses:: mode liste" msgstr "Lista" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1809 msgid "Theme" msgstr "tema" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1818 msgid "Selecteur de theme" msgstr "Seleccion del tema" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1840 msgid "Presentation de vignettes" msgstr "Vistas en miniatura" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1851 msgid "Iconographe (description au rollover)" msgstr "Icono (descripción con rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1863 msgid "Graphiste (preview au rollover)" msgstr "Gráfico (vista previa con rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1873 msgid "Informations techniques" msgstr "Información técnica" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1884 msgid "Afficher" msgstr "Vista" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1896 msgid "Afficher dans la notice" msgstr "Ver en el registro" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1908 msgid "Ne pas afficher" msgstr "Esconder" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1918 msgid "Type de documents" msgstr "Tipo de documento" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1929 msgid "Afficher une icone" msgstr "Mostrar un ícono" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1937 msgid "reponses:: images par pages : " msgstr "Resultados por página " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1950 msgid "reponses:: taille des images : " msgstr "Tamaño de la vista en miniatura " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1964 msgid "Couleur de selection" msgstr "Seleccionar color" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1969 msgid "choisir" msgstr "Seleccionar" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1979 msgid "Affichage au demarrage" msgstr "Mostrar al iniciar" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1995 msgid "Ma derniere question" msgstr "Mi última consulta" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2006 msgid "Une question personnelle" msgstr "Consulta" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 msgid "Aide" msgstr "Ayuda" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2078 msgid "preview:: Description" msgstr "Descripción" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2082 msgid "preview:: Historique" msgstr "Registro" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2089 msgid "preview:: Popularite" msgstr "Popularidad" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2142 msgid "Presentation de vignettes de panier" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2159 msgid "Afficher les status" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2177 msgid "Afficher la fiche descriptive" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2195 msgid "Afficher le titre" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "Establecer orden" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "Ordenar automaticamente" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "Escojer" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "Deshacer" - #: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 msgid "preview::statistiques de visualisation pour le lien" msgstr "mostrar estadisticas" @@ -4279,20 +4413,32 @@ msgstr "" msgid "Ajouter a" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:21 msgid "Fail" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:27 msgid "Success" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:75 +msgid "Hello %username%" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:90 +msgid "Erreur" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:97 +msgid "%error%" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:113 +msgid "Code d'accès" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:120 +msgid "Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis :" msgstr "" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 @@ -4311,31 +4457,31 @@ msgstr "" msgid "Edition des droits de %number% utilisateurs" msgstr "" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:698 msgid "admin::compte-utilisateur sexe" msgstr "sexo" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:709 msgid "admin::compte-utilisateur:sexe: mademoiselle" msgstr "Srita." -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:717 msgid "admin::compte-utilisateur:sexe: madame" msgstr "Sra." -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:725 msgid "admin::compte-utilisateur:sexe: monsieur" msgstr "Sr." -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:760 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:790 msgid "admin::compte-utilisateur code postal" msgstr "Código postal" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:774 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:804 msgid "admin::compte-utilisateur ville" msgstr "Ciudad" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:818 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:848 msgid "admin::compte-utilisateur activite" msgstr "Actividad" @@ -4368,25 +4514,25 @@ msgid "panier:: description" msgstr "descripción" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:280 msgid "No results" msgstr "" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:286 msgid "1 result" msgstr "" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:292 msgid "%Total% results" msgstr "" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:189 msgid "Received from %user_name%" msgstr "" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:240 msgid "Sent for validation to %list_participants%" msgstr "" @@ -4451,19 +4597,23 @@ msgstr "" msgid "Creer un utilisateur" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:288 +msgid "Successful install" +msgstr "" + +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:311 msgid "Ajouter un nouvel utilisateur" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:316 msgid "Adresse email du nouvel utilisateur" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:324 msgid "Creer un modele" msgstr "" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:329 msgid "Nom du nouveau modele" msgstr "" @@ -4480,11 +4630,6 @@ msgid "Story name" msgstr "" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:47 -msgid "Story description" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:53 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:28 msgid "Ajouter ma selection courrante" msgstr "Agrega la selección actual" @@ -4553,14 +4698,26 @@ msgstr "Número de documentos editados" msgid "Lists" msgstr "" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:27 msgid "Refresh" msgstr "" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -msgid "Delete" +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:63 +msgid "(%length%)" msgstr "" +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:16 +msgid "Reordonner automatiquement" +msgstr "Ordenar automaticamente" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:21 +msgid "Choisir" +msgstr "Escojer" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:38 +msgid "Inverser" +msgstr "Deshacer" + #: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 msgid "Playlist" msgstr "" @@ -4577,11 +4734,11 @@ msgstr "" msgid "Aucun bridge disponible. Veuillez contacté un administrateur." msgstr "" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:509 msgid "Vous n'avez pas assez de droits sur les elements selectionnes" msgstr "" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:516 msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" msgstr "" @@ -4593,107 +4750,111 @@ msgstr "1 - Período" msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:122 msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:145 msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:147 msgid "La precedente attribution a ete desactivee" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:223 msgid "Attention !" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:282 msgid "boutton::ajouter" msgstr "Agregar" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:300 msgid "Nom" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:312 msgid "DublinCore Element Set" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:318 msgid "Multivalue" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:324 msgid "Indexable" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:330 msgid "Vocabulary Type" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:336 msgid "Vocabulary restricted" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:348 msgid "Lecture seule" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:354 msgid "Type" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:360 msgid "Separateur" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:366 msgid "Branche Thesaurus" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:372 msgid "Affiche dans report" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:378 msgid "Afficher en titre" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:483 msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:582 msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:786 msgid "Tous" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:794 +msgid "Aucun" +msgstr "" + +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:802 msgid "Francais" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:810 msgid "Allemand" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:818 msgid "Anglais" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:826 msgid "Arabe" msgstr "" @@ -4760,12 +4921,10 @@ msgid "%basket_length% documents" msgstr "%basket_length% documento(s)" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 msgid "Suppression de %n_element% videos" msgstr "" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 msgid "Etes vous sur de supprimer %number% videos ?" msgstr "" @@ -4807,32 +4966,36 @@ msgstr "Regresar al inicio" msgid "Which playlist you want to put you %number% elements into ?" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -msgid "mauvais login / mot de passe" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:74 +msgid "Erreur de login / mot de passe" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:82 +msgid "Bonjour, veuillez vous identifier sur %home_title% :" msgstr "" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" +msgid "Se connecter" msgstr "" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" +msgid "Problèmes de connexion ?" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:134 +msgid "Autorisation d'accès" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:145 +msgid "Autorisez-vous l'application \"%application_name%\" à accéder à votre contenu sur %home_title% ?" +msgstr "" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:175 +msgid "Autoriser" +msgstr "" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:199 +msgid "Ne pas autoriser" msgstr "" #: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 @@ -4900,144 +5063,102 @@ msgstr "" msgid "You are not the feed owner" msgstr "" -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "usted ha empujado esa canasta para una retroalimentación." - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:309 -msgid "action::exporter" -msgstr "Exportación" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:320 -msgid "action::editer" -msgstr "Editar" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "Renombrar" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "Validar" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:194 -msgid "Archive" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:335 -msgid "action::detacher" -msgstr "separar" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:561 -msgid "delete" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:652 -msgid "panier:: ordre du panier" -msgstr "Orden de la canasta" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:660 -msgid "panier:: ordre Validation ascendante" -msgstr "Más aprobados" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:668 -msgid "panier:: ordre Validation descendante" -msgstr "Menos aprobados" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur approuve ce document" -msgstr "Usuario aprobó el documento" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:717 -msgid "L'utilisateur desapprouve ce document" -msgstr "Usuario no aprobó el documento" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:723 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "El usuario todavía no ha decidido" - #: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 msgid "validation:: note" msgstr "Commentarios" -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:32 +msgid "Grant rights" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:43 +msgid "Contributor" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:51 +msgid "See others" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:62 msgid "HD Download" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:79 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:444 +msgid "List Manager" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 +msgid "Save this list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:162 +msgid "Select a user in the list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:166 +msgid "or" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:169 +msgid "Add user" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:256 +msgid "and %n% more peoples" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:277 +msgid "Please consider send this validation to the following users : %recommendation%" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:286 +msgid "Users suggestion" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:334 msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" msgstr "" "Push se usa para enviar una selección de documentos a receptores. \n" "Los receptores recibibirán u correo con el link que va a iniciar Phraseanet Lightbox, muestre documentos para la visualización y/o la descarga.\n" "Push está también disponible como una canasta \"recibida\" en Phraseanet para usuarios registrados." -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:340 +msgid "Push::une validation est une demande d'appreciation a d'autres personnes" msgstr "" +"Haz click para enviar una solicitud para una retroalimentación para una selección de documentos para receptores. \n" +"Los receptores recibibirán u correo con el link que va a iniciar Phraseanet Lightbox, muestre documentos para la visualización y/o la descarga.\n" +"La retroalimentación está disponible como una canasta de confirmación en Phraseanet para usuarios registrados." -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 -msgid "List Manager" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:361 msgid "Select all" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:365 msgid "Deselect all" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:411 +msgid "Send" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:429 msgid "Back to Push" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:435 +msgid "Back to Feedback" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:462 msgid "Welcome to the ListManager !" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:471 msgid "Start by creating one by using the \"add\" button on the left !" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:480 msgid "Select a list on the left and edit it !" msgstr "" @@ -5045,46 +5166,27 @@ msgstr "" msgid "Do you want to send your report ?" msgstr "" -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 -msgid "Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" -"Haz click para enviar una solicitud para una retroalimentación para una selección de documentos para receptores. \n" -"Los receptores recibibirán u correo con el link que va a iniciar Phraseanet Lightbox, muestre documentos para la visualización y/o la descarga.\n" -"La retroalimentación está disponible como una canasta de confirmación en Phraseanet para usuarios registrados." - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 -msgid "Back to Feedback" -msgstr "" - #: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 msgid "report:: Volumetrie des questions posees sur %home_title%" msgstr "Preguntas frecuentes" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:89 msgid "Site web" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:104 msgid "Type d'application" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:108 msgid "Application web" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:115 msgid "Application desktop" msgstr "" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:128 msgid "URL de callback" msgstr "" @@ -5145,7 +5247,6 @@ msgid "2000 caracteres maximum" msgstr "" #: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:170 -#: tmp/cache_twig/bd/a8/2c59a65e6a28629b0d4eecf283e3.php:139 msgid "Categorie" msgstr "" @@ -5165,15 +5266,15 @@ msgstr "" msgid "Retour" msgstr "" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:31 msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" msgstr "Selecccionar las columnas para mostrarlas en el reporte" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:37 msgid "cocher tout" msgstr "Seleccionar todo" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:44 msgid "tout decocher" msgstr "Deseleccionar todo" @@ -5275,130 +5376,134 @@ msgstr[1] "" msgid "Edition de 1 element" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:174 msgid "Aucun statut editable" msgstr "Estatus no editable" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:180 msgid "Les status de certains documents ne sont pas accessible par manque de droits" msgstr "No tienes los permisos necesarios para cambiar algunos estatus de los documentos" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:258 msgid "boutton::remplacer" msgstr "Reemplazar" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:295 msgid "phraseanet:: presse-papier" msgstr "Clipboard" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:303 msgid "prod::editing: rechercher-remplacer" msgstr "Buscar/Reemplazar" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:307 msgid "prod::editing: modeles de fiches" msgstr "Plantilla de titulo" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:335 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:333 msgid "phraseanet::chargement" msgstr "Cargando" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:355 msgid "prod::editing::replace: remplacer dans le champ" msgstr "Reemplazar el campo" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:361 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "Reemplazar en todos los campos" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:386 msgid "prod::editing:replace: chaine a rechercher" msgstr "Encontrar" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:393 msgid "prod::editing:remplace: chaine remplacante" msgstr "Reemplazar con" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:400 msgid "prod::editing:remplace: options de remplacement" msgstr "Opciones" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:406 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "Utilizar una expresion regular" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:437 msgid "Aide sur les expressions regulieres" msgstr "Ayuda con expresiones regulares" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:445 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "Reemplazar todo" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:451 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Case insensitive" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:458 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "Todo el campo" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:464 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "En el campo" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:470 msgid "prod::editing:remplace::option respecter la casse" msgstr "Case sensitive" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:522 msgid "prod::editing:indexation en cours" msgstr "Procesando indexación" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:545 msgid "prod::editing: valider ou annuler les modifications" msgstr "Validar cambios o Anular las modificaciones" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:552 msgid "edit::preset:: titre" msgstr "Titulo" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:561 msgid "Edition impossible" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:570 msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" msgstr "Imposible de editar simultaniamente los documentos ya que provienen de diferentes bases de datos" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:576 msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:612 msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:618 msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "No tienes los permisos necesarios para editar 1 documento" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:778 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Algunos campos deben ser completados para guardar los cambios" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:815 msgid "edit: chosiir limage du regroupement" msgstr "Establecer como cubierta del documento" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:859 msgid "prod::editing::fields: status " msgstr "Estatus " -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:914 msgid "Ce champ est decrit comme un element DublinCore" msgstr "" +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:923 +msgid "This field is represent the title of the document" +msgstr "" + #: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" msgstr "" @@ -5411,51 +5516,51 @@ msgstr "" msgid "report::Edition des meta-donnees" msgstr "edición de matedatos" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:91 +msgid "report::Changement de collection vers : %coll_name%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:97 msgid "report::Edition des status" msgstr "Editar estatus" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:106 msgid "report::Impression des formats : %format%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:115 msgid "report::Substitution de %dest%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:124 msgid "report::Publication de %dest%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:133 msgid "report::Telechargement de %dest%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:145 msgid "Envoi par mail a %dest% de %content%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:157 msgid "Envoi par ftp a %dest% de %content%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:163 msgid "report::supression du document" msgstr "elimnar documento" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:169 msgid "report::ajout du documentt" msgstr "agregar documento" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:175 msgid "report::Modification du document -- je ne me souviens plus de quoi..." msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:192 msgid "report:: par %user_infos%" msgstr "" @@ -5471,23 +5576,23 @@ msgstr "" msgid "Les parametres oauth de votre application." msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:123 msgid "Votre token d'access" msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:127 msgid "Les paramétres oauth de votre application." msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:135 msgid "Token" msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:151 msgid "Le token n'a pas encore ete genere" msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:165 msgid "boutton::generer" msgstr "" @@ -5624,51 +5729,51 @@ msgstr "Algunos campos deben ser completados" msgid "Vous devez selectionner un type de sous definitions" msgstr "Elija un tipo de subviews (keine sau weiß was das sein soll)" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "" - #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 -msgid "You can alternatively receive an email when the download is ready." +msgid "You can not directly download more than %max_download% Mo ; time to package all documents is too long" msgstr "" #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 +msgid "You can alternatively receive an email when the download is ready." +msgstr "" + +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:960 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1127 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1179 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Usar modo pasivo" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1199 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Repetición máxima" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1217 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "carpeta de destinación Ftp" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1235 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Crear directorio" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1265 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1307 msgid "Nom des fichiers a l'export" msgstr "Nombres de fichas para la descarga" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1320 msgid "export::titre: titre du documument" msgstr "Título" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1334 msgid "export::titre: nom original du document" msgstr "Nombre original" @@ -5776,82 +5881,90 @@ msgstr "Commentarios" msgid "boutton::enregistrer" msgstr "Guardar" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:43 msgid "Login" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:61 msgid "First/Last Name" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:97 msgid "E-Mail" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:133 msgid "Last Template" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:151 msgid "Creation date" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:271 +msgid "Previous" +msgstr "" + +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:288 +msgid "Next" +msgstr "" + +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:219 msgid "Create new subdef" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:223 msgid "Delete the subdef ?" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:229 msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:240 msgid "Subdef name" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:245 msgid "classe d'acces" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:254 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:382 msgid "preview" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:258 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:390 msgid "tout le monde" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:336 msgid "Telechargeable" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:354 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:366 msgid "classe" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 msgid "Baseurl" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:435 msgid "Write Metas" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:456 msgid "mediatype" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:637 msgid "yes" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:646 msgid "no" msgstr "" @@ -6061,15 +6174,15 @@ msgstr "" msgid "Back to basket list" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:163 msgid "No records" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:169 msgid "1 record" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:175 msgid "%ElementsCount% records" msgstr "" @@ -6093,13 +6206,29 @@ msgstr "" msgid "Aucune" msgstr "Ninguno" -#: www/admin/adminFeedback.php:297 -#: www/admin/database.php:212 +#: www/admin/adminFeedback.php:69 +msgid "Base empty successful" +msgstr "" + +#: www/admin/adminFeedback.php:85 +#: www/admin/adminFeedback.php:118 +msgid "A task has been creted, please run it to complete empty collection" +msgstr "" + +#: www/admin/adminFeedback.php:91 +#: www/admin/adminFeedback.php:123 +msgid "An error occurred" +msgstr "" + +#: www/admin/adminFeedback.php:96 +msgid "Collection empty successful" +msgstr "" + +#: www/admin/adminFeedback.php:316 msgid "admin::base: aucun alias" msgstr "sin alias" -#: www/admin/adminFeedback.php:387 -#: www/admin/database.php:255 +#: www/admin/adminFeedback.php:406 msgid "admin::base: vider la base avant de la supprimer" msgstr "Vaciar base de datos antes de eliminar" @@ -6144,119 +6273,120 @@ msgstr "Error al enviar el archivo" msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Confirmar vaciado de la colección?" -#: www/admin/collection.php:302 +#: www/admin/collection.php:303 msgid "admin::base:collection: etes vous sur de demonter cette collection ?" msgstr "Confirmar desmontaje de esta colección?" -#: www/admin/collection.php:316 +#: www/admin/collection.php:317 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Publicar esta colección" -#: www/admin/collection.php:321 +#: www/admin/collection.php:322 msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" msgstr "Detener la publicación de la colección" -#: www/admin/collection.php:391 -#: www/admin/database.php:430 +#: www/admin/collection.php:392 +#: www/admin/database.php:431 msgid "phraseanet:: collection" msgstr "Colección" -#: www/admin/collection.php:398 +#: www/admin/collection.php:399 msgid "admin::base:collection: numero de collection distante" msgstr "" -#: www/admin/collection.php:402 +#: www/admin/collection.php:403 msgid "admin::base:collection: etat de la collection" msgstr "Estado de la colección" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: activer la collection" msgstr "activar la colección" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: descativer la collection" msgstr "Desactivar la colección" -#: www/admin/collection.php:413 -#: www/admin/database.php:398 +#: www/admin/collection.php:414 +#: www/admin/database.php:399 msgid "phraseanet:: details" msgstr "Detalles" -#: www/admin/collection.php:423 -#: www/admin/database.php:420 +#: www/admin/collection.php:424 +#: www/admin/database.php:421 msgid "admin::base: masquer les details" msgstr "Esconder detalles" -#: www/admin/collection.php:439 -#: www/admin/database.php:435 +#: www/admin/collection.php:440 +#: www/admin/database.php:436 msgid "admin::base: objet" msgstr "Objeto" -#: www/admin/collection.php:443 -#: www/admin/database.php:437 +#: www/admin/collection.php:444 +#: www/admin/database.php:438 msgid "admin::base: nombre" msgstr "Número" -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 -#: www/admin/database.php:438 +#: www/admin/collection.php:447 +#: www/admin/collection.php:450 #: www/admin/database.php:439 +#: www/admin/database.php:440 msgid "admin::base: poids" msgstr "Tamaño" -#: www/admin/collection.php:590 +#: www/admin/collection.php:591 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Administración de commandos" -#: www/admin/collection.php:605 +#: www/admin/collection.php:606 msgid "setup:: ajouter un administrateur des commandes" msgstr "Agregar un nuevo administrador de commandos" -#: www/admin/collection.php:623 +#: www/admin/collection.php:624 msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" msgstr "Mostrar las opciones para documentos compartidos afuera de Phrasenet" -#: www/admin/collection.php:625 +#: www/admin/collection.php:626 msgid "admin::colelction::presentation des elements : rien" msgstr "Defecto" -#: www/admin/collection.php:626 +#: www/admin/collection.php:627 msgid "admin::colelction::presentation des elements : watermark" msgstr "watermark" -#: www/admin/collection.php:627 +#: www/admin/collection.php:628 msgid "admin::colelction::presentation des elements : stamp" msgstr "sello" -#: www/admin/collection.php:633 +#: www/admin/collection.php:634 msgid "admin::base:collection: renommer la collection" msgstr "Renombrar la colección" -#: www/admin/collection.php:640 +#: www/admin/collection.php:641 +#: www/admin/newcoll.php:142 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "Nombre : " -#: www/admin/collection.php:665 +#: www/admin/collection.php:666 msgid "admin::base:collection: vider la collection" msgstr "Vaciar la colección" -#: www/admin/collection.php:679 +#: www/admin/collection.php:680 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Confimrar la eliminación de la colección?" -#: www/admin/collection.php:692 +#: www/admin/collection.php:693 msgid "admin::base:collection: minilogo actuel" msgstr "minilogo actual" -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 -#: www/admin/database.php:724 +#: www/admin/collection.php:713 +#: www/admin/collection.php:743 +#: www/admin/database.php:725 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "ningún archivo" -#: www/admin/collection.php:781 +#: www/admin/collection.php:782 msgid "admin::base:collection: image de presentation : " msgstr "banner de introducción de la colección " @@ -6290,7 +6420,7 @@ msgid "Confirmez-vous la re-indexation de la base ?" msgstr "" #: www/admin/database.php:174 -#: www/admin/database.php:378 +#: www/admin/database.php:379 msgid "admin::base: Alias" msgstr "Alias" @@ -6298,310 +6428,316 @@ msgstr "Alias" msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Eliminar todo el contenido de la base de datos ?" -#: www/admin/database.php:259 +#: www/admin/database.php:260 msgid "admin::base: Confirmer la suppression de la base" msgstr "Confirmar la eliminación de la base de datos" -#: www/admin/database.php:286 +#: www/admin/database.php:287 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "Confirmar eliminación del log completo de la base de datos ?" -#: www/admin/database.php:312 +#: www/admin/database.php:313 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Parar publicación de base de datos" -#: www/admin/database.php:394 +#: www/admin/database.php:395 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Registros en la base de datos :" -#: www/admin/database.php:405 +#: www/admin/database.php:406 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "Palabras únicas : " -#: www/admin/database.php:410 +#: www/admin/database.php:411 msgid "admin::base: nombre de mots indexes sur la base" msgstr "palabras indexadas :" -#: www/admin/database.php:417 +#: www/admin/database.php:418 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "términos indexados en el tesauro :" -#: www/admin/database.php:471 +#: www/admin/database.php:472 msgid "admin::base: enregistrements orphelins" msgstr "registros huérfanos" -#: www/admin/database.php:505 -#: www/admin/database.php:522 +#: www/admin/database.php:506 +#: www/admin/database.php:523 msgid "report:: total" msgstr "total" -#: www/admin/database.php:547 +#: www/admin/database.php:548 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "documentos indexados mediante el formulario xml" -#: www/admin/database.php:557 +#: www/admin/database.php:558 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "documentos indexados por el tesauro" -#: www/admin/database.php:573 +#: www/admin/database.php:574 msgid "admin::base: Cette base est indexable" msgstr "ese base de datos puede ser indexada" -#: www/admin/database.php:580 +#: www/admin/database.php:581 msgid "base:: re-indexer" msgstr "Re-indexar base de datos ahora (dependiendo de la cantidad de documentos, esa operación puede tardar varias horas)" -#: www/admin/database.php:588 +#: www/admin/database.php:589 +#: www/admin/newcoll.php:122 msgid "admin::base:collection: Creer une collection" msgstr "Crear colección" -#: www/admin/database.php:600 +#: www/admin/database.php:601 msgid "admin::base:collection: Monter une collection" msgstr "" -#: www/admin/database.php:621 +#: www/admin/database.php:622 +#: www/admin/newcoll.php:152 msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " msgstr "Usted puede elegir una colección de referencia para faculitar el acceso " -#: www/admin/database.php:635 +#: www/admin/database.php:636 msgid "Monter" msgstr "" -#: www/admin/database.php:649 +#: www/admin/database.php:650 msgid "Activer une collection" msgstr "" -#: www/admin/database.php:675 +#: www/admin/database.php:676 msgid "admin::base: supprimer tous les logs" msgstr "Eliminar todos logs" -#: www/admin/database.php:681 +#: www/admin/database.php:682 msgid "admin::base: arreter la publication de la base" msgstr "detener la publicación de la base de datos" -#: www/admin/database.php:687 +#: www/admin/database.php:688 msgid "admin::base: vider la base" msgstr "vaciar base de datos" -#: www/admin/database.php:693 +#: www/admin/database.php:694 msgid "admin::base: supprimer la base" msgstr "eliminar base de datos" -#: www/admin/database.php:703 +#: www/admin/database.php:704 msgid "admin::base: logo impression PDF" msgstr "Imprimir Logo" -#: www/admin/database.php:716 +#: www/admin/database.php:717 msgid "admin::base:collection: supprimer le logo" msgstr "Eliminar logo" -#: www/admin/database.php:739 +#: www/admin/database.php:740 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Subir Logo (Altura 35px max., jpeg)" -#: www/admin/databases.php:66 +#: www/admin/databases.php:67 msgid "Propositions de modifications des tables" msgstr "" -#: www/admin/databases.php:75 +#: www/admin/databases.php:76 msgid "N'oubliez pas de redemarrer le planificateur de taches" msgstr "Recuerde que debe reiniciar el planificador de tareas" -#: www/admin/databases.php:82 +#: www/admin/databases.php:83 msgid "Veuillez arreter le planificateur avant la mise a jour" msgstr "Por favor pare el planificador antes de actualizar" -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 +#: www/admin/databases.php:94 +#: www/admin/databases.php:140 +#: www/admin/databases.php:167 msgid "Database name can not contains special characters" msgstr "" -#: www/admin/databases.php:134 +#: www/admin/databases.php:129 msgid "Database does not exists or can not be accessed" msgstr "" -#: www/admin/databases.php:329 +#: www/admin/databases.php:318 msgid "admin::base: Version" msgstr "Versión" -#: www/admin/databases.php:334 +#: www/admin/databases.php:323 msgid "update::Votre application necessite une mise a jour vers : " msgstr "Su aplicación necesita una actualización a : " -#: www/admin/databases.php:340 +#: www/admin/databases.php:329 msgid "update::Votre version est a jour : " msgstr "Su versión está actualizada " -#: www/admin/databases.php:346 +#: www/admin/databases.php:335 msgid "update::Verifier els tables" msgstr "Comprobar tablas" -#: www/admin/databases.php:351 +#: www/admin/databases.php:340 msgid "admin::base: creer une base" msgstr "Crear una nueva base de datos" -#: www/admin/databases.php:355 +#: www/admin/databases.php:344 msgid "phraseanet:: Creer une base sur un serveur different de l'application box" msgstr "Crear una nueva base de datos en otro servidor" -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 +#: www/admin/databases.php:348 +#: www/admin/databases.php:400 msgid "phraseanet:: hostname" msgstr "Nombre del host" -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 +#: www/admin/databases.php:354 +#: www/admin/databases.php:406 msgid "phraseanet:: user" msgstr "Usuario" -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 +#: www/admin/databases.php:357 +#: www/admin/databases.php:409 msgid "phraseanet:: password" msgstr "Contraseña" -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 +#: www/admin/databases.php:361 +#: www/admin/databases.php:413 msgid "phraseanet:: dbname" msgstr "nombre de la base de datos" -#: www/admin/databases.php:375 +#: www/admin/databases.php:364 msgid "phraseanet:: Modele de donnees" msgstr "plantilla de estructura XML" -#: www/admin/databases.php:397 +#: www/admin/databases.php:386 msgid "boutton::creer" msgstr "Crear" -#: www/admin/databases.php:403 +#: www/admin/databases.php:392 msgid "admin::base: Monter une base" msgstr "Crear base de datos" -#: www/admin/databases.php:407 +#: www/admin/databases.php:396 msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" msgstr "Crear base de datos de un host lejano." -#: www/admin/databases.php:428 +#: www/admin/databases.php:417 msgid "boutton::monter" msgstr "Crear" -#: www/admin/demand.php:366 +#: www/admin/demand.php:372 msgid "admin:: demandes en cours" msgstr "procesando registración" -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 +#: www/admin/demand.php:377 +#: www/admin/demand.php:504 msgid "admin:: refuser l'acces" msgstr "Rechazar acceso" -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 +#: www/admin/demand.php:378 +#: www/admin/demand.php:507 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "Permitir vista y descarga para las vistas previas" -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 +#: www/admin/demand.php:379 +#: www/admin/demand.php:510 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "Permitir la descarga de vistas previas y documentos" -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 +#: www/admin/demand.php:380 +#: www/admin/demand.php:513 msgid "admin:: watermarquer les documents" msgstr "Aplicar watermark en las vistas previas" -#: www/admin/demand.php:377 +#: www/admin/demand.php:383 msgid "admin::compte-utilisateur date d'inscription" msgstr "Registrar" -#: www/admin/demand.php:378 +#: www/admin/demand.php:384 msgid "admin::collection" msgstr "Colección" -#: www/admin/demand.php:480 +#: www/admin/demand.php:486 msgid "admin:: appliquer le modele " msgstr "Aplicar plantilla " -#: www/admin/newcoll.php:42 +#: www/admin/newcoll.php:43 msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" msgstr "La colección no fue creada, tiene que tener un nombre." -#: www/admin/sessionwhois.php:58 +#: www/admin/newcoll.php:175 +msgid "Collection successfully created" +msgstr "" + +#: www/admin/sessionwhois.php:59 msgid "admin::monitor: utilisateur" msgstr "Usuario" -#: www/admin/sessionwhois.php:59 +#: www/admin/sessionwhois.php:60 msgid "admin::monitor: modules" msgstr "Módulos" -#: www/admin/sessionwhois.php:61 +#: www/admin/sessionwhois.php:62 msgid "admin::monitor: date de connexion" msgstr "" -#: www/admin/sessionwhois.php:62 +#: www/admin/sessionwhois.php:63 msgid "admin::monitor: dernier access" msgstr "" -#: www/admin/sessionwhois.php:101 +#: www/admin/sessionwhois.php:102 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "bases de datos conectadas " -#: www/admin/sessionwhois.php:116 +#: www/admin/sessionwhois.php:117 msgid "Session persistente" msgstr "" -#: www/admin/sessionwhois.php:134 +#: www/admin/sessionwhois.php:135 msgid "admin::monitor: module inconnu" msgstr "módulo desconocido" -#: www/admin/sessionwhois.php:243 +#: www/admin/sessionwhois.php:244 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Usuario único " -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" -msgstr "no hay conexión con el servidor memcached" +#: www/admin/sitestruct.php:187 +msgid "all caches services have been flushed" +msgstr "" -#: www/admin/sitestruct.php:189 +#: www/admin/sitestruct.php:193 msgid "setup:: administrateurs de l'application" msgstr "Administratores" -#: www/admin/sitestruct.php:201 +#: www/admin/sitestruct.php:205 msgid "setup:: ajouter un administrateur de l'application" msgstr "Agregar un administrador" -#: www/admin/sitestruct.php:207 +#: www/admin/sitestruct.php:211 msgid "setup:: Reinitialisation des droits admins" msgstr "restablecimiento de los derechos de administrador" -#: www/admin/sitestruct.php:211 +#: www/admin/sitestruct.php:215 msgid "boutton::reinitialiser" msgstr "Reiniciar" -#: www/admin/sitestruct.php:214 +#: www/admin/sitestruct.php:218 msgid "setup:: Reglages generaux" msgstr "Ajustes generles" -#: www/admin/sitestruct.php:216 +#: www/admin/sitestruct.php:220 msgid "setup::Votre configuration" msgstr "Su configuración" -#: www/admin/sitestruct.php:244 +#: www/admin/sitestruct.php:248 msgid "setup::Filesystem configuration" msgstr "configuración del sistema de archivo" -#: www/admin/sitestruct.php:258 +#: www/admin/sitestruct.php:262 msgid "setup::Executables" msgstr "ejecutables" -#: www/admin/sitestruct.php:272 +#: www/admin/sitestruct.php:276 msgid "setup::PHP extensions" msgstr "extensiones PHP" -#: www/admin/sitestruct.php:285 +#: www/admin/sitestruct.php:289 msgid "setup::Serveur de cache" msgstr "" -#: www/admin/sitestruct.php:304 +#: www/admin/sitestruct.php:308 msgid "Phrasea Module" msgstr "Phrasea Module" @@ -6716,29 +6852,29 @@ msgstr "Mostrar ilustraciones encima de las miniaturas, visible para todos" msgid "admin::status: confirmer la suppression du status ?" msgstr "Confirmar la eliminación estado ?" -#: www/admin/structure.php:76 +#: www/admin/structure.php:77 msgid "admin::base: structure" msgstr "estructura" -#: www/admin/structure.php:91 +#: www/admin/structure.php:92 msgid "admin::base: xml invalide, les changements ne seront pas appliques" msgstr "XML no está válido, no es posible aplicar los cambios" -#: www/admin/sugval.php:934 +#: www/admin/sugval.php:935 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" "Continuer quand meme ?" msgstr "Atención, pasar a modo gráfico implica la péridada de las modificaciones de xml si usted no las guarda. Desea continuar?" -#: www/admin/sugval.php:966 +#: www/admin/sugval.php:967 msgid "Suggested values" msgstr "" -#: www/admin/sugval.php:983 +#: www/admin/sugval.php:984 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Valores sugeridos/ Configuración de la colección" -#: www/admin/sugval.php:1008 +#: www/admin/sugval.php:1009 msgid "admin::sugval: champs" msgstr "Campos" @@ -6747,235 +6883,223 @@ msgstr "Campos" msgid "admin::tasks: xml invalide, restaurer la version precedente ?" msgstr "Xml no válido, restaurar la versión anterior?" -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 +#: www/admin/taskmanager.php:261 +#: www/admin/taskmanager.php:595 msgid "admin::tasks: supprimer la tache ?" msgstr "eliminar tarea ?" -#: www/admin/taskmanager.php:278 +#: www/admin/taskmanager.php:280 msgid "Fermer" msgstr "" -#: www/admin/taskmanager.php:279 +#: www/admin/taskmanager.php:281 msgid "Renouveller" msgstr "" -#: www/admin/taskmanager.php:470 +#: www/admin/taskmanager.php:472 msgid "admin::tasks: planificateur de taches" msgstr "planificador de tareas" -#: www/admin/taskmanager.php:478 +#: www/admin/taskmanager.php:480 #, php-format msgid "Last update at %s." msgstr "" -#: www/admin/taskmanager.php:479 +#: www/admin/taskmanager.php:481 msgid "admin::tasks: Nouvelle tache" msgstr "Nueva tarea" -#: www/admin/taskmanager.php:486 +#: www/admin/taskmanager.php:488 msgid "admin::tasks: statut de la tache" msgstr "estado" -#: www/admin/taskmanager.php:487 +#: www/admin/taskmanager.php:489 msgid "admin::tasks: process_id de la tache" msgstr "Task Process_id" -#: www/admin/taskmanager.php:488 +#: www/admin/taskmanager.php:490 msgid "admin::tasks: etat de progression de la tache" msgstr "estado del avance del proceso" -#: www/admin/taskmanager.php:751 +#: www/admin/taskmanager.php:753 msgid "Preferences du TaskManager" msgstr "" -#: www/admin/taskmanager.php:753 +#: www/admin/taskmanager.php:755 msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" msgstr "" -#: www/client/answer.php:186 +#: www/client/answer.php:182 msgid "client::answers: rapport de questions par bases" msgstr "reporte de preguntas" -#: www/client/answer.php:191 +#: www/client/answer.php:187 #, php-format msgid "client::answers: %d reponses" msgstr "%d resultado(s)" -#: www/client/answer.php:488 +#: www/client/answer.php:486 msgid "reponses:: Votre recherche ne retourne aucun resultat" msgstr "Su búsqueda no dio ningún resultado" -#: www/client/baskets.php:130 +#: www/client/baskets.php:124 msgid "paniers::categories: mes paniers" msgstr "Mis canastas" -#: www/client/baskets.php:136 +#: www/client/baskets.php:130 msgid "paniers::categories: paniers recus" msgstr "Las canastas fueron recibidas" -#: www/client/baskets.php:153 +#: www/client/baskets.php:147 #, php-format msgid "paniers:: %d documents dans le panier" msgstr "%d documento(s)" -#: www/client/baskets.php:158 +#: www/client/baskets.php:152 #, php-format msgid "paniers:: paniers:: %d documents dans le panier" msgstr "%d documento(s)" -#: www/client/baskets.php:179 +#: www/client/baskets.php:173 msgid "action : ouvrir dans le comparateur" msgstr "Iniciar Lighbox" -#: www/client/baskets.php:188 +#: www/client/baskets.php:182 #, php-format msgid "paniers:: panier emis par %s" msgstr "La canasta fue enviada por %s" -#: www/client/baskets.php:266 +#: www/client/baskets.php:260 msgid "paniers:: vous avez de nouveaux paniers non consultes" msgstr "Se recicibió nuevas canastas" #: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "%b, %d %Y %l:%s %p" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "%d-%m-%Y" - -#: www/client/homeinterpubbask.php:80 msgid "publications:: dernieres publications" msgstr "últimas publicaciones" -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "publicación sin leer" - -#: www/client/homeinterpubbask.php:140 +#: www/client/homeinterpubbask.php:68 msgid "publications:: derniere mise a jour" msgstr "últia actualización" -#: www/client/index.php:152 +#: www/client/index.php:161 msgid "client:: recherche" msgstr "Buscar" -#: www/client/index.php:159 +#: www/client/index.php:168 msgid "client:: recherche avancee" msgstr "Búsqueda avanzada" -#: www/client/index.php:166 +#: www/client/index.php:175 msgid "client:: topics" msgstr "Temas" -#: www/client/index.php:188 -#: www/client/index.php:196 +#: www/client/index.php:197 +#: www/client/index.php:205 msgid "phraseanet::technique:: et" msgstr "y" -#: www/client/index.php:189 -#: www/client/index.php:197 +#: www/client/index.php:198 +#: www/client/index.php:206 msgid "phraseanet::technique:: or" msgstr "O" -#: www/client/index.php:190 -#: www/client/index.php:198 +#: www/client/index.php:199 +#: www/client/index.php:207 msgid "phraseanet::technique:: except" msgstr "salvo" -#: www/client/index.php:210 +#: www/client/index.php:219 msgid "client::recherche: rechercher dans les bases :" msgstr "buscar" -#: www/client/index.php:263 +#: www/client/index.php:261 msgid "client::recherche: rechercher dans toutes les bases" msgstr "todas las bases de datos" -#: www/client/index.php:272 +#: www/client/index.php:268 msgid "phraseanet:: presentation des resultats" msgstr "Mostrar ajustes" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "phraseanet:: collections" msgstr "Colecciones" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" msgstr "haz clic para desactivar todos los filtros" -#: www/client/index.php:342 +#: www/client/index.php:338 msgid "phraseanet:: historique" msgstr "historial" -#: www/client/index.php:374 +#: www/client/index.php:368 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "haz clic para desactivar todos los filtros" -#: www/client/index.php:465 +#: www/client/index.php:437 msgid "client::recherche: filter sur" msgstr "filtro de" -#: www/client/index.php:468 +#: www/client/index.php:440 msgid "client::recherche: filtrer par dates" msgstr "por fecha" -#: www/client/index.php:470 +#: www/client/index.php:442 msgid "client::recherche: filtrer par status" msgstr "por estado" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs" msgstr "por campo" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "todos campos" -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 +#: www/include/download_anonymous.php:73 +#: www/include/download_anonymous.php:116 +#: www/include/download_prepare.php:108 +#: www/include/download_prepare.php:151 msgid "phraseanet:: Telechargement de documents" msgstr "Download Manager" -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 +#: www/include/download_anonymous.php:121 +#: www/include/download_prepare.php:153 msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." msgstr "Gracias por esperar, los archivos están siendo reunidos para la descarga, esta operación puede tardar varios minutos." -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 +#: www/include/download_anonymous.php:128 +#: www/include/download_prepare.php:158 #, php-format msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" msgstr "Los documentos están listos. Si la descarga no se inicia, % s haga clic aquí % s" -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 +#: www/include/download_anonymous.php:133 +#: www/include/download_prepare.php:161 msgid "telechargement::Le fichier contient les elements suivants" msgstr "El archivo contiene los siguientes documentos" -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 +#: www/include/download_anonymous.php:137 +#: www/include/download_prepare.php:165 msgid "phrseanet:: base" msgstr "base de datos" -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 +#: www/include/download_anonymous.php:138 +#: www/include/download_prepare.php:166 msgid "document:: nom" msgstr "Nombre del documento" -#: www/include/download_anonymous.php:137 -#: www/include/download_prepare.php:165 +#: www/include/download_anonymous.php:139 +#: www/include/download_prepare.php:167 msgid "phrseanet:: sous definition" msgstr "tipo de documento" -#: www/include/download_anonymous.php:138 -#: www/include/download_prepare.php:166 +#: www/include/download_anonymous.php:140 +#: www/include/download_prepare.php:168 msgid "poids" msgstr "tamaño" -#: www/include/download_anonymous.php:172 +#: www/include/download_anonymous.php:174 msgid "Votre lien est corrompu" msgstr "Su enlance está dañado" @@ -7011,613 +7135,561 @@ msgstr "Ocurrió un error interno. La coneción al servidor fue interrumpida." msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" msgstr "Si el problema persiste, póngase en contacto con el administrador del servidor" -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "error al mandar correos electrónicos a la(s)%s direccione(s)" - -#: www/include/updses.php:92 +#: www/include/updses.php:93 msgid "The application is going down for maintenance, please logout." msgstr "La aplicación va de servicio por mantenimiento, por favor, cierre de sesión." -#: www/login/account.php:181 +#: www/login/account.php:182 msgid "etes vous sur de vouloir supprimer cette application" msgstr "" -#: www/login/account.php:188 +#: www/login/account.php:183 +msgid "oui" +msgstr "" + +#: www/login/account.php:184 +msgid "non" +msgstr "" + +#: www/login/account.php:189 msgid "Erreur lors du chargement" msgstr "" -#: www/login/account.php:412 +#: www/login/account.php:413 msgid "Informations" msgstr "" -#: www/login/account.php:413 +#: www/login/account.php:414 msgid "Acces" msgstr "" -#: www/login/account.php:414 +#: www/login/account.php:415 msgid "Sessions" msgstr "" -#: www/login/account.php:416 +#: www/login/account.php:417 msgid "Developpeur" msgstr "" -#: www/login/account.php:431 -#: www/login/index.php:110 +#: www/login/account.php:432 +#: www/login/index.php:112 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "actualización de la contraseña exitosa." -#: www/login/account.php:434 +#: www/login/account.php:435 msgid "login::notification: Changements enregistres" msgstr "los cambios fueron guardados" -#: www/login/account.php:437 +#: www/login/account.php:438 msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Error al guardar cambios" -#: www/login/account.php:440 +#: www/login/account.php:441 msgid "login::notification: Vos demandes ont ete prises en compte" msgstr "sus solicitudes están en proceso" -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 -#: www/login/reset-email.php:44 -#: www/login/reset-email.php:55 -#: www/login/reset-email.php:78 -#: www/login/reset-email.php:89 -#: www/login/reset-email.php:158 -#: www/login/reset-email.php:207 +#: www/login/account.php:456 +#: www/login/forgotpwd.php:100 +#: www/login/reset-email.php:46 +#: www/login/reset-email.php:57 +#: www/login/reset-email.php:80 +#: www/login/reset-email.php:91 +#: www/login/reset-email.php:160 +#: www/login/reset-email.php:209 +#: www/login/reset-password.php:140 msgid "admin::compte-utilisateur changer mon mot de passe" msgstr "cambiar la contraseña" -#: www/login/account.php:497 +#: www/login/account.php:498 msgid "login:: Changer mon adresse email" msgstr "cambiar mi correo" -#: www/login/account.php:603 +#: www/login/account.php:604 msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" msgstr "Activar función FTP" -#: www/login/account.php:644 +#: www/login/account.php:645 msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" msgstr "memoria de prefijos de nombres de los archivos" -#: www/login/account.php:665 +#: www/login/account.php:666 msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" msgstr "Los datos fueron enviados automáticamente a través de FTP" -#: www/login/account.php:667 +#: www/login/account.php:668 msgid "phraseanet:: original" msgstr "Original" -#: www/login/account.php:669 +#: www/login/account.php:670 msgid "phraseanet:: imagette" msgstr "miniatura" -#: www/login/forgotpwd.php:71 -#: www/login/register.php:102 +#: www/login/forgotpwd.php:73 +#: www/login/register.php:101 +#: www/login/reset-password.php:53 msgid "forms::la valeur donnee contient des caracteres invalides" msgstr "el valor contiene carácteros no válidos" -#: www/login/forgotpwd.php:175 +#: www/login/forgotpwd.php:177 msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." msgstr "" -#: www/login/forgotpwd.php:176 +#: www/login/forgotpwd.php:178 msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." msgstr "" -#: www/login/forgotpwd.php:184 +#: www/login/forgotpwd.php:186 +#: www/login/reset-password.php:171 msgid "admin::compte-utilisateur nouveau mot de passe" msgstr "Nueva conraseña" -#: www/login/forgotpwd.php:204 +#: www/login/forgotpwd.php:206 +#: www/login/reset-password.php:185 msgid "admin::compte-utilisateur confirmer le mot de passe" msgstr "Confirmar contraseña" -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 +#: www/login/forgotpwd.php:225 +#: www/login/forgotpwd.php:287 msgid "login:: Retour a l'accueil" msgstr "Regresar a la página inicial." -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 +#: www/login/forgotpwd.php:252 +#: www/login/forgotpwd.php:258 msgid "phraseanet::erreur: Echec du serveur mail" msgstr "Error del servidor de correo electrónico" -#: www/login/forgotpwd.php:253 +#: www/login/forgotpwd.php:255 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "esa cuenta no existe" -#: www/login/forgotpwd.php:259 +#: www/login/forgotpwd.php:261 msgid "phraseanet::erreur: l'url n'est plus valide" msgstr "ese Url ya no existe" -#: www/login/forgotpwd.php:268 +#: www/login/forgotpwd.php:270 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "un correo fue enviado" -#: www/login/forgotpwd.php:278 +#: www/login/forgotpwd.php:280 msgid "login:: Entrez votre adresse email" msgstr "Entre su correo electrónico." -#: www/login/index.php:68 +#: www/login/index.php:70 msgid "login::erreur: Erreur d'authentification" msgstr "error de autentificación" -#: www/login/index.php:71 +#: www/login/index.php:73 msgid "login::erreur: Erreur de captcha" msgstr "error de captcha" -#: www/login/index.php:74 +#: www/login/index.php:76 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "Acceso denegado, no ha confirmado su correo electrónico." -#: www/login/index.php:76 +#: www/login/index.php:78 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "Mándame un nuevo correo de confirmación." -#: www/login/index.php:79 +#: www/login/index.php:81 msgid "login::erreur: Aucune base n'est actuellment accessible" msgstr "Actualmente no tiene acceso a ninguna colección." -#: www/login/index.php:82 +#: www/login/index.php:84 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" -#: www/login/index.php:85 +#: www/login/index.php:87 msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" msgstr "Mantenimiento en progreso. Por favor, inténte de conectar más tarde." -#: www/login/index.php:97 +#: www/login/index.php:99 msgid "login::notification: cette email est deja confirmee" msgstr "ese correo ya está confirmado" -#: www/login/index.php:100 +#: www/login/index.php:102 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "la confirmación fue enviada" -#: www/login/index.php:103 -#: www/login/index.php:106 +#: www/login/index.php:105 +#: www/login/index.php:108 msgid "login::notification: votre email est desormais confirme" msgstr "su correo está confirmado" -#: www/login/index.php:123 +#: www/login/index.php:125 msgid "login::captcha: obtenir une autre captcha" msgstr "Optener otro captcha" -#: www/login/index.php:126 +#: www/login/index.php:128 msgid "login::captcha: recopier les mots ci dessous" msgstr "Copiar las palabras abajo" -#: www/login/index.php:139 +#: www/login/index.php:141 msgid "Accueil" msgstr "Inicio" -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 +#: www/login/register.php:106 +#: www/login/register.php:290 +#: www/login/reset-email.php:147 +#: www/login/reset-email.php:187 msgid "forms::l'email semble invalide" msgstr "el correo parece inválido" -#: www/login/register.php:124 +#: www/login/register.php:123 msgid "forms::un utilisateur utilisant cette adresse email existe deja" msgstr "un usuario que utiliza esta dirección de correo electrónico ya existe" -#: www/login/register.php:129 +#: www/login/register.php:128 msgid "forms::un utilisateur utilisant ce login existe deja" msgstr "ese nombre de usuario ya está ocupado" -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" +#: www/login/register.php:292 +msgid "login invalide (5 caracteres sans accents ni espaces)" msgstr "" -#: www/login/register.php:298 +#: www/login/register.php:304 +#: www/login/reset-password.php:92 msgid "forms::le mot de passe est simple" msgstr "" -#: www/login/register.php:375 -#: www/login/register.php:392 +#: www/login/register.php:379 +msgid "5 caracteres minimum" +msgstr "" + +#: www/login/register.php:396 +#: www/login/reset-password.php:172 msgid "8 caracteres minimum" msgstr "" -#: www/login/register.php:400 +#: www/login/register.php:404 msgid "Resistance du mot de passe" msgstr "" -#: www/login/register.php:426 +#: www/login/register.php:430 msgid "admin::compte-utilisateur A propos de la securite des mots de passe" msgstr "" -#: www/login/reset-email.php:62 +#: www/login/reset-email.php:64 msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" msgstr "correo actualizado" -#: www/login/reset-email.php:63 +#: www/login/reset-email.php:65 msgid "accueil:: retour a l'accueil" msgstr "Regresar al Inicio" -#: www/login/reset-email.php:96 +#: www/login/reset-email.php:98 msgid "admin::compte-utilisateur: erreur lors de la mise a jour" msgstr "" -#: www/login/reset-email.php:142 +#: www/login/reset-email.php:144 msgid "phraseanet::erreur: echec du serveur de mail" msgstr "error del servidor de correo" -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 +#: www/login/reset-email.php:150 +#: www/login/reset-email.php:191 msgid "forms::les emails ne correspondent pas" msgstr "los correos no corresponden" -#: www/login/reset-email.php:152 +#: www/login/reset-email.php:154 +#: www/login/reset-password.php:68 msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" msgstr "Contraseña equivocada" -#: www/login/reset-email.php:217 +#: www/login/reset-email.php:219 msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" msgstr "un correo electrónico de confirmación ha sido enviado. Por favor, siga las instrucciones para continuar" -#: www/login/reset-email.php:221 +#: www/login/reset-email.php:223 msgid "admin::compte-utilisateur retour a mon compte" msgstr "Regresar a mi cuenta" -#: www/login/reset-email.php:230 +#: www/login/reset-email.php:232 +#: www/login/reset-password.php:150 msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" msgstr "Upps ! Un error ha ocurrido!" -#: www/login/reset-email.php:251 +#: www/login/reset-email.php:253 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "Nuevo correo electrónico" -#: www/login/reset-email.php:256 +#: www/login/reset-email.php:258 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "confirmar correo electrónico" -#: www/login/reset-email.php:265 +#: www/login/reset-email.php:267 msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" msgstr "Por que me demanda la contraseña para cambiar el correo?" -#: www/login/reset-email.php:266 +#: www/login/reset-email.php:268 msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." msgstr "se utiliza su correo en caso de una pérdida de la contraseña, es importante que usted es la única persona capaz de cambiarlo." -#: www/login/reset-password.php:160 +#: www/login/reset-password.php:162 msgid "admin::compte-utilisateur ancien mot de passe" msgstr "Vieja contraseña" -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "%d resultados" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "%d resultado(s)" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "%s documento(s) seleccionado(s)." - -#: www/prod/chghddocument.php:42 +#: www/prod/chghddocument.php:39 msgid "prod::substitution::erreur : document de substitution invalide" msgstr "Formativo del archivo invalido" -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 +#: www/prod/chghddocument.php:61 +#: www/prod/chgthumb.php:49 msgid "prod::substitution::document remplace avec succes" msgstr "Documento reemplazado" -#: www/prod/chgstatus.php:130 +#: www/prod/chgstatus.php:131 #, php-format msgid "prod::proprietes : %d documents modifies" msgstr "%d documentos modificados" -#: www/prod/chgthumb.php:42 +#: www/prod/chgthumb.php:44 msgid "prod::substitution::erreur : impossible d'ajouter ce document" msgstr "Documento no puede ser agregado" -#: www/prod/docfunction.php:327 +#: www/prod/docfunction.php:337 msgid "prod::proprietes:: status" msgstr "Estatus" -#: www/prod/docfunction.php:328 +#: www/prod/docfunction.php:338 msgid "prod::proprietes:: type" msgstr "Tipo" -#: www/prod/docfunction.php:356 +#: www/prod/docfunction.php:366 #, php-format msgid "prod::status: edition de status de %d regroupements" msgstr "Edicion de estatus de %d historial" -#: www/prod/docfunction.php:358 +#: www/prod/docfunction.php:368 #, php-format msgid "prod::status: edition de status de %d documents" msgstr "Edicion de estatus de %d documentos" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remettre a zero les status non nommes" msgstr "Fijar en 0 los estatus sin nombre" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remetter a zero tous les status" msgstr "Fijar en 0 todos los estatus sin nombre" -#: www/prod/docfunction.php:408 +#: www/prod/docfunction.php:418 msgid "prod::status: aucun status n'est defini sur cette base" msgstr "No hay un estatus definido para esta base de datos" -#: www/prod/docfunction.php:424 +#: www/prod/docfunction.php:434 msgid "prod::status: changer egalement le status des document rattaches aux regroupements" msgstr "Cambiar tambien el estatus para documentos ligados a historias" -#: www/prod/docfunction.php:454 +#: www/prod/docfunction.php:464 #, php-format msgid "prod::status: %d documents ne peuvent avoir une edition des status" msgstr "Edicion de estatus imposible para %d documentos" -#: www/prod/docfunction.php:461 +#: www/prod/docfunction.php:471 msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" msgstr "No tienes los permisos necesarios para cambiar el estatus de los documentos seleccionados" -#: www/prod/docfunction.php:496 +#: www/prod/docfunction.php:506 msgid "prod::type: appliquer a tous les documents selectionnes" msgstr "Aplicar a todos los documentos seleccionados" -#: www/prod/imgfunction.php:137 +#: www/prod/imgfunction.php:139 msgid "prod::tools: regeneration de sous definitions" msgstr "Reconstruir subview/ preview? = vista preliminar" -#: www/prod/imgfunction.php:138 +#: www/prod/imgfunction.php:140 msgid "prod::tools: outils image" msgstr "Girar subview" -#: www/prod/imgfunction.php:143 +#: www/prod/imgfunction.php:145 msgid "prod::tools: substitution HD" msgstr "Reemplazar documento" -#: www/prod/imgfunction.php:148 +#: www/prod/imgfunction.php:150 msgid "prod::tools: substitution de sous definition" msgstr "Reemplazar subviews" -#: www/prod/imgfunction.php:153 +#: www/prod/imgfunction.php:155 msgid "prod::tools: meta-datas" msgstr "Metadatos" -#: www/prod/imgfunction.php:163 +#: www/prod/imgfunction.php:165 msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." msgstr "Advertencia: Unos documentos tienen subviews reemplazados" -#: www/prod/imgfunction.php:164 +#: www/prod/imgfunction.php:166 msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." msgstr "Reconstruir el registro de vistas en miniatura" -#: www/prod/imgfunction.php:174 +#: www/prod/imgfunction.php:176 msgid "prod::tools:regeneration: Reconstruire les sous definitions" msgstr "Reconstruir subviews" -#: www/prod/imgfunction.php:177 +#: www/prod/imgfunction.php:179 msgid "prod::tools: option : recreer aucune les sous-definitions" msgstr "No reconstruya ningunas subviews" -#: www/prod/imgfunction.php:178 +#: www/prod/imgfunction.php:180 msgid "prod::tools: option : recreer toutes les sous-definitions" msgstr "Reconstruir todas subviews" -#: www/prod/imgfunction.php:192 +#: www/prod/imgfunction.php:194 msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" msgstr "Esa acción solo concierne subviews de documentos tipo imagen" -#: www/prod/imgfunction.php:193 +#: www/prod/imgfunction.php:195 msgid "prod::tools::image: rotation 90 degres horaire" msgstr "Gira 90° a la derecha" -#: www/prod/imgfunction.php:195 +#: www/prod/imgfunction.php:197 msgid "prod::tools::image rotation 90 degres anti-horaires" msgstr "Turn 90° a la izquierda" -#: www/prod/imgfunction.php:219 +#: www/prod/imgfunction.php:221 msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" msgstr "Actualizar nombre original del archivo después de reemplazar" -#: www/prod/prodFeedBack.php:82 -msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." -msgstr "Esta es tu propio fujo de RSS, te informara acerca de publicaciones" - -#: www/prod/prodFeedBack.php:83 -msgid "publications::Ne le partagez pas, il est strictement confidentiel" -msgstr "No lo comparta, es solo de usted" - -#: www/prod/prodFeedBack.php:85 -msgid "publications::votre rss personnel" -msgstr "Su propio RSS" - -#: www/prod/prodFeedBack.php:271 +#: www/prod/prodFeedBack.php:237 msgid "les enregistrements ont ete correctement commandes" msgstr "los documentos fueron ordenados" -#: www/prod/prodFeedBack.php:275 +#: www/prod/prodFeedBack.php:241 msgid "Erreur lors de la commande des enregistrements" msgstr "Error al ordenar los documentos" -#: www/prod/prodFeedBack.php:306 +#: www/prod/prodFeedBack.php:272 msgid "Les documents ne peuvent etre envoyes par FTP" msgstr "los documentos no pueden ser enviados por FTP" -#: www/prod/prodFeedBack.php:315 +#: www/prod/prodFeedBack.php:281 msgid "Export enregistre dans la file dattente" msgstr "el exporte fue registrado en un queque file" -#: www/prod/prodFeedBack.php:340 +#: www/prod/prodFeedBack.php:306 msgid "Connection au FTP avec succes" msgstr "conección exitosa con el servidor ftp" -#: www/prod/prodFeedBack.php:344 +#: www/prod/prodFeedBack.php:310 #, php-format msgid "Erreur lors de la connection au FTP : %s" msgstr "Error al conectar a FTP : %s" -#: www/prod/share.php:131 +#: www/prod/share.php:132 msgid "Aucune URL disponible" msgstr "Ningún URL disponible" -#: www/prod/share.php:146 +#: www/prod/share.php:147 msgid "Aucun code disponible" msgstr "Ningún código disponible" #: www/report/ajax_table_content.php:62 #: www/report/ajax_table_content.php:638 -#: www/report/tab.php:63 -#: www/report/tab.php:845 msgid "report:: titre" msgstr "título" #: www/report/ajax_table_content.php:63 #: www/report/ajax_table_content.php:639 -#: www/report/tab.php:64 -#: www/report/tab.php:846 msgid "report:: poids" msgstr "tamaño" #: www/report/ajax_table_content.php:66 #: www/report/ajax_table_content.php:689 -#: www/report/tab.php:67 -#: www/report/tab.php:909 msgid "report:: identifiant" msgstr "Usuario" #: www/report/ajax_table_content.php:67 #: www/report/ajax_table_content.php:690 -#: www/report/tab.php:68 -#: www/report/tab.php:910 msgid "report:: nom" msgstr "Nombre" #: www/report/ajax_table_content.php:68 #: www/report/ajax_table_content.php:691 -#: www/report/tab.php:69 -#: www/report/tab.php:911 msgid "report:: email" msgstr "Correo" #: www/report/ajax_table_content.php:69 #: www/report/ajax_table_content.php:692 -#: www/report/tab.php:70 -#: www/report/tab.php:912 msgid "report:: adresse" msgstr "Dirección" #: www/report/ajax_table_content.php:70 #: www/report/ajax_table_content.php:693 -#: www/report/tab.php:71 -#: www/report/tab.php:913 msgid "report:: telephone" msgstr "teléfono" #: www/report/ajax_table_content.php:74 #: www/report/ajax_table_content.php:367 -#: www/report/tab.php:437 msgid "report:: IP" msgstr "IP" #: www/report/ajax_table_content.php:302 -#: www/report/tab.php:351 msgid "configuration" msgstr "Configuración" #: www/report/ajax_table_content.php:329 -#: www/report/tab.php:379 #, php-format msgid "filtrer les resultats sur la colonne %s" msgstr "Filtrar resultados en la columna %s" #: www/report/ajax_table_content.php:365 #: www/report/ajax_table_content.php:475 -#: www/report/tab.php:435 msgid "phraseanet::utilisateurs" msgstr "Usuarios" #: www/report/ajax_table_content.php:440 -#: www/report/tab.php:559 msgid "report:: plateforme" msgstr "Plataforma" #: www/report/ajax_table_content.php:448 -#: www/report/tab.php:567 msgid "report:: module" msgstr "Módulos" #: www/report/ajax_table_content.php:489 #: www/report/ajax_table_content.php:507 -#: www/report/tab.php:632 -#: www/report/tab.php:664 msgid "report:: nombre de reponses" msgstr "Número de hits" #: www/report/ajax_table_content.php:531 -#: www/report/tab.php:715 msgid "report:: total des telechargements" msgstr "Total de descargas" #: www/report/ajax_table_content.php:532 -#: www/report/tab.php:716 msgid "report:: preview" msgstr "vista previa" #: www/report/ajax_table_content.php:533 -#: www/report/tab.php:717 msgid "report:: document original" msgstr "documento original %s" #: www/report/ajax_table_content.php:548 -#: www/report/tab.php:745 msgid "report:: nombre de documents" msgstr "número de documentos" #: www/report/ajax_table_content.php:549 -#: www/report/tab.php:746 msgid "report:: poids des documents" msgstr "tamaño de los doumentos" #: www/report/ajax_table_content.php:550 -#: www/report/tab.php:747 msgid "report:: nombre de preview" msgstr "número de vista previa" #: www/report/ajax_table_content.php:551 -#: www/report/tab.php:748 msgid "report:: poids des previews" msgstr "tamaño de las vistas previas" #: www/report/ajax_table_content.php:589 -#: www/report/tab.php:796 msgid "report:: historique des connexions" msgstr "Conexiones" #: www/report/ajax_table_content.php:596 #: www/report/ajax_table_content.php:681 -#: www/report/tab.php:803 -#: www/report/tab.php:892 msgid "report:: historique des telechargements" msgstr "Descargas" #: www/report/ajax_table_content.php:602 -#: www/report/tab.php:809 msgid "report:: historique des questions" msgstr "Preguntas" #: www/report/ajax_table_content.php:712 -#: www/report/tab.php:941 msgid "report::version " msgstr "Versión " @@ -7637,277 +7709,277 @@ msgstr "País" msgid "report::societe" msgstr "Empresea" -#: www/thesaurus2/accept.php:46 +#: www/thesaurus2/accept.php:48 msgid "thesaurus:: accepter..." msgstr "Acceptar" -#: www/thesaurus2/accept.php:165 +#: www/thesaurus2/accept.php:167 msgid "thesaurus:: removed_src" msgstr "removido_src" -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 +#: www/thesaurus2/accept.php:170 +#: www/thesaurus2/accept.php:228 msgid "thesaurus:: refresh" msgstr "actualizar" -#: www/thesaurus2/accept.php:223 +#: www/thesaurus2/accept.php:225 msgid "thesaurus:: removed tgt" msgstr "remover_tgt" -#: www/thesaurus2/accept.php:259 +#: www/thesaurus2/accept.php:261 msgid "thesaurus:: Accepter le terme comme" msgstr "Acceptar el término como :" -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 +#: www/thesaurus2/accept.php:263 +#: www/thesaurus2/accept.php:273 msgid "thesaurus:: comme terme specifique" msgstr "término específico" -#: www/thesaurus2/accept.php:265 +#: www/thesaurus2/accept.php:267 #, php-format msgid "thesaurus:: comme synonyme de %s" msgstr "como sinónimo de %s" -#: www/thesaurus2/accept.php:270 +#: www/thesaurus2/accept.php:272 msgid "thesaurus:: Accepter la branche comme" msgstr "Acceptar la rama como" -#: www/thesaurus2/accept.php:294 +#: www/thesaurus2/accept.php:296 #, php-format msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" msgstr "No se puede acceptar un candidato del campo %s para la rama" -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 +#: www/thesaurus2/export_text.php:53 +#: www/thesaurus2/export_text_dlg.php:44 +#: www/thesaurus2/export_text_dlg.php:148 msgid "thesaurus:: export au format texte" msgstr "Exportar en formato de texto" -#: www/thesaurus2/export_text_dlg.php:137 +#: www/thesaurus2/export_text_dlg.php:139 msgid "thesaurus:: options d'export : " msgstr "Exportación " -#: www/thesaurus2/export_text_dlg.php:138 +#: www/thesaurus2/export_text_dlg.php:140 msgid "thesaurus:: example" msgstr "ejemplo" -#: www/thesaurus2/export_text_dlg.php:151 +#: www/thesaurus2/export_text_dlg.php:153 msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" msgstr "Sinónimos en la misma línea" -#: www/thesaurus2/export_text_dlg.php:155 +#: www/thesaurus2/export_text_dlg.php:157 msgid "thesaurus:: exporter avec une ligne par synonyme" msgstr "Una línea por sinónimo" -#: www/thesaurus2/export_text_dlg.php:159 +#: www/thesaurus2/export_text_dlg.php:161 msgid "thesaurus:: export : numeroter les lignes " msgstr "Imprimir números de línea " -#: www/thesaurus2/export_text_dlg.php:163 +#: www/thesaurus2/export_text_dlg.php:165 msgid "thesaurus:: export : inclure la langue" msgstr "Incluir el idioma" -#: www/thesaurus2/export_text_dlg.php:167 +#: www/thesaurus2/export_text_dlg.php:169 msgid "thesaurus:: export : inclure les hits" msgstr "Incluir los hits" -#: www/thesaurus2/export_text_dlg.php:173 +#: www/thesaurus2/export_text_dlg.php:175 msgid "thesaurus:: export : format topics" msgstr "Temas" -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 +#: www/thesaurus2/export_topics.php:100 +#: www/thesaurus2/export_topics_dlg.php:45 msgid "thesaurus:: export en topics" msgstr "exportar temas" -#: www/thesaurus2/export_topics.php:159 +#: www/thesaurus2/export_topics.php:161 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "Archivo fue creado : %s" -#: www/thesaurus2/export_topics.php:178 +#: www/thesaurus2/export_topics.php:180 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s archivo(s) generado(s)" -#: www/thesaurus2/export_topics.php:180 +#: www/thesaurus2/export_topics.php:182 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Error al registrar el archivo" -#: www/thesaurus2/export_topics_dlg.php:117 +#: www/thesaurus2/export_topics_dlg.php:119 msgid "thesaurus:: exporter" msgstr "exportar" -#: www/thesaurus2/export_topics_dlg.php:120 +#: www/thesaurus2/export_topics_dlg.php:122 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "Exportar para todas los idiomas" -#: www/thesaurus2/export_topics_dlg.php:128 +#: www/thesaurus2/export_topics_dlg.php:130 msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" msgstr "Mostrar para el idioma actual" -#: www/thesaurus2/export_topics_dlg.php:135 +#: www/thesaurus2/export_topics_dlg.php:137 msgid "phraseanet:: tri" msgstr "Ordenar" -#: www/thesaurus2/export_topics_dlg.php:145 +#: www/thesaurus2/export_topics_dlg.php:147 msgid "thesaurus:: recherche" msgstr "Buscar" -#: www/thesaurus2/export_topics_dlg.php:148 +#: www/thesaurus2/export_topics_dlg.php:150 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Tesauro *:\"consulta\"" -#: www/thesaurus2/export_topics_dlg.php:152 +#: www/thesaurus2/export_topics_dlg.php:154 msgid "thesaurus:: recherche fulltext" msgstr "buscar texto completo" -#: www/thesaurus2/export_topics_dlg.php:156 +#: www/thesaurus2/export_topics_dlg.php:158 msgid "thesaurus:: question complete (avec operateurs)" msgstr "Pregunta completa (con operatores)" -#: www/thesaurus2/export_topics_dlg.php:163 +#: www/thesaurus2/export_topics_dlg.php:165 msgid "thesaurus:: presentation" msgstr "Mostrar opciones" -#: www/thesaurus2/export_topics_dlg.php:166 +#: www/thesaurus2/export_topics_dlg.php:168 msgid "thesaurus:: presentation : branches refermables" msgstr "Reproducir vista actual (con navegador)" -#: www/thesaurus2/export_topics_dlg.php:170 +#: www/thesaurus2/export_topics_dlg.php:172 msgid "thesaurus:: presentation : branche ouvertes" msgstr "Reproducir vista actual (sin navegador)" -#: www/thesaurus2/export_topics_dlg.php:174 +#: www/thesaurus2/export_topics_dlg.php:176 msgid "thesaurus:: tout deployer - refermable" msgstr "Todo desplegado (con navegador)" -#: www/thesaurus2/export_topics_dlg.php:178 +#: www/thesaurus2/export_topics_dlg.php:180 msgid "thesaurus:: tout deployer - statique" msgstr "Todo desplegado (estático)" -#: www/thesaurus2/export_topics_dlg.php:182 +#: www/thesaurus2/export_topics_dlg.php:184 msgid "thesaurus:: tout fermer" msgstr "Cerrar todo (con navegador)" -#: www/thesaurus2/import.php:158 +#: www/thesaurus2/import.php:159 #, php-format msgid "over-indent at line %s" msgstr "" -#: www/thesaurus2/import.php:166 +#: www/thesaurus2/import.php:167 #, php-format msgid "bad encoding at line %s" msgstr "Codificación incorrecta en la línea %s" -#: www/thesaurus2/import.php:173 +#: www/thesaurus2/import.php:174 #, php-format msgid "bad character at line %s" msgstr "Palabra incorrecta en la ínea %s" -#: www/thesaurus2/import_dlg.php:42 +#: www/thesaurus2/import_dlg.php:44 msgid "thesaurus:: Importer" msgstr "Importar" -#: www/thesaurus2/import_dlg.php:85 +#: www/thesaurus2/import_dlg.php:87 msgid "thesaurus:: coller ici la liste des termes a importer" msgstr "Pegar la lista de términos para importar acá" -#: www/thesaurus2/import_dlg.php:86 +#: www/thesaurus2/import_dlg.php:88 msgid "thesaurus:: langue par default" msgstr "error por idioma" -#: www/thesaurus2/import_dlg.php:93 +#: www/thesaurus2/import_dlg.php:95 msgid "Fichier ASCII tabule" msgstr "archivo ASCII" -#: www/thesaurus2/import_dlg.php:110 +#: www/thesaurus2/import_dlg.php:112 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "Eliminar liks existentes entre la rama de tesauro y campos" -#: www/thesaurus2/import_dlg.php:113 +#: www/thesaurus2/import_dlg.php:115 msgid "thesaurus:: reindexer la base apres l'import" msgstr "Re-indexar después de importar" -#: www/thesaurus2/index.php:96 +#: www/thesaurus2/index.php:98 msgid "thesaurus:: Editer le thesaurus" msgstr "Editar tesauro" -#: www/thesaurus2/index.php:118 +#: www/thesaurus2/index.php:120 msgid "phraseanet:: choisir" msgstr "elegir" -#: www/thesaurus2/index.php:144 +#: www/thesaurus2/index.php:146 msgid "thesaurus:: langue pivot" msgstr "Seleccionar el idioma" -#: www/thesaurus2/index.php:161 +#: www/thesaurus2/index.php:163 msgid "thesaurus:: Vous n'avez acces a aucune base" msgstr "No tiene ningún acceso a la base de datos" -#: www/thesaurus2/linkfield.php:32 +#: www/thesaurus2/linkfield.php:34 msgid "thesaurus:: Lier la branche de thesaurus au champ" msgstr "Ligar la rama de tesauro al campo" -#: www/thesaurus2/linkfield.php:112 +#: www/thesaurus2/linkfield.php:114 #, php-format msgid "thesaurus:: Lier la branche de thesaurus au champ %s" msgstr "Ligar la rama de tesauro al campo %s" -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 +#: www/thesaurus2/linkfield2.php:34 +#: www/thesaurus2/linkfield3.php:35 msgid "thesaurus:: Lier la branche de thesaurus" msgstr "Ligar la rama de tesauro" -#: www/thesaurus2/linkfield2.php:116 +#: www/thesaurus2/linkfield2.php:118 #, php-format msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " msgstr "Ese campo fue modificado; antes la rama fue : %s " -#: www/thesaurus2/linkfield2.php:145 +#: www/thesaurus2/linkfield2.php:147 msgid "thesaurus:: nouvelle branche" msgstr "Nuvea rama" -#: www/thesaurus2/linkfield2.php:150 +#: www/thesaurus2/linkfield2.php:152 msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" msgstr "Ese campo ya no está ligado al tesauro, se borrarán los términos y candidatos indexados" -#: www/thesaurus2/linkfield2.php:158 +#: www/thesaurus2/linkfield2.php:160 msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" msgstr "Ese campo tiene que estar ligado al tesauro. Es necesario una reindexar la base de datos" -#: www/thesaurus2/linkfield2.php:162 +#: www/thesaurus2/linkfield2.php:164 msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" msgstr "Se debe cambiar el link al tesauro, es necesaria una reindexar la base de datos" -#: www/thesaurus2/linkfield2.php:177 +#: www/thesaurus2/linkfield2.php:179 msgid "thesaurus:: reindexation necessaire" msgstr "Es necesario reindexar" -#: www/thesaurus2/linkfield2.php:181 +#: www/thesaurus2/linkfield2.php:183 msgid "thesaurus:: pas de reindexation" msgstr "No reindexar" -#: www/thesaurus2/linkfield3.php:78 +#: www/thesaurus2/linkfield3.php:80 #, php-format msgid "thesaurus:: suppression du lien du champ %s" msgstr "Eliminar el link al campo %s" -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 +#: www/thesaurus2/linkfield3.php:88 +#: www/thesaurus2/linkfield3.php:104 #, php-format msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" msgstr "Eliminar la rama de candidatos ligados al campo %s" -#: www/thesaurus2/linkfield3.php:112 +#: www/thesaurus2/linkfield3.php:114 msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." msgstr "Recordando la lista modificada de candidatos" -#: www/thesaurus2/linkfield3.php:124 +#: www/thesaurus2/linkfield3.php:126 msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" msgstr "Eliminar los indexes del tesauro por el campo" -#: www/thesaurus2/linkfield3.php:135 +#: www/thesaurus2/linkfield3.php:137 msgid "thesaurus:: reindexer tous les enregistrements" msgstr "Re-indexar todos los registros" @@ -7915,260 +7987,262 @@ msgstr "Re-indexar todos los registros" msgid "thesaurus:: corbeille" msgstr "Stock" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: Nouveau terme" msgstr "nuevo término" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: terme" msgstr "Término" -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newsy_dlg.php:39 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau synonyme" msgstr "Nuevo sinónimo" -#: www/thesaurus2/newsy_dlg.php:37 +#: www/thesaurus2/newsy_dlg.php:39 msgid "thesaurus:: synonyme" msgstr "Sinónimo" -#: www/thesaurus2/newsy_dlg.php:91 +#: www/thesaurus2/newsy_dlg.php:93 msgid "thesaurus:: contexte" msgstr "Contexto" -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau terme specifique" msgstr "Nuevo término específico" -#: www/thesaurus2/newterm.php:72 +#: www/thesaurus2/newterm.php:74 #, php-format msgid "thesaurus:: le terme %s" msgstr "el término %s" -#: www/thesaurus2/newterm.php:74 +#: www/thesaurus2/newterm.php:76 #, php-format msgid "thesaurus:: avec contexte %s" msgstr "contextualizado por %s" -#: www/thesaurus2/newterm.php:76 +#: www/thesaurus2/newterm.php:78 msgid "thesaurus:: sans contexte" msgstr "sin contexto" -#: www/thesaurus2/newterm.php:104 +#: www/thesaurus2/newterm.php:106 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "ya es un candidato de un campo válido " -#: www/thesaurus2/newterm.php:106 +#: www/thesaurus2/newterm.php:108 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "ya es un candidato de campos válidos " -#: www/thesaurus2/newterm.php:146 +#: www/thesaurus2/newterm.php:148 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Seleccionar procedencia para acceptar" -#: www/thesaurus2/newterm.php:162 #: www/thesaurus2/newterm.php:164 +#: www/thesaurus2/newterm.php:166 msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" msgstr "es un candidato de los campos pero no es acceptado para esa ram" -#: www/thesaurus2/newterm.php:169 +#: www/thesaurus2/newterm.php:171 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "no es un candidato" -#: www/thesaurus2/newterm.php:173 +#: www/thesaurus2/newterm.php:175 msgid "thesaurus:: attention :" msgstr "Attención :" -#: www/thesaurus2/newterm.php:184 +#: www/thesaurus2/newterm.php:186 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Agregar el término sin reindexar" -#: www/thesaurus2/newterm.php:186 +#: www/thesaurus2/newterm.php:188 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Add term and re index" -#: www/thesaurus2/properties.php:47 +#: www/thesaurus2/properties.php:49 msgid "thesaurus:: Proprietes" msgstr "Propiedades" -#: www/thesaurus2/properties.php:92 +#: www/thesaurus2/properties.php:94 +#: www/thesaurus2/thesaurus.php:230 +#: www/thesaurus2/thesaurus.php:255 msgid "thesaurus::menu: supprimer" msgstr "Eliminar" -#: www/thesaurus2/properties.php:93 +#: www/thesaurus2/properties.php:95 msgid "thesaurus:: remplacer" msgstr "Reemplazar" -#: www/thesaurus2/properties.php:120 +#: www/thesaurus2/properties.php:122 #, php-format msgid "thesaurus:: %s reponses retournees" msgstr "%s resultado(s)" -#: www/thesaurus2/properties.php:147 +#: www/thesaurus2/properties.php:149 msgid "thesaurus:: synonymes" msgstr "Sinónimos" -#: www/thesaurus2/properties.php:148 +#: www/thesaurus2/properties.php:150 msgid "thesaurus:: hits" msgstr "hits" -#: www/thesaurus2/properties.php:149 +#: www/thesaurus2/properties.php:151 msgid "thesaurus:: ids" msgstr "ids" -#: www/thesaurus2/properties.php:321 +#: www/thesaurus2/properties.php:323 #, php-format msgid "thesaurus:: Confirmer la suppression du terme %s" msgstr "Confirmar la eliminación del término \"%s\"" -#: www/thesaurus2/search.php:77 +#: www/thesaurus2/search.php:79 msgid "thesaurus:: le terme" msgstr "término" -#: www/thesaurus2/search.php:78 +#: www/thesaurus2/search.php:80 msgid "thesaurus:: est egal a " msgstr "es igual a " -#: www/thesaurus2/search.php:82 +#: www/thesaurus2/search.php:84 msgid "thesaurus:: commence par" msgstr "comienza con" -#: www/thesaurus2/search.php:86 +#: www/thesaurus2/search.php:88 msgid "thesaurus:: contient" msgstr "contiene" -#: www/thesaurus2/search.php:91 +#: www/thesaurus2/search.php:93 msgid "thesaurus:: fini par" msgstr "termina con" -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 +#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:251 msgid "thesaurus::menu: proprietes" msgstr "Propiedades" -#: www/thesaurus2/thesaurus.php:225 +#: www/thesaurus2/thesaurus.php:227 msgid "thesaurus::menu: refuser" msgstr "Rechazar" -#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:228 msgid "thesaurus::menu: accepter" msgstr "Permitir" -#: www/thesaurus2/thesaurus.php:229 +#: www/thesaurus2/thesaurus.php:231 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "Eliminar candidatos sin toques" -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 +#: www/thesaurus2/thesaurus.php:233 +#: www/thesaurus2/thesaurus.php:254 msgid "thesaurus::menu: remplacer" msgstr "Reemplazar" -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 +#: www/thesaurus2/thesaurus.php:237 +#: www/thesaurus2/thesaurus.php:257 msgid "thesaurus::menu: chercher" msgstr "Buscar" -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 +#: www/thesaurus2/thesaurus.php:238 +#: www/thesaurus2/thesaurus.php:258 msgid "thesaurus::menu: exporter" msgstr "Exportar" -#: www/thesaurus2/thesaurus.php:239 +#: www/thesaurus2/thesaurus.php:241 msgid "thesaurus::menu: relire les candidats" msgstr "Revisar candidatos" -#: www/thesaurus2/thesaurus.php:245 +#: www/thesaurus2/thesaurus.php:247 msgid "thesaurus::menu: importer" msgstr "Importar" -#: www/thesaurus2/thesaurus.php:250 +#: www/thesaurus2/thesaurus.php:252 msgid "thesaurus::menu: Nouveau terme" msgstr "Nuevo término" -#: www/thesaurus2/thesaurus.php:251 +#: www/thesaurus2/thesaurus.php:253 msgid "thesaurus::menu: Nouveau synonyme" msgstr "Nuevo sinónimo" -#: www/thesaurus2/thesaurus.php:257 +#: www/thesaurus2/thesaurus.php:259 msgid "thesaurus::menu: export topics" msgstr "Exportar como tema" -#: www/thesaurus2/thesaurus.php:259 +#: www/thesaurus2/thesaurus.php:261 msgid "thesaurus::menu: lier au champ" msgstr "Link a campos" -#: www/thesaurus2/thesaurus.php:294 +#: www/thesaurus2/thesaurus.php:296 msgid "thesaurus:: onglet stock" msgstr "Candidatos" -#: www/thesaurus2/thesaurus.php:299 +#: www/thesaurus2/thesaurus.php:301 msgid "thesaurus:: afficher les termes refuses" msgstr "Mostrar términos rechazados" -#: www/thesaurus2/thesaurus.php:313 +#: www/thesaurus2/thesaurus.php:315 msgid "thesaurus:: onglet thesaurus" msgstr "Tesaurio" -#: www/thesaurus2/thesaurus.php:513 +#: www/thesaurus2/thesaurus.php:515 msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "Eliminar rama; (los términos en cuestíon serán mostrados como canditatos en una indexación futura)" -#: www/thesaurus2/thesaurus.php:515 +#: www/thesaurus2/thesaurus.php:517 msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "respuestas son devueltos por esta rama. Eliminar todos modos? (Los términos en cuestión ascenderán al siguiente candidato en la indización)" -#: www/thesaurus2/thesaurus.php:557 +#: www/thesaurus2/thesaurus.php:559 msgid "thesaurus:: Tous les termes ont des hits" msgstr "Todos términos tienen hits" -#: www/thesaurus2/thesaurus.php:563 +#: www/thesaurus2/thesaurus.php:565 msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" msgstr "Los términos de esa rama no tienen hits : eliminar términos?" -#: www/thesaurus2/thesaurus.php:652 +#: www/thesaurus2/thesaurus.php:654 msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" msgstr "Eliminar todos candidatos y reindexar todos documentos sin tesaurio." -#: www/thesaurus2/thesaurus.php:1096 +#: www/thesaurus2/thesaurus.php:1098 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Mover términos a stock." -#: www/upload/index.php:75 +#: www/upload/index.php:76 msgid "upload:You do not have right to upload datas" msgstr "No tienen los permisos requeridos para subir documentos" -#: www/upload/index.php:186 +#: www/upload/index.php:187 msgid "Selectionner une action" msgstr "" -#: www/upload/index.php:187 +#: www/upload/index.php:188 msgid "Aucune enregistrement selectionne" msgstr "" -#: www/upload/index.php:188 +#: www/upload/index.php:189 msgid "Transfert en court, vous devez attendre la fin du transfert" msgstr "" -#: www/upload/index.php:189 +#: www/upload/index.php:190 msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" msgstr "" -#: www/upload/index.php:241 +#: www/upload/index.php:242 #, php-format msgid "upload:: %d fichiers uploades" msgstr "%d cargando archivos" -#: www/upload/index.php:243 +#: www/upload/index.php:244 #: www/upload/index.php:414 #, php-format msgid "upload:: %d fichier uploade" msgstr "%d cargando archivo" -#: www/upload/index.php:247 +#: www/upload/index.php:248 msgid "Certains elements uploades sont passes en quarantaine" msgstr "" -#: www/upload/index.php:276 +#: www/upload/index.php:277 #, php-format msgid "upload :: choisir les fichiers a uploader (max : %d MB)" msgstr "Seleccionar los archivos para agregar (tamaño max : %d Mb)" @@ -8241,37 +8315,37 @@ msgstr "" msgid "Supprimer precedentes propositions a la substitution" msgstr "" -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 +#: www/upload/upload.php:45 +#: www/upload/upload.php:54 msgid "Internal Server Error" msgstr "Internal server error" -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 +#: www/upload/upload.php:140 +#: www/upload/upload.php:163 msgid "erreur lors de l'archivage" msgstr "Error al agregar" -#: www/upload/upload.php:144 +#: www/upload/upload.php:143 msgid "Document ajoute a la quarantaine" msgstr "" -#: www/upload/upload.php:147 +#: www/upload/upload.php:146 msgid "Fichier uploade, en attente" msgstr "Subiendo archivos, en espera" -#: www/upload/upload.php:187 +#: www/upload/upload.php:186 msgid "Fichier uploade !" msgstr "el archivo fue subido" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:402 msgid "Erreur lors de l'enregistrement des donnees" msgstr "Error al guardar los datos" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:475 msgid "Erreur lors de la mise a jour des donnes " msgstr "Error al actualizar os datos " -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:599 msgid "Envoie avec succes" msgstr "envio exitoso" @@ -8295,20 +8369,24 @@ msgstr "" msgid "Basket has been updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:311 +msgid "Basket updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:346 msgid "Basket has been archived" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:350 msgid "Basket has been unarchived" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:442 #, php-format msgid "%d records added" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:504 #, php-format msgid "%d records moved" msgstr "" @@ -8345,6 +8423,21 @@ msgstr "" msgid "Action Forbidden : You are not the publisher" msgstr "" +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:292 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:316 +msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." +msgstr "Esta es tu propio fujo de RSS, te informara acerca de publicaciones" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:293 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:317 +msgid "publications::Ne le partagez pas, il est strictement confidentiel" +msgstr "No lo comparta, es solo de usted" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:319 +msgid "publications::votre rss personnel" +msgstr "Su propio RSS" + #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 msgid "prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." msgstr "atención, la lista para buscar ha sido cambiada." @@ -8451,8 +8544,8 @@ msgid "panier:: vous ne pouvez pas supprimer un panier public" msgstr "No tienes los permisos requeridos para eliminar la cesta pública." #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:81 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" -msgstr "No se puede seleccionar más que 400 registros." +msgid "Vous ne pouvez pas selectionner plus de 800 enregistrements" +msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 msgid "Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" @@ -8499,97 +8592,146 @@ msgid "Message" msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +msgid "Time for feedback (days)" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +msgid "Accuse de reception" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#, php-format +msgid "%d fields have been updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "No users selected" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:308 msgid "Unable to send the documents" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:190 #, php-format msgid "Push from %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:199 msgid "No receivers specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:204 msgid "No elements to push" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:218 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:434 #, php-format msgid "Unknown user %d" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:281 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:331 #, php-format msgid "Validation from %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:340 msgid "No participants specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:345 msgid "No elements to validate" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:425 #, php-format msgid "Missing mandatory participant parameter %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:515 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:601 msgid "First name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:604 msgid "Last name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:607 msgid "Email is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:610 msgid "Email is invalid" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:629 msgid "User already exists" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:656 msgid "User successfully created" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:662 msgid "Error while creating user" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:153 +#, php-format +msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:157 +#, php-format +msgid "reponses:: %d Resultats" +msgstr "%d resultados" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %d reponses" +msgstr "%d resultado(s)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %s documents selectionnes" +msgstr "%s documento(s) seleccionado(s)." + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:100 msgid "Story created" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:209 msgid "Record removed from story" msgstr "" +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:279 +msgid "You can not edit this story" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:298 +msgid "Story updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:40 +msgid "Error while saving preference" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:53 +msgid "Preference saved !" +msgstr "" + #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 #, php-format msgid "Unable to create list %s" @@ -8609,130 +8751,100 @@ msgstr "" msgid "Unable to update list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:293 msgid "List has been updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:339 #, php-format msgid "List has been deleted" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:354 #, php-format msgid "Unable to delete list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:395 msgid "Entry removed from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:410 msgid "Unable to remove entry from list " msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:471 #, php-format msgid "%d Users added to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:479 #, php-format msgid "%d User added to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:496 msgid "Unable to add usr to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:597 msgid "List shared to user" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:612 msgid "Unable to share the list with the usr" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:650 msgid "Owner removed from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:664 msgid "Unable to remove usr from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:177 #, php-format msgid "%d Story attached to the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:184 #, php-format msgid "%d Stories attached to the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:194 #, php-format msgid "%1$d Story attached to the WorkZone, %2$d already attached" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:202 #, php-format msgid "%1$d Stories attached to the WorkZone, %2$d already attached" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:253 msgid "Story detached from the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:138 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:187 msgid "Appbox is unreachable" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:199 msgid "Databox is unreachable" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:351 #, php-format msgid "an error occured : %s" msgstr "" -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "No es posible escribir en la carpeta %s" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "YYYY/MM/DD HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "YYYY/MM/DD" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "yyyy/mm/dd" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "hh:mm:ss" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:570 msgid "Email addess is not valid" msgstr "" @@ -8764,19 +8876,15 @@ msgstr "Retroalimentacion pedida de %s y enviada a %d otros usiarios" msgid "Processus de validation recu de %s" msgstr "Retroalimentacion pedida de %s" -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 +#: lib/Doctrine/Repositories/BasketElementRepository.php:46 msgid "Element is not found" msgstr "" -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" -msgstr "" - -#: lib/Doctrine/Repositories/BasketRepository.php:103 +#: lib/Doctrine/Repositories/BasketRepository.php:171 msgid "Basket is not found" msgstr "" -#: lib/Doctrine/Repositories/BasketRepository.php:108 +#: lib/Doctrine/Repositories/BasketRepository.php:193 msgid "You have not access to this basket" msgstr "" @@ -8797,3 +8905,59 @@ msgstr "" msgid "You have not access to this list" msgstr "" +#~ msgid "phraseanet::technique::datetime-edit-format" +#~ msgstr "YYYY/MM/DD HH:NN:SS" + +#~ msgid "phraseanet::technique::date-edit-format" +#~ msgstr "YYYY/MM/DD" + +#~ msgid "phraseanet::technique::date-edit-explain" +#~ msgstr "yyyy/mm/dd" + +#~ msgid "phraseanet::technique::time-edit-format" +#~ msgstr "HH:NN:SS" + +#~ msgid "phraseanet::technique::time-edit-explain" +#~ msgstr "hh:mm:ss" + +#~ msgid "admin::Le serveur memcached a ete flushe" +#~ msgstr "no hay conexión con el servidor memcached" + +#~ msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" +#~ msgstr "error al mandar correos electrónicos a la(s)%s direccione(s)" + +#~ msgid "GV::section:: Serveurs de cache" +#~ msgstr "servidor cache" + +#~ msgid "Impossible d'ecrire dans le dossier %s" +#~ msgstr "No es posible escribir en la carpeta %s" + +#~ msgid "Chercher tous les mots" +#~ msgstr "todas las palabras" + +#~ msgid "Cette expression exacte" +#~ msgstr "palabra exacta o frase" + +#~ msgid "Au moins un des mots suivants" +#~ msgstr "una o más de estas palabras" + +#~ msgid "Aucun des mots suivants" +#~ msgstr "Ninguna de esas palabras" + +#~ msgid "recherche :: Bases" +#~ msgstr "bases de datos" + +#~ msgid "recherche :: Historique" +#~ msgstr "Registro" + +#~ msgid "recherche :: Themes" +#~ msgstr "Temas" + +#~ msgid "phraseanet::technique::datetime" +#~ msgstr "%b, %d %Y %l:%s %p" + +#~ msgid "phraseanet::technique::date" +#~ msgstr "%d-%m-%Y" + +#~ msgid "publications:: publication non lue" +#~ msgstr "publicación sin leer" diff --git a/locale/fr_FR/LC_MESSAGES/phraseanet.mo b/locale/fr_FR/LC_MESSAGES/phraseanet.mo index 486b700791..f37489a343 100644 Binary files a/locale/fr_FR/LC_MESSAGES/phraseanet.mo and b/locale/fr_FR/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/fr_FR/LC_MESSAGES/phraseanet.po b/locale/fr_FR/LC_MESSAGES/phraseanet.po index b5094a8876..f3e6bafaed 100644 --- a/locale/fr_FR/LC_MESSAGES/phraseanet.po +++ b/locale/fr_FR/LC_MESSAGES/phraseanet.po @@ -2,22 +2,22 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-06 12:57+0100\n" -"PO-Revision-Date: 2012-02-06 13:04+0100\n" +"POT-Creation-Date: 2012-03-08 14:29+0100\n" +"PO-Revision-Date: 2012-03-08 14:29+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-02-06 11:01+0000\n" -"X-Generator: Launchpad (build 14747)\n" -"Language: fr_FR\n" +"X-Launchpad-Export-Date: 2012-03-08 09:56+0000\n" +"X-Generator: Launchpad (build 14914)\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" -"X-Poedit-KeywordsList: _e;__\n" -"X-Poedit-Language: French\n" "X-Poedit-Country: FRANCE\n" +"Language: fr_FR\n" +"X-Poedit-Language: French\n" +"X-Poedit-KeywordsList: _e;__\n" "X-Poedit-SearchPath-0: config\n" "X-Poedit-SearchPath-1: lib/classes\n" "X-Poedit-SearchPath-2: lib/conf.d\n" @@ -27,88 +27,82 @@ msgstr "" "X-Poedit-SearchPath-6: lib/Doctrine\n" "X-Poedit-SearchPath-7: bin\n" -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 +#: lib/classes/appbox.class.php:309 +#: lib/classes/appbox.class.php:383 msgid "Flushing cache" msgstr "Nettoyage du cache" -#: lib/classes/appbox.class.php:323 +#: lib/classes/appbox.class.php:316 msgid "Creating new tables" msgstr "Création de nouvelles tables" -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 +#: lib/classes/appbox.class.php:333 +#: lib/classes/appbox.class.php:341 msgid "Purging directories" msgstr "Vidage de Répertoires" -#: lib/classes/appbox.class.php:356 +#: lib/classes/appbox.class.php:349 msgid "Copying files" msgstr "Copie des fichiers" -#: lib/classes/appbox.class.php:365 +#: lib/classes/appbox.class.php:358 msgid "Upgrading appbox" msgstr "Mise à jour de l'ApplicationBox" -#: lib/classes/appbox.class.php:374 +#: lib/classes/appbox.class.php:367 #, php-format msgid "Upgrading %s" msgstr "Mise à jour de %s" -#: lib/classes/appbox.class.php:382 +#: lib/classes/appbox.class.php:375 msgid "Post upgrade" msgstr "Publier une mise à jour" -#: lib/classes/appbox.class.php:433 +#: lib/classes/appbox.class.php:425 msgid "Nom de base de donnee incorrect" msgstr "Nom de base de données incorrect" -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "Impossible d'écrire dans le fichier %s" - -#: lib/classes/appbox.class.php:590 +#: lib/classes/appbox.class.php:518 msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" msgstr "la base de données existe déjà, vous n'avez pas les droits nécessaires ou vous n'avez pas les droits pour créer des bases de données" -#: lib/classes/base.class.php:294 +#: lib/classes/base.class.php:306 #, php-format msgid "Updating table %s" msgstr "Mise à jour de la table %s" -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 +#: lib/classes/base.class.php:323 +#: lib/classes/base.class.php:573 +#: lib/classes/base.class.php:817 +#: lib/classes/base.class.php:834 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Erreur lors de la tentative ; erreur : %s" -#: lib/classes/base.class.php:333 +#: lib/classes/base.class.php:345 #, php-format msgid "Creating table %s" msgstr "Création de la table %s" -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 +#: lib/classes/base.class.php:353 +#: lib/classes/base.class.php:894 #, php-format msgid "Applying patches on %s" msgstr "Application des patchs sur %s" -#: lib/classes/base.class.php:842 +#: lib/classes/base.class.php:854 msgid "Looking for patches" msgstr "Recherche de patchs" -#: lib/classes/databox.class.php:1401 +#: lib/classes/databox.class.php:1394 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "ERREUR : Toutes les balises \"subdefgroup\" nécessitent un attribut \"name\"" -#: lib/classes/databox.class.php:1414 +#: lib/classes/databox.class.php:1407 msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "ERREUR : l'attribut \"name\" du noeud \"subdef\" est obligatoire et unique par groupe de subdefs" -#: lib/classes/databox.class.php:1419 +#: lib/classes/databox.class.php:1412 msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" msgstr "ERREUR : L'attribut \"class\" du noeud \"subdef\" est nécessaire et de valeur égale à \"thumbnail\",\"preview\" ou \"document\"" @@ -205,14 +199,14 @@ msgid "login::register: vos demandes concernat les collections suivantes sont su msgstr "Vos demandes concernant les collections suivantes sont sujettes à approbation d'un administrateur" #: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 +#: lib/classes/mail.class.php:166 msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" msgstr "Vous serez averti par e-mail lorsque vos demandes auront été traitées" #: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 +#: lib/classes/mail.class.php:148 +#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:179 msgid "login::register: sujet email : confirmation de votre adresse email" msgstr "Confirmation de votre adresse e-mail" @@ -220,28 +214,28 @@ msgstr "Confirmation de votre adresse e-mail" msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." msgstr "Bonjour, nous avons bien reçu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. Si vous recevez ce mail sans l'avoir sollicité, merci de le détruire et de l'ignorer." -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:150 +#: lib/classes/mail.class.php:164 msgid "login::register: merci d'avoir confirme votre adresse email" msgstr "Merci d'avoir confirmé votre adresse e-mail" -#: lib/classes/mail.class.php:149 +#: lib/classes/mail.class.php:151 msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " msgstr "Vous pouvez maintenant vous connecter à l'adresse suivante : " -#: lib/classes/mail.class.php:163 +#: lib/classes/mail.class.php:165 msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " msgstr "Vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " -#: lib/classes/mail.class.php:179 +#: lib/classes/mail.class.php:181 msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." msgstr "Pour valider votre inscription, merci de confirmer votre e-mail en suivant le lien ci-dessous." -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." -msgstr "Si le lien n'est pas cliquable, copiez/collez-le dans votre navigateur." +#: lib/classes/mail.class.php:212 +msgid "si cet email contient des liens non cliquables copiez/collez ces liens dans votre navigateur." +msgstr "" -#: lib/classes/mail.class.php:211 +#: lib/classes/mail.class.php:214 msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" msgstr "Message automatique de Phraseanet IV -Pour gérer l'envoi d'e-mail automatique, connectez vous à" @@ -264,35 +258,35 @@ msgstr "Taille trop petite : %dpx" msgid "Mauvais mode colorimetrique : %s" msgstr "Mauvais mode colorimétrique : %s" -#: lib/classes/phrasea.class.php:308 +#: lib/classes/phrasea.class.php:304 msgid "admin::monitor: module production" msgstr "Production" -#: lib/classes/phrasea.class.php:309 +#: lib/classes/phrasea.class.php:305 msgid "admin::monitor: module client" msgstr "Classic" -#: lib/classes/phrasea.class.php:310 +#: lib/classes/phrasea.class.php:306 msgid "admin::monitor: module admin" msgstr "Admin" -#: lib/classes/phrasea.class.php:311 +#: lib/classes/phrasea.class.php:307 msgid "admin::monitor: module report" msgstr "Report" -#: lib/classes/phrasea.class.php:312 +#: lib/classes/phrasea.class.php:308 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" -#: lib/classes/phrasea.class.php:313 +#: lib/classes/phrasea.class.php:309 msgid "admin::monitor: module comparateur" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:314 +#: lib/classes/phrasea.class.php:310 msgid "admin::monitor: module validation" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:315 +#: lib/classes/phrasea.class.php:311 msgid "admin::monitor: module upload" msgstr "Upload" @@ -331,76 +325,81 @@ msgstr "Chercher" msgid "client::recherche: dans les categories" msgstr "Dans les catégories" -#: lib/classes/setup.class.php:341 +#: lib/classes/setup.class.php:329 msgid "mod_auth_token correctement configure" msgstr "mod_auth_token correctement configuré" -#: lib/classes/setup.class.php:343 +#: lib/classes/setup.class.php:331 msgid "mod_auth_token mal configure" msgstr "mod_auth_token mal configuré" -#: lib/classes/setup.class.php:356 +#: lib/classes/setup.class.php:344 msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " msgstr "Attention : le test de l'activation des mods est effectué, leur bon fonctionnement n'est pas vérifié " -#: lib/classes/setup.class.php:371 +#: lib/classes/setup.class.php:359 msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" msgstr "Attention, veuillez vérifier la configuration xsendfile, actuellement activée dans le setup" -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 +#: lib/classes/setup.class.php:368 +#: lib/classes/setup.class.php:377 msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" msgstr "Attention, veuillez vérifier la configuration h264_streaming, actuellement activée dans le setup" -#: lib/classes/setup.class.php:532 +#: lib/classes/setup.class.php:520 msgid "setup::Tests d'envois d'emails" msgstr "Tests d'envois d'e-mails" -#: lib/classes/setup.class.php:536 +#: lib/classes/setup.class.php:524 msgid "boutton::valider" msgstr "Valider" -#: lib/classes/setup.class.php:613 +#: lib/classes/setup.class.php:602 msgid "setup:: Serveur Memcached" msgstr "Adresse du serveur Memcached" -#: lib/classes/setup.class.php:629 +#: lib/classes/setup.class.php:611 #, php-format msgid "setup::Serveur actif sur %s" msgstr "Serveur actif sur %s" -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "Le serveur memcached ne répond pas, vous devriez désactiver le cache" - -#: lib/classes/setup.class.php:645 +#: lib/classes/setup.class.php:623 #, php-format msgid "setup::Aucun serveur memcached rattache." msgstr "Aucun serveur Memcached rattaché" -#: lib/classes/setup.class.php:682 +#: lib/classes/setup.class.php:644 +msgid "Many opcode cache load is forbidden" +msgstr "" + +#: lib/classes/setup.class.php:646 +msgid "No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC." +msgstr "" + +#: lib/classes/setup.class.php:660 #, php-format msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" msgstr "Mauvaise configuration : Pour la variable %1$s, configuration donnée : %2$s ; attendue : %3$s" -#: lib/classes/setup.class.php:713 +#: lib/classes/setup.class.php:691 msgid "setup::Etat du moteur de recherche" msgstr "Etat du moteur de recherche" -#: lib/classes/setup.class.php:724 +#: lib/classes/setup.class.php:702 msgid "setup::Sphinx confguration" msgstr "Configuration Shpinx" -#: lib/classes/setup.class.php:747 +#: lib/classes/setup.class.php:725 msgid "test::test" msgstr "test" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:148 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:153 msgid "Cette valeur ne peut être vide" msgstr "Cette valeur ne peut être vide" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:149 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:154 msgid "Url non valide" msgstr "Url non valide" @@ -434,15 +433,11 @@ msgstr "OK" #: lib/classes/Bridge/Api/Dailymotion.class.php:829 #: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 msgid "Ce champ est obligatoire" msgstr "Ce champ est obligatoire" #: lib/classes/Bridge/Api/Dailymotion.class.php:834 #: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 #, php-format msgid "Ce champ est trop long %s caracteres max" msgstr "Le contenu de e champ ne peut dépasser %s caractères" @@ -454,7 +449,6 @@ msgid "Ce champ est trop court %s caracteres min" msgstr "Le contenu de ce champs est au minimum de %s caractères" #: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 msgid "Le record n'a pas de fichier physique" msgstr "L'enregistrement n'a pas de fichier physique" @@ -464,7 +458,6 @@ msgid "La taille maximale d'une video est de %d minutes." msgstr "La taille maximale d'une vidéo est de %d minutes." #: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 #, php-format msgid "Le poids maximum d'un fichier est de %s" msgstr "Le poids maximum d'un fichier est de %s" @@ -473,15 +466,16 @@ msgstr "Le poids maximum d'un fichier est de %s" msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" msgstr "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifié par Flickr" -#: lib/classes/Bridge/Api/Flickr.class.php:529 +#: lib/classes/Bridge/Api/Flickr.class.php:528 +#: lib/classes/Bridge/Api/Youtube.class.php:542 msgid "L'upload a echoue" msgstr "L'upload a échoué" -#: lib/classes/Bridge/Api/Flickr.class.php:639 +#: lib/classes/Bridge/Api/Flickr.class.php:638 msgid "Photos" msgstr "Photos" -#: lib/classes/Bridge/Api/Flickr.class.php:648 +#: lib/classes/Bridge/Api/Flickr.class.php:647 msgid "Photosets" msgstr "Photosets" @@ -561,25 +555,25 @@ msgstr "Cette opération ne peut aboutir, le site est en mode maintenance. Patie msgid "Service youtube introuvable." msgstr "Service Youtube introuvable" -#: lib/classes/caption/record.class.php:171 +#: lib/classes/caption/record.class.php:188 msgid "Open the URL in a new window" msgstr "Ouvrir le lien dans une nouvelle fenêtre" -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 +#: lib/classes/databox/cgu.class.php:37 +#: lib/classes/databox/cgu.class.php:110 #, php-format msgid "cgus:: CGUs de la base %s" msgstr "Conditions Générales d'Utilisation de la base %s" -#: lib/classes/databox/cgu.class.php:39 +#: lib/classes/databox/cgu.class.php:40 msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" msgstr "Pour continuer, vous devez accepter les Conditions Générales d'Utilisation" -#: lib/classes/databox/cgu.class.php:40 +#: lib/classes/databox/cgu.class.php:41 msgid "cgus :: accepter" msgstr "Accepter" -#: lib/classes/databox/cgu.class.php:41 +#: lib/classes/databox/cgu.class.php:42 msgid "cgus :: refuser" msgstr "Refuser" @@ -678,34 +672,50 @@ msgid "admin::register: un utilisateur s'est inscrit" msgstr "Un utilisateur s'est inscrit" #: lib/classes/eventsmanager/notify/autoregister.class.php:235 +#: lib/classes/eventsmanager/notify/order.class.php:221 +#: lib/classes/eventsmanager/notify/register.class.php:240 msgid "admin::compte-utilisateur nom" msgstr "Nom" #: lib/classes/eventsmanager/notify/autoregister.class.php:237 +#: lib/classes/eventsmanager/notify/order.class.php:223 +#: lib/classes/eventsmanager/notify/register.class.php:242 msgid "admin::compte-utilisateur prenom" msgstr "Prénom" #: lib/classes/eventsmanager/notify/autoregister.class.php:239 +#: lib/classes/eventsmanager/notify/order.class.php:225 +#: lib/classes/eventsmanager/notify/register.class.php:244 msgid "admin::compte-utilisateur email" msgstr "E-mail" #: lib/classes/eventsmanager/notify/autoregister.class.php:241 +#: lib/classes/eventsmanager/notify/order.class.php:227 +#: lib/classes/eventsmanager/notify/register.class.php:246 msgid "admin::compte-utilisateur adresse" msgstr "Adresse" #: lib/classes/eventsmanager/notify/autoregister.class.php:245 +#: lib/classes/eventsmanager/notify/order.class.php:231 +#: lib/classes/eventsmanager/notify/register.class.php:250 msgid "admin::compte-utilisateur telephone" msgstr "Téléphone" #: lib/classes/eventsmanager/notify/autoregister.class.php:247 +#: lib/classes/eventsmanager/notify/order.class.php:233 +#: lib/classes/eventsmanager/notify/register.class.php:252 msgid "admin::compte-utilisateur fax" msgstr "Fax" #: lib/classes/eventsmanager/notify/autoregister.class.php:249 +#: lib/classes/eventsmanager/notify/order.class.php:235 +#: lib/classes/eventsmanager/notify/register.class.php:254 msgid "admin::compte-utilisateur poste" msgstr "Poste" #: lib/classes/eventsmanager/notify/autoregister.class.php:250 +#: lib/classes/eventsmanager/notify/order.class.php:236 +#: lib/classes/eventsmanager/notify/register.class.php:255 msgid "admin::compte-utilisateur societe" msgstr "Société" @@ -725,6 +735,31 @@ msgstr "Echec du transfert Bridge" msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" msgstr "Recevoir les notifications lorsqu'un transfert Bridge échoue" +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:125 +msgid "email is not valid" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:129 +msgid "failed to send mail" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:133 +msgid "an error occured while exporting records" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:137 +#, php-format +msgid "The delivery to %s failed for the following reason : %s" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:156 +msgid "Email export fails" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:165 +msgid "Get a notification when a mail export fails" +msgstr "" + #: lib/classes/eventsmanager/notify/order.class.php:162 #, php-format msgid "%1$s a passe une %2$scommande%3$s" @@ -822,14 +857,13 @@ msgstr "Vous pouvez vous connecter à l'adresse suivante pour consulter votre pa #: lib/classes/eventsmanager/notify/push.class.php:191 #: lib/classes/eventsmanager/notify/validate.class.php:213 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:233 msgid "push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas" msgstr "Attention, ce lien est unique et son contenu confidentiel, ne le divulguez pas" #: lib/classes/eventsmanager/notify/register.class.php:178 #, php-format msgid "%1$s demande votre approbation sur une ou plusieurs %2$scollections%3$s" -msgstr "%1$s demande votre approbation sur une ou plusieurs %2$scollections%3$s" +msgstr "%1$s vous demande un accès sur une ou plusieurs %2$scollections%3$s" #: lib/classes/eventsmanager/notify/register.class.php:195 msgid "Register approbation" @@ -858,16 +892,11 @@ msgstr "Vous pourrez traiter ses demandes en ligne via l'interface d'administrat #: lib/classes/eventsmanager/notify/validate.class.php:33 #: lib/classes/eventsmanager/notify/validate.class.php:177 -#: lib/classes/eventsmanager/notify/validationdone.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:191 msgid "Validation" msgstr "Validation" #: lib/classes/eventsmanager/notify/validate.class.php:148 #: lib/classes/eventsmanager/notify/validate.class.php:152 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:164 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:168 msgid "Une selection" msgstr "une sélection \"sans titre\"" @@ -885,7 +914,6 @@ msgid "push::mail:: Demande de validation de documents" msgstr "Demande de validation de document(s)" #: lib/classes/eventsmanager/notify/validate.class.php:203 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:223 #, php-format msgid "Le lien suivant vous propose de valider une selection faite par %s" msgstr "Le lien suivant affiche une validation envoyé par %s" @@ -1137,43 +1165,43 @@ msgstr "décembre" msgid "report:: non-renseigne" msgstr "Non-Renseigné" -#: lib/classes/module/console/systemConfigCheck.class.php:52 +#: lib/classes/module/console/systemConfigCheck.class.php:54 msgid "*** CHECK BINARY CONFIGURATION ***" msgstr "*** VERIFICATION DE LA CONFIGURATION DES BINAIRES***" -#: lib/classes/module/console/systemConfigCheck.class.php:61 +#: lib/classes/module/console/systemConfigCheck.class.php:65 msgid "*** FILESYSTEM CONFIGURATION ***" msgstr "*** CONFIGURATION DU SYSTEME DE FICHIERS***" -#: lib/classes/module/console/systemConfigCheck.class.php:64 +#: lib/classes/module/console/systemConfigCheck.class.php:68 msgid "*** CHECK CACHE OPCODE ***" msgstr "*** VERIFICATION DU CACHE OPCODE ***" -#: lib/classes/module/console/systemConfigCheck.class.php:67 +#: lib/classes/module/console/systemConfigCheck.class.php:71 msgid "*** CHECK CACHE SERVER ***" msgstr "*** VERIFICATION DU SERVEUR DE CACHE ***" -#: lib/classes/module/console/systemConfigCheck.class.php:70 +#: lib/classes/module/console/systemConfigCheck.class.php:74 msgid "*** CHECK PHP CONFIGURATION ***" msgstr "*** VERIFICATION DE LA CONFIGURATION PHP***" -#: lib/classes/module/console/systemConfigCheck.class.php:73 +#: lib/classes/module/console/systemConfigCheck.class.php:77 msgid "*** CHECK PHP EXTENSIONS ***" msgstr "*** VERIFICATION DES EXTENSIONS PHP***" -#: lib/classes/module/console/systemConfigCheck.class.php:76 +#: lib/classes/module/console/systemConfigCheck.class.php:80 msgid "*** CHECK PHRASEA ***" msgstr "*** VERIFICATION DE PHRASEA ***" -#: lib/classes/module/console/systemConfigCheck.class.php:79 +#: lib/classes/module/console/systemConfigCheck.class.php:83 msgid "*** CHECK SYSTEM LOCALES ***" msgstr "*** VERIFICATION DES LOCALES SYSTEME ***" -#: lib/classes/module/console/systemUpgrade.class.php:49 +#: lib/classes/module/console/systemUpgrade.class.php:50 msgid "Create automatically" msgstr "Créer automatiquement" -#: lib/classes/module/console/systemUpgrade.class.php:97 +#: lib/classes/module/console/systemUpgrade.class.php:81 msgid "Continuer ?" msgstr "Continuer ?" @@ -1202,11 +1230,11 @@ msgstr "Téléchargement effectué par l'utilisateur %s" msgid "report:: telechargements par jour" msgstr "Téléchargements par jour" -#: lib/classes/module/report/activity.class.php:531 +#: lib/classes/module/report/activity.class.php:530 msgid "report:: Detail des connexions" msgstr "Détail des connexions" -#: lib/classes/module/report/activity.class.php:589 +#: lib/classes/module/report/activity.class.php:588 msgid "report:: Detail des telechargements" msgstr "Détail des téléchargements" @@ -1222,6 +1250,10 @@ msgstr "Connexions" msgid "report:: telechargements" msgstr "Téléchargements" +#: lib/classes/module/report/edit.class.php:50 +msgid "report:: edited documents" +msgstr "Documents édités" + #: lib/classes/module/report/nav.class.php:129 msgid "report:: navigateur" msgstr "Navigateur" @@ -1266,7 +1298,15 @@ msgstr "Information sur l'enregistrement %d" msgid "report:: Information sur le navigateur %s" msgstr "Information sur le navigateur %s" -#: lib/classes/record/adapter.class.php:939 +#: lib/classes/module/report/push.class.php:50 +msgid "report:: pushed documents" +msgstr "Documents distribués" + +#: lib/classes/module/report/validate.class.php:50 +msgid "report:: validated documents" +msgstr "Documents validés" + +#: lib/classes/record/adapter.class.php:930 msgid "reponses::document sans titre" msgstr "Sans titre" @@ -1292,22 +1332,22 @@ msgstr "Reportages " msgid "preview:: resultat numero %s " msgstr "résultat numéro %s " -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 +#: lib/classes/record/preview.class.php:565 +#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:587 msgid "report::acces direct" msgstr "Accès direct" -#: lib/classes/record/preview.class.php:566 +#: lib/classes/record/preview.class.php:571 msgid "report:: page d'accueil" msgstr "Accueil" -#: lib/classes/record/preview.class.php:568 +#: lib/classes/record/preview.class.php:573 msgid "report:: visualiseur cooliris" msgstr "Visualiseur Cooliris" -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:578 +#: lib/classes/record/preview.class.php:585 msgid "report::presentation page preview" msgstr "Lien externe" @@ -1369,11 +1409,11 @@ msgstr "Formulation de la question incorrecte, question trop courte (nécessite msgid "Sphinx server is offline" msgstr "Serveur Sphinx inaccessible" -#: lib/classes/set/export.class.php:292 +#: lib/classes/set/export.class.php:301 msgid "export::ftp: reglages manuels" msgstr "Réglages manuels" -#: lib/classes/set/order.class.php:233 +#: lib/classes/set/order.class.php:245 #, php-format msgid "Commande du %s" msgstr "Commande du %s" @@ -1684,527 +1724,519 @@ msgstr "Un utilisateur existe déjà avec l'adresse email %s" msgid "modele %s" msgstr "modèle %s" -#: lib/conf.d/_GV_template.php:61 +#: lib/conf.d/_GV_template.php:82 msgid "GV::section:: Serveur HTTP" msgstr "Serveur HTTP" -#: lib/conf.d/_GV_template.php:66 +#: lib/conf.d/_GV_template.php:87 msgid "reglages:: Timezone de l'installation" msgstr "Fuseau horaire" -#: lib/conf.d/_GV_template.php:73 +#: lib/conf.d/_GV_template.php:94 msgid "reglages:: Nom de linstallation" msgstr "Clef unique de l'instance" -#: lib/conf.d/_GV_template.php:81 +#: lib/conf.d/_GV_template.php:102 msgid "reglages:: Langue par defaut" msgstr "Langue par défaut" -#: lib/conf.d/_GV_template.php:90 +#: lib/conf.d/_GV_template.php:111 msgid "reglages:: URL statique (optionnel)" msgstr "URL statique (optionnel)" -#: lib/conf.d/_GV_template.php:96 +#: lib/conf.d/_GV_template.php:117 msgid "GV::section:: Etat de maintenance" msgstr "Etat de maintenance" -#: lib/conf.d/_GV_template.php:102 +#: lib/conf.d/_GV_template.php:123 msgid "reglages:: Message a diffuser aux utilisateurs" msgstr "Message d'alerte aux utilisateurs" -#: lib/conf.d/_GV_template.php:108 +#: lib/conf.d/_GV_template.php:129 msgid "reglages:: activation du message a diffuser aux utilistaeurs" msgstr "Activer le message d'alerte aux utilisateurs" -#: lib/conf.d/_GV_template.php:114 +#: lib/conf.d/_GV_template.php:135 msgid "reglages:: logguer les erreurs" msgstr "consigner les erreurs" -#: lib/conf.d/_GV_template.php:119 +#: lib/conf.d/_GV_template.php:140 msgid "GV::section:: Connectivite aux webservices" msgstr "Connectivité aux web-services" -#: lib/conf.d/_GV_template.php:124 +#: lib/conf.d/_GV_template.php:145 msgid "reglages:: Utiliser els google apis" msgstr "Utiliser les API(s) Google" -#: lib/conf.d/_GV_template.php:131 +#: lib/conf.d/_GV_template.php:152 msgid "reglages:: Service phrasea de localisation" msgstr "Service Phraseanet de localisation" -#: lib/conf.d/_GV_template.php:139 +#: lib/conf.d/_GV_template.php:160 msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" msgstr "Nom d'utilisateur bit.ly" -#: lib/conf.d/_GV_template.php:145 +#: lib/conf.d/_GV_template.php:166 msgid "reglages:: ccle d'api pour l'api bit.ly" msgstr "Clé API Bit.ly" -#: lib/conf.d/_GV_template.php:151 +#: lib/conf.d/_GV_template.php:172 msgid "reglages:: Utilisation de l'api recpatcha" msgstr "Utiliser l'API ReCaptcha" -#: lib/conf.d/_GV_template.php:158 +#: lib/conf.d/_GV_template.php:179 msgid "reglages:: clef publique recaptcha" msgstr "Clé public ReCaptcha" -#: lib/conf.d/_GV_template.php:164 +#: lib/conf.d/_GV_template.php:185 msgid "reglages:: clef privee recaptcha" msgstr "Clé privée ReCaptcha" -#: lib/conf.d/_GV_template.php:169 +#: lib/conf.d/_GV_template.php:190 msgid "GV::section:: Connectivite a Youtube" msgstr "Connectivité à Youtube" -#: lib/conf.d/_GV_template.php:174 +#: lib/conf.d/_GV_template.php:195 #, php-format msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" msgstr "Utiliser l'api Youtube, voir %s,
      mettre la callback à : WEBSITE_URL/prod/bridge/callback/youtube" -#: lib/conf.d/_GV_template.php:181 +#: lib/conf.d/_GV_template.php:202 msgid "reglages:: Youtube client id" msgstr "Youtube client id" -#: lib/conf.d/_GV_template.php:187 +#: lib/conf.d/_GV_template.php:208 msgid "reglages:: Youtube clientsecret" msgstr "Youtube clientsecret" -#: lib/conf.d/_GV_template.php:193 +#: lib/conf.d/_GV_template.php:214 #, php-format msgid "reglages:: Youtube cle developpeur, voir %s" msgstr "Youtube clé développeur, voir %s" -#: lib/conf.d/_GV_template.php:198 +#: lib/conf.d/_GV_template.php:219 msgid "GV::section:: Connectivite a FlickR" msgstr "Connectivité à Flickr" -#: lib/conf.d/_GV_template.php:203 +#: lib/conf.d/_GV_template.php:224 #, php-format msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" msgstr "Utiliser l'API flickr, voir %s, puis régler la callback à %s" -#: lib/conf.d/_GV_template.php:210 +#: lib/conf.d/_GV_template.php:231 msgid "reglages:: FlickR client id" msgstr "Flickr client id" -#: lib/conf.d/_GV_template.php:216 +#: lib/conf.d/_GV_template.php:237 msgid "reglages:: FlickR client secret" msgstr "Flickr client secret" -#: lib/conf.d/_GV_template.php:221 +#: lib/conf.d/_GV_template.php:242 msgid "GV::section:: Connectivite a Dailymotion" msgstr "Connectivité à Dailymotion" -#: lib/conf.d/_GV_template.php:226 +#: lib/conf.d/_GV_template.php:247 #, php-format msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" msgstr "Utiliser l'API Dailymotion, voir %s, puis régler la callback à %s" -#: lib/conf.d/_GV_template.php:233 +#: lib/conf.d/_GV_template.php:254 msgid "reglages:: dailymotion client id" msgstr "Dailymotion client id" -#: lib/conf.d/_GV_template.php:239 +#: lib/conf.d/_GV_template.php:260 msgid "reglages:: dailymotion client secret" msgstr "Dailymotion client secret" -#: lib/conf.d/_GV_template.php:244 +#: lib/conf.d/_GV_template.php:265 msgid "GV::section:: Gestionnaire d'evenements" msgstr "Gestionnaire d'événements" -#: lib/conf.d/_GV_template.php:250 +#: lib/conf.d/_GV_template.php:271 msgid "reglages:: Evenements" msgstr "Evénements" -#: lib/conf.d/_GV_template.php:258 +#: lib/conf.d/_GV_template.php:279 msgid "reglages:: Notifications" msgstr "Notifications" -#: lib/conf.d/_GV_template.php:264 +#: lib/conf.d/_GV_template.php:285 msgid "GV::section:: Stockage des documents" msgstr "Stockage des documents" -#: lib/conf.d/_GV_template.php:269 +#: lib/conf.d/_GV_template.php:290 msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" msgstr "Lister les extensions de fichiers autorisés en ajout dans Phraseanet IV (extensions séparées par des virgules. Utiliser \" * \" pour autoriser tous les formats de fichiers)" -#: lib/conf.d/_GV_template.php:277 +#: lib/conf.d/_GV_template.php:298 msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" msgstr "Dossier de stockage des vignettes publiées en accès direct" -#: lib/conf.d/_GV_template.php:285 +#: lib/conf.d/_GV_template.php:306 msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" msgstr "Dossier de stockage des fichiers protégés de l'accès direct" -#: lib/conf.d/_GV_template.php:292 +#: lib/conf.d/_GV_template.php:313 msgid "reglages:: point de montage des vignettes publiees en acces direct" msgstr "Alias du dossier de vignettes web" -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "Serveurs de cache" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "Utiliser un serveur de cache" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "Aucun" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "Hote du serveur de cache" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "Port du serveur de cache" - -#: lib/conf.d/_GV_template.php:330 +#: lib/conf.d/_GV_template.php:321 msgid "GV::section:: Serveur Sphinx" msgstr "Serveur Sphinx" -#: lib/conf.d/_GV_template.php:335 +#: lib/conf.d/_GV_template.php:326 msgid "Utiliser Sphinx" msgstr "Utiliser Sphinx" -#: lib/conf.d/_GV_template.php:341 +#: lib/conf.d/_GV_template.php:332 msgid "reglages:: de l'adresse du serveur sphinx" msgstr "Adresse du serveur sphinx" -#: lib/conf.d/_GV_template.php:347 +#: lib/conf.d/_GV_template.php:338 msgid "reglages:: port du serveur sphinx" msgstr "Port du serveur sphinx" -#: lib/conf.d/_GV_template.php:353 +#: lib/conf.d/_GV_template.php:344 msgid "reglages:: de l'adresse du serveur RT sphinx" msgstr "Adresse du serveur RT sphinx" -#: lib/conf.d/_GV_template.php:359 +#: lib/conf.d/_GV_template.php:350 msgid "reglages:: port du serveur RT sphinx" msgstr "Port du serveur RT sphinx" -#: lib/conf.d/_GV_template.php:364 +#: lib/conf.d/_GV_template.php:356 +msgid "Phrasea Engine" +msgstr "" + +#: lib/conf.d/_GV_template.php:361 +msgid "Default results sort" +msgstr "" + +#: lib/conf.d/_GV_template.php:367 msgid "GV::section:: Executables externes" msgstr "Exécutables externes" -#: lib/conf.d/_GV_template.php:369 +#: lib/conf.d/_GV_template.php:372 msgid "reglages:: mod_xsendfileapache active" msgstr "Activer le mode Apache xsendfile" -#: lib/conf.d/_GV_template.php:375 +#: lib/conf.d/_GV_template.php:378 msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" msgstr "Chemin d'accès pour X-Accel-Redirect (NginX Uniquement)" -#: lib/conf.d/_GV_template.php:382 +#: lib/conf.d/_GV_template.php:385 msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" msgstr "Point de montage pour X-Accel-Redirect (NginX Uniquement)" -#: lib/conf.d/_GV_template.php:389 +#: lib/conf.d/_GV_template.php:392 msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" msgstr "Activation du stream h264 via mod_token - attention, nécessite les modules apache mod_h264_streaming et mod_auth_token" -#: lib/conf.d/_GV_template.php:396 +#: lib/conf.d/_GV_template.php:399 msgid "reglages:: point de montage du dossier protege via auth_token" msgstr "point de montage du dossier protégé via auth_token" -#: lib/conf.d/_GV_template.php:403 +#: lib/conf.d/_GV_template.php:406 msgid "reglages:: path complet du dossier protege via auth_token" msgstr "chemin complet du dossier protégé via auth_token" -#: lib/conf.d/_GV_template.php:409 +#: lib/conf.d/_GV_template.php:412 msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" msgstr "passphrase du mod_auth_token (définie dans le fichier de configuration apache)" -#: lib/conf.d/_GV_template.php:415 +#: lib/conf.d/_GV_template.php:418 msgid "reglages:: executable PHP CLI" msgstr "Chemin de l'éxécutable PHP CLI (Common Line Interface)" -#: lib/conf.d/_GV_template.php:422 +#: lib/conf.d/_GV_template.php:425 msgid "reglages:: path du php.ini specifique (vide si non utilise)" msgstr "Chemin du php.ini spécifique (optionnel)" -#: lib/conf.d/_GV_template.php:429 +#: lib/conf.d/_GV_template.php:432 msgid "reglages:: chemin de l'executable convert" msgstr "Chemin du composant convert" -#: lib/conf.d/_GV_template.php:436 +#: lib/conf.d/_GV_template.php:439 msgid "reglages:: chemin de l'executable composite" msgstr "Chemin du composant composite" -#: lib/conf.d/_GV_template.php:443 +#: lib/conf.d/_GV_template.php:446 msgid "reglages:: chemin de l'executable exiftools" msgstr "Chemin du composant Exiftools" -#: lib/conf.d/_GV_template.php:449 +#: lib/conf.d/_GV_template.php:452 msgid "reglages:: chemin de l'executable swfextract" msgstr "Chemin de l'éxécutable SWF extract" -#: lib/conf.d/_GV_template.php:456 +#: lib/conf.d/_GV_template.php:459 msgid "reglages:: chemin de l'executable pdf2swf" msgstr "Chemin de l'éxécutable PDF 2 SWF" -#: lib/conf.d/_GV_template.php:463 +#: lib/conf.d/_GV_template.php:466 msgid "reglages:: chemin de l'executable swfrender" msgstr "Chemin de l'éxécutable SWF render" -#: lib/conf.d/_GV_template.php:470 +#: lib/conf.d/_GV_template.php:473 msgid "reglages:: chemin de l'executable unoconv" msgstr "Chemin de l'éxécutable Unoconv" -#: lib/conf.d/_GV_template.php:477 +#: lib/conf.d/_GV_template.php:480 msgid "reglages:: chemin de l'executable FFmpeg" msgstr "Chemin du composant FFmpeg" -#: lib/conf.d/_GV_template.php:483 +#: lib/conf.d/_GV_template.php:486 msgid "reglages:: chemin de l'executable MP4Box" msgstr "Chemin de l'éxécutable" -#: lib/conf.d/_GV_template.php:489 +#: lib/conf.d/_GV_template.php:492 msgid "reglages:: chemin de l'executable Mplayer" msgstr "Chemin de l'éxécutable Mplayer" -#: lib/conf.d/_GV_template.php:495 +#: lib/conf.d/_GV_template.php:498 msgid "reglages:: chemin de l'executable pdftotext (xpdf)" msgstr "chemin de l'éxécutable pdftotext (xpdf)" -#: lib/conf.d/_GV_template.php:501 +#: lib/conf.d/_GV_template.php:504 msgid "reglages:: nombre maximum de page a extraire (PDF)" msgstr "limite du nombre de pages de texte à extraire pour les fichiers PDF" -#: lib/conf.d/_GV_template.php:506 +#: lib/conf.d/_GV_template.php:509 msgid "GV::section:: Repertoires utilitaires" msgstr "Répertoires utilitaires" -#: lib/conf.d/_GV_template.php:511 +#: lib/conf.d/_GV_template.php:514 msgid "reglages:: proprietaire des fichiers" msgstr "Propriétaire des fichiers (nom du compte d'exécution du serveur Apache)" -#: lib/conf.d/_GV_template.php:517 +#: lib/conf.d/_GV_template.php:520 msgid "reglages:: groupes des fichiers" msgstr "Groupe d'utilisateurs (nom du groupe du compte d'exécution du serveur Apache)" -#: lib/conf.d/_GV_template.php:522 +#: lib/conf.d/_GV_template.php:525 msgid "GV::section:: Configuration principale" msgstr "Configuration principale" -#: lib/conf.d/_GV_template.php:534 +#: lib/conf.d/_GV_template.php:537 msgid "reglages:: email de l'administrateur" msgstr "E-mail de l'administrateur" -#: lib/conf.d/_GV_template.php:540 +#: lib/conf.d/_GV_template.php:543 msgid "reglages:: Afficher le nom des bases et des collections" msgstr "Afficher le nom des bases et des collections" -#: lib/conf.d/_GV_template.php:547 +#: lib/conf.d/_GV_template.php:550 msgid "reglages:: activer le choix du nom de fichier a l'export" msgstr "Activer le choix du nom de fichier à l'export pour l'utilisateur" -#: lib/conf.d/_GV_template.php:554 +#: lib/conf.d/_GV_template.php:557 msgid "reglages:: choix par defaut des noms de fichier a l'export" msgstr "Par défaut, les fichiers à l'export seront nommés avec ..." -#: lib/conf.d/_GV_template.php:568 +#: lib/conf.d/_GV_template.php:571 msgid "reglages:: Active les partages Facebook et Twitter" msgstr "Activer les partages Facebook et Twitter" -#: lib/conf.d/_GV_template.php:575 +#: lib/conf.d/_GV_template.php:578 msgid "GV::section:: Page d'accueil" msgstr "Page d'accueil" -#: lib/conf.d/_GV_template.php:588 +#: lib/conf.d/_GV_template.php:591 msgid "reglages:: presentation sur la home" msgstr "Méthode d'affichage des paniers publiés sur la page d'accueil" -#: lib/conf.d/_GV_template.php:595 +#: lib/conf.d/_GV_template.php:598 msgid "GV::section:: Moteur de recherche" msgstr "Moteur de recherche" -#: lib/conf.d/_GV_template.php:601 +#: lib/conf.d/_GV_template.php:604 msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" msgstr "Pour les recherches utilisateurs, nombre minimal de caractères avant l'insertion de l'opérateur de troncature (par défaut 1)" -#: lib/conf.d/_GV_template.php:607 +#: lib/conf.d/_GV_template.php:610 msgid "reglages:: Question par defaut" msgstr "Par défaut la question est ..." -#: lib/conf.d/_GV_template.php:613 +#: lib/conf.d/_GV_template.php:616 msgid "reglages:: type de document cherches par defaut e l'ouverture du site" msgstr "Par défaut les recherches portent sur les ..." -#: lib/conf.d/_GV_template.php:619 +#: lib/conf.d/_GV_template.php:622 msgid "GV::section:: Report" msgstr "Report" -#: lib/conf.d/_GV_template.php:625 +#: lib/conf.d/_GV_template.php:628 msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" msgstr "Report anonyme (masque les infos concernant les utilisateurs)" -#: lib/conf.d/_GV_template.php:631 +#: lib/conf.d/_GV_template.php:634 msgid "GV::section:: Modules supplementaires" msgstr "Modules supplémentaires" -#: lib/conf.d/_GV_template.php:637 +#: lib/conf.d/_GV_template.php:640 msgid "reglages:: Activation de l'outil thesaurus" msgstr "Activation Phraseanet IV thesaurus" -#: lib/conf.d/_GV_template.php:642 +#: lib/conf.d/_GV_template.php:645 msgid "reglages:: Activation du Mode MultiDOC" msgstr "Activation du mode reportages" -#: lib/conf.d/_GV_template.php:647 +#: lib/conf.d/_GV_template.php:650 msgid "reglages:: Substitution de HD d'un record " msgstr "Substitution de document " -#: lib/conf.d/_GV_template.php:652 +#: lib/conf.d/_GV_template.php:655 msgid "reglages:: Substitution de thumbnail d'un record" msgstr "Activation des fonctions de substitution de vignette de document" -#: lib/conf.d/_GV_template.php:736 +#: lib/conf.d/_GV_template.php:739 msgid "GV::section:: Envois de mails" msgstr "Envois d'e-mail" -#: lib/conf.d/_GV_template.php:747 +#: lib/conf.d/_GV_template.php:750 msgid "reglages:: Expediteur mail par defaut" msgstr "Adresse e-mail de l' expéditeur par défaut" -#: lib/conf.d/_GV_template.php:753 +#: lib/conf.d/_GV_template.php:756 msgid "reglages:: Utilisation d'un serveur SMTP" msgstr "Utilisation d'un serveur SMTP" -#: lib/conf.d/_GV_template.php:759 +#: lib/conf.d/_GV_template.php:762 msgid "reglages:: Activation de l'authentification smtp" msgstr "Utiliser une authentification" -#: lib/conf.d/_GV_template.php:765 +#: lib/conf.d/_GV_template.php:768 msgid "reglages:: Hote SMTP" msgstr "Hôte" -#: lib/conf.d/_GV_template.php:771 +#: lib/conf.d/_GV_template.php:774 msgid "reglages:: Port SMTP" msgstr "Port" -#: lib/conf.d/_GV_template.php:777 +#: lib/conf.d/_GV_template.php:780 msgid "reglages:: Utiliser une conenction SSL" msgstr "Utiliser une connexion SSL" -#: lib/conf.d/_GV_template.php:783 +#: lib/conf.d/_GV_template.php:786 msgid "reglages:: User SMTP" msgstr "Utilisateur" -#: lib/conf.d/_GV_template.php:789 +#: lib/conf.d/_GV_template.php:792 msgid "reglages:: Mot de passe SMTP" msgstr "Mot de passe" -#: lib/conf.d/_GV_template.php:794 +#: lib/conf.d/_GV_template.php:797 msgid "GV::section:: Exports FTP" msgstr "Exports FTP" -#: lib/conf.d/_GV_template.php:799 +#: lib/conf.d/_GV_template.php:802 msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" msgstr "Activer les fonctions d'export FTP" -#: lib/conf.d/_GV_template.php:805 +#: lib/conf.d/_GV_template.php:808 msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" msgstr "Activer les fonctions d'export FTP pour les utilisateurs ( si \"false\", seuls les administrateurs peuvent faire des envois FTP)" -#: lib/conf.d/_GV_template.php:810 +#: lib/conf.d/_GV_template.php:813 msgid "GV::section:: Configuration du client" msgstr "Configuration du client" -#: lib/conf.d/_GV_template.php:822 +#: lib/conf.d/_GV_template.php:818 +msgid "Maximum megabytes allowed in download (if request is bigger, then mail is still available)" +msgstr "" + +#: lib/conf.d/_GV_template.php:824 msgid "reglages:: position de l'onglet de recherche" msgstr "Ordre d'affichage de l'onglet \"recherche\" (1 =1er à gauche)" -#: lib/conf.d/_GV_template.php:828 +#: lib/conf.d/_GV_template.php:830 msgid "reglages:: position de l'onglet de recherche avancee" msgstr "Position de l'onglet de recherche avancée" -#: lib/conf.d/_GV_template.php:834 +#: lib/conf.d/_GV_template.php:836 msgid "reglages:: position de l'onglet des topics" msgstr "Position de l'onglet des thèmes" -#: lib/conf.d/_GV_template.php:840 +#: lib/conf.d/_GV_template.php:842 msgid "reglages:: numero de l'onglet actif" msgstr "Numéro de l'onglet actif" -#: lib/conf.d/_GV_template.php:846 +#: lib/conf.d/_GV_template.php:848 msgid "reglages:: rendu des topics" msgstr "Option d'affichage des thèmes" -#: lib/conf.d/_GV_template.php:859 +#: lib/conf.d/_GV_template.php:861 msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" msgstr "Afficher le contenu d'un reportage en rollover (fenêtre de prévisualisation)" -#: lib/conf.d/_GV_template.php:865 +#: lib/conf.d/_GV_template.php:867 msgid "reglages:: Voir le rollover sur les elements du chutier" msgstr "Afficher le contenu d'un enregistrement en rollover a partir d'un panier" -#: lib/conf.d/_GV_template.php:871 +#: lib/conf.d/_GV_template.php:873 msgid "reglages:: Presentation des collections" msgstr "Option d'affichage des collections dans Phraseanet Classic" -#: lib/conf.d/_GV_template.php:878 +#: lib/conf.d/_GV_template.php:880 msgid "reglages:: Voir taille HD total des doc d'un chutiers" msgstr "Afficher la taille totale d'un panier (la somme des tailles des éléments du panier)" -#: lib/conf.d/_GV_template.php:884 +#: lib/conf.d/_GV_template.php:886 msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" msgstr "Afficher automatiquement l'onglet des propositions du thesaurus, s'il y en a." -#: lib/conf.d/_GV_template.php:890 +#: lib/conf.d/_GV_template.php:892 msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" msgstr "Rediriger vers l'authentification les utilisateurs invités voulant télécharger" -#: lib/conf.d/_GV_template.php:895 +#: lib/conf.d/_GV_template.php:897 msgid "GV::section:: Parametrage de l'inscription" msgstr "Configuration de l'inscription" -#: lib/conf.d/_GV_template.php:900 +#: lib/conf.d/_GV_template.php:902 msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" msgstr "masquer la liste des collections à l'utilisateur dans le formulaire d'inscription. L'inscription se fait sur toutes les collections éligibles." -#: lib/conf.d/_GV_template.php:906 +#: lib/conf.d/_GV_template.php:908 msgid "reglages:: Activation de l'autoinscription" msgstr "Activer l'auto-acceptation des utilisateurs ayant validé toute les étapes de l'inscription." -#: lib/conf.d/_GV_template.php:911 +#: lib/conf.d/_GV_template.php:913 msgid "GV::section:: Configuration du push" msgstr "Configuration du Push" -#: lib/conf.d/_GV_template.php:916 +#: lib/conf.d/_GV_template.php:918 msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" msgstr "Nombre de jours avant la fin de la validation pour envoi de l'e-mail de rappel" -#: lib/conf.d/_GV_template.php:928 +#: lib/conf.d/_GV_template.php:930 msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" msgstr "Durée de validité ( en jours) des liens générés pour les process de validation, 0 pour une durée illimitée." -#: lib/conf.d/_GV_template.php:933 +#: lib/conf.d/_GV_template.php:935 msgid "GV::section:: Indexation par les robots" msgstr "Indexation par les robots" -#: lib/conf.d/_GV_template.php:938 +#: lib/conf.d/_GV_template.php:940 msgid "reglages :: Titre de l'installation" msgstr "Titre de l'installation" -#: lib/conf.d/_GV_template.php:944 +#: lib/conf.d/_GV_template.php:946 msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" msgstr "Contenus de l'attribut \"keywords\" (mot clé) pour les (moteurs de recherche)" -#: lib/conf.d/_GV_template.php:950 +#: lib/conf.d/_GV_template.php:952 msgid "reglages :: Description de l'installation" msgstr "Meta description" -#: lib/conf.d/_GV_template.php:956 +#: lib/conf.d/_GV_template.php:958 msgid "reglages:: identifiant google analytics" msgstr "Identifiant Google Analytics (UA-XXXXXXX-X)" -#: lib/conf.d/_GV_template.php:962 +#: lib/conf.d/_GV_template.php:964 msgid "Allow the website to be indexed by search engines like Google" msgstr "Permettre l'indexation du site par des moteurs de recherche (comme Google)" -#: lib/conf.d/_GV_template.php:968 +#: lib/conf.d/_GV_template.php:970 msgid "reglages:: Afficher le bandeau Google Chrome Frame" msgstr "Afficher le bandeau Google Chrome Frame" @@ -2424,7 +2456,7 @@ msgstr "Identifiant" msgid "admin::compte-utilisateur mot de passe" msgstr "Mot de passe" -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 +#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:112 msgid "report::Heures" msgstr "Heures" @@ -2445,7 +2477,7 @@ msgid "boutton::editer" msgstr "Editer" #: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:78 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1436 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1437 msgid "boutton::supprimer" msgstr "Supprimer" @@ -2470,6 +2502,95 @@ msgstr "Description" msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "Pour obtenir davantage d'informations, consulter le lien suivant %lien%" +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:36 +msgid "Vous avez recu un nouveau panier" +msgstr "Vous avez reçu un nouveau panier" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:38 +msgid "rafraichir" +msgstr "Rafraîchir" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:90 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "Vous avez reçu une demande de validation des documents de ce panier" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:106 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:252 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:440 +msgid "action::exporter" +msgstr "Exporter" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:117 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:263 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:451 +msgid "action::editer" +msgstr "Editer" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:142 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:303 +msgid "action::Valider" +msgstr "Valider" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:219 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "Vous avez envoyé ce panier pour validation" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:232 +msgid "paniers:: panier recu de %pusher%" +msgstr "Panier reçu de %pusher%" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:279 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:285 +msgid "action::renommer" +msgstr "Renommer" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:320 +msgid "Archive" +msgstr "Archiver" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:332 +msgid "action : supprimer" +msgstr "Supprimer" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:341 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:347 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:475 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:483 +msgid "Re-ordonner" +msgstr "Ordonner" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:466 +msgid "action::detacher" +msgstr "Détacher" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:692 +msgid "delete" +msgstr "Supprimer" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:783 +msgid "panier:: ordre du panier" +msgstr "Ordre du panier" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:791 +msgid "panier:: ordre Validation ascendante" +msgstr "Mieux noté" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:799 +msgid "panier:: ordre Validation descendante" +msgstr "Moins noté" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:845 +msgid "L'utilisateur approuve ce document" +msgstr "L'utilisateur approuve ce document" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:851 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "L'utilisateur n'a pas encore donné son avis sur ce document" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:857 +msgid "L'utilisateur desapprouve ce document" +msgstr "L'utilisateur désapprouve ce document" + #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:47 msgid "Users" msgstr "Utilisateurs" @@ -2665,37 +2786,37 @@ msgstr "Supprimer le terme \"%s\" des fiches ?" #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:860 msgid "prod::thesaurusTab:tree:loading" msgstr "Chargement..." -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1232 msgid "boutton::ok" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1258 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1284 msgid "prod::thesaurusTab:dlg:OK" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1265 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1291 msgid "prod::thesaurusTab:dlg:Annuler" msgstr "Annuler" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1316 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "Accepter comme terme spécifique" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1326 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "Accepter comme synonyme" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1408 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "Accepter en %lng_code%" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1427 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "Remplacer par" @@ -2864,6 +2985,10 @@ msgstr "Ce champ est décrit comme élément du %DublinCoreElementSet%" msgid "report:: 2 - Bases" msgstr "2 - Bases" +#: tmp/cache_twig/12/0a/b3d79d1d4e6aa2159ebb650983c4.php:55 +msgid "Voulez-vous dire %link% ?" +msgstr "Voulez vous dire %link% ?" + #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 msgid "Ajouter une publication" msgstr "Ajouter une publication" @@ -2917,6 +3042,58 @@ msgstr "Une fois la publication supprimée, les informations publiées seront d msgid "validation::envoyer mon rapport" msgstr "Envoyer mon rapport" +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:14 +msgid "You are not authorized to do this" +msgstr "Vous ne dsiposez pas des droits nécessaires pour cette action" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:21 +msgid "About Roles : " +msgstr "A propos des rôles : " + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:26 +msgid "Admin can edit shares, modify content" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:32 +msgid "Editor can modify content" +msgstr "Un éditeur peut modifier le contenu" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:38 +msgid "Access user have readonly access" +msgstr "Accès ne permet que d'utiliser" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:46 +msgid "Find a user" +msgstr "Chercher un utilisateur" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:83 +msgid "You are Admin" +msgstr "Vous êtes administrateur" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:92 +msgid "Role" +msgstr "Rôle" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:105 +msgid "Access" +msgstr "Accès" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:118 +msgid "Editor" +msgstr "Editeur" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:131 +msgid "Admin" +msgstr "Administrateur" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:147 +msgid "Remove" +msgstr "Retirer" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:156 +msgid "Notify" +msgstr "Notifier" + #: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 msgid "notice" msgstr "Notice" @@ -2929,6 +3106,10 @@ msgstr "Tout télécharger" msgid "action : exporter" msgstr "Exporter" +#: tmp/cache_twig/15/06/d2e85f3a9ae09f5a6f26a134bc0d.php:37 +msgid "%nb_records% records" +msgstr "%nb_records% enregistrement(s)" + #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 msgid "First Name" msgstr "Prénom" @@ -2946,7 +3127,6 @@ msgid "Job" msgstr "Poste" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:174 msgid "Company" msgstr "Entreprise" @@ -2954,33 +3134,40 @@ msgstr "Entreprise" msgid "City" msgstr "Ville" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" -msgstr "Annuler" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:87 msgid "Add" msgstr "Ajouter" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:91 +msgid "Cancel" +msgstr "Annuler" + #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:23 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:17 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:23 msgid "boutton::precedent" msgstr "précédent" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:29 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:29 msgid "boutton::demarrer" msgstr "Diaporama" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:35 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:35 msgid "boutton::pause" msgstr "Pause" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:41 #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:47 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:41 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:47 msgid "boutton::suivant" msgstr "suivant" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:53 +#: tmp/cache_twig/2f/f6/d65ed0e4815155eb5a178c2f48a4.php:53 msgid "boutton::telecharger" msgstr "Télécharger" @@ -2992,41 +3179,61 @@ msgstr "En attente" msgid "En cours d'envoi" msgstr "En cours d'envoi" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:28 msgid "List Name" msgstr "Nom de la liste" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:37 +msgid "Save" +msgstr "Sauvegarder" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:59 +msgid "Share the list" +msgstr "Partager cette liste" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:64 msgid "Set sharing permission" msgstr "Réglage des partages" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:79 +msgid "Delete" +msgstr "Supprimer" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:101 +msgid "%length% peoples" +msgstr "%length% personne(s)" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:107 +msgid "Edit" +msgstr "Editer" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 +msgid "View" +msgstr "Voir" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:208 msgid "Activite" msgstr "Activité" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" -msgstr "Tout" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:214 msgid "Template" msgstr "Modèle" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:226 msgid "Country" msgstr "Pays" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:232 msgid "Position" msgstr "Poste" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 -msgid "%length% peoples" -msgstr "%length% personne(s)" +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:241 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:266 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:291 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:317 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:343 +msgid "All" +msgstr "Tout" #: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 msgid "VALIDATION" @@ -3036,11 +3243,11 @@ msgstr "VALIDATION" msgid "lightbox::recaptitulatif" msgstr "Récapitulatif" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:121 msgid "validation:: OUI" msgstr "OUI" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:136 msgid "validation:: NON" msgstr "NON" @@ -3112,6 +3319,7 @@ msgid "action : ajouter au panier" msgstr "Ajouter au panier" #: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 msgid "action : print" msgstr "Imprimer" @@ -3199,234 +3407,230 @@ msgstr "Connexion réussie mais la base de données n'existe pas ou n'est pas ac msgid "Unable to connect to MySQL server" msgstr "Connexion impossible avec le serveur MySQL" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "Bonjour, vous êtes sur le point d'installer Phraseanet." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:435 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "Consultez en ligne les pré-requis et la configuration du serveur web" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:441 msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." msgstr "Vous aurez besoin de spécifier un serveur MySQL, des répertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces répertoires de stockage." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:451 msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." msgstr "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" -msgstr "Pré-requis" +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:517 +msgid "Prerequisite and Configuration" +msgstr "Prérequis et Configuration" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "Configuration du serveur web" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:551 msgid "Executables externes" msgstr "Exécutables externes" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:594 msgid "Required field" msgstr "Champs obligatoire" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:618 msgid "Phraseanet may require many binaries." msgstr "Phraseanet peut utiliser de nombreux éxécutables" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:624 msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." msgstr "Certains sont obligatoires, comme Indexer, Exiftool ou ImageMagick d'autres sont facultatifs comme FFmpeg utilisé pour contruire les sous résolutions des Vidéos" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:630 msgid "Don't worry, You can modify your configuration later" msgstr "Vous pouvez modifier cette configuration plus tard" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:669 msgid "Creation de votre compte" msgstr "Création de votre compte" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:681 msgid "Votre adresse email" msgstr "Votre adresse email" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:688 msgid "Votre mot de passe" msgstr "Votre mot de passe" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 msgid "Confirmation de votre mot de passe" msgstr "Confirmation de votre mot de passe" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:717 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "A propos de la sécurité des mots de passe :" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:721 msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" msgstr "Les mots de passe doivent être clairement distincts du login et contenir au moins deux types parmis les caractères suivants :" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:726 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Spéciaux" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:730 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Majuscules" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:734 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Minuscules" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:738 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Numériques" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:758 msgid "Your email will be used to log in the application." msgstr "Votre adresse email sera utilisée pour vous connecter à l'application" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:762 msgid "Please be sure it is still valid and you can access it" msgstr "Assurez vous que cette adresse est valide et que vous y accédez" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "Configuration de la base de compte ApplicationBox" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:820 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1104 msgid "MySQL database connection parameters" msgstr "Paramètres de connexion à la base de données MySQL" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:827 msgid "phraseanet:: adresse" msgstr "Adresse" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:834 msgid "Database user" msgstr "Utilisateur" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:848 msgid "phraseanet:: port" msgstr "Port" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:855 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1119 msgid "Database" msgstr "Base de données" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:863 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1127 msgid "boutton::tester" msgstr "Tester" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:883 msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" msgstr "%debut_lien%Afficher davantage d'options%fin_lien%" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:902 msgid "ApplicationBox is a Mysql database." msgstr "l'ApplicationBox est une base de données Mysql ." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:908 msgid "It stores users datas, rights, and references to DataBoxes where records are stored." msgstr "Elle stocke les informations utilisateurs et les références vers les DataBoxes où les documents sont stockés" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:920 msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." msgstr "Phraseanet recommande fortement l'utilisation de %link_start%MariaDB%link_end% à la place de MySQL." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:964 msgid "setup::Configuration des repertoires de stockage" msgstr "Configuration des répertoires de stockage" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:976 msgid "Repertoire de stockage des fichiers" msgstr "Répertoire de stockage des fichiers" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:983 msgid "Repertoire de stockage des imagettes" msgstr "Répertoires de stockage des imagettes" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:990 msgid "Point de montage des imagettes (voir aide ci dessous)" msgstr "Point de montage des imagettes (voir aide ci dessous)" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:999 msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" msgstr "Il faut déclarer dans votre serveur web un point montage vers le dossier de stockage des imagettes" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1004 msgid "Exemple Apache" msgstr "Exemple Apache" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 msgid "Exemple Nginx" msgstr "Exemple Nginx" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1042 msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." msgstr "Vos documents et leurs sous résolutions (sous définitions, vignettes...) seront stockés dans ces répertoires" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1048 msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." msgstr "Le répertoire des vignettes est monté pour être accessible en HTTP, les autres non." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1054 msgid "If you plan to store large files, be sure it will fit in these directories." msgstr "Si vous prévoyez de stocker des fichiers volumineux, assurez vous que les répertoires de stockages sont prévus pour." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 msgid "setup::Configuration de la base de stockage DataBox" msgstr "Configuration de la base de stockage DataBox" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1111 msgid "Ne pas creer de DataBox maintenant" msgstr "Ne pas créer de DataBox maintenant" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1139 msgid "Modele de donnees" msgstr "Modèle de données" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1170 msgid "Creation des taches" msgstr "Création des tâches" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1175 msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" msgstr "Phraseanet embarque un moteur de tâches pour la lecture / écriture des métadonnées, et réaliser d'autres opérations" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1186 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Créer la tâche d'écriture des métadonnées" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1195 msgid "Creer la tache de creation des sous-definitions" msgstr "Créer la tâche de création des sous-définitions" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1204 msgid "Creer la tache d'indexation" msgstr "Créer la tâche d'indexation" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1221 msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." msgstr "Les Databoxes Phraseanet sont des bases de données MySQL, requêtables par l'ApplicationBox Phraseanet." -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1225 msgid "Databoxes store records, metadatas and their classifications" msgstr "Les Databoxes stockent les enregistrements, metadatas et leur classification" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1246 msgid "button::Install" msgstr "Installer" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1256 msgid "Install in progess" msgstr "Installation en cours" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1262 msgid "Installation is currenlty processing, please wait..." msgstr "L'installation est en cours, patientez..." @@ -3435,66 +3639,45 @@ msgid "validation:: editer ma note" msgstr "Modifier mon annotation" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 msgid "action : editer" msgstr "Editer" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 msgid "action : status" msgstr "Propriétés" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 msgid "action : collection" msgstr "Déplacer" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 msgid "action : push" msgstr "Push" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:89 +msgid "Feedback" +msgstr "Feedback" + +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:100 msgid "action : bridge" msgstr "Bridge" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 msgid "action : publier" msgstr "Publier" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:119 msgid "action : outils" msgstr "Outils" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "Supprimer" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:135 msgid "Certaines donnees du panier ont change" msgstr "Certaines données du panier ont changé" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "Rafraîchir" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 msgid "Votre recherche ne retourne aucun resultat" msgstr "Votre recherche ne retourne aucun résultat" -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "Voulez vous dire %link% ?" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." msgstr "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran" @@ -3631,473 +3814,426 @@ msgstr "Chargement..." msgid "phraseanet:: panier" msgstr "Panier" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "Recherche" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:361 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:365 msgid "phraseanet:: propositions" msgstr "Propositions" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:373 msgid "phraseanet:: thesaurus" msgstr "Thésaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" -msgstr "Ré-initialiser" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:384 +msgid "Close the WorkZone" +msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "tous les mots suivants" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "Cette expression exacte" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "Au moins un des mots suivants" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "Aucun des mots suivants" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "Toutes" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "Aucune" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " -msgstr "Trier par " - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "Pertinence" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "Date d'ajout" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "Aléatoire" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "Descendant" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "Ascendant" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "Rechercher par Stemme" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "Le(s) mot(s) contenu(s) dans le(s) champs" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "Tous les champs" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "Status des documents pour la recherche" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "Dans un champs date" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "De" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "A" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:410 msgid "prod::thesaurusTab:thesaurus" msgstr "Thésaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:414 msgid "prod::thesaurusTab:candidats" msgstr "Candidats" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:426 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "Accepter le terme candidat" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:432 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "Remplacer le terme" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:832 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1090 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:439 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:707 msgid "boutton::rechercher" msgstr "Rechercher" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:552 msgid "chargement" msgstr "Chargement" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:581 msgid "prod::thesaurusTab:dlg:supprimer le terme ?" msgstr "Supprimer le terme" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:587 msgid "prod::thesaurusTab:dlg:accepter le terme ?" msgstr "Accepter le terme" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:593 msgid "prod::thesaurusTab:dlg:remplacer le terme ?" msgstr "Remplacer le terme" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:609 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:613 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:617 msgid "action:: nouveau panier" msgstr "Nouveau" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:624 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:628 msgid "Browse Baskets" msgstr "Parcourir les paniers" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:635 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:639 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:643 msgid "action:: nouveau reportage" msgstr "Nouveau reportage" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:652 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:656 msgid "phraseanet:: tri par date" msgstr "Tri par date" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:664 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:668 msgid "phraseanet:: tri par nom" msgstr "Tri alphabétique" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:676 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1589 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1761 msgid "Preferences" msgstr "Préférences" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:702 +msgid "Advanced Search" +msgstr "Recherche avancée" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:720 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1194 msgid "phraseanet::type:: documents" msgstr "Documents" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 msgid "phraseanet::type:: reportages" msgstr "Reportage" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:740 msgid "Tout type" msgstr "Tout type" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:744 msgid "Image" msgstr "Image" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:748 msgid "Video" msgstr "Vidéo" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:752 msgid "Audio" msgstr "Audio" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:756 msgid "Document" msgstr "Document" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 msgid "Flash" msgstr "Flash" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" -msgstr "Bases" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:788 +msgid "boutton:: selectionner toutes les bases" +msgstr "Toutes" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" -msgstr "Historique" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:793 +msgid "boutton:: selectionner aucune base" +msgstr "Aucune" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" -msgstr "Thèmes" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:808 +msgid "Re-initialiser" +msgstr "Ré-initialiser" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:816 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:850 +msgid "Trier par " +msgstr "Trier par " + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:821 +msgid "pertinence" +msgstr "Pertinence" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +msgid "date dajout" +msgstr "Date d'ajout" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:829 +msgid "aleatoire" +msgstr "Aléatoire" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:835 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:887 +msgid "descendant" +msgstr "Descendant" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:839 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:891 +msgid "ascendant" +msgstr "Ascendant" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:844 +msgid "rechercher par stemme" +msgstr "Rechercher par Stemme" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:902 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "Le(s) mot(s) contenu(s) dans le(s) champs" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:908 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1092 +msgid "rechercher dans tous les champs" +msgstr "Tous les champs" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:954 +msgid "Status des documents a rechercher" +msgstr "Status des documents pour la recherche" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1060 +msgid "Rechercher dans un champ date" +msgstr "Dans un champs date" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1102 +msgid "phraseanet::time:: de" +msgstr "De" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +msgid "phraseanet::time:: a" +msgstr "A" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1169 msgid "Select" msgstr "Sélectionner" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1176 msgid "reponses:: selectionner tout" msgstr "Tout" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1182 msgid "reponses:: selectionner rien" msgstr "Aucun" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1188 msgid "phraseanet::type:: images" msgstr "Images" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1200 msgid "phraseanet::type:: videos" msgstr "Vidéos" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1206 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1222 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1355 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1455 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1492 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 msgid "Select an action" msgstr "Sélectionner une action" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" -msgstr "Feedback" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1643 msgid "raccourci :: a propos des raccourcis claviers" msgstr "A propos des raccourcis clavier" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1648 msgid "Raccourcis claviers en cours de recherche : " msgstr "Raccourcis de la fenêtre principale " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1653 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1689 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : sélectionner tout " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1657 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1693 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : imprimer la sélection " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1661 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1697 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : éditer la sélection " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1665 msgid "Raccourcis::fleche gauche : page precedente " msgstr "flèche gauche : page précédente " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1669 msgid "Raccourcis::fleche droite : page suivante " msgstr "flèche droite : page suivante " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1673 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "flèche haute : défilement vers le haut " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1677 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "flèche basse : défilement vers le bas " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1684 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Raccourcis de la zone des paniers & reportages " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1704 msgid "Raccourcis claviers en cours de editing : " msgstr "Raccourci de la fenêtre d'édition " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1709 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "Tab/shift-tab : Changer de champs " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 msgid "Raccourcis claviers en cours de preview : " msgstr "Raccourcis de la fenêtre vue détaillée " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1721 msgid "Raccourcis::fleche gauche : en avant " msgstr "flèche droite : document suivant " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1725 msgid "Raccourcis::fleche gauche : en arriere " msgstr "flèche gauche : document précédent " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1729 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "espace : démarrer/arrêter le diaporama " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1737 msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "Vous pouvez fermer la plupart des fênetres en sur impression avec la touche echap " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1747 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Ne plus montrer cette aide" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1767 msgid "Affichage" msgstr "Affichage" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1771 msgid "Configuration" msgstr "Configuration" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1779 msgid "Mode de presentation" msgstr "Mode de présentation" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1793 msgid "reponses:: mode vignettes" msgstr "Vignettes" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1803 msgid "reponses:: mode liste" msgstr "Liste" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1809 msgid "Theme" msgstr "Thème" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1818 msgid "Selecteur de theme" msgstr "Sélecteur de thème" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1840 msgid "Presentation de vignettes" msgstr "Présentation de vignettes" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1851 msgid "Iconographe (description au rollover)" msgstr "Iconographe (description au rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1863 msgid "Graphiste (preview au rollover)" msgstr "Graphiste (prévisualisation au rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1873 msgid "Informations techniques" msgstr "Informations techniques" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1884 msgid "Afficher" msgstr "Afficher" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1896 msgid "Afficher dans la notice" msgstr "Afficher dans la notice" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1908 msgid "Ne pas afficher" msgstr "Ne pas afficher" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1918 msgid "Type de documents" msgstr "Type de document" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1929 msgid "Afficher une icone" msgstr "Afficher une icône" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1937 msgid "reponses:: images par pages : " msgstr "Résultats par page " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1950 msgid "reponses:: taille des images : " msgstr "Taille des vignettes " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1964 msgid "Couleur de selection" msgstr "Couleur de sélection" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1969 msgid "choisir" msgstr "Choisir" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1979 msgid "Affichage au demarrage" msgstr "Afficher au démarrage" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1995 msgid "Ma derniere question" msgstr "Ma dernière question" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2006 msgid "Une question personnelle" msgstr "La question" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 msgid "Aide" msgstr "Aide" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2078 msgid "preview:: Description" msgstr "Notice" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2082 msgid "preview:: Historique" msgstr "Historique" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2089 msgid "preview:: Popularite" msgstr "Popularité" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2142 msgid "Presentation de vignettes de panier" msgstr "Présentation des vignettes de panier" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2159 msgid "Afficher les status" msgstr "Afficher les Status" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2177 msgid "Afficher la fiche descriptive" msgstr "Afficher la notice" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2195 msgid "Afficher le titre" msgstr "Afficher le titre" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "Ordonner" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "Tri automatique" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "Choisir" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "Inverser" - #: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 msgid "preview::statistiques de visualisation pour le lien" msgstr "Statistiques de visualisation" @@ -4279,21 +4415,33 @@ msgstr "Aucune correspondance trouvée" msgid "Ajouter a" msgstr "Ajouter à" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:21 msgid "Fail" msgstr "Echec de la publication" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:27 msgid "Success" msgstr "Publication réussie" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" -msgstr "Erreur : %error%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:75 +msgid "Hello %username%" +msgstr "Hello %username%" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" -msgstr "Expire dans %expiration_date%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:90 +msgid "Erreur" +msgstr "Erreur" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:97 +msgid "%error%" +msgstr "%error%" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:113 +msgid "Code d'accès" +msgstr "Code d'Accès" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:120 +msgid "Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis :" +msgstr "Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis :" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 msgid "Rights" @@ -4311,31 +4459,31 @@ msgstr "Edition des droits de %display_name%" msgid "Edition des droits de %number% utilisateurs" msgstr "Edition des droits de %number% utilisateurs" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:698 msgid "admin::compte-utilisateur sexe" msgstr "Civilité" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:709 msgid "admin::compte-utilisateur:sexe: mademoiselle" msgstr "Mlle" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:717 msgid "admin::compte-utilisateur:sexe: madame" msgstr "Mme" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:725 msgid "admin::compte-utilisateur:sexe: monsieur" msgstr "M." -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:760 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:790 msgid "admin::compte-utilisateur code postal" msgstr "Code postal" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:774 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:804 msgid "admin::compte-utilisateur ville" msgstr "Ville" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:818 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:848 msgid "admin::compte-utilisateur activite" msgstr "Activité" @@ -4368,25 +4516,25 @@ msgid "panier:: description" msgstr "Description" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:280 msgid "No results" msgstr "Aucun résultat" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:286 msgid "1 result" msgstr "1 résultat" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:292 msgid "%Total% results" msgstr "%Total% résultats" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:189 msgid "Received from %user_name%" msgstr "Reçu de %user_name%" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:240 msgid "Sent for validation to %list_participants%" msgstr "Envoyé pour validation à %list_participants%" @@ -4451,19 +4599,23 @@ msgstr "Créer un modèle" msgid "Creer un utilisateur" msgstr "Créer un utilisateur" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:288 +msgid "Successful install" +msgstr "Installation réussie" + +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:311 msgid "Ajouter un nouvel utilisateur" msgstr "Ajouter un nouvel utilisateur" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:316 msgid "Adresse email du nouvel utilisateur" msgstr "Adresse email du nouvel utilisateur" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:324 msgid "Creer un modele" msgstr "Créer un modèle" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:329 msgid "Nom du nouveau modele" msgstr "Nom du nouveau modèle" @@ -4480,11 +4632,6 @@ msgid "Story name" msgstr "Nom du reportage" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:47 -msgid "Story description" -msgstr "Description du reportage" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:53 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:28 msgid "Ajouter ma selection courrante" msgstr "Ajouter ma sélection courante" @@ -4553,13 +4700,25 @@ msgstr "Nombre de documents édités" msgid "Lists" msgstr "Listes" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:27 msgid "Refresh" msgstr "Rafraîchir" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -msgid "Delete" -msgstr "Supprimer" +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:63 +msgid "(%length%)" +msgstr "(%length%)" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:16 +msgid "Reordonner automatiquement" +msgstr "Tri automatique" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:21 +msgid "Choisir" +msgstr "Choisir" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:38 +msgid "Inverser" +msgstr "Inverser" #: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 msgid "Playlist" @@ -4577,11 +4736,11 @@ msgstr "Vers quel API voulez vous vous connecter ?" msgid "Aucun bridge disponible. Veuillez contacté un administrateur." msgstr "Aucun bridge n'est disponible. Veuillez contacter un administrateur système." -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:509 msgid "Vous n'avez pas assez de droits sur les elements selectionnes" msgstr "Vous ne disposez pas des droits suffisants sur les documents sélectionnés" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:516 msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" msgstr "Vous ne disposez pas des droits sur certains des documents sélectionnés" @@ -4593,107 +4752,111 @@ msgstr "1 - Période" msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" msgstr "Le connecteur API requis n'est pas configuré correctement, veuillez contacter un administrateur." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:122 msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" msgstr "Êtes vous sur de vouloir supprimer cette métadonnée ? Elle sera définitivement perdue" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:145 msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." msgstr "Attention, deux champs ne peuvent être liés au même élément Dublin Core." -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:147 msgid "La precedente attribution a ete desactivee" msgstr "La précédente attribution a été désactivée" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:223 msgid "Attention !" msgstr "Attention !" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:282 msgid "boutton::ajouter" msgstr "Ajouter" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:300 msgid "Nom" msgstr "Nom" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:312 msgid "DublinCore Element Set" msgstr "Réglages Dublin" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:318 msgid "Multivalue" msgstr "Multivalué" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:324 msgid "Indexable" msgstr "Indexable" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:330 msgid "Vocabulary Type" msgstr "Type de vocabulaire" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:336 msgid "Vocabulary restricted" -msgstr "" +msgstr "Vocabulaire restreint" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:348 msgid "Lecture seule" msgstr "Lecture seule" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:354 msgid "Type" msgstr "Type" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:360 msgid "Separateur" msgstr "Séparateur" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:366 msgid "Branche Thesaurus" msgstr "Branche Thesaurus" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:372 msgid "Affiche dans report" msgstr "Afficher dans Report" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:378 msgid "Afficher en titre" msgstr "Affichage Vignette" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:483 msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" msgstr "Attention, la source descriptive sélectionnée n'est pas multivaluée, vous devriez décocher cette case" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" msgstr "Attention, la source descriptive sélectionnée est multivaluée, vous devriez cocher cette case" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:582 msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" msgstr "Attention, la source descriptive sélectionnée n'est pas en lecture seule, vous devriez décocher cette case" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" msgstr "Attention, la source descriptive sélectionnée est en lecture seule, vous devriez cocher cette case" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:786 msgid "Tous" msgstr "Tous" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:794 +msgid "Aucun" +msgstr "Aucun" + +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:802 msgid "Francais" msgstr "Français" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:810 msgid "Allemand" msgstr "Allemand" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:818 msgid "Anglais" msgstr "Anglais" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:826 msgid "Arabe" msgstr "Arabe" @@ -4760,12 +4923,10 @@ msgid "%basket_length% documents" msgstr "%basket_length% documents" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 msgid "Suppression de %n_element% videos" msgstr "Suppression de %n_element% vidéo(s)" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 msgid "Etes vous sur de supprimer %number% videos ?" msgstr "Etes vous certain de vouloir supprimer %number% video(s )?" @@ -4801,39 +4962,43 @@ msgstr "Le panier demandé n'existe plus" #: tmp/cache_twig/8e/aa/703ba8017c1986ea91ecdf368a6a.php:69 msgid "Retour a laccueil" -msgstr "Retour à l'acceuil" +msgstr "Retour à l'accueil" #: tmp/cache_twig/93/de/b653f259f57456b9bbfac02e1b7a.php:67 msgid "Which playlist you want to put you %number% elements into ?" msgstr "A quelle liste de lecture souhaitez vous ajouter les %number% documents" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -msgid "mauvais login / mot de passe" -msgstr "mauvais login / mot de passe" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:74 +msgid "Erreur de login / mot de passe" +msgstr "Erreur d'identifiant / mot de passe" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" -msgstr "Bonjour, veuillez vous identifier sur %home_title%" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" -msgstr "Hello %username%" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:82 +msgid "Bonjour, veuillez vous identifier sur %home_title% :" +msgstr "Bonjour, veuillez vous identifier sur %home_title% :" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" -msgstr "%application_name% souhaite accéder à vos données sur %home_title%" +msgid "Se connecter" +msgstr "Se connecter" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" -msgstr "Autorisez vous cette application ?" +msgid "Problèmes de connexion ?" +msgstr "Problème de connexion ?" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" -msgstr "Oui" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:134 +msgid "Autorisation d'accès" +msgstr "Autorisation d'accès" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" -msgstr "Non" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:145 +msgid "Autorisez-vous l'application \"%application_name%\" à accéder à votre contenu sur %home_title% ?" +msgstr "Autorisez-vous l'application \"%application_name%\" à accéder à votre contenu sur %home_title% ?" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:175 +msgid "Autoriser" +msgstr "Autoriser" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:199 +msgid "Ne pas autoriser" +msgstr "Ne pas autoriser" #: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 msgid "Apparait aussi dans ces reportages" @@ -4900,141 +5065,96 @@ msgstr "Nom ou email" msgid "You are not the feed owner" msgstr "Vous n'êtes pas le propriétaire de ce flux" -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "Vous avez reçu un nouveau panier" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "Vous avez envoyé ce panier pour validation" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "Panier reçu de %pusher%" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:309 -msgid "action::exporter" -msgstr "Exporter" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:320 -msgid "action::editer" -msgstr "Editer" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "Renommer" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "Valider" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:194 -msgid "Archive" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:335 -msgid "action::detacher" -msgstr "Détacher" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:561 -msgid "delete" -msgstr "Supprimer" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:652 -msgid "panier:: ordre du panier" -msgstr "Ordre du panier" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:660 -msgid "panier:: ordre Validation ascendante" -msgstr "Mieux noté" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:668 -msgid "panier:: ordre Validation descendante" -msgstr "Moins noté" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur approuve ce document" -msgstr "L'utilisateur approuve ce document" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:717 -msgid "L'utilisateur desapprouve ce document" -msgstr "L'utilisateur désapprouve ce document" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:723 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "L'utilisateur n'a pas encore donné son avis sur ce document" - #: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 msgid "validation:: note" msgstr "Annotation" -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" -msgstr "%nb_records% enregistrement(s)" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:32 +msgid "Grant rights" +msgstr "Accorder les droits" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" -msgstr "Appliquer des réglages" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:43 +msgid "Contributor" +msgstr "Contributeur" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:51 +msgid "See others" +msgstr "Voir les autres" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:62 msgid "HD Download" msgstr "Téléchargement HD" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "«Diffuser»: Envoie un lot de documents à des destinataires. Les destinataires recevront un e-mail, contenant un lien lançant Phraseanet Lightbox. Cette interface donne un accès immédiat en visualisation et/ou téléchargement. Pour les utilisateurs authentifiés, elle est également disponible sous forme d’un panier «Reçu»." - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" -msgstr "Ajouter un utilisateur" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "Envoyer" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "Sauvegarder cette liste" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:79 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:444 msgid "List Manager" msgstr "List Manager" #: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 +msgid "Save this list" +msgstr "Sauvegarder cette liste" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:162 +msgid "Select a user in the list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:166 +msgid "or" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:169 +msgid "Add user" +msgstr "Ajouter un utilisateur" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:256 +msgid "and %n% more peoples" +msgstr "and %n% autres personnes" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:277 +msgid "Please consider send this validation to the following users : %recommendation%" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:286 +msgid "Users suggestion" +msgstr "Suggestion d'utilisateurs" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:334 +msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" +msgstr "«Diffuser»: Envoie un lot de documents à des destinataires. Les destinataires recevront un e-mail, contenant un lien lançant Phraseanet Lightbox. Cette interface donne un accès immédiat en visualisation et/ou téléchargement. Pour les utilisateurs authentifiés, elle est également disponible sous forme d’un panier «Reçu»." + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:340 +msgid "Push::une validation est une demande d'appreciation a d'autres personnes" +msgstr "«Valider» envoie une demande d'appréciation sur un lot de documents à des destinataires. Ces destinataires recevront un e-mail, contenant un lien lançant Phraseanet Lightbox. Cette interface leur donne un accès immédiat aux documents pour \"appréciation\", et/ou téléchargement. Pour les utilisateurs authentifiés, la «validation» est également disponible sous forme d’un panier." + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:361 msgid "Select all" msgstr "Tout sélectionner" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:365 msgid "Deselect all" msgstr "Tout désélectionner" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:411 +msgid "Send" +msgstr "Envoyer" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:429 msgid "Back to Push" msgstr "Retour au Push" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:435 +msgid "Back to Feedback" +msgstr "Retour au Feedback" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:462 msgid "Welcome to the ListManager !" msgstr "Bienvenue sur le List Manager !" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:471 msgid "Start by creating one by using the \"add\" button on the left !" msgstr "Commencer en utilisant le bouton \"Ajouter\" sur la gauche de l'écran !" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:480 msgid "Select a list on the left and edit it !" msgstr "Sélectionner une liste sur la gauche puis éditez la !" @@ -5042,43 +5162,27 @@ msgstr "Sélectionner une liste sur la gauche puis éditez la !" msgid "Do you want to send your report ?" msgstr "Souhaitez-vous envoyer votre rapport ?" -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "Contributeur" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "Voir les autres" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 -msgid "Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "«Valider» envoie une demande d'appréciation sur un lot de documents à des destinataires. Ces destinataires recevront un e-mail, contenant un lien lançant Phraseanet Lightbox. Cette interface leur donne un accès immédiat aux documents pour \"appréciation\", et/ou téléchargement. Pour les utilisateurs authentifiés, la «validation» est également disponible sous forme d’un panier." - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 -msgid "Back to Feedback" -msgstr "Retour au Feedback" - #: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 msgid "report:: Volumetrie des questions posees sur %home_title%" msgstr "Volumétrie des questions posées sur %home_title%" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:89 msgid "Site web" msgstr "Site Internet" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:104 msgid "Type d'application" msgstr "Type d'application" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:108 msgid "Application web" msgstr "Application Internet" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:115 msgid "Application desktop" msgstr "Application" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:128 msgid "URL de callback" msgstr "Url de Callback" @@ -5139,7 +5243,6 @@ msgid "2000 caracteres maximum" msgstr "2000 caractères maximum" #: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:170 -#: tmp/cache_twig/bd/a8/2c59a65e6a28629b0d4eecf283e3.php:139 msgid "Categorie" msgstr "Catégorie" @@ -5159,15 +5262,15 @@ msgstr "En cliquant sur \"ajouter\" vous certifiez que vous possédez les droits msgid "Retour" msgstr "Retour" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:31 msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" msgstr "Cochez les cases correspondantes aux colonnes que vous désirez voir apparaître dans le Report" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:37 msgid "cocher tout" msgstr "Tout cocher" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:44 msgid "tout decocher" msgstr "Tout décocher" @@ -5269,130 +5372,134 @@ msgstr[1] "%value% comme" msgid "Edition de 1 element" msgstr "Edition de 1 document" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:174 msgid "Aucun statut editable" msgstr "Aucun status à éditer" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:180 msgid "Les status de certains documents ne sont pas accessible par manque de droits" msgstr "Vous ne possédez pas les droits requis pour modifier les status de certains documents." -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:258 msgid "boutton::remplacer" msgstr "Remplacer" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:295 msgid "phraseanet:: presse-papier" msgstr "Presse-papier" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:303 msgid "prod::editing: rechercher-remplacer" msgstr "Rechercher / Remplacer" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:307 msgid "prod::editing: modeles de fiches" msgstr "Modèles" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:335 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:333 msgid "phraseanet::chargement" msgstr "Chargement" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:355 msgid "prod::editing::replace: remplacer dans le champ" msgstr "Remplacer dans le champ" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:361 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "Remplacer dans tous les champs" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:386 msgid "prod::editing:replace: chaine a rechercher" msgstr "Rechercher" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:393 msgid "prod::editing:remplace: chaine remplacante" msgstr "Remplacer par" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:400 msgid "prod::editing:remplace: options de remplacement" msgstr "Options" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:406 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "Expression régulière" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:437 msgid "Aide sur les expressions regulieres" msgstr "Aide sur les expressions régulières" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:445 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "Remplacer tout" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:451 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Insensible à la casse" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:458 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "Champ complet" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:464 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "Contenu dans le champ" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:470 msgid "prod::editing:remplace::option respecter la casse" msgstr "Respecter la casse" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:522 msgid "prod::editing:indexation en cours" msgstr "Indexation en cours" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:545 msgid "prod::editing: valider ou annuler les modifications" msgstr "Valider ou annuler les modifications" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:552 msgid "edit::preset:: titre" msgstr "Titre" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:561 msgid "Edition impossible" msgstr "Edition impossible" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:570 msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" msgstr "Impossible d'éditer simultanément des documents provenant de bases différentes" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:576 msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" msgstr "aucun document ne peut être édité car vous ne disposez pas des autorisations nécessaires" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:612 msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" msgstr "%not_actionable% document(s) éditables, vous ne disposez pas des autorisation nécessaires" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:618 msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "Vous ne possédez pas les autorisations d'accès requises pour éditer 1 document" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:778 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Certains champs doivent être remplis pour valider" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:815 msgid "edit: chosiir limage du regroupement" msgstr "Définir comme image principale" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:859 msgid "prod::editing::fields: status " msgstr "Status " -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:914 msgid "Ce champ est decrit comme un element DublinCore" msgstr "Ce champ est décrit comme un élément DublinCore" +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:923 +msgid "This field is represent the title of the document" +msgstr "" + #: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" msgstr "Push vers %n_user% utilisateur(s) depuis l'application box %appbox%" @@ -5405,51 +5512,51 @@ msgstr "Demande de validation vers %n_user% utilisateur(s) depuis l'application msgid "report::Edition des meta-donnees" msgstr "Editions des meta-données" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" -msgstr "Changement de collection vers : %dest%" +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:91 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "Changement de collection vers : %coll_name%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:97 msgid "report::Edition des status" msgstr "Edition des status" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:106 msgid "report::Impression des formats : %format%" msgstr "Impression des : %format%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:115 msgid "report::Substitution de %dest%" msgstr "Substitution de %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:124 msgid "report::Publication de %dest%" msgstr "Publication de %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:133 msgid "report::Telechargement de %dest%" msgstr "Téléchargement de %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:145 msgid "Envoi par mail a %dest% de %content%" msgstr "Envoi par mail à %dest% de %content%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:157 msgid "Envoi par ftp a %dest% de %content%" msgstr "Envoi par ftp à %dest% de %content%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:163 msgid "report::supression du document" msgstr "Suppression du document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:169 msgid "report::ajout du documentt" msgstr "Ajout du document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:175 msgid "report::Modification du document -- je ne me souviens plus de quoi..." msgstr "Action inconnue sur le document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:192 msgid "report:: par %user_infos%" msgstr "par %user_infos%" @@ -5465,23 +5572,23 @@ msgstr "Réglage Oauth" msgid "Les parametres oauth de votre application." msgstr "Les paramètres oauth de votre application." -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:123 msgid "Votre token d'access" msgstr "Votre token d'accès" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:127 msgid "Les paramétres oauth de votre application." msgstr "Paramètres Oauth de l'application" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:135 msgid "Token" msgstr "Jeton" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:151 msgid "Le token n'a pas encore ete genere" msgstr "Le jeton n'a pas encore été généré" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:165 msgid "boutton::generer" msgstr "Générer" @@ -5618,51 +5725,51 @@ msgstr "Certains champs sont obligatoires, veuillez les completer" msgid "Vous devez selectionner un type de sous definitions" msgstr "Vous devez sélectionner un type de sous résolution" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "Vous ne pouvez télécharger plus de 120 Mo; le temps de préparation du paquet est trop long" - #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 +msgid "You can not directly download more than %max_download% Mo ; time to package all documents is too long" +msgstr "" + +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 msgid "You can alternatively receive an email when the download is ready." msgstr "Vous pouvez être informé par email quand votre téléchargement est prêt" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:960 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Souhaitez vous recevoir un email quand votre téléchargement est prêt ?" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1127 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1179 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Utiliser le mode passif" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1199 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Nombre d'essais" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1217 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "Dossier distant" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1235 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Créer un dossier" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1265 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "Ecrire un fichier de Log" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1307 msgid "Nom des fichiers a l'export" msgstr "Nom des fichiers à l'export" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1320 msgid "export::titre: titre du documument" msgstr "Titre" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1334 msgid "export::titre: nom original du document" msgstr "Nom original" @@ -5770,82 +5877,90 @@ msgstr "Annotation" msgid "boutton::enregistrer" msgstr "Enregistrer" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:43 msgid "Login" msgstr "Identifiant" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:61 msgid "First/Last Name" msgstr "Prénom / Nom" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:97 msgid "E-Mail" msgstr "Email" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:133 msgid "Last Template" msgstr "Dernier modèle" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:151 msgid "Creation date" msgstr "Date de création" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:271 +msgid "Previous" +msgstr "Précédent" + +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:288 +msgid "Next" +msgstr "Suivants" + +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:219 msgid "Create new subdef" msgstr "Créer une nouvelle sous résolution" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:223 msgid "Delete the subdef ?" msgstr "Supprimer cette sous résolution" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:229 msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" msgstr "Êtes vous certain de vouloir supprimer définitivement ce type de sous résolution? cette opération est irréversible" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:240 msgid "Subdef name" msgstr "Nom de la sous résolution" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:245 msgid "classe d'acces" msgstr "Classe des sous résolutions" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:254 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:382 msgid "preview" msgstr "Sous Résolution" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:258 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:390 msgid "tout le monde" msgstr "Tout le monde" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:336 msgid "Telechargeable" msgstr "Téléchargeable" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:354 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:366 msgid "classe" msgstr "Classe" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 msgid "Baseurl" msgstr "Baseurl" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:435 msgid "Write Metas" msgstr "Ecriture des métadonnées" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:456 msgid "mediatype" msgstr "Type média" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:637 msgid "yes" msgstr "Oui" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:646 msgid "no" msgstr "Non" @@ -6055,15 +6170,15 @@ msgstr "tags" msgid "Back to basket list" msgstr "Retour à la liste des paniers" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:163 msgid "No records" msgstr "Aucun enregistrement" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:169 msgid "1 record" msgstr "1 enregistrement" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:175 msgid "%ElementsCount% records" msgstr "%ElementsCount% enregistrement(s)" @@ -6087,13 +6202,29 @@ msgstr "Statut" msgid "Aucune" msgstr "Aucune" -#: www/admin/adminFeedback.php:297 -#: www/admin/database.php:212 +#: www/admin/adminFeedback.php:69 +msgid "Base empty successful" +msgstr "Base Vidée avec succès" + +#: www/admin/adminFeedback.php:85 +#: www/admin/adminFeedback.php:118 +msgid "A task has been creted, please run it to complete empty collection" +msgstr "Un tache de suppression a été créée, lancez la pour vider la collection" + +#: www/admin/adminFeedback.php:91 +#: www/admin/adminFeedback.php:123 +msgid "An error occurred" +msgstr "Un erreur est survenue" + +#: www/admin/adminFeedback.php:96 +msgid "Collection empty successful" +msgstr "Collection vidée avec succès" + +#: www/admin/adminFeedback.php:316 msgid "admin::base: aucun alias" msgstr "Aucun Alias" -#: www/admin/adminFeedback.php:387 -#: www/admin/database.php:255 +#: www/admin/adminFeedback.php:406 msgid "admin::base: vider la base avant de la supprimer" msgstr "Vider la base avant de la supprimer" @@ -6138,119 +6269,120 @@ msgstr "Erreur lors de l'envoi du fichier" msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Êtes-vous sûr de vouloir vider la collection ?" -#: www/admin/collection.php:302 +#: www/admin/collection.php:303 msgid "admin::base:collection: etes vous sur de demonter cette collection ?" msgstr "Confirmer le démontage cette collection" -#: www/admin/collection.php:316 +#: www/admin/collection.php:317 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Confirmer la publication cette collection" -#: www/admin/collection.php:321 +#: www/admin/collection.php:322 msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" msgstr "Confirmer l'arrêt la publication de cette collection" -#: www/admin/collection.php:391 -#: www/admin/database.php:430 +#: www/admin/collection.php:392 +#: www/admin/database.php:431 msgid "phraseanet:: collection" msgstr "Collection" -#: www/admin/collection.php:398 +#: www/admin/collection.php:399 msgid "admin::base:collection: numero de collection distante" msgstr "ID de collection distante" -#: www/admin/collection.php:402 +#: www/admin/collection.php:403 msgid "admin::base:collection: etat de la collection" msgstr "Etat de la collection" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: activer la collection" msgstr "Activer la collection" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: descativer la collection" msgstr "Désactiver la collection" -#: www/admin/collection.php:413 -#: www/admin/database.php:398 +#: www/admin/collection.php:414 +#: www/admin/database.php:399 msgid "phraseanet:: details" msgstr "Détails" -#: www/admin/collection.php:423 -#: www/admin/database.php:420 +#: www/admin/collection.php:424 +#: www/admin/database.php:421 msgid "admin::base: masquer les details" msgstr "Masquer les détails" -#: www/admin/collection.php:439 -#: www/admin/database.php:435 +#: www/admin/collection.php:440 +#: www/admin/database.php:436 msgid "admin::base: objet" msgstr "Objet" -#: www/admin/collection.php:443 -#: www/admin/database.php:437 +#: www/admin/collection.php:444 +#: www/admin/database.php:438 msgid "admin::base: nombre" msgstr "Nombre" -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 -#: www/admin/database.php:438 +#: www/admin/collection.php:447 +#: www/admin/collection.php:450 #: www/admin/database.php:439 +#: www/admin/database.php:440 msgid "admin::base: poids" msgstr "Taille" -#: www/admin/collection.php:590 +#: www/admin/collection.php:591 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Gestionnaires des commandes" -#: www/admin/collection.php:605 +#: www/admin/collection.php:606 msgid "setup:: ajouter un administrateur des commandes" msgstr "Ajouter un gestionnaire des commandes" -#: www/admin/collection.php:623 +#: www/admin/collection.php:624 msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" msgstr "Option d'affichage des documents partagés hors application" -#: www/admin/collection.php:625 +#: www/admin/collection.php:626 msgid "admin::colelction::presentation des elements : rien" msgstr "Par défaut" -#: www/admin/collection.php:626 +#: www/admin/collection.php:627 msgid "admin::colelction::presentation des elements : watermark" msgstr "Fichier de filigrane" -#: www/admin/collection.php:627 +#: www/admin/collection.php:628 msgid "admin::colelction::presentation des elements : stamp" msgstr "Bandeau de notice" -#: www/admin/collection.php:633 +#: www/admin/collection.php:634 msgid "admin::base:collection: renommer la collection" msgstr "Renommer" -#: www/admin/collection.php:640 +#: www/admin/collection.php:641 +#: www/admin/newcoll.php:142 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "Nom : " -#: www/admin/collection.php:665 +#: www/admin/collection.php:666 msgid "admin::base:collection: vider la collection" msgstr "Vider" -#: www/admin/collection.php:679 +#: www/admin/collection.php:680 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Confirmer la suppression de la collection ?" -#: www/admin/collection.php:692 +#: www/admin/collection.php:693 msgid "admin::base:collection: minilogo actuel" msgstr "Minilogo actuel" -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 -#: www/admin/database.php:724 +#: www/admin/collection.php:713 +#: www/admin/collection.php:743 +#: www/admin/database.php:725 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "Aucun fichier" -#: www/admin/collection.php:781 +#: www/admin/collection.php:782 msgid "admin::base:collection: image de presentation : " msgstr "Bandeau de présentation de la collection " @@ -6284,7 +6416,7 @@ msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Confirmez-vous la re-indexation de la base ?" #: www/admin/database.php:174 -#: www/admin/database.php:378 +#: www/admin/database.php:379 msgid "admin::base: Alias" msgstr "Alias" @@ -6292,310 +6424,316 @@ msgstr "Alias" msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Supprimer l'intégralité du contenu de la base ?" -#: www/admin/database.php:259 +#: www/admin/database.php:260 msgid "admin::base: Confirmer la suppression de la base" msgstr "Confirmer la suppression de la base" -#: www/admin/database.php:286 +#: www/admin/database.php:287 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "Supprimer l'intégralité des logs de la base ?" -#: www/admin/database.php:312 +#: www/admin/database.php:313 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Stopper la publication de la base ?" -#: www/admin/database.php:394 +#: www/admin/database.php:395 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Nombre d'enregistrements :" -#: www/admin/database.php:405 +#: www/admin/database.php:406 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "Mots uniques sur la base : " -#: www/admin/database.php:410 +#: www/admin/database.php:411 msgid "admin::base: nombre de mots indexes sur la base" msgstr "Mots indexés sur la base :" -#: www/admin/database.php:417 +#: www/admin/database.php:418 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "Termes de thésaurus indexés :" -#: www/admin/database.php:471 +#: www/admin/database.php:472 msgid "admin::base: enregistrements orphelins" msgstr "Enregistrements orphelins" -#: www/admin/database.php:505 -#: www/admin/database.php:522 +#: www/admin/database.php:506 +#: www/admin/database.php:523 msgid "report:: total" msgstr "Total" -#: www/admin/database.php:547 +#: www/admin/database.php:548 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Documents indexés en texte-plein" -#: www/admin/database.php:557 +#: www/admin/database.php:558 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Documents indexés via Thésaurus" -#: www/admin/database.php:573 +#: www/admin/database.php:574 msgid "admin::base: Cette base est indexable" msgstr "base indexable" -#: www/admin/database.php:580 +#: www/admin/database.php:581 msgid "base:: re-indexer" msgstr "Ré-indexer la base maintenant (selon le nombre de documents, cette opération peut durer plusieurs heures)" -#: www/admin/database.php:588 +#: www/admin/database.php:589 +#: www/admin/newcoll.php:122 msgid "admin::base:collection: Creer une collection" msgstr "Créer une collection" -#: www/admin/database.php:600 +#: www/admin/database.php:601 msgid "admin::base:collection: Monter une collection" msgstr "Monter une collection" -#: www/admin/database.php:621 +#: www/admin/database.php:622 +#: www/admin/newcoll.php:152 msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " msgstr "Copier les droits utilisateur de la collection : " -#: www/admin/database.php:635 +#: www/admin/database.php:636 msgid "Monter" msgstr "Monter" -#: www/admin/database.php:649 +#: www/admin/database.php:650 msgid "Activer une collection" msgstr "Activer la collection" -#: www/admin/database.php:675 +#: www/admin/database.php:676 msgid "admin::base: supprimer tous les logs" msgstr "Supprimer tous les logs" -#: www/admin/database.php:681 +#: www/admin/database.php:682 msgid "admin::base: arreter la publication de la base" msgstr "Arrêter la publication" -#: www/admin/database.php:687 +#: www/admin/database.php:688 msgid "admin::base: vider la base" msgstr "Vider la base" -#: www/admin/database.php:693 +#: www/admin/database.php:694 msgid "admin::base: supprimer la base" msgstr "Supprimer la base" -#: www/admin/database.php:703 +#: www/admin/database.php:704 msgid "admin::base: logo impression PDF" msgstr "Logo pour impression" -#: www/admin/database.php:716 +#: www/admin/database.php:717 msgid "admin::base:collection: supprimer le logo" msgstr "Supprimer le logo" -#: www/admin/database.php:739 +#: www/admin/database.php:740 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Envoyer un logo (jpeg 35px max en hauteur)" -#: www/admin/databases.php:66 +#: www/admin/databases.php:67 msgid "Propositions de modifications des tables" msgstr "Proposition(s) de modification des tables" -#: www/admin/databases.php:75 +#: www/admin/databases.php:76 msgid "N'oubliez pas de redemarrer le planificateur de taches" msgstr "N'oubliez pas de redémarrer le planificateur de tâches" -#: www/admin/databases.php:82 +#: www/admin/databases.php:83 msgid "Veuillez arreter le planificateur avant la mise a jour" msgstr "Veuillez arrêter le planificateur avant la mise à jour" -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 +#: www/admin/databases.php:94 +#: www/admin/databases.php:140 +#: www/admin/databases.php:167 msgid "Database name can not contains special characters" msgstr "Le nom de la base de données ne peut pas contenir de caractères spéciaux" -#: www/admin/databases.php:134 +#: www/admin/databases.php:129 msgid "Database does not exists or can not be accessed" msgstr "Connexion réussie mais la base de données n'existe pas ou n'est pas accessible." -#: www/admin/databases.php:329 +#: www/admin/databases.php:318 msgid "admin::base: Version" msgstr "Version" -#: www/admin/databases.php:334 +#: www/admin/databases.php:323 msgid "update::Votre application necessite une mise a jour vers : " msgstr "Votre application nécessite une mise à jour vers : " -#: www/admin/databases.php:340 +#: www/admin/databases.php:329 msgid "update::Votre version est a jour : " msgstr "Votre version est à jour : " -#: www/admin/databases.php:346 +#: www/admin/databases.php:335 msgid "update::Verifier els tables" msgstr "Réparer les tables" -#: www/admin/databases.php:351 +#: www/admin/databases.php:340 msgid "admin::base: creer une base" msgstr "Créer une base" -#: www/admin/databases.php:355 +#: www/admin/databases.php:344 msgid "phraseanet:: Creer une base sur un serveur different de l'application box" msgstr "Créer une base sur un autre serveur" -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 +#: www/admin/databases.php:348 +#: www/admin/databases.php:400 msgid "phraseanet:: hostname" msgstr "Nom de l'hôte" -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 +#: www/admin/databases.php:354 +#: www/admin/databases.php:406 msgid "phraseanet:: user" msgstr "Utilisateur" -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 +#: www/admin/databases.php:357 +#: www/admin/databases.php:409 msgid "phraseanet:: password" msgstr "Mot de passe" -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 +#: www/admin/databases.php:361 +#: www/admin/databases.php:413 msgid "phraseanet:: dbname" msgstr "Nom de la Base" -#: www/admin/databases.php:375 +#: www/admin/databases.php:364 msgid "phraseanet:: Modele de donnees" msgstr "Modèles de structure XML" -#: www/admin/databases.php:397 +#: www/admin/databases.php:386 msgid "boutton::creer" msgstr "Créer" -#: www/admin/databases.php:403 +#: www/admin/databases.php:392 msgid "admin::base: Monter une base" msgstr "Monter une base" -#: www/admin/databases.php:407 +#: www/admin/databases.php:396 msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" msgstr "Monter une base provenant d'un serveur different de l'application box" -#: www/admin/databases.php:428 +#: www/admin/databases.php:417 msgid "boutton::monter" msgstr "Monter" -#: www/admin/demand.php:366 +#: www/admin/demand.php:372 msgid "admin:: demandes en cours" msgstr "Demandes en cours" -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 +#: www/admin/demand.php:377 +#: www/admin/demand.php:504 msgid "admin:: refuser l'acces" msgstr "Refuser l'accès" -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 +#: www/admin/demand.php:378 +#: www/admin/demand.php:507 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "Autoriser la visualisation et le téléchargement des prévisualisations" -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 +#: www/admin/demand.php:379 +#: www/admin/demand.php:510 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "Autoriser le téléchargement des prévisualisations et documents" -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 +#: www/admin/demand.php:380 +#: www/admin/demand.php:513 msgid "admin:: watermarquer les documents" msgstr "Appliquer le filigrane sur les prévisualisations" -#: www/admin/demand.php:377 +#: www/admin/demand.php:383 msgid "admin::compte-utilisateur date d'inscription" msgstr "Inscription" -#: www/admin/demand.php:378 +#: www/admin/demand.php:384 msgid "admin::collection" msgstr "Collection" -#: www/admin/demand.php:480 +#: www/admin/demand.php:486 msgid "admin:: appliquer le modele " msgstr "Appliquer le modèle " -#: www/admin/newcoll.php:42 +#: www/admin/newcoll.php:43 msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" msgstr "Collection non créée : vous devez donner un nom à la collection" -#: www/admin/sessionwhois.php:58 +#: www/admin/newcoll.php:175 +msgid "Collection successfully created" +msgstr "Collection créée avec succès" + +#: www/admin/sessionwhois.php:59 msgid "admin::monitor: utilisateur" msgstr "Utilisateur" -#: www/admin/sessionwhois.php:59 +#: www/admin/sessionwhois.php:60 msgid "admin::monitor: modules" msgstr "Modules" -#: www/admin/sessionwhois.php:61 +#: www/admin/sessionwhois.php:62 msgid "admin::monitor: date de connexion" msgstr "Date de connexion" -#: www/admin/sessionwhois.php:62 +#: www/admin/sessionwhois.php:63 msgid "admin::monitor: dernier access" msgstr "Dernière connexion" -#: www/admin/sessionwhois.php:101 +#: www/admin/sessionwhois.php:102 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "Bases connectées " -#: www/admin/sessionwhois.php:116 +#: www/admin/sessionwhois.php:117 msgid "Session persistente" msgstr "Session persistente" -#: www/admin/sessionwhois.php:134 +#: www/admin/sessionwhois.php:135 msgid "admin::monitor: module inconnu" msgstr "Inconnu" -#: www/admin/sessionwhois.php:243 +#: www/admin/sessionwhois.php:244 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Utilisateurs uniques " -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" -msgstr "Le serveur memcached a été flushé" +#: www/admin/sitestruct.php:187 +msgid "all caches services have been flushed" +msgstr "" -#: www/admin/sitestruct.php:189 +#: www/admin/sitestruct.php:193 msgid "setup:: administrateurs de l'application" msgstr "Administrateurs de l'application" -#: www/admin/sitestruct.php:201 +#: www/admin/sitestruct.php:205 msgid "setup:: ajouter un administrateur de l'application" msgstr "Ajouter un administrateur de l'application" -#: www/admin/sitestruct.php:207 +#: www/admin/sitestruct.php:211 msgid "setup:: Reinitialisation des droits admins" msgstr "Ré-initialisation des droits des administrateurs" -#: www/admin/sitestruct.php:211 +#: www/admin/sitestruct.php:215 msgid "boutton::reinitialiser" msgstr "Ré-initialiser" -#: www/admin/sitestruct.php:214 +#: www/admin/sitestruct.php:218 msgid "setup:: Reglages generaux" msgstr "Réglages généraux" -#: www/admin/sitestruct.php:216 +#: www/admin/sitestruct.php:220 msgid "setup::Votre configuration" msgstr "Votre configuration" -#: www/admin/sitestruct.php:244 +#: www/admin/sitestruct.php:248 msgid "setup::Filesystem configuration" msgstr "Configuration du système de fichier" -#: www/admin/sitestruct.php:258 +#: www/admin/sitestruct.php:262 msgid "setup::Executables" msgstr "Executables" -#: www/admin/sitestruct.php:272 +#: www/admin/sitestruct.php:276 msgid "setup::PHP extensions" msgstr "Extensions PHP" -#: www/admin/sitestruct.php:285 +#: www/admin/sitestruct.php:289 msgid "setup::Serveur de cache" msgstr "Serveur de cache" -#: www/admin/sitestruct.php:304 +#: www/admin/sitestruct.php:308 msgid "Phrasea Module" msgstr "Module Phrasea" @@ -6710,29 +6848,29 @@ msgstr "Symboles affichés" msgid "admin::status: confirmer la suppression du status ?" msgstr "Confirmer la suppression du status" -#: www/admin/structure.php:76 +#: www/admin/structure.php:77 msgid "admin::base: structure" msgstr "Structure" -#: www/admin/structure.php:91 +#: www/admin/structure.php:92 msgid "admin::base: xml invalide, les changements ne seront pas appliques" msgstr "Le XML n'est pas valide, les changements ne seront pas appliqués" -#: www/admin/sugval.php:934 +#: www/admin/sugval.php:935 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" "Continuer quand meme ?" msgstr "Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant. Continuer quand même ?" -#: www/admin/sugval.php:966 +#: www/admin/sugval.php:967 msgid "Suggested values" msgstr "Valeurs suggérées" -#: www/admin/sugval.php:983 +#: www/admin/sugval.php:984 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Valeurs suggérées - Préférences de la collection" -#: www/admin/sugval.php:1008 +#: www/admin/sugval.php:1009 msgid "admin::sugval: champs" msgstr "Champs" @@ -6741,235 +6879,223 @@ msgstr "Champs" msgid "admin::tasks: xml invalide, restaurer la version precedente ?" msgstr "XML invalide, restaurer la version précédente ?" -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 +#: www/admin/taskmanager.php:261 +#: www/admin/taskmanager.php:595 msgid "admin::tasks: supprimer la tache ?" msgstr "Supprimer la tâche ?" -#: www/admin/taskmanager.php:278 +#: www/admin/taskmanager.php:280 msgid "Fermer" msgstr "Fermer" -#: www/admin/taskmanager.php:279 +#: www/admin/taskmanager.php:281 msgid "Renouveller" msgstr "Renouveler" -#: www/admin/taskmanager.php:470 +#: www/admin/taskmanager.php:472 msgid "admin::tasks: planificateur de taches" msgstr "Planificateur de tâches" -#: www/admin/taskmanager.php:478 +#: www/admin/taskmanager.php:480 #, php-format msgid "Last update at %s." msgstr "Dernière mise à jour à %s" -#: www/admin/taskmanager.php:479 +#: www/admin/taskmanager.php:481 msgid "admin::tasks: Nouvelle tache" msgstr "Nouvelle tâche" -#: www/admin/taskmanager.php:486 +#: www/admin/taskmanager.php:488 msgid "admin::tasks: statut de la tache" msgstr "Statut" -#: www/admin/taskmanager.php:487 +#: www/admin/taskmanager.php:489 msgid "admin::tasks: process_id de la tache" msgstr "Process_id" -#: www/admin/taskmanager.php:488 +#: www/admin/taskmanager.php:490 msgid "admin::tasks: etat de progression de la tache" msgstr "Progression" -#: www/admin/taskmanager.php:751 +#: www/admin/taskmanager.php:753 msgid "Preferences du TaskManager" msgstr "Préférences du TaskManager" -#: www/admin/taskmanager.php:753 +#: www/admin/taskmanager.php:755 msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" msgstr "Cette URL vous permet de contrôler le planificateur depuis un gestionnaire comme Cron" -#: www/client/answer.php:186 +#: www/client/answer.php:182 msgid "client::answers: rapport de questions par bases" msgstr "Rapport de questions" -#: www/client/answer.php:191 +#: www/client/answer.php:187 #, php-format msgid "client::answers: %d reponses" msgstr "%d Réponse(s)" -#: www/client/answer.php:488 +#: www/client/answer.php:486 msgid "reponses:: Votre recherche ne retourne aucun resultat" msgstr "Votre recherche ne donne aucun résultat" -#: www/client/baskets.php:130 +#: www/client/baskets.php:124 msgid "paniers::categories: mes paniers" msgstr "Mes paniers" -#: www/client/baskets.php:136 +#: www/client/baskets.php:130 msgid "paniers::categories: paniers recus" msgstr "Paniers reçus" -#: www/client/baskets.php:153 +#: www/client/baskets.php:147 #, php-format msgid "paniers:: %d documents dans le panier" msgstr "%d documents dans le panier" -#: www/client/baskets.php:158 +#: www/client/baskets.php:152 #, php-format msgid "paniers:: paniers:: %d documents dans le panier" msgstr "%d documents dans le panier" -#: www/client/baskets.php:179 +#: www/client/baskets.php:173 msgid "action : ouvrir dans le comparateur" msgstr "Lancer Lightbox" -#: www/client/baskets.php:188 +#: www/client/baskets.php:182 #, php-format msgid "paniers:: panier emis par %s" msgstr "Panier envoyé par %s" -#: www/client/baskets.php:266 +#: www/client/baskets.php:260 msgid "paniers:: vous avez de nouveaux paniers non consultes" msgstr "Nouveau(x) panier(s) reçu(s) (Vous avez reçu des nouveaux paniers)" #: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "%d %b %Y à %Hh%s" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "%d-%m-%Y" - -#: www/client/homeinterpubbask.php:80 msgid "publications:: dernieres publications" msgstr "Dernières Publications" -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "Non-lue" - -#: www/client/homeinterpubbask.php:140 +#: www/client/homeinterpubbask.php:68 msgid "publications:: derniere mise a jour" msgstr "Dernière mise à jour" -#: www/client/index.php:152 +#: www/client/index.php:161 msgid "client:: recherche" msgstr "Recherche" -#: www/client/index.php:159 +#: www/client/index.php:168 msgid "client:: recherche avancee" msgstr "Recherche avancée" -#: www/client/index.php:166 +#: www/client/index.php:175 msgid "client:: topics" msgstr "Thèmes" -#: www/client/index.php:188 -#: www/client/index.php:196 +#: www/client/index.php:197 +#: www/client/index.php:205 msgid "phraseanet::technique:: et" msgstr "Et" -#: www/client/index.php:189 -#: www/client/index.php:197 +#: www/client/index.php:198 +#: www/client/index.php:206 msgid "phraseanet::technique:: or" msgstr "Ou" -#: www/client/index.php:190 -#: www/client/index.php:198 +#: www/client/index.php:199 +#: www/client/index.php:207 msgid "phraseanet::technique:: except" msgstr "Sauf" -#: www/client/index.php:210 +#: www/client/index.php:219 msgid "client::recherche: rechercher dans les bases :" msgstr "Rechercher :" -#: www/client/index.php:263 +#: www/client/index.php:261 msgid "client::recherche: rechercher dans toutes les bases" msgstr "Toutes les bases" -#: www/client/index.php:272 +#: www/client/index.php:268 msgid "phraseanet:: presentation des resultats" msgstr "Présentation" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "phraseanet:: collections" msgstr "Collections" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" msgstr "Cliquer ici pour désactiver tous les filtres" -#: www/client/index.php:342 +#: www/client/index.php:338 msgid "phraseanet:: historique" msgstr "Historique" -#: www/client/index.php:374 +#: www/client/index.php:368 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "Désactiver tous les filtres" -#: www/client/index.php:465 +#: www/client/index.php:437 msgid "client::recherche: filter sur" msgstr "Filtrer" -#: www/client/index.php:468 +#: www/client/index.php:440 msgid "client::recherche: filtrer par dates" msgstr "Par date" -#: www/client/index.php:470 +#: www/client/index.php:442 msgid "client::recherche: filtrer par status" msgstr "Par status" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs" msgstr "Par champ" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "Tous les champs" -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 +#: www/include/download_anonymous.php:73 +#: www/include/download_anonymous.php:116 +#: www/include/download_prepare.php:108 +#: www/include/download_prepare.php:151 msgid "phraseanet:: Telechargement de documents" msgstr "Gestionnaire de téléchargement" -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 +#: www/include/download_anonymous.php:121 +#: www/include/download_prepare.php:153 msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." msgstr "Veuillez patienter, vos fichiers sont en cours de préparation pour le téléchargement, cette opération peut prendre quelques minute" -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 +#: www/include/download_anonymous.php:128 +#: www/include/download_prepare.php:158 #, php-format msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" msgstr "Vos documents sont prêts. Si le téléchargement ne commence pas, veuillez %s cliquer ici %s" -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 +#: www/include/download_anonymous.php:133 +#: www/include/download_prepare.php:161 msgid "telechargement::Le fichier contient les elements suivants" msgstr "Le fichier \"Zip\" contient les documents suivants" -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 +#: www/include/download_anonymous.php:137 +#: www/include/download_prepare.php:165 msgid "phrseanet:: base" msgstr "Base" -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 +#: www/include/download_anonymous.php:138 +#: www/include/download_prepare.php:166 msgid "document:: nom" msgstr "Nom de(s) document(s)" -#: www/include/download_anonymous.php:137 -#: www/include/download_prepare.php:165 +#: www/include/download_anonymous.php:139 +#: www/include/download_prepare.php:167 msgid "phrseanet:: sous definition" msgstr "Sous-définition" -#: www/include/download_anonymous.php:138 -#: www/include/download_prepare.php:166 +#: www/include/download_anonymous.php:140 +#: www/include/download_prepare.php:168 msgid "poids" msgstr "Taille" -#: www/include/download_anonymous.php:172 +#: www/include/download_anonymous.php:174 msgid "Votre lien est corrompu" msgstr "Votre lien est corrompu" @@ -7005,613 +7131,561 @@ msgstr "Une erreur interne est survenue. La connexion avec le serveur a été in msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" msgstr "Si ce problème persiste, veuillez contacter l'administrateur système" -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "Erreur lors de l'envoi au(x) e-mail(s) %s" - -#: www/include/updses.php:92 +#: www/include/updses.php:93 msgid "The application is going down for maintenance, please logout." msgstr "L'application va être désactivée pour maintenance, merci de vous deconnecter dès que possible" -#: www/login/account.php:181 +#: www/login/account.php:182 msgid "etes vous sur de vouloir supprimer cette application" msgstr "Etes vous certain de vouloir supprimer cette application ?" -#: www/login/account.php:188 +#: www/login/account.php:183 +msgid "oui" +msgstr "Oui" + +#: www/login/account.php:184 +msgid "non" +msgstr "Non" + +#: www/login/account.php:189 msgid "Erreur lors du chargement" msgstr "Erreur lors du chargement" -#: www/login/account.php:412 +#: www/login/account.php:413 msgid "Informations" msgstr "Informations" -#: www/login/account.php:413 +#: www/login/account.php:414 msgid "Acces" msgstr "Accès" -#: www/login/account.php:414 +#: www/login/account.php:415 msgid "Sessions" msgstr "Sessions" -#: www/login/account.php:416 +#: www/login/account.php:417 msgid "Developpeur" msgstr "Développeur" -#: www/login/account.php:431 -#: www/login/index.php:110 +#: www/login/account.php:432 +#: www/login/index.php:112 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "Mise à jour du mot de passe effectuée" -#: www/login/account.php:434 +#: www/login/account.php:435 msgid "login::notification: Changements enregistres" msgstr "Changements confirmés" -#: www/login/account.php:437 +#: www/login/account.php:438 msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Erreur lors de l'enregistrement des modifications" -#: www/login/account.php:440 +#: www/login/account.php:441 msgid "login::notification: Vos demandes ont ete prises en compte" msgstr "Vos demandes ont été prises en compte" -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 -#: www/login/reset-email.php:44 -#: www/login/reset-email.php:55 -#: www/login/reset-email.php:78 -#: www/login/reset-email.php:89 -#: www/login/reset-email.php:158 -#: www/login/reset-email.php:207 +#: www/login/account.php:456 +#: www/login/forgotpwd.php:100 +#: www/login/reset-email.php:46 +#: www/login/reset-email.php:57 +#: www/login/reset-email.php:80 +#: www/login/reset-email.php:91 +#: www/login/reset-email.php:160 +#: www/login/reset-email.php:209 +#: www/login/reset-password.php:140 msgid "admin::compte-utilisateur changer mon mot de passe" msgstr "Changer mon mot de passe" -#: www/login/account.php:497 +#: www/login/account.php:498 msgid "login:: Changer mon adresse email" msgstr "Changer mon adresse e-mail" -#: www/login/account.php:603 +#: www/login/account.php:604 msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" msgstr "Activer la fonction FTP" -#: www/login/account.php:644 +#: www/login/account.php:645 msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" msgstr "Préfixe des noms de dossier" -#: www/login/account.php:665 +#: www/login/account.php:666 msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" msgstr "Données envoyées automatiquement" -#: www/login/account.php:667 +#: www/login/account.php:668 msgid "phraseanet:: original" msgstr "Original" -#: www/login/account.php:669 +#: www/login/account.php:670 msgid "phraseanet:: imagette" msgstr "Vignette" -#: www/login/forgotpwd.php:71 -#: www/login/register.php:102 +#: www/login/forgotpwd.php:73 +#: www/login/register.php:101 +#: www/login/reset-password.php:53 msgid "forms::la valeur donnee contient des caracteres invalides" msgstr "contient des caractères invalides" -#: www/login/forgotpwd.php:175 +#: www/login/forgotpwd.php:177 msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." msgstr "Pour améliorer la sécurité de l'application, vous devez mettre à jour votre mot de passe." -#: www/login/forgotpwd.php:176 +#: www/login/forgotpwd.php:178 msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." msgstr "Cette opération ne pouvant être automatisée, merci de bien vouloir la réaliser." -#: www/login/forgotpwd.php:184 +#: www/login/forgotpwd.php:186 +#: www/login/reset-password.php:171 msgid "admin::compte-utilisateur nouveau mot de passe" msgstr "Nouveau mot de passe" -#: www/login/forgotpwd.php:204 +#: www/login/forgotpwd.php:206 +#: www/login/reset-password.php:185 msgid "admin::compte-utilisateur confirmer le mot de passe" msgstr "Confirmer" -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 +#: www/login/forgotpwd.php:225 +#: www/login/forgotpwd.php:287 msgid "login:: Retour a l'accueil" msgstr "Retour à l'accueil" -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 +#: www/login/forgotpwd.php:252 +#: www/login/forgotpwd.php:258 msgid "phraseanet::erreur: Echec du serveur mail" msgstr "Erreur du serveur de mails" -#: www/login/forgotpwd.php:253 +#: www/login/forgotpwd.php:255 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "Le compte n'a pas été trouvé" -#: www/login/forgotpwd.php:259 +#: www/login/forgotpwd.php:261 msgid "phraseanet::erreur: l'url n'est plus valide" msgstr "L'url n'est plus valide" -#: www/login/forgotpwd.php:268 +#: www/login/forgotpwd.php:270 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "Un e-mail vient de vous être envoyé" -#: www/login/forgotpwd.php:278 +#: www/login/forgotpwd.php:280 msgid "login:: Entrez votre adresse email" msgstr "Entrez votre adresse e-mail" -#: www/login/index.php:68 +#: www/login/index.php:70 msgid "login::erreur: Erreur d'authentification" msgstr "Erreur d'authentification" -#: www/login/index.php:71 +#: www/login/index.php:73 msgid "login::erreur: Erreur de captcha" msgstr "Trop d'erreurs d'authentification. Merci de remplir la captcha." -#: www/login/index.php:74 +#: www/login/index.php:76 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "Accès impossible, vous n'avez pas confirmé votre adresse e-mail." -#: www/login/index.php:76 +#: www/login/index.php:78 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "Envoyez moi à nouveau un e-mail de confirmation." -#: www/login/index.php:79 +#: www/login/index.php:81 msgid "login::erreur: Aucune base n'est actuellment accessible" msgstr "Vous n'avez accès à aucune collection actuellement publiée" -#: www/login/index.php:82 +#: www/login/index.php:84 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "Connexion impossible, contactez un administrateur système" -#: www/login/index.php:85 +#: www/login/index.php:87 msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" msgstr "Maintenance en cours, merci de nous excuser pour la gêne occasionnée" -#: www/login/index.php:97 +#: www/login/index.php:99 msgid "login::notification: cette email est deja confirmee" msgstr "Cet e-mail est déjà confirmé" -#: www/login/index.php:100 +#: www/login/index.php:102 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "Demande de confirmation par e-mail envoyé" -#: www/login/index.php:103 -#: www/login/index.php:106 +#: www/login/index.php:105 +#: www/login/index.php:108 msgid "login::notification: votre email est desormais confirme" msgstr "Votre e-mail est désormais confirmée" -#: www/login/index.php:123 +#: www/login/index.php:125 msgid "login::captcha: obtenir une autre captcha" msgstr "Obtenir une autre captcha" -#: www/login/index.php:126 +#: www/login/index.php:128 msgid "login::captcha: recopier les mots ci dessous" msgstr "Recopier les mots ci-dessous" -#: www/login/index.php:139 +#: www/login/index.php:141 msgid "Accueil" msgstr "Accueil" -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 +#: www/login/register.php:106 +#: www/login/register.php:290 +#: www/login/reset-email.php:147 +#: www/login/reset-email.php:187 msgid "forms::l'email semble invalide" msgstr "L'e-mail semble invalide" -#: www/login/register.php:124 +#: www/login/register.php:123 msgid "forms::un utilisateur utilisant cette adresse email existe deja" msgstr "Cet e-mail est déjà attribué à un utilisateur" -#: www/login/register.php:129 +#: www/login/register.php:128 msgid "forms::un utilisateur utilisant ce login existe deja" msgstr "Un utilisateur avec ce login existe déjà" -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" -msgstr "Identifiant invalide (8 caractères sans accents, ni espaces)" +#: www/login/register.php:292 +msgid "login invalide (5 caracteres sans accents ni espaces)" +msgstr "Indetifiant invalide ( 5 caractères sans accents ni espace" -#: www/login/register.php:298 +#: www/login/register.php:304 +#: www/login/reset-password.php:92 msgid "forms::le mot de passe est simple" msgstr "Le mot de passe est trop simple" -#: www/login/register.php:375 -#: www/login/register.php:392 +#: www/login/register.php:379 +msgid "5 caracteres minimum" +msgstr "5 cacactères minimum" + +#: www/login/register.php:396 +#: www/login/reset-password.php:172 msgid "8 caracteres minimum" msgstr "8 caractères minimum" -#: www/login/register.php:400 +#: www/login/register.php:404 msgid "Resistance du mot de passe" msgstr "Résistance du mot de passe" -#: www/login/register.php:426 +#: www/login/register.php:430 msgid "admin::compte-utilisateur A propos de la securite des mots de passe" msgstr "A propos de la sécurité des mots de passe" -#: www/login/reset-email.php:62 +#: www/login/reset-email.php:64 msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" msgstr "L'e-mail a été mis à jour" -#: www/login/reset-email.php:63 +#: www/login/reset-email.php:65 msgid "accueil:: retour a l'accueil" msgstr "Retour à l'accueil" -#: www/login/reset-email.php:96 +#: www/login/reset-email.php:98 msgid "admin::compte-utilisateur: erreur lors de la mise a jour" msgstr "La mise à jour a échouée" -#: www/login/reset-email.php:142 +#: www/login/reset-email.php:144 msgid "phraseanet::erreur: echec du serveur de mail" msgstr "Echec du serveur de mails" -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 +#: www/login/reset-email.php:150 +#: www/login/reset-email.php:191 msgid "forms::les emails ne correspondent pas" msgstr "Les e-mails ne correspondent pas" -#: www/login/reset-email.php:152 +#: www/login/reset-email.php:154 +#: www/login/reset-password.php:68 msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" msgstr "Le mot de passe est erroné" -#: www/login/reset-email.php:217 +#: www/login/reset-email.php:219 msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" msgstr "Un e-mail de confirmation vient de vous être envoyé. Veuillez suivre les instructions contenues dans ce mail pour continuer" -#: www/login/reset-email.php:221 +#: www/login/reset-email.php:223 msgid "admin::compte-utilisateur retour a mon compte" msgstr "Retour à mon compte" -#: www/login/reset-email.php:230 +#: www/login/reset-email.php:232 +#: www/login/reset-password.php:150 msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" msgstr "Oups ! une erreur est survenue !" -#: www/login/reset-email.php:251 +#: www/login/reset-email.php:253 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "Nouvelle adresse e-mail" -#: www/login/reset-email.php:256 +#: www/login/reset-email.php:258 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "Confirmer l'adresse e-mail" -#: www/login/reset-email.php:265 +#: www/login/reset-email.php:267 msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" msgstr "Pourquoi me demande t-on mon mot de passe, pour changer mon adresse e-mail ?" -#: www/login/reset-email.php:266 +#: www/login/reset-email.php:268 msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." msgstr "Votre adresse e-mail sera utilisée si vous perdez votre mot de passe afin de pouvoir le réinitialiser, il est important que vous soyez la seule personne à pouvoir la changer." -#: www/login/reset-password.php:160 +#: www/login/reset-password.php:162 msgid "admin::compte-utilisateur ancien mot de passe" msgstr "Ancien mot de passe" -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "%d Résultats renvoyés sur un total de %d trouvés" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "%d résultat(s)" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "%d Réponse(s)" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "%s documents sélectionnés" - -#: www/prod/chghddocument.php:42 +#: www/prod/chghddocument.php:39 msgid "prod::substitution::erreur : document de substitution invalide" msgstr "Format de fichier incorrect" -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 +#: www/prod/chghddocument.php:61 +#: www/prod/chgthumb.php:49 msgid "prod::substitution::document remplace avec succes" msgstr "Document remplacé avec succès" -#: www/prod/chgstatus.php:130 +#: www/prod/chgstatus.php:131 #, php-format msgid "prod::proprietes : %d documents modifies" msgstr "%d document(s) modifié(s)" -#: www/prod/chgthumb.php:42 +#: www/prod/chgthumb.php:44 msgid "prod::substitution::erreur : impossible d'ajouter ce document" msgstr "Impossible d'ajouter ce document" -#: www/prod/docfunction.php:327 +#: www/prod/docfunction.php:337 msgid "prod::proprietes:: status" msgstr "Status" -#: www/prod/docfunction.php:328 +#: www/prod/docfunction.php:338 msgid "prod::proprietes:: type" msgstr "Type" -#: www/prod/docfunction.php:356 +#: www/prod/docfunction.php:366 #, php-format msgid "prod::status: edition de status de %d regroupements" msgstr "Edition de status de %d regroupements" -#: www/prod/docfunction.php:358 +#: www/prod/docfunction.php:368 #, php-format msgid "prod::status: edition de status de %d documents" msgstr "Edition de status de %d documents" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remettre a zero les status non nommes" msgstr "Remettre à \"0\" les status non initialisés" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remetter a zero tous les status" msgstr "Remettre à \"0\" tous les status" -#: www/prod/docfunction.php:408 +#: www/prod/docfunction.php:418 msgid "prod::status: aucun status n'est defini sur cette base" msgstr "Aucun status n'est défini sur cette base" -#: www/prod/docfunction.php:424 +#: www/prod/docfunction.php:434 msgid "prod::status: changer egalement le status des document rattaches aux regroupements" msgstr "Changer également le status des document rattachés aux reportages" -#: www/prod/docfunction.php:454 +#: www/prod/docfunction.php:464 #, php-format msgid "prod::status: %d documents ne peuvent avoir une edition des status" msgstr "Edition des Status impossible pour %d document(s)" -#: www/prod/docfunction.php:461 +#: www/prod/docfunction.php:471 msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" msgstr "Vous ne possédez pas les autorisations d'accès requises pour changer les status de ces documents" -#: www/prod/docfunction.php:496 +#: www/prod/docfunction.php:506 msgid "prod::type: appliquer a tous les documents selectionnes" msgstr "Appliquer à tous les documents" -#: www/prod/imgfunction.php:137 +#: www/prod/imgfunction.php:139 msgid "prod::tools: regeneration de sous definitions" msgstr "Regénérer sous défs." -#: www/prod/imgfunction.php:138 +#: www/prod/imgfunction.php:140 msgid "prod::tools: outils image" msgstr "Retourner sous défs." -#: www/prod/imgfunction.php:143 +#: www/prod/imgfunction.php:145 msgid "prod::tools: substitution HD" msgstr "Substituer document" -#: www/prod/imgfunction.php:148 +#: www/prod/imgfunction.php:150 msgid "prod::tools: substitution de sous definition" msgstr "Substituer sous défs." -#: www/prod/imgfunction.php:153 +#: www/prod/imgfunction.php:155 msgid "prod::tools: meta-datas" msgstr "Méta-données" -#: www/prod/imgfunction.php:163 +#: www/prod/imgfunction.php:165 msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." msgstr "Attention, certains documents ont des sous-définitions substituées" -#: www/prod/imgfunction.php:164 +#: www/prod/imgfunction.php:166 msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." msgstr "Reconstruire les vignettes définies manuellement" -#: www/prod/imgfunction.php:174 +#: www/prod/imgfunction.php:176 msgid "prod::tools:regeneration: Reconstruire les sous definitions" msgstr "Reconstruire les sous-définitions" -#: www/prod/imgfunction.php:177 +#: www/prod/imgfunction.php:179 msgid "prod::tools: option : recreer aucune les sous-definitions" msgstr "Ne recréer aucune sous-définition" -#: www/prod/imgfunction.php:178 +#: www/prod/imgfunction.php:180 msgid "prod::tools: option : recreer toutes les sous-definitions" msgstr "Recréer toutes les sous-définitions" -#: www/prod/imgfunction.php:192 +#: www/prod/imgfunction.php:194 msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" msgstr "Cette action ne concerne que les sous définitions des documents de type image" -#: www/prod/imgfunction.php:193 +#: www/prod/imgfunction.php:195 msgid "prod::tools::image: rotation 90 degres horaire" msgstr "90° horaire" -#: www/prod/imgfunction.php:195 +#: www/prod/imgfunction.php:197 msgid "prod::tools::image rotation 90 degres anti-horaires" msgstr "90° anti-horaire" -#: www/prod/imgfunction.php:219 +#: www/prod/imgfunction.php:221 msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" msgstr "mettre à jour le nom original du fichier après substitution" -#: www/prod/prodFeedBack.php:82 -msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." -msgstr "Voici votre fil RSS personnel. Il vous permettra d'être tenu informé des publications." - -#: www/prod/prodFeedBack.php:83 -msgid "publications::Ne le partagez pas, il est strictement confidentiel" -msgstr "Ne le partagez pas, il est strictement confidentiel" - -#: www/prod/prodFeedBack.php:85 -msgid "publications::votre rss personnel" -msgstr "Votre rss personnel" - -#: www/prod/prodFeedBack.php:271 +#: www/prod/prodFeedBack.php:237 msgid "les enregistrements ont ete correctement commandes" msgstr "Enregistrements commandés" -#: www/prod/prodFeedBack.php:275 +#: www/prod/prodFeedBack.php:241 msgid "Erreur lors de la commande des enregistrements" msgstr "Erreur lors de la commande des documents" -#: www/prod/prodFeedBack.php:306 +#: www/prod/prodFeedBack.php:272 msgid "Les documents ne peuvent etre envoyes par FTP" msgstr "Les documents ne peuvent être envoyés par FTP" -#: www/prod/prodFeedBack.php:315 +#: www/prod/prodFeedBack.php:281 msgid "Export enregistre dans la file dattente" msgstr "Demande enregistrée dans la file d'attente" -#: www/prod/prodFeedBack.php:340 +#: www/prod/prodFeedBack.php:306 msgid "Connection au FTP avec succes" msgstr "Connexion au serveur FTP avec succès" -#: www/prod/prodFeedBack.php:344 +#: www/prod/prodFeedBack.php:310 #, php-format msgid "Erreur lors de la connection au FTP : %s" msgstr "Erreur lors de la connexion au FTP : %s" -#: www/prod/share.php:131 +#: www/prod/share.php:132 msgid "Aucune URL disponible" msgstr "Aucune URL disponible" -#: www/prod/share.php:146 +#: www/prod/share.php:147 msgid "Aucun code disponible" msgstr "Aucun code disponible" #: www/report/ajax_table_content.php:62 #: www/report/ajax_table_content.php:638 -#: www/report/tab.php:63 -#: www/report/tab.php:845 msgid "report:: titre" msgstr "Titre" #: www/report/ajax_table_content.php:63 #: www/report/ajax_table_content.php:639 -#: www/report/tab.php:64 -#: www/report/tab.php:846 msgid "report:: poids" msgstr "Poids" #: www/report/ajax_table_content.php:66 #: www/report/ajax_table_content.php:689 -#: www/report/tab.php:67 -#: www/report/tab.php:909 msgid "report:: identifiant" msgstr "Identifiant" #: www/report/ajax_table_content.php:67 #: www/report/ajax_table_content.php:690 -#: www/report/tab.php:68 -#: www/report/tab.php:910 msgid "report:: nom" msgstr "Nom" #: www/report/ajax_table_content.php:68 #: www/report/ajax_table_content.php:691 -#: www/report/tab.php:69 -#: www/report/tab.php:911 msgid "report:: email" msgstr "E-mail" #: www/report/ajax_table_content.php:69 #: www/report/ajax_table_content.php:692 -#: www/report/tab.php:70 -#: www/report/tab.php:912 msgid "report:: adresse" msgstr "Adresse" #: www/report/ajax_table_content.php:70 #: www/report/ajax_table_content.php:693 -#: www/report/tab.php:71 -#: www/report/tab.php:913 msgid "report:: telephone" msgstr "Téléphone" #: www/report/ajax_table_content.php:74 #: www/report/ajax_table_content.php:367 -#: www/report/tab.php:437 msgid "report:: IP" msgstr "IP" #: www/report/ajax_table_content.php:302 -#: www/report/tab.php:351 msgid "configuration" msgstr "Configuration" #: www/report/ajax_table_content.php:329 -#: www/report/tab.php:379 #, php-format msgid "filtrer les resultats sur la colonne %s" msgstr "Filtrer les résultats sur la colonne %s" #: www/report/ajax_table_content.php:365 #: www/report/ajax_table_content.php:475 -#: www/report/tab.php:435 msgid "phraseanet::utilisateurs" msgstr "Utilisateurs" #: www/report/ajax_table_content.php:440 -#: www/report/tab.php:559 msgid "report:: plateforme" msgstr "Plateforme" #: www/report/ajax_table_content.php:448 -#: www/report/tab.php:567 msgid "report:: module" msgstr "Module" #: www/report/ajax_table_content.php:489 #: www/report/ajax_table_content.php:507 -#: www/report/tab.php:632 -#: www/report/tab.php:664 msgid "report:: nombre de reponses" msgstr "Nombre de réponses" #: www/report/ajax_table_content.php:531 -#: www/report/tab.php:715 msgid "report:: total des telechargements" msgstr "Total des téléchargements" #: www/report/ajax_table_content.php:532 -#: www/report/tab.php:716 msgid "report:: preview" msgstr "Sous définitions" #: www/report/ajax_table_content.php:533 -#: www/report/tab.php:717 msgid "report:: document original" msgstr "Document original" #: www/report/ajax_table_content.php:548 -#: www/report/tab.php:745 msgid "report:: nombre de documents" msgstr "Nombre de documents" #: www/report/ajax_table_content.php:549 -#: www/report/tab.php:746 msgid "report:: poids des documents" msgstr "Poids des documents" #: www/report/ajax_table_content.php:550 -#: www/report/tab.php:747 msgid "report:: nombre de preview" msgstr "Nombre de sous définitions" #: www/report/ajax_table_content.php:551 -#: www/report/tab.php:748 msgid "report:: poids des previews" msgstr "Poids des sous définitions" #: www/report/ajax_table_content.php:589 -#: www/report/tab.php:796 msgid "report:: historique des connexions" msgstr "Historique des connexions" #: www/report/ajax_table_content.php:596 #: www/report/ajax_table_content.php:681 -#: www/report/tab.php:803 -#: www/report/tab.php:892 msgid "report:: historique des telechargements" msgstr "Historique des téléchargements" #: www/report/ajax_table_content.php:602 -#: www/report/tab.php:809 msgid "report:: historique des questions" msgstr "Historique des questions" #: www/report/ajax_table_content.php:712 -#: www/report/tab.php:941 msgid "report::version " msgstr "Version " @@ -7631,277 +7705,277 @@ msgstr "Pays" msgid "report::societe" msgstr "Société" -#: www/thesaurus2/accept.php:46 +#: www/thesaurus2/accept.php:48 msgid "thesaurus:: accepter..." msgstr "Accepter" -#: www/thesaurus2/accept.php:165 +#: www/thesaurus2/accept.php:167 msgid "thesaurus:: removed_src" msgstr "removed_src" -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 +#: www/thesaurus2/accept.php:170 +#: www/thesaurus2/accept.php:228 msgid "thesaurus:: refresh" msgstr "Rafraîchir" -#: www/thesaurus2/accept.php:223 +#: www/thesaurus2/accept.php:225 msgid "thesaurus:: removed tgt" msgstr "removed_tgt" -#: www/thesaurus2/accept.php:259 +#: www/thesaurus2/accept.php:261 msgid "thesaurus:: Accepter le terme comme" msgstr "Accepter le terme comme :" -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 +#: www/thesaurus2/accept.php:263 +#: www/thesaurus2/accept.php:273 msgid "thesaurus:: comme terme specifique" msgstr "Terme spécifique" -#: www/thesaurus2/accept.php:265 +#: www/thesaurus2/accept.php:267 #, php-format msgid "thesaurus:: comme synonyme de %s" msgstr "Comme synonyme de %s" -#: www/thesaurus2/accept.php:270 +#: www/thesaurus2/accept.php:272 msgid "thesaurus:: Accepter la branche comme" msgstr "Accepter la branche comme" -#: www/thesaurus2/accept.php:294 +#: www/thesaurus2/accept.php:296 #, php-format msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" msgstr "Un candidat du champ %s ne peut être accepte à cet emplacement" -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 +#: www/thesaurus2/export_text.php:53 +#: www/thesaurus2/export_text_dlg.php:44 +#: www/thesaurus2/export_text_dlg.php:148 msgid "thesaurus:: export au format texte" msgstr "Texte" -#: www/thesaurus2/export_text_dlg.php:137 +#: www/thesaurus2/export_text_dlg.php:139 msgid "thesaurus:: options d'export : " msgstr "Export " -#: www/thesaurus2/export_text_dlg.php:138 +#: www/thesaurus2/export_text_dlg.php:140 msgid "thesaurus:: example" msgstr "exemple" -#: www/thesaurus2/export_text_dlg.php:151 +#: www/thesaurus2/export_text_dlg.php:153 msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" msgstr "Synonyme(s) sur la même ligne" -#: www/thesaurus2/export_text_dlg.php:155 +#: www/thesaurus2/export_text_dlg.php:157 msgid "thesaurus:: exporter avec une ligne par synonyme" msgstr "Une ligne par synonyme" -#: www/thesaurus2/export_text_dlg.php:159 +#: www/thesaurus2/export_text_dlg.php:161 msgid "thesaurus:: export : numeroter les lignes " msgstr "Numéroter les lignes " -#: www/thesaurus2/export_text_dlg.php:163 +#: www/thesaurus2/export_text_dlg.php:165 msgid "thesaurus:: export : inclure la langue" msgstr "Inclure la langue" -#: www/thesaurus2/export_text_dlg.php:167 +#: www/thesaurus2/export_text_dlg.php:169 msgid "thesaurus:: export : inclure les hits" msgstr "Inclure le nombre de résultats" -#: www/thesaurus2/export_text_dlg.php:173 +#: www/thesaurus2/export_text_dlg.php:175 msgid "thesaurus:: export : format topics" msgstr "Thèmes" -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 +#: www/thesaurus2/export_topics.php:100 +#: www/thesaurus2/export_topics_dlg.php:45 msgid "thesaurus:: export en topics" msgstr "Thèmes" -#: www/thesaurus2/export_topics.php:159 +#: www/thesaurus2/export_topics.php:161 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "Fichier généré le %s" -#: www/thesaurus2/export_topics.php:178 +#: www/thesaurus2/export_topics.php:180 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s fichier(s) généré(s)" -#: www/thesaurus2/export_topics.php:180 +#: www/thesaurus2/export_topics.php:182 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Erreur lors de l'enregistrement du fichier" -#: www/thesaurus2/export_topics_dlg.php:117 +#: www/thesaurus2/export_topics_dlg.php:119 msgid "thesaurus:: exporter" msgstr "Exporter" -#: www/thesaurus2/export_topics_dlg.php:120 +#: www/thesaurus2/export_topics_dlg.php:122 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "Exporter pour toutes les langues" -#: www/thesaurus2/export_topics_dlg.php:128 +#: www/thesaurus2/export_topics_dlg.php:130 msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" msgstr "Afficher pour la langue en cours" -#: www/thesaurus2/export_topics_dlg.php:135 +#: www/thesaurus2/export_topics_dlg.php:137 msgid "phraseanet:: tri" msgstr "Tri" -#: www/thesaurus2/export_topics_dlg.php:145 +#: www/thesaurus2/export_topics_dlg.php:147 msgid "thesaurus:: recherche" msgstr "Recherche" -#: www/thesaurus2/export_topics_dlg.php:148 +#: www/thesaurus2/export_topics_dlg.php:150 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Thésaurus *:\"recherche\"" -#: www/thesaurus2/export_topics_dlg.php:152 +#: www/thesaurus2/export_topics_dlg.php:154 msgid "thesaurus:: recherche fulltext" msgstr "Texte-plein" -#: www/thesaurus2/export_topics_dlg.php:156 +#: www/thesaurus2/export_topics_dlg.php:158 msgid "thesaurus:: question complete (avec operateurs)" msgstr "Question complète (avec opérateurs)" -#: www/thesaurus2/export_topics_dlg.php:163 +#: www/thesaurus2/export_topics_dlg.php:165 msgid "thesaurus:: presentation" msgstr "Options d'affichage" -#: www/thesaurus2/export_topics_dlg.php:166 +#: www/thesaurus2/export_topics_dlg.php:168 msgid "thesaurus:: presentation : branches refermables" msgstr "Reprendre l'affichage (navigable)" -#: www/thesaurus2/export_topics_dlg.php:170 +#: www/thesaurus2/export_topics_dlg.php:172 msgid "thesaurus:: presentation : branche ouvertes" msgstr "Reprendre l'affichage (statique)" -#: www/thesaurus2/export_topics_dlg.php:174 +#: www/thesaurus2/export_topics_dlg.php:176 msgid "thesaurus:: tout deployer - refermable" msgstr "Tout déployer (navigable)" -#: www/thesaurus2/export_topics_dlg.php:178 +#: www/thesaurus2/export_topics_dlg.php:180 msgid "thesaurus:: tout deployer - statique" msgstr "Tout déployer (statique)" -#: www/thesaurus2/export_topics_dlg.php:182 +#: www/thesaurus2/export_topics_dlg.php:184 msgid "thesaurus:: tout fermer" msgstr "Tout fermer (navigable)" -#: www/thesaurus2/import.php:158 +#: www/thesaurus2/import.php:159 #, php-format msgid "over-indent at line %s" msgstr "over-indent at line %s" -#: www/thesaurus2/import.php:166 +#: www/thesaurus2/import.php:167 #, php-format msgid "bad encoding at line %s" msgstr "bad encoding at line %s" -#: www/thesaurus2/import.php:173 +#: www/thesaurus2/import.php:174 #, php-format msgid "bad character at line %s" msgstr "bad character at line %s" -#: www/thesaurus2/import_dlg.php:42 +#: www/thesaurus2/import_dlg.php:44 msgid "thesaurus:: Importer" msgstr "Importer" -#: www/thesaurus2/import_dlg.php:85 +#: www/thesaurus2/import_dlg.php:87 msgid "thesaurus:: coller ici la liste des termes a importer" msgstr "Coller ici la liste des termes à importer" -#: www/thesaurus2/import_dlg.php:86 +#: www/thesaurus2/import_dlg.php:88 msgid "thesaurus:: langue par default" msgstr "Langue par défaut" -#: www/thesaurus2/import_dlg.php:93 +#: www/thesaurus2/import_dlg.php:95 msgid "Fichier ASCII tabule" msgstr "Fichier ASCII tabule" -#: www/thesaurus2/import_dlg.php:110 +#: www/thesaurus2/import_dlg.php:112 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "Supprimer le(s) lien(s) entre le(s) branche(s) et le(s) champ(s)" -#: www/thesaurus2/import_dlg.php:113 +#: www/thesaurus2/import_dlg.php:115 msgid "thesaurus:: reindexer la base apres l'import" msgstr "Ré-indexer après l'import" -#: www/thesaurus2/index.php:96 +#: www/thesaurus2/index.php:98 msgid "thesaurus:: Editer le thesaurus" msgstr "Editer le thésaurus" -#: www/thesaurus2/index.php:118 +#: www/thesaurus2/index.php:120 msgid "phraseanet:: choisir" msgstr "Choisir" -#: www/thesaurus2/index.php:144 +#: www/thesaurus2/index.php:146 msgid "thesaurus:: langue pivot" msgstr "Sélectionner une langue d'édition" -#: www/thesaurus2/index.php:161 +#: www/thesaurus2/index.php:163 msgid "thesaurus:: Vous n'avez acces a aucune base" msgstr "Vous n'avez accès à aucune base" -#: www/thesaurus2/linkfield.php:32 +#: www/thesaurus2/linkfield.php:34 msgid "thesaurus:: Lier la branche de thesaurus au champ" msgstr "Lier la branche de thesaurus au champ" -#: www/thesaurus2/linkfield.php:112 +#: www/thesaurus2/linkfield.php:114 #, php-format msgid "thesaurus:: Lier la branche de thesaurus au champ %s" msgstr "Lier la branche de thesaurus au champ %s" -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 +#: www/thesaurus2/linkfield2.php:34 +#: www/thesaurus2/linkfield3.php:35 msgid "thesaurus:: Lier la branche de thesaurus" msgstr "Lier la branche" -#: www/thesaurus2/linkfield2.php:116 +#: www/thesaurus2/linkfield2.php:118 #, php-format msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " msgstr "Ce champs a été modifié; ancienne branche : %s " -#: www/thesaurus2/linkfield2.php:145 +#: www/thesaurus2/linkfield2.php:147 msgid "thesaurus:: nouvelle branche" msgstr "Nouvelle branche" -#: www/thesaurus2/linkfield2.php:150 +#: www/thesaurus2/linkfield2.php:152 msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" msgstr "Ce champ n'est plus lié au Thésaurus, les termes indexés et les candidats seront supprimés" -#: www/thesaurus2/linkfield2.php:158 +#: www/thesaurus2/linkfield2.php:160 msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" msgstr "Ce champ doit être lié au Thésaurus. La ré-indexation de la base est nécessaire" -#: www/thesaurus2/linkfield2.php:162 +#: www/thesaurus2/linkfield2.php:164 msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" msgstr "Le lien au thésaurus doit être modifié, la ré-indexation de la base est nécessaire" -#: www/thesaurus2/linkfield2.php:177 +#: www/thesaurus2/linkfield2.php:179 msgid "thesaurus:: reindexation necessaire" msgstr "Ré-indexation nécessaire" -#: www/thesaurus2/linkfield2.php:181 +#: www/thesaurus2/linkfield2.php:183 msgid "thesaurus:: pas de reindexation" msgstr "Pas de ré-indexation" -#: www/thesaurus2/linkfield3.php:78 +#: www/thesaurus2/linkfield3.php:80 #, php-format msgid "thesaurus:: suppression du lien du champ %s" msgstr "Suppression du lien au champ %s" -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 +#: www/thesaurus2/linkfield3.php:88 +#: www/thesaurus2/linkfield3.php:104 #, php-format msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" msgstr "Suppression de la branche de mot candidats pour le champ %s" -#: www/thesaurus2/linkfield3.php:112 +#: www/thesaurus2/linkfield3.php:114 msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." msgstr "Enregistrement de la liste modifiée des mots candidats" -#: www/thesaurus2/linkfield3.php:124 +#: www/thesaurus2/linkfield3.php:126 msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" msgstr "Suppression des indexes vers le thésaurus pour le champ" -#: www/thesaurus2/linkfield3.php:135 +#: www/thesaurus2/linkfield3.php:137 msgid "thesaurus:: reindexer tous les enregistrements" msgstr "Ré-indexer tous les enregistrements" @@ -7909,260 +7983,262 @@ msgstr "Ré-indexer tous les enregistrements" msgid "thesaurus:: corbeille" msgstr "Stock" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: Nouveau terme" msgstr "Nouveau terme" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: terme" msgstr "Terme" -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newsy_dlg.php:39 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau synonyme" msgstr "Nouveau synonyme" -#: www/thesaurus2/newsy_dlg.php:37 +#: www/thesaurus2/newsy_dlg.php:39 msgid "thesaurus:: synonyme" msgstr "Synonyme" -#: www/thesaurus2/newsy_dlg.php:91 +#: www/thesaurus2/newsy_dlg.php:93 msgid "thesaurus:: contexte" msgstr "Contexte" -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau terme specifique" msgstr "Nouveau terme spécifique" -#: www/thesaurus2/newterm.php:72 +#: www/thesaurus2/newterm.php:74 #, php-format msgid "thesaurus:: le terme %s" msgstr "Le terme %s" -#: www/thesaurus2/newterm.php:74 +#: www/thesaurus2/newterm.php:76 #, php-format msgid "thesaurus:: avec contexte %s" msgstr "avec contexte %s" -#: www/thesaurus2/newterm.php:76 +#: www/thesaurus2/newterm.php:78 msgid "thesaurus:: sans contexte" msgstr "Sans contexte" -#: www/thesaurus2/newterm.php:104 +#: www/thesaurus2/newterm.php:106 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "est déjà candidat en provenance du champ acceptable " -#: www/thesaurus2/newterm.php:106 +#: www/thesaurus2/newterm.php:108 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "est déjà candidat en provenance des champs acceptables : " -#: www/thesaurus2/newterm.php:146 +#: www/thesaurus2/newterm.php:148 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Sélectionner la provenance à accepter" -#: www/thesaurus2/newterm.php:162 #: www/thesaurus2/newterm.php:164 +#: www/thesaurus2/newterm.php:166 msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" msgstr "est candidat en provenance des champs mais ne peut être accepté à cet emplacement" -#: www/thesaurus2/newterm.php:169 +#: www/thesaurus2/newterm.php:171 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "n'est pas présent parmi les candidats" -#: www/thesaurus2/newterm.php:173 +#: www/thesaurus2/newterm.php:175 msgid "thesaurus:: attention :" msgstr "Attention :" -#: www/thesaurus2/newterm.php:184 +#: www/thesaurus2/newterm.php:186 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Ajouter le terme sans ré-indexer" -#: www/thesaurus2/newterm.php:186 +#: www/thesaurus2/newterm.php:188 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Ajouter le terme et ré-indexer" -#: www/thesaurus2/properties.php:47 +#: www/thesaurus2/properties.php:49 msgid "thesaurus:: Proprietes" msgstr "Propriétés" -#: www/thesaurus2/properties.php:92 +#: www/thesaurus2/properties.php:94 +#: www/thesaurus2/thesaurus.php:230 +#: www/thesaurus2/thesaurus.php:255 msgid "thesaurus::menu: supprimer" msgstr "Supprimer" -#: www/thesaurus2/properties.php:93 +#: www/thesaurus2/properties.php:95 msgid "thesaurus:: remplacer" msgstr "Remplacer" -#: www/thesaurus2/properties.php:120 +#: www/thesaurus2/properties.php:122 #, php-format msgid "thesaurus:: %s reponses retournees" msgstr "%s Réponse(s)" -#: www/thesaurus2/properties.php:147 +#: www/thesaurus2/properties.php:149 msgid "thesaurus:: synonymes" msgstr "Synonymes" -#: www/thesaurus2/properties.php:148 +#: www/thesaurus2/properties.php:150 msgid "thesaurus:: hits" msgstr "hits" -#: www/thesaurus2/properties.php:149 +#: www/thesaurus2/properties.php:151 msgid "thesaurus:: ids" msgstr "Nom de l'utilisateur" -#: www/thesaurus2/properties.php:321 +#: www/thesaurus2/properties.php:323 #, php-format msgid "thesaurus:: Confirmer la suppression du terme %s" msgstr "Confirmer la suppression du terme \"%s\"" -#: www/thesaurus2/search.php:77 +#: www/thesaurus2/search.php:79 msgid "thesaurus:: le terme" msgstr "Le terme" -#: www/thesaurus2/search.php:78 +#: www/thesaurus2/search.php:80 msgid "thesaurus:: est egal a " msgstr "est égal à " -#: www/thesaurus2/search.php:82 +#: www/thesaurus2/search.php:84 msgid "thesaurus:: commence par" msgstr "commence par" -#: www/thesaurus2/search.php:86 +#: www/thesaurus2/search.php:88 msgid "thesaurus:: contient" msgstr "contient" -#: www/thesaurus2/search.php:91 +#: www/thesaurus2/search.php:93 msgid "thesaurus:: fini par" msgstr "fini par" -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 +#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:251 msgid "thesaurus::menu: proprietes" msgstr "Propriétés" -#: www/thesaurus2/thesaurus.php:225 +#: www/thesaurus2/thesaurus.php:227 msgid "thesaurus::menu: refuser" msgstr "Refuser" -#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:228 msgid "thesaurus::menu: accepter" msgstr "Accepter" -#: www/thesaurus2/thesaurus.php:229 +#: www/thesaurus2/thesaurus.php:231 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "Supprimer les candidats sans réponse" -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 +#: www/thesaurus2/thesaurus.php:233 +#: www/thesaurus2/thesaurus.php:254 msgid "thesaurus::menu: remplacer" msgstr "Remplacer" -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 +#: www/thesaurus2/thesaurus.php:237 +#: www/thesaurus2/thesaurus.php:257 msgid "thesaurus::menu: chercher" msgstr "Chercher" -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 +#: www/thesaurus2/thesaurus.php:238 +#: www/thesaurus2/thesaurus.php:258 msgid "thesaurus::menu: exporter" msgstr "Exporter" -#: www/thesaurus2/thesaurus.php:239 +#: www/thesaurus2/thesaurus.php:241 msgid "thesaurus::menu: relire les candidats" msgstr "Relire les candidats" -#: www/thesaurus2/thesaurus.php:245 +#: www/thesaurus2/thesaurus.php:247 msgid "thesaurus::menu: importer" msgstr "Importer" -#: www/thesaurus2/thesaurus.php:250 +#: www/thesaurus2/thesaurus.php:252 msgid "thesaurus::menu: Nouveau terme" msgstr "Nouveau terme" -#: www/thesaurus2/thesaurus.php:251 +#: www/thesaurus2/thesaurus.php:253 msgid "thesaurus::menu: Nouveau synonyme" msgstr "Nouveau synonyme" -#: www/thesaurus2/thesaurus.php:257 +#: www/thesaurus2/thesaurus.php:259 msgid "thesaurus::menu: export topics" msgstr "Exporter comme thèmes" -#: www/thesaurus2/thesaurus.php:259 +#: www/thesaurus2/thesaurus.php:261 msgid "thesaurus::menu: lier au champ" msgstr "Lier au champ" -#: www/thesaurus2/thesaurus.php:294 +#: www/thesaurus2/thesaurus.php:296 msgid "thesaurus:: onglet stock" msgstr "Candidats" -#: www/thesaurus2/thesaurus.php:299 +#: www/thesaurus2/thesaurus.php:301 msgid "thesaurus:: afficher les termes refuses" msgstr "Afficher les termes refusés" -#: www/thesaurus2/thesaurus.php:313 +#: www/thesaurus2/thesaurus.php:315 msgid "thesaurus:: onglet thesaurus" msgstr "Thésaurus" -#: www/thesaurus2/thesaurus.php:513 +#: www/thesaurus2/thesaurus.php:515 msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "Supprimer cette branche ? (les termes concernés remonteront en candidats à la prochaine indexation)" -#: www/thesaurus2/thesaurus.php:515 +#: www/thesaurus2/thesaurus.php:517 msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "Cette branche donne des réponses. Supprimer quand même ? (les termes concernés remonteront en candidats à la prochaine indexation)" -#: www/thesaurus2/thesaurus.php:557 +#: www/thesaurus2/thesaurus.php:559 msgid "thesaurus:: Tous les termes ont des hits" msgstr "Tous les termes renvoient des résultats" -#: www/thesaurus2/thesaurus.php:563 +#: www/thesaurus2/thesaurus.php:565 msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" msgstr "Des termes de cette branche ne renvoient aucun résultat. Les supprimer ?" -#: www/thesaurus2/thesaurus.php:652 +#: www/thesaurus2/thesaurus.php:654 msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" msgstr "Supprimer tous les candidats et placer toutes les fiches en ré-indexation thésaurus" -#: www/thesaurus2/thesaurus.php:1096 +#: www/thesaurus2/thesaurus.php:1098 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Déplacer le terme dans le stock ?" -#: www/upload/index.php:75 +#: www/upload/index.php:76 msgid "upload:You do not have right to upload datas" msgstr "Vous ne possédez pas les autorisations d'accès requises pour ajouter des documents." -#: www/upload/index.php:186 +#: www/upload/index.php:187 msgid "Selectionner une action" msgstr "Selectionner une action" -#: www/upload/index.php:187 +#: www/upload/index.php:188 msgid "Aucune enregistrement selectionne" msgstr "Aucun document sélectionné" -#: www/upload/index.php:188 +#: www/upload/index.php:189 msgid "Transfert en court, vous devez attendre la fin du transfert" msgstr "Transfert en cours, vous devez attendre la fin du transfert" -#: www/upload/index.php:189 +#: www/upload/index.php:190 msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" msgstr "La file d'attente n'est pas vide, souhaitez vous supprimer ces documents ?" -#: www/upload/index.php:241 +#: www/upload/index.php:242 #, php-format msgid "upload:: %d fichiers uploades" msgstr "%d fichiers transmis" -#: www/upload/index.php:243 +#: www/upload/index.php:244 #: www/upload/index.php:414 #, php-format msgid "upload:: %d fichier uploade" msgstr "%d fichier transmis" -#: www/upload/index.php:247 +#: www/upload/index.php:248 msgid "Certains elements uploades sont passes en quarantaine" msgstr "Certains documents ajoutés sont passés en quarantaine" -#: www/upload/index.php:276 +#: www/upload/index.php:277 #, php-format msgid "upload :: choisir les fichiers a uploader (max : %d MB)" msgstr "Choisir des fichiers à ajouter (max : %d Mo)" @@ -8235,37 +8311,37 @@ msgstr "Supprimer les documents bloqués" msgid "Supprimer precedentes propositions a la substitution" msgstr "Supprimer les précédentes propositions a la substitution" -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 +#: www/upload/upload.php:45 +#: www/upload/upload.php:54 msgid "Internal Server Error" msgstr "Erreur interne du serveur" -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 +#: www/upload/upload.php:140 +#: www/upload/upload.php:163 msgid "erreur lors de l'archivage" msgstr "Erreur lors de l'archivage" -#: www/upload/upload.php:144 +#: www/upload/upload.php:143 msgid "Document ajoute a la quarantaine" msgstr "Document(s) ajouté(s) à la quarantaine" -#: www/upload/upload.php:147 +#: www/upload/upload.php:146 msgid "Fichier uploade, en attente" msgstr "Fichiers en attente..." -#: www/upload/upload.php:187 +#: www/upload/upload.php:186 msgid "Fichier uploade !" msgstr "Fichier(s) ajouté(s)" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:402 msgid "Erreur lors de l'enregistrement des donnees" msgstr "Erreur lors de l'enregistrement des données" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:475 msgid "Erreur lors de la mise a jour des donnes " msgstr "Erreur lors de la mise à jour des données " -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:599 msgid "Envoie avec succes" msgstr "Envoi avec succès" @@ -8289,20 +8365,24 @@ msgstr "L'enregistrement a été supprimé du panier" msgid "Basket has been updated" msgstr "Le panier a été mis à jour" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:311 +msgid "Basket updated" +msgstr "Paniers mis à jour" + +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:346 msgid "Basket has been archived" msgstr "Le panier a été archivé" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:350 msgid "Basket has been unarchived" msgstr "Le panier est disponible dans la fenêtre des paniers" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:442 #, php-format msgid "%d records added" -msgstr "%d enregistrements ajoutés" +msgstr "%d enregistrement(s) ajouté(s)" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:504 #, php-format msgid "%d records moved" msgstr "%d enregistrements déplacés" @@ -8339,6 +8419,21 @@ msgstr "Entrée du flux introuvable" msgid "Action Forbidden : You are not the publisher" msgstr "Action non autorisée: Vous n'êtes pas la personne qui a publié" +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:292 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:316 +msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." +msgstr "Voici votre fil RSS personnel. Il vous permettra d'être tenu informé des publications." + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:293 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:317 +msgid "publications::Ne le partagez pas, il est strictement confidentiel" +msgstr "Ne le partagez pas, il est strictement confidentiel" + +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:295 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:319 +msgid "publications::votre rss personnel" +msgstr "Votre rss personnel" + #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 msgid "prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." msgstr "Attention : la liste des collections sélectionnées pour la recherche a été changée" @@ -8445,8 +8540,8 @@ msgid "panier:: vous ne pouvez pas supprimer un panier public" msgstr "Vous ne possédez pas les autorisations d'accès requises pour supprimer un panier public" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:81 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" -msgstr "Vous ne pouvez pas sélectionner plus de 400 enregistrements" +msgid "Vous ne pouvez pas selectionner plus de 800 enregistrements" +msgstr "Vous ne pouvez pas selectionner plus de 800 enregistrements" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 msgid "Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" @@ -8493,97 +8588,146 @@ msgid "Message" msgstr "Message" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +msgid "Time for feedback (days)" +msgstr "Durée de la validation (en jour)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +msgid "Accuse de reception" +msgstr "Accusé de réception" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#, php-format +msgid "%d fields have been updated" +msgstr "%d ont été mis à jour" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "No users selected" msgstr "Aucun utilisateur sélectionné" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:308 msgid "Unable to send the documents" msgstr "Impossible d'envoyer les documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:190 #, php-format msgid "Push from %s" msgstr "Push de %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:199 msgid "No receivers specified" msgstr "Aucun destinataire indiqué" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:204 msgid "No elements to push" msgstr "Aucun élément à Pusher" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:218 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:434 #, php-format msgid "Unknown user %d" msgstr "User %d inconnu" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:281 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "%1$d enregistrements ont été envoyés à %2$d utilisateurs" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:331 #, php-format msgid "Validation from %s" msgstr "Validation de %s" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:340 msgid "No participants specified" msgstr "Aucun participant indiqué" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:345 msgid "No elements to validate" msgstr "Il n'y a pas de documents à valider" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:425 #, php-format msgid "Missing mandatory participant parameter %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:515 #, php-format msgid "%1$d records have been sent for validation to %2$d users" msgstr "%1$d enregistrements ont été envoyés pour validation à %2$d utilisateurs" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:601 msgid "First name is required" msgstr "Le prénom est obligatoire" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:604 msgid "Last name is required" msgstr "Le nom est obligatoire" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:607 msgid "Email is required" msgstr "L'adresse email est obligatoire" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:610 msgid "Email is invalid" msgstr "L'email est invalide" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:629 msgid "User already exists" msgstr "L'utilisateur existe déjà" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:656 msgid "User successfully created" msgstr "Utilisateur créé avec succès" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:662 msgid "Error while creating user" msgstr "Erreur lors de la création de l'utilisateur" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:153 +#, php-format +msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" +msgstr "%d Résultats renvoyés sur un total de %d trouvés" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:157 +#, php-format +msgid "reponses:: %d Resultats" +msgstr "%d résultat(s)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %d reponses" +msgstr "%d Réponse(s)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %s documents selectionnes" +msgstr "%s documents sélectionnés" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:100 msgid "Story created" msgstr "Reportage créé" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:209 msgid "Record removed from story" msgstr "Enregistrement supprimé du reportage" +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:279 +msgid "You can not edit this story" +msgstr "Vous ne disposez pas des droits suffisant pour editer ce reportage" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:298 +msgid "Story updated" +msgstr "Reportage mis à jour" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:40 +msgid "Error while saving preference" +msgstr "Erreur d'enregistrement des préférences" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:53 +msgid "Preference saved !" +msgstr "Preferances sauvegardées" + #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 #, php-format msgid "Unable to create list %s" @@ -8603,130 +8747,100 @@ msgstr "La liste %s a été créée" msgid "Unable to update list" msgstr "Impossible de mettre à jour la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:293 msgid "List has been updated" msgstr "La liste a été mise à jour" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:339 #, php-format msgid "List has been deleted" msgstr "La liste a été supprimée" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:354 #, php-format msgid "Unable to delete list" msgstr "Impossible de supprimer la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:395 msgid "Entry removed from list" msgstr "Entrée supprimée de la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:410 msgid "Unable to remove entry from list " msgstr "Impossible de supprimer l'entrée de la liste " -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:471 #, php-format msgid "%d Users added to list" msgstr "%d utilisateurs ajoutés à la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:479 #, php-format msgid "%d User added to list" msgstr "%d utilisateur(s) ajouté(s) à la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:496 msgid "Unable to add usr to list" msgstr "Impossible d'ajouter un utilisateur à la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:597 msgid "List shared to user" msgstr "Liste partagée avec l'utilisateur" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:612 msgid "Unable to share the list with the usr" msgstr "Impossible de partager la liste avec l'utilisateur" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:650 msgid "Owner removed from list" msgstr "Propriétaire supprimé de la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:664 msgid "Unable to remove usr from list" msgstr "Impossible de supprimer l'utilisateur de la liste" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:177 #, php-format msgid "%d Story attached to the WorkZone" msgstr "%d Reportage attaché à l'espace de travail" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:184 #, php-format msgid "%d Stories attached to the WorkZone" msgstr "%d Reportages attachés à l'espace de travail" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:194 #, php-format msgid "%1$d Story attached to the WorkZone, %2$d already attached" msgstr "%1$d Reportage(s) attaché(s) à l'espace de travail, %2$d déjà attaché(s)" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:202 #, php-format msgid "%1$d Stories attached to the WorkZone, %2$d already attached" msgstr "%1$d Reportages attachés à l'espace de travail, %2$d déjà attaché(s)" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:253 msgid "Story detached from the WorkZone" msgstr "Reportage détaché de l'espace de travail" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:138 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "Il n'est pas recommandé d'installer Phraseanet sans protocole HTTPS" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:187 msgid "Appbox is unreachable" msgstr "L'ApplicationBox est inaccessible" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:199 msgid "Databox is unreachable" msgstr "La Databox est inaccessible" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:351 #, php-format msgid "an error occured : %s" msgstr "L'erreur %s est survenue" -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "Impossible d'écrire dans le dossier %s" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "Impossible d'effacer le fichier %s" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "YYYY/MM/DD HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "YYYY/MM/DD" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "aaaa/mm/jj" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "HH:MM:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "hh:mm:ss" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:570 msgid "Email addess is not valid" msgstr "L'adresse email n'est pas valide" @@ -8758,19 +8872,15 @@ msgstr "Demande de validation reçue de %s et concernant %d autres utilisateurs" msgid "Processus de validation recu de %s" msgstr "Demande de validation reçue de %s" -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 +#: lib/Doctrine/Repositories/BasketElementRepository.php:46 msgid "Element is not found" msgstr "Elément introuvable" -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" -msgstr "Vous n'avez pas accès à cet élément du panier" - -#: lib/Doctrine/Repositories/BasketRepository.php:103 +#: lib/Doctrine/Repositories/BasketRepository.php:171 msgid "Basket is not found" msgstr "Le panier est introuvable" -#: lib/Doctrine/Repositories/BasketRepository.php:108 +#: lib/Doctrine/Repositories/BasketRepository.php:193 msgid "You have not access to this basket" msgstr "Vous n'avez pas accès à ce panier" @@ -8791,3 +8901,93 @@ msgstr "La liste est introuvable" msgid "You have not access to this list" msgstr "Vous n'avez pas accès à cette liste" +#~ msgid "phraseanet::technique::datetime-edit-format" +#~ msgstr "YYYY/MM/DD HH:NN:SS" + +#~ msgid "phraseanet::technique::date-edit-format" +#~ msgstr "YYYY/MM/DD" + +#~ msgid "phraseanet::technique::date-edit-explain" +#~ msgstr "aaaa/mm/jj" + +#~ msgid "phraseanet::technique::time-edit-format" +#~ msgstr "HH:MM:SS" + +#~ msgid "phraseanet::technique::time-edit-explain" +#~ msgstr "hh:mm:ss" + +#~ msgid "Story description" +#~ msgstr "Description du reportage" + +#~ msgid "Or" +#~ msgstr "ou" + +#~ msgid "admin::Le serveur memcached a ete flushe" +#~ msgstr "Le serveur memcached a été flushé" + +#~ msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" +#~ msgstr "Erreur lors de l'envoi au(x) e-mail(s) %s" + +#~ msgid "Impossible d'ecrire dans le fichier %s" +#~ msgstr "Impossible d'écrire dans le fichier %s" + +#~ msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" +#~ msgstr "" +#~ "Le serveur memcached ne répond pas, vous devriez désactiver le cache" + +#~ msgid "GV::section:: Serveurs de cache" +#~ msgstr "Serveurs de cache" + +#~ msgid "reglages:: Utiliser un serveur de cache" +#~ msgstr "Utiliser un serveur de cache" + +#~ msgid "setup:: Hote du Serveur de cache" +#~ msgstr "Hote du serveur de cache" + +#~ msgid "reglages:: port du serveur de cache" +#~ msgstr "Port du serveur de cache" + +#~ msgid "Impossible d'ecrire dans le dossier %s" +#~ msgstr "Impossible d'écrire dans le dossier %s" + +#~ msgid "Impossible d'effacer le fichier %s" +#~ msgstr "Impossible d'effacer le fichier %s" + +#~ msgid "recherche" +#~ msgstr "Recherche" + +#~ msgid "Chercher tous les mots" +#~ msgstr "tous les mots suivants" + +#~ msgid "Cette expression exacte" +#~ msgstr "Cette expression exacte" + +#~ msgid "Au moins un des mots suivants" +#~ msgstr "Au moins un des mots suivants" + +#~ msgid "Aucun des mots suivants" +#~ msgstr "Aucun des mots suivants" + +#~ msgid "recherche :: Bases" +#~ msgstr "Bases" + +#~ msgid "recherche :: Historique" +#~ msgstr "Historique" + +#~ msgid "recherche :: Themes" +#~ msgstr "Thèmes" + +#~ msgid "Expire dans %expiration_date%" +#~ msgstr "Expire dans %expiration_date%" + +#~ msgid "%application_name% wants to acces to your data on %home_title%" +#~ msgstr "%application_name% souhaite accéder à vos données sur %home_title%" + +#~ msgid "phraseanet::technique::datetime" +#~ msgstr "%d %b %Y à %Hh%s" + +#~ msgid "phraseanet::technique::date" +#~ msgstr "%d-%m-%Y" + +#~ msgid "publications:: publication non lue" +#~ msgstr "Non-lue" diff --git a/locale/nb_NO/LC_MESSAGES/phraseanet.mo b/locale/nb_NO/LC_MESSAGES/phraseanet.mo deleted file mode 100644 index 904731b9d3..0000000000 Binary files a/locale/nb_NO/LC_MESSAGES/phraseanet.mo and /dev/null differ diff --git a/locale/nb_NO/LC_MESSAGES/phraseanet.po b/locale/nb_NO/LC_MESSAGES/phraseanet.po deleted file mode 100644 index 409383bb9b..0000000000 --- a/locale/nb_NO/LC_MESSAGES/phraseanet.po +++ /dev/null @@ -1,8815 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-02 17:49+0100\n" -"PO-Revision-Date: 2012-02-02 17:57+0100\n" -"Last-Translator: Romain Neutron \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-02-02 16:20+0000\n" -"X-Generator: Launchpad (build 14738)\n" -"X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" -"X-Poedit-SourceCharset: iso-8859-1\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-KeywordsList: _e;__\n" - -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 -#, fuzzy -msgid "Flushing cache" -msgstr "" - -#: lib/classes/appbox.class.php:323 -msgid "Creating new tables" -msgstr "" - -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 -msgid "Purging directories" -msgstr "" - -#: lib/classes/appbox.class.php:356 -msgid "Copying files" -msgstr "" - -#: lib/classes/appbox.class.php:365 -msgid "Upgrading appbox" -msgstr "" - -#: lib/classes/appbox.class.php:374 -#, php-format -msgid "Upgrading %s" -msgstr "" - -#: lib/classes/appbox.class.php:382 -msgid "Post upgrade" -msgstr "" - -#: lib/classes/appbox.class.php:433 -msgid "Nom de base de donnee incorrect" -msgstr "" - -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "" - -#: lib/classes/appbox.class.php:590 -msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" -msgstr "" - -#: lib/classes/base.class.php:294 -#, php-format -msgid "Updating table %s" -msgstr "" - -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 -#, php-format -msgid "Erreur lors de la tentative ; errreur : %s" -msgstr "" - -#: lib/classes/base.class.php:333 -#, php-format -msgid "Creating table %s" -msgstr "" - -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 -#, php-format -msgid "Applying patches on %s" -msgstr "" - -#: lib/classes/base.class.php:842 -msgid "Looking for patches" -msgstr "" - -#: lib/classes/databox.class.php:1401 -msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" -msgstr "" - -#: lib/classes/databox.class.php:1414 -msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" -msgstr "" - -#: lib/classes/databox.class.php:1419 -msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" -msgstr "" - -#: lib/classes/lazaret.class.php:99 -msgid "tache d'archivage" -msgstr "" - -#: lib/classes/lazaretFile.class.php:36 -msgid "L'element n'existe pas ou plus" -msgstr "" - -#: lib/classes/lazaretFile.class.php:62 -msgid "Impossible dajouter le fichier a la base" -msgstr "" - -#: lib/classes/lazaretFile.class.php:133 -msgid "Impossible de trouver la base" -msgstr "" - -#: lib/classes/login.class.php:48 -#: lib/classes/mail.class.php:70 -msgid "login:: Forgot your password" -msgstr "" - -#: lib/classes/login.class.php:57 -msgid "login:: register" -msgstr "" - -#: lib/classes/login.class.php:69 -msgid "login:: guest Access" -msgstr "" - -#: lib/classes/mail.class.php:11 -msgid "mail:: test d'envoi d'email" -msgstr "" - -#: lib/classes/mail.class.php:13 -#, php-format -msgid "Ce mail est un test d'envoi de mail depuis %s" -msgstr "" - -#: lib/classes/mail.class.php:36 -msgid "task::ftp:Someone has sent some files onto FTP server" -msgstr "" - -#: lib/classes/mail.class.php:45 -msgid "export::vous avez recu des documents" -msgstr "" - -#: lib/classes/mail.class.php:47 -msgid "Vous avez recu des documents, vous pourrez les telecharger a ladresse suivante " -msgstr "" - -#: lib/classes/mail.class.php:52 -#, php-format -msgid "Attention, ce lien lien est valable jusqu'au %s" -msgstr "" - -#: lib/classes/mail.class.php:72 -msgid "login:: Quelqu'un a demande a reinitialiser le mode passe correspondant au login suivant : " -msgstr "" - -#: lib/classes/mail.class.php:73 -msgid "login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien" -msgstr "" - -#: lib/classes/mail.class.php:84 -#: lib/classes/mail.class.php:105 -#, php-format -msgid "login::register:email: Votre compte %s" -msgstr "" - -#: lib/classes/mail.class.php:86 -msgid "login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :" -msgstr "" - -#: lib/classes/mail.class.php:90 -msgid "login::register:email: Vous avez ete accepte sur les collections suivantes : " -msgstr "" - -#: lib/classes/mail.class.php:94 -msgid "login::register:email: Vous avez ete refuse sur les collections suivantes : " -msgstr "" - -#: lib/classes/mail.class.php:108 -msgid "login::register:Votre inscription a ete prise en compte" -msgstr "" - -#: lib/classes/mail.class.php:112 -msgid "login::register: vous avez des a present acces aux collections suivantes : " -msgstr "" - -#: lib/classes/mail.class.php:117 -msgid "login::register: vos demandes concernat les collections suivantes sont sujettes a approbation d'un administrateur" -msgstr "" - -#: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 -msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" -msgstr "" - -#: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 -msgid "login::register: sujet email : confirmation de votre adresse email" -msgstr "" - -#: lib/classes/mail.class.php:136 -msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." -msgstr "" - -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 -msgid "login::register: merci d'avoir confirme votre adresse email" -msgstr "" - -#: lib/classes/mail.class.php:149 -msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " -msgstr "" - -#: lib/classes/mail.class.php:163 -msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " -msgstr "" - -#: lib/classes/mail.class.php:179 -msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." -msgstr "" - -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." -msgstr "" - -#: lib/classes/mail.class.php:211 -msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" -msgstr "" - -#: lib/classes/p4file.class.php:154 -msgid "prod::erreur : impossible de lire les preferences de base" -msgstr "" - -#: lib/classes/p4file.class.php:170 -#, php-format -msgid "Le fichier '%s' existe deja" -msgstr "" - -#: lib/classes/p4file.class.php:176 -#, php-format -msgid "Taille trop petite : %dpx" -msgstr "" - -#: lib/classes/p4file.class.php:206 -#, php-format -msgid "Mauvais mode colorimetrique : %s" -msgstr "" - -#: lib/classes/phrasea.class.php:308 -msgid "admin::monitor: module production" -msgstr "" - -#: lib/classes/phrasea.class.php:309 -msgid "admin::monitor: module client" -msgstr "" - -#: lib/classes/phrasea.class.php:310 -msgid "admin::monitor: module admin" -msgstr "" - -#: lib/classes/phrasea.class.php:311 -msgid "admin::monitor: module report" -msgstr "" - -#: lib/classes/phrasea.class.php:312 -msgid "admin::monitor: module thesaurus" -msgstr "" - -#: lib/classes/phrasea.class.php:313 -msgid "admin::monitor: module comparateur" -msgstr "" - -#: lib/classes/phrasea.class.php:314 -msgid "admin::monitor: module validation" -msgstr "" - -#: lib/classes/phrasea.class.php:315 -msgid "admin::monitor: module upload" -msgstr "" - -#: lib/classes/phraseadate.class.php:95 -msgid "phraseanet::temps:: a l'instant" -msgstr "" - -#: lib/classes/phraseadate.class.php:99 -msgid "phraseanet::temps:: il y a une minute" -msgstr "" - -#: lib/classes/phraseadate.class.php:103 -#, php-format -msgid "phraseanet::temps:: il y a %d minutes" -msgstr "" - -#: lib/classes/phraseadate.class.php:108 -msgid "phraseanet::temps:: il y a une heure" -msgstr "" - -#: lib/classes/phraseadate.class.php:112 -#, php-format -msgid "phraseanet::temps:: il y a %d heures" -msgstr "" - -#: lib/classes/phraseadate.class.php:118 -msgid "phraseanet::temps:: hier" -msgstr "" - -#: lib/classes/queries.class.php:197 -#: lib/classes/queries.class.php:211 -msgid "boutton::chercher" -msgstr "" - -#: lib/classes/queries.class.php:201 -msgid "client::recherche: dans les categories" -msgstr "" - -#: lib/classes/setup.class.php:341 -msgid "mod_auth_token correctement configure" -msgstr "" - -#: lib/classes/setup.class.php:343 -msgid "mod_auth_token mal configure" -msgstr "" - -#: lib/classes/setup.class.php:356 -msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " -msgstr "" - -#: lib/classes/setup.class.php:371 -msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" -msgstr "" - -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 -msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" -msgstr "" - -#: lib/classes/setup.class.php:532 -msgid "setup::Tests d'envois d'emails" -msgstr "" - -#: lib/classes/setup.class.php:536 -msgid "boutton::valider" -msgstr "" - -#: lib/classes/setup.class.php:613 -msgid "setup:: Serveur Memcached" -msgstr "" - -#: lib/classes/setup.class.php:629 -#, php-format -msgid "setup::Serveur actif sur %s" -msgstr "" - -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "" - -#: lib/classes/setup.class.php:645 -#, php-format -msgid "setup::Aucun serveur memcached rattache." -msgstr "" - -#: lib/classes/setup.class.php:682 -#, php-format -msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" -msgstr "" - -#: lib/classes/setup.class.php:713 -msgid "setup::Etat du moteur de recherche" -msgstr "" - -#: lib/classes/setup.class.php:724 -msgid "setup::Sphinx confguration" -msgstr "" - -#: lib/classes/setup.class.php:747 -msgid "test::test" -msgstr "" - -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 -msgid "Cette valeur ne peut être vide" -msgstr "" - -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 -msgid "Url non valide" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:187 -#: lib/classes/Bridge/Api/Youtube.class.php:185 -msgid "Videos" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:196 -#: lib/classes/Bridge/Api/Youtube.class.php:194 -msgid "Playlists" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:539 -#: lib/classes/Bridge/Api/Youtube.class.php:536 -msgid "La video a ete supprimee" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:542 -#: lib/classes/Bridge/Api/Youtube.class.php:539 -msgid "La video a ete rejetee" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:545 -msgid "Erreur d'encodage" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:548 -#: lib/classes/Bridge/Api/Youtube.class.php:546 -msgid "En cours d'encodage" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:554 -#: lib/classes/Bridge/Api/Youtube.class.php:552 -msgid "OK" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:829 -#: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 -#: lib/classes/Bridge/Api/Youtube.class.php:979 -#: lib/classes/Bridge/Api/Youtube.class.php:984 -#: lib/classes/Bridge/Api/Youtube.class.php:1011 -#: lib/classes/Bridge/Api/Youtube.class.php:1016 -msgid "Ce champ est obligatoire" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:834 -#: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 -#: lib/classes/Bridge/Api/Youtube.class.php:989 -#: lib/classes/Bridge/Api/Youtube.class.php:1021 -#, php-format -msgid "Ce champ est trop long %s caracteres max" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:836 -#: lib/classes/Bridge/Api/Dailymotion.class.php:866 -#, php-format -msgid "Ce champ est trop court %s caracteres min" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 -#: lib/classes/Bridge/Api/Youtube.class.php:1088 -msgid "Le record n'a pas de fichier physique" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:935 -#: lib/classes/Bridge/Api/Youtube.class.php:1091 -#, php-format -msgid "La taille maximale d'une video est de %d minutes." -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 -#: lib/classes/Bridge/Api/Youtube.class.php:1094 -#, php-format -msgid "Le poids maximum d'un fichier est de %s" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:154 -msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:529 -#: lib/classes/Bridge/Api/Youtube.class.php:542 -msgid "L'upload a echoue" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:639 -msgid "Photos" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:648 -msgid "Photosets" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:533 -msgid "La video est restreinte" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:582 -msgid "Erreur la requête a été mal formée ou contenait des données valides." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:585 -msgid "Erreur lors de l'authentification au service Youtube, Veuillez vous déconnecter, puis vous reconnecter." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:588 -msgid "Erreur lors de l'envoi de la requête. Erreur d'authentification." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:591 -msgid "Erreur la ressource que vous tentez de modifier n'existe pas." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:594 -msgid "Erreur YouTube a rencontré une erreur lors du traitement de la requête." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:597 -msgid "Erreur vous avez essayé d'exécuter une requête non prise en charge par Youtube" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:600 -msgid "Erreur le service Youtube n'est pas accessible pour le moment. Veuillez réessayer plus tard." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:622 -msgid "A required field is missing or has an empty value" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:625 -msgid "A value has been deprecated and is no longer valid" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:628 -msgid "A value does not match an expected format" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:631 -msgid "A field value contains an invalid character" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:634 -msgid "A value exceeds the maximum allowable length" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:637 -msgid "The Youtube servers have received too many calls from the same caller in a short amount of time." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:640 -msgid "You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:643 -msgid "The authentication token specified in the Authorization header is invalid" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:646 -msgid "The authentication token specified in the Authorization header has expired." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:649 -msgid "Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:658 -msgid "Service youtube introuvable." -msgstr "" - -#: lib/classes/caption/record.class.php:171 -msgid "Open the URL in a new window" -msgstr "" - -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 -#, php-format -msgid "cgus:: CGUs de la base %s" -msgstr "" - -#: lib/classes/databox/cgu.class.php:39 -msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" -msgstr "" - -#: lib/classes/databox/cgu.class.php:40 -msgid "cgus :: accepter" -msgstr "" - -#: lib/classes/databox/cgu.class.php:41 -msgid "cgus :: refuser" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:221 -msgid "login::register: acces authorise sur la collection " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:223 -#: lib/classes/deprecated/inscript.api.php:235 -#: lib/classes/deprecated/inscript.api.php:247 -#: lib/classes/deprecated/inscript.api.php:259 -#: lib/classes/deprecated/inscript.api.php:271 -#: lib/classes/deprecated/inscript.api.php:283 -msgid "login::register::CGU: lire les CGU" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:233 -msgid "login::register: acces refuse sur la collection " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:245 -msgid "login::register: en attente d'acces sur" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:257 -msgid "login::register: acces temporaire sur" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:269 -msgid "login::register: acces temporaire termine sur " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:281 -msgid "login::register: acces supendu sur" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:299 -#: lib/classes/deprecated/inscript.api.php:321 -#: lib/classes/deprecated/inscript.api.php:410 -#: lib/classes/deprecated/inscript.api.php:441 -msgid "login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:310 -#: lib/classes/deprecated/inscript.api.php:332 -#: lib/classes/deprecated/inscript.api.php:425 -#: lib/classes/deprecated/inscript.api.php:453 -msgid "login::register: Faire une demande d'acces" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:353 -msgid "admin::compte-utilisateur actuellement, acces aux bases suivantes : " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:370 -msgid "login::register: Vous avez acces a toutes les collections de toutes les bases" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:374 -msgid "login::register: confirmer la demande" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:410 -#: lib/classes/deprecated/inscript.api.php:442 -msgid "login::register::CGU: ouvrir dans une nouvelle fenetre" -msgstr "" - -#: lib/classes/eventsmanager/broker.class.php:243 -msgid "charger d'avantages de notifications" -msgstr "" - -#: lib/classes/eventsmanager/broker.class.php:382 -msgid "Notifications globales" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:178 -#, php-format -msgid "%1$s s'est enregistre sur une ou plusieurs %2$scollections%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:193 -msgid "AutoRegister information" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:202 -msgid "Recevoir des notifications lorsqu'un utilisateur s'inscrit sur une collection" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:215 -#, php-format -msgid "admin::register: Inscription automatique sur %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:218 -msgid "admin::register: un utilisateur s'est inscrit" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:235 -#: lib/classes/eventsmanager/notify/order.class.php:221 -#: lib/classes/eventsmanager/notify/register.class.php:240 -msgid "admin::compte-utilisateur nom" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:237 -#: lib/classes/eventsmanager/notify/order.class.php:223 -#: lib/classes/eventsmanager/notify/register.class.php:242 -msgid "admin::compte-utilisateur prenom" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:239 -#: lib/classes/eventsmanager/notify/order.class.php:225 -#: lib/classes/eventsmanager/notify/register.class.php:244 -msgid "admin::compte-utilisateur email" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:241 -#: lib/classes/eventsmanager/notify/order.class.php:227 -#: lib/classes/eventsmanager/notify/register.class.php:246 -msgid "admin::compte-utilisateur adresse" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:245 -#: lib/classes/eventsmanager/notify/order.class.php:231 -#: lib/classes/eventsmanager/notify/register.class.php:250 -msgid "admin::compte-utilisateur telephone" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:247 -#: lib/classes/eventsmanager/notify/order.class.php:233 -#: lib/classes/eventsmanager/notify/register.class.php:252 -msgid "admin::compte-utilisateur fax" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:249 -#: lib/classes/eventsmanager/notify/order.class.php:235 -#: lib/classes/eventsmanager/notify/register.class.php:254 -msgid "admin::compte-utilisateur poste" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:250 -#: lib/classes/eventsmanager/notify/order.class.php:236 -#: lib/classes/eventsmanager/notify/register.class.php:255 -msgid "admin::compte-utilisateur societe" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:257 -msgid "admin::register: l'utilisateur s'est inscrit sur les bases suivantes" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:271 -msgid "admin::register: vous pourrez consulter son compte en ligne via l'interface d'administration" -msgstr "" - -#: lib/classes/eventsmanager/notify/bridgeuploadfail.class.php:145 -msgid "Bridge upload fail" -msgstr "" - -#: lib/classes/eventsmanager/notify/bridgeuploadfail.class.php:154 -msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:162 -#, php-format -msgid "%1$s a passe une %2$scommande%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:178 -msgid "Nouvelle commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:187 -msgid "Recevoir des notifications lorsqu'un utilisateur commande des documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:199 -#, php-format -msgid "admin::register: Nouvelle commande sur %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:203 -msgid "admin::register: un utilisateur a commande des documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:243 -msgid "Retrouvez son bon de commande dans l'interface" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:33 -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:29 -msgid "Commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:161 -#, php-format -msgid "%1$s vous a delivre %2$d document(s) pour votre commande %3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:179 -msgid "Reception de commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:188 -msgid "Reception d'une commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:212 -#, php-format -msgid "push::mail:: Reception de votre commande %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:218 -#, php-format -msgid "%s vous a delivre votre commande, consultez la en ligne a l'adresse suivante" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:124 -#, php-format -msgid "%1$s a refuse la livraison de %2$d document(s) pour votre commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:134 -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:139 -msgid "Refus d'elements de commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:144 -#, php-format -msgid "push::mail:: Refus d'elements de votre commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:148 -#, php-format -msgid "%s a refuse %d elements de votre commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:130 -#, php-format -msgid "%1$s vous a envoye un %2$spanier%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:146 -msgid "Push" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:155 -msgid "Recevoir des notifications lorsqu'on me push quelque chose" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:178 -msgid "push::mail:: Reception de documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:181 -msgid "push::Vous pouvez vous connecter a l'adresse suivante afin de retrouver votre panier, voir les previews, les descriptions, le telecharger, etc." -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:191 -#: lib/classes/eventsmanager/notify/validate.class.php:213 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:233 -msgid "push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:178 -#, php-format -msgid "%1$s demande votre approbation sur une ou plusieurs %2$scollections%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:195 -msgid "Register approbation" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:204 -msgid "Recevoir des notifications lorsqu'un utilisateur demande une inscription necessitant mon approbation" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:217 -#, php-format -msgid "admin::register: demande d'inscription sur %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:222 -msgid "admin::register: un utilisateur a fait une demande d'inscription" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:262 -msgid "admin::register: les demandes de l'utilisateur portent sur les bases suivantes" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:278 -msgid "admin::register: vous pourrez traiter ses demandes en ligne via l'interface d'administration" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:33 -#: lib/classes/eventsmanager/notify/validate.class.php:177 -#: lib/classes/eventsmanager/notify/validationdone.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:191 -msgid "Validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:148 -#: lib/classes/eventsmanager/notify/validate.class.php:152 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:164 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:168 -msgid "Une selection" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:162 -#, php-format -msgid "%1$s vous demande de valider %2$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:186 -msgid "Recevoir des notifications lorsqu'on me demande une validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:200 -msgid "push::mail:: Demande de validation de documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:203 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:223 -#, php-format -msgid "Le lien suivant vous propose de valider une selection faite par %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:158 -#, php-format -msgid "%1$s a envoye son rapport de validation de %2$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:176 -msgid "Rapport de Validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:185 -msgid "Reception d'un rapport de validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:210 -#, php-format -msgid "push::mail:: Rapport de validation de %1$s pour %2$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:216 -#, php-format -msgid "%s a rendu son rapport, consulter le en ligne a l'adresse suivante" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:177 -#, php-format -msgid "Rappel : Il vous reste %1$d jours pour valider %2$s de %3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:200 -msgid "Rappel pour une demande de validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:212 -msgid "push::mail:: Rappel de demande de validation de documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:216 -#, php-format -msgid "Il ne vous reste plus que %d jours pour terminer votre validation" -msgstr "" - -#: lib/classes/module/client.class.php:25 -#: lib/classes/module/client.class.php:26 -msgid "paniers:: Quel nom souhaitez vous donner a votre panier ?" -msgstr "" - -#: lib/classes/module/client.class.php:27 -msgid "export:: aucun document n'est disponible au telechargement" -msgstr "" - -#: lib/classes/module/client.class.php:28 -msgid "invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez" -msgstr "" - -#: lib/classes/module/client.class.php:30 -msgid "phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, contactez le support technique" -msgstr "" - -#: lib/classes/module/client.class.php:31 -msgid "phraseanet::erreur: La connection au serveur Phraseanet semble etre indisponible" -msgstr "" - -#: lib/classes/module/client.class.php:32 -msgid "phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" -msgstr "" - -#: lib/classes/module/client.class.php:33 -msgid "paniers::Vous etes sur le point de supprimer ce panier. Cette action est irreversible. Souhaitez-vous continuer ?" -msgstr "" - -#: lib/classes/module/client.class.php:34 -msgid "boutton::annuler" -msgstr "" - -#: lib/classes/module/client.class.php:35 -msgid "boutton::fermer" -msgstr "" - -#: lib/classes/module/client.class.php:36 -msgid "boutton::renouveller" -msgstr "" - -#: lib/classes/module/report.class.php:662 -msgid "report:: utilisateur" -msgstr "" - -#: lib/classes/module/report.class.php:663 -msgid "report:: collections" -msgstr "" - -#: lib/classes/module/report.class.php:664 -msgid "report:: Connexion" -msgstr "" - -#: lib/classes/module/report.class.php:665 -msgid "report:: commentaire" -msgstr "" - -#: lib/classes/module/report.class.php:666 -msgid "report:: question" -msgstr "" - -#: lib/classes/module/report.class.php:667 -#: lib/classes/module/report.class.php:668 -msgid "report:: date" -msgstr "" - -#: lib/classes/module/report.class.php:669 -msgid "report:: fonction" -msgstr "" - -#: lib/classes/module/report.class.php:670 -msgid "report:: activite" -msgstr "" - -#: lib/classes/module/report.class.php:671 -msgid "report:: pays" -msgstr "" - -#: lib/classes/module/report.class.php:672 -msgid "report:: societe" -msgstr "" - -#: lib/classes/module/report.class.php:673 -msgid "report:: nombre" -msgstr "" - -#: lib/classes/module/report.class.php:674 -msgid "report:: pourcentage" -msgstr "" - -#: lib/classes/module/report.class.php:675 -msgid "report:: telechargement" -msgstr "" - -#: lib/classes/module/report.class.php:676 -msgid "report:: record id" -msgstr "" - -#: lib/classes/module/report.class.php:677 -msgid "report:: type d'action" -msgstr "" - -#: lib/classes/module/report.class.php:678 -msgid "report:: sujet" -msgstr "" - -#: lib/classes/module/report.class.php:679 -msgid "report:: fichier" -msgstr "" - -#: lib/classes/module/report.class.php:680 -msgid "report:: type" -msgstr "" - -#: lib/classes/module/report.class.php:681 -msgid "report:: taille" -msgstr "" - -#: lib/classes/module/report.class.php:682 -msgid "report:: copyright" -msgstr "" - -#: lib/classes/module/report.class.php:683 -msgid "phraseanet:: sous definition" -msgstr "" - -#: lib/classes/module/report.class.php:696 -msgid "phraseanet::jours:: lundi" -msgstr "" - -#: lib/classes/module/report.class.php:697 -msgid "phraseanet::jours:: mardi" -msgstr "" - -#: lib/classes/module/report.class.php:698 -msgid "phraseanet::jours:: mercredi" -msgstr "" - -#: lib/classes/module/report.class.php:699 -msgid "phraseanet::jours:: jeudi" -msgstr "" - -#: lib/classes/module/report.class.php:700 -msgid "phraseanet::jours:: vendredi" -msgstr "" - -#: lib/classes/module/report.class.php:701 -msgid "phraseanet::jours:: samedi" -msgstr "" - -#: lib/classes/module/report.class.php:702 -msgid "phraseanet::jours:: dimanche" -msgstr "" - -#: lib/classes/module/report.class.php:712 -msgid "janvier" -msgstr "" - -#: lib/classes/module/report.class.php:713 -msgid "fevrier" -msgstr "" - -#: lib/classes/module/report.class.php:714 -msgid "mars" -msgstr "" - -#: lib/classes/module/report.class.php:715 -msgid "avril" -msgstr "" - -#: lib/classes/module/report.class.php:716 -msgid "mai" -msgstr "" - -#: lib/classes/module/report.class.php:717 -msgid "juin" -msgstr "" - -#: lib/classes/module/report.class.php:718 -msgid "juillet" -msgstr "" - -#: lib/classes/module/report.class.php:719 -msgid "aout" -msgstr "" - -#: lib/classes/module/report.class.php:720 -msgid "septembre" -msgstr "" - -#: lib/classes/module/report.class.php:721 -msgid "octobre" -msgstr "" - -#: lib/classes/module/report.class.php:722 -msgid "novembre" -msgstr "" - -#: lib/classes/module/report.class.php:723 -msgid "decembre" -msgstr "" - -#: lib/classes/module/report.class.php:903 -msgid "report:: non-renseigne" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:52 -msgid "*** CHECK BINARY CONFIGURATION ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:61 -msgid "*** FILESYSTEM CONFIGURATION ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:64 -msgid "*** CHECK CACHE OPCODE ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:67 -msgid "*** CHECK CACHE SERVER ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:70 -msgid "*** CHECK PHP CONFIGURATION ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:73 -msgid "*** CHECK PHP EXTENSIONS ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:76 -msgid "*** CHECK PHRASEA ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:79 -msgid "*** CHECK SYSTEM LOCALES ***" -msgstr "" - -#: lib/classes/module/console/systemUpgrade.class.php:49 -msgid "Create automatically" -msgstr "" - -#: lib/classes/module/console/systemUpgrade.class.php:97 -msgid "Continuer ?" -msgstr "" - -#: lib/classes/module/report/activity.class.php:102 -msgid "report:: activite par heure" -msgstr "" - -#: lib/classes/module/report/activity.class.php:214 -msgid "report:: questions" -msgstr "" - -#: lib/classes/module/report/activity.class.php:235 -msgid "report:: questions sans reponses" -msgstr "" - -#: lib/classes/module/report/activity.class.php:236 -msgid "report:: questions les plus posees" -msgstr "" - -#: lib/classes/module/report/activity.class.php:362 -#, php-format -msgid "report:: Telechargement effectue par l'utilisateur %s" -msgstr "" - -#: lib/classes/module/report/activity.class.php:375 -msgid "report:: telechargements par jour" -msgstr "" - -#: lib/classes/module/report/activity.class.php:531 -msgid "report:: Detail des connexions" -msgstr "" - -#: lib/classes/module/report/activity.class.php:589 -msgid "report:: Detail des telechargements" -msgstr "" - -#: lib/classes/module/report/add.class.php:50 -#: lib/classes/module/report/edit.class.php:50 -#: lib/classes/module/report/push.class.php:50 -msgid "report:: document ajoute" -msgstr "" - -#: lib/classes/module/report/connexion.class.php:47 -msgid "report::Connexions" -msgstr "" - -#: lib/classes/module/report/download.class.php:53 -msgid "report:: telechargements" -msgstr "" - -#: lib/classes/module/report/nav.class.php:129 -msgid "report:: navigateur" -msgstr "" - -#: lib/classes/module/report/nav.class.php:196 -msgid "report:: Plateforme" -msgstr "" - -#: lib/classes/module/report/nav.class.php:258 -msgid "report:: resolution" -msgstr "" - -#: lib/classes/module/report/nav.class.php:321 -msgid "report:: navigateurs et plateforme" -msgstr "" - -#: lib/classes/module/report/nav.class.php:388 -msgid "report:: modules" -msgstr "" - -#: lib/classes/module/report/nav.class.php:492 -#, php-format -msgid "report:: Information sur les utilisateurs correspondant a %s" -msgstr "" - -#: lib/classes/module/report/nav.class.php:552 -msgid "phraseanet::utilisateur inconnu" -msgstr "" - -#: lib/classes/module/report/nav.class.php:556 -#, php-format -msgid "report:: Information sur l'utilisateur %s" -msgstr "" - -#: lib/classes/module/report/nav.class.php:592 -#, php-format -msgid "report:: Information sur l'enregistrement numero %d" -msgstr "" - -#: lib/classes/module/report/nav.class.php:617 -#, php-format -msgid "report:: Information sur le navigateur %s" -msgstr "" - -#: lib/classes/record/adapter.class.php:939 -msgid "reponses::document sans titre" -msgstr "" - -#: lib/classes/record/exportElement.class.php:143 -#: lib/classes/record/exportElement.class.php:149 -msgid "document original" -msgstr "" - -#: lib/classes/record/exportElement.class.php:231 -msgid "caption XML" -msgstr "" - -#: lib/classes/record/exportElement.class.php:236 -msgid "caption YAML" -msgstr "" - -#: lib/classes/record/preview.class.php:123 -msgid "preview:: regroupement " -msgstr "" - -#: lib/classes/record/preview.class.php:287 -#, php-format -msgid "preview:: resultat numero %s " -msgstr "" - -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 -msgid "report::acces direct" -msgstr "" - -#: lib/classes/record/preview.class.php:566 -msgid "report:: page d'accueil" -msgstr "" - -#: lib/classes/record/preview.class.php:568 -msgid "report:: visualiseur cooliris" -msgstr "" - -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 -msgid "report::presentation page preview" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/engine.class.php:188 -#, php-format -msgid "reponses::propositions pour la base %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/engine.class.php:195 -#, php-format -msgid "reponses::propositions pour le terme %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:131 -msgid "qparser::la question est vide" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1121 -#, php-format -msgid "qparser::Formulation incorrecte, un nom de champs est attendu avant l operateur %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1130 -#, php-format -msgid "qparser::Formulation incorrecte, une valeur est attendue apres l operateur %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1650 -msgid "qparser:: erreur : trop de parentheses fermantes" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1771 -#, php-format -msgid "qparser::Formulation incorrecte, une valeur est attendu apres %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1843 -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1868 -#, php-format -msgid "qparser::erreur : une question ne peut commencer par %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1852 -#, php-format -msgid "qparser::Formulation incorrecte, ne peut suivre un operateur : %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1878 -#, php-format -msgid "qparser::Formulation incorrecte, %s ne peut suivre un operateur" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1947 -msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " -msgstr "" - -#: lib/classes/searchEngine/adapter/sphinx/engine.class.php:196 -#: lib/classes/searchEngine/adapter/sphinx/engine.class.php:347 -msgid "Sphinx server is offline" -msgstr "" - -#: lib/classes/set/export.class.php:292 -msgid "export::ftp: reglages manuels" -msgstr "" - -#: lib/classes/set/order.class.php:233 -#, php-format -msgid "Commande du %s" -msgstr "" - -#: lib/classes/task/period/archive.class.php:74 -msgid "task::archive:Archivage" -msgstr "" - -#: lib/classes/task/period/archive.class.php:234 -msgid "task::archive:archivage sur base/collection/" -msgstr "" - -#: lib/classes/task/period/archive.class.php:250 -msgid "task::_common_:hotfolder" -msgstr "" - -#: lib/classes/task/period/archive.class.php:253 -#: lib/classes/task/period/outofdate.class.php:429 -#: lib/classes/task/period/subdef.class.php:228 -#: lib/classes/task/period/workflow01.class.php:335 -#: lib/classes/task/period/writemeta.class.php:197 -msgid "task::_common_:periodicite de la tache" -msgstr "" - -#: lib/classes/task/period/archive.class.php:254 -#: lib/classes/task/period/archive.class.php:257 -#: lib/classes/task/period/subdef.class.php:230 -#: lib/classes/task/period/writemeta.class.php:199 -msgid "task::_common_:secondes (unite temporelle)" -msgstr "" - -#: lib/classes/task/period/archive.class.php:256 -msgid "task::archive:delai de 'repos' avant traitement" -msgstr "" - -#: lib/classes/task/period/archive.class.php:259 -msgid "task::archive:deplacer les fichiers archives dans _archived" -msgstr "" - -#: lib/classes/task/period/archive.class.php:261 -msgid "task::archive:deplacer les fichiers non-archives dans _error" -msgstr "" - -#: lib/classes/task/period/archive.class.php:263 -msgid "task::archive:copier les fichiers '.phrasea.xml' et '.grouping.xml' dans _archived" -msgstr "" - -#: lib/classes/task/period/archive.class.php:265 -msgid "task::archive:supprimer les repertoires apres archivage" -msgstr "" - -#: lib/classes/task/period/archive.class.php:279 -msgid "task::archive:Archiving files found into a 'hotfolder'" -msgstr "" - -#: lib/classes/task/period/archive.class.php:356 -#, php-format -msgid "task::archive:Can't create or go to folder '%s'" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:92 -msgid "task::cindexer:Indexation" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:101 -msgid "task::cindexer:indexing records" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:276 -msgid "task::cindexer:executable" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:279 -msgid "task::cindexer:host" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:281 -msgid "task::cindexer:port" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:283 -msgid "task::cindexer:base" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:285 -msgid "task::cindexer:user" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:287 -msgid "task::cindexer:password" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:291 -msgid "task::cindexer:control socket" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:296 -msgid "task::cindexer:use table 'sbas' (unchecked: use 'xbas')" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:300 -msgid "task::cindexer:MySQL charset" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:304 -msgid "task::cindexer:do not (sys)log, but out to console)" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:307 -msgid "task::cindexer:default language for new candidates" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:314 -msgid "task::cindexer:windows specific" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:315 -msgid "task::cindexer:run as application, not as service" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:370 -#, php-format -msgid "task::cindexer:file '%s' does not exists" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:442 -msgid "task::cindexer:the cindexer clean-quit" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:444 -msgid "task::cindexer:the cindexer has been killed" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:446 -msgid "task::cindexer:the cindexer crashed" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:456 -msgid "task::cindexer:killing the cindexer" -msgstr "" - -#: lib/classes/task/period/emptyColl.class.php:26 -msgid "Vidage de collection" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:26 -msgid "task::ftp:FTP Push" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:362 -#, php-format -msgid "task::ftp:Etat d'envoi FTP vers le serveur \"%1$s\" avec le compte \"%2$s\" et pour destination le dossier : \"%3$s\"" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:374 -#, php-format -msgid "task::ftp:TENTATIVE no %s, %s" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:548 -#, php-format -msgid "task::ftp:File \"%1$s\" (record %2$s) de la base \"%3$s\" (Export du Document) : Transfert cancelled (le document n'existe plus)" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:703 -msgid "task::ftp:Tous les documents ont ete transferes avec succes" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:715 -#: lib/classes/task/period/ftp.class.php:723 -#, php-format -msgid "task::ftp:Record %1$s - %2$s de la base (%3$s - %4$s) - %5$s" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:718 -msgid "Transfert OK" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:726 -msgid "Transfert Annule" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:727 -msgid "task::ftp:Certains documents n'ont pas pu etre tranferes" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:742 -msgid "Des difficultes ont ete rencontres a la connection au serveur distant" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:744 -msgid "La connection vers le serveur distant est OK" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:756 -msgid "task::ftp:Details des fichiers" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:766 -#, php-format -msgid "task::ftp:Status about your FTP transfert from %1$s to %2$s" -msgstr "" - -#: lib/classes/task/period/ftpPull.class.php:34 -msgid "task::ftp:FTP Pull" -msgstr "" - -#: lib/classes/task/period/ftpPull.class.php:180 -msgid "task::ftp:mode passif" -msgstr "" - -#: lib/classes/task/period/ftpPull.class.php:183 -msgid "task::ftp:utiliser SSL" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:26 -msgid "Documents perimes" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:411 -#: lib/classes/task/period/workflow01.class.php:317 -msgid "task::outofdate:Base" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:431 -#: lib/classes/task/period/workflow01.class.php:337 -msgid "task::_common_:minutes (unite temporelle)" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:440 -msgid "task::outofdate:before" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:449 -#: lib/classes/task/period/outofdate.class.php:461 -msgid "admin::taskoutofdate: days " -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:452 -msgid "task::outofdate:between" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:464 -msgid "task::outofdate:after" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:469 -msgid "task::outofdate:coll." -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:483 -msgid "task::outofdate:status" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:519 -#: lib/classes/task/period/workflow01.class.php:380 -msgid "task::outofdate:deplacement de docs suivant valeurs de champs 'date'" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:41 -msgid "task::subdef:creation des sous definitions des documents d'origine" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:52 -msgid "task::subdef:creation des sous definitions" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:232 -#, php-format -msgid "task::_common_:passer tous les %s records a l'etape suivante" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:235 -#: lib/classes/task/period/writemeta.class.php:205 -msgid "task::_common_:relancer la tache tous les" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:237 -#: lib/classes/task/period/writemeta.class.php:207 -msgid "task::_common_:records, ou si la memoire depasse" -msgstr "" - -#: lib/classes/task/period/upgradetov31.class.php:29 -msgid "upgrade to v3.1" -msgstr "" - -#: lib/classes/task/period/upgradetov32.class.php:31 -msgid "upgrade to v3.2" -msgstr "" - -#: lib/classes/task/period/workflow01.class.php:22 -msgid "task::workflow01" -msgstr "" - -#: lib/classes/task/period/writemeta.class.php:25 -msgid "task::writemeta:(re)ecriture des metadatas dans les documents (et subdefs concernees)" -msgstr "" - -#: lib/classes/task/period/writemeta.class.php:38 -msgid "task::writemeta:ecriture des metadatas" -msgstr "" - -#: lib/classes/task/period/writemeta.class.php:202 -msgid "task::writemeta:effacer les metadatas non presentes dans la structure" -msgstr "" - -#: lib/classes/User/Adapter.class.php:413 -#, php-format -msgid "A user already exists with email addres %s" -msgstr "" - -#: lib/classes/User/Adapter.class.php:1356 -#, php-format -msgid "modele %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:61 -msgid "GV::section:: Serveur HTTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:66 -msgid "reglages:: Timezone de l'installation" -msgstr "" - -#: lib/conf.d/_GV_template.php:73 -msgid "reglages:: Nom de linstallation" -msgstr "" - -#: lib/conf.d/_GV_template.php:81 -msgid "reglages:: Langue par defaut" -msgstr "" - -#: lib/conf.d/_GV_template.php:90 -msgid "reglages:: URL statique (optionnel)" -msgstr "" - -#: lib/conf.d/_GV_template.php:96 -msgid "GV::section:: Etat de maintenance" -msgstr "" - -#: lib/conf.d/_GV_template.php:102 -msgid "reglages:: Message a diffuser aux utilisateurs" -msgstr "" - -#: lib/conf.d/_GV_template.php:108 -msgid "reglages:: activation du message a diffuser aux utilistaeurs" -msgstr "" - -#: lib/conf.d/_GV_template.php:114 -msgid "reglages:: logguer les erreurs" -msgstr "" - -#: lib/conf.d/_GV_template.php:119 -msgid "GV::section:: Connectivite aux webservices" -msgstr "" - -#: lib/conf.d/_GV_template.php:124 -msgid "reglages:: Utiliser els google apis" -msgstr "" - -#: lib/conf.d/_GV_template.php:131 -msgid "reglages:: Service phrasea de localisation" -msgstr "" - -#: lib/conf.d/_GV_template.php:139 -msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" -msgstr "" - -#: lib/conf.d/_GV_template.php:145 -msgid "reglages:: ccle d'api pour l'api bit.ly" -msgstr "" - -#: lib/conf.d/_GV_template.php:151 -msgid "reglages:: Utilisation de l'api recpatcha" -msgstr "" - -#: lib/conf.d/_GV_template.php:158 -msgid "reglages:: clef publique recaptcha" -msgstr "" - -#: lib/conf.d/_GV_template.php:164 -msgid "reglages:: clef privee recaptcha" -msgstr "" - -#: lib/conf.d/_GV_template.php:169 -msgid "GV::section:: Connectivite a Youtube" -msgstr "" - -#: lib/conf.d/_GV_template.php:174 -#, php-format -msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" -msgstr "" - -#: lib/conf.d/_GV_template.php:181 -msgid "reglages:: Youtube client id" -msgstr "" - -#: lib/conf.d/_GV_template.php:187 -msgid "reglages:: Youtube clientsecret" -msgstr "" - -#: lib/conf.d/_GV_template.php:193 -#, php-format -msgid "reglages:: Youtube cle developpeur, voir %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:198 -msgid "GV::section:: Connectivite a FlickR" -msgstr "" - -#: lib/conf.d/_GV_template.php:203 -#, php-format -msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:210 -msgid "reglages:: FlickR client id" -msgstr "" - -#: lib/conf.d/_GV_template.php:216 -msgid "reglages:: FlickR client secret" -msgstr "" - -#: lib/conf.d/_GV_template.php:221 -msgid "GV::section:: Connectivite a Dailymotion" -msgstr "" - -#: lib/conf.d/_GV_template.php:226 -#, php-format -msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:233 -msgid "reglages:: dailymotion client id" -msgstr "" - -#: lib/conf.d/_GV_template.php:239 -msgid "reglages:: dailymotion client secret" -msgstr "" - -#: lib/conf.d/_GV_template.php:244 -msgid "GV::section:: Gestionnaire d'evenements" -msgstr "" - -#: lib/conf.d/_GV_template.php:250 -msgid "reglages:: Evenements" -msgstr "" - -#: lib/conf.d/_GV_template.php:258 -msgid "reglages:: Notifications" -msgstr "" - -#: lib/conf.d/_GV_template.php:264 -msgid "GV::section:: Stockage des documents" -msgstr "" - -#: lib/conf.d/_GV_template.php:269 -msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:277 -msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" -msgstr "" - -#: lib/conf.d/_GV_template.php:285 -msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" -msgstr "" - -#: lib/conf.d/_GV_template.php:292 -msgid "reglages:: point de montage des vignettes publiees en acces direct" -msgstr "" - -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:330 -msgid "GV::section:: Serveur Sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:335 -msgid "Utiliser Sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:341 -msgid "reglages:: de l'adresse du serveur sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:347 -msgid "reglages:: port du serveur sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:353 -msgid "reglages:: de l'adresse du serveur RT sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:359 -msgid "reglages:: port du serveur RT sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:364 -msgid "GV::section:: Executables externes" -msgstr "" - -#: lib/conf.d/_GV_template.php:369 -msgid "reglages:: mod_xsendfileapache active" -msgstr "" - -#: lib/conf.d/_GV_template.php:375 -msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" -msgstr "" - -#: lib/conf.d/_GV_template.php:382 -msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" -msgstr "" - -#: lib/conf.d/_GV_template.php:389 -msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" -msgstr "" - -#: lib/conf.d/_GV_template.php:396 -msgid "reglages:: point de montage du dossier protege via auth_token" -msgstr "" - -#: lib/conf.d/_GV_template.php:403 -msgid "reglages:: path complet du dossier protege via auth_token" -msgstr "" - -#: lib/conf.d/_GV_template.php:409 -msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" -msgstr "" - -#: lib/conf.d/_GV_template.php:415 -msgid "reglages:: executable PHP CLI" -msgstr "" - -#: lib/conf.d/_GV_template.php:422 -msgid "reglages:: path du php.ini specifique (vide si non utilise)" -msgstr "" - -#: lib/conf.d/_GV_template.php:429 -msgid "reglages:: chemin de l'executable convert" -msgstr "" - -#: lib/conf.d/_GV_template.php:436 -msgid "reglages:: chemin de l'executable composite" -msgstr "" - -#: lib/conf.d/_GV_template.php:443 -msgid "reglages:: chemin de l'executable exiftools" -msgstr "" - -#: lib/conf.d/_GV_template.php:449 -msgid "reglages:: chemin de l'executable swfextract" -msgstr "" - -#: lib/conf.d/_GV_template.php:456 -msgid "reglages:: chemin de l'executable pdf2swf" -msgstr "" - -#: lib/conf.d/_GV_template.php:463 -msgid "reglages:: chemin de l'executable swfrender" -msgstr "" - -#: lib/conf.d/_GV_template.php:470 -msgid "reglages:: chemin de l'executable unoconv" -msgstr "" - -#: lib/conf.d/_GV_template.php:477 -msgid "reglages:: chemin de l'executable FFmpeg" -msgstr "" - -#: lib/conf.d/_GV_template.php:483 -msgid "reglages:: chemin de l'executable MP4Box" -msgstr "" - -#: lib/conf.d/_GV_template.php:489 -msgid "reglages:: chemin de l'executable Mplayer" -msgstr "" - -#: lib/conf.d/_GV_template.php:495 -msgid "reglages:: chemin de l'executable pdftotext (xpdf)" -msgstr "" - -#: lib/conf.d/_GV_template.php:501 -msgid "reglages:: nombre maximum de page a extraire (PDF)" -msgstr "" - -#: lib/conf.d/_GV_template.php:506 -msgid "GV::section:: Repertoires utilitaires" -msgstr "" - -#: lib/conf.d/_GV_template.php:511 -msgid "reglages:: proprietaire des fichiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:517 -msgid "reglages:: groupes des fichiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:522 -msgid "GV::section:: Configuration principale" -msgstr "" - -#: lib/conf.d/_GV_template.php:534 -msgid "reglages:: email de l'administrateur" -msgstr "" - -#: lib/conf.d/_GV_template.php:540 -msgid "reglages:: Afficher le nom des bases et des collections" -msgstr "" - -#: lib/conf.d/_GV_template.php:547 -msgid "reglages:: activer le choix du nom de fichier a l'export" -msgstr "" - -#: lib/conf.d/_GV_template.php:554 -msgid "reglages:: choix par defaut des noms de fichier a l'export" -msgstr "" - -#: lib/conf.d/_GV_template.php:568 -msgid "reglages:: Active les partages Facebook et Twitter" -msgstr "" - -#: lib/conf.d/_GV_template.php:575 -msgid "GV::section:: Page d'accueil" -msgstr "" - -#: lib/conf.d/_GV_template.php:588 -msgid "reglages:: presentation sur la home" -msgstr "" - -#: lib/conf.d/_GV_template.php:595 -msgid "GV::section:: Moteur de recherche" -msgstr "" - -#: lib/conf.d/_GV_template.php:601 -msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" -msgstr "" - -#: lib/conf.d/_GV_template.php:607 -msgid "reglages:: Question par defaut" -msgstr "" - -#: lib/conf.d/_GV_template.php:613 -msgid "reglages:: type de document cherches par defaut e l'ouverture du site" -msgstr "" - -#: lib/conf.d/_GV_template.php:619 -msgid "GV::section:: Report" -msgstr "" - -#: lib/conf.d/_GV_template.php:625 -msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" -msgstr "" - -#: lib/conf.d/_GV_template.php:631 -msgid "GV::section:: Modules supplementaires" -msgstr "" - -#: lib/conf.d/_GV_template.php:637 -msgid "reglages:: Activation de l'outil thesaurus" -msgstr "" - -#: lib/conf.d/_GV_template.php:642 -msgid "reglages:: Activation du Mode MultiDOC" -msgstr "" - -#: lib/conf.d/_GV_template.php:647 -msgid "reglages:: Substitution de HD d'un record " -msgstr "" - -#: lib/conf.d/_GV_template.php:652 -msgid "reglages:: Substitution de thumbnail d'un record" -msgstr "" - -#: lib/conf.d/_GV_template.php:736 -msgid "GV::section:: Envois de mails" -msgstr "" - -#: lib/conf.d/_GV_template.php:747 -msgid "reglages:: Expediteur mail par defaut" -msgstr "" - -#: lib/conf.d/_GV_template.php:753 -msgid "reglages:: Utilisation d'un serveur SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:759 -msgid "reglages:: Activation de l'authentification smtp" -msgstr "" - -#: lib/conf.d/_GV_template.php:765 -msgid "reglages:: Hote SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:771 -msgid "reglages:: Port SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:777 -msgid "reglages:: Utiliser une conenction SSL" -msgstr "" - -#: lib/conf.d/_GV_template.php:783 -msgid "reglages:: User SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:789 -msgid "reglages:: Mot de passe SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:794 -msgid "GV::section:: Exports FTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:799 -msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" -msgstr "" - -#: lib/conf.d/_GV_template.php:805 -msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" -msgstr "" - -#: lib/conf.d/_GV_template.php:810 -msgid "GV::section:: Configuration du client" -msgstr "" - -#: lib/conf.d/_GV_template.php:822 -msgid "reglages:: position de l'onglet de recherche" -msgstr "" - -#: lib/conf.d/_GV_template.php:828 -msgid "reglages:: position de l'onglet de recherche avancee" -msgstr "" - -#: lib/conf.d/_GV_template.php:834 -msgid "reglages:: position de l'onglet des topics" -msgstr "" - -#: lib/conf.d/_GV_template.php:840 -msgid "reglages:: numero de l'onglet actif" -msgstr "" - -#: lib/conf.d/_GV_template.php:846 -msgid "reglages:: rendu des topics" -msgstr "" - -#: lib/conf.d/_GV_template.php:859 -msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" -msgstr "" - -#: lib/conf.d/_GV_template.php:865 -msgid "reglages:: Voir le rollover sur les elements du chutier" -msgstr "" - -#: lib/conf.d/_GV_template.php:871 -msgid "reglages:: Presentation des collections" -msgstr "" - -#: lib/conf.d/_GV_template.php:878 -msgid "reglages:: Voir taille HD total des doc d'un chutiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:884 -msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" -msgstr "" - -#: lib/conf.d/_GV_template.php:890 -msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" -msgstr "" - -#: lib/conf.d/_GV_template.php:895 -msgid "GV::section:: Parametrage de l'inscription" -msgstr "" - -#: lib/conf.d/_GV_template.php:900 -msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" -msgstr "" - -#: lib/conf.d/_GV_template.php:906 -msgid "reglages:: Activation de l'autoinscription" -msgstr "" - -#: lib/conf.d/_GV_template.php:911 -msgid "GV::section:: Configuration du push" -msgstr "" - -#: lib/conf.d/_GV_template.php:916 -msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" -msgstr "" - -#: lib/conf.d/_GV_template.php:928 -msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" -msgstr "" - -#: lib/conf.d/_GV_template.php:933 -msgid "GV::section:: Indexation par les robots" -msgstr "" - -#: lib/conf.d/_GV_template.php:938 -msgid "reglages :: Titre de l'installation" -msgstr "" - -#: lib/conf.d/_GV_template.php:944 -msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" -msgstr "" - -#: lib/conf.d/_GV_template.php:950 -msgid "reglages :: Description de l'installation" -msgstr "" - -#: lib/conf.d/_GV_template.php:956 -msgid "reglages:: identifiant google analytics" -msgstr "" - -#: lib/conf.d/_GV_template.php:962 -msgid "Allow the website to be indexed by search engines like Google" -msgstr "" - -#: lib/conf.d/_GV_template.php:968 -msgid "reglages:: Afficher le bandeau Google Chrome Frame" -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 -msgid "Erreur lors de l'enregistrement des donnees" -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 -msgid "Erreur lors de la mise a jour des donnes " -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:458 -msgid "Do you want to send your report ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 -msgid "Envoie avec succes" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Publications.php:92 -msgid "You are not the owner of this feed, you can not edit it" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:368 -msgid "admin::compte-utilisateur ville" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:369 -msgid "admin::compte-utilisateur code postal" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:370 -msgid "admin::compte-utilisateur pays" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:375 -msgid "admin::compte-utilisateur activite" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:104 -msgid "Basket created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:138 -msgid "Basket has been deleted" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:180 -msgid "Record removed from basket" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:217 -msgid "Basket has been updated" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 -msgid "Basket has been archived" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 -msgid "Basket has been unarchived" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:175 -#, php-format -msgid "%d records added" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 -#, php-format -msgid "%d records moved" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:237 -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:308 -msgid "Vous ne pouvez pas editer plusieurs elements simultanement" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:262 -msgid "Vous essayez de faire une action que je ne connais pas !" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:328 -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:468 -msgid "Request contains invalid datas" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:488 -#, php-format -msgid "%d elements en attente" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:64 -msgid "Vocabulary not found" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:82 -msgid "An error occured" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:164 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:207 -msgid "Feed entry not found" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:196 -msgid "Action Forbidden : You are not the publisher" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:292 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:316 -msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:293 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:317 -msgid "publications::Ne le partagez pas, il est strictement confidentiel" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:295 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:319 -msgid "publications::votre rss personnel" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 -msgid "prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "phraseanet::Ne plus afficher ce message" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:48 -msgid "Supprimer egalement les documents rattaches a ces regroupements" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 -msgid "reponses:: Ces enregistrements vont etre definitivement supprimes et ne pourront etre recuperes. Etes vous sur ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:51 -msgid "boutton::supprimer" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:52 -msgid "prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:53 -msgid "prod::editing::annulation: abandonner les modification ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:54 -msgid "phraseanet::chargement" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:57 -msgid "boutton::rechercher" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:59 -msgid "Vous n'avez pas les droits pour supprimer certains documents" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:60 -msgid "Vous n'avez pas les droits pour supprimer ces documents" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:61 -msgid "Vous devez donner un titre" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:62 -msgid "Nouveau modele" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:64 -msgid "Vous n'avez pas rempli tous les champ requis" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:65 -msgid "Vous n'avez pas selectionne de fil de publication" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:66 -msgid "panier::Supression d'un element d'un reportage" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:67 -msgid "panier::Attention, vous etes sur le point de supprimer un element du reportage. Merci de confirmer votre action." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:68 -msgid "phraseanet::recherche avancee" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:69 -msgid "panier:: renommer le panier" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:70 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:79 -msgid "panier:: Un reportage ne peux recevoir que des elements provenants de la base ou il est enregistre" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:71 -msgid "phraseanet:: Erreur" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:72 -msgid "cgus :: Attention, si vous refuser les CGUs de cette base, vous n'y aures plus acces" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:73 -msgid "cgus :: Vous devez vous reauthentifier pour que vos parametres soient pris en compte." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:74 -#, php-format -msgid "edit:: Supprimer %s du champ dans les records selectionnes" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:75 -#, php-format -msgid "edit:: Ajouter %s au champ courrant pour les records selectionnes" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:76 -#, php-format -msgid "edit:: Supprimer %s du champ courrant" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:77 -#, php-format -msgid "edit:: Ajouter %s au champ courrant" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:78 -msgid "panier:: vous ne pouvez pas supprimer un panier public" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:80 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 -msgid "Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 -msgid "Les parametres sont corrects, le serveur distant est operationnel" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:84 -msgid "Certaines publications n'ont pu etre effectuees, verifiez vos parametres" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 -msgid "Aucune publication effectuee, verifiez vos parametres" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 -msgid "Attention, en supprimant ce preregalge, vous ne pourrez plus modifier ou supprimer de publications prealablement effectues avec celui-ci" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 -msgid "edit::certains documents possedent des champs requis non remplis. Merci de les remplir pour valider votre editing" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 -msgid "Aucun document selectionne" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 -msgid "Are you sure you want to delete this list ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 -msgid "New list name ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 -msgid "List name can not be empty" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 -msgid "Name" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 -msgid "Message" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 -msgid "No users selected" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 -msgid "Unable to send the documents" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 -#, php-format -msgid "Push from %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 -msgid "No receivers specified" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 -msgid "No elements to push" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 -#, php-format -msgid "Unknown user %d" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 -#, php-format -msgid "%1$d records have been sent to %2$d users" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 -#, php-format -msgid "Validation from %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 -msgid "No participants specified" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 -msgid "No elements to validate" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 -#, php-format -msgid "Missing mandatory participant parameter %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 -#, php-format -msgid "%1$d records have been sent for validation to %2$d users" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 -msgid "First name is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 -msgid "Last name is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 -msgid "Email is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 -msgid "Email is invalid" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 -msgid "User already exists" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 -msgid "User successfully created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 -msgid "Error while creating user" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 -msgid "Story created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 -msgid "Record removed from story" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 -#, php-format -msgid "Unable to create list %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:152 -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:272 -msgid "List name is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:173 -#, php-format -msgid "List %s has been created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:263 -msgid "Unable to update list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 -msgid "List has been updated" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 -#, php-format -msgid "List has been deleted" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 -#, php-format -msgid "Unable to delete list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 -msgid "Entry removed from list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 -msgid "Unable to remove entry from list " -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 -#, php-format -msgid "%d Users added to list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 -#, php-format -msgid "%d User added to list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 -msgid "Unable to add usr to list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 -msgid "List shared to user" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 -msgid "Unable to share the list with the usr" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 -msgid "Owner removed from list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 -msgid "Unable to remove usr from list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 -#, php-format -msgid "%d Story attached to the WorkZone" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 -#, php-format -msgid "%d Stories attached to the WorkZone" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 -#, php-format -msgid "%1$d Story attached to the WorkZone, %2$d already attached" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 -#, php-format -msgid "%1$d Stories attached to the WorkZone, %2$d already attached" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 -msgid "Story detached from the WorkZone" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 -msgid "It is not recommended to install Phraseanet without HTTPS support" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 -msgid "Appbox is unreachable" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 -msgid "Databox is unreachable" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 -#, php-format -msgid "an error occured : %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:419 -msgid "phraseanet::technique::datetime-edit-explain" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 -msgid "Email addess is not valid" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/User/Manage.php:165 -msgid "Invalid mail address" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/User/Manage.php:197 -msgid "Invalid template name" -msgstr "" - -#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:40 -msgid "Users" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:356 -#, php-format -msgid "Vous aviez envoye cette demande a %d utilisateurs" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:363 -#, php-format -msgid "Vous avez envoye cette demande a %d utilisateurs" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:373 -#, php-format -msgid "Processus de validation recu de %s et concernant %d utilisateurs" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:380 -#, php-format -msgid "Processus de validation recu de %s" -msgstr "" - -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 -msgid "Element is not found" -msgstr "" - -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" -msgstr "" - -#: lib/Doctrine/Repositories/BasketRepository.php:103 -msgid "Basket is not found" -msgstr "" - -#: lib/Doctrine/Repositories/BasketRepository.php:108 -msgid "You have not access to this basket" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListOwnerRepository.php:30 -#: lib/Doctrine/Repositories/UsrListOwnerRepository.php:67 -msgid "Owner is not found" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListOwnerRepository.php:35 -msgid "Owner and list mismatch" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListRepository.php:51 -msgid "List is not found" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListRepository.php:56 -msgid "You have not access to this list" -msgstr "" - -#: tmp/cache_twig/02/d3/4b60220e73710eb8b684b06b6e7e.php:20 -#, php-format -msgid "%bridge_name% est momentanement indisponible a cause d'un trop grand nombre de requetes" -msgstr "" - -#: tmp/cache_twig/02/d3/4b60220e73710eb8b684b06b6e7e.php:25 -msgid "le service sera de nouveau disponible dans quelques minutes" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:28 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:128 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:233 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:360 -msgid "report:: 3 - Type de report" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:35 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:374 -msgid "report:: toutes les questions" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:42 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:381 -msgid "report:: Les questions les plus posees" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:56 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:395 -msgid "report:: activite du site" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:62 -msgid "report :: configurer le tableau" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:71 -msgid "report :: imprimer le tableau" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:171 -msgid "report :: filtrer" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:184 -msgid "report :: grouper" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:350 -msgid "report :: aucun resultat trouve" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:61 -msgid "publication : titre" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:69 -msgid "publication : sous titre" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:77 -msgid "publication : autheur" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:85 -msgid "publication : email autheur" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:97 -msgid "Fils disponibles" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:170 -msgid "boutton::mettre a jour" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:58 -msgid "report:: Du (date)" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:68 -msgid "report:: Au (date)" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:138 -msgid "report:: (connexions) Par utilisateurs" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:148 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:243 -msgid "report:: Grouper par" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:176 -msgid "report:: (connexions) Globales" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:183 -msgid "report:: (connexions) OS et navigateurs" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:271 -msgid "report:: par utilisateurs" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:281 -msgid "report:: (telechargement) Global" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:288 -msgid "report:: (telechargement) Par jours base par base" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:295 -msgid "report:: (telechargement) Par documents sur la base" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:300 -msgid "report::aucune precision" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:304 -msgid "report::la description contient" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:308 -msgid "report:: recordid" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:402 -msgid "report:: document" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:407 -msgid "report:: pushe" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:411 -msgid "report:: ajoute" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:415 -msgid "report:: edite" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:419 -msgid "report:: valide" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:37 -msgid "admin::monitor: Ancienne version (client)" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:54 -msgid "admin::monitor: Nouvelle version (prod)" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:65 -msgid "admin::monitor: production" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:198 -msgid "Publications" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:216 -msgid "Commandes" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:243 -msgid "Notifications" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:285 -msgid "Guest" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:292 -msgid "login:: Mon compte" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:313 -msgid "phraseanet:: aide" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:331 -msgid "phraseanet:: raccourcis clavier" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:345 -msgid "phraseanet:: a propos" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:365 -msgid "phraseanet:: deconnection" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:39 -msgid "login:: connexion" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:44 -msgid "login::Remember me" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:58 -msgid "login::erreur: Les cookies sont desactives sur votre navigateur" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:68 -msgid "Vous etes maintenant deconnecte. A bientot." -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:82 -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:244 -msgid "admin::compte-utilisateur identifiant" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:97 -msgid "admin::compte-utilisateur mot de passe" -msgstr "" - -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 -msgid "report::Heures" -msgstr "" - -#: tmp/cache_twig/08/e5/569508e98c2f771fa6e0b16da773.php:184 -msgid "preview:: demarrer le diaporama" -msgstr "" - -#: tmp/cache_twig/08/e5/569508e98c2f771fa6e0b16da773.php:188 -msgid "preview:: arreter le diaporama" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:55 -msgid "Par %author%" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:69 -msgid "boutton::editer" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:109 -msgid "Derniere mise a jour le %updated_on%" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:127 -msgid "dans %feed_name%" -msgstr "" - -#: tmp/cache_twig/09/36/bf77d681b54db86a8445f384ca88.php:22 -msgid "Ce champ est decrit comme l'element DublinCore %element_name%" -msgstr "" - -#: tmp/cache_twig/09/36/bf77d681b54db86a8445f384ca88.php:28 -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:79 -msgid "Description" -msgstr "" - -#: tmp/cache_twig/09/36/bf77d681b54db86a8445f384ca88.php:39 -msgid "Pour davantage d'informations, consulter le lien suivant %lien%" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:54 -msgid "admin::user: nouvel utilisateur" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:62 -msgid "admin::user: nouveau template" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:71 -msgid "admin::user: import d'utilisateurs" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:79 -msgid "admin::user: export d'utilisateurs" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:88 -msgid "Reglages:: reglages d acces guest" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:101 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:114 -msgid "Filter" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:123 -msgid "Push::filter on login" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:131 -msgid "Push::filter on name" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:139 -msgid "Push::filter on countries" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:147 -msgid "Push::filter on companies" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:155 -msgid "Push::filter on emails" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:163 -msgid "Push::filter on templates" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:169 -msgid "Push::filter starts" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:184 -msgid "Apply a template" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:189 -msgid "boutton::choisir" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:211 -msgid "boutton::appliquer" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:227 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:264 -msgid "admin::compte-utilisateur nom/prenom" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:344 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:364 -msgid "admin::compte-utilisateur date de creation" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:412 -msgid "This is a template" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:421 -msgid "This user has no rights" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:622 -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:633 -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:644 -msgid "%n_par_page% par page" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:649 -msgid "boutton::modifier" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:653 -msgid "Supprimer" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:788 -msgid "boutton::exporter" -msgstr "" - -#: tmp/cache_twig/09/9c/a07ffdb3e121de2fbb9434c90319.php:21 -#: tmp/cache_twig/09/9c/a07ffdb3e121de2fbb9434c90319.php:27 -msgid "%nb_view% vue" -msgid_plural "%nb_view% vues" -msgstr[0] "" -msgstr[1] "" - -#: tmp/cache_twig/09/9c/a07ffdb3e121de2fbb9434c90319.php:43 -msgid "%nb_rating% like" -msgid_plural "%nb_rating% likes" -msgstr[0] "" -msgstr[1] "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:114 -#, php-format -msgid "prod::thesaurusTab:dlg:Remplacement du candidat \"%s\" :" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:119 -#, php-format -msgid "prod::thesaurusTab:dlg:Remplacer par \"%s\"" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:238 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:278 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:360 -msgid "prod::thesaurusTab:dlg:Suppression en cours." -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:412 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:420 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:497 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:504 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:523 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:531 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:552 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:560 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 -msgid "prod::thesaurusTab:tree:loading" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 -msgid "boutton::ok" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 -msgid "prod::thesaurusTab:dlg:OK" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 -msgid "prod::thesaurusTab:dlg:Annuler" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." -msgstr "" - -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:45 -msgid "Creer une playlist" -msgstr "" - -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:65 -msgid "Titre" -msgstr "" - -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:98 -msgid "boutton::retour" -msgstr "" - -#: tmp/cache_twig/0f/69/23ed49ce0f224c50894acf8864e6.php:32 -msgid "prod::collection::Changer de collection" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:29 -msgid "phraseanet::noscript" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:42 -msgid "phraseanet::browser not compliant" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:44 -msgid "phraseanet::recommend browser" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:121 -msgid "Phraseanet recommande l'utilisation de Google Chrome Frame pour Internet Explorer" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:125 -msgid "C'est gratuit et s'installe en quelques secondes. Pour Internet Explorer 6, 7, et 8 sur Windows 7 / Vista / XP SP2." -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:130 -msgid "Ne plus afficher ce message" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:213 -msgid "login:: CGUs" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:219 -msgid "login:: accueil" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:287 -msgid "phraseanet:: language" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:47 -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:243 -msgid "Upload" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:64 -msgid "Vous n'avez selectionne aucun element" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:68 -msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:71 -msgid "Le bridge Dailymotion ne prend en charge que les videos" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:75 -msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:110 -msgid "255 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:142 -msgid "1000 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:169 -msgid "Tags" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:175 -msgid "250 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:179 -msgid "10 tags maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:183 -msgid "Séparez les tags par un espace: Paris vacances restaurant" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:187 -msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:214 -msgid "Confidentialite" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:221 -msgid "prive" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:231 -msgid "public" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:255 -msgid "Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:23 -msgid "Type texte" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:29 -msgid "Type nombre" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:35 -msgid "Type date" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:45 -msgid "Source" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:60 -msgid "Ce champ n'est pas indexe" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:71 -msgid "Ce champ est multivalue" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:82 -msgid "Ce champ est en lecture seule" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:93 -msgid "Ce champ est relie a une branche de thesaurus" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:104 -msgid "Ce champ est utilise en titre a l'affichage" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:115 -msgid "Ce champ est requis" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:133 -msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" -msgstr "" - -#: tmp/cache_twig/11/aa/df7d3dec7ba48bb3387d5fb39cdf.php:28 -msgid "report:: 2 - Bases" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 -msgid "Ajouter une publication" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:58 -msgid "Feed name" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:68 -msgid "Short description" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:72 -msgid "Sous-titre" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:79 -msgid "Non-Restreinte (publique)" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:117 -msgid "Etendue de la publication" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:124 -msgid "Publique" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:145 -msgid "Date Creation" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:149 -msgid "Restriction" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:153 -msgid "Public" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:231 -msgid "This feed is public" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:278 -msgid "Une fois la publication supprimee, les donnees publiees seront definitivement perdues. Continuer ?" -msgstr "" - -#: tmp/cache_twig/12/dc/9a7289760e7d2e66ba64584108ab.php:14 -#: tmp/cache_twig/12/dc/9a7289760e7d2e66ba64584108ab.php:19 -msgid "validation::envoyer mon rapport" -msgstr "" - -#: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 -msgid "notice" -msgstr "" - -#: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:208 -msgid "boutton::telecharger tous les documents" -msgstr "" - -#: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:236 -msgid "action : exporter" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 -msgid "First Name" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:31 -msgid "Last Name" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:42 -msgid "Email Name" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:53 -msgid "Job" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -msgid "Company" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:75 -msgid "City" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 -msgid "Add" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:23 -msgid "boutton::precedent" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:29 -msgid "boutton::demarrer" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:35 -msgid "boutton::pause" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:41 -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:47 -msgid "boutton::suivant" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:53 -msgid "boutton::telecharger" -msgstr "" - -#: tmp/cache_twig/23/31/8a648fe343aa7bb7465a372fadc5.php:136 -msgid "En attente" -msgstr "" - -#: tmp/cache_twig/23/31/8a648fe343aa7bb7465a372fadc5.php:142 -msgid "En cours d'envoi" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 -msgid "List Name" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 -msgid "Set sharing permission" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 -msgid "Activite" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 -msgid "Template" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 -msgid "Country" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 -msgid "Position" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 -msgid "%length% peoples" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 -msgid "VALIDATION" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:25 -msgid "lightbox::recaptitulatif" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 -msgid "validation:: OUI" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 -msgid "validation:: NON" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:12 -msgid "Limite temporelle" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:19 -msgid "Base %base%" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:27 -msgid "Collection %collection%" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:50 -msgid "Activer" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:58 -msgid "De" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:73 -msgid "A" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:78 -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:120 -msgid "a propos" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:86 -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:154 -msgid "Validations" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:96 -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:222 -msgid "Paniers" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:107 -msgid "Deconnexion" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:150 -msgid "Back" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:161 -msgid "Voici vos validations en cours" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:229 -msgid "Voici vos paniers" -msgstr "" - -#: tmp/cache_twig/32/33/2ee0e588889368ab1cd565fd8dd4.php:41 -msgid "report:: Dashboard" -msgstr "" - -#: tmp/cache_twig/33/05/9aa52374260c3b9d7c4b6e16c4b4.php:54 -msgid "Vous devez remplir les champs requis" -msgstr "" - -#: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:55 -msgid "action : ajouter au panier" -msgstr "" - -#: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1295 -msgid "action : print" -msgstr "" - -#: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:110 -msgid "reponses:: partager" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:77 -msgid "Erreur lors du contact avec le serveur WEB" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:81 -msgid "Delai depasse lors du contact avec le serveur WEB" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:85 -msgid "Required" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:89 -msgid "forms::merci d'entrer une adresse e-mail valide" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:93 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:97 -msgid "forms::ce champ est requis" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:101 -msgid "forms::les mots de passe ne correspondent pas" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:105 -msgid "Vous devez specifier une adresse email et un mot de passe valides" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:109 -msgid "Le nom de base de donnee est incorrect" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:113 -msgid "Il y a des erreurs, merci de les corriger avant de continuer" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:120 -msgid "forms::le mot de passe est trop similaire a l'identifiant" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:124 -msgid "forms::la valeur donnee est trop courte" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:128 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:132 -msgid "forms::le mot de passe est trop simple" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:136 -msgid "forms::le mot de passe est bon" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:140 -msgid "forms::le mot de passe est tres bon" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:186 -msgid "Veuillez corriger les erreurs avant de poursuivre" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:333 -msgid "Successfull connection" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:339 -msgid "Warning, this database is not empty" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:352 -msgid "Connection is OK but database does not exists or can not be accessed" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:359 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:371 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:379 -msgid "Unable to connect to MySQL server" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 -msgid "Bonjour, vous etes sur le point d'installer Phraseanet." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 -msgid "Consultez en ligne les pré-requis et la configuration du serveur web" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 -msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 -msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 -msgid "Executables externes" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 -msgid "Required field" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 -msgid "Phraseanet may require many binaries." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 -msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 -msgid "Don't worry, You can modify your configuration later" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 -msgid "Creation de votre compte" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 -msgid "Votre adresse email" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 -msgid "Votre mot de passe" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 -msgid "Confirmation de votre mot de passe" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 -msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 -msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 -msgid "admin::compte-utilisateur::securite caracteres speciaux" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 -msgid "admin::compte-utilisateur::securite caracteres majuscules" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 -msgid "admin::compte-utilisateur::securite caracteres minuscules" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 -msgid "admin::compte-utilisateur::securite caracteres numeriques" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 -msgid "Your email will be used to log in the application." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 -msgid "Please be sure it is still valid and you can access it" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 -msgid "setup::Configuration de la base de compte ApplicationBox" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 -msgid "MySQL database connection parameters" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 -msgid "phraseanet:: adresse" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 -msgid "Database user" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 -msgid "phraseanet:: port" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 -msgid "Database" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 -msgid "boutton::tester" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 -msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 -msgid "ApplicationBox is a Mysql database." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 -msgid "It stores users datas, rights, and references to DataBoxes where records are stored." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 -msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 -msgid "setup::Configuration des repertoires de stockage" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 -msgid "Repertoire de stockage des fichiers" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 -msgid "Repertoire de stockage des imagettes" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 -msgid "Point de montage des imagettes (voir aide ci dessous)" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 -msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 -msgid "Exemple Apache" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 -msgid "Exemple Nginx" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 -msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 -msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 -msgid "If you plan to store large files, be sure it will fit in these directories." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 -msgid "setup::Configuration de la base de stockage DataBox" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 -msgid "Ne pas creer de DataBox maintenant" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 -msgid "Modele de donnees" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 -msgid "Creation des taches" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 -msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 -msgid "Creer la tache d'ecriture des metadonnees" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 -msgid "Creer la tache de creation des sous-definitions" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 -msgid "Creer la tache d'indexation" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 -msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 -msgid "Databoxes store records, metadatas and their classifications" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 -msgid "button::Install" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 -msgid "Install in progess" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 -msgid "Installation is currenlty processing, please wait..." -msgstr "" - -#: tmp/cache_twig/36/46/e675443f5542d7476cde764fcf96.php:127 -msgid "validation:: editer ma note" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 -msgid "action : editer" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 -msgid "action : status" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 -msgid "action : collection" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 -msgid "action : push" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 -msgid "action : bridge" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 -msgid "action : publier" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 -msgid "action : outils" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 -msgid "Certaines donnees du panier ont change" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 -msgid "Votre recherche ne retourne aucun resultat" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 -msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:71 -msgid "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux suivants :" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:75 -msgid "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , LAST , ALL)" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:80 -msgid "Caractères de troncature" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:87 -msgid "auto*" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:91 -msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:97 -msgid "dé?it" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:101 -msgid "retourne \"délit\", \"débit\", ..." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:108 -msgid "Visualiser tous les enregistrements / les derniers enregistrements" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:114 -msgid "TOUT" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:118 -msgid "retourne tous les enregistrements des collections selectionnees" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:124 -msgid "LAST 20" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:128 -msgid "retourne les 20 derniers enregistrements archives dans les collections selectionnees" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:135 -msgid "Recherche multicritères" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:139 -msgid "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou DANS" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:145 -msgid "sport" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:147 -msgid "automobile" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:151 -msgid "retourne les documents comprenant les deux mots." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:157 -msgid "journal OU jt" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:161 -msgid "retourne les documents comprenant un mot et/ou l'autre." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:167 -msgid "cannes SAUF festival" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:171 -msgid "retourne les documents comprenant cannes sans le mot festival." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:177 -msgid "thalassa DANS titre" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:181 -msgid "retourne les documents où le terme est au moins présent dans le titre, en évitant par exemple celles où le terme est uniquement cité dans la légende." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:189 -msgid "Attention" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:193 -msgid "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les guillemets :" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:197 -msgid "C dans l'air" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:201 -msgid "Et Dieu créa la femme" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:205 -msgid "bijou en or" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:209 -msgid "tout le sport" -msgstr "" - -#: tmp/cache_twig/3f/da/67c754554942bdaffe0d2c33862e.php:47 -msgid "Deplacement %n_element% elements" -msgstr "" - -#: tmp/cache_twig/3f/da/67c754554942bdaffe0d2c33862e.php:67 -msgid "Which photosets you want to put you %number% photos into ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:308 -msgid "Chargement" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:348 -msgid "phraseanet:: panier" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 -msgid "phraseanet:: propositions" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 -msgid "phraseanet:: thesaurus" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 -msgid "prod::thesaurusTab:thesaurus" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 -msgid "prod::thesaurusTab:candidats" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 -msgid "prod::thesaurusTab:wizard:accepter le terme candidat" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 -msgid "prod::thesaurusTab:wizard:remplacer par le terme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 -msgid "chargement" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 -msgid "prod::thesaurusTab:dlg:supprimer le terme ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 -msgid "prod::thesaurusTab:dlg:accepter le terme ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 -msgid "prod::thesaurusTab:dlg:remplacer le terme ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 -msgid "action:: nouveau panier" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 -msgid "Browse Baskets" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 -msgid "action:: nouveau reportage" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 -msgid "phraseanet:: tri par date" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 -msgid "phraseanet:: tri par nom" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 -msgid "Preferences" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 -msgid "phraseanet::type:: documents" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 -msgid "phraseanet::type:: reportages" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 -msgid "Tout type" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 -msgid "Image" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 -msgid "Video" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 -msgid "Audio" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 -msgid "Document" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 -msgid "Flash" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 -msgid "Select" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 -msgid "reponses:: selectionner tout" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 -msgid "reponses:: selectionner rien" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 -msgid "phraseanet::type:: images" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 -msgid "phraseanet::type:: videos" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 -msgid "phraseanet::type:: audios" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 -msgid "Select an action" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 -msgid "raccourci :: a propos des raccourcis claviers" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 -msgid "Raccourcis claviers en cours de recherche : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 -msgid "Raccourcis:: ctrl-a : tout selectionner " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 -msgid "Raccourcis:: ctrl-p : imprimer la selection " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 -msgid "Raccourcis:: ctrl-e : editer la selection " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 -msgid "Raccourcis::fleche gauche : page precedente " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 -msgid "Raccourcis::fleche droite : page suivante " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 -msgid "Raccourcis::fleche haut : scroll vertical " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 -msgid "Raccourcis::fleche bas : scroll vertical " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 -msgid "Raccourcis claviers de la zone des paniers : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 -msgid "Raccourcis claviers en cours de editing : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 -msgid "Raccourcis::tab/shift-tab se ballade dans les champs " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 -msgid "Raccourcis claviers en cours de preview : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 -msgid "Raccourcis::fleche gauche : en avant " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 -msgid "Raccourcis::fleche gauche : en arriere " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 -msgid "Raccourcis::espace : arreter/demarrer le diaporama " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 -msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 -msgid "raccourcis :: ne plus montrer cette aide" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 -msgid "Affichage" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 -msgid "Configuration" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 -msgid "Mode de presentation" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 -msgid "reponses:: mode vignettes" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 -msgid "reponses:: mode liste" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 -msgid "Theme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 -msgid "Selecteur de theme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 -msgid "Presentation de vignettes" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 -msgid "Iconographe (description au rollover)" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 -msgid "Graphiste (preview au rollover)" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 -msgid "Informations techniques" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 -msgid "Afficher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 -msgid "Afficher dans la notice" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 -msgid "Ne pas afficher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 -msgid "Type de documents" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 -msgid "Afficher une icone" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 -msgid "reponses:: images par pages : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 -msgid "reponses:: taille des images : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 -msgid "Couleur de selection" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 -msgid "choisir" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 -msgid "Affichage au demarrage" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 -msgid "Ma derniere question" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 -msgid "Une question personnelle" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 -msgid "Aide" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 -msgid "preview:: Description" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 -msgid "preview:: Historique" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 -msgid "preview:: Popularite" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 -msgid "Presentation de vignettes de panier" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 -msgid "Afficher les status" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 -msgid "Afficher la fiche descriptive" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 -msgid "Afficher le titre" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "" - -#: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 -msgid "preview::statistiques de visualisation pour le lien" -msgstr "" - -#: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:50 -msgid "preview::statistiques de telechargement" -msgstr "" - -#: tmp/cache_twig/44/8d/359dbb5d824b8a83e7fcff554360.php:47 -msgid "Suppression de %n_element% photos" -msgstr "" - -#: tmp/cache_twig/44/8d/359dbb5d824b8a83e7fcff554360.php:67 -msgid "Etes vous sur de supprimer %number% photos ?" -msgstr "" - -#: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:38 -msgid "Erreur lors de votre authentification" -msgstr "" - -#: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:53 -msgid "Vous etes authentifie avec succes" -msgstr "" - -#: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:59 -msgid "Si cette fenetre ne se ferme pas automatiquement, fermez la, et raffraichissez votre compte" -msgstr "" - -#: tmp/cache_twig/47/cc/7278d06f416783c9815cd63e2f09.php:17 -msgid "Vous etes actuellement deconnecte de votre compte, vous devez vous connecter pour continuer" -msgstr "" - -#: tmp/cache_twig/47/cc/7278d06f416783c9815cd63e2f09.php:62 -msgid "boutton::refresh" -msgstr "" - -#: tmp/cache_twig/48/c6/455d1a21dd0b7b92bc64ed3c5765.php:34 -msgid "report:: Enlever le filtre" -msgstr "" - -#: tmp/cache_twig/4b/1d/eeda3c99bc5c1ea2b32c1b5030e1.php:22 -msgid "Creer" -msgstr "" - -#: tmp/cache_twig/4b/1d/eeda3c99bc5c1ea2b32c1b5030e1.php:32 -#: tmp/cache_twig/56/df/8e9606b65d5b86ebe83193d18d40.php:48 -msgid "Actions" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:15 -msgid "Les indications donnees ci dessous sont a titre informatif." -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:19 -msgid "Si vous ne les respectez pas, les documents seront correctement indexes, mais les metadonnees inscrites risquent d'etre erronnees" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:26 -msgid "Ces informations sont directement fournies par la norme de metadonnees de ce champ : %norm_name%" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:43 -msgid "phraseanet::technique::date-edit-explain (aaaa/mm/jj)" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:49 -msgid "phraseanet::technique::time-edit-explain (hh:mm:ss)" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:63 -msgid "Le champ doit contenir %minLength% caracteres minimum." -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:75 -msgid "Le champ ne peut contenir plus de %maxLength% caracteres." -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:11 -msgid "Record_id" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:34 -msgid "Largeur" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:51 -msgid "Hauteur" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:70 -msgid "Nom Original" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:86 -msgid "Type Mime" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:105 -msgid "Taille" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:128 -msgid "Dimensions a l'impression" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:173 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:290 -msgid "Duree" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:187 -msgid "Images par secondes" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:201 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:304 -msgid "Codec Audio" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:215 -msgid "Codec Video" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:229 -msgid "Debit video" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:246 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:318 -msgid "Debit audio" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:263 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:335 -msgid "Frequence d'echantillonage" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:117 -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:189 -msgid "Mise a jour" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:138 -msgid "Before any upgrade, you have to fix your database." -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:141 -msgid "Some users have the same email address. You can fix this problem with this script :" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:163 -msgid "Une mise a jour de l'application est necessaire, il est vivement recommande de l'effectuer en ligne de commande via la commande :" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:182 -msgid "Si toutefois vous n'aviez pas acces à la console, suivez le lien suivant" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:202 -msgid "Progression de la mise a jour : " -msgstr "" - -#: tmp/cache_twig/54/f8/2480d317ffebf431a7719a048fbd.php:25 -msgid "Page" -msgstr "" - -#: tmp/cache_twig/56/19/f69a2b0674ef37a10e3bc359c7bb.php:69 -msgid "No matches found" -msgstr "" - -#: tmp/cache_twig/56/df/8e9606b65d5b86ebe83193d18d40.php:17 -msgid "Ajouter a" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 -msgid "Fail" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 -msgid "Success" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 -msgid "Rights" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:78 -msgid "Infos" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:125 -msgid "Edition des droits de %display_name%" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:137 -msgid "Edition des droits de %number% utilisateurs" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 -msgid "admin::compte-utilisateur sexe" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:110 -msgid "Quotas" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:131 -msgid "Restrictions de telechargement" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:153 -msgid "Droits" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:161 -msgid "par mois" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:165 -msgid "Reste" -msgstr "" - -#: tmp/cache_twig/5c/7e/3aebdd594476b876dd89d1ff9e78.php:19 -msgid "panier:: nom" -msgstr "" - -#: tmp/cache_twig/5c/7e/3aebdd594476b876dd89d1ff9e78.php:31 -msgid "panier:: description" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 -msgid "No results" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 -msgid "1 result" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 -msgid "%Total% results" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 -msgid "Received from %user_name%" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 -msgid "Sent for validation to %list_participants%" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:34 -msgid "Vous avez autorise ces applications a acceder a votre compte" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:61 -msgid "Revoquer l'access" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:69 -msgid "Authoriser l'access" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:92 -msgid "par %user_name%" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:123 -msgid "Aucune application n'a accés à vos données." -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:135 -msgid "Applications" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:140 -msgid "Naviguez et gerez les applications que vous souhaitez autoriser a acceder a vos informations Phraseanet" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:145 -msgid "Developpeurs" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:150 -msgid "Les developpeurs peuvent editer l'enregistrement de leurs application grace a l'onglet \"developpeurs\" ci-dessus" -msgstr "" - -#: tmp/cache_twig/60/d6/47be888a7c020832754fcd4e22e9.php:71 -msgid "Home" -msgstr "" - -#: tmp/cache_twig/60/d6/47be888a7c020832754fcd4e22e9.php:94 -#, php-format -msgid "%entry_length% documents" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:114 -msgid "Cocher toute la colonne" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:118 -msgid "Decocher toute la colonne" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:122 -msgid "Creer un model" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:126 -msgid "Creer un utilisateur" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 -msgid "Ajouter un nouvel utilisateur" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 -msgid "Adresse email du nouvel utilisateur" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 -msgid "Creer un modele" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 -msgid "Nom du nouveau modele" -msgstr "" - -#: tmp/cache_twig/61/1b/79326e85246442bd6ec8281f4cfc.php:193 -msgid "boutton::publier" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:15 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:15 -msgid "Ajouter ma selection courrante" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:21 -msgid "Story name" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:27 -msgid "Story description" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:33 -msgid "Collection" -msgstr "" - -#: tmp/cache_twig/63/54/32f78e10cecde152548c2c0fb033.php:133 -msgid "Garder ma session active" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:73 -msgid "Le bridge FlickR ne prend en charge que les photos" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:83 -msgid "%n_elements% elements ne peuvent etre uploades" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:92 -#, php-format -msgid "Upload sur Flickr de %elements_length% elements" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:206 -msgid "2000 caracteres maximum, separe par des espaces" -msgstr "" - -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:21 -msgid "Nom du nouveau panier" -msgstr "" - -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:27 -msgid "paniers::description du nouveau panier" -msgstr "" - -#: tmp/cache_twig/6c/f6/2b8926b3d1c28a32e61adb464dac.php:20 -msgid "Aucune notification" -msgstr "" - -#: tmp/cache_twig/6c/f6/2b8926b3d1c28a32e61adb464dac.php:29 -msgid "toutes les notifications" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:78 -msgid "veuillez choisir au minimum une collection" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:112 -msgid "report::Nombre de connexions" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:116 -msgid "report:: jour" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:120 -msgid "report:: Heures" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:124 -msgid "report::Nombre de document ajoute" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:128 -msgid "report::Nombre de document edite" -msgstr "" - -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:15 -msgid "Lists" -msgstr "" - -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 -msgid "Refresh" -msgstr "" - -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -msgid "Delete" -msgstr "" - -#: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 -msgid "Playlist" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:129 -msgid "nouveau" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:140 -msgid "Vers quel API voulez vous vous connecter ?" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:197 -msgid "Aucun bridge disponible. Veuillez contacté un administrateur." -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 -msgid "Vous n'avez pas assez de droits sur les elements selectionnes" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 -msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" -msgstr "" - -#: tmp/cache_twig/72/da/40a666a3d2fe512d9b3893ac0fea.php:88 -msgid "report:: 1 - Periode" -msgstr "" - -#: tmp/cache_twig/79/f8/0ba081da1ba0a0dcbb3e67c823aa.php:17 -msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 -msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 -msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 -msgid "La precedente attribution a ete desactivee" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 -msgid "Attention !" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 -msgid "boutton::ajouter" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 -msgid "Nom" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 -msgid "DublinCore Element Set" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 -msgid "Multivalue" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 -msgid "Indexable" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 -msgid "Vocabulary Type" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 -msgid "Vocabulary restricted" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 -msgid "Lecture seule" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 -msgid "Type" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 -msgid "Separateur" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 -msgid "Branche Thesaurus" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 -msgid "Affiche dans report" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 -msgid "Afficher en titre" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 -msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 -msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 -msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 -msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 -msgid "Tous" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 -msgid "Francais" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 -msgid "Allemand" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 -msgid "Anglais" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 -msgid "Arabe" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:18 -msgid "Retour aux commandes" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:26 -msgid "Destinataire" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:38 -msgid "Date de commande" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:48 -msgid "Deadline" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:58 -msgid "Utilisation prevue" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:68 -msgid "Nombre total d'element commandes" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:80 -msgid "Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les elements correspondants aux collections sur lesquelles vous gerez les commandes" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:87 -msgid "Selectionnez des documents et " -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:126 -msgid "Document refuse par %name%" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:135 -msgid "Forcer l'envoi du document" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:154 -msgid "Document envoye par %name%" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:141 -msgid "(validation) session terminee" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:147 -msgid "(validation) envoyee" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:153 -msgid "(validation) a envoyer" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:162 -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:264 -#, php-format -msgid "%basket_length% documents" -msgstr "" - -#: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 -msgid "Suppression de %n_element% videos" -msgstr "" - -#: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 -msgid "Etes vous sur de supprimer %number% videos ?" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:32 -msgid "Toutes les publications" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:64 -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:72 -msgid "publications:: s'abonner aux publications" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:83 -msgid "Aller a" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:143 -msgid "Aucune entree pour le moment" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:167 -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:180 -msgid "charger d'avantage de publications" -msgstr "" - -#: tmp/cache_twig/8e/aa/703ba8017c1986ea91ecdf368a6a.php:57 -msgid "Erreur !" -msgstr "" - -#: tmp/cache_twig/8e/aa/703ba8017c1986ea91ecdf368a6a.php:61 -msgid "Le panier demande nexiste plus" -msgstr "" - -#: tmp/cache_twig/8e/aa/703ba8017c1986ea91ecdf368a6a.php:69 -msgid "Retour a laccueil" -msgstr "" - -#: tmp/cache_twig/93/de/b653f259f57456b9bbfac02e1b7a.php:67 -msgid "Which playlist you want to put you %number% elements into ?" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -msgid "mauvais login / mot de passe" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" -msgstr "" - -#: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 -msgid "Apparait aussi dans ces reportages" -msgstr "" - -#: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:67 -msgid "Apparait aussi dans ces paniers" -msgstr "" - -#: tmp/cache_twig/99/32/ffa3967161f314f640bc9e4c1abe.php:151 -msgid "Fichiers envoyes" -msgstr "" - -#: tmp/cache_twig/99/32/ffa3967161f314f640bc9e4c1abe.php:225 -msgid "Terms of service" -msgstr "" - -#: tmp/cache_twig/9b/eb/426c64066e3b1c2cfcccdbdb71f6.php:36 -#: tmp/cache_twig/9b/eb/426c64066e3b1c2cfcccdbdb71f6.php:96 -msgid "report:: activite par jour" -msgstr "" - -#: tmp/cache_twig/9e/88/68131b8442f2df898c593dc2e163.php:54 -msgid "Oups ! something went wrong !" -msgstr "" - -#: tmp/cache_twig/9e/88/68131b8442f2df898c593dc2e163.php:82 -msgid "boutton::retry" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:59 -msgid "Edition" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:83 -msgid "Licone doit etre un fichier jpeg carre, maximum 32px, 200 kO" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:191 -msgid "Liste des personnes habilitees a publier sur ce fil" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:198 -msgid "Id" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:203 -msgid "Email" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:207 -msgid "Owner" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:305 -msgid "Ajouter un publisher" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:309 -msgid "Name or email" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:434 -msgid "You are not the feed owner" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:297 -msgid "action::exporter" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:308 -msgid "action::editer" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:323 -msgid "action::detacher" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:549 -msgid "delete" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:640 -msgid "panier:: ordre du panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:648 -msgid "panier:: ordre Validation ascendante" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:656 -msgid "panier:: ordre Validation descendante" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:699 -msgid "L'utilisateur approuve ce document" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:705 -msgid "L'utilisateur desapprouve ce document" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "" - -#: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 -msgid "validation:: note" -msgstr "" - -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 -msgid "HD Download" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 -msgid "List Manager" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 -msgid "Select all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 -msgid "Deselect all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 -msgid "Back to Push" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 -msgid "Welcome to the ListManager !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 -msgid "Select a list on the left and edit it !" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 -msgid "Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 -msgid "Back to Feedback" -msgstr "" - -#: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 -msgid "report:: Volumetrie des questions posees sur %home_title%" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 -msgid "Site web" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 -msgid "Type d'application" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 -msgid "Application web" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 -msgid "Application desktop" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 -msgid "URL de callback" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:24 -msgid "phraseanet:: preview" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:30 -msgid "print:: image de choix seulement" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:37 -msgid "print:: image de choix et description" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:44 -msgid "print:: image de choix et description avec planche contact" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:58 -msgid "print:: imagette" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:64 -msgid "print:: liste d'imagettes" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:71 -msgid "print:: planche contact (mosaique)" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:82 -msgid "None of the selected records can be printed " -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:88 -msgid "export:: erreur : aucun document selectionne" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:98 -msgid "boutton::imprimer" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:71 -msgid "Le bridge Youtube ne prend en charge que les videos" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:75 -msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:110 -msgid "100 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:143 -msgid "2000 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:170 -msgid "Categorie" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:213 -msgid "500 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:217 -msgid "separe par un espace" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:289 -msgid "En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu accessible au public sur YouTube, et qu'il est autrement conforme aux Conditions d'utilisation de YouTubesitue a %lien_term_youtube%" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:309 -msgid "Retour" -msgstr "" - -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 -msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" -msgstr "" - -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 -msgid "cocher tout" -msgstr "" - -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 -msgid "tout decocher" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:23 -msgid "Tableau de bord" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:76 -msgid "admin::utilisateurs: utilisateurs connectes" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:94 -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:360 -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:431 -msgid "admin::utilisateurs: utilisateurs" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:108 -msgid "admin::utilisateurs: demandes en cours" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:146 -msgid "admin::utilisateurs: gestionnaire de taches" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:165 -msgid "admin::utilisateurs: bases de donnees" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:254 -msgid "admin::structure: reglage de la structure" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:266 -msgid "CHAMPS" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:278 -msgid "SUBDEFS" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:290 -msgid "admin::status: reglage des status" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:301 -msgid "admin:: CGUs" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:313 -msgid "admin::collection: ordre des collections" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:408 -msgid "admin::base: preferences de collection" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:29 -msgid "reportage" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:35 -msgid "image" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:41 -msgid "document" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:47 -msgid "animation flash" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:53 -msgid "video" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:59 -msgid "audio" -msgstr "" - -#: tmp/cache_twig/b3/8b/2d8c3df979b2599df392835e8faf.php:47 -#: tmp/cache_twig/b4/5c/2163e6275d10e0bce2e118b5c7c4.php:47 -msgid "Suppression de %n_element% playlists" -msgstr "" - -#: tmp/cache_twig/b3/8b/2d8c3df979b2599df392835e8faf.php:67 -#: tmp/cache_twig/b4/5c/2163e6275d10e0bce2e118b5c7c4.php:67 -msgid "Etes vous sur de supprimer %number% playlists ?" -msgstr "" - -#: tmp/cache_twig/b4/3d/d3d24f0512d00ad0cca2e50ab7ac.php:43 -msgid "%value% like" -msgid_plural "%value% likes" -msgstr[0] "" -msgstr[1] "" - -#: tmp/cache_twig/bd/a8/2c59a65e6a28629b0d4eecf283e3.php:53 -msgid "Edition de 1 element" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 -msgid "Aucun statut editable" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 -msgid "Les status de certains documents ne sont pas accessible par manque de droits" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 -msgid "boutton::remplacer" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 -msgid "phraseanet:: presse-papier" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 -msgid "prod::editing: rechercher-remplacer" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 -msgid "prod::editing: modeles de fiches" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 -msgid "prod::editing::replace: remplacer dans le champ" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 -msgid "prod::editing::replace: remplacer dans tous les champs" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 -msgid "prod::editing:replace: chaine a rechercher" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 -msgid "prod::editing:remplace: chaine remplacante" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 -msgid "prod::editing:remplace: options de remplacement" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 -msgid "prod::editing:remplace::option : utiliser une expression reguliere" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 -msgid "Aide sur les expressions regulieres" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 -msgid "prod::editing:remplace::option: remplacer toutes les occurences" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 -msgid "prod::editing:remplace::option: rester insensible a la casse" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 -msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 -msgid "prod::editing:remplace::option la valeur est comprise dans le champ" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 -msgid "prod::editing:remplace::option respecter la casse" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 -msgid "prod::editing:indexation en cours" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 -msgid "prod::editing: valider ou annuler les modifications" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 -msgid "edit::preset:: titre" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 -msgid "Edition impossible" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 -msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 -msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 -msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 -msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 -msgid "edit::Certains champs doivent etre remplis pour valider cet editing" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 -msgid "edit: chosiir limage du regroupement" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 -msgid "prod::editing::fields: status " -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 -msgid "Ce champ est decrit comme un element DublinCore" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 -msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:73 -msgid "report::Demande de validation vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:79 -msgid "report::Edition des meta-donnees" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 -msgid "report::Edition des status" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 -msgid "report::Impression des formats : %format%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 -msgid "report::Substitution de %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 -msgid "report::Publication de %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 -msgid "report::Telechargement de %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 -msgid "Envoi par mail a %dest% de %content%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 -msgid "Envoi par ftp a %dest% de %content%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 -msgid "report::supression du document" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 -msgid "report::ajout du documentt" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 -msgid "report::Modification du document -- je ne me souviens plus de quoi..." -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 -msgid "report:: par %user_infos%" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:28 -msgid "Application" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:54 -msgid "settings OAuth" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:58 -msgid "Les parametres oauth de votre application." -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 -msgid "Votre token d'access" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 -msgid "Les paramétres oauth de votre application." -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 -msgid "Token" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 -msgid "Le token n'a pas encore ete genere" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 -msgid "boutton::generer" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:92 -msgid "%nb_elements% elements" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:177 -msgid "Imagette indisponible" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:226 -msgid "Aucune description." -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:248 -msgid "dans %category%" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:264 -msgid "Confidentialite : privee" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:270 -msgid "Confidentialite : publique" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:26 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:153 -msgid "Les documents ne peuvent pas etre exportes" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:43 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:80 -msgid "export:: telechargement" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:47 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:204 -msgid "export:: envoi par mail" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:56 -msgid "export:: commande" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:65 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:685 -msgid "export:: FTP" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:139 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:296 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:614 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:780 -msgid "Documents indisponibles" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:218 -msgid "export::mail: destinataire" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:231 -msgid "Recevoir un accuse de reception a %my_email%" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:237 -msgid "Accuse de reception indisponible, vous n'avez pas declare d'adresse email" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:246 -msgid "Entrez plusieurs adresses email en les separant par des points-virgules" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:252 -msgid "export::mail: contenu du mail" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:259 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:743 -msgid "export::mail: fichiers joint" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:310 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:628 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:794 -msgid "La sous resolution n'est pas disponible pour les documents suivants" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:349 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:834 -msgid "boutton::envoyer" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:371 -msgid "export::commande: bon de commande" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:387 -msgid "commande::utilisation prevue" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:398 -msgid "commande::deadline" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:596 -#, php-format -msgid "%docs_orderable% documents commandes" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:605 -#, php-format -msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:663 -msgid "boutton::commander" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:699 -msgid "phraseanet:: prereglages" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:829 -msgid "boutton::essayer" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:891 -msgid "Certains champs sont obligatoires, veuillez les remplir" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:909 -msgid "Vous devez selectionner un type de sous definitions" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 -msgid "You can alternatively receive an email when the download is ready." -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 -msgid "Would you like to receive an e-mail when your download is ready ?" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 -msgid "phraseanet:: utiliser SSL" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 -msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 -msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 -msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 -msgid "admin::compte-utilisateur:ftp: creer un dossier" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 -msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 -msgid "Nom des fichiers a l'export" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 -msgid "export::titre: titre du documument" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 -msgid "export::titre: nom original du document" -msgstr "" - -#: tmp/cache_twig/cc/4b/81fc228f7c24e521a5ffcdd0fa13.php:47 -msgid "Suppression de %n_element% photosets" -msgstr "" - -#: tmp/cache_twig/cc/4b/81fc228f7c24e521a5ffcdd0fa13.php:67 -msgid "Etes vous sur de supprimer %number% photosets ?" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:36 -msgid "Mes applications" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:55 -msgid "button::supprimer" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:93 -msgid "Aucune application creee." -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:107 -msgid "Demarrer avec l'API Phraseanet" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:112 -msgid "Decouvrez la documentation" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:119 -msgid "Creer une nouvelle applications" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:124 -msgid "Creez une application pour commencer a utiliser l'API Phraseanet" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:21 -msgid "action en lot" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:33 -msgid "Pour le GROUPE %key%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:42 -msgid "Derniere version uploadee" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:54 -msgid "%potenlength% enregistrements correspondent cet identifiant unique" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:60 -msgid "Voici enregistrement correspondant a cet identifiant unique" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:109 -msgid "D'autres versions de ce document ont ete prealablement uploadees " -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:114 -msgid "Voir/Cacher" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:124 -msgid "Precedents uploads" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:189 -msgid "Record %recordid% - %title%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:238 -msgid "Aucun document dans la quarantaine actuellement" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:285 -msgid "Document ajoute le %date% par %display_name% sur la collection %basname%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:291 -msgid "Document ajoute le %date% sur la collection %basname%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:314 -msgid "Ajouter ce document a la base %basname%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:337 -msgid "Substituer" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:348 -msgid "Document a substituer" -msgstr "" - -#: tmp/cache_twig/ce/cc/be294197e1d460edcd313eca78f2.php:20 -msgid "validation:: votre note" -msgstr "" - -#: tmp/cache_twig/ce/cc/be294197e1d460edcd313eca78f2.php:76 -msgid "boutton::enregistrer" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 -msgid "Login" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 -msgid "First/Last Name" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 -msgid "E-Mail" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 -msgid "Last Template" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 -msgid "Creation date" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 -msgid "Create new subdef" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 -msgid "Delete the subdef ?" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 -msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 -msgid "Subdef name" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 -msgid "classe d'acces" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 -msgid "preview" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 -msgid "tout le monde" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 -msgid "Telechargeable" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 -msgid "classe" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 -msgid "Baseurl" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 -msgid "Write Metas" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 -msgid "mediatype" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 -msgid "yes" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 -msgid "no" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:59 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:118 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:187 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:256 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:327 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:408 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:477 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:546 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:615 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:684 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:757 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:830 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:903 -msgid "menu" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:61 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1031 -msgid "Details" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:65 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:978 -msgid "report:: Cumul telechargements & connexions" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:76 -msgid "report::Connexion" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:122 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:191 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:481 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:550 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:982 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:986 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1002 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1010 -msgid "report:: Utilisateurs les plus actifs" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:129 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:198 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:626 -msgid "report:: utilisateurs" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:133 -msgid "report:: telechargements document" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:202 -msgid "report:: telechargements preview" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:260 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:391 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:998 -msgid "report:: documents les plus telecharges" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:332 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1006 -msgid "report:: preview les plus telecharges" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:387 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:419 -msgid "report:: site" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:412 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1014 -msgid "report:: site d'ou les photo sont les plus consultees" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:423 -msgid "report:: nombre de vue" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:492 -msgid "report:: poids document" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:561 -msgid "report:: poids preview" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:834 -msgid "report:: activite document ajoute" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:907 -msgid "report:: activite document edite" -msgstr "" - -#: tmp/cache_twig/e4/c8/d76f9379d97cf4c75bfb7abf6005.php:45 -msgid "Creer un Photoset" -msgstr "" - -#: tmp/cache_twig/e4/c8/d76f9379d97cf4c75bfb7abf6005.php:98 -msgid "Photo principale" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:18 -msgid "prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:30 -msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:42 -msgid "erreur : Vous n'avez pas les droits" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:62 -#, php-format -msgid "prod::collection %countable% documents ne pouvant etres mofiies" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:76 -#, php-format -msgid "prod::collection %countable% documents a deplacer" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:117 -msgid "prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:18 -msgid "Search baskets" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:23 -msgid "See" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:43 -msgid "My baskets" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:55 -msgid "Received baskets" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:67 -msgid "Validations sent" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:79 -msgid "Validations received" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:86 -msgid "When" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:94 -msgid "Any time" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:106 -msgid "This year" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:122 -msgid "Past year" -msgstr "" - -#: tmp/cache_twig/f6/6b/0f79bfdfd04259ceea6613007599.php:77 -msgid "Retour a l'accueil" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:442 -msgid "admin::tasks: nom de la tache" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:456 -msgid "admin::tasks: lancer au demarrage du scheduler" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:467 -msgid "admin::tasks: Nombre de crashes : " -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:475 -msgid "admin::tasks: reinitialiser el compteur de crashes" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:490 -msgid "boutton::vue graphique" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:505 -msgid "boutton::vue xml" -msgstr "" - -#: tmp/cache_twig/fd/d8/674d0e2d4268fc7264053289aede.php:157 -msgid "tags" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:20 -msgid "Back to basket list" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 -msgid "No records" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 -msgid "1 record" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 -msgid "%ElementsCount% records" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:26 -msgid "Page %current_page%" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:44 -msgid "Utilisateur" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:50 -msgid "Date de demande" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:65 -msgid "Statut" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:102 -msgid "Aucune" -msgstr "" - -#: www/admin/adminFeedback.php:297 -msgid "admin::base: aucun alias" -msgstr "" - -#: www/admin/adminFeedback.php:387 -msgid "admin::base: vider la base avant de la supprimer" -msgstr "" - -#: www/admin/cgus.php:85 -msgid "Terms Of Use" -msgstr "" - -#: www/admin/cgus.php:89 -msgid "Mettre a jour" -msgstr "" - -#: www/admin/cgus.php:89 -msgid "admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" -msgstr "" - -#: www/admin/collection.php:85 -#: www/admin/collection.php:98 -msgid "forms::operation effectuee OK" -msgstr "" - -#: www/admin/collection.php:91 -msgid "admin::base:collection: vider la collection avant de la supprimer" -msgstr "" - -#: www/admin/collection.php:108 -#: www/admin/collection.php:148 -#: www/admin/collection.php:185 -#: www/admin/collection.php:222 -msgid "admin::base:collection le fichier envoye est trop volumineux." -msgstr "" - -#: www/admin/collection.php:112 -#: www/admin/collection.php:152 -#: www/admin/collection.php:189 -#: www/admin/collection.php:226 -msgid "forms::erreur lors de l'envoi du fichier" -msgstr "" - -#: www/admin/collection.php:282 -msgid "admin::base:collection: etes vous sur de vider la collection ?" -msgstr "" - -#: www/admin/collection.php:302 -msgid "admin::base:collection: etes vous sur de demonter cette collection ?" -msgstr "" - -#: www/admin/collection.php:316 -msgid "admin::base:collection: etes vous sur de publier cette collection ?" -msgstr "" - -#: www/admin/collection.php:321 -msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" -msgstr "" - -#: www/admin/collection.php:391 -msgid "phraseanet:: collection" -msgstr "" - -#: www/admin/collection.php:398 -msgid "admin::base:collection: numero de collection distante" -msgstr "" - -#: www/admin/collection.php:402 -msgid "admin::base:collection: etat de la collection" -msgstr "" - -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 -msgid "admin::base:collection: activer la collection" -msgstr "" - -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 -msgid "admin::base:collection: descativer la collection" -msgstr "" - -#: www/admin/collection.php:413 -msgid "phraseanet:: details" -msgstr "" - -#: www/admin/collection.php:423 -msgid "admin::base: masquer les details" -msgstr "" - -#: www/admin/collection.php:439 -msgid "admin::base: objet" -msgstr "" - -#: www/admin/collection.php:443 -msgid "admin::base: nombre" -msgstr "" - -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 -msgid "admin::base: poids" -msgstr "" - -#: www/admin/collection.php:590 -msgid "admin::collection:: Gestionnaires des commandes" -msgstr "" - -#: www/admin/collection.php:605 -msgid "setup:: ajouter un administrateur des commandes" -msgstr "" - -#: www/admin/collection.php:623 -msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" -msgstr "" - -#: www/admin/collection.php:625 -msgid "admin::colelction::presentation des elements : rien" -msgstr "" - -#: www/admin/collection.php:626 -msgid "admin::colelction::presentation des elements : watermark" -msgstr "" - -#: www/admin/collection.php:627 -msgid "admin::colelction::presentation des elements : stamp" -msgstr "" - -#: www/admin/collection.php:633 -msgid "admin::base:collection: renommer la collection" -msgstr "" - -#: www/admin/collection.php:640 -msgid "admin::base:collection: Nom de la nouvelle collection : " -msgstr "" - -#: www/admin/collection.php:665 -msgid "admin::base:collection: vider la collection" -msgstr "" - -#: www/admin/collection.php:679 -msgid "admin::collection: Confirmez vous la suppression de cette collection ?" -msgstr "" - -#: www/admin/collection.php:692 -msgid "admin::base:collection: minilogo actuel" -msgstr "" - -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 -msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" -msgstr "" - -#: www/admin/collection.php:781 -msgid "admin::base:collection: image de presentation : " -msgstr "" - -#: www/admin/collorder.php:50 -#, php-format -msgid "admin::base: reglage des ordres des collection de la base %s" -msgstr "" - -#: www/admin/collorder.php:181 -msgid "admin::base: mise a jour de l'ordre des collections OK" -msgstr "" - -#: www/admin/collorder.php:202 -msgid "admin::base:collorder: monter" -msgstr "" - -#: www/admin/collorder.php:204 -msgid "admin::base:collorder: descendre" -msgstr "" - -#: www/admin/collorder.php:207 -msgid "admin::base:collorder: reinitialiser en ordre alphabetique" -msgstr "" - -#: www/admin/database.php:130 -msgid "admin::base: Supprimer le logo pour impression" -msgstr "" - -#: www/admin/database.php:146 -msgid "Confirmez-vous la re-indexation de la base ?" -msgstr "" - -#: www/admin/database.php:174 -#: www/admin/database.php:378 -msgid "admin::base: Alias" -msgstr "" - -#: www/admin/database.php:189 -msgid "admin::base: Confirmer le vidage complet de la base" -msgstr "" - -#: www/admin/database.php:259 -msgid "admin::base: Confirmer la suppression de la base" -msgstr "" - -#: www/admin/database.php:286 -msgid "admin::base: Confirmer la suppression de tous les logs" -msgstr "" - -#: www/admin/database.php:312 -msgid "admin::base: Confirmer vous l'arret de la publication de la base" -msgstr "" - -#: www/admin/database.php:394 -msgid "admin::base: nombre d'enregistrements sur la base :" -msgstr "" - -#: www/admin/database.php:405 -msgid "admin::base: nombre de mots uniques sur la base : " -msgstr "" - -#: www/admin/database.php:410 -msgid "admin::base: nombre de mots indexes sur la base" -msgstr "" - -#: www/admin/database.php:417 -msgid "admin::base: nombre de termes de Thesaurus indexes :" -msgstr "" - -#: www/admin/database.php:471 -msgid "admin::base: enregistrements orphelins" -msgstr "" - -#: www/admin/database.php:505 -#: www/admin/database.php:522 -msgid "report:: total" -msgstr "" - -#: www/admin/database.php:547 -msgid "admin::base: document indexes en utilisant la fiche xml" -msgstr "" - -#: www/admin/database.php:557 -msgid "admin::base: document indexes en utilisant le thesaurus" -msgstr "" - -#: www/admin/database.php:573 -msgid "admin::base: Cette base est indexable" -msgstr "" - -#: www/admin/database.php:580 -msgid "base:: re-indexer" -msgstr "" - -#: www/admin/database.php:588 -#: www/admin/newcoll.php:119 -msgid "admin::base:collection: Creer une collection" -msgstr "" - -#: www/admin/database.php:600 -msgid "admin::base:collection: Monter une collection" -msgstr "" - -#: www/admin/database.php:621 -#: www/admin/newcoll.php:149 -msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " -msgstr "" - -#: www/admin/database.php:635 -msgid "Monter" -msgstr "" - -#: www/admin/database.php:649 -msgid "Activer une collection" -msgstr "" - -#: www/admin/database.php:675 -msgid "admin::base: supprimer tous les logs" -msgstr "" - -#: www/admin/database.php:681 -msgid "admin::base: arreter la publication de la base" -msgstr "" - -#: www/admin/database.php:687 -msgid "admin::base: vider la base" -msgstr "" - -#: www/admin/database.php:693 -msgid "admin::base: supprimer la base" -msgstr "" - -#: www/admin/database.php:703 -msgid "admin::base: logo impression PDF" -msgstr "" - -#: www/admin/database.php:716 -msgid "admin::base:collection: supprimer le logo" -msgstr "" - -#: www/admin/database.php:739 -msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" -msgstr "" - -#: www/admin/databases.php:66 -msgid "Propositions de modifications des tables" -msgstr "" - -#: www/admin/databases.php:75 -msgid "N'oubliez pas de redemarrer le planificateur de taches" -msgstr "" - -#: www/admin/databases.php:82 -msgid "Veuillez arreter le planificateur avant la mise a jour" -msgstr "" - -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 -msgid "Database name can not contains special characters" -msgstr "" - -#: www/admin/databases.php:134 -msgid "Database does not exists or can not be accessed" -msgstr "" - -#: www/admin/databases.php:329 -msgid "admin::base: Version" -msgstr "" - -#: www/admin/databases.php:334 -msgid "update::Votre application necessite une mise a jour vers : " -msgstr "" - -#: www/admin/databases.php:340 -msgid "update::Votre version est a jour : " -msgstr "" - -#: www/admin/databases.php:346 -msgid "update::Verifier els tables" -msgstr "" - -#: www/admin/databases.php:351 -msgid "admin::base: creer une base" -msgstr "" - -#: www/admin/databases.php:355 -msgid "phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "" - -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 -msgid "phraseanet:: hostname" -msgstr "" - -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 -msgid "phraseanet:: user" -msgstr "" - -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 -msgid "phraseanet:: password" -msgstr "" - -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 -msgid "phraseanet:: dbname" -msgstr "" - -#: www/admin/databases.php:375 -msgid "phraseanet:: Modele de donnees" -msgstr "" - -#: www/admin/databases.php:397 -msgid "boutton::creer" -msgstr "" - -#: www/admin/databases.php:403 -msgid "admin::base: Monter une base" -msgstr "" - -#: www/admin/databases.php:407 -msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" -msgstr "" - -#: www/admin/databases.php:428 -msgid "boutton::monter" -msgstr "" - -#: www/admin/demand.php:366 -msgid "admin:: demandes en cours" -msgstr "" - -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 -msgid "admin:: refuser l'acces" -msgstr "" - -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 -msgid "admin:: donner les droits de telechargement et consultation de previews" -msgstr "" - -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 -msgid "admin:: donner les droits de telechargements de preview et hd" -msgstr "" - -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 -msgid "admin:: watermarquer les documents" -msgstr "" - -#: www/admin/demand.php:377 -msgid "admin::compte-utilisateur date d'inscription" -msgstr "" - -#: www/admin/demand.php:378 -msgid "admin::collection" -msgstr "" - -#: www/admin/demand.php:480 -msgid "admin:: appliquer le modele " -msgstr "" - -#: www/admin/newcoll.php:42 -msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" -msgstr "" - -#: www/admin/sessionwhois.php:58 -msgid "admin::monitor: utilisateur" -msgstr "" - -#: www/admin/sessionwhois.php:59 -msgid "admin::monitor: modules" -msgstr "" - -#: www/admin/sessionwhois.php:61 -msgid "admin::monitor: date de connexion" -msgstr "" - -#: www/admin/sessionwhois.php:62 -msgid "admin::monitor: dernier access" -msgstr "" - -#: www/admin/sessionwhois.php:101 -msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " -msgstr "" - -#: www/admin/sessionwhois.php:116 -msgid "Session persistente" -msgstr "" - -#: www/admin/sessionwhois.php:134 -msgid "admin::monitor: module inconnu" -msgstr "" - -#: www/admin/sessionwhois.php:243 -msgid "admin::monitor: total des utilisateurs uniques : " -msgstr "" - -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" -msgstr "" - -#: www/admin/sitestruct.php:189 -msgid "setup:: administrateurs de l'application" -msgstr "" - -#: www/admin/sitestruct.php:201 -msgid "setup:: ajouter un administrateur de l'application" -msgstr "" - -#: www/admin/sitestruct.php:207 -msgid "setup:: Reinitialisation des droits admins" -msgstr "" - -#: www/admin/sitestruct.php:211 -msgid "boutton::reinitialiser" -msgstr "" - -#: www/admin/sitestruct.php:214 -msgid "setup:: Reglages generaux" -msgstr "" - -#: www/admin/sitestruct.php:216 -msgid "setup::Votre configuration" -msgstr "" - -#: www/admin/sitestruct.php:244 -msgid "setup::Filesystem configuration" -msgstr "" - -#: www/admin/sitestruct.php:258 -msgid "setup::Executables" -msgstr "" - -#: www/admin/sitestruct.php:272 -msgid "setup::PHP extensions" -msgstr "" - -#: www/admin/sitestruct.php:285 -msgid "setup::Serveur de cache" -msgstr "" - -#: www/admin/sitestruct.php:304 -msgid "Phrasea Module" -msgstr "" - -#: www/admin/statbits.php:110 -#: www/admin/statbits.php:147 -msgid "You do not enough rights to update status" -msgstr "" - -#: www/admin/statbits.php:114 -#: www/admin/statbits.php:151 -msgid "Something wrong happend" -msgstr "" - -#: www/admin/statbits.php:118 -#: www/admin/statbits.php:155 -msgid "File is too big : 64k max" -msgstr "" - -#: www/admin/statbits.php:122 -#: www/admin/statbits.php:159 -msgid "Status icon upload failed : upload error" -msgstr "" - -#: www/admin/statbits.php:126 -#: www/admin/statbits.php:163 -msgid "Status icon upload failed : can not write on disk" -msgstr "" - -#: www/admin/statbits.php:184 -#: www/admin/statbits.php:247 -msgid "phraseanet::status bit" -msgstr "" - -#: www/admin/statbits.php:190 -msgid "admin::status: nom du status : " -msgstr "" - -#: www/admin/statbits.php:193 -msgid "admin::status: case A" -msgstr "" - -#: www/admin/statbits.php:194 -msgid "admin::status: case B" -msgstr "" - -#: www/admin/statbits.php:197 -msgid "admin::status: parametres si decoche" -msgstr "" - -#: www/admin/statbits.php:198 -msgid "admin::status: parametres si coche" -msgstr "" - -#: www/admin/statbits.php:201 -#: www/admin/statbits.php:202 -msgid "admin::status: texte a afficher" -msgstr "" - -#: www/admin/statbits.php:205 -#: www/admin/statbits.php:206 -msgid "admin::status: symboliser par" -msgstr "" - -#: www/admin/statbits.php:205 -#: www/admin/statbits.php:206 -msgid "admin::status: aucun symlboler" -msgstr "" - -#: www/admin/statbits.php:213 -#: www/admin/statbits.php:214 -msgid "admin::status:: aucun symbole" -msgstr "" - -#: www/admin/statbits.php:217 -msgid "status:: Afficher le status dans les feuilles de reponses pour tous les utilisateurs" -msgstr "" - -#: www/admin/statbits.php:220 -msgid "status:: retrouver sous forme de filtre dans la recherche" -msgstr "" - -#: www/admin/statbits.php:257 -msgid "status:: numero de bit" -msgstr "" - -#: www/admin/statbits.php:259 -msgid "status:: nom" -msgstr "" - -#: www/admin/statbits.php:260 -msgid "status:: icone A" -msgstr "" - -#: www/admin/statbits.php:261 -msgid "status:: icone B" -msgstr "" - -#: www/admin/statbits.php:262 -msgid "status:: cherchable par tous" -msgstr "" - -#: www/admin/statbits.php:263 -msgid "status:: Affichable pour tous" -msgstr "" - -#: www/admin/statbits.php:290 -msgid "admin::status: confirmer la suppression du status ?" -msgstr "" - -#: www/admin/structure.php:76 -msgid "admin::base: structure" -msgstr "" - -#: www/admin/structure.php:91 -msgid "admin::base: xml invalide, les changements ne seront pas appliques" -msgstr "" - -#: www/admin/sugval.php:934 -msgid "" -"admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" -"Continuer quand meme ?" -msgstr "" - -#: www/admin/sugval.php:966 -msgid "Suggested values" -msgstr "" - -#: www/admin/sugval.php:983 -msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" -msgstr "" - -#: www/admin/sugval.php:1008 -msgid "admin::sugval: champs" -msgstr "" - -#: www/admin/task2utils.php:118 -#: www/admin/task2utils.php:162 -msgid "admin::tasks: xml invalide, restaurer la version precedente ?" -msgstr "" - -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 -msgid "admin::tasks: supprimer la tache ?" -msgstr "" - -#: www/admin/taskmanager.php:278 -msgid "Fermer" -msgstr "" - -#: www/admin/taskmanager.php:279 -msgid "Renouveller" -msgstr "" - -#: www/admin/taskmanager.php:470 -msgid "admin::tasks: planificateur de taches" -msgstr "" - -#: www/admin/taskmanager.php:478 -#, php-format -msgid "Last update at %s." -msgstr "" - -#: www/admin/taskmanager.php:479 -msgid "admin::tasks: Nouvelle tache" -msgstr "" - -#: www/admin/taskmanager.php:486 -msgid "admin::tasks: statut de la tache" -msgstr "" - -#: www/admin/taskmanager.php:487 -msgid "admin::tasks: process_id de la tache" -msgstr "" - -#: www/admin/taskmanager.php:488 -msgid "admin::tasks: etat de progression de la tache" -msgstr "" - -#: www/admin/taskmanager.php:751 -msgid "Preferences du TaskManager" -msgstr "" - -#: www/admin/taskmanager.php:753 -msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" -msgstr "" - -#: www/client/answer.php:186 -msgid "client::answers: rapport de questions par bases" -msgstr "" - -#: www/client/answer.php:191 -#, php-format -msgid "client::answers: %d reponses" -msgstr "" - -#: www/client/answer.php:488 -msgid "reponses:: Votre recherche ne retourne aucun resultat" -msgstr "" - -#: www/client/baskets.php:130 -msgid "paniers::categories: mes paniers" -msgstr "" - -#: www/client/baskets.php:136 -msgid "paniers::categories: paniers recus" -msgstr "" - -#: www/client/baskets.php:153 -#, php-format -msgid "paniers:: %d documents dans le panier" -msgstr "" - -#: www/client/baskets.php:158 -#, php-format -msgid "paniers:: paniers:: %d documents dans le panier" -msgstr "" - -#: www/client/baskets.php:179 -msgid "action : ouvrir dans le comparateur" -msgstr "" - -#: www/client/baskets.php:188 -#, php-format -msgid "paniers:: panier emis par %s" -msgstr "" - -#: www/client/baskets.php:266 -msgid "paniers:: vous avez de nouveaux paniers non consultes" -msgstr "" - -#: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "" - -#: www/client/homeinterpubbask.php:80 -msgid "publications:: dernieres publications" -msgstr "" - -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "" - -#: www/client/homeinterpubbask.php:140 -msgid "publications:: derniere mise a jour" -msgstr "" - -#: www/client/index.php:152 -msgid "client:: recherche" -msgstr "" - -#: www/client/index.php:159 -msgid "client:: recherche avancee" -msgstr "" - -#: www/client/index.php:166 -msgid "client:: topics" -msgstr "" - -#: www/client/index.php:188 -#: www/client/index.php:196 -msgid "phraseanet::technique:: et" -msgstr "" - -#: www/client/index.php:189 -#: www/client/index.php:197 -msgid "phraseanet::technique:: or" -msgstr "" - -#: www/client/index.php:190 -#: www/client/index.php:198 -msgid "phraseanet::technique:: except" -msgstr "" - -#: www/client/index.php:210 -msgid "client::recherche: rechercher dans les bases :" -msgstr "" - -#: www/client/index.php:263 -msgid "client::recherche: rechercher dans toutes les bases" -msgstr "" - -#: www/client/index.php:272 -msgid "phraseanet:: presentation des resultats" -msgstr "" - -#: www/client/index.php:328 -msgid "phraseanet:: collections" -msgstr "" - -#: www/client/index.php:328 -msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" -msgstr "" - -#: www/client/index.php:342 -msgid "phraseanet:: historique" -msgstr "" - -#: www/client/index.php:374 -msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" -msgstr "" - -#: www/client/index.php:465 -msgid "client::recherche: filter sur" -msgstr "" - -#: www/client/index.php:468 -msgid "client::recherche: filtrer par dates" -msgstr "" - -#: www/client/index.php:470 -msgid "client::recherche: filtrer par status" -msgstr "" - -#: www/client/index.php:472 -msgid "client::recherche: filtrer par champs" -msgstr "" - -#: www/client/index.php:472 -msgid "client::recherche: filtrer par champs : tous les champs" -msgstr "" - -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 -msgid "phraseanet:: Telechargement de documents" -msgstr "" - -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 -msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." -msgstr "" - -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 -#, php-format -msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" -msgstr "" - -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 -msgid "telechargement::Le fichier contient les elements suivants" -msgstr "" - -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 -msgid "phrseanet:: base" -msgstr "" - -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 -msgid "document:: nom" -msgstr "" - -#: www/include/download_anonymous.php:137 -#: www/include/download_prepare.php:165 -msgid "phrseanet:: sous definition" -msgstr "" - -#: www/include/download_anonymous.php:138 -#: www/include/download_prepare.php:166 -msgid "poids" -msgstr "" - -#: www/include/download_anonymous.php:172 -msgid "Votre lien est corrompu" -msgstr "" - -#: www/include/error.php:29 -msgid "error:204::Le contenu que vous demandez n'existe pas ou a expire" -msgstr "" - -#: www/include/error.php:33 -msgid "error:400::La requete que vous faites ne peut etre traitee car les parametres necessaire a son traitement, sont mauvais ou manquants." -msgstr "" - -#: www/include/error.php:37 -msgid "error:403::Vous avez demande une page a laquelle vous n'avez pas acces." -msgstr "" - -#: www/include/error.php:38 -msgid "error:403::Soit vous n'avez pas les droits, soit vous avez ete deconnecte." -msgstr "" - -#: www/include/error.php:42 -msgid "error:404::Vous avez demande une page qui n'existe pas ou plus" -msgstr "" - -#: www/include/error.php:46 -msgid "error:500::Erreur interne du serveur" -msgstr "" - -#: www/include/error.php:47 -msgid "error:500::Une erreur interne est survenue. Ceci se produit lorsque la connetion a la base de donnee a ete interrompue ou lorsqu'un module rencontre un probleme." -msgstr "" - -#: www/include/error.php:48 -msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" -msgstr "" - -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "" - -#: www/include/updses.php:92 -msgid "The application is going down for maintenance, please logout." -msgstr "" - -#: www/login/account.php:181 -msgid "etes vous sur de vouloir supprimer cette application" -msgstr "" - -#: www/login/account.php:188 -msgid "Erreur lors du chargement" -msgstr "" - -#: www/login/account.php:412 -msgid "Informations" -msgstr "" - -#: www/login/account.php:413 -msgid "Acces" -msgstr "" - -#: www/login/account.php:414 -msgid "Sessions" -msgstr "" - -#: www/login/account.php:416 -msgid "Developpeur" -msgstr "" - -#: www/login/account.php:431 -#: www/login/index.php:110 -msgid "login::notification: Mise a jour du mot de passe avec succes" -msgstr "" - -#: www/login/account.php:434 -msgid "login::notification: Changements enregistres" -msgstr "" - -#: www/login/account.php:437 -msgid "forms::erreurs lors de l'enregistrement des modifications" -msgstr "" - -#: www/login/account.php:440 -msgid "login::notification: Vos demandes ont ete prises en compte" -msgstr "" - -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 -msgid "admin::compte-utilisateur changer mon mot de passe" -msgstr "" - -#: www/login/account.php:497 -msgid "login:: Changer mon adresse email" -msgstr "" - -#: www/login/account.php:603 -msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" -msgstr "" - -#: www/login/account.php:644 -msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" -msgstr "" - -#: www/login/account.php:665 -msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" -msgstr "" - -#: www/login/account.php:667 -msgid "phraseanet:: original" -msgstr "" - -#: www/login/account.php:669 -msgid "phraseanet:: imagette" -msgstr "" - -#: www/login/forgotpwd.php:71 -msgid "forms::la valeur donnee contient des caracteres invalides" -msgstr "" - -#: www/login/forgotpwd.php:175 -msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." -msgstr "" - -#: www/login/forgotpwd.php:176 -msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." -msgstr "" - -#: www/login/forgotpwd.php:184 -msgid "admin::compte-utilisateur nouveau mot de passe" -msgstr "" - -#: www/login/forgotpwd.php:204 -msgid "admin::compte-utilisateur confirmer le mot de passe" -msgstr "" - -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 -msgid "login:: Retour a l'accueil" -msgstr "" - -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 -msgid "phraseanet::erreur: Echec du serveur mail" -msgstr "" - -#: www/login/forgotpwd.php:253 -msgid "phraseanet::erreur: Le compte n'a pas ete trouve" -msgstr "" - -#: www/login/forgotpwd.php:259 -msgid "phraseanet::erreur: l'url n'est plus valide" -msgstr "" - -#: www/login/forgotpwd.php:268 -msgid "phraseanet:: Un email vient de vous etre envoye" -msgstr "" - -#: www/login/forgotpwd.php:278 -msgid "login:: Entrez votre adresse email" -msgstr "" - -#: www/login/index.php:68 -msgid "login::erreur: Erreur d'authentification" -msgstr "" - -#: www/login/index.php:71 -msgid "login::erreur: Erreur de captcha" -msgstr "" - -#: www/login/index.php:74 -msgid "login::erreur: Vous n'avez pas confirme votre email" -msgstr "" - -#: www/login/index.php:76 -msgid "login:: Envoyer a nouveau le mail de confirmation" -msgstr "" - -#: www/login/index.php:79 -msgid "login::erreur: Aucune base n'est actuellment accessible" -msgstr "" - -#: www/login/index.php:82 -msgid "login::erreur: No available connection - Please contact sys-admin" -msgstr "" - -#: www/login/index.php:85 -msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" -msgstr "" - -#: www/login/index.php:97 -msgid "login::notification: cette email est deja confirmee" -msgstr "" - -#: www/login/index.php:100 -msgid "login::notification: demande de confirmation par mail envoyee" -msgstr "" - -#: www/login/index.php:103 -#: www/login/index.php:106 -msgid "login::notification: votre email est desormais confirme" -msgstr "" - -#: www/login/index.php:123 -msgid "login::captcha: obtenir une autre captcha" -msgstr "" - -#: www/login/index.php:126 -msgid "login::captcha: recopier les mots ci dessous" -msgstr "" - -#: www/login/index.php:139 -msgid "Accueil" -msgstr "" - -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 -msgid "forms::l'email semble invalide" -msgstr "" - -#: www/login/register.php:124 -msgid "forms::un utilisateur utilisant cette adresse email existe deja" -msgstr "" - -#: www/login/register.php:129 -msgid "forms::un utilisateur utilisant ce login existe deja" -msgstr "" - -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" -msgstr "" - -#: www/login/register.php:298 -#: www/login/reset-password.php:90 -msgid "forms::le mot de passe est simple" -msgstr "" - -#: www/login/register.php:375 -#: www/login/register.php:392 -#: www/login/reset-password.php:170 -msgid "8 caracteres minimum" -msgstr "" - -#: www/login/register.php:400 -msgid "Resistance du mot de passe" -msgstr "" - -#: www/login/register.php:426 -msgid "admin::compte-utilisateur A propos de la securite des mots de passe" -msgstr "" - -#: www/login/reset-email.php:62 -msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" -msgstr "" - -#: www/login/reset-email.php:63 -msgid "accueil:: retour a l'accueil" -msgstr "" - -#: www/login/reset-email.php:96 -msgid "admin::compte-utilisateur: erreur lors de la mise a jour" -msgstr "" - -#: www/login/reset-email.php:142 -msgid "phraseanet::erreur: echec du serveur de mail" -msgstr "" - -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 -msgid "forms::les emails ne correspondent pas" -msgstr "" - -#: www/login/reset-email.php:152 -#: www/login/reset-password.php:66 -msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" -msgstr "" - -#: www/login/reset-email.php:217 -msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" -msgstr "" - -#: www/login/reset-email.php:221 -msgid "admin::compte-utilisateur retour a mon compte" -msgstr "" - -#: www/login/reset-email.php:230 -#: www/login/reset-password.php:148 -msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" -msgstr "" - -#: www/login/reset-email.php:251 -msgid "admin::compte-utilisateur nouvelle adresse email" -msgstr "" - -#: www/login/reset-email.php:256 -msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" -msgstr "" - -#: www/login/reset-email.php:265 -msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" -msgstr "" - -#: www/login/reset-email.php:266 -msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." -msgstr "" - -#: www/login/reset-password.php:160 -msgid "admin::compte-utilisateur ancien mot de passe" -msgstr "" - -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "" - -#: www/prod/chghddocument.php:42 -msgid "prod::substitution::erreur : document de substitution invalide" -msgstr "" - -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 -msgid "prod::substitution::document remplace avec succes" -msgstr "" - -#: www/prod/chgstatus.php:130 -#, php-format -msgid "prod::proprietes : %d documents modifies" -msgstr "" - -#: www/prod/chgthumb.php:42 -msgid "prod::substitution::erreur : impossible d'ajouter ce document" -msgstr "" - -#: www/prod/docfunction.php:327 -msgid "prod::proprietes:: status" -msgstr "" - -#: www/prod/docfunction.php:328 -msgid "prod::proprietes:: type" -msgstr "" - -#: www/prod/docfunction.php:356 -#, php-format -msgid "prod::status: edition de status de %d regroupements" -msgstr "" - -#: www/prod/docfunction.php:358 -#, php-format -msgid "prod::status: edition de status de %d documents" -msgstr "" - -#: www/prod/docfunction.php:405 -msgid "prod::status: remettre a zero les status non nommes" -msgstr "" - -#: www/prod/docfunction.php:405 -msgid "prod::status: remetter a zero tous les status" -msgstr "" - -#: www/prod/docfunction.php:408 -msgid "prod::status: aucun status n'est defini sur cette base" -msgstr "" - -#: www/prod/docfunction.php:424 -msgid "prod::status: changer egalement le status des document rattaches aux regroupements" -msgstr "" - -#: www/prod/docfunction.php:454 -#, php-format -msgid "prod::status: %d documents ne peuvent avoir une edition des status" -msgstr "" - -#: www/prod/docfunction.php:461 -msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" -msgstr "" - -#: www/prod/docfunction.php:496 -msgid "prod::type: appliquer a tous les documents selectionnes" -msgstr "" - -#: www/prod/imgfunction.php:137 -msgid "prod::tools: regeneration de sous definitions" -msgstr "" - -#: www/prod/imgfunction.php:138 -msgid "prod::tools: outils image" -msgstr "" - -#: www/prod/imgfunction.php:143 -msgid "prod::tools: substitution HD" -msgstr "" - -#: www/prod/imgfunction.php:148 -msgid "prod::tools: substitution de sous definition" -msgstr "" - -#: www/prod/imgfunction.php:153 -msgid "prod::tools: meta-datas" -msgstr "" - -#: www/prod/imgfunction.php:163 -msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." -msgstr "" - -#: www/prod/imgfunction.php:164 -msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." -msgstr "" - -#: www/prod/imgfunction.php:174 -msgid "prod::tools:regeneration: Reconstruire les sous definitions" -msgstr "" - -#: www/prod/imgfunction.php:177 -msgid "prod::tools: option : recreer aucune les sous-definitions" -msgstr "" - -#: www/prod/imgfunction.php:178 -msgid "prod::tools: option : recreer toutes les sous-definitions" -msgstr "" - -#: www/prod/imgfunction.php:192 -msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" -msgstr "" - -#: www/prod/imgfunction.php:193 -msgid "prod::tools::image: rotation 90 degres horaire" -msgstr "" - -#: www/prod/imgfunction.php:195 -msgid "prod::tools::image rotation 90 degres anti-horaires" -msgstr "" - -#: www/prod/imgfunction.php:219 -msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" -msgstr "" - -#: www/prod/prodFeedBack.php:271 -msgid "les enregistrements ont ete correctement commandes" -msgstr "" - -#: www/prod/prodFeedBack.php:275 -msgid "Erreur lors de la commande des enregistrements" -msgstr "" - -#: www/prod/prodFeedBack.php:306 -msgid "Les documents ne peuvent etre envoyes par FTP" -msgstr "" - -#: www/prod/prodFeedBack.php:315 -msgid "Export enregistre dans la file dattente" -msgstr "" - -#: www/prod/prodFeedBack.php:340 -msgid "Connection au FTP avec succes" -msgstr "" - -#: www/prod/prodFeedBack.php:344 -#, php-format -msgid "Erreur lors de la connection au FTP : %s" -msgstr "" - -#: www/prod/share.php:131 -msgid "Aucune URL disponible" -msgstr "" - -#: www/prod/share.php:146 -msgid "Aucun code disponible" -msgstr "" - -#: www/report/ajax_table_content.php:62 -#: www/report/ajax_table_content.php:638 -#: www/report/tab.php:63 -#: www/report/tab.php:845 -msgid "report:: titre" -msgstr "" - -#: www/report/ajax_table_content.php:63 -#: www/report/ajax_table_content.php:639 -#: www/report/tab.php:64 -#: www/report/tab.php:846 -msgid "report:: poids" -msgstr "" - -#: www/report/ajax_table_content.php:66 -#: www/report/ajax_table_content.php:689 -#: www/report/tab.php:67 -#: www/report/tab.php:909 -msgid "report:: identifiant" -msgstr "" - -#: www/report/ajax_table_content.php:67 -#: www/report/ajax_table_content.php:690 -#: www/report/tab.php:68 -#: www/report/tab.php:910 -msgid "report:: nom" -msgstr "" - -#: www/report/ajax_table_content.php:68 -#: www/report/ajax_table_content.php:691 -#: www/report/tab.php:69 -#: www/report/tab.php:911 -msgid "report:: email" -msgstr "" - -#: www/report/ajax_table_content.php:69 -#: www/report/ajax_table_content.php:692 -#: www/report/tab.php:70 -#: www/report/tab.php:912 -msgid "report:: adresse" -msgstr "" - -#: www/report/ajax_table_content.php:70 -#: www/report/ajax_table_content.php:693 -#: www/report/tab.php:71 -#: www/report/tab.php:913 -msgid "report:: telephone" -msgstr "" - -#: www/report/ajax_table_content.php:74 -#: www/report/ajax_table_content.php:367 -#: www/report/tab.php:437 -msgid "report:: IP" -msgstr "" - -#: www/report/ajax_table_content.php:302 -#: www/report/tab.php:351 -msgid "configuration" -msgstr "" - -#: www/report/ajax_table_content.php:329 -#: www/report/tab.php:379 -#, php-format -msgid "filtrer les resultats sur la colonne %s" -msgstr "" - -#: www/report/ajax_table_content.php:365 -#: www/report/ajax_table_content.php:475 -#: www/report/tab.php:435 -msgid "phraseanet::utilisateurs" -msgstr "" - -#: www/report/ajax_table_content.php:440 -#: www/report/tab.php:559 -msgid "report:: plateforme" -msgstr "" - -#: www/report/ajax_table_content.php:448 -#: www/report/tab.php:567 -msgid "report:: module" -msgstr "" - -#: www/report/ajax_table_content.php:489 -#: www/report/ajax_table_content.php:507 -#: www/report/tab.php:632 -#: www/report/tab.php:664 -msgid "report:: nombre de reponses" -msgstr "" - -#: www/report/ajax_table_content.php:531 -#: www/report/tab.php:715 -msgid "report:: total des telechargements" -msgstr "" - -#: www/report/ajax_table_content.php:532 -#: www/report/tab.php:716 -msgid "report:: preview" -msgstr "" - -#: www/report/ajax_table_content.php:533 -#: www/report/tab.php:717 -msgid "report:: document original" -msgstr "" - -#: www/report/ajax_table_content.php:548 -#: www/report/tab.php:745 -msgid "report:: nombre de documents" -msgstr "" - -#: www/report/ajax_table_content.php:549 -#: www/report/tab.php:746 -msgid "report:: poids des documents" -msgstr "" - -#: www/report/ajax_table_content.php:550 -#: www/report/tab.php:747 -msgid "report:: nombre de preview" -msgstr "" - -#: www/report/ajax_table_content.php:551 -#: www/report/tab.php:748 -msgid "report:: poids des previews" -msgstr "" - -#: www/report/ajax_table_content.php:589 -#: www/report/tab.php:796 -msgid "report:: historique des connexions" -msgstr "" - -#: www/report/ajax_table_content.php:596 -#: www/report/ajax_table_content.php:681 -#: www/report/tab.php:803 -#: www/report/tab.php:892 -msgid "report:: historique des telechargements" -msgstr "" - -#: www/report/ajax_table_content.php:602 -#: www/report/tab.php:809 -msgid "report:: historique des questions" -msgstr "" - -#: www/report/ajax_table_content.php:712 -#: www/report/tab.php:941 -msgid "report::version " -msgstr "" - -#: www/report/tab.php:439 -msgid "report::fonction" -msgstr "" - -#: www/report/tab.php:440 -msgid "report::activite" -msgstr "" - -#: www/report/tab.php:441 -msgid "report::pays" -msgstr "" - -#: www/report/tab.php:442 -msgid "report::societe" -msgstr "" - -#: www/thesaurus2/accept.php:46 -msgid "thesaurus:: accepter..." -msgstr "" - -#: www/thesaurus2/accept.php:165 -msgid "thesaurus:: removed_src" -msgstr "" - -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 -msgid "thesaurus:: refresh" -msgstr "" - -#: www/thesaurus2/accept.php:223 -msgid "thesaurus:: removed tgt" -msgstr "" - -#: www/thesaurus2/accept.php:259 -msgid "thesaurus:: Accepter le terme comme" -msgstr "" - -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 -msgid "thesaurus:: comme terme specifique" -msgstr "" - -#: www/thesaurus2/accept.php:265 -#, php-format -msgid "thesaurus:: comme synonyme de %s" -msgstr "" - -#: www/thesaurus2/accept.php:270 -msgid "thesaurus:: Accepter la branche comme" -msgstr "" - -#: www/thesaurus2/accept.php:294 -#, php-format -msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" -msgstr "" - -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 -msgid "thesaurus:: export au format texte" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:137 -msgid "thesaurus:: options d'export : " -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:138 -msgid "thesaurus:: example" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:151 -msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:155 -msgid "thesaurus:: exporter avec une ligne par synonyme" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:159 -msgid "thesaurus:: export : numeroter les lignes " -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:163 -msgid "thesaurus:: export : inclure la langue" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:167 -msgid "thesaurus:: export : inclure les hits" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:173 -msgid "thesaurus:: export : format topics" -msgstr "" - -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 -msgid "thesaurus:: export en topics" -msgstr "" - -#: www/thesaurus2/export_topics.php:159 -#, php-format -msgid "thesaurus:: fichier genere le %s" -msgstr "" - -#: www/thesaurus2/export_topics.php:178 -#, php-format -msgid "thesaurus:: fichier genere : %s" -msgstr "" - -#: www/thesaurus2/export_topics.php:180 -msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:117 -msgid "thesaurus:: exporter" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:120 -msgid "thesaurus:: exporter vers topics pour toutes les langues" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:128 -msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:135 -msgid "phraseanet:: tri" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:145 -msgid "thesaurus:: recherche" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:148 -msgid "thesaurus:: recherche thesaurus *:\"query\"" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:152 -msgid "thesaurus:: recherche fulltext" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:156 -msgid "thesaurus:: question complete (avec operateurs)" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:163 -msgid "thesaurus:: presentation" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:166 -msgid "thesaurus:: presentation : branches refermables" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:170 -msgid "thesaurus:: presentation : branche ouvertes" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:174 -msgid "thesaurus:: tout deployer - refermable" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:178 -msgid "thesaurus:: tout deployer - statique" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:182 -msgid "thesaurus:: tout fermer" -msgstr "" - -#: www/thesaurus2/import.php:158 -#, php-format -msgid "over-indent at line %s" -msgstr "" - -#: www/thesaurus2/import.php:166 -#, php-format -msgid "bad encoding at line %s" -msgstr "" - -#: www/thesaurus2/import.php:173 -#, php-format -msgid "bad character at line %s" -msgstr "" - -#: www/thesaurus2/import_dlg.php:42 -msgid "thesaurus:: Importer" -msgstr "" - -#: www/thesaurus2/import_dlg.php:85 -msgid "thesaurus:: coller ici la liste des termes a importer" -msgstr "" - -#: www/thesaurus2/import_dlg.php:86 -msgid "thesaurus:: langue par default" -msgstr "" - -#: www/thesaurus2/import_dlg.php:93 -msgid "Fichier ASCII tabule" -msgstr "" - -#: www/thesaurus2/import_dlg.php:110 -msgid "thesaurus:: supprimer les liens des champs tbranch" -msgstr "" - -#: www/thesaurus2/import_dlg.php:113 -msgid "thesaurus:: reindexer la base apres l'import" -msgstr "" - -#: www/thesaurus2/index.php:96 -msgid "thesaurus:: Editer le thesaurus" -msgstr "" - -#: www/thesaurus2/index.php:118 -msgid "phraseanet:: choisir" -msgstr "" - -#: www/thesaurus2/index.php:144 -msgid "thesaurus:: langue pivot" -msgstr "" - -#: www/thesaurus2/index.php:161 -msgid "thesaurus:: Vous n'avez acces a aucune base" -msgstr "" - -#: www/thesaurus2/linkfield.php:32 -msgid "thesaurus:: Lier la branche de thesaurus au champ" -msgstr "" - -#: www/thesaurus2/linkfield.php:112 -#, php-format -msgid "thesaurus:: Lier la branche de thesaurus au champ %s" -msgstr "" - -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 -msgid "thesaurus:: Lier la branche de thesaurus" -msgstr "" - -#: www/thesaurus2/linkfield2.php:116 -#, php-format -msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " -msgstr "" - -#: www/thesaurus2/linkfield2.php:145 -msgid "thesaurus:: nouvelle branche" -msgstr "" - -#: www/thesaurus2/linkfield2.php:150 -msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" -msgstr "" - -#: www/thesaurus2/linkfield2.php:158 -msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" -msgstr "" - -#: www/thesaurus2/linkfield2.php:162 -msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" -msgstr "" - -#: www/thesaurus2/linkfield2.php:177 -msgid "thesaurus:: reindexation necessaire" -msgstr "" - -#: www/thesaurus2/linkfield2.php:181 -msgid "thesaurus:: pas de reindexation" -msgstr "" - -#: www/thesaurus2/linkfield3.php:78 -#, php-format -msgid "thesaurus:: suppression du lien du champ %s" -msgstr "" - -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 -#, php-format -msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" -msgstr "" - -#: www/thesaurus2/linkfield3.php:112 -msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." -msgstr "" - -#: www/thesaurus2/linkfield3.php:124 -msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" -msgstr "" - -#: www/thesaurus2/linkfield3.php:135 -msgid "thesaurus:: reindexer tous les enregistrements" -msgstr "" - -#: www/thesaurus2/loadth.php:136 -msgid "thesaurus:: corbeille" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:34 -msgid "thesaurus:: Nouveau terme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:34 -msgid "thesaurus:: terme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 -msgid "thesaurus:: Nouveau synonyme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:37 -msgid "thesaurus:: synonyme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:91 -msgid "thesaurus:: contexte" -msgstr "" - -#: www/thesaurus2/newterm.php:38 -msgid "thesaurus:: Nouveau terme specifique" -msgstr "" - -#: www/thesaurus2/newterm.php:72 -#, php-format -msgid "thesaurus:: le terme %s" -msgstr "" - -#: www/thesaurus2/newterm.php:74 -#, php-format -msgid "thesaurus:: avec contexte %s" -msgstr "" - -#: www/thesaurus2/newterm.php:76 -msgid "thesaurus:: sans contexte" -msgstr "" - -#: www/thesaurus2/newterm.php:104 -msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " -msgstr "" - -#: www/thesaurus2/newterm.php:106 -msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " -msgstr "" - -#: www/thesaurus2/newterm.php:146 -msgid "thesaurus:: selectionner la provenance a accepter" -msgstr "" - -#: www/thesaurus2/newterm.php:162 -#: www/thesaurus2/newterm.php:164 -msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" -msgstr "" - -#: www/thesaurus2/newterm.php:169 -msgid "thesaurus:: n'est pas present dans les candidats" -msgstr "" - -#: www/thesaurus2/newterm.php:173 -msgid "thesaurus:: attention :" -msgstr "" - -#: www/thesaurus2/newterm.php:184 -msgid "thesaurus:: Ajouter le terme dans reindexer" -msgstr "" - -#: www/thesaurus2/newterm.php:186 -msgid "thesaurus:: ajouter le terme et reindexer" -msgstr "" - -#: www/thesaurus2/properties.php:47 -msgid "thesaurus:: Proprietes" -msgstr "" - -#: www/thesaurus2/properties.php:92 -msgid "thesaurus::menu: supprimer" -msgstr "" - -#: www/thesaurus2/properties.php:93 -msgid "thesaurus:: remplacer" -msgstr "" - -#: www/thesaurus2/properties.php:120 -#, php-format -msgid "thesaurus:: %s reponses retournees" -msgstr "" - -#: www/thesaurus2/properties.php:147 -msgid "thesaurus:: synonymes" -msgstr "" - -#: www/thesaurus2/properties.php:148 -msgid "thesaurus:: hits" -msgstr "" - -#: www/thesaurus2/properties.php:149 -msgid "thesaurus:: ids" -msgstr "" - -#: www/thesaurus2/properties.php:321 -#, php-format -msgid "thesaurus:: Confirmer la suppression du terme %s" -msgstr "" - -#: www/thesaurus2/search.php:77 -msgid "thesaurus:: le terme" -msgstr "" - -#: www/thesaurus2/search.php:78 -msgid "thesaurus:: est egal a " -msgstr "" - -#: www/thesaurus2/search.php:82 -msgid "thesaurus:: commence par" -msgstr "" - -#: www/thesaurus2/search.php:86 -msgid "thesaurus:: contient" -msgstr "" - -#: www/thesaurus2/search.php:91 -msgid "thesaurus:: fini par" -msgstr "" - -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 -msgid "thesaurus::menu: proprietes" -msgstr "" - -#: www/thesaurus2/thesaurus.php:225 -msgid "thesaurus::menu: refuser" -msgstr "" - -#: www/thesaurus2/thesaurus.php:226 -msgid "thesaurus::menu: accepter" -msgstr "" - -#: www/thesaurus2/thesaurus.php:229 -msgid "thesaurus::menu: supprimer les candidats a 0 hits" -msgstr "" - -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 -msgid "thesaurus::menu: remplacer" -msgstr "" - -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 -msgid "thesaurus::menu: chercher" -msgstr "" - -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 -msgid "thesaurus::menu: exporter" -msgstr "" - -#: www/thesaurus2/thesaurus.php:239 -msgid "thesaurus::menu: relire les candidats" -msgstr "" - -#: www/thesaurus2/thesaurus.php:245 -msgid "thesaurus::menu: importer" -msgstr "" - -#: www/thesaurus2/thesaurus.php:250 -msgid "thesaurus::menu: Nouveau terme" -msgstr "" - -#: www/thesaurus2/thesaurus.php:251 -msgid "thesaurus::menu: Nouveau synonyme" -msgstr "" - -#: www/thesaurus2/thesaurus.php:257 -msgid "thesaurus::menu: export topics" -msgstr "" - -#: www/thesaurus2/thesaurus.php:259 -msgid "thesaurus::menu: lier au champ" -msgstr "" - -#: www/thesaurus2/thesaurus.php:294 -msgid "thesaurus:: onglet stock" -msgstr "" - -#: www/thesaurus2/thesaurus.php:299 -msgid "thesaurus:: afficher les termes refuses" -msgstr "" - -#: www/thesaurus2/thesaurus.php:313 -msgid "thesaurus:: onglet thesaurus" -msgstr "" - -#: www/thesaurus2/thesaurus.php:513 -msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" -msgstr "" - -#: www/thesaurus2/thesaurus.php:515 -msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" -msgstr "" - -#: www/thesaurus2/thesaurus.php:557 -msgid "thesaurus:: Tous les termes ont des hits" -msgstr "" - -#: www/thesaurus2/thesaurus.php:563 -msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" -msgstr "" - -#: www/thesaurus2/thesaurus.php:652 -msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" -msgstr "" - -#: www/thesaurus2/thesaurus.php:1096 -msgid "thesaurus:: deplacer le terme dans la corbeille ?" -msgstr "" - -#: www/upload/index.php:75 -msgid "upload:You do not have right to upload datas" -msgstr "" - -#: www/upload/index.php:186 -msgid "Selectionner une action" -msgstr "" - -#: www/upload/index.php:187 -msgid "Aucune enregistrement selectionne" -msgstr "" - -#: www/upload/index.php:188 -msgid "Transfert en court, vous devez attendre la fin du transfert" -msgstr "" - -#: www/upload/index.php:189 -msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" -msgstr "" - -#: www/upload/index.php:241 -#, php-format -msgid "upload:: %d fichiers uploades" -msgstr "" - -#: www/upload/index.php:243 -#: www/upload/index.php:414 -#, php-format -msgid "upload:: %d fichier uploade" -msgstr "" - -#: www/upload/index.php:247 -msgid "Certains elements uploades sont passes en quarantaine" -msgstr "" - -#: www/upload/index.php:276 -#, php-format -msgid "upload :: choisir les fichiers a uploader (max : %d MB)" -msgstr "" - -#: www/upload/index.php:343 -msgid "Upload Manager" -msgstr "" - -#: www/upload/index.php:344 -msgid "Quarantaine" -msgstr "" - -#: www/upload/index.php:351 -msgid "Utiliser l'upload classique" -msgstr "" - -#: www/upload/index.php:355 -msgid "Retour a l'upload flash" -msgstr "" - -#: www/upload/index.php:363 -msgid "upload:: Re-ordonner les fichiers" -msgstr "" - -#: www/upload/index.php:370 -msgid "upload:: inverser" -msgstr "" - -#: www/upload/index.php:377 -msgid "upload:: Selectionner des fichiers" -msgstr "" - -#: www/upload/index.php:390 -msgid "upload:: Que faire avec les fichiers" -msgstr "" - -#: www/upload/index.php:392 -msgid "upload:: Destination (collection) :" -msgstr "" - -#: www/upload/index.php:393 -msgid "upload:: Status :" -msgstr "" - -#: www/upload/index.php:407 -msgid "upload:: demarrer" -msgstr "" - -#: www/upload/index.php:416 -msgid "upload:: annuler tous les telechargements" -msgstr "" - -#: www/upload/index.php:434 -msgid "Action" -msgstr "" - -#: www/upload/index.php:437 -msgid "Ajouter les documents bloques" -msgstr "" - -#: www/upload/index.php:440 -msgid "Substituer quand possible ou Ajouter les documents bloques" -msgstr "" - -#: www/upload/index.php:443 -msgid "Supprimer les documents bloques" -msgstr "" - -#: www/upload/index.php:450 -msgid "Supprimer precedentes propositions a la substitution" -msgstr "" - -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 -msgid "Internal Server Error" -msgstr "" - -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 -msgid "erreur lors de l'archivage" -msgstr "" - -#: www/upload/upload.php:144 -msgid "Document ajoute a la quarantaine" -msgstr "" - -#: www/upload/upload.php:147 -msgid "Fichier uploade, en attente" -msgstr "" - -#: www/upload/upload.php:187 -msgid "Fichier uploade !" -msgstr "" - diff --git a/locale/phraseanet.pot b/locale/phraseanet.pot index 5b8ec6dbeb..9f643aa565 100644 --- a/locale/phraseanet.pot +++ b/locale/phraseanet.pot @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-02 17:49+0100\n" -"PO-Revision-Date: 2012-02-02 17:49+0100\n" +"POT-Creation-Date: 2012-03-08 14:31+0100\n" +"PO-Revision-Date: 2012-03-08 14:31+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -26,89 +26,82 @@ msgstr "" "X-Poedit-SearchPath-6: tmp\n" "X-Poedit-SearchPath-7: www\n" -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 +#: lib/classes/appbox.class.php:309 +#: lib/classes/appbox.class.php:383 msgid "Flushing cache" msgstr "" -#: lib/classes/appbox.class.php:323 -#, fuzzy +#: lib/classes/appbox.class.php:316 msgid "Creating new tables" -msgstr "Create new subview" +msgstr "" -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 +#: lib/classes/appbox.class.php:333 +#: lib/classes/appbox.class.php:341 msgid "Purging directories" msgstr "" -#: lib/classes/appbox.class.php:356 +#: lib/classes/appbox.class.php:349 msgid "Copying files" msgstr "" -#: lib/classes/appbox.class.php:365 +#: lib/classes/appbox.class.php:358 msgid "Upgrading appbox" msgstr "" -#: lib/classes/appbox.class.php:374 +#: lib/classes/appbox.class.php:367 #, php-format msgid "Upgrading %s" msgstr "" -#: lib/classes/appbox.class.php:382 +#: lib/classes/appbox.class.php:375 msgid "Post upgrade" msgstr "" -#: lib/classes/appbox.class.php:433 +#: lib/classes/appbox.class.php:425 msgid "Nom de base de donnee incorrect" msgstr "Wrong database name" -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, fuzzy, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "Can't Write in folder %s" - -#: lib/classes/appbox.class.php:590 +#: lib/classes/appbox.class.php:518 msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" msgstr "You do not have required permissions to create Database or it already exists" -#: lib/classes/base.class.php:294 +#: lib/classes/base.class.php:306 #, php-format msgid "Updating table %s" msgstr "" -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 +#: lib/classes/base.class.php:323 +#: lib/classes/base.class.php:573 +#: lib/classes/base.class.php:817 +#: lib/classes/base.class.php:834 #, php-format msgid "Erreur lors de la tentative ; errreur : %s" msgstr "Error when trying; error : %s" -#: lib/classes/base.class.php:333 +#: lib/classes/base.class.php:345 #, php-format msgid "Creating table %s" msgstr "" -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 +#: lib/classes/base.class.php:353 +#: lib/classes/base.class.php:894 #, php-format msgid "Applying patches on %s" msgstr "" -#: lib/classes/base.class.php:842 +#: lib/classes/base.class.php:854 msgid "Looking for patches" msgstr "" -#: lib/classes/databox.class.php:1401 +#: lib/classes/databox.class.php:1394 msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" msgstr "Error : All \"subdefgroup\" tags must have an attribute \"name\"" -#: lib/classes/databox.class.php:1414 +#: lib/classes/databox.class.php:1407 msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" msgstr "Error : Attribute \"name\" from node \"subdef\" is required and single" -#: lib/classes/databox.class.php:1419 +#: lib/classes/databox.class.php:1412 msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" msgstr "Error : Attribute \"class\" from node \"subdef\" is required and must be \"thumbnail\" or \"preview\" or \"document\"" @@ -128,16 +121,11 @@ msgstr "Unable to add record to database" msgid "Impossible de trouver la base" msgstr "Unable to access database" -#: lib/classes/login.class.php:48 -#: lib/classes/mail.class.php:70 -msgid "login:: Forgot your password" -msgstr "Forgotten password ?" - -#: lib/classes/login.class.php:57 +#: lib/classes/login.class.php:38 msgid "login:: register" msgstr "Register" -#: lib/classes/login.class.php:69 +#: lib/classes/login.class.php:50 msgid "login:: guest Access" msgstr "Guest access" @@ -167,6 +155,10 @@ msgstr "You have received document(s), click the following link to dowload " msgid "Attention, ce lien lien est valable jusqu'au %s" msgstr "Warning, this link is valid until %s" +#: lib/classes/mail.class.php:70 +msgid "login:: Forgot your password" +msgstr "Forgotten password ?" + #: lib/classes/mail.class.php:72 msgid "login:: Quelqu'un a demande a reinitialiser le mode passe correspondant au login suivant : " msgstr "Someone has asked to reset password for the following login : " @@ -206,14 +198,14 @@ msgid "login::register: vos demandes concernat les collections suivantes sont su msgstr "Your request on the following collections is subject to administrator approbation" #: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 +#: lib/classes/mail.class.php:166 msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" msgstr "You will be informed by e-mail as soon as your request will have been processed" #: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 +#: lib/classes/mail.class.php:148 +#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:179 msgid "login::register: sujet email : confirmation de votre adresse email" msgstr "E-mail adress check" @@ -221,28 +213,28 @@ msgstr "E-mail adress check" msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." msgstr "Hello, we received your request to change your e-mail adress. Click the following link to process. If you did not ask for e-mail change, please ignore this message." -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 +#: lib/classes/mail.class.php:150 +#: lib/classes/mail.class.php:164 msgid "login::register: merci d'avoir confirme votre adresse email" msgstr "Thank you for confirming your e-mail" -#: lib/classes/mail.class.php:149 +#: lib/classes/mail.class.php:151 msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " msgstr "You can now connect using the folllowing adress : " -#: lib/classes/mail.class.php:163 +#: lib/classes/mail.class.php:165 msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " msgstr "You have to wait for administrator confirmation; your request on the following collections is still under process : " -#: lib/classes/mail.class.php:179 +#: lib/classes/mail.class.php:181 msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." msgstr "To process your registration, please confirm your e-mail adress by using the following link" -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." +#: lib/classes/mail.class.php:212 +msgid "si cet email contient des liens non cliquables copiez/collez ces liens dans votre navigateur." msgstr "" -#: lib/classes/mail.class.php:211 +#: lib/classes/mail.class.php:214 msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" msgstr "Automatic message of Phraseanet IV. To manage how you receive messages, connect to the following address" @@ -265,35 +257,35 @@ msgstr "Size too small : %dpx" msgid "Mauvais mode colorimetrique : %s" msgstr "Wrong color mode : %s" -#: lib/classes/phrasea.class.php:308 +#: lib/classes/phrasea.class.php:304 msgid "admin::monitor: module production" msgstr "Production" -#: lib/classes/phrasea.class.php:309 +#: lib/classes/phrasea.class.php:305 msgid "admin::monitor: module client" msgstr "Client" -#: lib/classes/phrasea.class.php:310 +#: lib/classes/phrasea.class.php:306 msgid "admin::monitor: module admin" msgstr "Admin" -#: lib/classes/phrasea.class.php:311 +#: lib/classes/phrasea.class.php:307 msgid "admin::monitor: module report" msgstr "Report" -#: lib/classes/phrasea.class.php:312 +#: lib/classes/phrasea.class.php:308 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" -#: lib/classes/phrasea.class.php:313 +#: lib/classes/phrasea.class.php:309 msgid "admin::monitor: module comparateur" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:314 +#: lib/classes/phrasea.class.php:310 msgid "admin::monitor: module validation" msgstr "Lightbox" -#: lib/classes/phrasea.class.php:315 +#: lib/classes/phrasea.class.php:311 msgid "admin::monitor: module upload" msgstr "Upload" @@ -332,76 +324,81 @@ msgstr "Search" msgid "client::recherche: dans les categories" msgstr "In categories" -#: lib/classes/setup.class.php:341 +#: lib/classes/setup.class.php:329 msgid "mod_auth_token correctement configure" msgstr "mod_auth_token correctly configured" -#: lib/classes/setup.class.php:343 +#: lib/classes/setup.class.php:331 msgid "mod_auth_token mal configure" msgstr "mod_auth_token bad configuration" -#: lib/classes/setup.class.php:356 +#: lib/classes/setup.class.php:344 msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " msgstr "Warning : mod activation test successful, running test not performed " -#: lib/classes/setup.class.php:371 +#: lib/classes/setup.class.php:359 msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" msgstr "Warning : Check xsendfile existing configuration in setup" -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 +#: lib/classes/setup.class.php:368 +#: lib/classes/setup.class.php:377 msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" msgstr "Warning : Check h264_streaming existing configuration in setup" -#: lib/classes/setup.class.php:532 +#: lib/classes/setup.class.php:520 msgid "setup::Tests d'envois d'emails" msgstr "E-mails send test" -#: lib/classes/setup.class.php:536 +#: lib/classes/setup.class.php:524 msgid "boutton::valider" msgstr "Validate" -#: lib/classes/setup.class.php:613 +#: lib/classes/setup.class.php:602 msgid "setup:: Serveur Memcached" msgstr "Memcached server Address" -#: lib/classes/setup.class.php:629 +#: lib/classes/setup.class.php:611 #, php-format msgid "setup::Serveur actif sur %s" msgstr "Active server on %s" -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "memcached server unavailable, you should disable cache" - -#: lib/classes/setup.class.php:645 +#: lib/classes/setup.class.php:623 #, php-format msgid "setup::Aucun serveur memcached rattache." msgstr "No Memcached server linked" -#: lib/classes/setup.class.php:682 +#: lib/classes/setup.class.php:644 +msgid "Many opcode cache load is forbidden" +msgstr "" + +#: lib/classes/setup.class.php:646 +msgid "No opcode cache were detected. Phraseanet strongly recommends the use of XCache or APC." +msgstr "" + +#: lib/classes/setup.class.php:660 #, php-format msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" msgstr "Bad configuration : For variable %1$s, value is : %2$s ; expected value is : %3$s" -#: lib/classes/setup.class.php:713 +#: lib/classes/setup.class.php:691 msgid "setup::Etat du moteur de recherche" msgstr "Search engine status" -#: lib/classes/setup.class.php:724 +#: lib/classes/setup.class.php:702 msgid "setup::Sphinx confguration" msgstr "Sphinx setup" -#: lib/classes/setup.class.php:747 +#: lib/classes/setup.class.php:725 msgid "test::test" msgstr "test" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:148 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:153 msgid "Cette valeur ne peut être vide" msgstr "" -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 +#: lib/classes/API/OAuth2/Form/DevAppDesktop.class.php:149 +#: lib/classes/API/OAuth2/Form/DevAppInternet.class.php:154 msgid "Url non valide" msgstr "" @@ -441,8 +438,8 @@ msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:829 #: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 +#: lib/classes/Bridge/Api/Flickr.class.php:742 +#: lib/classes/Bridge/Api/Flickr.class.php:768 #: lib/classes/Bridge/Api/Youtube.class.php:979 #: lib/classes/Bridge/Api/Youtube.class.php:984 #: lib/classes/Bridge/Api/Youtube.class.php:1011 @@ -452,8 +449,8 @@ msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:834 #: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 +#: lib/classes/Bridge/Api/Flickr.class.php:747 +#: lib/classes/Bridge/Api/Flickr.class.php:773 #: lib/classes/Bridge/Api/Youtube.class.php:989 #: lib/classes/Bridge/Api/Youtube.class.php:1021 #, php-format @@ -467,7 +464,7 @@ msgid "Ce champ est trop court %s caracteres min" msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 +#: lib/classes/Bridge/Api/Flickr.class.php:859 #: lib/classes/Bridge/Api/Youtube.class.php:1088 msgid "Le record n'a pas de fichier physique" msgstr "" @@ -479,7 +476,7 @@ msgid "La taille maximale d'une video est de %d minutes." msgstr "" #: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 +#: lib/classes/Bridge/Api/Flickr.class.php:861 #: lib/classes/Bridge/Api/Youtube.class.php:1094 #, php-format msgid "Le poids maximum d'un fichier est de %s" @@ -489,16 +486,16 @@ msgstr "" msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:529 +#: lib/classes/Bridge/Api/Flickr.class.php:528 #: lib/classes/Bridge/Api/Youtube.class.php:542 msgid "L'upload a echoue" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:639 +#: lib/classes/Bridge/Api/Flickr.class.php:638 msgid "Photos" msgstr "" -#: lib/classes/Bridge/Api/Flickr.class.php:648 +#: lib/classes/Bridge/Api/Flickr.class.php:647 msgid "Photosets" msgstr "" @@ -515,9 +512,8 @@ msgid "Erreur lors de l'authentification au service Youtube, Veuillez vous déco msgstr "" #: lib/classes/Bridge/Api/Youtube.class.php:588 -#, fuzzy msgid "Erreur lors de l'envoi de la requête. Erreur d'authentification." -msgstr "Authentication error" +msgstr "" #: lib/classes/Bridge/Api/Youtube.class.php:591 msgid "Erreur la ressource que vous tentez de modifier n'existe pas." @@ -579,25 +575,25 @@ msgstr "" msgid "Service youtube introuvable." msgstr "" -#: lib/classes/caption/record.class.php:171 +#: lib/classes/caption/record.class.php:188 msgid "Open the URL in a new window" msgstr "OPen the link in a new window" -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 +#: lib/classes/databox/cgu.class.php:37 +#: lib/classes/databox/cgu.class.php:110 #, php-format msgid "cgus:: CGUs de la base %s" msgstr "General Terms of Use for database %s" -#: lib/classes/databox/cgu.class.php:39 +#: lib/classes/databox/cgu.class.php:40 msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" msgstr "To continue, you have to accept the General Terms of Use" -#: lib/classes/databox/cgu.class.php:40 +#: lib/classes/databox/cgu.class.php:41 msgid "cgus :: accepter" msgstr "Accept" -#: lib/classes/databox/cgu.class.php:41 +#: lib/classes/databox/cgu.class.php:42 msgid "cgus :: refuser" msgstr "Reject" @@ -697,49 +693,41 @@ msgstr "A new user has registered" #: lib/classes/eventsmanager/notify/autoregister.class.php:235 #: lib/classes/eventsmanager/notify/order.class.php:221 -#: lib/classes/eventsmanager/notify/register.class.php:240 msgid "admin::compte-utilisateur nom" msgstr "Last name" #: lib/classes/eventsmanager/notify/autoregister.class.php:237 #: lib/classes/eventsmanager/notify/order.class.php:223 -#: lib/classes/eventsmanager/notify/register.class.php:242 msgid "admin::compte-utilisateur prenom" msgstr "First name" #: lib/classes/eventsmanager/notify/autoregister.class.php:239 #: lib/classes/eventsmanager/notify/order.class.php:225 -#: lib/classes/eventsmanager/notify/register.class.php:244 msgid "admin::compte-utilisateur email" msgstr "E-mail" #: lib/classes/eventsmanager/notify/autoregister.class.php:241 #: lib/classes/eventsmanager/notify/order.class.php:227 -#: lib/classes/eventsmanager/notify/register.class.php:246 msgid "admin::compte-utilisateur adresse" msgstr "Address" #: lib/classes/eventsmanager/notify/autoregister.class.php:245 #: lib/classes/eventsmanager/notify/order.class.php:231 -#: lib/classes/eventsmanager/notify/register.class.php:250 msgid "admin::compte-utilisateur telephone" msgstr "Phone" #: lib/classes/eventsmanager/notify/autoregister.class.php:247 #: lib/classes/eventsmanager/notify/order.class.php:233 -#: lib/classes/eventsmanager/notify/register.class.php:252 msgid "admin::compte-utilisateur fax" msgstr "Fax" #: lib/classes/eventsmanager/notify/autoregister.class.php:249 #: lib/classes/eventsmanager/notify/order.class.php:235 -#: lib/classes/eventsmanager/notify/register.class.php:254 msgid "admin::compte-utilisateur poste" msgstr "Job" #: lib/classes/eventsmanager/notify/autoregister.class.php:250 #: lib/classes/eventsmanager/notify/order.class.php:236 -#: lib/classes/eventsmanager/notify/register.class.php:255 msgid "admin::compte-utilisateur societe" msgstr "Company" @@ -759,6 +747,31 @@ msgstr "Bridge upload failed" msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" msgstr "Receive a notification when a bridge upload fail" +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:125 +msgid "email is not valid" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:129 +msgid "failed to send mail" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:133 +msgid "an error occured while exporting records" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:137 +#, php-format +msgid "The delivery to %s failed for the following reason : %s" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:156 +msgid "Email export fails" +msgstr "" + +#: lib/classes/eventsmanager/notify/downloadmailfail.class.php:165 +msgid "Get a notification when a mail export fails" +msgstr "" + #: lib/classes/eventsmanager/notify/order.class.php:162 #, php-format msgid "%1$s a passe une %2$scommande%3$s" @@ -786,7 +799,6 @@ msgid "Retrouvez son bon de commande dans l'interface" msgstr "Order form is available from Prod module" #: lib/classes/eventsmanager/notify/orderdeliver.class.php:33 -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:29 msgid "Commande" msgstr "Order" @@ -1171,43 +1183,43 @@ msgstr "December" msgid "report:: non-renseigne" msgstr "Not filled" -#: lib/classes/module/console/systemConfigCheck.class.php:52 +#: lib/classes/module/console/systemConfigCheck.class.php:54 msgid "*** CHECK BINARY CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:61 +#: lib/classes/module/console/systemConfigCheck.class.php:65 msgid "*** FILESYSTEM CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:64 +#: lib/classes/module/console/systemConfigCheck.class.php:68 msgid "*** CHECK CACHE OPCODE ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:67 +#: lib/classes/module/console/systemConfigCheck.class.php:71 msgid "*** CHECK CACHE SERVER ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:70 +#: lib/classes/module/console/systemConfigCheck.class.php:74 msgid "*** CHECK PHP CONFIGURATION ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:73 +#: lib/classes/module/console/systemConfigCheck.class.php:77 msgid "*** CHECK PHP EXTENSIONS ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:76 +#: lib/classes/module/console/systemConfigCheck.class.php:80 msgid "*** CHECK PHRASEA ***" msgstr "" -#: lib/classes/module/console/systemConfigCheck.class.php:79 +#: lib/classes/module/console/systemConfigCheck.class.php:83 msgid "*** CHECK SYSTEM LOCALES ***" msgstr "" -#: lib/classes/module/console/systemUpgrade.class.php:49 +#: lib/classes/module/console/systemUpgrade.class.php:50 msgid "Create automatically" msgstr "" -#: lib/classes/module/console/systemUpgrade.class.php:97 +#: lib/classes/module/console/systemUpgrade.class.php:81 msgid "Continuer ?" msgstr "" @@ -1236,17 +1248,15 @@ msgstr "downloads from user %s" msgid "report:: telechargements par jour" msgstr "Downloads" -#: lib/classes/module/report/activity.class.php:531 +#: lib/classes/module/report/activity.class.php:530 msgid "report:: Detail des connexions" msgstr "Connections" -#: lib/classes/module/report/activity.class.php:589 +#: lib/classes/module/report/activity.class.php:588 msgid "report:: Detail des telechargements" msgstr "Downloads" #: lib/classes/module/report/add.class.php:50 -#: lib/classes/module/report/edit.class.php:50 -#: lib/classes/module/report/push.class.php:50 msgid "report:: document ajoute" msgstr "Documents added" @@ -1258,6 +1268,10 @@ msgstr "Connections" msgid "report:: telechargements" msgstr "Downloads" +#: lib/classes/module/report/edit.class.php:50 +msgid "report:: edited documents" +msgstr "" + #: lib/classes/module/report/nav.class.php:129 msgid "report:: navigateur" msgstr "Browser" @@ -1302,7 +1316,15 @@ msgstr "Information about record %d" msgid "report:: Information sur le navigateur %s" msgstr "Information about web browser %s" -#: lib/classes/record/adapter.class.php:939 +#: lib/classes/module/report/push.class.php:50 +msgid "report:: pushed documents" +msgstr "" + +#: lib/classes/module/report/validate.class.php:50 +msgid "report:: validated documents" +msgstr "" + +#: lib/classes/record/adapter.class.php:930 msgid "reponses::document sans titre" msgstr "Untitled" @@ -1328,22 +1350,22 @@ msgstr "Stories " msgid "preview:: resultat numero %s " msgstr "result number %s " -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 +#: lib/classes/record/preview.class.php:565 +#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:587 msgid "report::acces direct" msgstr "Direct access" -#: lib/classes/record/preview.class.php:566 +#: lib/classes/record/preview.class.php:571 msgid "report:: page d'accueil" msgstr "Home page" -#: lib/classes/record/preview.class.php:568 +#: lib/classes/record/preview.class.php:573 msgid "report:: visualiseur cooliris" msgstr "Cooliris viewer" -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 +#: lib/classes/record/preview.class.php:578 +#: lib/classes/record/preview.class.php:585 msgid "report::presentation page preview" msgstr "External link" @@ -1405,11 +1427,11 @@ msgstr "Too few characters to search " msgid "Sphinx server is offline" msgstr "Sphinx server is offline" -#: lib/classes/set/export.class.php:292 +#: lib/classes/set/export.class.php:301 msgid "export::ftp: reglages manuels" msgstr "Manual settings" -#: lib/classes/set/order.class.php:233 +#: lib/classes/set/order.class.php:245 #, php-format msgid "Commande du %s" msgstr "Order done %s" @@ -1626,9 +1648,8 @@ msgid "task::ftp:utiliser SSL" msgstr "SSL" #: lib/classes/task/period/outofdate.class.php:26 -#, fuzzy msgid "Documents perimes" -msgstr "Document(s) unavailable" +msgstr "" #: lib/classes/task/period/outofdate.class.php:411 #: lib/classes/task/period/workflow01.class.php:317 @@ -1727,543 +1748,535 @@ msgstr "" msgid "modele %s" msgstr "Template %s" -#: lib/conf.d/_GV_template.php:61 +#: lib/conf.d/_GV_template.php:82 msgid "GV::section:: Serveur HTTP" msgstr "Http Server" -#: lib/conf.d/_GV_template.php:66 +#: lib/conf.d/_GV_template.php:87 msgid "reglages:: Timezone de l'installation" msgstr "Time zone" -#: lib/conf.d/_GV_template.php:73 +#: lib/conf.d/_GV_template.php:94 msgid "reglages:: Nom de linstallation" msgstr "Instance unique key" -#: lib/conf.d/_GV_template.php:81 +#: lib/conf.d/_GV_template.php:102 msgid "reglages:: Langue par defaut" msgstr "Default language" -#: lib/conf.d/_GV_template.php:90 +#: lib/conf.d/_GV_template.php:111 msgid "reglages:: URL statique (optionnel)" msgstr "Static URL" -#: lib/conf.d/_GV_template.php:96 +#: lib/conf.d/_GV_template.php:117 msgid "GV::section:: Etat de maintenance" msgstr "Maintenance mode" -#: lib/conf.d/_GV_template.php:102 +#: lib/conf.d/_GV_template.php:123 msgid "reglages:: Message a diffuser aux utilisateurs" msgstr "Warning message to users" -#: lib/conf.d/_GV_template.php:108 +#: lib/conf.d/_GV_template.php:129 msgid "reglages:: activation du message a diffuser aux utilistaeurs" msgstr "Activate warning message" -#: lib/conf.d/_GV_template.php:114 +#: lib/conf.d/_GV_template.php:135 msgid "reglages:: logguer les erreurs" msgstr "Log errors" -#: lib/conf.d/_GV_template.php:119 +#: lib/conf.d/_GV_template.php:140 msgid "GV::section:: Connectivite aux webservices" msgstr "Webservice connections" -#: lib/conf.d/_GV_template.php:124 +#: lib/conf.d/_GV_template.php:145 msgid "reglages:: Utiliser els google apis" msgstr "Use Google API(s)" -#: lib/conf.d/_GV_template.php:131 +#: lib/conf.d/_GV_template.php:152 msgid "reglages:: Service phrasea de localisation" msgstr "Phraseanet localisation service" -#: lib/conf.d/_GV_template.php:139 +#: lib/conf.d/_GV_template.php:160 msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" msgstr "Bit.ly username" -#: lib/conf.d/_GV_template.php:145 +#: lib/conf.d/_GV_template.php:166 msgid "reglages:: ccle d'api pour l'api bit.ly" msgstr "Bit.ly API key" -#: lib/conf.d/_GV_template.php:151 +#: lib/conf.d/_GV_template.php:172 msgid "reglages:: Utilisation de l'api recpatcha" msgstr "Use ReCaptcha API" -#: lib/conf.d/_GV_template.php:158 +#: lib/conf.d/_GV_template.php:179 msgid "reglages:: clef publique recaptcha" msgstr "ReCaptcha public key" -#: lib/conf.d/_GV_template.php:164 +#: lib/conf.d/_GV_template.php:185 msgid "reglages:: clef privee recaptcha" msgstr "ReCaptcha private key" -#: lib/conf.d/_GV_template.php:169 +#: lib/conf.d/_GV_template.php:190 msgid "GV::section:: Connectivite a Youtube" msgstr "" -#: lib/conf.d/_GV_template.php:174 +#: lib/conf.d/_GV_template.php:195 #, php-format msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" msgstr "" -#: lib/conf.d/_GV_template.php:181 +#: lib/conf.d/_GV_template.php:202 msgid "reglages:: Youtube client id" msgstr "" -#: lib/conf.d/_GV_template.php:187 +#: lib/conf.d/_GV_template.php:208 msgid "reglages:: Youtube clientsecret" msgstr "" -#: lib/conf.d/_GV_template.php:193 +#: lib/conf.d/_GV_template.php:214 #, php-format msgid "reglages:: Youtube cle developpeur, voir %s" msgstr "" -#: lib/conf.d/_GV_template.php:198 +#: lib/conf.d/_GV_template.php:219 msgid "GV::section:: Connectivite a FlickR" msgstr "" -#: lib/conf.d/_GV_template.php:203 +#: lib/conf.d/_GV_template.php:224 #, php-format msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" msgstr "" -#: lib/conf.d/_GV_template.php:210 +#: lib/conf.d/_GV_template.php:231 msgid "reglages:: FlickR client id" msgstr "" -#: lib/conf.d/_GV_template.php:216 +#: lib/conf.d/_GV_template.php:237 msgid "reglages:: FlickR client secret" msgstr "" -#: lib/conf.d/_GV_template.php:221 +#: lib/conf.d/_GV_template.php:242 msgid "GV::section:: Connectivite a Dailymotion" msgstr "" -#: lib/conf.d/_GV_template.php:226 +#: lib/conf.d/_GV_template.php:247 #, php-format msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" msgstr "" -#: lib/conf.d/_GV_template.php:233 +#: lib/conf.d/_GV_template.php:254 msgid "reglages:: dailymotion client id" msgstr "" -#: lib/conf.d/_GV_template.php:239 +#: lib/conf.d/_GV_template.php:260 msgid "reglages:: dailymotion client secret" msgstr "" -#: lib/conf.d/_GV_template.php:244 +#: lib/conf.d/_GV_template.php:265 msgid "GV::section:: Gestionnaire d'evenements" msgstr "Event manager" -#: lib/conf.d/_GV_template.php:250 +#: lib/conf.d/_GV_template.php:271 msgid "reglages:: Evenements" msgstr "Events" -#: lib/conf.d/_GV_template.php:258 +#: lib/conf.d/_GV_template.php:279 msgid "reglages:: Notifications" msgstr "Notifications" -#: lib/conf.d/_GV_template.php:264 +#: lib/conf.d/_GV_template.php:285 msgid "GV::section:: Stockage des documents" msgstr "Data Storage" -#: lib/conf.d/_GV_template.php:269 +#: lib/conf.d/_GV_template.php:290 msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" msgstr "Enter files extensions autorised for upload in Phraseanet IV (use comma as separator. Use \" * \" to accept any kind of file format)" -#: lib/conf.d/_GV_template.php:277 +#: lib/conf.d/_GV_template.php:298 msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" msgstr "direct access to storage folders for thumbnail(s)" -#: lib/conf.d/_GV_template.php:285 +#: lib/conf.d/_GV_template.php:306 msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" msgstr "Protected files storage folder" -#: lib/conf.d/_GV_template.php:292 +#: lib/conf.d/_GV_template.php:313 msgid "reglages:: point de montage des vignettes publiees en acces direct" msgstr "Thumbnail web folder alias" -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "Cache server" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "Use a cache server" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "None" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "Cache server host" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "Chache server port" - -#: lib/conf.d/_GV_template.php:330 +#: lib/conf.d/_GV_template.php:321 msgid "GV::section:: Serveur Sphinx" msgstr "Sphink server" -#: lib/conf.d/_GV_template.php:335 +#: lib/conf.d/_GV_template.php:326 msgid "Utiliser Sphinx" msgstr "Use Sphinx" -#: lib/conf.d/_GV_template.php:341 +#: lib/conf.d/_GV_template.php:332 msgid "reglages:: de l'adresse du serveur sphinx" msgstr "Sphinx server address" -#: lib/conf.d/_GV_template.php:347 +#: lib/conf.d/_GV_template.php:338 msgid "reglages:: port du serveur sphinx" msgstr "Sphinx server port" -#: lib/conf.d/_GV_template.php:353 +#: lib/conf.d/_GV_template.php:344 msgid "reglages:: de l'adresse du serveur RT sphinx" msgstr "RT Sphinx server address" -#: lib/conf.d/_GV_template.php:359 +#: lib/conf.d/_GV_template.php:350 msgid "reglages:: port du serveur RT sphinx" msgstr "RT Sphinx server port" -#: lib/conf.d/_GV_template.php:364 +#: lib/conf.d/_GV_template.php:356 +msgid "Phrasea Engine" +msgstr "" + +#: lib/conf.d/_GV_template.php:361 +msgid "Default results sort" +msgstr "" + +#: lib/conf.d/_GV_template.php:367 msgid "GV::section:: Executables externes" msgstr "Exernal exec." -#: lib/conf.d/_GV_template.php:369 +#: lib/conf.d/_GV_template.php:372 msgid "reglages:: mod_xsendfileapache active" msgstr "Enable xsendfile for apache" -#: lib/conf.d/_GV_template.php:375 +#: lib/conf.d/_GV_template.php:378 msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" msgstr "X-Accel-Redirect (NginX only) access path" -#: lib/conf.d/_GV_template.php:382 +#: lib/conf.d/_GV_template.php:385 msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" msgstr "X-Accel-Redirect (Nginx only) mounting point" -#: lib/conf.d/_GV_template.php:389 +#: lib/conf.d/_GV_template.php:392 msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" msgstr "\"stream h264\" activation via \"mod_token\" - Warning, \"apache mod_h264_streaming\" and \"mod_auth_token\" binaries are required" -#: lib/conf.d/_GV_template.php:396 +#: lib/conf.d/_GV_template.php:399 msgid "reglages:: point de montage du dossier protege via auth_token" msgstr "Mount point of protected folder via \"auth_token\"" -#: lib/conf.d/_GV_template.php:403 +#: lib/conf.d/_GV_template.php:406 msgid "reglages:: path complet du dossier protege via auth_token" msgstr "Full path to protected folfer via \"auth_token\"" -#: lib/conf.d/_GV_template.php:409 +#: lib/conf.d/_GV_template.php:412 msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" msgstr "\"mod_auth_token\" passphrase (setup from apache configuration file)" -#: lib/conf.d/_GV_template.php:415 +#: lib/conf.d/_GV_template.php:418 msgid "reglages:: executable PHP CLI" msgstr "Path to PHP CLI (Common Line Interface)" -#: lib/conf.d/_GV_template.php:422 +#: lib/conf.d/_GV_template.php:425 msgid "reglages:: path du php.ini specifique (vide si non utilise)" msgstr "Path to specific php.ini (optional)" -#: lib/conf.d/_GV_template.php:429 +#: lib/conf.d/_GV_template.php:432 msgid "reglages:: chemin de l'executable convert" msgstr "Path to convert binary" -#: lib/conf.d/_GV_template.php:436 +#: lib/conf.d/_GV_template.php:439 msgid "reglages:: chemin de l'executable composite" msgstr "Path to Composite binary" -#: lib/conf.d/_GV_template.php:443 +#: lib/conf.d/_GV_template.php:446 msgid "reglages:: chemin de l'executable exiftools" msgstr "Path to Exiftool component" -#: lib/conf.d/_GV_template.php:449 +#: lib/conf.d/_GV_template.php:452 msgid "reglages:: chemin de l'executable swfextract" msgstr "Path to SWF extract component" -#: lib/conf.d/_GV_template.php:456 +#: lib/conf.d/_GV_template.php:459 msgid "reglages:: chemin de l'executable pdf2swf" msgstr "Path to PDF 2 SWF component" -#: lib/conf.d/_GV_template.php:463 +#: lib/conf.d/_GV_template.php:466 msgid "reglages:: chemin de l'executable swfrender" msgstr "Path to SWF render component" -#: lib/conf.d/_GV_template.php:470 +#: lib/conf.d/_GV_template.php:473 msgid "reglages:: chemin de l'executable unoconv" msgstr "Path to Unoconv component" -#: lib/conf.d/_GV_template.php:477 +#: lib/conf.d/_GV_template.php:480 msgid "reglages:: chemin de l'executable FFmpeg" msgstr "Path to FFmpeg component" -#: lib/conf.d/_GV_template.php:483 +#: lib/conf.d/_GV_template.php:486 msgid "reglages:: chemin de l'executable MP4Box" msgstr "Path to MP4Box component" -#: lib/conf.d/_GV_template.php:489 +#: lib/conf.d/_GV_template.php:492 msgid "reglages:: chemin de l'executable Mplayer" msgstr "Path to Mplayer component" -#: lib/conf.d/_GV_template.php:495 +#: lib/conf.d/_GV_template.php:498 msgid "reglages:: chemin de l'executable pdftotext (xpdf)" msgstr "pdftotext (xpdf) path" -#: lib/conf.d/_GV_template.php:501 +#: lib/conf.d/_GV_template.php:504 msgid "reglages:: nombre maximum de page a extraire (PDF)" msgstr "Limit number of pages of text to extract for PDF files" -#: lib/conf.d/_GV_template.php:506 +#: lib/conf.d/_GV_template.php:509 msgid "GV::section:: Repertoires utilitaires" msgstr "Tools folders" -#: lib/conf.d/_GV_template.php:511 +#: lib/conf.d/_GV_template.php:514 msgid "reglages:: proprietaire des fichiers" msgstr "File Owner (Apache execution account name)" -#: lib/conf.d/_GV_template.php:517 +#: lib/conf.d/_GV_template.php:520 msgid "reglages:: groupes des fichiers" msgstr "User Group (Apache Execution user group name)" -#: lib/conf.d/_GV_template.php:522 +#: lib/conf.d/_GV_template.php:525 msgid "GV::section:: Configuration principale" msgstr "Main configuration" -#: lib/conf.d/_GV_template.php:534 +#: lib/conf.d/_GV_template.php:537 msgid "reglages:: email de l'administrateur" msgstr "Administrator e-mail" -#: lib/conf.d/_GV_template.php:540 +#: lib/conf.d/_GV_template.php:543 msgid "reglages:: Afficher le nom des bases et des collections" msgstr "Dissplay databases and collections names" -#: lib/conf.d/_GV_template.php:547 +#: lib/conf.d/_GV_template.php:550 msgid "reglages:: activer le choix du nom de fichier a l'export" msgstr "Give user option to change downloaded file name" -#: lib/conf.d/_GV_template.php:554 +#: lib/conf.d/_GV_template.php:557 msgid "reglages:: choix par defaut des noms de fichier a l'export" msgstr "By default exported files will be named with ..." -#: lib/conf.d/_GV_template.php:568 +#: lib/conf.d/_GV_template.php:571 msgid "reglages:: Active les partages Facebook et Twitter" msgstr "Activate Facebook and Twitter shares" -#: lib/conf.d/_GV_template.php:575 +#: lib/conf.d/_GV_template.php:578 msgid "GV::section:: Page d'accueil" msgstr "Home Page" -#: lib/conf.d/_GV_template.php:588 +#: lib/conf.d/_GV_template.php:591 msgid "reglages:: presentation sur la home" msgstr "Home page basket(s) display settings" -#: lib/conf.d/_GV_template.php:595 +#: lib/conf.d/_GV_template.php:598 msgid "GV::section:: Moteur de recherche" msgstr "Search engine" -#: lib/conf.d/_GV_template.php:601 +#: lib/conf.d/_GV_template.php:604 msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" msgstr "For user research, minimum number of caracters prior to a troncature operator insertion (1 by default)" -#: lib/conf.d/_GV_template.php:607 +#: lib/conf.d/_GV_template.php:610 msgid "reglages:: Question par defaut" msgstr "default query" -#: lib/conf.d/_GV_template.php:613 +#: lib/conf.d/_GV_template.php:616 msgid "reglages:: type de document cherches par defaut e l'ouverture du site" msgstr "Set default query settings to..." -#: lib/conf.d/_GV_template.php:619 +#: lib/conf.d/_GV_template.php:622 msgid "GV::section:: Report" msgstr "Report" -#: lib/conf.d/_GV_template.php:625 +#: lib/conf.d/_GV_template.php:628 msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" msgstr "Anonymous Report (hide users names and infos from reports)" -#: lib/conf.d/_GV_template.php:631 +#: lib/conf.d/_GV_template.php:634 msgid "GV::section:: Modules supplementaires" msgstr "Additional modules" -#: lib/conf.d/_GV_template.php:637 +#: lib/conf.d/_GV_template.php:640 msgid "reglages:: Activation de l'outil thesaurus" msgstr "Enable Phraseanet IV Thesaurus" -#: lib/conf.d/_GV_template.php:642 +#: lib/conf.d/_GV_template.php:645 msgid "reglages:: Activation du Mode MultiDOC" msgstr "Enable Story mode" -#: lib/conf.d/_GV_template.php:647 +#: lib/conf.d/_GV_template.php:650 msgid "reglages:: Substitution de HD d'un record " msgstr "Document substitution " -#: lib/conf.d/_GV_template.php:652 +#: lib/conf.d/_GV_template.php:655 msgid "reglages:: Substitution de thumbnail d'un record" msgstr "Enable Documents thumbnails substitution" -#: lib/conf.d/_GV_template.php:736 +#: lib/conf.d/_GV_template.php:739 msgid "GV::section:: Envois de mails" msgstr "Emails delivery" -#: lib/conf.d/_GV_template.php:747 +#: lib/conf.d/_GV_template.php:750 msgid "reglages:: Expediteur mail par defaut" msgstr "Sender default e-mail address" -#: lib/conf.d/_GV_template.php:753 +#: lib/conf.d/_GV_template.php:756 msgid "reglages:: Utilisation d'un serveur SMTP" msgstr "SMTP server use" -#: lib/conf.d/_GV_template.php:759 +#: lib/conf.d/_GV_template.php:762 msgid "reglages:: Activation de l'authentification smtp" msgstr "Use Authentification" -#: lib/conf.d/_GV_template.php:765 +#: lib/conf.d/_GV_template.php:768 msgid "reglages:: Hote SMTP" msgstr "Host" -#: lib/conf.d/_GV_template.php:771 +#: lib/conf.d/_GV_template.php:774 msgid "reglages:: Port SMTP" msgstr "Port" -#: lib/conf.d/_GV_template.php:777 +#: lib/conf.d/_GV_template.php:780 msgid "reglages:: Utiliser une conenction SSL" msgstr "Use SSL" -#: lib/conf.d/_GV_template.php:783 +#: lib/conf.d/_GV_template.php:786 msgid "reglages:: User SMTP" msgstr "User" -#: lib/conf.d/_GV_template.php:789 +#: lib/conf.d/_GV_template.php:792 msgid "reglages:: Mot de passe SMTP" msgstr "Password" -#: lib/conf.d/_GV_template.php:794 +#: lib/conf.d/_GV_template.php:797 msgid "GV::section:: Exports FTP" msgstr "Ftp Export" -#: lib/conf.d/_GV_template.php:799 +#: lib/conf.d/_GV_template.php:802 msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" msgstr "Enable FTP use to export document" -#: lib/conf.d/_GV_template.php:805 +#: lib/conf.d/_GV_template.php:808 msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" msgstr "Enable FTP export for users (false = Admin only)" -#: lib/conf.d/_GV_template.php:810 +#: lib/conf.d/_GV_template.php:813 msgid "GV::section:: Configuration du client" msgstr "Client Configuration" -#: lib/conf.d/_GV_template.php:822 +#: lib/conf.d/_GV_template.php:818 +msgid "Maximum megabytes allowed in download (if request is bigger, then mail is still available)" +msgstr "" + +#: lib/conf.d/_GV_template.php:824 msgid "reglages:: position de l'onglet de recherche" msgstr "\"Search\" tab display position (1 =1st position from left)" -#: lib/conf.d/_GV_template.php:828 +#: lib/conf.d/_GV_template.php:830 msgid "reglages:: position de l'onglet de recherche avancee" msgstr "\"Advanced search\" tab display position (2= 2nd position from left)" -#: lib/conf.d/_GV_template.php:834 +#: lib/conf.d/_GV_template.php:836 msgid "reglages:: position de l'onglet des topics" msgstr "\"Topics\" tab display position ..." -#: lib/conf.d/_GV_template.php:840 +#: lib/conf.d/_GV_template.php:842 msgid "reglages:: numero de l'onglet actif" msgstr "Select default displayed tab (from numbers above)" -#: lib/conf.d/_GV_template.php:846 +#: lib/conf.d/_GV_template.php:848 msgid "reglages:: rendu des topics" msgstr "Set \"Topics\" display as.." -#: lib/conf.d/_GV_template.php:859 +#: lib/conf.d/_GV_template.php:861 msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" msgstr "Enable rollover display on thumbnails in detail view window" -#: lib/conf.d/_GV_template.php:865 +#: lib/conf.d/_GV_template.php:867 msgid "reglages:: Voir le rollover sur les elements du chutier" msgstr "Enable rollover display on thumbnails in baskets" -#: lib/conf.d/_GV_template.php:871 +#: lib/conf.d/_GV_template.php:873 msgid "reglages:: Presentation des collections" msgstr "Collections display option in Phraseanet Client" -#: lib/conf.d/_GV_template.php:878 +#: lib/conf.d/_GV_template.php:880 msgid "reglages:: Voir taille HD total des doc d'un chutiers" msgstr "Enable Display of documents total size in baskets" -#: lib/conf.d/_GV_template.php:884 +#: lib/conf.d/_GV_template.php:886 msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" msgstr "Enable \"proposals\" tab display when thesaurus active" -#: lib/conf.d/_GV_template.php:890 +#: lib/conf.d/_GV_template.php:892 msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" msgstr "Redirect to register guest users when intending download" -#: lib/conf.d/_GV_template.php:895 +#: lib/conf.d/_GV_template.php:897 msgid "GV::section:: Parametrage de l'inscription" msgstr "Register configuration" -#: lib/conf.d/_GV_template.php:900 +#: lib/conf.d/_GV_template.php:902 msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" msgstr "Hide collection list from registration form - User registration is send for all collections \"enabled for registration\"" -#: lib/conf.d/_GV_template.php:906 +#: lib/conf.d/_GV_template.php:908 msgid "reglages:: Activation de l'autoinscription" msgstr "Enable Auto registration - Auto accept users at the end of registration process" -#: lib/conf.d/_GV_template.php:911 +#: lib/conf.d/_GV_template.php:913 msgid "GV::section:: Configuration du push" msgstr "Push configuration" -#: lib/conf.d/_GV_template.php:916 +#: lib/conf.d/_GV_template.php:918 msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" msgstr "Days before sending reminder for feedback" -#: lib/conf.d/_GV_template.php:928 +#: lib/conf.d/_GV_template.php:930 msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" msgstr "Enable expiration date in feedback push (0= no expiration date)" -#: lib/conf.d/_GV_template.php:933 +#: lib/conf.d/_GV_template.php:935 msgid "GV::section:: Indexation par les robots" msgstr "Robots indexation" -#: lib/conf.d/_GV_template.php:938 +#: lib/conf.d/_GV_template.php:940 msgid "reglages :: Titre de l'installation" msgstr "Website Title" -#: lib/conf.d/_GV_template.php:944 +#: lib/conf.d/_GV_template.php:946 msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" msgstr "indexed meta keywords for search engines" -#: lib/conf.d/_GV_template.php:950 +#: lib/conf.d/_GV_template.php:952 msgid "reglages :: Description de l'installation" msgstr "Meta description" -#: lib/conf.d/_GV_template.php:956 +#: lib/conf.d/_GV_template.php:958 msgid "reglages:: identifiant google analytics" msgstr "Google Analytics ID (UA-XXXXXXX-X)" -#: lib/conf.d/_GV_template.php:962 +#: lib/conf.d/_GV_template.php:964 msgid "Allow the website to be indexed by search engines like Google" msgstr "" -#: lib/conf.d/_GV_template.php:968 +#: lib/conf.d/_GV_template.php:970 msgid "reglages:: Afficher le bandeau Google Chrome Frame" msgstr "Display Google Chrome frame banner" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:402 msgid "Erreur lors de l'enregistrement des donnees" msgstr "Error when saving datas" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:475 msgid "Erreur lors de la mise a jour des donnes " msgstr "Error when updating datas " -#: lib/Alchemy/Phrasea/Application/Lightbox.php:458 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:510 msgid "Do you want to send your report ?" msgstr "" -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 +#: lib/Alchemy/Phrasea/Application/Lightbox.php:599 msgid "Envoie avec succes" msgstr "Successful delivery" @@ -2303,21 +2316,29 @@ msgstr "" msgid "Basket has been updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:286 +#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:82 +msgid "An error occured" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:311 +msgid "Basket updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:346 msgid "Basket has been archived" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:350 msgid "Basket has been unarchived" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:442 #, php-format msgid "%d records added" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 +#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:504 #, php-format msgid "%d records moved" msgstr "" @@ -2342,12 +2363,7 @@ msgid "%d elements en attente" msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:64 -#, fuzzy msgid "Vocabulary not found" -msgstr "Feed entry not found" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:82 -msgid "An error occured" msgstr "" #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:164 @@ -2407,238 +2423,291 @@ msgid "phraseanet::chargement" msgstr "Loading" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:57 +msgid "boutton::creer" +msgstr "Create" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:58 msgid "boutton::rechercher" msgstr "Search" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:59 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:60 msgid "Vous n'avez pas les droits pour supprimer certains documents" msgstr "You do not have rights to delete some documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:60 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:61 msgid "Vous n'avez pas les droits pour supprimer ces documents" msgstr "You do not have rights to delete these documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:61 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:62 msgid "Vous devez donner un titre" msgstr "Template Name" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:62 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:63 msgid "Nouveau modele" msgstr "New Template" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:64 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:65 msgid "Vous n'avez pas rempli tous les champ requis" msgstr "You must fill every required fields" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:65 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:66 msgid "Vous n'avez pas selectionne de fil de publication" msgstr "You have not selected any feed" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:66 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:67 msgid "panier::Supression d'un element d'un reportage" msgstr "Delete one record from story" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:67 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:68 msgid "panier::Attention, vous etes sur le point de supprimer un element du reportage. Merci de confirmer votre action." msgstr "Your are about to delete on record from a story, please confirm you action" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:68 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:69 msgid "phraseanet::recherche avancee" msgstr "Advanced search" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:69 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:70 msgid "panier:: renommer le panier" msgstr "Rename" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:70 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:79 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:71 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:80 msgid "panier:: Un reportage ne peux recevoir que des elements provenants de la base ou il est enregistre" msgstr "A story can't contain document from a different database than the one use to create it" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:71 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:72 msgid "phraseanet:: Erreur" msgstr "Error" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:72 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:73 msgid "cgus :: Attention, si vous refuser les CGUs de cette base, vous n'y aures plus acces" msgstr "Warning : If you reject General Terms of Use, you will not be able to login to this database" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:73 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:74 msgid "cgus :: Vous devez vous reauthentifier pour que vos parametres soient pris en compte." msgstr "Changes will take effect next tim you login." -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:74 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:75 #, php-format msgid "edit:: Supprimer %s du champ dans les records selectionnes" msgstr "Delete %s from all selected documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:75 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:76 #, php-format msgid "edit:: Ajouter %s au champ courrant pour les records selectionnes" msgstr "Add %s to all selected documents" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:76 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:77 #, php-format msgid "edit:: Supprimer %s du champ courrant" msgstr "Delete %s from selected document" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:77 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:78 #, php-format msgid "edit:: Ajouter %s au champ courrant" msgstr "Add %s to selected document" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:78 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:79 msgid "panier:: vous ne pouvez pas supprimer un panier public" msgstr "You do not have the required permissions to delete public basket" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:80 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" -msgstr "You can't select more than 400 records" +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:81 +msgid "Vous ne pouvez pas selectionner plus de 800 enregistrements" +msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 msgid "Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" msgstr "Either invalid settings , either distant server is not responding" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:84 msgid "Les parametres sont corrects, le serveur distant est operationnel" msgstr "Valid parameters, distant server is responding" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:84 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 msgid "Certaines publications n'ont pu etre effectuees, verifiez vos parametres" msgstr "Some publication failed, check settings" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 msgid "Aucune publication effectuee, verifiez vos parametres" msgstr "No publication done, check settings" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 msgid "Attention, en supprimant ce preregalge, vous ne pourrez plus modifier ou supprimer de publications prealablement effectues avec celui-ci" msgstr "Warning : by deleting this setting, modification and delete of existing publications made from it won't be possible" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 msgid "edit::certains documents possedent des champs requis non remplis. Merci de les remplir pour valider votre editing" msgstr "Some documents have empty required fields. Please complete fields" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 msgid "Aucun document selectionne" msgstr "No document selected" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 msgid "Are you sure you want to delete this list ?" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 msgid "New list name ?" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 msgid "List name can not be empty" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 msgid "Name" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 msgid "Message" msgstr "Message" -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 -#, fuzzy +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:95 +msgid "Time for feedback (days)" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:96 +msgid "Send" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:97 +msgid "Accuse de reception" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 +#, php-format +msgid "%d fields have been updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:99 msgid "No users selected" -msgstr "Select" +msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 -#, fuzzy +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:171 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:308 msgid "Unable to send the documents" -msgstr "%basket_length% document(s)" +msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:190 #, php-format msgid "Push from %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:199 msgid "No receivers specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:204 msgid "No elements to push" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:218 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:434 #, php-format msgid "Unknown user %d" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:281 #, php-format msgid "%1$d records have been sent to %2$d users" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 -#, fuzzy, php-format +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:331 +#, php-format msgid "Validation from %s" -msgstr "Validations" +msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:340 msgid "No participants specified" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:345 msgid "No elements to validate" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:425 #, php-format msgid "Missing mandatory participant parameter %s" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 -#, fuzzy, php-format +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:515 +#, php-format msgid "%1$d records have been sent for validation to %2$d users" -msgstr "%1$s has sent his validation report for %2$s" +msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:601 msgid "First name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:604 msgid "Last name is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:607 msgid "Email is required" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 -#, fuzzy +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:610 msgid "Email is invalid" -msgstr "E-Mail seems invalid" +msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:629 msgid "User already exists" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:656 msgid "User successfully created" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 +#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:662 msgid "Error while creating user" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 -#, fuzzy -msgid "Story created" -msgstr "To create" +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:153 +#, php-format +msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" +msgstr "%d results displayed from a total of %d found" -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:157 +#, php-format +msgid "reponses:: %d Resultats" +msgstr "%d results" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %d reponses" +msgstr "%d result(s)" + +#: lib/Alchemy/Phrasea/Controller/Prod/Query.php:166 +#, php-format +msgid "reponses:: %s documents selectionnes" +msgstr "%s document(s) selected." + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:100 +msgid "Story created" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:209 msgid "Record removed from story" msgstr "" +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:279 +msgid "You can not edit this story" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:298 +msgid "Story updated" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:40 +msgid "Error while saving preference" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/UserPreferences.php:53 +msgid "Preference saved !" +msgstr "" + #: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 #, php-format msgid "Unable to create list %s" @@ -2658,134 +2727,110 @@ msgstr "" msgid "Unable to update list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:284 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:331 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:383 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:442 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:524 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:564 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:638 +msgid "You are not authorized to do this" +msgstr "" + +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:293 msgid "List has been updated" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:339 #, php-format msgid "List has been deleted" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:354 #, php-format msgid "Unable to delete list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:395 msgid "Entry removed from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:410 msgid "Unable to remove entry from list " msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:471 #, php-format msgid "%d Users added to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:479 #, php-format msgid "%d User added to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:496 msgid "Unable to add usr to list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:597 msgid "List shared to user" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:612 msgid "Unable to share the list with the usr" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:650 msgid "Owner removed from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 +#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:664 msgid "Unable to remove usr from list" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:177 #, php-format msgid "%d Story attached to the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:184 #, php-format msgid "%d Stories attached to the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:194 #, php-format msgid "%1$d Story attached to the WorkZone, %2$d already attached" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:202 #, php-format msgid "%1$d Stories attached to the WorkZone, %2$d already attached" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 +#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:253 msgid "Story detached from the WorkZone" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:138 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:187 msgid "Appbox is unreachable" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:199 msgid "Databox is unreachable" msgstr "" -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 +#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:351 #, php-format msgid "an error occured : %s" msgstr "" -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "Can't Write in folder %s" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, fuzzy, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "Unable to add record to database" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "YYYY/MM/DD HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:419 -msgid "phraseanet::technique::datetime-edit-explain" -msgstr "yyyy/mm/dd hh:mm:ss" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "YYYY/MM/DD" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "yyyy/mm/dd" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "HH:NN:SS" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "hh:mm:ss" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 +#: lib/Alchemy/Phrasea/Helper/User/Edit.php:570 msgid "Email addess is not valid" msgstr "" @@ -2821,29 +2866,22 @@ msgstr "Feedback requested from %s and sent to %d other users" msgid "Processus de validation recu de %s" msgstr "Feedback requested from %s" -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 -#, fuzzy +#: lib/Doctrine/Repositories/BasketElementRepository.php:46 msgid "Element is not found" -msgstr "Feed entry not found" - -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" msgstr "" -#: lib/Doctrine/Repositories/BasketRepository.php:103 -#, fuzzy +#: lib/Doctrine/Repositories/BasketRepository.php:171 msgid "Basket is not found" -msgstr "Feed entry not found" +msgstr "" -#: lib/Doctrine/Repositories/BasketRepository.php:108 +#: lib/Doctrine/Repositories/BasketRepository.php:193 msgid "You have not access to this basket" msgstr "" #: lib/Doctrine/Repositories/UsrListOwnerRepository.php:30 #: lib/Doctrine/Repositories/UsrListOwnerRepository.php:67 -#, fuzzy msgid "Owner is not found" -msgstr "Feed entry not found" +msgstr "" #: lib/Doctrine/Repositories/UsrListOwnerRepository.php:35 msgid "Owner and list mismatch" @@ -3053,32 +3091,32 @@ msgstr "About" msgid "phraseanet:: deconnection" msgstr "Sign out" -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:39 +#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:41 msgid "login:: connexion" msgstr "Login" -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:44 +#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:46 msgid "login::Remember me" msgstr "Remember me" -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:58 +#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:60 msgid "login::erreur: Les cookies sont desactives sur votre navigateur" msgstr "Your web browser does not accept cookies. Please activate this fonction to use Phraseanet IV" -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:68 +#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:70 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "" -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:82 +#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:84 #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:244 msgid "admin::compte-utilisateur identifiant" msgstr "Login" -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:97 +#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:99 msgid "admin::compte-utilisateur mot de passe" msgstr "Password" -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 +#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:112 msgid "report::Heures" msgstr "Hours" @@ -3112,6 +3150,7 @@ msgstr "" #: tmp/cache_twig/09/36/bf77d681b54db86a8445f384ca88.php:28 #: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:79 +#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:137 msgid "Description" msgstr "Caption" @@ -3119,6 +3158,95 @@ msgstr "Caption" msgid "Pour davantage d'informations, consulter le lien suivant %lien%" msgstr "" +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:36 +msgid "Vous avez recu un nouveau panier" +msgstr "You have a new basket available" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:38 +msgid "rafraichir" +msgstr "Refresh" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:90 +msgid "Vous avez recu une demande de validation de document sur ce panier" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:106 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:252 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:440 +msgid "action::exporter" +msgstr "Export" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:117 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:263 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:451 +msgid "action::editer" +msgstr "Edit" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:142 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:303 +msgid "action::Valider" +msgstr "Validate" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:219 +msgid "Vous avez envoye une demande de validation de document sur ce panier" +msgstr "You have pushed this basket for feedback" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:232 +msgid "paniers:: panier recu de %pusher%" +msgstr "Basket received from %pusher%" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:279 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:285 +msgid "action::renommer" +msgstr "Rename" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:320 +msgid "Archive" +msgstr "" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:332 +msgid "action : supprimer" +msgstr "Delete" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:341 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:347 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:475 +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:483 +msgid "Re-ordonner" +msgstr "Set order" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:466 +msgid "action::detacher" +msgstr "Release from Basket zone" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:692 +msgid "delete" +msgstr "Delete" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:783 +msgid "panier:: ordre du panier" +msgstr "Basket order" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:791 +msgid "panier:: ordre Validation ascendante" +msgstr "Most approved" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:799 +msgid "panier:: ordre Validation descendante" +msgstr "Less approved" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:845 +msgid "L'utilisateur approuve ce document" +msgstr "User approve this document" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:851 +msgid "L'utilisateur n'a pas encore donne son avis sur ce document" +msgstr "User hasn't decided yet" + +#: tmp/cache_twig/09/74/ef957c52550fe635f10ba0463f29.php:857 +msgid "L'utilisateur desapprouve ce document" +msgstr "User disapprove this document" + #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:54 msgid "admin::user: nouvel utilisateur" msgstr "New User" @@ -3144,9 +3272,8 @@ msgid "Reglages:: reglages d inscitpition automatisee" msgstr "Auto register set up" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:114 -#, fuzzy msgid "Filter" -msgstr "Fail" +msgstr "" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:123 msgid "Push::filter on login" @@ -3181,14 +3308,12 @@ msgid "Apply a template" msgstr "" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:189 -#, fuzzy msgid "boutton::choisir" -msgstr "Modify" +msgstr "" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:211 -#, fuzzy msgid "boutton::appliquer" -msgstr "Validate" +msgstr "" #: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:227 msgid "admin::compte-utilisateur id utilisateur" @@ -3309,37 +3434,37 @@ msgstr "Delete \"%s\" term from caption(s)" #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 #: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:860 msgid "prod::thesaurusTab:tree:loading" msgstr "Loading..." -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1232 msgid "boutton::ok" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1258 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1284 msgid "prod::thesaurusTab:dlg:OK" msgstr "Ok" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1265 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1291 msgid "prod::thesaurusTab:dlg:Annuler" msgstr "Cancel" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1316 msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" msgstr "Accept as new term" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1326 msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" msgstr "Accept as a synonym" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1408 msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" msgstr "Accept in %lng_code%" -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 +#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1427 msgid "prod::thesaurusTab:cmenu:Remplacer par..." msgstr "Replace with" @@ -3348,6 +3473,7 @@ msgid "Creer une playlist" msgstr "" #: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:65 +#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:105 msgid "Titre" msgstr "Title" @@ -3391,7 +3517,7 @@ msgstr "Terms of use" msgid "login:: accueil" msgstr "Home" -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:287 +#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:288 msgid "phraseanet:: language" msgstr "Language" @@ -3508,19 +3634,21 @@ msgstr "" msgid "report:: 2 - Bases" msgstr "2 - Databases" +#: tmp/cache_twig/12/0a/b3d79d1d4e6aa2159ebb650983c4.php:55 +msgid "Voulez-vous dire %link% ?" +msgstr "Do you mean %link% ?" + #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 msgid "Ajouter une publication" msgstr "Add a publication" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:58 -#, fuzzy msgid "Feed name" -msgstr "Subview mane" +msgstr "" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:68 -#, fuzzy msgid "Short description" -msgstr "Caption" +msgstr "" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:72 msgid "Sous-titre" @@ -3547,9 +3675,8 @@ msgid "Restriction" msgstr "Restriction" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:153 -#, fuzzy msgid "Public" -msgstr "Public" +msgstr "" #: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:231 msgid "This feed is public" @@ -3564,6 +3691,54 @@ msgstr "Once the publication is deleted, all information about it are lost, proc msgid "validation::envoyer mon rapport" msgstr "Send my report" +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:21 +msgid "About Roles : " +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:26 +msgid "Admin can edit shares, modify content" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:32 +msgid "Editor can modify content" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:38 +msgid "Access user have readonly access" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:46 +msgid "Find a user" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:83 +msgid "You are Admin" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:92 +msgid "Role" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:105 +msgid "Access" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:118 +msgid "Editor" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:131 +msgid "Admin" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:147 +msgid "Remove" +msgstr "" + +#: tmp/cache_twig/13/3d/b3dc2adfdbd4e22924e6def443c1.php:156 +msgid "Notify" +msgstr "" + #: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 msgid "notice" msgstr "Caption" @@ -3576,6 +3751,10 @@ msgstr "Download all" msgid "action : exporter" msgstr "Export" +#: tmp/cache_twig/15/06/d2e85f3a9ae09f5a6f26a134bc0d.php:37 +msgid "%nb_records% records" +msgstr "" + #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 msgid "First Name" msgstr "" @@ -3593,20 +3772,19 @@ msgid "Job" msgstr "" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -#, fuzzy msgid "Company" -msgstr "Order" +msgstr "" #: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:75 msgid "City" msgstr "" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:87 +msgid "Add" msgstr "" -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 -msgid "Add" +#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:91 +msgid "Cancel" msgstr "" #: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 @@ -3639,46 +3817,61 @@ msgstr "" msgid "En cours d'envoi" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:28 msgid "List Name" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:37 +msgid "Save" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:59 +msgid "Share the list" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:64 msgid "Set sharing permission" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 -#, fuzzy -msgid "Activite" -msgstr "Activate" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:79 +msgid "Delete" msgstr "" -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 -#, fuzzy -msgid "Template" -msgstr "Skin" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 -#, fuzzy -msgid "Country" -msgstr "Mount" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 -#, fuzzy -msgid "Position" -msgstr "Caption" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 -#, fuzzy +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:101 msgid "%length% peoples" -msgstr "%basket_length% document(s)" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:107 +msgid "Edit" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 +msgid "View" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:208 +msgid "Activite" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:214 +msgid "Template" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:226 +msgid "Country" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:232 +msgid "Position" +msgstr "" + +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:241 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:266 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:291 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:317 +#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:343 +msgid "All" +msgstr "" #: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 msgid "VALIDATION" @@ -3688,11 +3881,11 @@ msgstr "VALIDATION" msgid "lightbox::recaptitulatif" msgstr "Summary" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:121 msgid "validation:: OUI" msgstr "YES" -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 +#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:136 msgid "validation:: NON" msgstr "NO" @@ -3765,7 +3958,7 @@ msgstr "Add to Basket" #: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1295 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1229 msgid "action : print" msgstr "Print" @@ -3853,234 +4046,230 @@ msgstr "" msgid "Unable to connect to MySQL server" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 msgid "Bonjour, vous etes sur le point d'installer Phraseanet." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:435 msgid "Consultez en ligne les pré-requis et la configuration du serveur web" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:441 msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:451 msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:517 +msgid "Prerequisite and Configuration" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:551 msgid "Executables externes" msgstr "External binaries" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:594 msgid "Required field" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:618 msgid "Phraseanet may require many binaries." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:624 msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:630 msgid "Don't worry, You can modify your configuration later" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:669 msgid "Creation de votre compte" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:681 msgid "Votre adresse email" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:688 msgid "Votre mot de passe" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 msgid "Confirmation de votre mot de passe" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:717 msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" msgstr "About password security policy" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:721 msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" msgstr "Password has to be clearly different from login and must contain 2 types of characters among the following :" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:726 msgid "admin::compte-utilisateur::securite caracteres speciaux" msgstr "Special" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:730 msgid "admin::compte-utilisateur::securite caracteres majuscules" msgstr "Uppercase" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:734 msgid "admin::compte-utilisateur::securite caracteres minuscules" msgstr "Lowercase" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:738 msgid "admin::compte-utilisateur::securite caracteres numeriques" msgstr "Numeric" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:758 msgid "Your email will be used to log in the application." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:762 msgid "Please be sure it is still valid and you can access it" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 msgid "setup::Configuration de la base de compte ApplicationBox" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:820 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1104 msgid "MySQL database connection parameters" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:827 msgid "phraseanet:: adresse" msgstr "Address" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:834 msgid "Database user" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:848 msgid "phraseanet:: port" msgstr "Port" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:855 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1119 msgid "Database" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:863 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1127 msgid "boutton::tester" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:883 msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:902 msgid "ApplicationBox is a Mysql database." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:908 msgid "It stores users datas, rights, and references to DataBoxes where records are stored." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:920 msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:964 msgid "setup::Configuration des repertoires de stockage" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:976 msgid "Repertoire de stockage des fichiers" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:983 msgid "Repertoire de stockage des imagettes" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:990 msgid "Point de montage des imagettes (voir aide ci dessous)" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:999 msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1004 msgid "Exemple Apache" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 msgid "Exemple Nginx" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1042 msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1048 msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1054 msgid "If you plan to store large files, be sure it will fit in these directories." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 msgid "setup::Configuration de la base de stockage DataBox" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1111 msgid "Ne pas creer de DataBox maintenant" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1139 msgid "Modele de donnees" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1170 msgid "Creation des taches" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1175 msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" msgstr "Phraseanet has an embeded task engine to read and write metadatas et perform other operations" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1186 msgid "Creer la tache d'ecriture des metadonnees" msgstr "Create a task to write metadatas" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1195 msgid "Creer la tache de creation des sous-definitions" msgstr "Create a task to make subviews" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1204 msgid "Creer la tache d'indexation" msgstr "Create a task for indexation" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1221 msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1225 msgid "Databoxes store records, metadatas and their classifications" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1246 msgid "button::Install" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1256 msgid "Install in progess" msgstr "" -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 +#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1262 msgid "Installation is currenlty processing, please wait..." msgstr "" @@ -4089,66 +4278,59 @@ msgid "validation:: editer ma note" msgstr "Modify my notes" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1246 msgid "action : editer" msgstr "Edit" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1264 msgid "action : status" msgstr "Properties" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1282 msgid "action : collection" msgstr "Move" #: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1450 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1487 msgid "action : push" msgstr "Push" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:89 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1462 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1499 +msgid "Feedback" +msgstr "" + +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:100 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1468 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1512 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2203 msgid "action : bridge" msgstr "Bridge" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1474 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1524 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2209 msgid "action : publier" msgstr "Publish" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:119 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1539 msgid "action : outils" msgstr "Tools" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "Delete" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 +#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:135 msgid "Certaines donnees du panier ont change" msgstr "This basket has been updated" -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "Refresh" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 msgid "Votre recherche ne retourne aucun resultat" msgstr "" -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "Do you mean %link% ?" - #: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." msgstr "Search using the dialog box (top left of window)" @@ -4285,471 +4467,421 @@ msgstr "Loading..." msgid "phraseanet:: panier" msgstr "Basket" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "Search" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:361 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:365 msgid "phraseanet:: propositions" msgstr "Proposals" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:373 msgid "phraseanet:: thesaurus" msgstr "Thesaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" -msgstr "Reset" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:384 +msgid "Close the WorkZone" +msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "all these words" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "this exact wording or phrase" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "one or more of these words" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "None of these words" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "All" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "None" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " -msgstr "Sort by " - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "Relevance" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "Add date" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "Random" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "descending" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "ascending" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "Stemme search" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "Word(s) from field(s)" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "All fields" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "Document status" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "In a date field" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "From" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "To" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:410 msgid "prod::thesaurusTab:thesaurus" msgstr "Thesaurus" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:414 msgid "prod::thesaurusTab:candidats" msgstr "Candidats" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:426 msgid "prod::thesaurusTab:wizard:accepter le terme candidat" msgstr "Accept candidat" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:432 msgid "prod::thesaurusTab:wizard:remplacer par le terme" msgstr "Replace with term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:552 msgid "chargement" msgstr "Loading" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:581 msgid "prod::thesaurusTab:dlg:supprimer le terme ?" msgstr "Delete term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:587 msgid "prod::thesaurusTab:dlg:accepter le terme ?" msgstr "Accept term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:593 msgid "prod::thesaurusTab:dlg:remplacer le terme ?" msgstr "Replace term ?" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:609 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:613 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:617 msgid "action:: nouveau panier" msgstr "New" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:624 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:628 msgid "Browse Baskets" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 -#, fuzzy +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:635 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:639 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:643 msgid "action:: nouveau reportage" -msgstr "New" +msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:652 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:656 msgid "phraseanet:: tri par date" msgstr "Sort by date" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:664 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:668 msgid "phraseanet:: tri par nom" msgstr "Sort by name" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:676 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1589 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1761 msgid "Preferences" msgstr "Settings" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:702 +msgid "Advanced Search" +msgstr "" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:720 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1194 msgid "phraseanet::type:: documents" msgstr "Documents" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 msgid "phraseanet::type:: reportages" msgstr "Story" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:740 msgid "Tout type" msgstr "Screen type" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:744 msgid "Image" msgstr "Image" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:748 msgid "Video" msgstr "Video" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:752 msgid "Audio" msgstr "Audio" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:756 msgid "Document" msgstr "Document" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 msgid "Flash" msgstr "Flash" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" -msgstr "Databases" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:788 +msgid "boutton:: selectionner toutes les bases" +msgstr "All" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" -msgstr "History" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:793 +msgid "boutton:: selectionner aucune base" +msgstr "None" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" -msgstr "Topics" +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:808 +msgid "Re-initialiser" +msgstr "Reset" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 -#, fuzzy +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:816 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:850 +msgid "Trier par " +msgstr "Sort by " + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:821 +msgid "pertinence" +msgstr "Relevance" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 +msgid "date dajout" +msgstr "Add date" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:829 +msgid "aleatoire" +msgstr "Random" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:835 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:887 +msgid "descendant" +msgstr "descending" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:839 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:891 +msgid "ascendant" +msgstr "ascending" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:844 +msgid "rechercher par stemme" +msgstr "Stemme search" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:902 +msgid "Les termes apparaissent dans le(s) champs" +msgstr "Word(s) from field(s)" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:908 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1092 +msgid "rechercher dans tous les champs" +msgstr "All fields" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:954 +msgid "Status des documents a rechercher" +msgstr "Document status" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1060 +msgid "Rechercher dans un champ date" +msgstr "In a date field" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1102 +msgid "phraseanet::time:: de" +msgstr "From" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 +msgid "phraseanet::time:: a" +msgstr "To" + +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1169 msgid "Select" -msgstr "Delete" +msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1176 msgid "reponses:: selectionner tout" msgstr "All" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1182 msgid "reponses:: selectionner rien" msgstr "None" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1188 msgid "phraseanet::type:: images" msgstr "Images" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1200 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1206 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 -#, fuzzy +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1222 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1355 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1455 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1492 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 msgid "Select an action" -msgstr "Select an action" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1643 msgid "raccourci :: a propos des raccourcis claviers" msgstr "About Short cuts" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1648 msgid "Raccourcis claviers en cours de recherche : " msgstr "Main windows shortcuts " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1653 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1689 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : select all " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1657 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1693 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : print selected " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1661 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1697 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : edit selection " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1665 msgid "Raccourcis::fleche gauche : page precedente " msgstr "left arrow : previous page " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1669 msgid "Raccourcis::fleche droite : page suivante " msgstr "right arrow : next page " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1673 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "up arrow : vertical scroll " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1677 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "down arrow : vertical scroll " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1684 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Baskets & features zone shortcuts " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1704 msgid "Raccourcis claviers en cours de editing : " msgstr "Edit window shortcuts " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1709 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : change field " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 msgid "Raccourcis claviers en cours de preview : " msgstr "Details View window shortcut " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1721 msgid "Raccourcis::fleche gauche : en avant " msgstr "right arrow : next document " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1725 msgid "Raccourcis::fleche gauche : en arriere " msgstr "left arrow : previous document " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1729 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "space : start/stop diaporama " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1737 msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "esc : close most of overlayed windows " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1747 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Do not display help anymore" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1767 msgid "Affichage" msgstr "Display" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1771 msgid "Configuration" msgstr "Configuration" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1779 msgid "Mode de presentation" msgstr "Display mode" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1793 msgid "reponses:: mode vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1803 msgid "reponses:: mode liste" msgstr "List" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1809 msgid "Theme" msgstr "Skin" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1818 msgid "Selecteur de theme" msgstr "Theme picker" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1840 msgid "Presentation de vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1851 msgid "Iconographe (description au rollover)" msgstr "Iconograph (caption on rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1863 msgid "Graphiste (preview au rollover)" msgstr "Graphist (preview on rollover)" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1873 msgid "Informations techniques" msgstr "Technical informations" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1884 msgid "Afficher" msgstr "Display" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1896 msgid "Afficher dans la notice" msgstr "Display in caption" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1908 msgid "Ne pas afficher" msgstr "Hide" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1918 msgid "Type de documents" msgstr "Document(s) Type" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1929 msgid "Afficher une icone" msgstr "Display an Icon" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1937 msgid "reponses:: images par pages : " msgstr "Results per page " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1950 msgid "reponses:: taille des images : " msgstr "Thumbnails size " -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1964 msgid "Couleur de selection" msgstr "Selection color" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1969 msgid "choisir" msgstr "Select" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1979 msgid "Affichage au demarrage" msgstr "Display On startup" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1995 msgid "Ma derniere question" msgstr "My last query" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2006 msgid "Une question personnelle" msgstr "The query" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 msgid "Aide" msgstr "Help" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2078 msgid "preview:: Description" msgstr "Caption" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2082 msgid "preview:: Historique" msgstr "Timeline" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2089 msgid "preview:: Popularite" msgstr "Popularity" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2142 msgid "Presentation de vignettes de panier" msgstr "" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2159 msgid "Afficher les status" msgstr "Show Status" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2177 msgid "Afficher la fiche descriptive" msgstr "Show Caption" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 +#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2195 msgid "Afficher le titre" msgstr "Show Title" -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "Set order" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "Automatic sort" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "Choose" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "Reverse" - #: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 msgid "preview::statistiques de visualisation pour le lien" msgstr "View statistics" @@ -4767,9 +4899,8 @@ msgid "Etes vous sur de supprimer %number% photos ?" msgstr "" #: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:38 -#, fuzzy msgid "Erreur lors de votre authentification" -msgstr "Authentication error" +msgstr "" #: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:53 msgid "Vous etes authentifie avec succes" @@ -4796,7 +4927,6 @@ msgid "Creer" msgstr "Create" #: tmp/cache_twig/4b/1d/eeda3c99bc5c1ea2b32c1b5030e1.php:32 -#: tmp/cache_twig/56/df/8e9606b65d5b86ebe83193d18d40.php:48 msgid "Actions" msgstr "" @@ -4812,6 +4942,10 @@ msgstr "" msgid "Ces informations sont directement fournies par la norme de metadonnees de ce champ : %norm_name%" msgstr "" +#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:37 +msgid "phraseanet::technique::datetime-edit-explain" +msgstr "yyyy/mm/dd hh:mm:ss" + #: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:43 msgid "phraseanet::technique::date-edit-explain (aaaa/mm/jj)" msgstr "" @@ -4925,21 +5059,33 @@ msgstr "No matches found" msgid "Ajouter a" msgstr "" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:21 msgid "Fail" msgstr "Fail" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:27 msgid "Success" msgstr "Success" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" -msgstr "Error : %error%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:75 +msgid "Hello %username%" +msgstr "Hi %username%" -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" -msgstr "Expire in %expiration_date%" +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:90 +msgid "Erreur" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:97 +msgid "%error%" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:113 +msgid "Code d'accès" +msgstr "" + +#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:120 +msgid "Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis :" +msgstr "" #: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 msgid "Rights" @@ -4957,19 +5103,19 @@ msgstr "%display_name% user right edition" msgid "Edition des droits de %number% utilisateurs" msgstr "User rights edition of %number% users" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:698 msgid "admin::compte-utilisateur sexe" msgstr "Gender" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:709 msgid "admin::compte-utilisateur:sexe: mademoiselle" msgstr "Miss" -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:717 msgid "admin::compte-utilisateur:sexe: madame" msgstr "Mrs." -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 +#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:725 msgid "admin::compte-utilisateur:sexe: monsieur" msgstr "Mr." @@ -5002,26 +5148,25 @@ msgid "panier:: description" msgstr "Caption" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:280 msgid "No results" msgstr "" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:286 msgid "1 result" msgstr "" #: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:292 msgid "%Total% results" msgstr "" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 -#, fuzzy +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:189 msgid "Received from %user_name%" -msgstr "Hi %username%" +msgstr "" -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 +#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:240 msgid "Sent for validation to %list_participants%" msgstr "" @@ -5066,9 +5211,9 @@ msgid "Home" msgstr "Home" #: tmp/cache_twig/60/d6/47be888a7c020832754fcd4e22e9.php:94 -#, fuzzy, php-format +#, php-format msgid "%entry_length% documents" -msgstr "%basket_length% document(s)" +msgstr "" #: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:114 msgid "Cocher toute la colonne" @@ -5086,19 +5231,23 @@ msgstr "Create a template user" msgid "Creer un utilisateur" msgstr "Create a new user" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:288 +msgid "Successful install" +msgstr "" + +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:311 msgid "Ajouter un nouvel utilisateur" msgstr "Add a new user" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:316 msgid "Adresse email du nouvel utilisateur" msgstr "New user email address" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:324 msgid "Creer un modele" msgstr "Create a template" -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 +#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:329 msgid "Nom du nouveau modele" msgstr "New template name" @@ -5107,23 +5256,16 @@ msgid "boutton::publier" msgstr "Publish" #: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:15 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:15 -msgid "Ajouter ma selection courrante" -msgstr "Add my current selection" +msgid "Collection" +msgstr "" -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:21 +#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:41 msgid "Story name" msgstr "" -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:27 -#, fuzzy -msgid "Story description" -msgstr "Caption" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:33 -#, fuzzy -msgid "Collection" -msgstr "Selection color" +#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:47 +msgid "Ajouter ma selection courrante" +msgstr "Add my current selection" #: tmp/cache_twig/63/54/32f78e10cecde152548c2c0fb033.php:133 msgid "Garder ma session active" @@ -5146,11 +5288,11 @@ msgstr "" msgid "2000 caracteres maximum, separe par des espaces" msgstr "" -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:21 +#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:15 msgid "Nom du nouveau panier" msgstr "Nom" -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:27 +#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:21 msgid "paniers::description du nouveau panier" msgstr "Caption" @@ -5190,14 +5332,25 @@ msgstr "Number of documents edited" msgid "Lists" msgstr "" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:27 msgid "Refresh" msgstr "" -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -#, fuzzy -msgid "Delete" -msgstr "Delete" +#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:63 +msgid "(%length%)" +msgstr "" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:16 +msgid "Reordonner automatiquement" +msgstr "Automatic sort" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:21 +msgid "Choisir" +msgstr "Choose" + +#: tmp/cache_twig/71/76/405af9058132405d577a00d3ffb7.php:38 +msgid "Inverser" +msgstr "Reverse" #: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 msgid "Playlist" @@ -5215,11 +5368,11 @@ msgstr "" msgid "Aucun bridge disponible. Veuillez contacté un administrateur." msgstr "" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:509 msgid "Vous n'avez pas assez de droits sur les elements selectionnes" msgstr "" -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 +#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:516 msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" msgstr "" @@ -5231,108 +5384,111 @@ msgstr "1 - Time space" msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:122 msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:145 msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:147 msgid "La precedente attribution a ete desactivee" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:223 msgid "Attention !" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:282 msgid "boutton::ajouter" msgstr "Add" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:300 msgid "Nom" msgstr "Name" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:312 msgid "DublinCore Element Set" msgstr "DublinCore Element Set" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:318 msgid "Multivalue" msgstr "Multivalued" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:324 msgid "Indexable" msgstr "Indexable" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:330 msgid "Vocabulary Type" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:336 msgid "Vocabulary restricted" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:348 msgid "Lecture seule" msgstr "Read only" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 -#, fuzzy +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:354 msgid "Type" -msgstr "Mime type" +msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:360 msgid "Separateur" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:366 msgid "Branche Thesaurus" msgstr "Thesaurus branch" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:372 msgid "Affiche dans report" msgstr "Display on reports" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:378 msgid "Afficher en titre" msgstr "Display as Title" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:483 msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:582 msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" msgstr "" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:786 msgid "Tous" msgstr "All" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:794 +msgid "Aucun" +msgstr "None" + +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:802 msgid "Francais" msgstr "French" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:810 msgid "Allemand" msgstr "German" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:818 msgid "Anglais" msgstr "English" -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 +#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:826 msgid "Arabe" msgstr "Arabic" @@ -5399,12 +5555,10 @@ msgid "%basket_length% documents" msgstr "%basket_length% document(s)" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 msgid "Suppression de %n_element% videos" msgstr "" #: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 msgid "Etes vous sur de supprimer %number% videos ?" msgstr "" @@ -5418,9 +5572,8 @@ msgid "publications:: s'abonner aux publications" msgstr "Subscribe" #: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:83 -#, fuzzy msgid "Aller a" -msgstr "Go to " +msgstr "" #: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:143 msgid "Aucune entree pour le moment" @@ -5447,34 +5600,37 @@ msgstr "Back to Home" msgid "Which playlist you want to put you %number% elements into ?" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -#, fuzzy -msgid "mauvais login / mot de passe" -msgstr "Password resistance" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:74 +msgid "Erreur de login / mot de passe" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" -msgstr "Hi %username%" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:82 +msgid "Bonjour, veuillez vous identifier sur %home_title% :" +msgstr "" #: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" -msgstr "%application_name% wants to acces to your data on %home_title%" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" +msgid "Se connecter" msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" -msgstr "Yes" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 +msgid "Problèmes de connexion ?" +msgstr "" -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" -msgstr "No" +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:134 +msgid "Autorisation d'accès" +msgstr "" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:145 +msgid "Autorisez-vous l'application \"%application_name%\" à accéder à votre contenu sur %home_title% ?" +msgstr "" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:175 +msgid "Autoriser" +msgstr "" + +#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:199 +msgid "Ne pas autoriser" +msgstr "" #: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 msgid "Apparait aussi dans ces reportages" @@ -5522,9 +5678,8 @@ msgid "Id" msgstr "" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:203 -#, fuzzy msgid "Email" -msgstr "May" +msgstr "" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:207 msgid "Owner" @@ -5535,193 +5690,129 @@ msgid "Ajouter un publisher" msgstr "Add a Publisher" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:309 -#, fuzzy msgid "Name or email" -msgstr "Email" +msgstr "" #: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:434 msgid "You are not the feed owner" msgstr "" -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "You have a new basket available" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "You have pushed this basket for feedback" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "Basket received from %pusher%" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:297 -msgid "action::exporter" -msgstr "Export" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:308 -msgid "action::editer" -msgstr "Edit" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "Rename" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "Validate" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:323 -msgid "action::detacher" -msgstr "Release from Basket zone" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:549 -msgid "delete" -msgstr "Delete" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:640 -msgid "panier:: ordre du panier" -msgstr "Basket order" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:648 -msgid "panier:: ordre Validation ascendante" -msgstr "Most approved" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:656 -msgid "panier:: ordre Validation descendante" -msgstr "Less approved" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:699 -msgid "L'utilisateur approuve ce document" -msgstr "User approve this document" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:705 -msgid "L'utilisateur desapprouve ce document" -msgstr "User disapprove this document" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "User hasn't decided yet" - #: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 msgid "validation:: note" msgstr "Comments" -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:32 +msgid "Grant rights" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:43 +msgid "Contributor" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:51 +msgid "See others" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:62 msgid "HD Download" msgstr "" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:79 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:444 +msgid "List Manager" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 +msgid "Save this list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:162 +msgid "Select a user in the list" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:166 +msgid "or" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:169 +msgid "Add user" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:256 +msgid "and %n% more peoples" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:277 +msgid "Please consider send this validation to the following users : %recommendation%" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:286 +msgid "Users suggestion" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:334 msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" msgstr "" "Push is used to send a selection of documents to recipients.\n" "Recipients will receive a mail with a link that will launch Phraseanet Lightbox, display documents for visualisation and/or download.\n" "Push is also available as a \"received\" basket within Phraseanet for registered users" -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 -#, fuzzy -msgid "List Manager" -msgstr "Upload Manager" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 -msgid "Select all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 -msgid "Deselect all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 -#, fuzzy -msgid "Back to Push" -msgstr "Push" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 -msgid "Welcome to the ListManager !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 -msgid "Select a list on the left and edit it !" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:340 msgid "Push::une validation est une demande d'appreciation a d'autres personnes" msgstr "" "Click to send a request for feedback on a selection of documents to recipients.\n" "Recipients will receive a mail with a link, that will launch Phraseanet Lightbox, display documents and ask user(s) for feedback and/or download.\n" "Feed back is available as a validation Basket within Phraseanet for registered users" -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:361 +msgid "Select all" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:365 +msgid "Deselect all" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:429 +msgid "Back to Push" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:435 msgid "Back to Feedback" msgstr "" +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:462 +msgid "Welcome to the ListManager !" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:471 +msgid "Start by creating one by using the \"add\" button on the left !" +msgstr "" + +#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:480 +msgid "Select a list on the left and edit it !" +msgstr "" + #: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 msgid "report:: Volumetrie des questions posees sur %home_title%" msgstr "Questions asked" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:89 msgid "Site web" msgstr "Web site" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:104 msgid "Type d'application" msgstr "Application type" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:108 msgid "Application web" msgstr "Web application" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:115 msgid "Application desktop" msgstr "Desktop application" -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 +#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:128 msgid "URL de callback" msgstr "Callback url" @@ -5801,15 +5892,15 @@ msgstr "" msgid "Retour" msgstr "" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:31 msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" msgstr "Select the columns to be displayed in report" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:37 msgid "cocher tout" msgstr "Select all" -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 +#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:44 msgid "tout decocher" msgstr "Unselect all" @@ -5911,126 +6002,130 @@ msgstr[1] "" msgid "Edition de 1 element" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:174 msgid "Aucun statut editable" msgstr "No editable status" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:180 msgid "Les status de certains documents ne sont pas accessible par manque de droits" msgstr "You do not have the required permission to change some of the documents status" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:258 msgid "boutton::remplacer" msgstr "Replace" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:295 msgid "phraseanet:: presse-papier" msgstr "Clipboard" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:303 msgid "prod::editing: rechercher-remplacer" msgstr "Find / Replace" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:307 msgid "prod::editing: modeles de fiches" msgstr "Caption template" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:355 msgid "prod::editing::replace: remplacer dans le champ" msgstr "Replace in field" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:361 msgid "prod::editing::replace: remplacer dans tous les champs" msgstr "Replace in all fields" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:386 msgid "prod::editing:replace: chaine a rechercher" msgstr "Find" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:393 msgid "prod::editing:remplace: chaine remplacante" msgstr "Replace with" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:400 msgid "prod::editing:remplace: options de remplacement" msgstr "Options" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:406 msgid "prod::editing:remplace::option : utiliser une expression reguliere" msgstr "Regular expression" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:437 msgid "Aide sur les expressions regulieres" msgstr "Help about Regular expressions" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:445 msgid "prod::editing:remplace::option: remplacer toutes les occurences" msgstr "Replace All" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:451 msgid "prod::editing:remplace::option: rester insensible a la casse" msgstr "Case insensitive" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:458 msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" msgstr "Whole field" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:464 msgid "prod::editing:remplace::option la valeur est comprise dans le champ" msgstr "In field" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:470 msgid "prod::editing:remplace::option respecter la casse" msgstr "Case sensitive" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:522 msgid "prod::editing:indexation en cours" msgstr "Processing indexation" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:545 msgid "prod::editing: valider ou annuler les modifications" msgstr "Valid changes or Cancel" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:552 msgid "edit::preset:: titre" msgstr "Title" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:561 msgid "Edition impossible" msgstr "Unable to edit" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:570 msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" msgstr "Selected documents come from differents databases, unable to edit" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:576 msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:612 msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" msgstr "" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:618 msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" msgstr "You do not have the required permissions to edit 1 document" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:778 msgid "edit::Certains champs doivent etre remplis pour valider cet editing" msgstr "Some fields must be filled to save changes" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:815 msgid "edit: chosiir limage du regroupement" msgstr "Set as cover document" -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:859 msgid "prod::editing::fields: status " msgstr "Status " -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:914 msgid "Ce champ est decrit comme un element DublinCore" msgstr "" +#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:923 +msgid "This field is represent the title of the document" +msgstr "" + #: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" msgstr "Push to %link% ici %endlink% users from application box %appbox%" @@ -6043,51 +6138,51 @@ msgstr "Validation demand toward %n_user% user from application box %appbox%" msgid "report::Edition des meta-donnees" msgstr "Metadatas Edition" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" -msgstr "Move(s) to collection : %dest%" +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:91 +msgid "report::Changement de collection vers : %coll_name%" +msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:97 msgid "report::Edition des status" msgstr "Edit Status" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:106 msgid "report::Impression des formats : %format%" msgstr "Printing(s) : %format%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:115 msgid "report::Substitution de %dest%" msgstr "" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:124 msgid "report::Publication de %dest%" msgstr "Publication(s) from %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:133 msgid "report::Telechargement de %dest%" msgstr "Download(s) from %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:145 msgid "Envoi par mail a %dest% de %content%" msgstr "Sent by email of %content% to %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:157 msgid "Envoi par ftp a %dest% de %content%" msgstr "Sent by ftp of %content% to %dest%" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:163 msgid "report::supression du document" msgstr "Delete document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:169 msgid "report::ajout du documentt" msgstr "Add document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:175 msgid "report::Modification du document -- je ne me souviens plus de quoi..." msgstr "Unknown action on document" -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 +#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:192 msgid "report:: par %user_infos%" msgstr "By %user_infos%" @@ -6100,27 +6195,26 @@ msgid "settings OAuth" msgstr "OAuth settings" #: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:58 -#, fuzzy msgid "Les parametres oauth de votre application." -msgstr "your application Oauth settings" +msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:123 msgid "Votre token d'access" msgstr "" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:127 msgid "Les paramétres oauth de votre application." msgstr "your application Oauth settings" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:135 msgid "Token" msgstr "Token" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:151 msgid "Le token n'a pas encore ete genere" msgstr "Token not generated yet" -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 +#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:165 msgid "boutton::generer" msgstr "Generate" @@ -6257,51 +6351,51 @@ msgstr "Some fields must be completed" msgid "Vous devez selectionner un type de sous definitions" msgstr "Select type of subviews" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "" - #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 -msgid "You can alternatively receive an email when the download is ready." +msgid "You can not directly download more than %max_download% Mo ; time to package all documents is too long" msgstr "" #: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 +msgid "You can alternatively receive an email when the download is ready." +msgstr "" + +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:960 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1127 msgid "phraseanet:: utiliser SSL" msgstr "SSL" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1179 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Use passive mode" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1199 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Max. retry" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1217 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "Ftp reception folder" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1235 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Create directory" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1265 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1307 msgid "Nom des fichiers a l'export" msgstr "FIles name to use for Download" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1320 msgid "export::titre: titre du documument" msgstr "Title" -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 +#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1334 msgid "export::titre: nom original du document" msgstr "Original name" @@ -6409,84 +6503,90 @@ msgstr "Comments" msgid "boutton::enregistrer" msgstr "Save" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:43 msgid "Login" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:61 msgid "First/Last Name" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 -#, fuzzy +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:97 msgid "E-Mail" -msgstr "Fail" +msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:133 msgid "Last Template" msgstr "" -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 -#, fuzzy +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:151 msgid "Creation date" -msgstr "Edit" +msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:271 +msgid "Previous" +msgstr "" + +#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:288 +msgid "Next" +msgstr "" + +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:219 msgid "Create new subdef" msgstr "Create new subview" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:223 msgid "Delete the subdef ?" msgstr "Delete the subview" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:229 msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:240 msgid "Subdef name" msgstr "Subview mane" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:245 msgid "classe d'acces" msgstr "Access Class" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:254 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:382 msgid "preview" msgstr "Preveiw" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:258 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:390 msgid "tout le monde" msgstr "Everyone" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:336 msgid "Telechargeable" msgstr "" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:354 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:366 msgid "classe" msgstr "Class" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 msgid "Baseurl" msgstr "Baseurl" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:435 msgid "Write Metas" msgstr "Write Metadatas" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:456 msgid "mediatype" msgstr "Media type" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:637 msgid "yes" msgstr "Yes" -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 +#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:646 msgid "no" msgstr "No" @@ -6637,14 +6737,12 @@ msgid "Received baskets" msgstr "" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:67 -#, fuzzy msgid "Validations sent" -msgstr "Validations" +msgstr "" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:79 -#, fuzzy msgid "Validations received" -msgstr "Validations" +msgstr "" #: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:86 msgid "When" @@ -6698,15 +6796,15 @@ msgstr "" msgid "Back to basket list" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:163 msgid "No records" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:169 msgid "1 record" msgstr "" -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 +#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:175 msgid "%ElementsCount% records" msgstr "" @@ -6730,11 +6828,29 @@ msgstr "Status" msgid "Aucune" msgstr "None" -#: www/admin/adminFeedback.php:297 +#: www/admin/adminFeedback.php:69 +msgid "Base empty successful" +msgstr "" + +#: www/admin/adminFeedback.php:85 +#: www/admin/adminFeedback.php:118 +msgid "A task has been creted, please run it to complete empty collection" +msgstr "" + +#: www/admin/adminFeedback.php:91 +#: www/admin/adminFeedback.php:123 +msgid "An error occurred" +msgstr "" + +#: www/admin/adminFeedback.php:96 +msgid "Collection empty successful" +msgstr "" + +#: www/admin/adminFeedback.php:316 msgid "admin::base: aucun alias" msgstr "No aliases" -#: www/admin/adminFeedback.php:387 +#: www/admin/adminFeedback.php:406 msgid "admin::base: vider la base avant de la supprimer" msgstr "Empty database before delete" @@ -6777,111 +6893,111 @@ msgstr "File sending error" msgid "admin::base:collection: etes vous sur de vider la collection ?" msgstr "Confirm collection dump ?" -#: www/admin/collection.php:302 +#: www/admin/collection.php:303 msgid "admin::base:collection: etes vous sur de demonter cette collection ?" msgstr "Confirm collection unmount ?" -#: www/admin/collection.php:316 +#: www/admin/collection.php:317 msgid "admin::base:collection: etes vous sur de publier cette collection ?" msgstr "Confirm collection publication ?" -#: www/admin/collection.php:321 +#: www/admin/collection.php:322 msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" msgstr "Confirm collection stop ?" -#: www/admin/collection.php:391 +#: www/admin/collection.php:392 msgid "phraseanet:: collection" msgstr "Collection" -#: www/admin/collection.php:398 +#: www/admin/collection.php:399 msgid "admin::base:collection: numero de collection distante" msgstr "Distant collection ID" -#: www/admin/collection.php:402 +#: www/admin/collection.php:403 msgid "admin::base:collection: etat de la collection" msgstr "Collection Status" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: activer la collection" msgstr "Enable collection" -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 +#: www/admin/collection.php:403 +#: www/admin/collection.php:660 msgid "admin::base:collection: descativer la collection" msgstr "Disable collection" -#: www/admin/collection.php:413 +#: www/admin/collection.php:414 msgid "phraseanet:: details" msgstr "Details" -#: www/admin/collection.php:423 +#: www/admin/collection.php:424 msgid "admin::base: masquer les details" msgstr "Hide details" -#: www/admin/collection.php:439 +#: www/admin/collection.php:440 msgid "admin::base: objet" msgstr "Object" -#: www/admin/collection.php:443 +#: www/admin/collection.php:444 msgid "admin::base: nombre" msgstr "Number" -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 +#: www/admin/collection.php:447 +#: www/admin/collection.php:450 msgid "admin::base: poids" msgstr "Size" -#: www/admin/collection.php:590 +#: www/admin/collection.php:591 msgid "admin::collection:: Gestionnaires des commandes" msgstr "Order Managers" -#: www/admin/collection.php:605 +#: www/admin/collection.php:606 msgid "setup:: ajouter un administrateur des commandes" msgstr "Add a new order Manager" -#: www/admin/collection.php:623 +#: www/admin/collection.php:624 msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" msgstr "Display options for documents shared outside Phraseanet" -#: www/admin/collection.php:625 +#: www/admin/collection.php:626 msgid "admin::colelction::presentation des elements : rien" msgstr "Default" -#: www/admin/collection.php:626 +#: www/admin/collection.php:627 msgid "admin::colelction::presentation des elements : watermark" msgstr "Watermark file" -#: www/admin/collection.php:627 +#: www/admin/collection.php:628 msgid "admin::colelction::presentation des elements : stamp" msgstr "Stamp" -#: www/admin/collection.php:633 +#: www/admin/collection.php:634 msgid "admin::base:collection: renommer la collection" msgstr "Rename" -#: www/admin/collection.php:640 +#: www/admin/collection.php:641 msgid "admin::base:collection: Nom de la nouvelle collection : " msgstr "Name : " -#: www/admin/collection.php:665 +#: www/admin/collection.php:666 msgid "admin::base:collection: vider la collection" msgstr "Empty" -#: www/admin/collection.php:679 +#: www/admin/collection.php:680 msgid "admin::collection: Confirmez vous la suppression de cette collection ?" msgstr "Confirm collection delete ?" -#: www/admin/collection.php:692 +#: www/admin/collection.php:693 msgid "admin::base:collection: minilogo actuel" msgstr "Current minilogo" -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 +#: www/admin/collection.php:713 +#: www/admin/collection.php:743 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "No file" -#: www/admin/collection.php:781 +#: www/admin/collection.php:782 msgid "admin::base:collection: image de presentation : " msgstr "Collection introduction banner " @@ -6915,7 +7031,7 @@ msgid "Confirmez-vous la re-indexation de la base ?" msgstr "Confirm Database re-indexation" #: www/admin/database.php:174 -#: www/admin/database.php:378 +#: www/admin/database.php:379 msgid "admin::base: Alias" msgstr "Alias" @@ -6923,320 +7039,319 @@ msgstr "Alias" msgid "admin::base: Confirmer le vidage complet de la base" msgstr "Delete full content of database ?" -#: www/admin/database.php:259 +#: www/admin/database.php:260 msgid "admin::base: Confirmer la suppression de la base" msgstr "Confirm Database removal" -#: www/admin/database.php:286 +#: www/admin/database.php:287 msgid "admin::base: Confirmer la suppression de tous les logs" msgstr "Delete complete log of database ?" -#: www/admin/database.php:312 +#: www/admin/database.php:313 msgid "admin::base: Confirmer vous l'arret de la publication de la base" msgstr "Stop database publication ?" -#: www/admin/database.php:394 +#: www/admin/database.php:395 msgid "admin::base: nombre d'enregistrements sur la base :" msgstr "Records on database :" -#: www/admin/database.php:405 +#: www/admin/database.php:406 msgid "admin::base: nombre de mots uniques sur la base : " msgstr "Unique words : " -#: www/admin/database.php:410 +#: www/admin/database.php:411 msgid "admin::base: nombre de mots indexes sur la base" msgstr "indexed words :" -#: www/admin/database.php:417 +#: www/admin/database.php:418 msgid "admin::base: nombre de termes de Thesaurus indexes :" msgstr "Thesaurus indexed terms :" -#: www/admin/database.php:471 +#: www/admin/database.php:472 msgid "admin::base: enregistrements orphelins" msgstr "Orphans documents" -#: www/admin/database.php:505 -#: www/admin/database.php:522 +#: www/admin/database.php:506 +#: www/admin/database.php:523 msgid "report:: total" msgstr "Sum" -#: www/admin/database.php:547 +#: www/admin/database.php:548 msgid "admin::base: document indexes en utilisant la fiche xml" msgstr "Full text indexed documents" -#: www/admin/database.php:557 +#: www/admin/database.php:558 msgid "admin::base: document indexes en utilisant le thesaurus" msgstr "Thesaurus indexed documents" -#: www/admin/database.php:573 +#: www/admin/database.php:574 msgid "admin::base: Cette base est indexable" msgstr "This database can be indexed" -#: www/admin/database.php:580 +#: www/admin/database.php:581 msgid "base:: re-indexer" msgstr "Re-index database now (regarding quantity of documents, this operation can last several hours)" -#: www/admin/database.php:588 -#: www/admin/newcoll.php:119 +#: www/admin/database.php:589 +#: www/admin/newcoll.php:122 msgid "admin::base:collection: Creer une collection" msgstr "Create collection" -#: www/admin/database.php:600 +#: www/admin/database.php:601 msgid "admin::base:collection: Monter une collection" msgstr "Mount a collection" -#: www/admin/database.php:621 -#: www/admin/newcoll.php:149 +#: www/admin/database.php:622 +#: www/admin/newcoll.php:152 msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " msgstr "apply users and rights from collection : " -#: www/admin/database.php:635 +#: www/admin/database.php:636 msgid "Monter" msgstr "Mount" -#: www/admin/database.php:649 +#: www/admin/database.php:650 msgid "Activer une collection" msgstr "Activate a collection" -#: www/admin/database.php:675 +#: www/admin/database.php:676 msgid "admin::base: supprimer tous les logs" msgstr "Delete all Logs" -#: www/admin/database.php:681 +#: www/admin/database.php:682 msgid "admin::base: arreter la publication de la base" msgstr "Stop database publication" -#: www/admin/database.php:687 +#: www/admin/database.php:688 msgid "admin::base: vider la base" msgstr "Empty database" -#: www/admin/database.php:693 +#: www/admin/database.php:694 msgid "admin::base: supprimer la base" msgstr "Delete database" -#: www/admin/database.php:703 +#: www/admin/database.php:704 msgid "admin::base: logo impression PDF" msgstr "Print Logo" -#: www/admin/database.php:716 +#: www/admin/database.php:717 msgid "admin::base:collection: supprimer le logo" msgstr "Delete logo" -#: www/admin/database.php:739 +#: www/admin/database.php:740 msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Upload Logo (Height 35px max., jpeg)" -#: www/admin/databases.php:66 +#: www/admin/databases.php:67 msgid "Propositions de modifications des tables" msgstr "" -#: www/admin/databases.php:75 +#: www/admin/databases.php:76 msgid "N'oubliez pas de redemarrer le planificateur de taches" msgstr "Don't forget to restart task scheduler" -#: www/admin/databases.php:82 +#: www/admin/databases.php:83 msgid "Veuillez arreter le planificateur avant la mise a jour" msgstr "Please stop Scheduler before updating" -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 +#: www/admin/databases.php:94 +#: www/admin/databases.php:140 +#: www/admin/databases.php:167 msgid "Database name can not contains special characters" msgstr "" -#: www/admin/databases.php:134 +#: www/admin/databases.php:129 msgid "Database does not exists or can not be accessed" msgstr "" -#: www/admin/databases.php:329 +#: www/admin/databases.php:318 msgid "admin::base: Version" msgstr "Version" -#: www/admin/databases.php:334 +#: www/admin/databases.php:323 msgid "update::Votre application necessite une mise a jour vers : " msgstr "Your application needs an update to : " -#: www/admin/databases.php:340 +#: www/admin/databases.php:329 msgid "update::Votre version est a jour : " msgstr "Your version is up to date " -#: www/admin/databases.php:346 +#: www/admin/databases.php:335 msgid "update::Verifier els tables" msgstr "Repair table" -#: www/admin/databases.php:351 +#: www/admin/databases.php:340 msgid "admin::base: creer une base" msgstr "Create new database" -#: www/admin/databases.php:355 +#: www/admin/databases.php:344 msgid "phraseanet:: Creer une base sur un serveur different de l'application box" msgstr "Create a new database on another server" -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 +#: www/admin/databases.php:348 +#: www/admin/databases.php:400 msgid "phraseanet:: hostname" msgstr "Host name" -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 +#: www/admin/databases.php:354 +#: www/admin/databases.php:406 msgid "phraseanet:: user" msgstr "User" -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 +#: www/admin/databases.php:357 +#: www/admin/databases.php:409 msgid "phraseanet:: password" msgstr "Password" -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 +#: www/admin/databases.php:361 +#: www/admin/databases.php:413 msgid "phraseanet:: dbname" msgstr "Database Name" -#: www/admin/databases.php:375 +#: www/admin/databases.php:364 msgid "phraseanet:: Modele de donnees" msgstr "XML structure template" -#: www/admin/databases.php:397 -msgid "boutton::creer" -msgstr "Create" - -#: www/admin/databases.php:403 +#: www/admin/databases.php:392 msgid "admin::base: Monter une base" msgstr "Mount database" -#: www/admin/databases.php:407 +#: www/admin/databases.php:396 msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" msgstr "Mount Database from a distant host." -#: www/admin/databases.php:428 +#: www/admin/databases.php:417 msgid "boutton::monter" msgstr "Mount" -#: www/admin/demand.php:366 +#: www/admin/demand.php:372 msgid "admin:: demandes en cours" msgstr "Pending registration" -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 +#: www/admin/demand.php:377 +#: www/admin/demand.php:504 msgid "admin:: refuser l'acces" msgstr "Deny access" -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 +#: www/admin/demand.php:378 +#: www/admin/demand.php:507 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "Allow Display and download for previews" -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 +#: www/admin/demand.php:379 +#: www/admin/demand.php:510 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "Allow previews and documents download" -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 +#: www/admin/demand.php:380 +#: www/admin/demand.php:513 msgid "admin:: watermarquer les documents" msgstr "Apply watermark on previews" -#: www/admin/demand.php:377 +#: www/admin/demand.php:383 msgid "admin::compte-utilisateur date d'inscription" msgstr "Register" -#: www/admin/demand.php:378 +#: www/admin/demand.php:384 msgid "admin::collection" msgstr "Collection" -#: www/admin/demand.php:480 +#: www/admin/demand.php:486 msgid "admin:: appliquer le modele " msgstr "Apply template " -#: www/admin/newcoll.php:42 +#: www/admin/newcoll.php:43 msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" msgstr "Collection not created, it must have a name" -#: www/admin/sessionwhois.php:58 +#: www/admin/newcoll.php:175 +msgid "Collection successfully created" +msgstr "" + +#: www/admin/sessionwhois.php:59 msgid "admin::monitor: utilisateur" msgstr "User" -#: www/admin/sessionwhois.php:59 +#: www/admin/sessionwhois.php:60 msgid "admin::monitor: modules" msgstr "Modules" -#: www/admin/sessionwhois.php:61 +#: www/admin/sessionwhois.php:62 msgid "admin::monitor: date de connexion" msgstr "Connection date" -#: www/admin/sessionwhois.php:62 +#: www/admin/sessionwhois.php:63 msgid "admin::monitor: dernier access" msgstr "Last access" -#: www/admin/sessionwhois.php:101 +#: www/admin/sessionwhois.php:102 msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " msgstr "Connected databases " -#: www/admin/sessionwhois.php:116 +#: www/admin/sessionwhois.php:117 msgid "Session persistente" msgstr "Persistent session(s)" -#: www/admin/sessionwhois.php:134 +#: www/admin/sessionwhois.php:135 msgid "admin::monitor: module inconnu" msgstr "Unknown" -#: www/admin/sessionwhois.php:243 +#: www/admin/sessionwhois.php:244 msgid "admin::monitor: total des utilisateurs uniques : " msgstr "Unique visitors " -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" -msgstr "No Memcached server linked" +#: www/admin/sitestruct.php:187 +msgid "all caches services have been flushed" +msgstr "" -#: www/admin/sitestruct.php:189 +#: www/admin/sitestruct.php:193 msgid "setup:: administrateurs de l'application" msgstr "Administrators" -#: www/admin/sitestruct.php:201 +#: www/admin/sitestruct.php:205 msgid "setup:: ajouter un administrateur de l'application" msgstr "Add an admin" -#: www/admin/sitestruct.php:207 +#: www/admin/sitestruct.php:211 msgid "setup:: Reinitialisation des droits admins" msgstr "Reset admin rights" -#: www/admin/sitestruct.php:211 +#: www/admin/sitestruct.php:215 msgid "boutton::reinitialiser" msgstr "Reset" -#: www/admin/sitestruct.php:214 +#: www/admin/sitestruct.php:218 msgid "setup:: Reglages generaux" msgstr "Main settings" -#: www/admin/sitestruct.php:216 +#: www/admin/sitestruct.php:220 msgid "setup::Votre configuration" msgstr "Your configuration" -#: www/admin/sitestruct.php:244 +#: www/admin/sitestruct.php:248 msgid "setup::Filesystem configuration" msgstr "File System configuration" -#: www/admin/sitestruct.php:258 +#: www/admin/sitestruct.php:262 msgid "setup::Executables" msgstr "Executables" -#: www/admin/sitestruct.php:272 +#: www/admin/sitestruct.php:276 msgid "setup::PHP extensions" msgstr "PHP Extensions" -#: www/admin/sitestruct.php:285 +#: www/admin/sitestruct.php:289 msgid "setup::Serveur de cache" msgstr "" -#: www/admin/sitestruct.php:304 +#: www/admin/sitestruct.php:308 msgid "Phrasea Module" msgstr "Phrasea Module" #: www/admin/statbits.php:110 #: www/admin/statbits.php:147 -#, fuzzy msgid "You do not enough rights to update status" -msgstr "You do not have the required permissions to upload documents" +msgstr "" #: www/admin/statbits.php:114 #: www/admin/statbits.php:151 @@ -7339,29 +7454,29 @@ msgstr "Display illustrations on top of thumbnails, for all users" msgid "admin::status: confirmer la suppression du status ?" msgstr "Confirm status delete" -#: www/admin/structure.php:76 +#: www/admin/structure.php:77 msgid "admin::base: structure" msgstr "Structure" -#: www/admin/structure.php:91 +#: www/admin/structure.php:92 msgid "admin::base: xml invalide, les changements ne seront pas appliques" msgstr "Invalid XML, unable to apply changes" -#: www/admin/sugval.php:934 +#: www/admin/sugval.php:935 msgid "" "admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" "Continuer quand meme ?" msgstr "Warning, switch to graphic view may loss your xml if you did not save it. Continue ?" -#: www/admin/sugval.php:966 +#: www/admin/sugval.php:967 msgid "Suggested values" msgstr "" -#: www/admin/sugval.php:983 +#: www/admin/sugval.php:984 msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Suggested values - collection settings" -#: www/admin/sugval.php:1008 +#: www/admin/sugval.php:1009 msgid "admin::sugval: champs" msgstr "Fields" @@ -7370,236 +7485,223 @@ msgstr "Fields" msgid "admin::tasks: xml invalide, restaurer la version precedente ?" msgstr "Invalid Xml, restore previous version ?" -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 +#: www/admin/taskmanager.php:261 +#: www/admin/taskmanager.php:595 msgid "admin::tasks: supprimer la tache ?" msgstr "Delete Task ?" -#: www/admin/taskmanager.php:278 +#: www/admin/taskmanager.php:280 msgid "Fermer" msgstr "Close" -#: www/admin/taskmanager.php:279 +#: www/admin/taskmanager.php:281 msgid "Renouveller" msgstr "Renew" -#: www/admin/taskmanager.php:470 +#: www/admin/taskmanager.php:472 msgid "admin::tasks: planificateur de taches" msgstr "Scheduler" -#: www/admin/taskmanager.php:478 +#: www/admin/taskmanager.php:480 #, php-format msgid "Last update at %s." msgstr "" -#: www/admin/taskmanager.php:479 +#: www/admin/taskmanager.php:481 msgid "admin::tasks: Nouvelle tache" msgstr "New task" -#: www/admin/taskmanager.php:486 +#: www/admin/taskmanager.php:488 msgid "admin::tasks: statut de la tache" msgstr "Status" -#: www/admin/taskmanager.php:487 +#: www/admin/taskmanager.php:489 msgid "admin::tasks: process_id de la tache" msgstr "Task Process_id" -#: www/admin/taskmanager.php:488 +#: www/admin/taskmanager.php:490 msgid "admin::tasks: etat de progression de la tache" msgstr "Operation in progress" -#: www/admin/taskmanager.php:751 -#, fuzzy -msgid "Preferences du TaskManager" -msgstr "Scheduler setup" - #: www/admin/taskmanager.php:753 +msgid "Preferences du TaskManager" +msgstr "" + +#: www/admin/taskmanager.php:755 msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" msgstr "This url allows to control Scheduler from a cron manager" -#: www/client/answer.php:186 +#: www/client/answer.php:182 msgid "client::answers: rapport de questions par bases" msgstr "Query Report" -#: www/client/answer.php:191 +#: www/client/answer.php:187 #, php-format msgid "client::answers: %d reponses" msgstr "%d result(s)" -#: www/client/answer.php:488 +#: www/client/answer.php:486 msgid "reponses:: Votre recherche ne retourne aucun resultat" msgstr "No results for your search" -#: www/client/baskets.php:130 +#: www/client/baskets.php:124 msgid "paniers::categories: mes paniers" msgstr "My baskets" -#: www/client/baskets.php:136 +#: www/client/baskets.php:130 msgid "paniers::categories: paniers recus" msgstr "Baskets received" -#: www/client/baskets.php:153 +#: www/client/baskets.php:147 #, php-format msgid "paniers:: %d documents dans le panier" msgstr "%d document(s)" -#: www/client/baskets.php:158 +#: www/client/baskets.php:152 #, php-format msgid "paniers:: paniers:: %d documents dans le panier" msgstr "%d document(s)" -#: www/client/baskets.php:179 +#: www/client/baskets.php:173 msgid "action : ouvrir dans le comparateur" msgstr "Launch Lighbox" -#: www/client/baskets.php:188 +#: www/client/baskets.php:182 #, php-format msgid "paniers:: panier emis par %s" msgstr "Basket sent by %s" -#: www/client/baskets.php:266 +#: www/client/baskets.php:260 msgid "paniers:: vous avez de nouveaux paniers non consultes" msgstr "New basket(s) received" #: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "%b, %d %Y %l:%s %p" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "%d-%m-%Y" - -#: www/client/homeinterpubbask.php:80 msgid "publications:: dernieres publications" msgstr "Last Publications" -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "Unread" - -#: www/client/homeinterpubbask.php:140 +#: www/client/homeinterpubbask.php:68 msgid "publications:: derniere mise a jour" msgstr "Last update" -#: www/client/index.php:152 +#: www/client/index.php:161 msgid "client:: recherche" msgstr "Search" -#: www/client/index.php:159 +#: www/client/index.php:168 msgid "client:: recherche avancee" msgstr "Advanced Search" -#: www/client/index.php:166 +#: www/client/index.php:175 msgid "client:: topics" msgstr "Topics" -#: www/client/index.php:188 -#: www/client/index.php:196 +#: www/client/index.php:197 +#: www/client/index.php:205 msgid "phraseanet::technique:: et" msgstr "And" -#: www/client/index.php:189 -#: www/client/index.php:197 +#: www/client/index.php:198 +#: www/client/index.php:206 msgid "phraseanet::technique:: or" msgstr "Or" -#: www/client/index.php:190 -#: www/client/index.php:198 +#: www/client/index.php:199 +#: www/client/index.php:207 msgid "phraseanet::technique:: except" msgstr "Except" -#: www/client/index.php:210 +#: www/client/index.php:219 msgid "client::recherche: rechercher dans les bases :" msgstr "Search" -#: www/client/index.php:263 +#: www/client/index.php:261 msgid "client::recherche: rechercher dans toutes les bases" msgstr "All databases" -#: www/client/index.php:272 +#: www/client/index.php:268 msgid "phraseanet:: presentation des resultats" msgstr "Display settings" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "phraseanet:: collections" msgstr "Collections" -#: www/client/index.php:328 +#: www/client/index.php:324 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" msgstr "Clic here to reset all filters" -#: www/client/index.php:342 +#: www/client/index.php:338 msgid "phraseanet:: historique" msgstr "Timeline" -#: www/client/index.php:374 +#: www/client/index.php:368 msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "Reset all filters" -#: www/client/index.php:465 +#: www/client/index.php:437 msgid "client::recherche: filter sur" msgstr "Filter" -#: www/client/index.php:468 +#: www/client/index.php:440 msgid "client::recherche: filtrer par dates" msgstr "By Date" -#: www/client/index.php:470 +#: www/client/index.php:442 msgid "client::recherche: filtrer par status" msgstr "By Status" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs" msgstr "By Field" -#: www/client/index.php:472 +#: www/client/index.php:444 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "All fields" -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 +#: www/include/download_anonymous.php:73 +#: www/include/download_anonymous.php:116 +#: www/include/download_prepare.php:108 +#: www/include/download_prepare.php:151 msgid "phraseanet:: Telechargement de documents" msgstr "Download Manager" -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 +#: www/include/download_anonymous.php:121 +#: www/include/download_prepare.php:153 msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." msgstr "Be Patient, requested documents are being gathered, this operation can take several minutes." -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 +#: www/include/download_anonymous.php:128 +#: www/include/download_prepare.php:158 #, php-format msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" msgstr "Your download is ready. If download does not start within seconds, %s click here %s" -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 +#: www/include/download_anonymous.php:133 +#: www/include/download_prepare.php:161 msgid "telechargement::Le fichier contient les elements suivants" msgstr "Zip file contains the following documents" -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 +#: www/include/download_anonymous.php:137 +#: www/include/download_prepare.php:165 msgid "phrseanet:: base" msgstr "Database" -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 +#: www/include/download_anonymous.php:138 +#: www/include/download_prepare.php:166 msgid "document:: nom" msgstr "Document name" -#: www/include/download_anonymous.php:137 -#: www/include/download_prepare.php:165 +#: www/include/download_anonymous.php:139 +#: www/include/download_prepare.php:167 msgid "phrseanet:: sous definition" msgstr "Document type" -#: www/include/download_anonymous.php:138 -#: www/include/download_prepare.php:166 +#: www/include/download_anonymous.php:140 +#: www/include/download_prepare.php:168 msgid "poids" msgstr "Size" -#: www/include/download_anonymous.php:172 +#: www/include/download_anonymous.php:174 msgid "Votre lien est corrompu" msgstr "Your link is corrupted" @@ -7635,452 +7737,449 @@ msgstr "An internal error occured. Server connection interupted" msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" msgstr "If the problem persists, System Administrator" -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "Delivery Error for %s e-mail(s)" - -#: www/include/updses.php:92 +#: www/include/updses.php:93 msgid "The application is going down for maintenance, please logout." msgstr "You will be disconnected for maintenance, please quit Phraseanet" -#: www/login/account.php:181 +#: www/login/account.php:182 msgid "etes vous sur de vouloir supprimer cette application" msgstr "" -#: www/login/account.php:188 +#: www/login/account.php:183 +msgid "oui" +msgstr "Yes" + +#: www/login/account.php:184 +msgid "non" +msgstr "No" + +#: www/login/account.php:189 msgid "Erreur lors du chargement" msgstr "" -#: www/login/account.php:412 +#: www/login/account.php:413 msgid "Informations" msgstr "" -#: www/login/account.php:413 +#: www/login/account.php:414 msgid "Acces" msgstr "" -#: www/login/account.php:414 +#: www/login/account.php:415 msgid "Sessions" msgstr "" -#: www/login/account.php:416 +#: www/login/account.php:417 msgid "Developpeur" msgstr "" -#: www/login/account.php:431 -#: www/login/index.php:110 +#: www/login/account.php:432 +#: www/login/index.php:112 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "Password update done" -#: www/login/account.php:434 +#: www/login/account.php:435 msgid "login::notification: Changements enregistres" msgstr "Changes saved" -#: www/login/account.php:437 +#: www/login/account.php:438 msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Error when saving modifications" -#: www/login/account.php:440 +#: www/login/account.php:441 msgid "login::notification: Vos demandes ont ete prises en compte" msgstr "Requests are beeing processed" -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 +#: www/login/account.php:456 +#: www/login/forgotpwd.php:100 +#: www/login/reset-email.php:46 +#: www/login/reset-email.php:57 +#: www/login/reset-email.php:80 +#: www/login/reset-email.php:91 +#: www/login/reset-email.php:160 +#: www/login/reset-email.php:209 +#: www/login/reset-password.php:140 msgid "admin::compte-utilisateur changer mon mot de passe" msgstr "Change password" -#: www/login/account.php:497 +#: www/login/account.php:498 msgid "login:: Changer mon adresse email" msgstr "Change my e-mail" -#: www/login/account.php:603 +#: www/login/account.php:604 msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" msgstr "Enable FTP fonction" -#: www/login/account.php:644 +#: www/login/account.php:645 msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" msgstr "Repository prefix name" -#: www/login/account.php:665 +#: www/login/account.php:666 msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" msgstr "Data sent automatically" -#: www/login/account.php:667 +#: www/login/account.php:668 msgid "phraseanet:: original" msgstr "Original" -#: www/login/account.php:669 +#: www/login/account.php:670 msgid "phraseanet:: imagette" msgstr "Thumbnail" -#: www/login/forgotpwd.php:71 +#: www/login/forgotpwd.php:73 +#: www/login/register.php:101 +#: www/login/reset-password.php:53 msgid "forms::la valeur donnee contient des caracteres invalides" msgstr "contains bad characters" -#: www/login/forgotpwd.php:175 +#: www/login/forgotpwd.php:177 msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." msgstr "To optimize security you must update you password" -#: www/login/forgotpwd.php:176 +#: www/login/forgotpwd.php:178 msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." msgstr "" -#: www/login/forgotpwd.php:184 +#: www/login/forgotpwd.php:186 +#: www/login/reset-password.php:171 msgid "admin::compte-utilisateur nouveau mot de passe" msgstr "New password" -#: www/login/forgotpwd.php:204 +#: www/login/forgotpwd.php:206 +#: www/login/reset-password.php:185 msgid "admin::compte-utilisateur confirmer le mot de passe" msgstr "Confirm password" -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 +#: www/login/forgotpwd.php:225 +#: www/login/forgotpwd.php:287 msgid "login:: Retour a l'accueil" msgstr "Back to homepage" -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 +#: www/login/forgotpwd.php:252 +#: www/login/forgotpwd.php:258 msgid "phraseanet::erreur: Echec du serveur mail" msgstr "Mailserver error" -#: www/login/forgotpwd.php:253 +#: www/login/forgotpwd.php:255 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "Account does not exist" -#: www/login/forgotpwd.php:259 +#: www/login/forgotpwd.php:261 msgid "phraseanet::erreur: l'url n'est plus valide" msgstr "Url does not exist anymore" -#: www/login/forgotpwd.php:268 +#: www/login/forgotpwd.php:270 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "e-mail has been sent" -#: www/login/forgotpwd.php:278 +#: www/login/forgotpwd.php:280 msgid "login:: Entrez votre adresse email" msgstr "Enter your e-mail address" -#: www/login/index.php:68 +#: www/login/index.php:70 msgid "login::erreur: Erreur d'authentification" msgstr "Authentication error" -#: www/login/index.php:71 +#: www/login/index.php:73 msgid "login::erreur: Erreur de captcha" msgstr "To many authentification error. Please use the captcha" -#: www/login/index.php:74 +#: www/login/index.php:76 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "Access denied, you have not confirmed your e-mail adress." -#: www/login/index.php:76 +#: www/login/index.php:78 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "Send me a new confirmation e-mail" -#: www/login/index.php:79 +#: www/login/index.php:81 msgid "login::erreur: Aucune base n'est actuellment accessible" msgstr "You have access to no collection at the moment" -#: www/login/index.php:82 +#: www/login/index.php:84 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "" -#: www/login/index.php:85 +#: www/login/index.php:87 msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" msgstr "Maintenance in progess, Please try to connect later" -#: www/login/index.php:97 +#: www/login/index.php:99 msgid "login::notification: cette email est deja confirmee" msgstr "This e-mail is already confirmed" -#: www/login/index.php:100 +#: www/login/index.php:102 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "E-mail confirmation sent" -#: www/login/index.php:103 -#: www/login/index.php:106 +#: www/login/index.php:105 +#: www/login/index.php:108 msgid "login::notification: votre email est desormais confirme" msgstr "You e-mail is now confirmed" -#: www/login/index.php:123 +#: www/login/index.php:125 msgid "login::captcha: obtenir une autre captcha" msgstr "Get another Captcha" -#: www/login/index.php:126 +#: www/login/index.php:128 msgid "login::captcha: recopier les mots ci dessous" msgstr "Copy the words below" -#: www/login/index.php:139 +#: www/login/index.php:141 msgid "Accueil" msgstr "Home" -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 +#: www/login/register.php:106 +#: www/login/register.php:290 +#: www/login/reset-email.php:147 +#: www/login/reset-email.php:187 msgid "forms::l'email semble invalide" msgstr "E-Mail seems invalid" -#: www/login/register.php:124 +#: www/login/register.php:123 msgid "forms::un utilisateur utilisant cette adresse email existe deja" msgstr "Email address already registered" -#: www/login/register.php:129 +#: www/login/register.php:128 msgid "forms::un utilisateur utilisant ce login existe deja" msgstr "A user with this login already exists" -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" -msgstr "8 lettering minimum" +#: www/login/register.php:292 +msgid "login invalide (5 caracteres sans accents ni espaces)" +msgstr "" -#: www/login/register.php:298 -#: www/login/reset-password.php:90 +#: www/login/register.php:304 +#: www/login/reset-password.php:92 msgid "forms::le mot de passe est simple" msgstr "Password is too simple" -#: www/login/register.php:375 -#: www/login/register.php:392 -#: www/login/reset-password.php:170 +#: www/login/register.php:379 +msgid "5 caracteres minimum" +msgstr "" + +#: www/login/register.php:396 +#: www/login/reset-password.php:172 msgid "8 caracteres minimum" msgstr "8 lettering minimum" -#: www/login/register.php:400 +#: www/login/register.php:404 msgid "Resistance du mot de passe" msgstr "Password resistance" -#: www/login/register.php:426 +#: www/login/register.php:430 msgid "admin::compte-utilisateur A propos de la securite des mots de passe" msgstr "About Password security" -#: www/login/reset-email.php:62 +#: www/login/reset-email.php:64 msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" msgstr "E-mail updated" -#: www/login/reset-email.php:63 +#: www/login/reset-email.php:65 msgid "accueil:: retour a l'accueil" msgstr "Back to home page" -#: www/login/reset-email.php:96 +#: www/login/reset-email.php:98 msgid "admin::compte-utilisateur: erreur lors de la mise a jour" msgstr "Error while updating" -#: www/login/reset-email.php:142 +#: www/login/reset-email.php:144 msgid "phraseanet::erreur: echec du serveur de mail" msgstr "Mail-server error" -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 +#: www/login/reset-email.php:150 +#: www/login/reset-email.php:191 msgid "forms::les emails ne correspondent pas" msgstr "E-mails do not match" -#: www/login/reset-email.php:152 -#: www/login/reset-password.php:66 +#: www/login/reset-email.php:154 +#: www/login/reset-password.php:68 msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" msgstr "Wrong password" -#: www/login/reset-email.php:217 +#: www/login/reset-email.php:219 msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" msgstr "Confirmation e-mail sent. Please follow received instructions" -#: www/login/reset-email.php:221 +#: www/login/reset-email.php:223 msgid "admin::compte-utilisateur retour a mon compte" msgstr "Back to my account" -#: www/login/reset-email.php:230 -#: www/login/reset-password.php:148 +#: www/login/reset-email.php:232 +#: www/login/reset-password.php:150 msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" msgstr "Oops ! An error occured !" -#: www/login/reset-email.php:251 +#: www/login/reset-email.php:253 msgid "admin::compte-utilisateur nouvelle adresse email" msgstr "New e-mail address" -#: www/login/reset-email.php:256 +#: www/login/reset-email.php:258 msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" msgstr "Confirm e-mail address" -#: www/login/reset-email.php:265 +#: www/login/reset-email.php:267 msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" msgstr "Why should I give my password to change my e-mail ?" -#: www/login/reset-email.php:266 +#: www/login/reset-email.php:268 msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." msgstr "Your e-mail address will be used if you loose your password. It is important that you are the only one who can change it" -#: www/login/reset-password.php:160 +#: www/login/reset-password.php:162 msgid "admin::compte-utilisateur ancien mot de passe" msgstr "Old password" -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "%d results displayed from a total of %d found" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "%d results" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "%d result(s)" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "%s document(s) selected." - -#: www/prod/chghddocument.php:42 +#: www/prod/chghddocument.php:39 msgid "prod::substitution::erreur : document de substitution invalide" msgstr "Invalid file format" -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 +#: www/prod/chghddocument.php:61 +#: www/prod/chgthumb.php:49 msgid "prod::substitution::document remplace avec succes" msgstr "Document replaced" -#: www/prod/chgstatus.php:130 +#: www/prod/chgstatus.php:131 #, php-format msgid "prod::proprietes : %d documents modifies" msgstr "%d documents modified" -#: www/prod/chgthumb.php:42 +#: www/prod/chgthumb.php:44 msgid "prod::substitution::erreur : impossible d'ajouter ce document" msgstr "Document can't be added" -#: www/prod/docfunction.php:327 +#: www/prod/docfunction.php:337 msgid "prod::proprietes:: status" msgstr "Status" -#: www/prod/docfunction.php:328 +#: www/prod/docfunction.php:338 msgid "prod::proprietes:: type" msgstr "Type" -#: www/prod/docfunction.php:356 +#: www/prod/docfunction.php:366 #, php-format msgid "prod::status: edition de status de %d regroupements" msgstr "Editing Status from %d story (ies)" -#: www/prod/docfunction.php:358 +#: www/prod/docfunction.php:368 #, php-format msgid "prod::status: edition de status de %d documents" msgstr "Editing Status from %d document(s)" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remettre a zero les status non nommes" msgstr "Reset to 0 all unnamed status" -#: www/prod/docfunction.php:405 +#: www/prod/docfunction.php:415 msgid "prod::status: remetter a zero tous les status" msgstr "Reset to 0 all unnamed status" -#: www/prod/docfunction.php:408 +#: www/prod/docfunction.php:418 msgid "prod::status: aucun status n'est defini sur cette base" msgstr "No Status defined for this database" -#: www/prod/docfunction.php:424 +#: www/prod/docfunction.php:434 msgid "prod::status: changer egalement le status des document rattaches aux regroupements" msgstr "Change also Status for documents linked to stories" -#: www/prod/docfunction.php:454 +#: www/prod/docfunction.php:464 #, php-format msgid "prod::status: %d documents ne peuvent avoir une edition des status" msgstr "Status edition impossible for %d documents" -#: www/prod/docfunction.php:461 +#: www/prod/docfunction.php:471 msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" msgstr "You do not have the required permissions to change status on selected documents" -#: www/prod/docfunction.php:496 +#: www/prod/docfunction.php:506 msgid "prod::type: appliquer a tous les documents selectionnes" msgstr "Apply to all selected documents" -#: www/prod/imgfunction.php:137 +#: www/prod/imgfunction.php:139 msgid "prod::tools: regeneration de sous definitions" msgstr "Re-construct subview" -#: www/prod/imgfunction.php:138 +#: www/prod/imgfunction.php:140 msgid "prod::tools: outils image" msgstr "Rotate subview" -#: www/prod/imgfunction.php:143 +#: www/prod/imgfunction.php:145 msgid "prod::tools: substitution HD" msgstr "Substitute document" -#: www/prod/imgfunction.php:148 +#: www/prod/imgfunction.php:150 msgid "prod::tools: substitution de sous definition" msgstr "Substitute subviews" -#: www/prod/imgfunction.php:153 +#: www/prod/imgfunction.php:155 msgid "prod::tools: meta-datas" msgstr "Meta-datas" -#: www/prod/imgfunction.php:163 +#: www/prod/imgfunction.php:165 msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." msgstr "Warning : Some documents have substitued subviews" -#: www/prod/imgfunction.php:164 +#: www/prod/imgfunction.php:166 msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." msgstr "Re-construct custom defined thumbnails" -#: www/prod/imgfunction.php:174 +#: www/prod/imgfunction.php:176 msgid "prod::tools:regeneration: Reconstruire les sous definitions" msgstr "Reconstruct subviews" -#: www/prod/imgfunction.php:177 +#: www/prod/imgfunction.php:179 msgid "prod::tools: option : recreer aucune les sous-definitions" msgstr "Do not re-construct any subviews" -#: www/prod/imgfunction.php:178 +#: www/prod/imgfunction.php:180 msgid "prod::tools: option : recreer toutes les sous-definitions" msgstr "Re-construct all subviews" -#: www/prod/imgfunction.php:192 +#: www/prod/imgfunction.php:194 msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" msgstr "This action only concerns subviews from Image type documents" -#: www/prod/imgfunction.php:193 +#: www/prod/imgfunction.php:195 msgid "prod::tools::image: rotation 90 degres horaire" msgstr "Turn 90° clockwise" -#: www/prod/imgfunction.php:195 +#: www/prod/imgfunction.php:197 msgid "prod::tools::image rotation 90 degres anti-horaires" msgstr "Turn 90° anticlockwise" -#: www/prod/imgfunction.php:219 +#: www/prod/imgfunction.php:221 msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" msgstr "Update original file name after substitution" -#: www/prod/prodFeedBack.php:271 +#: www/prod/prodFeedBack.php:237 msgid "les enregistrements ont ete correctement commandes" msgstr "Documents ordered" -#: www/prod/prodFeedBack.php:275 +#: www/prod/prodFeedBack.php:241 msgid "Erreur lors de la commande des enregistrements" msgstr "Error when ordering documents" -#: www/prod/prodFeedBack.php:306 +#: www/prod/prodFeedBack.php:272 msgid "Les documents ne peuvent etre envoyes par FTP" msgstr "Documents can't be sent by FTP" -#: www/prod/prodFeedBack.php:315 +#: www/prod/prodFeedBack.php:281 msgid "Export enregistre dans la file dattente" msgstr "Export registered in queue file" -#: www/prod/prodFeedBack.php:340 +#: www/prod/prodFeedBack.php:306 msgid "Connection au FTP avec succes" msgstr "succesfull connection to ftp server" -#: www/prod/prodFeedBack.php:344 +#: www/prod/prodFeedBack.php:310 #, php-format msgid "Erreur lors de la connection au FTP : %s" msgstr "Error connecting to FTP : %s" -#: www/prod/share.php:131 +#: www/prod/share.php:132 msgid "Aucune URL disponible" msgstr "No URL avalaible" -#: www/prod/share.php:146 +#: www/prod/share.php:147 msgid "Aucun code disponible" msgstr "No embed code avalaible" @@ -8246,277 +8345,277 @@ msgstr "Country" msgid "report::societe" msgstr "Company" -#: www/thesaurus2/accept.php:46 +#: www/thesaurus2/accept.php:48 msgid "thesaurus:: accepter..." msgstr "Accept" -#: www/thesaurus2/accept.php:165 +#: www/thesaurus2/accept.php:167 msgid "thesaurus:: removed_src" msgstr "removed_src" -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 +#: www/thesaurus2/accept.php:170 +#: www/thesaurus2/accept.php:228 msgid "thesaurus:: refresh" msgstr "Refresh" -#: www/thesaurus2/accept.php:223 +#: www/thesaurus2/accept.php:225 msgid "thesaurus:: removed tgt" msgstr "remove_tgt" -#: www/thesaurus2/accept.php:259 +#: www/thesaurus2/accept.php:261 msgid "thesaurus:: Accepter le terme comme" msgstr "Accept term as :" -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 +#: www/thesaurus2/accept.php:263 +#: www/thesaurus2/accept.php:273 msgid "thesaurus:: comme terme specifique" msgstr "Specific term" -#: www/thesaurus2/accept.php:265 +#: www/thesaurus2/accept.php:267 #, php-format msgid "thesaurus:: comme synonyme de %s" msgstr "as a synonym of %s" -#: www/thesaurus2/accept.php:270 +#: www/thesaurus2/accept.php:272 msgid "thesaurus:: Accepter la branche comme" msgstr "Accept branch as" -#: www/thesaurus2/accept.php:294 +#: www/thesaurus2/accept.php:296 #, php-format msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" msgstr "A candidat from field %s can't be accepted for the branch" -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 +#: www/thesaurus2/export_text.php:53 +#: www/thesaurus2/export_text_dlg.php:44 +#: www/thesaurus2/export_text_dlg.php:148 msgid "thesaurus:: export au format texte" msgstr "Text" -#: www/thesaurus2/export_text_dlg.php:137 +#: www/thesaurus2/export_text_dlg.php:139 msgid "thesaurus:: options d'export : " msgstr "Export " -#: www/thesaurus2/export_text_dlg.php:138 +#: www/thesaurus2/export_text_dlg.php:140 msgid "thesaurus:: example" msgstr "example" -#: www/thesaurus2/export_text_dlg.php:151 +#: www/thesaurus2/export_text_dlg.php:153 msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" msgstr "Synonym(s) on same line" -#: www/thesaurus2/export_text_dlg.php:155 +#: www/thesaurus2/export_text_dlg.php:157 msgid "thesaurus:: exporter avec une ligne par synonyme" msgstr "One line per synonym" -#: www/thesaurus2/export_text_dlg.php:159 +#: www/thesaurus2/export_text_dlg.php:161 msgid "thesaurus:: export : numeroter les lignes " msgstr "Print line numbers " -#: www/thesaurus2/export_text_dlg.php:163 +#: www/thesaurus2/export_text_dlg.php:165 msgid "thesaurus:: export : inclure la langue" msgstr "Include language" -#: www/thesaurus2/export_text_dlg.php:167 +#: www/thesaurus2/export_text_dlg.php:169 msgid "thesaurus:: export : inclure les hits" msgstr "Include hits" -#: www/thesaurus2/export_text_dlg.php:173 +#: www/thesaurus2/export_text_dlg.php:175 msgid "thesaurus:: export : format topics" msgstr "Topics" -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 +#: www/thesaurus2/export_topics.php:100 +#: www/thesaurus2/export_topics_dlg.php:45 msgid "thesaurus:: export en topics" msgstr "Topics" -#: www/thesaurus2/export_topics.php:159 +#: www/thesaurus2/export_topics.php:161 #, php-format msgid "thesaurus:: fichier genere le %s" msgstr "File generated : %s" -#: www/thesaurus2/export_topics.php:178 +#: www/thesaurus2/export_topics.php:180 #, php-format msgid "thesaurus:: fichier genere : %s" msgstr "%s file(s) generated" -#: www/thesaurus2/export_topics.php:180 +#: www/thesaurus2/export_topics.php:182 msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" msgstr "Error during file registration" -#: www/thesaurus2/export_topics_dlg.php:117 +#: www/thesaurus2/export_topics_dlg.php:119 msgid "thesaurus:: exporter" msgstr "Export" -#: www/thesaurus2/export_topics_dlg.php:120 +#: www/thesaurus2/export_topics_dlg.php:122 msgid "thesaurus:: exporter vers topics pour toutes les langues" msgstr "Export for all languages" -#: www/thesaurus2/export_topics_dlg.php:128 +#: www/thesaurus2/export_topics_dlg.php:130 msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" msgstr "Display for the current language" -#: www/thesaurus2/export_topics_dlg.php:135 +#: www/thesaurus2/export_topics_dlg.php:137 msgid "phraseanet:: tri" msgstr "Sort" -#: www/thesaurus2/export_topics_dlg.php:145 +#: www/thesaurus2/export_topics_dlg.php:147 msgid "thesaurus:: recherche" msgstr "Search" -#: www/thesaurus2/export_topics_dlg.php:148 +#: www/thesaurus2/export_topics_dlg.php:150 msgid "thesaurus:: recherche thesaurus *:\"query\"" msgstr "Thesaurus *:\"query\"" -#: www/thesaurus2/export_topics_dlg.php:152 +#: www/thesaurus2/export_topics_dlg.php:154 msgid "thesaurus:: recherche fulltext" msgstr "Fulltext" -#: www/thesaurus2/export_topics_dlg.php:156 +#: www/thesaurus2/export_topics_dlg.php:158 msgid "thesaurus:: question complete (avec operateurs)" msgstr "Full question (with operators)" -#: www/thesaurus2/export_topics_dlg.php:163 +#: www/thesaurus2/export_topics_dlg.php:165 msgid "thesaurus:: presentation" msgstr "Display options" -#: www/thesaurus2/export_topics_dlg.php:166 +#: www/thesaurus2/export_topics_dlg.php:168 msgid "thesaurus:: presentation : branches refermables" msgstr "Reproduce current view (with navigation)" -#: www/thesaurus2/export_topics_dlg.php:170 +#: www/thesaurus2/export_topics_dlg.php:172 msgid "thesaurus:: presentation : branche ouvertes" msgstr "Reproduce current view (without navigation)" -#: www/thesaurus2/export_topics_dlg.php:174 +#: www/thesaurus2/export_topics_dlg.php:176 msgid "thesaurus:: tout deployer - refermable" msgstr "All deployed ( with navigation)" -#: www/thesaurus2/export_topics_dlg.php:178 +#: www/thesaurus2/export_topics_dlg.php:180 msgid "thesaurus:: tout deployer - statique" msgstr "All deployed (static)" -#: www/thesaurus2/export_topics_dlg.php:182 +#: www/thesaurus2/export_topics_dlg.php:184 msgid "thesaurus:: tout fermer" msgstr "Close all (with navigation)" -#: www/thesaurus2/import.php:158 +#: www/thesaurus2/import.php:159 #, php-format msgid "over-indent at line %s" msgstr "Over-indent at line %s" -#: www/thesaurus2/import.php:166 +#: www/thesaurus2/import.php:167 #, php-format msgid "bad encoding at line %s" msgstr "Bad encoding at line %s" -#: www/thesaurus2/import.php:173 +#: www/thesaurus2/import.php:174 #, php-format msgid "bad character at line %s" msgstr "Bad character at line %s" -#: www/thesaurus2/import_dlg.php:42 +#: www/thesaurus2/import_dlg.php:44 msgid "thesaurus:: Importer" msgstr "Import" -#: www/thesaurus2/import_dlg.php:85 +#: www/thesaurus2/import_dlg.php:87 msgid "thesaurus:: coller ici la liste des termes a importer" msgstr "Paste here list of terms to import" -#: www/thesaurus2/import_dlg.php:86 +#: www/thesaurus2/import_dlg.php:88 msgid "thesaurus:: langue par default" msgstr "Default language" -#: www/thesaurus2/import_dlg.php:93 +#: www/thesaurus2/import_dlg.php:95 msgid "Fichier ASCII tabule" msgstr "Tabulated ASCII file" -#: www/thesaurus2/import_dlg.php:110 +#: www/thesaurus2/import_dlg.php:112 msgid "thesaurus:: supprimer les liens des champs tbranch" msgstr "Delete existing link(s) between thesaurus branch(s) and field(s)" -#: www/thesaurus2/import_dlg.php:113 +#: www/thesaurus2/import_dlg.php:115 msgid "thesaurus:: reindexer la base apres l'import" msgstr "Re-index after import" -#: www/thesaurus2/index.php:96 +#: www/thesaurus2/index.php:98 msgid "thesaurus:: Editer le thesaurus" msgstr "Edit thesaurus" -#: www/thesaurus2/index.php:118 +#: www/thesaurus2/index.php:120 msgid "phraseanet:: choisir" msgstr "Choose" -#: www/thesaurus2/index.php:144 +#: www/thesaurus2/index.php:146 msgid "thesaurus:: langue pivot" msgstr "Select edit language" -#: www/thesaurus2/index.php:161 +#: www/thesaurus2/index.php:163 msgid "thesaurus:: Vous n'avez acces a aucune base" msgstr "No Database access" -#: www/thesaurus2/linkfield.php:32 +#: www/thesaurus2/linkfield.php:34 msgid "thesaurus:: Lier la branche de thesaurus au champ" msgstr "Link thesaurus branch to field" -#: www/thesaurus2/linkfield.php:112 +#: www/thesaurus2/linkfield.php:114 #, php-format msgid "thesaurus:: Lier la branche de thesaurus au champ %s" msgstr "Link thesaurus branch to field %s" -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 +#: www/thesaurus2/linkfield2.php:34 +#: www/thesaurus2/linkfield3.php:35 msgid "thesaurus:: Lier la branche de thesaurus" msgstr "Link branch ?" -#: www/thesaurus2/linkfield2.php:116 +#: www/thesaurus2/linkfield2.php:118 #, php-format msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " msgstr "This fields has been modified; previous branch was : %s " -#: www/thesaurus2/linkfield2.php:145 +#: www/thesaurus2/linkfield2.php:147 msgid "thesaurus:: nouvelle branche" msgstr "New branch" -#: www/thesaurus2/linkfield2.php:150 +#: www/thesaurus2/linkfield2.php:152 msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" msgstr "This field is no longer linked to thesaurus, indexed terms and candidats will be deleted" -#: www/thesaurus2/linkfield2.php:158 +#: www/thesaurus2/linkfield2.php:160 msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" msgstr "This field must be linked to thesaurus. Database re indexation needed" -#: www/thesaurus2/linkfield2.php:162 +#: www/thesaurus2/linkfield2.php:164 msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" msgstr "Link to thesaurus must be modified , database re indextion needed" -#: www/thesaurus2/linkfield2.php:177 +#: www/thesaurus2/linkfield2.php:179 msgid "thesaurus:: reindexation necessaire" msgstr "Re indexation needed" -#: www/thesaurus2/linkfield2.php:181 +#: www/thesaurus2/linkfield2.php:183 msgid "thesaurus:: pas de reindexation" msgstr "No re-index" -#: www/thesaurus2/linkfield3.php:78 +#: www/thesaurus2/linkfield3.php:80 #, php-format msgid "thesaurus:: suppression du lien du champ %s" msgstr "Delete link to field %s" -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 +#: www/thesaurus2/linkfield3.php:88 +#: www/thesaurus2/linkfield3.php:104 #, php-format msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" msgstr "Delete candidats branch linked to field %s" -#: www/thesaurus2/linkfield3.php:112 +#: www/thesaurus2/linkfield3.php:114 msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." msgstr "Recording modified list of candidats" -#: www/thesaurus2/linkfield3.php:124 +#: www/thesaurus2/linkfield3.php:126 msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" msgstr "Delete indexes from thesaurus for field" -#: www/thesaurus2/linkfield3.php:135 +#: www/thesaurus2/linkfield3.php:137 msgid "thesaurus:: reindexer tous les enregistrements" msgstr "Re-index all records" @@ -8524,260 +8623,262 @@ msgstr "Re-index all records" msgid "thesaurus:: corbeille" msgstr "Stock" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: Nouveau terme" msgstr "New term" -#: www/thesaurus2/newsy_dlg.php:34 +#: www/thesaurus2/newsy_dlg.php:36 msgid "thesaurus:: terme" msgstr "Term" -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newsy_dlg.php:39 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau synonyme" msgstr "New Synonym" -#: www/thesaurus2/newsy_dlg.php:37 +#: www/thesaurus2/newsy_dlg.php:39 msgid "thesaurus:: synonyme" msgstr "Synonym" -#: www/thesaurus2/newsy_dlg.php:91 +#: www/thesaurus2/newsy_dlg.php:93 msgid "thesaurus:: contexte" msgstr "Context" -#: www/thesaurus2/newterm.php:38 +#: www/thesaurus2/newterm.php:40 msgid "thesaurus:: Nouveau terme specifique" msgstr "New specific term" -#: www/thesaurus2/newterm.php:72 +#: www/thesaurus2/newterm.php:74 #, php-format msgid "thesaurus:: le terme %s" msgstr "Term %s" -#: www/thesaurus2/newterm.php:74 +#: www/thesaurus2/newterm.php:76 #, php-format msgid "thesaurus:: avec contexte %s" msgstr "contexted by %s" -#: www/thesaurus2/newterm.php:76 +#: www/thesaurus2/newterm.php:78 msgid "thesaurus:: sans contexte" msgstr "Without context" -#: www/thesaurus2/newterm.php:104 +#: www/thesaurus2/newterm.php:106 msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " msgstr "is already a candidat from valid field " -#: www/thesaurus2/newterm.php:106 +#: www/thesaurus2/newterm.php:108 msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " msgstr "Is already a candidat from valid fields " -#: www/thesaurus2/newterm.php:146 +#: www/thesaurus2/newterm.php:148 msgid "thesaurus:: selectionner la provenance a accepter" msgstr "Select origin to accept" -#: www/thesaurus2/newterm.php:162 #: www/thesaurus2/newterm.php:164 +#: www/thesaurus2/newterm.php:166 msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" msgstr "is a candidat from fields but can't be accepted for this branch" -#: www/thesaurus2/newterm.php:169 +#: www/thesaurus2/newterm.php:171 msgid "thesaurus:: n'est pas present dans les candidats" msgstr "is not a candidat" -#: www/thesaurus2/newterm.php:173 +#: www/thesaurus2/newterm.php:175 msgid "thesaurus:: attention :" msgstr "Warning :" -#: www/thesaurus2/newterm.php:184 +#: www/thesaurus2/newterm.php:186 msgid "thesaurus:: Ajouter le terme dans reindexer" msgstr "Add term without re indexetation" -#: www/thesaurus2/newterm.php:186 +#: www/thesaurus2/newterm.php:188 msgid "thesaurus:: ajouter le terme et reindexer" msgstr "Add term and re index" -#: www/thesaurus2/properties.php:47 +#: www/thesaurus2/properties.php:49 msgid "thesaurus:: Proprietes" msgstr "Properties" -#: www/thesaurus2/properties.php:92 +#: www/thesaurus2/properties.php:94 +#: www/thesaurus2/thesaurus.php:230 +#: www/thesaurus2/thesaurus.php:255 msgid "thesaurus::menu: supprimer" msgstr "Delete" -#: www/thesaurus2/properties.php:93 +#: www/thesaurus2/properties.php:95 msgid "thesaurus:: remplacer" msgstr "Replace" -#: www/thesaurus2/properties.php:120 +#: www/thesaurus2/properties.php:122 #, php-format msgid "thesaurus:: %s reponses retournees" msgstr "%s result(s)" -#: www/thesaurus2/properties.php:147 +#: www/thesaurus2/properties.php:149 msgid "thesaurus:: synonymes" msgstr "Synonyms" -#: www/thesaurus2/properties.php:148 +#: www/thesaurus2/properties.php:150 msgid "thesaurus:: hits" msgstr "hits" -#: www/thesaurus2/properties.php:149 +#: www/thesaurus2/properties.php:151 msgid "thesaurus:: ids" msgstr "ids" -#: www/thesaurus2/properties.php:321 +#: www/thesaurus2/properties.php:323 #, php-format msgid "thesaurus:: Confirmer la suppression du terme %s" msgstr "Confirm term \"%s\" delete" -#: www/thesaurus2/search.php:77 +#: www/thesaurus2/search.php:79 msgid "thesaurus:: le terme" msgstr "term" -#: www/thesaurus2/search.php:78 +#: www/thesaurus2/search.php:80 msgid "thesaurus:: est egal a " msgstr "equals " -#: www/thesaurus2/search.php:82 +#: www/thesaurus2/search.php:84 msgid "thesaurus:: commence par" msgstr "Starts with" -#: www/thesaurus2/search.php:86 +#: www/thesaurus2/search.php:88 msgid "thesaurus:: contient" msgstr "contains" -#: www/thesaurus2/search.php:91 +#: www/thesaurus2/search.php:93 msgid "thesaurus:: fini par" msgstr "ends with" -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 +#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:251 msgid "thesaurus::menu: proprietes" msgstr "Properties" -#: www/thesaurus2/thesaurus.php:225 +#: www/thesaurus2/thesaurus.php:227 msgid "thesaurus::menu: refuser" msgstr "Reject" -#: www/thesaurus2/thesaurus.php:226 +#: www/thesaurus2/thesaurus.php:228 msgid "thesaurus::menu: accepter" msgstr "Allow" -#: www/thesaurus2/thesaurus.php:229 +#: www/thesaurus2/thesaurus.php:231 msgid "thesaurus::menu: supprimer les candidats a 0 hits" msgstr "Delete candidats with no hits" -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 +#: www/thesaurus2/thesaurus.php:233 +#: www/thesaurus2/thesaurus.php:254 msgid "thesaurus::menu: remplacer" msgstr "Replace" -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 +#: www/thesaurus2/thesaurus.php:237 +#: www/thesaurus2/thesaurus.php:257 msgid "thesaurus::menu: chercher" msgstr "Search" -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 +#: www/thesaurus2/thesaurus.php:238 +#: www/thesaurus2/thesaurus.php:258 msgid "thesaurus::menu: exporter" msgstr "Export" -#: www/thesaurus2/thesaurus.php:239 +#: www/thesaurus2/thesaurus.php:241 msgid "thesaurus::menu: relire les candidats" msgstr "Review candidats" -#: www/thesaurus2/thesaurus.php:245 +#: www/thesaurus2/thesaurus.php:247 msgid "thesaurus::menu: importer" msgstr "Import" -#: www/thesaurus2/thesaurus.php:250 +#: www/thesaurus2/thesaurus.php:252 msgid "thesaurus::menu: Nouveau terme" msgstr "New term" -#: www/thesaurus2/thesaurus.php:251 +#: www/thesaurus2/thesaurus.php:253 msgid "thesaurus::menu: Nouveau synonyme" msgstr "New synonym" -#: www/thesaurus2/thesaurus.php:257 +#: www/thesaurus2/thesaurus.php:259 msgid "thesaurus::menu: export topics" msgstr "Export as topics" -#: www/thesaurus2/thesaurus.php:259 +#: www/thesaurus2/thesaurus.php:261 msgid "thesaurus::menu: lier au champ" msgstr "Link to fields" -#: www/thesaurus2/thesaurus.php:294 +#: www/thesaurus2/thesaurus.php:296 msgid "thesaurus:: onglet stock" msgstr "Candidats" -#: www/thesaurus2/thesaurus.php:299 +#: www/thesaurus2/thesaurus.php:301 msgid "thesaurus:: afficher les termes refuses" msgstr "Display rejected terms" -#: www/thesaurus2/thesaurus.php:313 +#: www/thesaurus2/thesaurus.php:315 msgid "thesaurus:: onglet thesaurus" msgstr "Thesaurus" -#: www/thesaurus2/thesaurus.php:513 +#: www/thesaurus2/thesaurus.php:515 msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "Delete branch : (concerned terms will be displayed as candidats on futur indexation" -#: www/thesaurus2/thesaurus.php:515 +#: www/thesaurus2/thesaurus.php:517 msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" msgstr "This branch has hits,confirm delete ? (Concerned terms will move back to candidats)" -#: www/thesaurus2/thesaurus.php:557 +#: www/thesaurus2/thesaurus.php:559 msgid "thesaurus:: Tous les termes ont des hits" msgstr "All terms have hits" -#: www/thesaurus2/thesaurus.php:563 +#: www/thesaurus2/thesaurus.php:565 msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" msgstr "Terms from this branch have no hits : delete Terms ?" -#: www/thesaurus2/thesaurus.php:652 +#: www/thesaurus2/thesaurus.php:654 msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" msgstr "Delete all candidats et re index all documents with thesaurus" -#: www/thesaurus2/thesaurus.php:1096 +#: www/thesaurus2/thesaurus.php:1098 msgid "thesaurus:: deplacer le terme dans la corbeille ?" msgstr "Move Terms to stock" -#: www/upload/index.php:75 +#: www/upload/index.php:76 msgid "upload:You do not have right to upload datas" msgstr "You do not have the required permissions to upload documents" -#: www/upload/index.php:186 +#: www/upload/index.php:187 msgid "Selectionner une action" msgstr "Select an action" -#: www/upload/index.php:187 +#: www/upload/index.php:188 msgid "Aucune enregistrement selectionne" msgstr "No document selected" -#: www/upload/index.php:188 +#: www/upload/index.php:189 msgid "Transfert en court, vous devez attendre la fin du transfert" msgstr "Upload in progress, wait until current upload ends" -#: www/upload/index.php:189 +#: www/upload/index.php:190 msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" msgstr "Queue file is not empty, do you to delete files in queue ?" -#: www/upload/index.php:241 +#: www/upload/index.php:242 #, php-format msgid "upload:: %d fichiers uploades" msgstr "%d files uploaded" -#: www/upload/index.php:243 +#: www/upload/index.php:244 #: www/upload/index.php:414 #, php-format msgid "upload:: %d fichier uploade" msgstr "%d file uploaded" -#: www/upload/index.php:247 +#: www/upload/index.php:248 msgid "Certains elements uploades sont passes en quarantaine" msgstr "Some uploaded documents have been sent to quarantine" -#: www/upload/index.php:276 +#: www/upload/index.php:277 #, php-format msgid "upload :: choisir les fichiers a uploader (max : %d MB)" msgstr "Select files to add (max size : %d Mb)" @@ -8850,25 +8951,110 @@ msgstr "Delet blocked documents" msgid "Supprimer precedentes propositions a la substitution" msgstr "Delete previous candidats to substitution" -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 +#: www/upload/upload.php:45 +#: www/upload/upload.php:54 msgid "Internal Server Error" msgstr "Internal server error" -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 +#: www/upload/upload.php:140 +#: www/upload/upload.php:163 msgid "erreur lors de l'archivage" msgstr "Error while adding" -#: www/upload/upload.php:144 +#: www/upload/upload.php:143 msgid "Document ajoute a la quarantaine" msgstr "Documents added to quarantine" -#: www/upload/upload.php:147 +#: www/upload/upload.php:146 msgid "Fichier uploade, en attente" msgstr "Pending files..." -#: www/upload/upload.php:187 +#: www/upload/upload.php:186 msgid "Fichier uploade !" msgstr "FIle Uploaded" +#~ msgid "phraseanet::technique::datetime-edit-format" +#~ msgstr "YYYY/MM/DD HH:NN:SS" + +#~ msgid "phraseanet::technique::date-edit-format" +#~ msgstr "YYYY/MM/DD" + +#~ msgid "phraseanet::technique::date-edit-explain" +#~ msgstr "yyyy/mm/dd" + +#~ msgid "phraseanet::technique::time-edit-format" +#~ msgstr "HH:NN:SS" + +#~ msgid "phraseanet::technique::time-edit-explain" +#~ msgstr "hh:mm:ss" + +#~ msgid "admin::Le serveur memcached a ete flushe" +#~ msgstr "No Memcached server linked" + +#~ msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" +#~ msgstr "Delivery Error for %s e-mail(s)" + +#, fuzzy +#~ msgid "Impossible d'ecrire dans le fichier %s" +#~ msgstr "Can't Write in folder %s" + +#~ msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" +#~ msgstr "memcached server unavailable, you should disable cache" + +#~ msgid "GV::section:: Serveurs de cache" +#~ msgstr "Cache server" + +#~ msgid "reglages:: Utiliser un serveur de cache" +#~ msgstr "Use a cache server" + +#~ msgid "setup:: Hote du Serveur de cache" +#~ msgstr "Cache server host" + +#~ msgid "reglages:: port du serveur de cache" +#~ msgstr "Chache server port" + +#~ msgid "Impossible d'ecrire dans le dossier %s" +#~ msgstr "Can't Write in folder %s" + +#, fuzzy +#~ msgid "Impossible d'effacer le fichier %s" +#~ msgstr "Unable to add record to database" + +#~ msgid "recherche" +#~ msgstr "Search" + +#~ msgid "Chercher tous les mots" +#~ msgstr "all these words" + +#~ msgid "Cette expression exacte" +#~ msgstr "this exact wording or phrase" + +#~ msgid "Au moins un des mots suivants" +#~ msgstr "one or more of these words" + +#~ msgid "Aucun des mots suivants" +#~ msgstr "None of these words" + +#~ msgid "recherche :: Bases" +#~ msgstr "Databases" + +#~ msgid "recherche :: Historique" +#~ msgstr "History" + +#~ msgid "recherche :: Themes" +#~ msgstr "Topics" + +#~ msgid "Expire dans %expiration_date%" +#~ msgstr "Expire in %expiration_date%" + +#~ msgid "%application_name% wants to acces to your data on %home_title%" +#~ msgstr "%application_name% wants to acces to your data on %home_title%" + +#~ msgid "phraseanet::technique::datetime" +#~ msgstr "%b, %d %Y %l:%s %p" + +#~ msgid "phraseanet::technique::date" +#~ msgstr "%d-%m-%Y" + +#~ msgid "publications:: publication non lue" +#~ msgstr "Unread" diff --git a/locale/zh_CN/LC_MESSAGES/phraseanet.mo b/locale/zh_CN/LC_MESSAGES/phraseanet.mo deleted file mode 100644 index ece6e295b8..0000000000 Binary files a/locale/zh_CN/LC_MESSAGES/phraseanet.mo and /dev/null differ diff --git a/locale/zh_CN/LC_MESSAGES/phraseanet.po b/locale/zh_CN/LC_MESSAGES/phraseanet.po deleted file mode 100644 index 6160bea7a0..0000000000 --- a/locale/zh_CN/LC_MESSAGES/phraseanet.po +++ /dev/null @@ -1,8814 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-02-02 17:49+0100\n" -"PO-Revision-Date: 2012-02-02 17:55+0100\n" -"Last-Translator: Romain Neutron \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-02-02 16:20+0000\n" -"X-Generator: Launchpad (build 14738)\n" -"X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" -"X-Poedit-SourceCharset: iso-8859-1\n" -"X-Poedit-Basepath: .\n" -"X-Poedit-KeywordsList: _e;__\n" - -#: lib/classes/appbox.class.php:315 -#: lib/classes/appbox.class.php:390 -msgid "Flushing cache" -msgstr "" - -#: lib/classes/appbox.class.php:323 -msgid "Creating new tables" -msgstr "" - -#: lib/classes/appbox.class.php:340 -#: lib/classes/appbox.class.php:348 -msgid "Purging directories" -msgstr "" - -#: lib/classes/appbox.class.php:356 -msgid "Copying files" -msgstr "" - -#: lib/classes/appbox.class.php:365 -msgid "Upgrading appbox" -msgstr "" - -#: lib/classes/appbox.class.php:374 -#, php-format -msgid "Upgrading %s" -msgstr "" - -#: lib/classes/appbox.class.php:382 -msgid "Post upgrade" -msgstr "" - -#: lib/classes/appbox.class.php:433 -msgid "Nom de base de donnee incorrect" -msgstr "" - -#: lib/classes/appbox.class.php:514 -#: lib/classes/appbox.class.php:538 -#, php-format -msgid "Impossible d'ecrire dans le fichier %s" -msgstr "" - -#: lib/classes/appbox.class.php:590 -msgid "setup::la base de donnees existe deja et vous n'avez pas les droits ou vous n'avez pas les droits de la creer" -msgstr "" - -#: lib/classes/base.class.php:294 -#, php-format -msgid "Updating table %s" -msgstr "" - -#: lib/classes/base.class.php:311 -#: lib/classes/base.class.php:562 -#: lib/classes/base.class.php:806 -#: lib/classes/base.class.php:823 -#, php-format -msgid "Erreur lors de la tentative ; errreur : %s" -msgstr "" - -#: lib/classes/base.class.php:333 -#, php-format -msgid "Creating table %s" -msgstr "" - -#: lib/classes/base.class.php:341 -#: lib/classes/base.class.php:882 -#, php-format -msgid "Applying patches on %s" -msgstr "" - -#: lib/classes/base.class.php:842 -msgid "Looking for patches" -msgstr "" - -#: lib/classes/databox.class.php:1401 -msgid "ERREUR : TOUTES LES BALISES subdefgroup necessitent un attribut name" -msgstr "" - -#: lib/classes/databox.class.php:1414 -msgid "ERREUR : Les name de subdef sont uniques par groupe de subdefs et necessaire" -msgstr "" - -#: lib/classes/databox.class.php:1419 -msgid "ERREUR : La classe de subdef est necessaire et egal a \"thumbnail\",\"preview\" ou \"document\"" -msgstr "" - -#: lib/classes/lazaret.class.php:99 -msgid "tache d'archivage" -msgstr "" - -#: lib/classes/lazaretFile.class.php:36 -msgid "L'element n'existe pas ou plus" -msgstr "" - -#: lib/classes/lazaretFile.class.php:62 -msgid "Impossible dajouter le fichier a la base" -msgstr "" - -#: lib/classes/lazaretFile.class.php:133 -msgid "Impossible de trouver la base" -msgstr "" - -#: lib/classes/login.class.php:48 -#: lib/classes/mail.class.php:70 -msgid "login:: Forgot your password" -msgstr "" - -#: lib/classes/login.class.php:57 -msgid "login:: register" -msgstr "" - -#: lib/classes/login.class.php:69 -msgid "login:: guest Access" -msgstr "" - -#: lib/classes/mail.class.php:11 -msgid "mail:: test d'envoi d'email" -msgstr "" - -#: lib/classes/mail.class.php:13 -#, php-format -msgid "Ce mail est un test d'envoi de mail depuis %s" -msgstr "" - -#: lib/classes/mail.class.php:36 -msgid "task::ftp:Someone has sent some files onto FTP server" -msgstr "" - -#: lib/classes/mail.class.php:45 -msgid "export::vous avez recu des documents" -msgstr "" - -#: lib/classes/mail.class.php:47 -msgid "Vous avez recu des documents, vous pourrez les telecharger a ladresse suivante " -msgstr "" - -#: lib/classes/mail.class.php:52 -#, php-format -msgid "Attention, ce lien lien est valable jusqu'au %s" -msgstr "" - -#: lib/classes/mail.class.php:72 -msgid "login:: Quelqu'un a demande a reinitialiser le mode passe correspondant au login suivant : " -msgstr "" - -#: lib/classes/mail.class.php:73 -msgid "login:: Visitez le lien suivant et suivez les instructions pour continuer, sinon ignorez cet email et il ne se passera rien" -msgstr "" - -#: lib/classes/mail.class.php:84 -#: lib/classes/mail.class.php:105 -#, php-format -msgid "login::register:email: Votre compte %s" -msgstr "" - -#: lib/classes/mail.class.php:86 -msgid "login::register:email: Voici un compte rendu du traitement de vos demandes d'acces :" -msgstr "" - -#: lib/classes/mail.class.php:90 -msgid "login::register:email: Vous avez ete accepte sur les collections suivantes : " -msgstr "" - -#: lib/classes/mail.class.php:94 -msgid "login::register:email: Vous avez ete refuse sur les collections suivantes : " -msgstr "" - -#: lib/classes/mail.class.php:108 -msgid "login::register:Votre inscription a ete prise en compte" -msgstr "" - -#: lib/classes/mail.class.php:112 -msgid "login::register: vous avez des a present acces aux collections suivantes : " -msgstr "" - -#: lib/classes/mail.class.php:117 -msgid "login::register: vos demandes concernat les collections suivantes sont sujettes a approbation d'un administrateur" -msgstr "" - -#: lib/classes/mail.class.php:118 -#: lib/classes/mail.class.php:164 -msgid "login::register : vous serez avertis par email lorsque vos demandes seront traitees" -msgstr "" - -#: lib/classes/mail.class.php:134 -#: lib/classes/mail.class.php:146 -#: lib/classes/mail.class.php:160 -#: lib/classes/mail.class.php:177 -msgid "login::register: sujet email : confirmation de votre adresse email" -msgstr "" - -#: lib/classes/mail.class.php:136 -msgid "admin::compte-utilisateur: email changement de mot d'email Bonjour, nous avons bien recu votre demande de changement d'adresse e-mail. Pour la confirmer, veuillez suivre le lien qui suit. SI vous recevez ce mail sans l'avoir sollicite, merci de le detruire et de l'ignorer." -msgstr "" - -#: lib/classes/mail.class.php:148 -#: lib/classes/mail.class.php:162 -msgid "login::register: merci d'avoir confirme votre adresse email" -msgstr "" - -#: lib/classes/mail.class.php:149 -msgid "login::register: vous pouvez maintenant vous connecter a l'adresse suivante : " -msgstr "" - -#: lib/classes/mail.class.php:163 -msgid "login::register: vous devez attendre la confirmation d'un administrateur ; vos demandes sur les collections suivantes sont toujours en attente : " -msgstr "" - -#: lib/classes/mail.class.php:179 -msgid "login::register: email confirmation email Pour valider votre inscription a la base de donnees, merci de confirmer votre e-mail en suivant le lien ci-dessous." -msgstr "" - -#: lib/classes/mail.class.php:209 -msgid "Si le lien n'est pas cliquable, copiez-collez le dans votre navigateur." -msgstr "" - -#: lib/classes/mail.class.php:211 -msgid "phraseanet::signature automatique des notifications par mail, infos a l'url suivante" -msgstr "" - -#: lib/classes/p4file.class.php:154 -msgid "prod::erreur : impossible de lire les preferences de base" -msgstr "" - -#: lib/classes/p4file.class.php:170 -#, php-format -msgid "Le fichier '%s' existe deja" -msgstr "" - -#: lib/classes/p4file.class.php:176 -#, php-format -msgid "Taille trop petite : %dpx" -msgstr "" - -#: lib/classes/p4file.class.php:206 -#, php-format -msgid "Mauvais mode colorimetrique : %s" -msgstr "" - -#: lib/classes/phrasea.class.php:308 -msgid "admin::monitor: module production" -msgstr "" - -#: lib/classes/phrasea.class.php:309 -msgid "admin::monitor: module client" -msgstr "" - -#: lib/classes/phrasea.class.php:310 -msgid "admin::monitor: module admin" -msgstr "" - -#: lib/classes/phrasea.class.php:311 -msgid "admin::monitor: module report" -msgstr "" - -#: lib/classes/phrasea.class.php:312 -msgid "admin::monitor: module thesaurus" -msgstr "" - -#: lib/classes/phrasea.class.php:313 -msgid "admin::monitor: module comparateur" -msgstr "" - -#: lib/classes/phrasea.class.php:314 -msgid "admin::monitor: module validation" -msgstr "" - -#: lib/classes/phrasea.class.php:315 -msgid "admin::monitor: module upload" -msgstr "" - -#: lib/classes/phraseadate.class.php:95 -msgid "phraseanet::temps:: a l'instant" -msgstr "" - -#: lib/classes/phraseadate.class.php:99 -msgid "phraseanet::temps:: il y a une minute" -msgstr "" - -#: lib/classes/phraseadate.class.php:103 -#, php-format -msgid "phraseanet::temps:: il y a %d minutes" -msgstr "" - -#: lib/classes/phraseadate.class.php:108 -msgid "phraseanet::temps:: il y a une heure" -msgstr "" - -#: lib/classes/phraseadate.class.php:112 -#, php-format -msgid "phraseanet::temps:: il y a %d heures" -msgstr "" - -#: lib/classes/phraseadate.class.php:118 -msgid "phraseanet::temps:: hier" -msgstr "" - -#: lib/classes/queries.class.php:197 -#: lib/classes/queries.class.php:211 -msgid "boutton::chercher" -msgstr "" - -#: lib/classes/queries.class.php:201 -msgid "client::recherche: dans les categories" -msgstr "" - -#: lib/classes/setup.class.php:341 -msgid "mod_auth_token correctement configure" -msgstr "" - -#: lib/classes/setup.class.php:343 -msgid "mod_auth_token mal configure" -msgstr "" - -#: lib/classes/setup.class.php:356 -msgid "Attention, seul le test de l'activation des mods est effectue, leur bon fonctionnement ne l'est pas " -msgstr "" - -#: lib/classes/setup.class.php:371 -msgid "Attention, veuillez verifier la configuration xsendfile, actuellement activee dans le setup" -msgstr "" - -#: lib/classes/setup.class.php:380 -#: lib/classes/setup.class.php:389 -msgid "Attention, veuillez verifier la configuration h264_streaming, actuellement activee dans le setup" -msgstr "" - -#: lib/classes/setup.class.php:532 -msgid "setup::Tests d'envois d'emails" -msgstr "" - -#: lib/classes/setup.class.php:536 -msgid "boutton::valider" -msgstr "" - -#: lib/classes/setup.class.php:613 -msgid "setup:: Serveur Memcached" -msgstr "" - -#: lib/classes/setup.class.php:629 -#, php-format -msgid "setup::Serveur actif sur %s" -msgstr "" - -#: lib/classes/setup.class.php:640 -#, php-format -msgid "Le serveur memcached ne repond pas, vous devriez desactiver le cache" -msgstr "" - -#: lib/classes/setup.class.php:645 -#, php-format -msgid "setup::Aucun serveur memcached rattache." -msgstr "" - -#: lib/classes/setup.class.php:682 -#, php-format -msgid "setup::Configuration mauvaise : pour la variable %1$s, configuration donnee : %2$s ; attendue : %3$s" -msgstr "" - -#: lib/classes/setup.class.php:713 -msgid "setup::Etat du moteur de recherche" -msgstr "" - -#: lib/classes/setup.class.php:724 -msgid "setup::Sphinx confguration" -msgstr "" - -#: lib/classes/setup.class.php:747 -msgid "test::test" -msgstr "" - -#: lib/classes/API/OAuth2/Form/DevApp.class.php:160 -msgid "Cette valeur ne peut être vide" -msgstr "" - -#: lib/classes/API/OAuth2/Form/DevApp.class.php:161 -msgid "Url non valide" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:187 -#: lib/classes/Bridge/Api/Youtube.class.php:185 -msgid "Videos" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:196 -#: lib/classes/Bridge/Api/Youtube.class.php:194 -msgid "Playlists" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:539 -#: lib/classes/Bridge/Api/Youtube.class.php:536 -msgid "La video a ete supprimee" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:542 -#: lib/classes/Bridge/Api/Youtube.class.php:539 -msgid "La video a ete rejetee" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:545 -msgid "Erreur d'encodage" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:548 -#: lib/classes/Bridge/Api/Youtube.class.php:546 -msgid "En cours d'encodage" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:554 -#: lib/classes/Bridge/Api/Youtube.class.php:552 -msgid "OK" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:829 -#: lib/classes/Bridge/Api/Dailymotion.class.php:859 -#: lib/classes/Bridge/Api/Flickr.class.php:746 -#: lib/classes/Bridge/Api/Flickr.class.php:772 -#: lib/classes/Bridge/Api/Youtube.class.php:979 -#: lib/classes/Bridge/Api/Youtube.class.php:984 -#: lib/classes/Bridge/Api/Youtube.class.php:1011 -#: lib/classes/Bridge/Api/Youtube.class.php:1016 -msgid "Ce champ est obligatoire" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:834 -#: lib/classes/Bridge/Api/Dailymotion.class.php:864 -#: lib/classes/Bridge/Api/Flickr.class.php:751 -#: lib/classes/Bridge/Api/Flickr.class.php:777 -#: lib/classes/Bridge/Api/Youtube.class.php:989 -#: lib/classes/Bridge/Api/Youtube.class.php:1021 -#, php-format -msgid "Ce champ est trop long %s caracteres max" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:836 -#: lib/classes/Bridge/Api/Dailymotion.class.php:866 -#, php-format -msgid "Ce champ est trop court %s caracteres min" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:932 -#: lib/classes/Bridge/Api/Flickr.class.php:863 -#: lib/classes/Bridge/Api/Youtube.class.php:1088 -msgid "Le record n'a pas de fichier physique" -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:935 -#: lib/classes/Bridge/Api/Youtube.class.php:1091 -#, php-format -msgid "La taille maximale d'une video est de %d minutes." -msgstr "" - -#: lib/classes/Bridge/Api/Dailymotion.class.php:938 -#: lib/classes/Bridge/Api/Flickr.class.php:865 -#: lib/classes/Bridge/Api/Youtube.class.php:1094 -#, php-format -msgid "Le poids maximum d'un fichier est de %s" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:154 -msgid "Ce produit utilise l'API Flickr mais n'est ni soutenu, ni certifie par Flickr" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:529 -#: lib/classes/Bridge/Api/Youtube.class.php:542 -msgid "L'upload a echoue" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:639 -msgid "Photos" -msgstr "" - -#: lib/classes/Bridge/Api/Flickr.class.php:648 -msgid "Photosets" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:533 -msgid "La video est restreinte" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:582 -msgid "Erreur la requête a été mal formée ou contenait des données valides." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:585 -msgid "Erreur lors de l'authentification au service Youtube, Veuillez vous déconnecter, puis vous reconnecter." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:588 -msgid "Erreur lors de l'envoi de la requête. Erreur d'authentification." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:591 -msgid "Erreur la ressource que vous tentez de modifier n'existe pas." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:594 -msgid "Erreur YouTube a rencontré une erreur lors du traitement de la requête." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:597 -msgid "Erreur vous avez essayé d'exécuter une requête non prise en charge par Youtube" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:600 -msgid "Erreur le service Youtube n'est pas accessible pour le moment. Veuillez réessayer plus tard." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:622 -msgid "A required field is missing or has an empty value" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:625 -msgid "A value has been deprecated and is no longer valid" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:628 -msgid "A value does not match an expected format" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:631 -msgid "A field value contains an invalid character" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:634 -msgid "A value exceeds the maximum allowable length" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:637 -msgid "The Youtube servers have received too many calls from the same caller in a short amount of time." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:640 -msgid "You are attempting to exceed the storage limit on your account and must delete existing entries before inserting new entries" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:643 -msgid "The authentication token specified in the Authorization header is invalid" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:646 -msgid "The authentication token specified in the Authorization header has expired." -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:649 -msgid "Current operations cannot be executed because the site is temporarily in maintenance mode. Wait a few minutes and try your request again" -msgstr "" - -#: lib/classes/Bridge/Api/Youtube.class.php:658 -msgid "Service youtube introuvable." -msgstr "" - -#: lib/classes/caption/record.class.php:171 -msgid "Open the URL in a new window" -msgstr "" - -#: lib/classes/databox/cgu.class.php:36 -#: lib/classes/databox/cgu.class.php:152 -#, php-format -msgid "cgus:: CGUs de la base %s" -msgstr "" - -#: lib/classes/databox/cgu.class.php:39 -msgid "cgus:: Pour continuer a utiliser lapplication, vous devez accepter les conditions precedentes" -msgstr "" - -#: lib/classes/databox/cgu.class.php:40 -msgid "cgus :: accepter" -msgstr "" - -#: lib/classes/databox/cgu.class.php:41 -msgid "cgus :: refuser" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:221 -msgid "login::register: acces authorise sur la collection " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:223 -#: lib/classes/deprecated/inscript.api.php:235 -#: lib/classes/deprecated/inscript.api.php:247 -#: lib/classes/deprecated/inscript.api.php:259 -#: lib/classes/deprecated/inscript.api.php:271 -#: lib/classes/deprecated/inscript.api.php:283 -msgid "login::register::CGU: lire les CGU" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:233 -msgid "login::register: acces refuse sur la collection " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:245 -msgid "login::register: en attente d'acces sur" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:257 -msgid "login::register: acces temporaire sur" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:269 -msgid "login::register: acces temporaire termine sur " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:281 -msgid "login::register: acces supendu sur" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:299 -#: lib/classes/deprecated/inscript.api.php:321 -#: lib/classes/deprecated/inscript.api.php:410 -#: lib/classes/deprecated/inscript.api.php:441 -msgid "login::register: L'acces aux bases ci-dessous implique l'acceptation des Conditions Generales d'Utilisation (CGU) suivantes" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:310 -#: lib/classes/deprecated/inscript.api.php:332 -#: lib/classes/deprecated/inscript.api.php:425 -#: lib/classes/deprecated/inscript.api.php:453 -msgid "login::register: Faire une demande d'acces" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:353 -msgid "admin::compte-utilisateur actuellement, acces aux bases suivantes : " -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:370 -msgid "login::register: Vous avez acces a toutes les collections de toutes les bases" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:374 -msgid "login::register: confirmer la demande" -msgstr "" - -#: lib/classes/deprecated/inscript.api.php:410 -#: lib/classes/deprecated/inscript.api.php:442 -msgid "login::register::CGU: ouvrir dans une nouvelle fenetre" -msgstr "" - -#: lib/classes/eventsmanager/broker.class.php:243 -msgid "charger d'avantages de notifications" -msgstr "" - -#: lib/classes/eventsmanager/broker.class.php:382 -msgid "Notifications globales" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:178 -#, php-format -msgid "%1$s s'est enregistre sur une ou plusieurs %2$scollections%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:193 -msgid "AutoRegister information" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:202 -msgid "Recevoir des notifications lorsqu'un utilisateur s'inscrit sur une collection" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:215 -#, php-format -msgid "admin::register: Inscription automatique sur %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:218 -msgid "admin::register: un utilisateur s'est inscrit" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:235 -#: lib/classes/eventsmanager/notify/order.class.php:221 -#: lib/classes/eventsmanager/notify/register.class.php:240 -msgid "admin::compte-utilisateur nom" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:237 -#: lib/classes/eventsmanager/notify/order.class.php:223 -#: lib/classes/eventsmanager/notify/register.class.php:242 -msgid "admin::compte-utilisateur prenom" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:239 -#: lib/classes/eventsmanager/notify/order.class.php:225 -#: lib/classes/eventsmanager/notify/register.class.php:244 -msgid "admin::compte-utilisateur email" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:241 -#: lib/classes/eventsmanager/notify/order.class.php:227 -#: lib/classes/eventsmanager/notify/register.class.php:246 -msgid "admin::compte-utilisateur adresse" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:245 -#: lib/classes/eventsmanager/notify/order.class.php:231 -#: lib/classes/eventsmanager/notify/register.class.php:250 -msgid "admin::compte-utilisateur telephone" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:247 -#: lib/classes/eventsmanager/notify/order.class.php:233 -#: lib/classes/eventsmanager/notify/register.class.php:252 -msgid "admin::compte-utilisateur fax" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:249 -#: lib/classes/eventsmanager/notify/order.class.php:235 -#: lib/classes/eventsmanager/notify/register.class.php:254 -msgid "admin::compte-utilisateur poste" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:250 -#: lib/classes/eventsmanager/notify/order.class.php:236 -#: lib/classes/eventsmanager/notify/register.class.php:255 -msgid "admin::compte-utilisateur societe" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:257 -msgid "admin::register: l'utilisateur s'est inscrit sur les bases suivantes" -msgstr "" - -#: lib/classes/eventsmanager/notify/autoregister.class.php:271 -msgid "admin::register: vous pourrez consulter son compte en ligne via l'interface d'administration" -msgstr "" - -#: lib/classes/eventsmanager/notify/bridgeuploadfail.class.php:145 -msgid "Bridge upload fail" -msgstr "" - -#: lib/classes/eventsmanager/notify/bridgeuploadfail.class.php:154 -msgid "Recevoir des notifications lorsqu'un upload echoue sur un bridge" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:162 -#, php-format -msgid "%1$s a passe une %2$scommande%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:178 -msgid "Nouvelle commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:187 -msgid "Recevoir des notifications lorsqu'un utilisateur commande des documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:199 -#, php-format -msgid "admin::register: Nouvelle commande sur %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:203 -msgid "admin::register: un utilisateur a commande des documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/order.class.php:243 -msgid "Retrouvez son bon de commande dans l'interface" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:33 -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:29 -msgid "Commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:161 -#, php-format -msgid "%1$s vous a delivre %2$d document(s) pour votre commande %3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:179 -msgid "Reception de commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:188 -msgid "Reception d'une commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:212 -#, php-format -msgid "push::mail:: Reception de votre commande %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/orderdeliver.class.php:218 -#, php-format -msgid "%s vous a delivre votre commande, consultez la en ligne a l'adresse suivante" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:124 -#, php-format -msgid "%1$s a refuse la livraison de %2$d document(s) pour votre commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:134 -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:139 -msgid "Refus d'elements de commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:144 -#, php-format -msgid "push::mail:: Refus d'elements de votre commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/ordernotdelivered.class.php:148 -#, php-format -msgid "%s a refuse %d elements de votre commande" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:130 -#, php-format -msgid "%1$s vous a envoye un %2$spanier%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:146 -msgid "Push" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:155 -msgid "Recevoir des notifications lorsqu'on me push quelque chose" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:178 -msgid "push::mail:: Reception de documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:181 -msgid "push::Vous pouvez vous connecter a l'adresse suivante afin de retrouver votre panier, voir les previews, les descriptions, le telecharger, etc." -msgstr "" - -#: lib/classes/eventsmanager/notify/push.class.php:191 -#: lib/classes/eventsmanager/notify/validate.class.php:213 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:233 -msgid "push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:178 -#, php-format -msgid "%1$s demande votre approbation sur une ou plusieurs %2$scollections%3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:195 -msgid "Register approbation" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:204 -msgid "Recevoir des notifications lorsqu'un utilisateur demande une inscription necessitant mon approbation" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:217 -#, php-format -msgid "admin::register: demande d'inscription sur %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:222 -msgid "admin::register: un utilisateur a fait une demande d'inscription" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:262 -msgid "admin::register: les demandes de l'utilisateur portent sur les bases suivantes" -msgstr "" - -#: lib/classes/eventsmanager/notify/register.class.php:278 -msgid "admin::register: vous pourrez traiter ses demandes en ligne via l'interface d'administration" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:33 -#: lib/classes/eventsmanager/notify/validate.class.php:177 -#: lib/classes/eventsmanager/notify/validationdone.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:33 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:191 -msgid "Validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:148 -#: lib/classes/eventsmanager/notify/validate.class.php:152 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:164 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:168 -msgid "Une selection" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:162 -#, php-format -msgid "%1$s vous demande de valider %2$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:186 -msgid "Recevoir des notifications lorsqu'on me demande une validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:200 -msgid "push::mail:: Demande de validation de documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/validate.class.php:203 -#: lib/classes/eventsmanager/notify/validationreminder.class.php:223 -#, php-format -msgid "Le lien suivant vous propose de valider une selection faite par %s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:158 -#, php-format -msgid "%1$s a envoye son rapport de validation de %2$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:176 -msgid "Rapport de Validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:185 -msgid "Reception d'un rapport de validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:210 -#, php-format -msgid "push::mail:: Rapport de validation de %1$s pour %2$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationdone.class.php:216 -#, php-format -msgid "%s a rendu son rapport, consulter le en ligne a l'adresse suivante" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:177 -#, php-format -msgid "Rappel : Il vous reste %1$d jours pour valider %2$s de %3$s" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:200 -msgid "Rappel pour une demande de validation" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:212 -msgid "push::mail:: Rappel de demande de validation de documents" -msgstr "" - -#: lib/classes/eventsmanager/notify/validationreminder.class.php:216 -#, php-format -msgid "Il ne vous reste plus que %d jours pour terminer votre validation" -msgstr "" - -#: lib/classes/module/client.class.php:25 -#: lib/classes/module/client.class.php:26 -msgid "paniers:: Quel nom souhaitez vous donner a votre panier ?" -msgstr "" - -#: lib/classes/module/client.class.php:27 -msgid "export:: aucun document n'est disponible au telechargement" -msgstr "" - -#: lib/classes/module/client.class.php:28 -msgid "invite:: Redirection vers la zone d'authentification, cliquez sur OK pour continuer ou annulez" -msgstr "" - -#: lib/classes/module/client.class.php:30 -msgid "phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, contactez le support technique" -msgstr "" - -#: lib/classes/module/client.class.php:31 -msgid "phraseanet::erreur: La connection au serveur Phraseanet semble etre indisponible" -msgstr "" - -#: lib/classes/module/client.class.php:32 -msgid "phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" -msgstr "" - -#: lib/classes/module/client.class.php:33 -msgid "paniers::Vous etes sur le point de supprimer ce panier. Cette action est irreversible. Souhaitez-vous continuer ?" -msgstr "" - -#: lib/classes/module/client.class.php:34 -msgid "boutton::annuler" -msgstr "" - -#: lib/classes/module/client.class.php:35 -msgid "boutton::fermer" -msgstr "" - -#: lib/classes/module/client.class.php:36 -msgid "boutton::renouveller" -msgstr "" - -#: lib/classes/module/report.class.php:662 -msgid "report:: utilisateur" -msgstr "" - -#: lib/classes/module/report.class.php:663 -msgid "report:: collections" -msgstr "" - -#: lib/classes/module/report.class.php:664 -msgid "report:: Connexion" -msgstr "" - -#: lib/classes/module/report.class.php:665 -msgid "report:: commentaire" -msgstr "" - -#: lib/classes/module/report.class.php:666 -msgid "report:: question" -msgstr "" - -#: lib/classes/module/report.class.php:667 -#: lib/classes/module/report.class.php:668 -msgid "report:: date" -msgstr "" - -#: lib/classes/module/report.class.php:669 -msgid "report:: fonction" -msgstr "" - -#: lib/classes/module/report.class.php:670 -msgid "report:: activite" -msgstr "" - -#: lib/classes/module/report.class.php:671 -msgid "report:: pays" -msgstr "" - -#: lib/classes/module/report.class.php:672 -msgid "report:: societe" -msgstr "" - -#: lib/classes/module/report.class.php:673 -msgid "report:: nombre" -msgstr "" - -#: lib/classes/module/report.class.php:674 -msgid "report:: pourcentage" -msgstr "" - -#: lib/classes/module/report.class.php:675 -msgid "report:: telechargement" -msgstr "" - -#: lib/classes/module/report.class.php:676 -msgid "report:: record id" -msgstr "" - -#: lib/classes/module/report.class.php:677 -msgid "report:: type d'action" -msgstr "" - -#: lib/classes/module/report.class.php:678 -msgid "report:: sujet" -msgstr "" - -#: lib/classes/module/report.class.php:679 -msgid "report:: fichier" -msgstr "" - -#: lib/classes/module/report.class.php:680 -msgid "report:: type" -msgstr "" - -#: lib/classes/module/report.class.php:681 -msgid "report:: taille" -msgstr "" - -#: lib/classes/module/report.class.php:682 -msgid "report:: copyright" -msgstr "" - -#: lib/classes/module/report.class.php:683 -msgid "phraseanet:: sous definition" -msgstr "" - -#: lib/classes/module/report.class.php:696 -msgid "phraseanet::jours:: lundi" -msgstr "" - -#: lib/classes/module/report.class.php:697 -msgid "phraseanet::jours:: mardi" -msgstr "" - -#: lib/classes/module/report.class.php:698 -msgid "phraseanet::jours:: mercredi" -msgstr "" - -#: lib/classes/module/report.class.php:699 -msgid "phraseanet::jours:: jeudi" -msgstr "" - -#: lib/classes/module/report.class.php:700 -msgid "phraseanet::jours:: vendredi" -msgstr "" - -#: lib/classes/module/report.class.php:701 -msgid "phraseanet::jours:: samedi" -msgstr "" - -#: lib/classes/module/report.class.php:702 -msgid "phraseanet::jours:: dimanche" -msgstr "" - -#: lib/classes/module/report.class.php:712 -msgid "janvier" -msgstr "" - -#: lib/classes/module/report.class.php:713 -msgid "fevrier" -msgstr "" - -#: lib/classes/module/report.class.php:714 -msgid "mars" -msgstr "" - -#: lib/classes/module/report.class.php:715 -msgid "avril" -msgstr "" - -#: lib/classes/module/report.class.php:716 -msgid "mai" -msgstr "" - -#: lib/classes/module/report.class.php:717 -msgid "juin" -msgstr "" - -#: lib/classes/module/report.class.php:718 -msgid "juillet" -msgstr "" - -#: lib/classes/module/report.class.php:719 -msgid "aout" -msgstr "" - -#: lib/classes/module/report.class.php:720 -msgid "septembre" -msgstr "" - -#: lib/classes/module/report.class.php:721 -msgid "octobre" -msgstr "" - -#: lib/classes/module/report.class.php:722 -msgid "novembre" -msgstr "" - -#: lib/classes/module/report.class.php:723 -msgid "decembre" -msgstr "" - -#: lib/classes/module/report.class.php:903 -msgid "report:: non-renseigne" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:52 -msgid "*** CHECK BINARY CONFIGURATION ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:61 -msgid "*** FILESYSTEM CONFIGURATION ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:64 -msgid "*** CHECK CACHE OPCODE ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:67 -msgid "*** CHECK CACHE SERVER ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:70 -msgid "*** CHECK PHP CONFIGURATION ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:73 -msgid "*** CHECK PHP EXTENSIONS ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:76 -msgid "*** CHECK PHRASEA ***" -msgstr "" - -#: lib/classes/module/console/systemConfigCheck.class.php:79 -msgid "*** CHECK SYSTEM LOCALES ***" -msgstr "" - -#: lib/classes/module/console/systemUpgrade.class.php:49 -msgid "Create automatically" -msgstr "" - -#: lib/classes/module/console/systemUpgrade.class.php:97 -msgid "Continuer ?" -msgstr "" - -#: lib/classes/module/report/activity.class.php:102 -msgid "report:: activite par heure" -msgstr "" - -#: lib/classes/module/report/activity.class.php:214 -msgid "report:: questions" -msgstr "" - -#: lib/classes/module/report/activity.class.php:235 -msgid "report:: questions sans reponses" -msgstr "" - -#: lib/classes/module/report/activity.class.php:236 -msgid "report:: questions les plus posees" -msgstr "" - -#: lib/classes/module/report/activity.class.php:362 -#, php-format -msgid "report:: Telechargement effectue par l'utilisateur %s" -msgstr "" - -#: lib/classes/module/report/activity.class.php:375 -msgid "report:: telechargements par jour" -msgstr "" - -#: lib/classes/module/report/activity.class.php:531 -msgid "report:: Detail des connexions" -msgstr "" - -#: lib/classes/module/report/activity.class.php:589 -msgid "report:: Detail des telechargements" -msgstr "" - -#: lib/classes/module/report/add.class.php:50 -#: lib/classes/module/report/edit.class.php:50 -#: lib/classes/module/report/push.class.php:50 -msgid "report:: document ajoute" -msgstr "" - -#: lib/classes/module/report/connexion.class.php:47 -msgid "report::Connexions" -msgstr "" - -#: lib/classes/module/report/download.class.php:53 -msgid "report:: telechargements" -msgstr "" - -#: lib/classes/module/report/nav.class.php:129 -msgid "report:: navigateur" -msgstr "" - -#: lib/classes/module/report/nav.class.php:196 -msgid "report:: Plateforme" -msgstr "" - -#: lib/classes/module/report/nav.class.php:258 -msgid "report:: resolution" -msgstr "" - -#: lib/classes/module/report/nav.class.php:321 -msgid "report:: navigateurs et plateforme" -msgstr "" - -#: lib/classes/module/report/nav.class.php:388 -msgid "report:: modules" -msgstr "" - -#: lib/classes/module/report/nav.class.php:492 -#, php-format -msgid "report:: Information sur les utilisateurs correspondant a %s" -msgstr "" - -#: lib/classes/module/report/nav.class.php:552 -msgid "phraseanet::utilisateur inconnu" -msgstr "" - -#: lib/classes/module/report/nav.class.php:556 -#, php-format -msgid "report:: Information sur l'utilisateur %s" -msgstr "" - -#: lib/classes/module/report/nav.class.php:592 -#, php-format -msgid "report:: Information sur l'enregistrement numero %d" -msgstr "" - -#: lib/classes/module/report/nav.class.php:617 -#, php-format -msgid "report:: Information sur le navigateur %s" -msgstr "" - -#: lib/classes/record/adapter.class.php:939 -msgid "reponses::document sans titre" -msgstr "" - -#: lib/classes/record/exportElement.class.php:143 -#: lib/classes/record/exportElement.class.php:149 -msgid "document original" -msgstr "" - -#: lib/classes/record/exportElement.class.php:231 -msgid "caption XML" -msgstr "" - -#: lib/classes/record/exportElement.class.php:236 -msgid "caption YAML" -msgstr "" - -#: lib/classes/record/preview.class.php:123 -msgid "preview:: regroupement " -msgstr "" - -#: lib/classes/record/preview.class.php:287 -#, php-format -msgid "preview:: resultat numero %s " -msgstr "" - -#: lib/classes/record/preview.class.php:560 -#: lib/classes/record/preview.class.php:575 -#: lib/classes/record/preview.class.php:582 -msgid "report::acces direct" -msgstr "" - -#: lib/classes/record/preview.class.php:566 -msgid "report:: page d'accueil" -msgstr "" - -#: lib/classes/record/preview.class.php:568 -msgid "report:: visualiseur cooliris" -msgstr "" - -#: lib/classes/record/preview.class.php:573 -#: lib/classes/record/preview.class.php:580 -msgid "report::presentation page preview" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/engine.class.php:188 -#, php-format -msgid "reponses::propositions pour la base %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/engine.class.php:195 -#, php-format -msgid "reponses::propositions pour le terme %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:131 -msgid "qparser::la question est vide" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1121 -#, php-format -msgid "qparser::Formulation incorrecte, un nom de champs est attendu avant l operateur %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1130 -#, php-format -msgid "qparser::Formulation incorrecte, une valeur est attendue apres l operateur %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1650 -msgid "qparser:: erreur : trop de parentheses fermantes" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1771 -#, php-format -msgid "qparser::Formulation incorrecte, une valeur est attendu apres %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1843 -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1868 -#, php-format -msgid "qparser::erreur : une question ne peut commencer par %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1852 -#, php-format -msgid "qparser::Formulation incorrecte, ne peut suivre un operateur : %s" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1878 -#, php-format -msgid "qparser::Formulation incorrecte, %s ne peut suivre un operateur" -msgstr "" - -#: lib/classes/searchEngine/adapter/phrasea/queryParser.class.php:1947 -msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " -msgstr "" - -#: lib/classes/searchEngine/adapter/sphinx/engine.class.php:196 -#: lib/classes/searchEngine/adapter/sphinx/engine.class.php:347 -msgid "Sphinx server is offline" -msgstr "" - -#: lib/classes/set/export.class.php:292 -msgid "export::ftp: reglages manuels" -msgstr "" - -#: lib/classes/set/order.class.php:233 -#, php-format -msgid "Commande du %s" -msgstr "" - -#: lib/classes/task/period/archive.class.php:74 -msgid "task::archive:Archivage" -msgstr "" - -#: lib/classes/task/period/archive.class.php:234 -msgid "task::archive:archivage sur base/collection/" -msgstr "" - -#: lib/classes/task/period/archive.class.php:250 -msgid "task::_common_:hotfolder" -msgstr "" - -#: lib/classes/task/period/archive.class.php:253 -#: lib/classes/task/period/outofdate.class.php:429 -#: lib/classes/task/period/subdef.class.php:228 -#: lib/classes/task/period/workflow01.class.php:335 -#: lib/classes/task/period/writemeta.class.php:197 -msgid "task::_common_:periodicite de la tache" -msgstr "" - -#: lib/classes/task/period/archive.class.php:254 -#: lib/classes/task/period/archive.class.php:257 -#: lib/classes/task/period/subdef.class.php:230 -#: lib/classes/task/period/writemeta.class.php:199 -msgid "task::_common_:secondes (unite temporelle)" -msgstr "" - -#: lib/classes/task/period/archive.class.php:256 -msgid "task::archive:delai de 'repos' avant traitement" -msgstr "" - -#: lib/classes/task/period/archive.class.php:259 -msgid "task::archive:deplacer les fichiers archives dans _archived" -msgstr "" - -#: lib/classes/task/period/archive.class.php:261 -msgid "task::archive:deplacer les fichiers non-archives dans _error" -msgstr "" - -#: lib/classes/task/period/archive.class.php:263 -msgid "task::archive:copier les fichiers '.phrasea.xml' et '.grouping.xml' dans _archived" -msgstr "" - -#: lib/classes/task/period/archive.class.php:265 -msgid "task::archive:supprimer les repertoires apres archivage" -msgstr "" - -#: lib/classes/task/period/archive.class.php:279 -msgid "task::archive:Archiving files found into a 'hotfolder'" -msgstr "" - -#: lib/classes/task/period/archive.class.php:356 -#, php-format -msgid "task::archive:Can't create or go to folder '%s'" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:92 -msgid "task::cindexer:Indexation" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:101 -msgid "task::cindexer:indexing records" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:276 -msgid "task::cindexer:executable" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:279 -msgid "task::cindexer:host" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:281 -msgid "task::cindexer:port" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:283 -msgid "task::cindexer:base" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:285 -msgid "task::cindexer:user" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:287 -msgid "task::cindexer:password" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:291 -msgid "task::cindexer:control socket" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:296 -msgid "task::cindexer:use table 'sbas' (unchecked: use 'xbas')" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:300 -msgid "task::cindexer:MySQL charset" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:304 -msgid "task::cindexer:do not (sys)log, but out to console)" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:307 -msgid "task::cindexer:default language for new candidates" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:314 -msgid "task::cindexer:windows specific" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:315 -msgid "task::cindexer:run as application, not as service" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:370 -#, php-format -msgid "task::cindexer:file '%s' does not exists" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:442 -msgid "task::cindexer:the cindexer clean-quit" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:444 -msgid "task::cindexer:the cindexer has been killed" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:446 -msgid "task::cindexer:the cindexer crashed" -msgstr "" - -#: lib/classes/task/period/cindexer.class.php:456 -msgid "task::cindexer:killing the cindexer" -msgstr "" - -#: lib/classes/task/period/emptyColl.class.php:26 -msgid "Vidage de collection" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:26 -msgid "task::ftp:FTP Push" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:362 -#, php-format -msgid "task::ftp:Etat d'envoi FTP vers le serveur \"%1$s\" avec le compte \"%2$s\" et pour destination le dossier : \"%3$s\"" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:374 -#, php-format -msgid "task::ftp:TENTATIVE no %s, %s" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:548 -#, php-format -msgid "task::ftp:File \"%1$s\" (record %2$s) de la base \"%3$s\" (Export du Document) : Transfert cancelled (le document n'existe plus)" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:703 -msgid "task::ftp:Tous les documents ont ete transferes avec succes" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:715 -#: lib/classes/task/period/ftp.class.php:723 -#, php-format -msgid "task::ftp:Record %1$s - %2$s de la base (%3$s - %4$s) - %5$s" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:718 -msgid "Transfert OK" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:726 -msgid "Transfert Annule" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:727 -msgid "task::ftp:Certains documents n'ont pas pu etre tranferes" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:742 -msgid "Des difficultes ont ete rencontres a la connection au serveur distant" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:744 -msgid "La connection vers le serveur distant est OK" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:756 -msgid "task::ftp:Details des fichiers" -msgstr "" - -#: lib/classes/task/period/ftp.class.php:766 -#, php-format -msgid "task::ftp:Status about your FTP transfert from %1$s to %2$s" -msgstr "" - -#: lib/classes/task/period/ftpPull.class.php:34 -msgid "task::ftp:FTP Pull" -msgstr "" - -#: lib/classes/task/period/ftpPull.class.php:180 -msgid "task::ftp:mode passif" -msgstr "" - -#: lib/classes/task/period/ftpPull.class.php:183 -msgid "task::ftp:utiliser SSL" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:26 -msgid "Documents perimes" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:411 -#: lib/classes/task/period/workflow01.class.php:317 -msgid "task::outofdate:Base" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:431 -#: lib/classes/task/period/workflow01.class.php:337 -msgid "task::_common_:minutes (unite temporelle)" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:440 -msgid "task::outofdate:before" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:449 -#: lib/classes/task/period/outofdate.class.php:461 -msgid "admin::taskoutofdate: days " -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:452 -msgid "task::outofdate:between" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:464 -msgid "task::outofdate:after" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:469 -msgid "task::outofdate:coll." -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:483 -msgid "task::outofdate:status" -msgstr "" - -#: lib/classes/task/period/outofdate.class.php:519 -#: lib/classes/task/period/workflow01.class.php:380 -msgid "task::outofdate:deplacement de docs suivant valeurs de champs 'date'" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:41 -msgid "task::subdef:creation des sous definitions des documents d'origine" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:52 -msgid "task::subdef:creation des sous definitions" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:232 -#, php-format -msgid "task::_common_:passer tous les %s records a l'etape suivante" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:235 -#: lib/classes/task/period/writemeta.class.php:205 -msgid "task::_common_:relancer la tache tous les" -msgstr "" - -#: lib/classes/task/period/subdef.class.php:237 -#: lib/classes/task/period/writemeta.class.php:207 -msgid "task::_common_:records, ou si la memoire depasse" -msgstr "" - -#: lib/classes/task/period/upgradetov31.class.php:29 -msgid "upgrade to v3.1" -msgstr "" - -#: lib/classes/task/period/upgradetov32.class.php:31 -msgid "upgrade to v3.2" -msgstr "" - -#: lib/classes/task/period/workflow01.class.php:22 -msgid "task::workflow01" -msgstr "" - -#: lib/classes/task/period/writemeta.class.php:25 -msgid "task::writemeta:(re)ecriture des metadatas dans les documents (et subdefs concernees)" -msgstr "" - -#: lib/classes/task/period/writemeta.class.php:38 -msgid "task::writemeta:ecriture des metadatas" -msgstr "" - -#: lib/classes/task/period/writemeta.class.php:202 -msgid "task::writemeta:effacer les metadatas non presentes dans la structure" -msgstr "" - -#: lib/classes/User/Adapter.class.php:413 -#, php-format -msgid "A user already exists with email addres %s" -msgstr "" - -#: lib/classes/User/Adapter.class.php:1356 -#, php-format -msgid "modele %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:61 -msgid "GV::section:: Serveur HTTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:66 -msgid "reglages:: Timezone de l'installation" -msgstr "" - -#: lib/conf.d/_GV_template.php:73 -msgid "reglages:: Nom de linstallation" -msgstr "" - -#: lib/conf.d/_GV_template.php:81 -msgid "reglages:: Langue par defaut" -msgstr "" - -#: lib/conf.d/_GV_template.php:90 -msgid "reglages:: URL statique (optionnel)" -msgstr "" - -#: lib/conf.d/_GV_template.php:96 -msgid "GV::section:: Etat de maintenance" -msgstr "" - -#: lib/conf.d/_GV_template.php:102 -msgid "reglages:: Message a diffuser aux utilisateurs" -msgstr "" - -#: lib/conf.d/_GV_template.php:108 -msgid "reglages:: activation du message a diffuser aux utilistaeurs" -msgstr "" - -#: lib/conf.d/_GV_template.php:114 -msgid "reglages:: logguer les erreurs" -msgstr "" - -#: lib/conf.d/_GV_template.php:119 -msgid "GV::section:: Connectivite aux webservices" -msgstr "" - -#: lib/conf.d/_GV_template.php:124 -msgid "reglages:: Utiliser els google apis" -msgstr "" - -#: lib/conf.d/_GV_template.php:131 -msgid "reglages:: Service phrasea de localisation" -msgstr "" - -#: lib/conf.d/_GV_template.php:139 -msgid "reglages:: Nom d'utilisateur pour l'api bit.ly" -msgstr "" - -#: lib/conf.d/_GV_template.php:145 -msgid "reglages:: ccle d'api pour l'api bit.ly" -msgstr "" - -#: lib/conf.d/_GV_template.php:151 -msgid "reglages:: Utilisation de l'api recpatcha" -msgstr "" - -#: lib/conf.d/_GV_template.php:158 -msgid "reglages:: clef publique recaptcha" -msgstr "" - -#: lib/conf.d/_GV_template.php:164 -msgid "reglages:: clef privee recaptcha" -msgstr "" - -#: lib/conf.d/_GV_template.php:169 -msgid "GV::section:: Connectivite a Youtube" -msgstr "" - -#: lib/conf.d/_GV_template.php:174 -#, php-format -msgid "reglages:: Utiliser l'api youtube, voir %s,
      mettre la callback a WEBSITE_URL/prod/bridge/callback/youtube" -msgstr "" - -#: lib/conf.d/_GV_template.php:181 -msgid "reglages:: Youtube client id" -msgstr "" - -#: lib/conf.d/_GV_template.php:187 -msgid "reglages:: Youtube clientsecret" -msgstr "" - -#: lib/conf.d/_GV_template.php:193 -#, php-format -msgid "reglages:: Youtube cle developpeur, voir %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:198 -msgid "GV::section:: Connectivite a FlickR" -msgstr "" - -#: lib/conf.d/_GV_template.php:203 -#, php-format -msgid "reglages:: Utiliser l api flickr, voir %s, puis set la callback a %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:210 -msgid "reglages:: FlickR client id" -msgstr "" - -#: lib/conf.d/_GV_template.php:216 -msgid "reglages:: FlickR client secret" -msgstr "" - -#: lib/conf.d/_GV_template.php:221 -msgid "GV::section:: Connectivite a Dailymotion" -msgstr "" - -#: lib/conf.d/_GV_template.php:226 -#, php-format -msgid "reglages:: Utiliser l api dailymotion, voir %s, puis set la callback a %s" -msgstr "" - -#: lib/conf.d/_GV_template.php:233 -msgid "reglages:: dailymotion client id" -msgstr "" - -#: lib/conf.d/_GV_template.php:239 -msgid "reglages:: dailymotion client secret" -msgstr "" - -#: lib/conf.d/_GV_template.php:244 -msgid "GV::section:: Gestionnaire d'evenements" -msgstr "" - -#: lib/conf.d/_GV_template.php:250 -msgid "reglages:: Evenements" -msgstr "" - -#: lib/conf.d/_GV_template.php:258 -msgid "reglages:: Notifications" -msgstr "" - -#: lib/conf.d/_GV_template.php:264 -msgid "GV::section:: Stockage des documents" -msgstr "" - -#: lib/conf.d/_GV_template.php:269 -msgid "reglages:: extensions de fichier autorisees en upload, separees par des virgules. * pour autoriser tous les fichiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:277 -msgid "reglages:: dossier de stockage des vignettes publiees en acces direct" -msgstr "" - -#: lib/conf.d/_GV_template.php:285 -msgid "reglages:: dossier de stockage des fichiers proteges de l'acces direct" -msgstr "" - -#: lib/conf.d/_GV_template.php:292 -msgid "reglages:: point de montage des vignettes publiees en acces direct" -msgstr "" - -#: lib/conf.d/_GV_template.php:299 -msgid "GV::section:: Serveurs de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:311 -msgid "reglages:: Utiliser un serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:313 -msgid "Aucun" -msgstr "" - -#: lib/conf.d/_GV_template.php:318 -msgid "setup:: Hote du Serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:325 -msgid "reglages:: port du serveur de cache" -msgstr "" - -#: lib/conf.d/_GV_template.php:330 -msgid "GV::section:: Serveur Sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:335 -msgid "Utiliser Sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:341 -msgid "reglages:: de l'adresse du serveur sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:347 -msgid "reglages:: port du serveur sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:353 -msgid "reglages:: de l'adresse du serveur RT sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:359 -msgid "reglages:: port du serveur RT sphinx" -msgstr "" - -#: lib/conf.d/_GV_template.php:364 -msgid "GV::section:: Executables externes" -msgstr "" - -#: lib/conf.d/_GV_template.php:369 -msgid "reglages:: mod_xsendfileapache active" -msgstr "" - -#: lib/conf.d/_GV_template.php:375 -msgid "reglages:: Path en acces pour X-Accel-Redirect (NginX Uniquement)" -msgstr "" - -#: lib/conf.d/_GV_template.php:382 -msgid "reglages:: Point de montage pour X-Accel-Redirect (NginX Uniquement)" -msgstr "" - -#: lib/conf.d/_GV_template.php:389 -msgid "reglages:: activation du stream h264 via mod_token - attention, necessite les modules apache mod_h264_streaming et mod_auth_token" -msgstr "" - -#: lib/conf.d/_GV_template.php:396 -msgid "reglages:: point de montage du dossier protege via auth_token" -msgstr "" - -#: lib/conf.d/_GV_template.php:403 -msgid "reglages:: path complet du dossier protege via auth_token" -msgstr "" - -#: lib/conf.d/_GV_template.php:409 -msgid "reglages:: passphrase du mod_auth_token (definie dans le fichier de configuration apache)" -msgstr "" - -#: lib/conf.d/_GV_template.php:415 -msgid "reglages:: executable PHP CLI" -msgstr "" - -#: lib/conf.d/_GV_template.php:422 -msgid "reglages:: path du php.ini specifique (vide si non utilise)" -msgstr "" - -#: lib/conf.d/_GV_template.php:429 -msgid "reglages:: chemin de l'executable convert" -msgstr "" - -#: lib/conf.d/_GV_template.php:436 -msgid "reglages:: chemin de l'executable composite" -msgstr "" - -#: lib/conf.d/_GV_template.php:443 -msgid "reglages:: chemin de l'executable exiftools" -msgstr "" - -#: lib/conf.d/_GV_template.php:449 -msgid "reglages:: chemin de l'executable swfextract" -msgstr "" - -#: lib/conf.d/_GV_template.php:456 -msgid "reglages:: chemin de l'executable pdf2swf" -msgstr "" - -#: lib/conf.d/_GV_template.php:463 -msgid "reglages:: chemin de l'executable swfrender" -msgstr "" - -#: lib/conf.d/_GV_template.php:470 -msgid "reglages:: chemin de l'executable unoconv" -msgstr "" - -#: lib/conf.d/_GV_template.php:477 -msgid "reglages:: chemin de l'executable FFmpeg" -msgstr "" - -#: lib/conf.d/_GV_template.php:483 -msgid "reglages:: chemin de l'executable MP4Box" -msgstr "" - -#: lib/conf.d/_GV_template.php:489 -msgid "reglages:: chemin de l'executable Mplayer" -msgstr "" - -#: lib/conf.d/_GV_template.php:495 -msgid "reglages:: chemin de l'executable pdftotext (xpdf)" -msgstr "" - -#: lib/conf.d/_GV_template.php:501 -msgid "reglages:: nombre maximum de page a extraire (PDF)" -msgstr "" - -#: lib/conf.d/_GV_template.php:506 -msgid "GV::section:: Repertoires utilitaires" -msgstr "" - -#: lib/conf.d/_GV_template.php:511 -msgid "reglages:: proprietaire des fichiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:517 -msgid "reglages:: groupes des fichiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:522 -msgid "GV::section:: Configuration principale" -msgstr "" - -#: lib/conf.d/_GV_template.php:534 -msgid "reglages:: email de l'administrateur" -msgstr "" - -#: lib/conf.d/_GV_template.php:540 -msgid "reglages:: Afficher le nom des bases et des collections" -msgstr "" - -#: lib/conf.d/_GV_template.php:547 -msgid "reglages:: activer le choix du nom de fichier a l'export" -msgstr "" - -#: lib/conf.d/_GV_template.php:554 -msgid "reglages:: choix par defaut des noms de fichier a l'export" -msgstr "" - -#: lib/conf.d/_GV_template.php:568 -msgid "reglages:: Active les partages Facebook et Twitter" -msgstr "" - -#: lib/conf.d/_GV_template.php:575 -msgid "GV::section:: Page d'accueil" -msgstr "" - -#: lib/conf.d/_GV_template.php:588 -msgid "reglages:: presentation sur la home" -msgstr "" - -#: lib/conf.d/_GV_template.php:595 -msgid "GV::section:: Moteur de recherche" -msgstr "" - -#: lib/conf.d/_GV_template.php:601 -msgid "reglages:: Nombre minimal de lettre avec la troncature (Recherche)" -msgstr "" - -#: lib/conf.d/_GV_template.php:607 -msgid "reglages:: Question par defaut" -msgstr "" - -#: lib/conf.d/_GV_template.php:613 -msgid "reglages:: type de document cherches par defaut e l'ouverture du site" -msgstr "" - -#: lib/conf.d/_GV_template.php:619 -msgid "GV::section:: Report" -msgstr "" - -#: lib/conf.d/_GV_template.php:625 -msgid "reglages:: report anonyme (masque les infos concernant les utilisateurs)" -msgstr "" - -#: lib/conf.d/_GV_template.php:631 -msgid "GV::section:: Modules supplementaires" -msgstr "" - -#: lib/conf.d/_GV_template.php:637 -msgid "reglages:: Activation de l'outil thesaurus" -msgstr "" - -#: lib/conf.d/_GV_template.php:642 -msgid "reglages:: Activation du Mode MultiDOC" -msgstr "" - -#: lib/conf.d/_GV_template.php:647 -msgid "reglages:: Substitution de HD d'un record " -msgstr "" - -#: lib/conf.d/_GV_template.php:652 -msgid "reglages:: Substitution de thumbnail d'un record" -msgstr "" - -#: lib/conf.d/_GV_template.php:736 -msgid "GV::section:: Envois de mails" -msgstr "" - -#: lib/conf.d/_GV_template.php:747 -msgid "reglages:: Expediteur mail par defaut" -msgstr "" - -#: lib/conf.d/_GV_template.php:753 -msgid "reglages:: Utilisation d'un serveur SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:759 -msgid "reglages:: Activation de l'authentification smtp" -msgstr "" - -#: lib/conf.d/_GV_template.php:765 -msgid "reglages:: Hote SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:771 -msgid "reglages:: Port SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:777 -msgid "reglages:: Utiliser une conenction SSL" -msgstr "" - -#: lib/conf.d/_GV_template.php:783 -msgid "reglages:: User SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:789 -msgid "reglages:: Mot de passe SMTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:794 -msgid "GV::section:: Exports FTP" -msgstr "" - -#: lib/conf.d/_GV_template.php:799 -msgid "reglages:: active la possibilite d'exports FTP ou non (onglet dans multiexports)" -msgstr "" - -#: lib/conf.d/_GV_template.php:805 -msgid "reglages:: Donne ou non export FTP aux utilisateurs ou e l'admin uniquement" -msgstr "" - -#: lib/conf.d/_GV_template.php:810 -msgid "GV::section:: Configuration du client" -msgstr "" - -#: lib/conf.d/_GV_template.php:822 -msgid "reglages:: position de l'onglet de recherche" -msgstr "" - -#: lib/conf.d/_GV_template.php:828 -msgid "reglages:: position de l'onglet de recherche avancee" -msgstr "" - -#: lib/conf.d/_GV_template.php:834 -msgid "reglages:: position de l'onglet des topics" -msgstr "" - -#: lib/conf.d/_GV_template.php:840 -msgid "reglages:: numero de l'onglet actif" -msgstr "" - -#: lib/conf.d/_GV_template.php:846 -msgid "reglages:: rendu des topics" -msgstr "" - -#: lib/conf.d/_GV_template.php:859 -msgid "reglages:: Voir le rollover sur les regroupements (fenetre de preview)" -msgstr "" - -#: lib/conf.d/_GV_template.php:865 -msgid "reglages:: Voir le rollover sur les elements du chutier" -msgstr "" - -#: lib/conf.d/_GV_template.php:871 -msgid "reglages:: Presentation des collections" -msgstr "" - -#: lib/conf.d/_GV_template.php:878 -msgid "reglages:: Voir taille HD total des doc d'un chutiers" -msgstr "" - -#: lib/conf.d/_GV_template.php:884 -msgid "reglages:: Afficher automatiquement l'onglet des propositions s'il y'en a" -msgstr "" - -#: lib/conf.d/_GV_template.php:890 -msgid "reglages:: Il est necessaire d'etre connecte pour pouvoir telecharger en compte invite" -msgstr "" - -#: lib/conf.d/_GV_template.php:895 -msgid "GV::section:: Parametrage de l'inscription" -msgstr "" - -#: lib/conf.d/_GV_template.php:900 -msgid "reglages:: A true, cette option descative le choix de selection des bases sur lesquelles on s'inscrit, et l'inscription se fait sur toutes les bases ou jai le droit de m'inscrire" -msgstr "" - -#: lib/conf.d/_GV_template.php:906 -msgid "reglages:: Activation de l'autoinscription" -msgstr "" - -#: lib/conf.d/_GV_template.php:911 -msgid "GV::section:: Configuration du push" -msgstr "" - -#: lib/conf.d/_GV_template.php:916 -msgid "reglages:: Nombre de jour avant la fin de la validation pour envoie de mail de rappel" -msgstr "" - -#: lib/conf.d/_GV_template.php:928 -msgid "reglages:: dure de validite des liens genere pour les validations, si 0 => validite permanente" -msgstr "" - -#: lib/conf.d/_GV_template.php:933 -msgid "GV::section:: Indexation par les robots" -msgstr "" - -#: lib/conf.d/_GV_template.php:938 -msgid "reglages :: Titre de l'installation" -msgstr "" - -#: lib/conf.d/_GV_template.php:944 -msgid "reglages:: Mots clefs pour l'indexation des robots de moteurs de recherche" -msgstr "" - -#: lib/conf.d/_GV_template.php:950 -msgid "reglages :: Description de l'installation" -msgstr "" - -#: lib/conf.d/_GV_template.php:956 -msgid "reglages:: identifiant google analytics" -msgstr "" - -#: lib/conf.d/_GV_template.php:962 -msgid "Allow the website to be indexed by search engines like Google" -msgstr "" - -#: lib/conf.d/_GV_template.php:968 -msgid "reglages:: Afficher le bandeau Google Chrome Frame" -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:367 -msgid "Erreur lors de l'enregistrement des donnees" -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:432 -msgid "Erreur lors de la mise a jour des donnes " -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:458 -msgid "Do you want to send your report ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Application/Lightbox.php:501 -msgid "Envoie avec succes" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Publications.php:92 -msgid "You are not the owner of this feed, you can not edit it" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:368 -msgid "admin::compte-utilisateur ville" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:369 -msgid "admin::compte-utilisateur code postal" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:370 -msgid "admin::compte-utilisateur pays" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:375 -msgid "admin::compte-utilisateur activite" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:104 -msgid "Basket created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:138 -msgid "Basket has been deleted" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:180 -msgid "Record removed from basket" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:217 -msgid "Basket has been updated" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:304 -msgid "Basket has been archived" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:308 -msgid "Basket has been unarchived" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:382 -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:175 -#, php-format -msgid "%d records added" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:445 -#, php-format -msgid "%d records moved" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:237 -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:308 -msgid "Vous ne pouvez pas editer plusieurs elements simultanement" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:262 -msgid "Vous essayez de faire une action que je ne connais pas !" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:328 -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:468 -msgid "Request contains invalid datas" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Bridge.php:488 -#, php-format -msgid "%d elements en attente" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Edit.php:64 -msgid "Vocabulary not found" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:82 -msgid "An error occured" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:164 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:207 -msgid "Feed entry not found" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:196 -msgid "Action Forbidden : You are not the publisher" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:292 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:316 -msgid "publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:293 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:317 -msgid "publications::Ne le partagez pas, il est strictement confidentiel" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:295 -#: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:319 -msgid "publications::votre rss personnel" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 -msgid "prod::recherche: Attention : la liste des bases selectionnees pour la recherche a ete changee." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 -msgid "phraseanet::Ne plus afficher ce message" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:48 -msgid "Supprimer egalement les documents rattaches a ces regroupements" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 -msgid "reponses:: Ces enregistrements vont etre definitivement supprimes et ne pourront etre recuperes. Etes vous sur ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:51 -msgid "boutton::supprimer" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:52 -msgid "prod::editing valeurs heterogenes, choisir 'remplacer', 'ajouter' ou 'annuler'" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:53 -msgid "prod::editing::annulation: abandonner les modification ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:54 -msgid "phraseanet::chargement" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:57 -msgid "boutton::rechercher" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:59 -msgid "Vous n'avez pas les droits pour supprimer certains documents" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:60 -msgid "Vous n'avez pas les droits pour supprimer ces documents" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:61 -msgid "Vous devez donner un titre" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:62 -msgid "Nouveau modele" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:64 -msgid "Vous n'avez pas rempli tous les champ requis" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:65 -msgid "Vous n'avez pas selectionne de fil de publication" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:66 -msgid "panier::Supression d'un element d'un reportage" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:67 -msgid "panier::Attention, vous etes sur le point de supprimer un element du reportage. Merci de confirmer votre action." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:68 -msgid "phraseanet::recherche avancee" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:69 -msgid "panier:: renommer le panier" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:70 -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:79 -msgid "panier:: Un reportage ne peux recevoir que des elements provenants de la base ou il est enregistre" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:71 -msgid "phraseanet:: Erreur" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:72 -msgid "cgus :: Attention, si vous refuser les CGUs de cette base, vous n'y aures plus acces" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:73 -msgid "cgus :: Vous devez vous reauthentifier pour que vos parametres soient pris en compte." -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:74 -#, php-format -msgid "edit:: Supprimer %s du champ dans les records selectionnes" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:75 -#, php-format -msgid "edit:: Ajouter %s au champ courrant pour les records selectionnes" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:76 -#, php-format -msgid "edit:: Supprimer %s du champ courrant" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:77 -#, php-format -msgid "edit:: Ajouter %s au champ courrant" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:78 -msgid "panier:: vous ne pouvez pas supprimer un panier public" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:80 -msgid "Vous ne pouvez pas selectionner plus de 400 enregistrements" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:82 -msgid "Erreur : soit les parametres sont incorrects, soit le serveur distant ne repond pas" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:83 -msgid "Les parametres sont corrects, le serveur distant est operationnel" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:84 -msgid "Certaines publications n'ont pu etre effectuees, verifiez vos parametres" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:85 -msgid "Aucune publication effectuee, verifiez vos parametres" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 -msgid "Attention, en supprimant ce preregalge, vous ne pourrez plus modifier ou supprimer de publications prealablement effectues avec celui-ci" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:87 -msgid "edit::certains documents possedent des champs requis non remplis. Merci de les remplir pour valider votre editing" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:88 -msgid "Aucun document selectionne" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 -msgid "Are you sure you want to delete this list ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:90 -msgid "New list name ?" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:91 -msgid "List name can not be empty" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:92 -msgid "Name" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 -msgid "Message" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:94 -msgid "No users selected" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:129 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:238 -msgid "Unable to send the documents" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:144 -#, php-format -msgid "Push from %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:153 -msgid "No receivers specified" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:158 -msgid "No elements to push" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:169 -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:327 -#, php-format -msgid "Unknown user %d" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:211 -#, php-format -msgid "%1$d records have been sent to %2$d users" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:252 -#, php-format -msgid "Validation from %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:261 -msgid "No participants specified" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:266 -msgid "No elements to validate" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:318 -#, php-format -msgid "Missing mandatory participant parameter %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:388 -#, php-format -msgid "%1$d records have been sent for validation to %2$d users" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:476 -msgid "First name is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:479 -msgid "Last name is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:482 -msgid "Email is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:485 -msgid "Email is invalid" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:504 -msgid "User already exists" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:531 -msgid "User successfully created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Push.php:537 -msgid "Error while creating user" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:101 -msgid "Story created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/Story.php:210 -msgid "Record removed from story" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:144 -#, php-format -msgid "Unable to create list %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:152 -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:272 -msgid "List name is required" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:173 -#, php-format -msgid "List %s has been created" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:263 -msgid "Unable to update list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:289 -msgid "List has been updated" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:330 -#, php-format -msgid "List has been deleted" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:345 -#, php-format -msgid "Unable to delete list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:381 -msgid "Entry removed from list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:396 -msgid "Unable to remove entry from list " -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:453 -#, php-format -msgid "%d Users added to list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:461 -#, php-format -msgid "%d User added to list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:478 -msgid "Unable to add usr to list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:546 -msgid "List shared to user" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:561 -msgid "Unable to share the list with the usr" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:599 -msgid "Owner removed from list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/UsrLists.php:613 -msgid "Unable to remove usr from list" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:175 -#, php-format -msgid "%d Story attached to the WorkZone" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:182 -#, php-format -msgid "%d Stories attached to the WorkZone" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:192 -#, php-format -msgid "%1$d Story attached to the WorkZone, %2$d already attached" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:200 -#, php-format -msgid "%1$d Stories attached to the WorkZone, %2$d already attached" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Prod/WorkZone.php:251 -msgid "Story detached from the WorkZone" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:109 -msgid "It is not recommended to install Phraseanet without HTTPS support" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:157 -msgid "Appbox is unreachable" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:169 -msgid "Databox is unreachable" -msgstr "" - -#: lib/Alchemy/Phrasea/Controller/Setup/Installer.php:327 -#, php-format -msgid "an error occured : %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:323 -#, php-format -msgid "Impossible d'ecrire dans le dossier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Core/Configuration.php:353 -#, php-format -msgid "Impossible d'effacer le fichier %s" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:418 -msgid "phraseanet::technique::datetime-edit-format" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:419 -msgid "phraseanet::technique::datetime-edit-explain" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:422 -msgid "phraseanet::technique::date-edit-format" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:423 -msgid "phraseanet::technique::date-edit-explain" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:426 -msgid "phraseanet::technique::time-edit-format" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/Record/Edit.php:427 -msgid "phraseanet::technique::time-edit-explain" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/User/Edit.php:575 -msgid "Email addess is not valid" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/User/Manage.php:165 -msgid "Invalid mail address" -msgstr "" - -#: lib/Alchemy/Phrasea/Helper/User/Manage.php:197 -msgid "Invalid template name" -msgstr "" - -#: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:40 -msgid "Users" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:356 -#, php-format -msgid "Vous aviez envoye cette demande a %d utilisateurs" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:363 -#, php-format -msgid "Vous avez envoye cette demande a %d utilisateurs" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:373 -#, php-format -msgid "Processus de validation recu de %s et concernant %d utilisateurs" -msgstr "" - -#: lib/Doctrine/Entities/ValidationSession.php:380 -#, php-format -msgid "Processus de validation recu de %s" -msgstr "" - -#: lib/Doctrine/Repositories/BasketElementRepository.php:108 -msgid "Element is not found" -msgstr "" - -#: lib/Doctrine/Repositories/BasketElementRepository.php:113 -msgid "You have not access to this basket element" -msgstr "" - -#: lib/Doctrine/Repositories/BasketRepository.php:103 -msgid "Basket is not found" -msgstr "" - -#: lib/Doctrine/Repositories/BasketRepository.php:108 -msgid "You have not access to this basket" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListOwnerRepository.php:30 -#: lib/Doctrine/Repositories/UsrListOwnerRepository.php:67 -msgid "Owner is not found" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListOwnerRepository.php:35 -msgid "Owner and list mismatch" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListRepository.php:51 -msgid "List is not found" -msgstr "" - -#: lib/Doctrine/Repositories/UsrListRepository.php:56 -msgid "You have not access to this list" -msgstr "" - -#: tmp/cache_twig/02/d3/4b60220e73710eb8b684b06b6e7e.php:20 -#, php-format -msgid "%bridge_name% est momentanement indisponible a cause d'un trop grand nombre de requetes" -msgstr "" - -#: tmp/cache_twig/02/d3/4b60220e73710eb8b684b06b6e7e.php:25 -msgid "le service sera de nouveau disponible dans quelques minutes" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:28 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:128 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:233 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:360 -msgid "report:: 3 - Type de report" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:35 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:374 -msgid "report:: toutes les questions" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:42 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:381 -msgid "report:: Les questions les plus posees" -msgstr "" - -#: tmp/cache_twig/04/1e/4d8028e185a990e32c751929f93b.php:56 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:395 -msgid "report:: activite du site" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:62 -msgid "report :: configurer le tableau" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:71 -msgid "report :: imprimer le tableau" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:171 -msgid "report :: filtrer" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:184 -msgid "report :: grouper" -msgstr "" - -#: tmp/cache_twig/04/49/3e388f9f26f97899692aadea7433.php:350 -msgid "report :: aucun resultat trouve" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:61 -msgid "publication : titre" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:69 -msgid "publication : sous titre" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:77 -msgid "publication : autheur" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:85 -msgid "publication : email autheur" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:97 -msgid "Fils disponibles" -msgstr "" - -#: tmp/cache_twig/04/61/eb498f89f4298d394f120fb53cb4.php:170 -msgid "boutton::mettre a jour" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:58 -msgid "report:: Du (date)" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:68 -msgid "report:: Au (date)" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:138 -msgid "report:: (connexions) Par utilisateurs" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:148 -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:243 -msgid "report:: Grouper par" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:176 -msgid "report:: (connexions) Globales" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:183 -msgid "report:: (connexions) OS et navigateurs" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:271 -msgid "report:: par utilisateurs" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:281 -msgid "report:: (telechargement) Global" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:288 -msgid "report:: (telechargement) Par jours base par base" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:295 -msgid "report:: (telechargement) Par documents sur la base" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:300 -msgid "report::aucune precision" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:304 -msgid "report::la description contient" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:308 -msgid "report:: recordid" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:402 -msgid "report:: document" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:407 -msgid "report:: pushe" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:411 -msgid "report:: ajoute" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:415 -msgid "report:: edite" -msgstr "" - -#: tmp/cache_twig/07/fc/40153184d66ad31ac62daad2522e.php:419 -msgid "report:: valide" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:37 -msgid "admin::monitor: Ancienne version (client)" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:54 -msgid "admin::monitor: Nouvelle version (prod)" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:65 -msgid "admin::monitor: production" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:198 -msgid "Publications" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:216 -msgid "Commandes" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:243 -msgid "Notifications" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:285 -msgid "Guest" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:292 -msgid "login:: Mon compte" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:313 -msgid "phraseanet:: aide" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:331 -msgid "phraseanet:: raccourcis clavier" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:345 -msgid "phraseanet:: a propos" -msgstr "" - -#: tmp/cache_twig/08/5a/dbbbe587162391037b233de045b2.php:365 -msgid "phraseanet:: deconnection" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:39 -msgid "login:: connexion" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:44 -msgid "login::Remember me" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:58 -msgid "login::erreur: Les cookies sont desactives sur votre navigateur" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:68 -msgid "Vous etes maintenant deconnecte. A bientot." -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:82 -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:244 -msgid "admin::compte-utilisateur identifiant" -msgstr "" - -#: tmp/cache_twig/08/65/d09b4a0e666fb11e5b0666a0cb93.php:97 -msgid "admin::compte-utilisateur mot de passe" -msgstr "" - -#: tmp/cache_twig/08/8d/a95a3696d6412bab6f66ddc1fe5e.php:111 -msgid "report::Heures" -msgstr "" - -#: tmp/cache_twig/08/e5/569508e98c2f771fa6e0b16da773.php:184 -msgid "preview:: demarrer le diaporama" -msgstr "" - -#: tmp/cache_twig/08/e5/569508e98c2f771fa6e0b16da773.php:188 -msgid "preview:: arreter le diaporama" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:55 -msgid "Par %author%" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:69 -msgid "boutton::editer" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:109 -msgid "Derniere mise a jour le %updated_on%" -msgstr "" - -#: tmp/cache_twig/09/09/565a2afac5c75ab06c1c2dbec4d1.php:127 -msgid "dans %feed_name%" -msgstr "" - -#: tmp/cache_twig/09/36/bf77d681b54db86a8445f384ca88.php:22 -msgid "Ce champ est decrit comme l'element DublinCore %element_name%" -msgstr "" - -#: tmp/cache_twig/09/36/bf77d681b54db86a8445f384ca88.php:28 -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:79 -msgid "Description" -msgstr "" - -#: tmp/cache_twig/09/36/bf77d681b54db86a8445f384ca88.php:39 -msgid "Pour davantage d'informations, consulter le lien suivant %lien%" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:54 -msgid "admin::user: nouvel utilisateur" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:62 -msgid "admin::user: nouveau template" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:71 -msgid "admin::user: import d'utilisateurs" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:79 -msgid "admin::user: export d'utilisateurs" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:88 -msgid "Reglages:: reglages d acces guest" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:101 -msgid "Reglages:: reglages d inscitpition automatisee" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:114 -msgid "Filter" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:123 -msgid "Push::filter on login" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:131 -msgid "Push::filter on name" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:139 -msgid "Push::filter on countries" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:147 -msgid "Push::filter on companies" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:155 -msgid "Push::filter on emails" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:163 -msgid "Push::filter on templates" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:169 -msgid "Push::filter starts" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:184 -msgid "Apply a template" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:189 -msgid "boutton::choisir" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:211 -msgid "boutton::appliquer" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:227 -msgid "admin::compte-utilisateur id utilisateur" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:264 -msgid "admin::compte-utilisateur nom/prenom" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:344 -msgid "admin::compte-utilisateur dernier modele applique" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:364 -msgid "admin::compte-utilisateur date de creation" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:412 -msgid "This is a template" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:421 -msgid "This user has no rights" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:622 -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:633 -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:644 -msgid "%n_par_page% par page" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:649 -msgid "boutton::modifier" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:653 -msgid "Supprimer" -msgstr "" - -#: tmp/cache_twig/09/81/951f3c987474b17a9686305be82e.php:788 -msgid "boutton::exporter" -msgstr "" - -#: tmp/cache_twig/09/9c/a07ffdb3e121de2fbb9434c90319.php:21 -#: tmp/cache_twig/09/9c/a07ffdb3e121de2fbb9434c90319.php:27 -msgid "%nb_view% vue" -msgid_plural "%nb_view% vues" -msgstr[0] "" -msgstr[1] "" - -#: tmp/cache_twig/09/9c/a07ffdb3e121de2fbb9434c90319.php:43 -msgid "%nb_rating% like" -msgid_plural "%nb_rating% likes" -msgstr[0] "" -msgstr[1] "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:114 -#, php-format -msgid "prod::thesaurusTab:dlg:Remplacement du candidat \"%s\" :" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:119 -#, php-format -msgid "prod::thesaurusTab:dlg:Remplacer par \"%s\"" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:238 -msgid "prod::thesaurusTab:dlg:Remplacement en cours." -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:278 -msgid "prod::thesaurusTab:dlg:Acceptation en cours." -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:360 -msgid "prod::thesaurusTab:dlg:Suppression en cours." -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:412 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter les %d termes candidats ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:420 -#, php-format -msgid "prod::thesaurusTab:dlg:accepter le terme candidat \"%s\" ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:497 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter les %s termes candidats" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:504 -#, php-format -msgid "prod::thesaurusTab:wizard:clic-droit / accepter le terme candidat \"%s\"" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:523 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer les %d termes des fiches par :" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:531 -#, php-format -msgid "prod::thesaurusTab:dlg:remplacer le terme \"%s\" des fiches par :" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:552 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer les %d termes des fiches ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:560 -#, php-format -msgid "prod::thesaurusTab:dlg:supprimer le terme \"%s\" des fiches ?" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:597 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:602 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:859 -msgid "prod::thesaurusTab:tree:loading" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1231 -msgid "boutton::ok" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1257 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1283 -msgid "prod::thesaurusTab:dlg:OK" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1264 -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1290 -msgid "prod::thesaurusTab:dlg:Annuler" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1315 -msgid "prod::thesaurusTab:tmenu:Accepter comme terme specifique" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1325 -msgid "prod::thesaurusTab:tmenu:Accepter comme synonyme" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1407 -msgid "prod::thesaurusTab:cmenu:Accepter en %lng_code%" -msgstr "" - -#: tmp/cache_twig/0b/4e/1f430effbbcb0daf1b9a9acb4b78.php:1426 -msgid "prod::thesaurusTab:cmenu:Remplacer par..." -msgstr "" - -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:45 -msgid "Creer une playlist" -msgstr "" - -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:65 -msgid "Titre" -msgstr "" - -#: tmp/cache_twig/0e/fc/71d585bc27b6742fa2ac333f7c78.php:98 -msgid "boutton::retour" -msgstr "" - -#: tmp/cache_twig/0f/69/23ed49ce0f224c50894acf8864e6.php:32 -msgid "prod::collection::Changer de collection" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:29 -msgid "phraseanet::noscript" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:42 -msgid "phraseanet::browser not compliant" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:44 -msgid "phraseanet::recommend browser" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:121 -msgid "Phraseanet recommande l'utilisation de Google Chrome Frame pour Internet Explorer" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:125 -msgid "C'est gratuit et s'installe en quelques secondes. Pour Internet Explorer 6, 7, et 8 sur Windows 7 / Vista / XP SP2." -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:130 -msgid "Ne plus afficher ce message" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:213 -msgid "login:: CGUs" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:219 -msgid "login:: accueil" -msgstr "" - -#: tmp/cache_twig/10/05/672e4a01e13ca90ac430fe043825.php:287 -msgid "phraseanet:: language" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:47 -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:243 -msgid "Upload" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:64 -msgid "Vous n'avez selectionne aucun element" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:68 -msgid "Les elements ne peuvent etre uploades (problemes de type ou de droit)" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:71 -msgid "Le bridge Dailymotion ne prend en charge que les videos" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:75 -msgid "Vous ne pouvez uploader des elements sur Dailymotion qu'un par un" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:110 -msgid "255 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:142 -msgid "1000 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:169 -msgid "Tags" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:175 -msgid "250 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:179 -msgid "10 tags maximum" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:183 -msgid "Séparez les tags par un espace: Paris vacances restaurant" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:187 -msgid "Groupez 2 ou plusieurs mots avec des guillemets: \"Michael Jackson\"" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:214 -msgid "Confidentialite" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:221 -msgid "prive" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:231 -msgid "public" -msgstr "" - -#: tmp/cache_twig/10/14/f294b28413d46d6959201fd37c02.php:255 -msgid "Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:23 -msgid "Type texte" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:29 -msgid "Type nombre" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:35 -msgid "Type date" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:45 -msgid "Source" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:60 -msgid "Ce champ n'est pas indexe" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:71 -msgid "Ce champ est multivalue" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:82 -msgid "Ce champ est en lecture seule" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:93 -msgid "Ce champ est relie a une branche de thesaurus" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:104 -msgid "Ce champ est utilise en titre a l'affichage" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:115 -msgid "Ce champ est requis" -msgstr "" - -#: tmp/cache_twig/10/8e/67ad474f1160c83a96f843815e7d.php:133 -msgid "Ce champ est decrit comme element du %DublinCoreElementSet%" -msgstr "" - -#: tmp/cache_twig/11/aa/df7d3dec7ba48bb3387d5fb39cdf.php:28 -msgid "report:: 2 - Bases" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:53 -msgid "Ajouter une publication" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:58 -msgid "Feed name" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:68 -msgid "Short description" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:72 -msgid "Sous-titre" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:79 -msgid "Non-Restreinte (publique)" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:117 -msgid "Etendue de la publication" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:124 -msgid "Publique" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:145 -msgid "Date Creation" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:149 -msgid "Restriction" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:153 -msgid "Public" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:231 -msgid "This feed is public" -msgstr "" - -#: tmp/cache_twig/12/a2/2021d9942666a7bae0d71012739c.php:278 -msgid "Une fois la publication supprimee, les donnees publiees seront definitivement perdues. Continuer ?" -msgstr "" - -#: tmp/cache_twig/12/dc/9a7289760e7d2e66ba64584108ab.php:14 -#: tmp/cache_twig/12/dc/9a7289760e7d2e66ba64584108ab.php:19 -msgid "validation::envoyer mon rapport" -msgstr "" - -#: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:165 -msgid "notice" -msgstr "" - -#: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:208 -msgid "boutton::telecharger tous les documents" -msgstr "" - -#: tmp/cache_twig/14/71/dd899b848a7ba50e46f8e924dddd.php:236 -msgid "action : exporter" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:20 -msgid "First Name" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:31 -msgid "Last Name" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:42 -msgid "Email Name" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:53 -msgid "Job" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:64 -msgid "Company" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:75 -msgid "City" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:86 -msgid "Cancel" -msgstr "" - -#: tmp/cache_twig/1f/8f/faccfb0bde3569829b665706fabc.php:90 -msgid "Add" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:17 -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:23 -msgid "boutton::precedent" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:29 -msgid "boutton::demarrer" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:35 -msgid "boutton::pause" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:41 -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:47 -msgid "boutton::suivant" -msgstr "" - -#: tmp/cache_twig/1f/b8/8eb333db33342e0e3065cf81acdb.php:53 -msgid "boutton::telecharger" -msgstr "" - -#: tmp/cache_twig/23/31/8a648fe343aa7bb7465a372fadc5.php:136 -msgid "En attente" -msgstr "" - -#: tmp/cache_twig/23/31/8a648fe343aa7bb7465a372fadc5.php:142 -msgid "En cours d'envoi" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:25 -msgid "List Name" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:38 -msgid "Set sharing permission" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:112 -msgid "Activite" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:118 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:149 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:180 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:211 -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:242 -msgid "All" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:143 -msgid "Template" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:205 -msgid "Country" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:236 -msgid "Position" -msgstr "" - -#: tmp/cache_twig/24/9e/91b44faaa7a1a779d0bbe6403278.php:287 -msgid "%length% peoples" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:19 -msgid "VALIDATION" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:25 -msgid "lightbox::recaptitulatif" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:100 -msgid "validation:: OUI" -msgstr "" - -#: tmp/cache_twig/26/4a/a88de5c8ef8ff0f4e7b7c33fd479.php:115 -msgid "validation:: NON" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:12 -msgid "Limite temporelle" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:19 -msgid "Base %base%" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:27 -msgid "Collection %collection%" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:50 -msgid "Activer" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:58 -msgid "De" -msgstr "" - -#: tmp/cache_twig/2c/19/c0ea416c356104ffdf45ed31cd94.php:73 -msgid "A" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:78 -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:120 -msgid "a propos" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:86 -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:154 -msgid "Validations" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:96 -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:222 -msgid "Paniers" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:107 -msgid "Deconnexion" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:150 -msgid "Back" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:161 -msgid "Voici vos validations en cours" -msgstr "" - -#: tmp/cache_twig/2c/f0/0baabea228e3d526886065275e57.php:229 -msgid "Voici vos paniers" -msgstr "" - -#: tmp/cache_twig/32/33/2ee0e588889368ab1cd565fd8dd4.php:41 -msgid "report:: Dashboard" -msgstr "" - -#: tmp/cache_twig/33/05/9aa52374260c3b9d7c4b6e16c4b4.php:54 -msgid "Vous devez remplir les champs requis" -msgstr "" - -#: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:55 -msgid "action : ajouter au panier" -msgstr "" - -#: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:92 -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:27 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1295 -msgid "action : print" -msgstr "" - -#: tmp/cache_twig/33/4d/8e964832ba08789a3b4d0d8e9eff.php:110 -msgid "reponses:: partager" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:77 -msgid "Erreur lors du contact avec le serveur WEB" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:81 -msgid "Delai depasse lors du contact avec le serveur WEB" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:85 -msgid "Required" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:89 -msgid "forms::merci d'entrer une adresse e-mail valide" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:93 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:97 -msgid "forms::ce champ est requis" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:101 -msgid "forms::les mots de passe ne correspondent pas" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:105 -msgid "Vous devez specifier une adresse email et un mot de passe valides" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:109 -msgid "Le nom de base de donnee est incorrect" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:113 -msgid "Il y a des erreurs, merci de les corriger avant de continuer" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:120 -msgid "forms::le mot de passe est trop similaire a l'identifiant" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:124 -msgid "forms::la valeur donnee est trop courte" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:128 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:132 -msgid "forms::le mot de passe est trop simple" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:136 -msgid "forms::le mot de passe est bon" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:140 -msgid "forms::le mot de passe est tres bon" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:186 -msgid "Veuillez corriger les erreurs avant de poursuivre" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:333 -msgid "Successfull connection" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:339 -msgid "Warning, this database is not empty" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:352 -msgid "Connection is OK but database does not exists or can not be accessed" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:359 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:371 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:379 -msgid "Unable to connect to MySQL server" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:417 -msgid "Bonjour, vous etes sur le point d'installer Phraseanet." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:423 -msgid "Consultez en ligne les pré-requis et la configuration du serveur web" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:429 -msgid "Vous aurez besoin de spécifier un serveur MySQL, des repertoires de stockage pour vos documents, et de configurer votre serveur web pour qu'il publie certains de ces dossiers de stockage." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:439 -msgid "Avant de continuer, prenez connaissance des points ci-dessous. Vous pouvez continuer sans corriger ces problèmes." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:482 -msgid "Pre-requis" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:490 -msgid "Configuration du serveur web" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:524 -msgid "Executables externes" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:567 -msgid "Required field" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:591 -msgid "Phraseanet may require many binaries." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:597 -msgid "Some of them are required, like the indexer, Exiftool or ImageMagick components, some others are optionnal, like FFmpeg which is used to preview video files." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:603 -msgid "Don't worry, You can modify your configuration later" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:642 -msgid "Creation de votre compte" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:654 -msgid "Votre adresse email" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:661 -msgid "Votre mot de passe" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:680 -msgid "Confirmation de votre mot de passe" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:690 -msgid "admin::compte-utilisateur A propos de la securite des mots de passe :" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:694 -msgid "admin::compte-utilisateur Les mots de passe doivent etre clairement distincts du login et contenir au moins deux types parmis les caracteres suivants :" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:699 -msgid "admin::compte-utilisateur::securite caracteres speciaux" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:703 -msgid "admin::compte-utilisateur::securite caracteres majuscules" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:707 -msgid "admin::compte-utilisateur::securite caracteres minuscules" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:711 -msgid "admin::compte-utilisateur::securite caracteres numeriques" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:731 -msgid "Your email will be used to log in the application." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:735 -msgid "Please be sure it is still valid and you can access it" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:780 -msgid "setup::Configuration de la base de compte ApplicationBox" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:793 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1077 -msgid "MySQL database connection parameters" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:800 -msgid "phraseanet:: adresse" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:807 -msgid "Database user" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:821 -msgid "phraseanet:: port" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:828 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1092 -msgid "Database" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:836 -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1100 -msgid "boutton::tester" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:856 -msgid "Si vous aviez besoin de plus de parametres, %debut_lien%Afficher d'avantage d'options%fin_lien%" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:875 -msgid "ApplicationBox is a Mysql database." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:881 -msgid "It stores users datas, rights, and references to DataBoxes where records are stored." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:893 -msgid "Phraseanet strongly recommends the use of %link_start%MariaDB%link_end% as a replacement for MySQL." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:937 -msgid "setup::Configuration des repertoires de stockage" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:949 -msgid "Repertoire de stockage des fichiers" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:956 -msgid "Repertoire de stockage des imagettes" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:963 -msgid "Point de montage des imagettes (voir aide ci dessous)" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:972 -msgid "Il faut declarer dans votre serveur web un montage vers le dossier de stockage des imagettes" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:977 -msgid "Exemple Apache" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:988 -msgid "Exemple Nginx" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1015 -msgid "Your medias and their subdefinitions (previews, thumbnails..) will be stored in these directories." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1021 -msgid "Thumbnails directory is mounted to be accessible via HTTP, while other files are not." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1027 -msgid "If you plan to store large files, be sure it will fit in these directories." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1065 -msgid "setup::Configuration de la base de stockage DataBox" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1084 -msgid "Ne pas creer de DataBox maintenant" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1112 -msgid "Modele de donnees" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1143 -msgid "Creation des taches" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1148 -msgid "Phraseanet embarque un moteur de taches pour la lecture / ecriture des metadonnes, et autre operations" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1159 -msgid "Creer la tache d'ecriture des metadonnees" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1168 -msgid "Creer la tache de creation des sous-definitions" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1177 -msgid "Creer la tache d'indexation" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1194 -msgid "Phraseanet DataBoxes are MySQL databases, queryable by Phraseanet ApplicationBox." -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1198 -msgid "Databoxes store records, metadatas and their classifications" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1219 -msgid "button::Install" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1229 -msgid "Install in progess" -msgstr "" - -#: tmp/cache_twig/33/bd/3f7434a025a7f4ace343dfa5715b.php:1235 -msgid "Installation is currenlty processing, please wait..." -msgstr "" - -#: tmp/cache_twig/36/46/e675443f5542d7476cde764fcf96.php:127 -msgid "validation:: editer ma note" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:37 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1312 -msgid "action : editer" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:50 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1330 -msgid "action : status" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:63 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1348 -msgid "action : collection" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:76 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1517 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1557 -msgid "action : push" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:87 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1537 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1570 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2262 -msgid "action : bridge" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:93 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1544 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1583 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2268 -msgid "action : publier" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:106 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1598 -msgid "action : outils" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:114 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1613 -msgid "action : supprimer" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:122 -msgid "Certaines donnees du panier ont change" -msgstr "" - -#: tmp/cache_twig/3b/46/7c9d73ae03d7ae2f45b155ef213f.php:124 -msgid "rafraichir" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:36 -msgid "Votre recherche ne retourne aucun resultat" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:49 -msgid "Voulez-vous dire %link% ?" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:68 -msgid "La recherche s'effectue grâce à la boîte de dialogue qui se trouve en haut à gauche de l'écran." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:71 -msgid "Sachez que vous pouvez utiliser les opérateurs ou caractères spéciaux suivants :" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:75 -msgid "* , ? , ET , OU , SAUF , DANS , DERNIERS , TOUT (ou AND , OR , EXCEPT , LAST , ALL)" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:80 -msgid "Caractères de troncature" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:87 -msgid "auto*" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:91 -msgid "retourne \"automobile\", \"automate\", \"autoroute\", ..." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:97 -msgid "dé?it" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:101 -msgid "retourne \"délit\", \"débit\", ..." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:108 -msgid "Visualiser tous les enregistrements / les derniers enregistrements" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:114 -msgid "TOUT" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:118 -msgid "retourne tous les enregistrements des collections selectionnees" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:124 -msgid "LAST 20" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:128 -msgid "retourne les 20 derniers enregistrements archives dans les collections selectionnees" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:135 -msgid "Recherche multicritères" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:139 -msgid "Vous pouvez affiner votre recherche avec les opérateurs : ET, OU, SAUF ou DANS" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:145 -msgid "sport" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:147 -msgid "automobile" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:151 -msgid "retourne les documents comprenant les deux mots." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:157 -msgid "journal OU jt" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:161 -msgid "retourne les documents comprenant un mot et/ou l'autre." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:167 -msgid "cannes SAUF festival" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:171 -msgid "retourne les documents comprenant cannes sans le mot festival." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:177 -msgid "thalassa DANS titre" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:181 -msgid "retourne les documents où le terme est au moins présent dans le titre, en évitant par exemple celles où le terme est uniquement cité dans la légende." -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:189 -msgid "Attention" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:193 -msgid "pour chercher une phrase contenant un des mots-clé ci-dessus, utilisez les guillemets :" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:197 -msgid "C dans l'air" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:201 -msgid "Et Dieu créa la femme" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:205 -msgid "bijou en or" -msgstr "" - -#: tmp/cache_twig/3e/ae/15be7d13fd1c62bd1485d6e81061.php:209 -msgid "tout le sport" -msgstr "" - -#: tmp/cache_twig/3f/da/67c754554942bdaffe0d2c33862e.php:47 -msgid "Deplacement %n_element% elements" -msgstr "" - -#: tmp/cache_twig/3f/da/67c754554942bdaffe0d2c33862e.php:67 -msgid "Which photosets you want to put you %number% photos into ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:308 -msgid "Chargement" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:348 -msgid "phraseanet:: panier" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:357 -msgid "recherche" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:370 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:374 -msgid "phraseanet:: propositions" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:381 -msgid "phraseanet:: thesaurus" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:401 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2297 -msgid "Re-initialiser" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:412 -msgid "Chercher tous les mots" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:425 -msgid "Cette expression exacte" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:438 -msgid "Au moins un des mots suivants" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:451 -msgid "Aucun des mots suivants" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:468 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1181 -msgid "boutton:: selectionner toutes les bases" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:473 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1185 -msgid "boutton:: selectionner aucune base" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:488 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:522 -msgid "Trier par " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:493 -msgid "pertinence" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:497 -msgid "date dajout" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:501 -msgid "aleatoire" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:507 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:555 -msgid "descendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:511 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:559 -msgid "ascendant" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:516 -msgid "rechercher par stemme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:570 -msgid "Les termes apparaissent dans le(s) champs" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:576 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:760 -msgid "rechercher dans tous les champs" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:622 -msgid "Status des documents a rechercher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:728 -msgid "Rechercher dans un champ date" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:770 -msgid "phraseanet::time:: de" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:777 -msgid "phraseanet::time:: a" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:803 -msgid "prod::thesaurusTab:thesaurus" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:807 -msgid "prod::thesaurusTab:candidats" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:819 -msgid "prod::thesaurusTab:wizard:accepter le terme candidat" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:825 -msgid "prod::thesaurusTab:wizard:remplacer par le terme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:881 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:945 -msgid "chargement" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:974 -msgid "prod::thesaurusTab:dlg:supprimer le terme ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:980 -msgid "prod::thesaurusTab:dlg:accepter le terme ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:986 -msgid "prod::thesaurusTab:dlg:remplacer le terme ?" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1002 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1006 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1010 -msgid "action:: nouveau panier" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1017 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1021 -msgid "Browse Baskets" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1028 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1032 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1036 -msgid "action:: nouveau reportage" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1045 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1049 -msgid "phraseanet:: tri par date" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1057 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1061 -msgid "phraseanet:: tri par nom" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1069 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1146 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1820 -msgid "Preferences" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1101 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1260 -msgid "phraseanet::type:: documents" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1109 -msgid "phraseanet::type:: reportages" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1121 -msgid "Tout type" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1125 -msgid "Image" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1129 -msgid "Video" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1133 -msgid "Audio" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1137 -msgid "Document" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1141 -msgid "Flash" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1156 -msgid "recherche :: Bases" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1160 -msgid "recherche :: Historique" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1167 -msgid "recherche :: Themes" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1235 -msgid "Select" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1242 -msgid "reponses:: selectionner tout" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1248 -msgid "reponses:: selectionner rien" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1254 -msgid "phraseanet::type:: images" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1266 -msgid "phraseanet::type:: videos" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1272 -msgid "phraseanet::type:: audios" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1288 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1421 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1522 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1575 -msgid "Select an action" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1530 -msgid "Feedback" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1702 -msgid "raccourci :: a propos des raccourcis claviers" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1707 -msgid "Raccourcis claviers en cours de recherche : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1712 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1748 -msgid "Raccourcis:: ctrl-a : tout selectionner " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1716 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1752 -msgid "Raccourcis:: ctrl-p : imprimer la selection " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1720 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1756 -msgid "Raccourcis:: ctrl-e : editer la selection " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1724 -msgid "Raccourcis::fleche gauche : page precedente " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1728 -msgid "Raccourcis::fleche droite : page suivante " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1732 -msgid "Raccourcis::fleche haut : scroll vertical " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1736 -msgid "Raccourcis::fleche bas : scroll vertical " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1743 -msgid "Raccourcis claviers de la zone des paniers : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1763 -msgid "Raccourcis claviers en cours de editing : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1768 -msgid "Raccourcis::tab/shift-tab se ballade dans les champs " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1775 -msgid "Raccourcis claviers en cours de preview : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1780 -msgid "Raccourcis::fleche gauche : en avant " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1784 -msgid "Raccourcis::fleche gauche : en arriere " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1788 -msgid "Raccourcis::espace : arreter/demarrer le diaporama " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1796 -msgid "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1806 -msgid "raccourcis :: ne plus montrer cette aide" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1826 -msgid "Affichage" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1830 -msgid "Configuration" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1838 -msgid "Mode de presentation" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1852 -msgid "reponses:: mode vignettes" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1862 -msgid "reponses:: mode liste" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1868 -msgid "Theme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1877 -msgid "Selecteur de theme" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1899 -msgid "Presentation de vignettes" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1910 -msgid "Iconographe (description au rollover)" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1922 -msgid "Graphiste (preview au rollover)" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1932 -msgid "Informations techniques" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1943 -msgid "Afficher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1955 -msgid "Afficher dans la notice" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1967 -msgid "Ne pas afficher" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1977 -msgid "Type de documents" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1988 -msgid "Afficher une icone" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:1996 -msgid "reponses:: images par pages : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2009 -msgid "reponses:: taille des images : " -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2023 -msgid "Couleur de selection" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2028 -msgid "choisir" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2038 -msgid "Affichage au demarrage" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2054 -msgid "Ma derniere question" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2065 -msgid "Une question personnelle" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2087 -msgid "Aide" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2137 -msgid "preview:: Description" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2141 -msgid "preview:: Historique" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2148 -msgid "preview:: Popularite" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2201 -msgid "Presentation de vignettes de panier" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2218 -msgid "Afficher les status" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2236 -msgid "Afficher la fiche descriptive" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2254 -msgid "Afficher le titre" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2283 -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2306 -msgid "Re-ordonner" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2288 -msgid "Reordonner automatiquement" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2293 -msgid "Choisir" -msgstr "" - -#: tmp/cache_twig/40/69/2ac30f0a229293a32167fa6e3b21.php:2310 -msgid "Inverser" -msgstr "" - -#: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:19 -msgid "preview::statistiques de visualisation pour le lien" -msgstr "" - -#: tmp/cache_twig/41/65/a49e4f4f8f55dabf2790775f8241.php:50 -msgid "preview::statistiques de telechargement" -msgstr "" - -#: tmp/cache_twig/44/8d/359dbb5d824b8a83e7fcff554360.php:47 -msgid "Suppression de %n_element% photos" -msgstr "" - -#: tmp/cache_twig/44/8d/359dbb5d824b8a83e7fcff554360.php:67 -msgid "Etes vous sur de supprimer %number% photos ?" -msgstr "" - -#: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:38 -msgid "Erreur lors de votre authentification" -msgstr "" - -#: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:53 -msgid "Vous etes authentifie avec succes" -msgstr "" - -#: tmp/cache_twig/46/21/f5a038e4c5a3f4677f8ee17a5d45.php:59 -msgid "Si cette fenetre ne se ferme pas automatiquement, fermez la, et raffraichissez votre compte" -msgstr "" - -#: tmp/cache_twig/47/cc/7278d06f416783c9815cd63e2f09.php:17 -msgid "Vous etes actuellement deconnecte de votre compte, vous devez vous connecter pour continuer" -msgstr "" - -#: tmp/cache_twig/47/cc/7278d06f416783c9815cd63e2f09.php:62 -msgid "boutton::refresh" -msgstr "" - -#: tmp/cache_twig/48/c6/455d1a21dd0b7b92bc64ed3c5765.php:34 -msgid "report:: Enlever le filtre" -msgstr "" - -#: tmp/cache_twig/4b/1d/eeda3c99bc5c1ea2b32c1b5030e1.php:22 -msgid "Creer" -msgstr "" - -#: tmp/cache_twig/4b/1d/eeda3c99bc5c1ea2b32c1b5030e1.php:32 -#: tmp/cache_twig/56/df/8e9606b65d5b86ebe83193d18d40.php:48 -msgid "Actions" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:15 -msgid "Les indications donnees ci dessous sont a titre informatif." -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:19 -msgid "Si vous ne les respectez pas, les documents seront correctement indexes, mais les metadonnees inscrites risquent d'etre erronnees" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:26 -msgid "Ces informations sont directement fournies par la norme de metadonnees de ce champ : %norm_name%" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:43 -msgid "phraseanet::technique::date-edit-explain (aaaa/mm/jj)" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:49 -msgid "phraseanet::technique::time-edit-explain (hh:mm:ss)" -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:63 -msgid "Le champ doit contenir %minLength% caracteres minimum." -msgstr "" - -#: tmp/cache_twig/4d/c1/7d0c2228d36d650b2be2d9a43835.php:75 -msgid "Le champ ne peut contenir plus de %maxLength% caracteres." -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:11 -msgid "Record_id" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:34 -msgid "Largeur" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:51 -msgid "Hauteur" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:70 -msgid "Nom Original" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:86 -msgid "Type Mime" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:105 -msgid "Taille" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:128 -msgid "Dimensions a l'impression" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:173 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:290 -msgid "Duree" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:187 -msgid "Images par secondes" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:201 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:304 -msgid "Codec Audio" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:215 -msgid "Codec Video" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:229 -msgid "Debit video" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:246 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:318 -msgid "Debit audio" -msgstr "" - -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:263 -#: tmp/cache_twig/51/b8/16f43e641b475218c679786fd3f0.php:335 -msgid "Frequence d'echantillonage" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:117 -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:189 -msgid "Mise a jour" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:138 -msgid "Before any upgrade, you have to fix your database." -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:141 -msgid "Some users have the same email address. You can fix this problem with this script :" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:163 -msgid "Une mise a jour de l'application est necessaire, il est vivement recommande de l'effectuer en ligne de commande via la commande :" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:182 -msgid "Si toutefois vous n'aviez pas acces à la console, suivez le lien suivant" -msgstr "" - -#: tmp/cache_twig/52/48/d7b24984e78d1532173f20658d9a.php:202 -msgid "Progression de la mise a jour : " -msgstr "" - -#: tmp/cache_twig/54/f8/2480d317ffebf431a7719a048fbd.php:25 -msgid "Page" -msgstr "" - -#: tmp/cache_twig/56/19/f69a2b0674ef37a10e3bc359c7bb.php:69 -msgid "No matches found" -msgstr "" - -#: tmp/cache_twig/56/df/8e9606b65d5b86ebe83193d18d40.php:17 -msgid "Ajouter a" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:19 -msgid "Fail" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:25 -msgid "Success" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:40 -msgid "Erreur : %error%" -msgstr "" - -#: tmp/cache_twig/58/b1/99f85754e976fcb1e42424e15509.php:57 -msgid "Expire dans %expiration_date%" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:68 -msgid "Rights" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:78 -msgid "Infos" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:125 -msgid "Edition des droits de %display_name%" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:137 -msgid "Edition des droits de %number% utilisateurs" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:668 -msgid "admin::compte-utilisateur sexe" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:679 -msgid "admin::compte-utilisateur:sexe: mademoiselle" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:687 -msgid "admin::compte-utilisateur:sexe: madame" -msgstr "" - -#: tmp/cache_twig/5b/28/4dc2a8dc9d82dd44c67a7e324643.php:695 -msgid "admin::compte-utilisateur:sexe: monsieur" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:110 -msgid "Quotas" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:131 -msgid "Restrictions de telechargement" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:153 -msgid "Droits" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:161 -msgid "par mois" -msgstr "" - -#: tmp/cache_twig/5c/72/a1b63fb5c6635e4efaa3f5331d5f.php:165 -msgid "Reste" -msgstr "" - -#: tmp/cache_twig/5c/7e/3aebdd594476b876dd89d1ff9e78.php:19 -msgid "panier:: nom" -msgstr "" - -#: tmp/cache_twig/5c/7e/3aebdd594476b876dd89d1ff9e78.php:31 -msgid "panier:: description" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:23 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:262 -msgid "No results" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:29 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:268 -msgid "1 result" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:35 -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:274 -msgid "%Total% results" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:184 -msgid "Received from %user_name%" -msgstr "" - -#: tmp/cache_twig/5d/e5/ae2ed2d48a3db8fa0da92ccdf779.php:222 -msgid "Sent for validation to %list_participants%" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:34 -msgid "Vous avez autorise ces applications a acceder a votre compte" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:61 -msgid "Revoquer l'access" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:69 -msgid "Authoriser l'access" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:92 -msgid "par %user_name%" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:123 -msgid "Aucune application n'a accés à vos données." -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:135 -msgid "Applications" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:140 -msgid "Naviguez et gerez les applications que vous souhaitez autoriser a acceder a vos informations Phraseanet" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:145 -msgid "Developpeurs" -msgstr "" - -#: tmp/cache_twig/5e/37/71e1b63407b0767110817c7b875f.php:150 -msgid "Les developpeurs peuvent editer l'enregistrement de leurs application grace a l'onglet \"developpeurs\" ci-dessus" -msgstr "" - -#: tmp/cache_twig/60/d6/47be888a7c020832754fcd4e22e9.php:71 -msgid "Home" -msgstr "" - -#: tmp/cache_twig/60/d6/47be888a7c020832754fcd4e22e9.php:94 -#, php-format -msgid "%entry_length% documents" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:114 -msgid "Cocher toute la colonne" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:118 -msgid "Decocher toute la colonne" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:122 -msgid "Creer un model" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:126 -msgid "Creer un utilisateur" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:287 -msgid "Ajouter un nouvel utilisateur" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:292 -msgid "Adresse email du nouvel utilisateur" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:300 -msgid "Creer un modele" -msgstr "" - -#: tmp/cache_twig/61/1a/09e7e46699dea233edb7fa1db810.php:305 -msgid "Nom du nouveau modele" -msgstr "" - -#: tmp/cache_twig/61/1b/79326e85246442bd6ec8281f4cfc.php:193 -msgid "boutton::publier" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:15 -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:15 -msgid "Ajouter ma selection courrante" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:21 -msgid "Story name" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:27 -msgid "Story description" -msgstr "" - -#: tmp/cache_twig/61/e3/8dbd14ad2bd30ee1ee235d4c224c.php:33 -msgid "Collection" -msgstr "" - -#: tmp/cache_twig/63/54/32f78e10cecde152548c2c0fb033.php:133 -msgid "Garder ma session active" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:73 -msgid "Le bridge FlickR ne prend en charge que les photos" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:83 -msgid "%n_elements% elements ne peuvent etre uploades" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:92 -#, php-format -msgid "Upload sur Flickr de %elements_length% elements" -msgstr "" - -#: tmp/cache_twig/67/4b/1f49350072fcb833abd4d43aba1c.php:206 -msgid "2000 caracteres maximum, separe par des espaces" -msgstr "" - -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:21 -msgid "Nom du nouveau panier" -msgstr "" - -#: tmp/cache_twig/68/9a/19071b2e057711fb84181cac2287.php:27 -msgid "paniers::description du nouveau panier" -msgstr "" - -#: tmp/cache_twig/6c/f6/2b8926b3d1c28a32e61adb464dac.php:20 -msgid "Aucune notification" -msgstr "" - -#: tmp/cache_twig/6c/f6/2b8926b3d1c28a32e61adb464dac.php:29 -msgid "toutes les notifications" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:78 -msgid "veuillez choisir au minimum une collection" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:112 -msgid "report::Nombre de connexions" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:116 -msgid "report:: jour" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:120 -msgid "report:: Heures" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:124 -msgid "report::Nombre de document ajoute" -msgstr "" - -#: tmp/cache_twig/6e/86/0f7607e846fbfef2f3d8a63745a2.php:128 -msgid "report::Nombre de document edite" -msgstr "" - -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:15 -msgid "Lists" -msgstr "" - -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:26 -msgid "Refresh" -msgstr "" - -#: tmp/cache_twig/70/71/684a331ee0c04c8c5cc46cff707b.php:61 -msgid "Delete" -msgstr "" - -#: tmp/cache_twig/71/b9/c18fe9ea50eddc914b07ec715297.php:36 -msgid "Playlist" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:129 -msgid "nouveau" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:140 -msgid "Vers quel API voulez vous vous connecter ?" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:197 -msgid "Aucun bridge disponible. Veuillez contacté un administrateur." -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:507 -msgid "Vous n'avez pas assez de droits sur les elements selectionnes" -msgstr "" - -#: tmp/cache_twig/72/18/6cd1f10af63b9cad709afe772368.php:514 -msgid "Vous n'avez pas assez de droits sur certains elements selectionnes" -msgstr "" - -#: tmp/cache_twig/72/da/40a666a3d2fe512d9b3893ac0fea.php:88 -msgid "report:: 1 - Periode" -msgstr "" - -#: tmp/cache_twig/79/f8/0ba081da1ba0a0dcbb3e67c823aa.php:17 -msgid "Le connecteur API requis n'est pas configure correctement, veuillez contacter un administrateur" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:118 -msgid "Etes vous sur de vouloir supprimer cette metadonnee ? Elle sera definitivement perdue" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:141 -msgid "Attention, deux champs ne peuvent représenter le meme element Dublin Core." -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:143 -msgid "La precedente attribution a ete desactivee" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:219 -msgid "Attention !" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:278 -msgid "boutton::ajouter" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:295 -msgid "Nom" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:307 -msgid "DublinCore Element Set" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:313 -msgid "Multivalue" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:319 -msgid "Indexable" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:325 -msgid "Vocabulary Type" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:331 -msgid "Vocabulary restricted" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:343 -msgid "Lecture seule" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:349 -msgid "Type" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:355 -msgid "Separateur" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:361 -msgid "Branche Thesaurus" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:367 -msgid "Affiche dans report" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:382 -msgid "Afficher en titre" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:487 -msgid "Attention, la source descriptive selectionne n'est pas multivaluee, vous devriez decocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:491 -msgid "Attention, la source descriptive selectionne est multivaluee, vous devriez cocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:586 -msgid "Attention, la source descriptive selectionne n'est pas en lecture seule, vous devriez decocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:590 -msgid "Attention, la source descriptive selectionne est en lecture seule, vous devriez cocher cette case" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:832 -msgid "Tous" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:848 -msgid "Francais" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:856 -msgid "Allemand" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:864 -msgid "Anglais" -msgstr "" - -#: tmp/cache_twig/7e/38/00f8ed117d6893741e4218ff0a39.php:872 -msgid "Arabe" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:18 -msgid "Retour aux commandes" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:26 -msgid "Destinataire" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:38 -msgid "Date de commande" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:48 -msgid "Deadline" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:58 -msgid "Utilisation prevue" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:68 -msgid "Nombre total d'element commandes" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:80 -msgid "Il se peux que vous ne voyez pas tous les elements. Vous ne verrez que les elements correspondants aux collections sur lesquelles vous gerez les commandes" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:87 -msgid "Selectionnez des documents et " -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:126 -msgid "Document refuse par %name%" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:135 -msgid "Forcer l'envoi du document" -msgstr "" - -#: tmp/cache_twig/86/5f/b2d6707e2c88807bdab257351922.php:154 -msgid "Document envoye par %name%" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:141 -msgid "(validation) session terminee" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:147 -msgid "(validation) envoyee" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:153 -msgid "(validation) a envoyer" -msgstr "" - -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:162 -#: tmp/cache_twig/88/03/50a155557e21ad61abb3e76b2c04.php:264 -#, php-format -msgid "%basket_length% documents" -msgstr "" - -#: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:47 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:47 -msgid "Suppression de %n_element% videos" -msgstr "" - -#: tmp/cache_twig/8d/79/76476366a01f6c54cf35fb5cab8c.php:67 -#: tmp/cache_twig/96/e0/fd19d9062415cb8b27561bd53f21.php:67 -msgid "Etes vous sur de supprimer %number% videos ?" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:32 -msgid "Toutes les publications" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:64 -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:72 -msgid "publications:: s'abonner aux publications" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:83 -msgid "Aller a" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:143 -msgid "Aucune entree pour le moment" -msgstr "" - -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:167 -#: tmp/cache_twig/8d/cc/87605d787f752de8d5b6201bfad5.php:180 -msgid "charger d'avantage de publications" -msgstr "" - -#: tmp/cache_twig/8e/aa/703ba8017c1986ea91ecdf368a6a.php:57 -msgid "Erreur !" -msgstr "" - -#: tmp/cache_twig/8e/aa/703ba8017c1986ea91ecdf368a6a.php:61 -msgid "Le panier demande nexiste plus" -msgstr "" - -#: tmp/cache_twig/8e/aa/703ba8017c1986ea91ecdf368a6a.php:69 -msgid "Retour a laccueil" -msgstr "" - -#: tmp/cache_twig/93/de/b653f259f57456b9bbfac02e1b7a.php:67 -msgid "Which playlist you want to put you %number% elements into ?" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:39 -msgid "mauvais login / mot de passe" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:45 -msgid "Bonjour, veuillez vous identifier sur %home_title%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:70 -msgid "Hello %username%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:95 -msgid "%application_name% wants to acces to your data on %home_title%" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:101 -msgid "Do you authorize the app to do its thing ?" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:129 -msgid "oui" -msgstr "" - -#: tmp/cache_twig/98/30/8af814961d8dbdaa5ebef159ef2b.php:153 -msgid "non" -msgstr "" - -#: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:19 -msgid "Apparait aussi dans ces reportages" -msgstr "" - -#: tmp/cache_twig/99/14/b0b63823076bfbcb2c5f51bd90b0.php:67 -msgid "Apparait aussi dans ces paniers" -msgstr "" - -#: tmp/cache_twig/99/32/ffa3967161f314f640bc9e4c1abe.php:151 -msgid "Fichiers envoyes" -msgstr "" - -#: tmp/cache_twig/99/32/ffa3967161f314f640bc9e4c1abe.php:225 -msgid "Terms of service" -msgstr "" - -#: tmp/cache_twig/9b/eb/426c64066e3b1c2cfcccdbdb71f6.php:36 -#: tmp/cache_twig/9b/eb/426c64066e3b1c2cfcccdbdb71f6.php:96 -msgid "report:: activite par jour" -msgstr "" - -#: tmp/cache_twig/9e/88/68131b8442f2df898c593dc2e163.php:54 -msgid "Oups ! something went wrong !" -msgstr "" - -#: tmp/cache_twig/9e/88/68131b8442f2df898c593dc2e163.php:82 -msgid "boutton::retry" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:59 -msgid "Edition" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:83 -msgid "Licone doit etre un fichier jpeg carre, maximum 32px, 200 kO" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:191 -msgid "Liste des personnes habilitees a publier sur ce fil" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:198 -msgid "Id" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:203 -msgid "Email" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:207 -msgid "Owner" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:305 -msgid "Ajouter un publisher" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:309 -msgid "Name or email" -msgstr "" - -#: tmp/cache_twig/9e/be/1977c6e64a7acf4902aff6940cb6.php:434 -msgid "You are not the feed owner" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:36 -msgid "Vous avez recu un nouveau panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:93 -msgid "Vous avez envoye une demande de validation de document sur ce panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:106 -msgid "paniers:: panier recu de %pusher%" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:126 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:297 -msgid "action::exporter" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:137 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:308 -msgid "action::editer" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:153 -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:159 -msgid "action::renommer" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:177 -msgid "action::Valider" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:323 -msgid "action::detacher" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:549 -msgid "delete" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:640 -msgid "panier:: ordre du panier" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:648 -msgid "panier:: ordre Validation ascendante" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:656 -msgid "panier:: ordre Validation descendante" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:699 -msgid "L'utilisateur approuve ce document" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:705 -msgid "L'utilisateur desapprouve ce document" -msgstr "" - -#: tmp/cache_twig/a0/1f/23035961a122daf082c676a2f508.php:711 -msgid "L'utilisateur n'a pas encore donne son avis sur ce document" -msgstr "" - -#: tmp/cache_twig/a2/a7/399b931227e6fbf813a012ab2482.php:48 -msgid "validation:: note" -msgstr "" - -#: tmp/cache_twig/a4/00/d98993c4d1376e42f625680c1d4b.php:37 -msgid "%nb_records% records" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:21 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:21 -msgid "Set selected users to" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:30 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:48 -msgid "HD Download" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:45 -msgid "Push::unpush permet d'envoyer un lot d'image a des destinataires" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:56 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:74 -msgid "Add user" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:61 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:79 -msgid "Send" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:75 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:93 -msgid "Save this list" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:85 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:103 -msgid "List Manager" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:91 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:109 -msgid "Select all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:95 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:113 -msgid "Deselect all" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:130 -msgid "Back to Push" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:146 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:164 -msgid "Welcome to the ListManager !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:155 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:173 -msgid "Start by creating one by using the \"add\" button on the left !" -msgstr "" - -#: tmp/cache_twig/a4/c0/09f2dba82ef9b8342ca3bf692c14.php:164 -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:182 -msgid "Select a list on the left and edit it !" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:30 -msgid "Contributor" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:39 -msgid "See others" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:63 -msgid "Push::une validation est une demande d'appreciation a d'autres personnes" -msgstr "" - -#: tmp/cache_twig/a5/73/a67f96718e9f4458bf56259dc8d9.php:148 -msgid "Back to Feedback" -msgstr "" - -#: tmp/cache_twig/a6/5e/67e9cbdd50463a8dcc5670c1b8f2.php:157 -msgid "report:: Volumetrie des questions posees sur %home_title%" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:83 -msgid "Site web" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:93 -msgid "Type d'application" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:97 -msgid "Application web" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:102 -msgid "Application desktop" -msgstr "" - -#: tmp/cache_twig/a8/6d/9c6e3f473012c6a0df45e74f1a86.php:109 -msgid "URL de callback" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:24 -msgid "phraseanet:: preview" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:30 -msgid "print:: image de choix seulement" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:37 -msgid "print:: image de choix et description" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:44 -msgid "print:: image de choix et description avec planche contact" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:58 -msgid "print:: imagette" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:64 -msgid "print:: liste d'imagettes" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:71 -msgid "print:: planche contact (mosaique)" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:82 -msgid "None of the selected records can be printed " -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:88 -msgid "export:: erreur : aucun document selectionne" -msgstr "" - -#: tmp/cache_twig/aa/c6/3fb5af89a8aa5b7f0ac544042860.php:98 -msgid "boutton::imprimer" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:71 -msgid "Le bridge Youtube ne prend en charge que les videos" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:75 -msgid "Vous ne pouvez uploader des elements sur Youtube qu'un par un" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:110 -msgid "100 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:143 -msgid "2000 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:170 -msgid "Categorie" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:213 -msgid "500 caracteres maximum" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:217 -msgid "separe par un espace" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:289 -msgid "En cliquant sur \"ajouter\" vous certifiez que vous possedez les droits pour le contenu ou que vous etes autorisé par le proprietaire à rendre le contenu accessible au public sur YouTube, et qu'il est autrement conforme aux Conditions d'utilisation de YouTubesitue a %lien_term_youtube%" -msgstr "" - -#: tmp/cache_twig/aa/d4/6f94fb6eb3c2fe609a4d228ab7c7.php:309 -msgid "Retour" -msgstr "" - -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:28 -msgid "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" -msgstr "" - -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:34 -msgid "cocher tout" -msgstr "" - -#: tmp/cache_twig/ab/07/5ccd6fb81ad017c314fb0d7732ed.php:41 -msgid "tout decocher" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:23 -msgid "Tableau de bord" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:76 -msgid "admin::utilisateurs: utilisateurs connectes" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:94 -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:360 -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:431 -msgid "admin::utilisateurs: utilisateurs" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:108 -msgid "admin::utilisateurs: demandes en cours" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:146 -msgid "admin::utilisateurs: gestionnaire de taches" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:165 -msgid "admin::utilisateurs: bases de donnees" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:254 -msgid "admin::structure: reglage de la structure" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:266 -msgid "CHAMPS" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:278 -msgid "SUBDEFS" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:290 -msgid "admin::status: reglage des status" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:301 -msgid "admin:: CGUs" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:313 -msgid "admin::collection: ordre des collections" -msgstr "" - -#: tmp/cache_twig/ac/01/00841d1486d772d1b3f284de6137.php:408 -msgid "admin::base: preferences de collection" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:29 -msgid "reportage" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:35 -msgid "image" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:41 -msgid "document" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:47 -msgid "animation flash" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:53 -msgid "video" -msgstr "" - -#: tmp/cache_twig/af/c0/83a9e80806d1188d95f22a74e1a7.php:59 -msgid "audio" -msgstr "" - -#: tmp/cache_twig/b3/8b/2d8c3df979b2599df392835e8faf.php:47 -#: tmp/cache_twig/b4/5c/2163e6275d10e0bce2e118b5c7c4.php:47 -msgid "Suppression de %n_element% playlists" -msgstr "" - -#: tmp/cache_twig/b3/8b/2d8c3df979b2599df392835e8faf.php:67 -#: tmp/cache_twig/b4/5c/2163e6275d10e0bce2e118b5c7c4.php:67 -msgid "Etes vous sur de supprimer %number% playlists ?" -msgstr "" - -#: tmp/cache_twig/b4/3d/d3d24f0512d00ad0cca2e50ab7ac.php:43 -msgid "%value% like" -msgid_plural "%value% likes" -msgstr[0] "" -msgstr[1] "" - -#: tmp/cache_twig/bd/a8/2c59a65e6a28629b0d4eecf283e3.php:53 -msgid "Edition de 1 element" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:176 -msgid "Aucun statut editable" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:182 -msgid "Les status de certains documents ne sont pas accessible par manque de droits" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:260 -msgid "boutton::remplacer" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:297 -msgid "phraseanet:: presse-papier" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:305 -msgid "prod::editing: rechercher-remplacer" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:309 -msgid "prod::editing: modeles de fiches" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:357 -msgid "prod::editing::replace: remplacer dans le champ" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:363 -msgid "prod::editing::replace: remplacer dans tous les champs" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:388 -msgid "prod::editing:replace: chaine a rechercher" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:395 -msgid "prod::editing:remplace: chaine remplacante" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:402 -msgid "prod::editing:remplace: options de remplacement" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:408 -msgid "prod::editing:remplace::option : utiliser une expression reguliere" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:439 -msgid "Aide sur les expressions regulieres" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:447 -msgid "prod::editing:remplace::option: remplacer toutes les occurences" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:453 -msgid "prod::editing:remplace::option: rester insensible a la casse" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:460 -msgid "prod::editing:remplace::option la valeur du cahmp doit etre exacte" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:466 -msgid "prod::editing:remplace::option la valeur est comprise dans le champ" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:472 -msgid "prod::editing:remplace::option respecter la casse" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:524 -msgid "prod::editing:indexation en cours" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:547 -msgid "prod::editing: valider ou annuler les modifications" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:554 -msgid "edit::preset:: titre" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:563 -msgid "Edition impossible" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:572 -msgid "prod::edit: Impossible d'editer simultanement des documents provenant de bases differentes" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:578 -msgid "prod::editing: aucun documents ne peuvent etre edites car vos droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:614 -msgid "prod::editing: %not_actionable% documents ne peuvent etre edites car vos droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:620 -msgid "prod::editing: 1 document ne peut etre edite car vos droits sont induffisants" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:756 -msgid "edit::Certains champs doivent etre remplis pour valider cet editing" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:793 -msgid "edit: chosiir limage du regroupement" -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:837 -msgid "prod::editing::fields: status " -msgstr "" - -#: tmp/cache_twig/c0/d0/888dd899d0fc0f18fd750774ab0f.php:892 -msgid "Ce champ est decrit comme un element DublinCore" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:58 -msgid "report::Push vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:73 -msgid "report::Demande de validation vers %n_user% utilisateurs depuis lapplication box %appbox%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:79 -msgid "report::Edition des meta-donnees" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:88 -msgid "report::Changement de collection vers : %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:94 -msgid "report::Edition des status" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:103 -msgid "report::Impression des formats : %format%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:112 -msgid "report::Substitution de %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:121 -msgid "report::Publication de %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:130 -msgid "report::Telechargement de %dest%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:142 -msgid "Envoi par mail a %dest% de %content%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:154 -msgid "Envoi par ftp a %dest% de %content%" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:160 -msgid "report::supression du document" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:166 -msgid "report::ajout du documentt" -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:172 -msgid "report::Modification du document -- je ne me souviens plus de quoi..." -msgstr "" - -#: tmp/cache_twig/c1/26/56b58b636b862713d982bc8506ac.php:189 -msgid "report:: par %user_infos%" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:28 -msgid "Application" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:54 -msgid "settings OAuth" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:58 -msgid "Les parametres oauth de votre application." -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:105 -msgid "Votre token d'access" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:109 -msgid "Les paramétres oauth de votre application." -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:117 -msgid "Token" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:133 -msgid "Le token n'a pas encore ete genere" -msgstr "" - -#: tmp/cache_twig/c4/c2/a7e934389fd1846d5c1e45590c0c.php:147 -msgid "boutton::generer" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:92 -msgid "%nb_elements% elements" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:177 -msgid "Imagette indisponible" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:226 -msgid "Aucune description." -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:248 -msgid "dans %category%" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:264 -msgid "Confidentialite : privee" -msgstr "" - -#: tmp/cache_twig/c7/92/116fca2141a5f1ad6f2c29f33b1f.php:270 -msgid "Confidentialite : publique" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:26 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:153 -msgid "Les documents ne peuvent pas etre exportes" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:43 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:80 -msgid "export:: telechargement" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:47 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:204 -msgid "export:: envoi par mail" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:56 -msgid "export:: commande" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:65 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:685 -msgid "export:: FTP" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:139 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:296 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:614 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:780 -msgid "Documents indisponibles" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:218 -msgid "export::mail: destinataire" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:231 -msgid "Recevoir un accuse de reception a %my_email%" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:237 -msgid "Accuse de reception indisponible, vous n'avez pas declare d'adresse email" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:246 -msgid "Entrez plusieurs adresses email en les separant par des points-virgules" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:252 -msgid "export::mail: contenu du mail" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:259 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:743 -msgid "export::mail: fichiers joint" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:310 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:628 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:794 -msgid "La sous resolution n'est pas disponible pour les documents suivants" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:349 -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:834 -msgid "boutton::envoyer" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:371 -msgid "export::commande: bon de commande" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:387 -msgid "commande::utilisation prevue" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:398 -msgid "commande::deadline" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:596 -#, php-format -msgid "%docs_orderable% documents commandes" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:605 -#, php-format -msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:663 -msgid "boutton::commander" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:699 -msgid "phraseanet:: prereglages" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:829 -msgid "boutton::essayer" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:891 -msgid "Certains champs sont obligatoires, veuillez les remplir" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:909 -msgid "Vous devez selectionner un type de sous definitions" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:948 -msgid "You can not directly download more than 120Mo ; time to package all documents is too long" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:952 -msgid "You can alternatively receive an email when the download is ready." -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:956 -msgid "Would you like to receive an e-mail when your download is ready ?" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1119 -msgid "phraseanet:: utiliser SSL" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1171 -msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1191 -msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1209 -msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1227 -msgid "admin::compte-utilisateur:ftp: creer un dossier" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1257 -msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1299 -msgid "Nom des fichiers a l'export" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1312 -msgid "export::titre: titre du documument" -msgstr "" - -#: tmp/cache_twig/ca/6b/bfdc9ede9e32c797756b9d3d1771.php:1326 -msgid "export::titre: nom original du document" -msgstr "" - -#: tmp/cache_twig/cc/4b/81fc228f7c24e521a5ffcdd0fa13.php:47 -msgid "Suppression de %n_element% photosets" -msgstr "" - -#: tmp/cache_twig/cc/4b/81fc228f7c24e521a5ffcdd0fa13.php:67 -msgid "Etes vous sur de supprimer %number% photosets ?" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:36 -msgid "Mes applications" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:55 -msgid "button::supprimer" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:93 -msgid "Aucune application creee." -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:107 -msgid "Demarrer avec l'API Phraseanet" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:112 -msgid "Decouvrez la documentation" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:119 -msgid "Creer une nouvelle applications" -msgstr "" - -#: tmp/cache_twig/cc/d1/c7103efe2b14b97806416e320b75.php:124 -msgid "Creez une application pour commencer a utiliser l'API Phraseanet" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:21 -msgid "action en lot" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:33 -msgid "Pour le GROUPE %key%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:42 -msgid "Derniere version uploadee" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:54 -msgid "%potenlength% enregistrements correspondent cet identifiant unique" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:60 -msgid "Voici enregistrement correspondant a cet identifiant unique" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:109 -msgid "D'autres versions de ce document ont ete prealablement uploadees " -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:114 -msgid "Voir/Cacher" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:124 -msgid "Precedents uploads" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:189 -msgid "Record %recordid% - %title%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:238 -msgid "Aucun document dans la quarantaine actuellement" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:285 -msgid "Document ajoute le %date% par %display_name% sur la collection %basname%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:291 -msgid "Document ajoute le %date% sur la collection %basname%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:314 -msgid "Ajouter ce document a la base %basname%" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:337 -msgid "Substituer" -msgstr "" - -#: tmp/cache_twig/cd/4d/ad420f18e1ba9813d96988cc449c.php:348 -msgid "Document a substituer" -msgstr "" - -#: tmp/cache_twig/ce/cc/be294197e1d460edcd313eca78f2.php:20 -msgid "validation:: votre note" -msgstr "" - -#: tmp/cache_twig/ce/cc/be294197e1d460edcd313eca78f2.php:76 -msgid "boutton::enregistrer" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:36 -msgid "Login" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:54 -msgid "First/Last Name" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:90 -msgid "E-Mail" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:126 -msgid "Last Template" -msgstr "" - -#: tmp/cache_twig/d3/33/d589cd112d18d232c0d7c4edb6d5.php:144 -msgid "Creation date" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:200 -msgid "Create new subdef" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:204 -msgid "Delete the subdef ?" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:210 -msgid "These subdef will be permanently deleted and cannot be recovered. Are you sure?" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:221 -msgid "Subdef name" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:226 -msgid "classe d'acces" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:235 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:363 -msgid "preview" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:239 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:371 -msgid "tout le monde" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:317 -msgid "Telechargeable" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:335 -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:347 -msgid "classe" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:397 -msgid "Baseurl" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:416 -msgid "Write Metas" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:437 -msgid "mediatype" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:618 -msgid "yes" -msgstr "" - -#: tmp/cache_twig/df/4e/a6eeff08e70837a644553d58cd76.php:627 -msgid "no" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:59 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:118 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:187 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:256 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:327 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:408 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:477 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:546 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:615 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:684 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:757 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:830 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:903 -msgid "menu" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:61 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1031 -msgid "Details" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:65 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:978 -msgid "report:: Cumul telechargements & connexions" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:76 -msgid "report::Connexion" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:122 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:191 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:481 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:550 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:982 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:986 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1002 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1010 -msgid "report:: Utilisateurs les plus actifs" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:129 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:198 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:626 -msgid "report:: utilisateurs" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:133 -msgid "report:: telechargements document" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:202 -msgid "report:: telechargements preview" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:260 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:391 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:998 -msgid "report:: documents les plus telecharges" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:332 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1006 -msgid "report:: preview les plus telecharges" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:387 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:419 -msgid "report:: site" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:412 -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:1014 -msgid "report:: site d'ou les photo sont les plus consultees" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:423 -msgid "report:: nombre de vue" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:492 -msgid "report:: poids document" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:561 -msgid "report:: poids preview" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:834 -msgid "report:: activite document ajoute" -msgstr "" - -#: tmp/cache_twig/e1/b2/12ece9b0ee22fa8bac84c8d049ff.php:907 -msgid "report:: activite document edite" -msgstr "" - -#: tmp/cache_twig/e4/c8/d76f9379d97cf4c75bfb7abf6005.php:45 -msgid "Creer un Photoset" -msgstr "" - -#: tmp/cache_twig/e4/c8/d76f9379d97cf4c75bfb7abf6005.php:98 -msgid "Photo principale" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:18 -msgid "prod::Les enregistrements ne provienent pas tous de la meme base et ne peuvent donc etre traites ensemble" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:30 -msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:42 -msgid "erreur : Vous n'avez pas les droits" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:62 -#, php-format -msgid "prod::collection %countable% documents ne pouvant etres mofiies" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:76 -#, php-format -msgid "prod::collection %countable% documents a deplacer" -msgstr "" - -#: tmp/cache_twig/f3/51/f55d9d65f38f24e778764cf30f06.php:117 -msgid "prod::collection deplacer egalement les documents rattaches a ce(s) regroupement(s)" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:18 -msgid "Search baskets" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:23 -msgid "See" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:43 -msgid "My baskets" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:55 -msgid "Received baskets" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:67 -msgid "Validations sent" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:79 -msgid "Validations received" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:86 -msgid "When" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:94 -msgid "Any time" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:106 -msgid "This year" -msgstr "" - -#: tmp/cache_twig/f4/9c/1593aef71f486ed368d85e63253d.php:122 -msgid "Past year" -msgstr "" - -#: tmp/cache_twig/f6/6b/0f79bfdfd04259ceea6613007599.php:77 -msgid "Retour a l'accueil" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:442 -msgid "admin::tasks: nom de la tache" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:456 -msgid "admin::tasks: lancer au demarrage du scheduler" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:467 -msgid "admin::tasks: Nombre de crashes : " -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:475 -msgid "admin::tasks: reinitialiser el compteur de crashes" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:490 -msgid "boutton::vue graphique" -msgstr "" - -#: tmp/cache_twig/f9/c5/f86aada8fe1c0d6632854638906e.php:505 -msgid "boutton::vue xml" -msgstr "" - -#: tmp/cache_twig/fd/d8/674d0e2d4268fc7264053289aede.php:157 -msgid "tags" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:20 -msgid "Back to basket list" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:149 -msgid "No records" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:155 -msgid "1 record" -msgstr "" - -#: tmp/cache_twig/ff/14/6daa45f5cad9ca10b28151554390.php:161 -msgid "%ElementsCount% records" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:26 -msgid "Page %current_page%" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:44 -msgid "Utilisateur" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:50 -msgid "Date de demande" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:65 -msgid "Statut" -msgstr "" - -#: tmp/cache_twig/ff/9e/613cc7c700753d50364241f6f99b.php:102 -msgid "Aucune" -msgstr "" - -#: www/admin/adminFeedback.php:297 -msgid "admin::base: aucun alias" -msgstr "" - -#: www/admin/adminFeedback.php:387 -msgid "admin::base: vider la base avant de la supprimer" -msgstr "" - -#: www/admin/cgus.php:85 -msgid "Terms Of Use" -msgstr "" - -#: www/admin/cgus.php:89 -msgid "Mettre a jour" -msgstr "" - -#: www/admin/cgus.php:89 -msgid "admin::CGU Les utilisateurs doivent imperativement revalider ces conditions" -msgstr "" - -#: www/admin/collection.php:85 -#: www/admin/collection.php:98 -msgid "forms::operation effectuee OK" -msgstr "" - -#: www/admin/collection.php:91 -msgid "admin::base:collection: vider la collection avant de la supprimer" -msgstr "" - -#: www/admin/collection.php:108 -#: www/admin/collection.php:148 -#: www/admin/collection.php:185 -#: www/admin/collection.php:222 -msgid "admin::base:collection le fichier envoye est trop volumineux." -msgstr "" - -#: www/admin/collection.php:112 -#: www/admin/collection.php:152 -#: www/admin/collection.php:189 -#: www/admin/collection.php:226 -msgid "forms::erreur lors de l'envoi du fichier" -msgstr "" - -#: www/admin/collection.php:282 -msgid "admin::base:collection: etes vous sur de vider la collection ?" -msgstr "" - -#: www/admin/collection.php:302 -msgid "admin::base:collection: etes vous sur de demonter cette collection ?" -msgstr "" - -#: www/admin/collection.php:316 -msgid "admin::base:collection: etes vous sur de publier cette collection ?" -msgstr "" - -#: www/admin/collection.php:321 -msgid "admin::base:collection: etes vous sur darreter la publication de cette collection" -msgstr "" - -#: www/admin/collection.php:391 -msgid "phraseanet:: collection" -msgstr "" - -#: www/admin/collection.php:398 -msgid "admin::base:collection: numero de collection distante" -msgstr "" - -#: www/admin/collection.php:402 -msgid "admin::base:collection: etat de la collection" -msgstr "" - -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 -msgid "admin::base:collection: activer la collection" -msgstr "" - -#: www/admin/collection.php:402 -#: www/admin/collection.php:659 -msgid "admin::base:collection: descativer la collection" -msgstr "" - -#: www/admin/collection.php:413 -msgid "phraseanet:: details" -msgstr "" - -#: www/admin/collection.php:423 -msgid "admin::base: masquer les details" -msgstr "" - -#: www/admin/collection.php:439 -msgid "admin::base: objet" -msgstr "" - -#: www/admin/collection.php:443 -msgid "admin::base: nombre" -msgstr "" - -#: www/admin/collection.php:446 -#: www/admin/collection.php:449 -msgid "admin::base: poids" -msgstr "" - -#: www/admin/collection.php:590 -msgid "admin::collection:: Gestionnaires des commandes" -msgstr "" - -#: www/admin/collection.php:605 -msgid "setup:: ajouter un administrateur des commandes" -msgstr "" - -#: www/admin/collection.php:623 -msgid "admin::collection:: presentation des elements lors de la diffusion aux utilisateurs externes (publications)" -msgstr "" - -#: www/admin/collection.php:625 -msgid "admin::colelction::presentation des elements : rien" -msgstr "" - -#: www/admin/collection.php:626 -msgid "admin::colelction::presentation des elements : watermark" -msgstr "" - -#: www/admin/collection.php:627 -msgid "admin::colelction::presentation des elements : stamp" -msgstr "" - -#: www/admin/collection.php:633 -msgid "admin::base:collection: renommer la collection" -msgstr "" - -#: www/admin/collection.php:640 -msgid "admin::base:collection: Nom de la nouvelle collection : " -msgstr "" - -#: www/admin/collection.php:665 -msgid "admin::base:collection: vider la collection" -msgstr "" - -#: www/admin/collection.php:679 -msgid "admin::collection: Confirmez vous la suppression de cette collection ?" -msgstr "" - -#: www/admin/collection.php:692 -msgid "admin::base:collection: minilogo actuel" -msgstr "" - -#: www/admin/collection.php:712 -#: www/admin/collection.php:742 -msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" -msgstr "" - -#: www/admin/collection.php:781 -msgid "admin::base:collection: image de presentation : " -msgstr "" - -#: www/admin/collorder.php:50 -#, php-format -msgid "admin::base: reglage des ordres des collection de la base %s" -msgstr "" - -#: www/admin/collorder.php:181 -msgid "admin::base: mise a jour de l'ordre des collections OK" -msgstr "" - -#: www/admin/collorder.php:202 -msgid "admin::base:collorder: monter" -msgstr "" - -#: www/admin/collorder.php:204 -msgid "admin::base:collorder: descendre" -msgstr "" - -#: www/admin/collorder.php:207 -msgid "admin::base:collorder: reinitialiser en ordre alphabetique" -msgstr "" - -#: www/admin/database.php:130 -msgid "admin::base: Supprimer le logo pour impression" -msgstr "" - -#: www/admin/database.php:146 -msgid "Confirmez-vous la re-indexation de la base ?" -msgstr "" - -#: www/admin/database.php:174 -#: www/admin/database.php:378 -msgid "admin::base: Alias" -msgstr "" - -#: www/admin/database.php:189 -msgid "admin::base: Confirmer le vidage complet de la base" -msgstr "" - -#: www/admin/database.php:259 -msgid "admin::base: Confirmer la suppression de la base" -msgstr "" - -#: www/admin/database.php:286 -msgid "admin::base: Confirmer la suppression de tous les logs" -msgstr "" - -#: www/admin/database.php:312 -msgid "admin::base: Confirmer vous l'arret de la publication de la base" -msgstr "" - -#: www/admin/database.php:394 -msgid "admin::base: nombre d'enregistrements sur la base :" -msgstr "" - -#: www/admin/database.php:405 -msgid "admin::base: nombre de mots uniques sur la base : " -msgstr "" - -#: www/admin/database.php:410 -msgid "admin::base: nombre de mots indexes sur la base" -msgstr "" - -#: www/admin/database.php:417 -msgid "admin::base: nombre de termes de Thesaurus indexes :" -msgstr "" - -#: www/admin/database.php:471 -msgid "admin::base: enregistrements orphelins" -msgstr "" - -#: www/admin/database.php:505 -#: www/admin/database.php:522 -msgid "report:: total" -msgstr "" - -#: www/admin/database.php:547 -msgid "admin::base: document indexes en utilisant la fiche xml" -msgstr "" - -#: www/admin/database.php:557 -msgid "admin::base: document indexes en utilisant le thesaurus" -msgstr "" - -#: www/admin/database.php:573 -msgid "admin::base: Cette base est indexable" -msgstr "" - -#: www/admin/database.php:580 -msgid "base:: re-indexer" -msgstr "" - -#: www/admin/database.php:588 -#: www/admin/newcoll.php:119 -msgid "admin::base:collection: Creer une collection" -msgstr "" - -#: www/admin/database.php:600 -msgid "admin::base:collection: Monter une collection" -msgstr "" - -#: www/admin/database.php:621 -#: www/admin/newcoll.php:149 -msgid "admin::base:collection: Vous pouvez choisir une collection de reference pour donenr des acces " -msgstr "" - -#: www/admin/database.php:635 -msgid "Monter" -msgstr "" - -#: www/admin/database.php:649 -msgid "Activer une collection" -msgstr "" - -#: www/admin/database.php:675 -msgid "admin::base: supprimer tous les logs" -msgstr "" - -#: www/admin/database.php:681 -msgid "admin::base: arreter la publication de la base" -msgstr "" - -#: www/admin/database.php:687 -msgid "admin::base: vider la base" -msgstr "" - -#: www/admin/database.php:693 -msgid "admin::base: supprimer la base" -msgstr "" - -#: www/admin/database.php:703 -msgid "admin::base: logo impression PDF" -msgstr "" - -#: www/admin/database.php:716 -msgid "admin::base:collection: supprimer le logo" -msgstr "" - -#: www/admin/database.php:739 -msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" -msgstr "" - -#: www/admin/databases.php:66 -msgid "Propositions de modifications des tables" -msgstr "" - -#: www/admin/databases.php:75 -msgid "N'oubliez pas de redemarrer le planificateur de taches" -msgstr "" - -#: www/admin/databases.php:82 -msgid "Veuillez arreter le planificateur avant la mise a jour" -msgstr "" - -#: www/admin/databases.php:93 -#: www/admin/databases.php:145 -#: www/admin/databases.php:172 -msgid "Database name can not contains special characters" -msgstr "" - -#: www/admin/databases.php:134 -msgid "Database does not exists or can not be accessed" -msgstr "" - -#: www/admin/databases.php:329 -msgid "admin::base: Version" -msgstr "" - -#: www/admin/databases.php:334 -msgid "update::Votre application necessite une mise a jour vers : " -msgstr "" - -#: www/admin/databases.php:340 -msgid "update::Votre version est a jour : " -msgstr "" - -#: www/admin/databases.php:346 -msgid "update::Verifier els tables" -msgstr "" - -#: www/admin/databases.php:351 -msgid "admin::base: creer une base" -msgstr "" - -#: www/admin/databases.php:355 -msgid "phraseanet:: Creer une base sur un serveur different de l'application box" -msgstr "" - -#: www/admin/databases.php:359 -#: www/admin/databases.php:411 -msgid "phraseanet:: hostname" -msgstr "" - -#: www/admin/databases.php:365 -#: www/admin/databases.php:417 -msgid "phraseanet:: user" -msgstr "" - -#: www/admin/databases.php:368 -#: www/admin/databases.php:420 -msgid "phraseanet:: password" -msgstr "" - -#: www/admin/databases.php:372 -#: www/admin/databases.php:424 -msgid "phraseanet:: dbname" -msgstr "" - -#: www/admin/databases.php:375 -msgid "phraseanet:: Modele de donnees" -msgstr "" - -#: www/admin/databases.php:397 -msgid "boutton::creer" -msgstr "" - -#: www/admin/databases.php:403 -msgid "admin::base: Monter une base" -msgstr "" - -#: www/admin/databases.php:407 -msgid "phraseanet:: Monter une base provenant d'un serveur different de l'application box" -msgstr "" - -#: www/admin/databases.php:428 -msgid "boutton::monter" -msgstr "" - -#: www/admin/demand.php:366 -msgid "admin:: demandes en cours" -msgstr "" - -#: www/admin/demand.php:371 -#: www/admin/demand.php:498 -msgid "admin:: refuser l'acces" -msgstr "" - -#: www/admin/demand.php:372 -#: www/admin/demand.php:501 -msgid "admin:: donner les droits de telechargement et consultation de previews" -msgstr "" - -#: www/admin/demand.php:373 -#: www/admin/demand.php:504 -msgid "admin:: donner les droits de telechargements de preview et hd" -msgstr "" - -#: www/admin/demand.php:374 -#: www/admin/demand.php:507 -msgid "admin:: watermarquer les documents" -msgstr "" - -#: www/admin/demand.php:377 -msgid "admin::compte-utilisateur date d'inscription" -msgstr "" - -#: www/admin/demand.php:378 -msgid "admin::collection" -msgstr "" - -#: www/admin/demand.php:480 -msgid "admin:: appliquer le modele " -msgstr "" - -#: www/admin/newcoll.php:42 -msgid "admin:: La collection n'a pas ete creee : vous devez donner un nom a votre collection" -msgstr "" - -#: www/admin/sessionwhois.php:58 -msgid "admin::monitor: utilisateur" -msgstr "" - -#: www/admin/sessionwhois.php:59 -msgid "admin::monitor: modules" -msgstr "" - -#: www/admin/sessionwhois.php:61 -msgid "admin::monitor: date de connexion" -msgstr "" - -#: www/admin/sessionwhois.php:62 -msgid "admin::monitor: dernier access" -msgstr "" - -#: www/admin/sessionwhois.php:101 -msgid "admin::monitor: bases sur lesquelles l'utilisateur est connecte : " -msgstr "" - -#: www/admin/sessionwhois.php:116 -msgid "Session persistente" -msgstr "" - -#: www/admin/sessionwhois.php:134 -msgid "admin::monitor: module inconnu" -msgstr "" - -#: www/admin/sessionwhois.php:243 -msgid "admin::monitor: total des utilisateurs uniques : " -msgstr "" - -#: www/admin/sitestruct.php:183 -msgid "admin::Le serveur memcached a ete flushe" -msgstr "" - -#: www/admin/sitestruct.php:189 -msgid "setup:: administrateurs de l'application" -msgstr "" - -#: www/admin/sitestruct.php:201 -msgid "setup:: ajouter un administrateur de l'application" -msgstr "" - -#: www/admin/sitestruct.php:207 -msgid "setup:: Reinitialisation des droits admins" -msgstr "" - -#: www/admin/sitestruct.php:211 -msgid "boutton::reinitialiser" -msgstr "" - -#: www/admin/sitestruct.php:214 -msgid "setup:: Reglages generaux" -msgstr "" - -#: www/admin/sitestruct.php:216 -msgid "setup::Votre configuration" -msgstr "" - -#: www/admin/sitestruct.php:244 -msgid "setup::Filesystem configuration" -msgstr "" - -#: www/admin/sitestruct.php:258 -msgid "setup::Executables" -msgstr "" - -#: www/admin/sitestruct.php:272 -msgid "setup::PHP extensions" -msgstr "" - -#: www/admin/sitestruct.php:285 -msgid "setup::Serveur de cache" -msgstr "" - -#: www/admin/sitestruct.php:304 -msgid "Phrasea Module" -msgstr "" - -#: www/admin/statbits.php:110 -#: www/admin/statbits.php:147 -msgid "You do not enough rights to update status" -msgstr "" - -#: www/admin/statbits.php:114 -#: www/admin/statbits.php:151 -msgid "Something wrong happend" -msgstr "" - -#: www/admin/statbits.php:118 -#: www/admin/statbits.php:155 -msgid "File is too big : 64k max" -msgstr "" - -#: www/admin/statbits.php:122 -#: www/admin/statbits.php:159 -msgid "Status icon upload failed : upload error" -msgstr "" - -#: www/admin/statbits.php:126 -#: www/admin/statbits.php:163 -msgid "Status icon upload failed : can not write on disk" -msgstr "" - -#: www/admin/statbits.php:184 -#: www/admin/statbits.php:247 -msgid "phraseanet::status bit" -msgstr "" - -#: www/admin/statbits.php:190 -msgid "admin::status: nom du status : " -msgstr "" - -#: www/admin/statbits.php:193 -msgid "admin::status: case A" -msgstr "" - -#: www/admin/statbits.php:194 -msgid "admin::status: case B" -msgstr "" - -#: www/admin/statbits.php:197 -msgid "admin::status: parametres si decoche" -msgstr "" - -#: www/admin/statbits.php:198 -msgid "admin::status: parametres si coche" -msgstr "" - -#: www/admin/statbits.php:201 -#: www/admin/statbits.php:202 -msgid "admin::status: texte a afficher" -msgstr "" - -#: www/admin/statbits.php:205 -#: www/admin/statbits.php:206 -msgid "admin::status: symboliser par" -msgstr "" - -#: www/admin/statbits.php:205 -#: www/admin/statbits.php:206 -msgid "admin::status: aucun symlboler" -msgstr "" - -#: www/admin/statbits.php:213 -#: www/admin/statbits.php:214 -msgid "admin::status:: aucun symbole" -msgstr "" - -#: www/admin/statbits.php:217 -msgid "status:: Afficher le status dans les feuilles de reponses pour tous les utilisateurs" -msgstr "" - -#: www/admin/statbits.php:220 -msgid "status:: retrouver sous forme de filtre dans la recherche" -msgstr "" - -#: www/admin/statbits.php:257 -msgid "status:: numero de bit" -msgstr "" - -#: www/admin/statbits.php:259 -msgid "status:: nom" -msgstr "" - -#: www/admin/statbits.php:260 -msgid "status:: icone A" -msgstr "" - -#: www/admin/statbits.php:261 -msgid "status:: icone B" -msgstr "" - -#: www/admin/statbits.php:262 -msgid "status:: cherchable par tous" -msgstr "" - -#: www/admin/statbits.php:263 -msgid "status:: Affichable pour tous" -msgstr "" - -#: www/admin/statbits.php:290 -msgid "admin::status: confirmer la suppression du status ?" -msgstr "" - -#: www/admin/structure.php:76 -msgid "admin::base: structure" -msgstr "" - -#: www/admin/structure.php:91 -msgid "admin::base: xml invalide, les changements ne seront pas appliques" -msgstr "" - -#: www/admin/sugval.php:934 -msgid "" -"admin::sugval: Attention, passer en mode graphique implique la perte des modifications du xml si vous n'appliquez pas les changements avant.\\n" -"Continuer quand meme ?" -msgstr "" - -#: www/admin/sugval.php:966 -msgid "Suggested values" -msgstr "" - -#: www/admin/sugval.php:983 -msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" -msgstr "" - -#: www/admin/sugval.php:1008 -msgid "admin::sugval: champs" -msgstr "" - -#: www/admin/task2utils.php:118 -#: www/admin/task2utils.php:162 -msgid "admin::tasks: xml invalide, restaurer la version precedente ?" -msgstr "" - -#: www/admin/taskmanager.php:259 -#: www/admin/taskmanager.php:593 -msgid "admin::tasks: supprimer la tache ?" -msgstr "" - -#: www/admin/taskmanager.php:278 -msgid "Fermer" -msgstr "" - -#: www/admin/taskmanager.php:279 -msgid "Renouveller" -msgstr "" - -#: www/admin/taskmanager.php:470 -msgid "admin::tasks: planificateur de taches" -msgstr "" - -#: www/admin/taskmanager.php:478 -#, php-format -msgid "Last update at %s." -msgstr "" - -#: www/admin/taskmanager.php:479 -msgid "admin::tasks: Nouvelle tache" -msgstr "" - -#: www/admin/taskmanager.php:486 -msgid "admin::tasks: statut de la tache" -msgstr "" - -#: www/admin/taskmanager.php:487 -msgid "admin::tasks: process_id de la tache" -msgstr "" - -#: www/admin/taskmanager.php:488 -msgid "admin::tasks: etat de progression de la tache" -msgstr "" - -#: www/admin/taskmanager.php:751 -msgid "Preferences du TaskManager" -msgstr "" - -#: www/admin/taskmanager.php:753 -msgid "Cette URL vous permet de controler le sheduler depuis un manager comme cron" -msgstr "" - -#: www/client/answer.php:186 -msgid "client::answers: rapport de questions par bases" -msgstr "" - -#: www/client/answer.php:191 -#, php-format -msgid "client::answers: %d reponses" -msgstr "" - -#: www/client/answer.php:488 -msgid "reponses:: Votre recherche ne retourne aucun resultat" -msgstr "" - -#: www/client/baskets.php:130 -msgid "paniers::categories: mes paniers" -msgstr "" - -#: www/client/baskets.php:136 -msgid "paniers::categories: paniers recus" -msgstr "" - -#: www/client/baskets.php:153 -#, php-format -msgid "paniers:: %d documents dans le panier" -msgstr "" - -#: www/client/baskets.php:158 -#, php-format -msgid "paniers:: paniers:: %d documents dans le panier" -msgstr "" - -#: www/client/baskets.php:179 -msgid "action : ouvrir dans le comparateur" -msgstr "" - -#: www/client/baskets.php:188 -#, php-format -msgid "paniers:: panier emis par %s" -msgstr "" - -#: www/client/baskets.php:266 -msgid "paniers:: vous avez de nouveaux paniers non consultes" -msgstr "" - -#: www/client/homeinterpubbask.php:32 -msgid "phraseanet::technique::datetime" -msgstr "" - -#: www/client/homeinterpubbask.php:33 -msgid "phraseanet::technique::date" -msgstr "" - -#: www/client/homeinterpubbask.php:80 -msgid "publications:: dernieres publications" -msgstr "" - -#: www/client/homeinterpubbask.php:119 -msgid "publications:: publication non lue" -msgstr "" - -#: www/client/homeinterpubbask.php:140 -msgid "publications:: derniere mise a jour" -msgstr "" - -#: www/client/index.php:152 -msgid "client:: recherche" -msgstr "" - -#: www/client/index.php:159 -msgid "client:: recherche avancee" -msgstr "" - -#: www/client/index.php:166 -msgid "client:: topics" -msgstr "" - -#: www/client/index.php:188 -#: www/client/index.php:196 -msgid "phraseanet::technique:: et" -msgstr "" - -#: www/client/index.php:189 -#: www/client/index.php:197 -msgid "phraseanet::technique:: or" -msgstr "" - -#: www/client/index.php:190 -#: www/client/index.php:198 -msgid "phraseanet::technique:: except" -msgstr "" - -#: www/client/index.php:210 -msgid "client::recherche: rechercher dans les bases :" -msgstr "" - -#: www/client/index.php:263 -msgid "client::recherche: rechercher dans toutes les bases" -msgstr "" - -#: www/client/index.php:272 -msgid "phraseanet:: presentation des resultats" -msgstr "" - -#: www/client/index.php:328 -msgid "phraseanet:: collections" -msgstr "" - -#: www/client/index.php:328 -msgid "client::recherche: cliquez ici pour desactiver tous les filtres de toutes base" -msgstr "" - -#: www/client/index.php:342 -msgid "phraseanet:: historique" -msgstr "" - -#: www/client/index.php:374 -msgid "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" -msgstr "" - -#: www/client/index.php:465 -msgid "client::recherche: filter sur" -msgstr "" - -#: www/client/index.php:468 -msgid "client::recherche: filtrer par dates" -msgstr "" - -#: www/client/index.php:470 -msgid "client::recherche: filtrer par status" -msgstr "" - -#: www/client/index.php:472 -msgid "client::recherche: filtrer par champs" -msgstr "" - -#: www/client/index.php:472 -msgid "client::recherche: filtrer par champs : tous les champs" -msgstr "" - -#: www/include/download_anonymous.php:71 -#: www/include/download_anonymous.php:114 -#: www/include/download_prepare.php:106 -#: www/include/download_prepare.php:149 -msgid "phraseanet:: Telechargement de documents" -msgstr "" - -#: www/include/download_anonymous.php:119 -#: www/include/download_prepare.php:151 -msgid "telechargement::Veuillez patienter, vos fichiers sont en train d'etre rassembles pour le telechargement, cette operation peut prendre quelques minutes." -msgstr "" - -#: www/include/download_anonymous.php:126 -#: www/include/download_prepare.php:156 -#, php-format -msgid "telechargement::Vos documents sont prets. Si le telechargement ne demarre pas, %s cliquez ici %s" -msgstr "" - -#: www/include/download_anonymous.php:131 -#: www/include/download_prepare.php:159 -msgid "telechargement::Le fichier contient les elements suivants" -msgstr "" - -#: www/include/download_anonymous.php:135 -#: www/include/download_prepare.php:163 -msgid "phrseanet:: base" -msgstr "" - -#: www/include/download_anonymous.php:136 -#: www/include/download_prepare.php:164 -msgid "document:: nom" -msgstr "" - -#: www/include/download_anonymous.php:137 -#: www/include/download_prepare.php:165 -msgid "phrseanet:: sous definition" -msgstr "" - -#: www/include/download_anonymous.php:138 -#: www/include/download_prepare.php:166 -msgid "poids" -msgstr "" - -#: www/include/download_anonymous.php:172 -msgid "Votre lien est corrompu" -msgstr "" - -#: www/include/error.php:29 -msgid "error:204::Le contenu que vous demandez n'existe pas ou a expire" -msgstr "" - -#: www/include/error.php:33 -msgid "error:400::La requete que vous faites ne peut etre traitee car les parametres necessaire a son traitement, sont mauvais ou manquants." -msgstr "" - -#: www/include/error.php:37 -msgid "error:403::Vous avez demande une page a laquelle vous n'avez pas acces." -msgstr "" - -#: www/include/error.php:38 -msgid "error:403::Soit vous n'avez pas les droits, soit vous avez ete deconnecte." -msgstr "" - -#: www/include/error.php:42 -msgid "error:404::Vous avez demande une page qui n'existe pas ou plus" -msgstr "" - -#: www/include/error.php:46 -msgid "error:500::Erreur interne du serveur" -msgstr "" - -#: www/include/error.php:47 -msgid "error:500::Une erreur interne est survenue. Ceci se produit lorsque la connetion a la base de donnee a ete interrompue ou lorsqu'un module rencontre un probleme." -msgstr "" - -#: www/include/error.php:48 -msgid "error:500::Si ce probleme persiste, contactez l'administrateur du serveur" -msgstr "" - -#: www/include/sendmailpage.php:101 -#, php-format -msgid "export::mail: erreur lors de l'envoi aux adresses emails %s" -msgstr "" - -#: www/include/updses.php:92 -msgid "The application is going down for maintenance, please logout." -msgstr "" - -#: www/login/account.php:181 -msgid "etes vous sur de vouloir supprimer cette application" -msgstr "" - -#: www/login/account.php:188 -msgid "Erreur lors du chargement" -msgstr "" - -#: www/login/account.php:412 -msgid "Informations" -msgstr "" - -#: www/login/account.php:413 -msgid "Acces" -msgstr "" - -#: www/login/account.php:414 -msgid "Sessions" -msgstr "" - -#: www/login/account.php:416 -msgid "Developpeur" -msgstr "" - -#: www/login/account.php:431 -#: www/login/index.php:110 -msgid "login::notification: Mise a jour du mot de passe avec succes" -msgstr "" - -#: www/login/account.php:434 -msgid "login::notification: Changements enregistres" -msgstr "" - -#: www/login/account.php:437 -msgid "forms::erreurs lors de l'enregistrement des modifications" -msgstr "" - -#: www/login/account.php:440 -msgid "login::notification: Vos demandes ont ete prises en compte" -msgstr "" - -#: www/login/account.php:455 -#: www/login/forgotpwd.php:98 -msgid "admin::compte-utilisateur changer mon mot de passe" -msgstr "" - -#: www/login/account.php:497 -msgid "login:: Changer mon adresse email" -msgstr "" - -#: www/login/account.php:603 -msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" -msgstr "" - -#: www/login/account.php:644 -msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" -msgstr "" - -#: www/login/account.php:665 -msgid "admin::compte-utilisateur:ftp: Donnees envoyees automatiquement par ftp" -msgstr "" - -#: www/login/account.php:667 -msgid "phraseanet:: original" -msgstr "" - -#: www/login/account.php:669 -msgid "phraseanet:: imagette" -msgstr "" - -#: www/login/forgotpwd.php:71 -msgid "forms::la valeur donnee contient des caracteres invalides" -msgstr "" - -#: www/login/forgotpwd.php:175 -msgid "Pour ameliorer la securite de l'application, vous devez mettre a jour votre mot de passe." -msgstr "" - -#: www/login/forgotpwd.php:176 -msgid "Cette tache ne pouvant etre automatisee, merci de bien vouloir la realiser." -msgstr "" - -#: www/login/forgotpwd.php:184 -msgid "admin::compte-utilisateur nouveau mot de passe" -msgstr "" - -#: www/login/forgotpwd.php:204 -msgid "admin::compte-utilisateur confirmer le mot de passe" -msgstr "" - -#: www/login/forgotpwd.php:223 -#: www/login/forgotpwd.php:285 -msgid "login:: Retour a l'accueil" -msgstr "" - -#: www/login/forgotpwd.php:250 -#: www/login/forgotpwd.php:256 -msgid "phraseanet::erreur: Echec du serveur mail" -msgstr "" - -#: www/login/forgotpwd.php:253 -msgid "phraseanet::erreur: Le compte n'a pas ete trouve" -msgstr "" - -#: www/login/forgotpwd.php:259 -msgid "phraseanet::erreur: l'url n'est plus valide" -msgstr "" - -#: www/login/forgotpwd.php:268 -msgid "phraseanet:: Un email vient de vous etre envoye" -msgstr "" - -#: www/login/forgotpwd.php:278 -msgid "login:: Entrez votre adresse email" -msgstr "" - -#: www/login/index.php:68 -msgid "login::erreur: Erreur d'authentification" -msgstr "" - -#: www/login/index.php:71 -msgid "login::erreur: Erreur de captcha" -msgstr "" - -#: www/login/index.php:74 -msgid "login::erreur: Vous n'avez pas confirme votre email" -msgstr "" - -#: www/login/index.php:76 -msgid "login:: Envoyer a nouveau le mail de confirmation" -msgstr "" - -#: www/login/index.php:79 -msgid "login::erreur: Aucune base n'est actuellment accessible" -msgstr "" - -#: www/login/index.php:82 -msgid "login::erreur: No available connection - Please contact sys-admin" -msgstr "" - -#: www/login/index.php:85 -msgid "login::erreur: maintenance en cours, merci de nous excuser pour la gene occasionee" -msgstr "" - -#: www/login/index.php:97 -msgid "login::notification: cette email est deja confirmee" -msgstr "" - -#: www/login/index.php:100 -msgid "login::notification: demande de confirmation par mail envoyee" -msgstr "" - -#: www/login/index.php:103 -#: www/login/index.php:106 -msgid "login::notification: votre email est desormais confirme" -msgstr "" - -#: www/login/index.php:123 -msgid "login::captcha: obtenir une autre captcha" -msgstr "" - -#: www/login/index.php:126 -msgid "login::captcha: recopier les mots ci dessous" -msgstr "" - -#: www/login/index.php:139 -msgid "Accueil" -msgstr "" - -#: www/login/register.php:107 -#: www/login/register.php:284 -#: www/login/reset-email.php:145 -#: www/login/reset-email.php:185 -msgid "forms::l'email semble invalide" -msgstr "" - -#: www/login/register.php:124 -msgid "forms::un utilisateur utilisant cette adresse email existe deja" -msgstr "" - -#: www/login/register.php:129 -msgid "forms::un utilisateur utilisant ce login existe deja" -msgstr "" - -#: www/login/register.php:286 -msgid "login invalide (8 caracteres sans accents ni espaces)" -msgstr "" - -#: www/login/register.php:298 -#: www/login/reset-password.php:90 -msgid "forms::le mot de passe est simple" -msgstr "" - -#: www/login/register.php:375 -#: www/login/register.php:392 -#: www/login/reset-password.php:170 -msgid "8 caracteres minimum" -msgstr "" - -#: www/login/register.php:400 -msgid "Resistance du mot de passe" -msgstr "" - -#: www/login/register.php:426 -msgid "admin::compte-utilisateur A propos de la securite des mots de passe" -msgstr "" - -#: www/login/reset-email.php:62 -msgid "admin::compte-utilisateur: L'email a correctement ete mis a jour" -msgstr "" - -#: www/login/reset-email.php:63 -msgid "accueil:: retour a l'accueil" -msgstr "" - -#: www/login/reset-email.php:96 -msgid "admin::compte-utilisateur: erreur lors de la mise a jour" -msgstr "" - -#: www/login/reset-email.php:142 -msgid "phraseanet::erreur: echec du serveur de mail" -msgstr "" - -#: www/login/reset-email.php:148 -#: www/login/reset-email.php:189 -msgid "forms::les emails ne correspondent pas" -msgstr "" - -#: www/login/reset-email.php:152 -#: www/login/reset-password.php:66 -msgid "admin::compte-utilisateur:ftp: Le mot de passe est errone" -msgstr "" - -#: www/login/reset-email.php:217 -msgid "admin::compte-utilisateur un email de confirmation vient de vous etre envoye. Veuillez suivre les instructions contenue pour continuer" -msgstr "" - -#: www/login/reset-email.php:221 -msgid "admin::compte-utilisateur retour a mon compte" -msgstr "" - -#: www/login/reset-email.php:230 -#: www/login/reset-password.php:148 -msgid "phraseanet::erreur : oups ! une erreur est survenue pendant l'operation !" -msgstr "" - -#: www/login/reset-email.php:251 -msgid "admin::compte-utilisateur nouvelle adresse email" -msgstr "" - -#: www/login/reset-email.php:256 -msgid "admin::compte-utilisateur confirmer la nouvelle adresse email" -msgstr "" - -#: www/login/reset-email.php:265 -msgid "admin::compte-utilisateur: Pourquoi me demande-t-on mon mot de passe pour changer mon adresse email ?" -msgstr "" - -#: www/login/reset-email.php:266 -msgid "admin::compte-utilisateur: Votre adresse e-mail sera utilisee lors de la perte de votre mot de passe afin de pouvoir le reinitialiser, il est important que vous soyez la seule personne a pouvoir la changer." -msgstr "" - -#: www/login/reset-password.php:160 -msgid "admin::compte-utilisateur ancien mot de passe" -msgstr "" - -#: www/prod/answer.php:183 -#, php-format -msgid "reponses:: %d Resultats rappatries sur un total de %d trouves" -msgstr "" - -#: www/prod/answer.php:187 -#, php-format -msgid "reponses:: %d Resultats" -msgstr "" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %d reponses" -msgstr "" - -#: www/prod/answer.php:196 -#, php-format -msgid "reponses:: %s documents selectionnes" -msgstr "" - -#: www/prod/chghddocument.php:42 -msgid "prod::substitution::erreur : document de substitution invalide" -msgstr "" - -#: www/prod/chghddocument.php:64 -#: www/prod/chgthumb.php:47 -msgid "prod::substitution::document remplace avec succes" -msgstr "" - -#: www/prod/chgstatus.php:130 -#, php-format -msgid "prod::proprietes : %d documents modifies" -msgstr "" - -#: www/prod/chgthumb.php:42 -msgid "prod::substitution::erreur : impossible d'ajouter ce document" -msgstr "" - -#: www/prod/docfunction.php:327 -msgid "prod::proprietes:: status" -msgstr "" - -#: www/prod/docfunction.php:328 -msgid "prod::proprietes:: type" -msgstr "" - -#: www/prod/docfunction.php:356 -#, php-format -msgid "prod::status: edition de status de %d regroupements" -msgstr "" - -#: www/prod/docfunction.php:358 -#, php-format -msgid "prod::status: edition de status de %d documents" -msgstr "" - -#: www/prod/docfunction.php:405 -msgid "prod::status: remettre a zero les status non nommes" -msgstr "" - -#: www/prod/docfunction.php:405 -msgid "prod::status: remetter a zero tous les status" -msgstr "" - -#: www/prod/docfunction.php:408 -msgid "prod::status: aucun status n'est defini sur cette base" -msgstr "" - -#: www/prod/docfunction.php:424 -msgid "prod::status: changer egalement le status des document rattaches aux regroupements" -msgstr "" - -#: www/prod/docfunction.php:454 -#, php-format -msgid "prod::status: %d documents ne peuvent avoir une edition des status" -msgstr "" - -#: www/prod/docfunction.php:461 -msgid "prod::status:Vous n'avez pas les droits suffisants pour changer le status des documents selectionnes" -msgstr "" - -#: www/prod/docfunction.php:496 -msgid "prod::type: appliquer a tous les documents selectionnes" -msgstr "" - -#: www/prod/imgfunction.php:137 -msgid "prod::tools: regeneration de sous definitions" -msgstr "" - -#: www/prod/imgfunction.php:138 -msgid "prod::tools: outils image" -msgstr "" - -#: www/prod/imgfunction.php:143 -msgid "prod::tools: substitution HD" -msgstr "" - -#: www/prod/imgfunction.php:148 -msgid "prod::tools: substitution de sous definition" -msgstr "" - -#: www/prod/imgfunction.php:153 -msgid "prod::tools: meta-datas" -msgstr "" - -#: www/prod/imgfunction.php:163 -msgid "prod::tools:regeneration: Attention, certain documents ont des sous-definitions substituees." -msgstr "" - -#: www/prod/imgfunction.php:164 -msgid "prod::tools:regeneration: Forcer la reconstruction sur les enregistrements ayant des thumbnails substituees." -msgstr "" - -#: www/prod/imgfunction.php:174 -msgid "prod::tools:regeneration: Reconstruire les sous definitions" -msgstr "" - -#: www/prod/imgfunction.php:177 -msgid "prod::tools: option : recreer aucune les sous-definitions" -msgstr "" - -#: www/prod/imgfunction.php:178 -msgid "prod::tools: option : recreer toutes les sous-definitions" -msgstr "" - -#: www/prod/imgfunction.php:192 -msgid "prod::tools::image: Cette action n'a d'effet que sur les images :" -msgstr "" - -#: www/prod/imgfunction.php:193 -msgid "prod::tools::image: rotation 90 degres horaire" -msgstr "" - -#: www/prod/imgfunction.php:195 -msgid "prod::tools::image rotation 90 degres anti-horaires" -msgstr "" - -#: www/prod/imgfunction.php:219 -msgid "prod::tools:substitution : mettre a jour le nom original de fichier apres substitution" -msgstr "" - -#: www/prod/prodFeedBack.php:271 -msgid "les enregistrements ont ete correctement commandes" -msgstr "" - -#: www/prod/prodFeedBack.php:275 -msgid "Erreur lors de la commande des enregistrements" -msgstr "" - -#: www/prod/prodFeedBack.php:306 -msgid "Les documents ne peuvent etre envoyes par FTP" -msgstr "" - -#: www/prod/prodFeedBack.php:315 -msgid "Export enregistre dans la file dattente" -msgstr "" - -#: www/prod/prodFeedBack.php:340 -msgid "Connection au FTP avec succes" -msgstr "" - -#: www/prod/prodFeedBack.php:344 -#, php-format -msgid "Erreur lors de la connection au FTP : %s" -msgstr "" - -#: www/prod/share.php:131 -msgid "Aucune URL disponible" -msgstr "" - -#: www/prod/share.php:146 -msgid "Aucun code disponible" -msgstr "" - -#: www/report/ajax_table_content.php:62 -#: www/report/ajax_table_content.php:638 -#: www/report/tab.php:63 -#: www/report/tab.php:845 -msgid "report:: titre" -msgstr "" - -#: www/report/ajax_table_content.php:63 -#: www/report/ajax_table_content.php:639 -#: www/report/tab.php:64 -#: www/report/tab.php:846 -msgid "report:: poids" -msgstr "" - -#: www/report/ajax_table_content.php:66 -#: www/report/ajax_table_content.php:689 -#: www/report/tab.php:67 -#: www/report/tab.php:909 -msgid "report:: identifiant" -msgstr "" - -#: www/report/ajax_table_content.php:67 -#: www/report/ajax_table_content.php:690 -#: www/report/tab.php:68 -#: www/report/tab.php:910 -msgid "report:: nom" -msgstr "" - -#: www/report/ajax_table_content.php:68 -#: www/report/ajax_table_content.php:691 -#: www/report/tab.php:69 -#: www/report/tab.php:911 -msgid "report:: email" -msgstr "" - -#: www/report/ajax_table_content.php:69 -#: www/report/ajax_table_content.php:692 -#: www/report/tab.php:70 -#: www/report/tab.php:912 -msgid "report:: adresse" -msgstr "" - -#: www/report/ajax_table_content.php:70 -#: www/report/ajax_table_content.php:693 -#: www/report/tab.php:71 -#: www/report/tab.php:913 -msgid "report:: telephone" -msgstr "" - -#: www/report/ajax_table_content.php:74 -#: www/report/ajax_table_content.php:367 -#: www/report/tab.php:437 -msgid "report:: IP" -msgstr "" - -#: www/report/ajax_table_content.php:302 -#: www/report/tab.php:351 -msgid "configuration" -msgstr "" - -#: www/report/ajax_table_content.php:329 -#: www/report/tab.php:379 -#, php-format -msgid "filtrer les resultats sur la colonne %s" -msgstr "" - -#: www/report/ajax_table_content.php:365 -#: www/report/ajax_table_content.php:475 -#: www/report/tab.php:435 -msgid "phraseanet::utilisateurs" -msgstr "" - -#: www/report/ajax_table_content.php:440 -#: www/report/tab.php:559 -msgid "report:: plateforme" -msgstr "" - -#: www/report/ajax_table_content.php:448 -#: www/report/tab.php:567 -msgid "report:: module" -msgstr "" - -#: www/report/ajax_table_content.php:489 -#: www/report/ajax_table_content.php:507 -#: www/report/tab.php:632 -#: www/report/tab.php:664 -msgid "report:: nombre de reponses" -msgstr "" - -#: www/report/ajax_table_content.php:531 -#: www/report/tab.php:715 -msgid "report:: total des telechargements" -msgstr "" - -#: www/report/ajax_table_content.php:532 -#: www/report/tab.php:716 -msgid "report:: preview" -msgstr "" - -#: www/report/ajax_table_content.php:533 -#: www/report/tab.php:717 -msgid "report:: document original" -msgstr "" - -#: www/report/ajax_table_content.php:548 -#: www/report/tab.php:745 -msgid "report:: nombre de documents" -msgstr "" - -#: www/report/ajax_table_content.php:549 -#: www/report/tab.php:746 -msgid "report:: poids des documents" -msgstr "" - -#: www/report/ajax_table_content.php:550 -#: www/report/tab.php:747 -msgid "report:: nombre de preview" -msgstr "" - -#: www/report/ajax_table_content.php:551 -#: www/report/tab.php:748 -msgid "report:: poids des previews" -msgstr "" - -#: www/report/ajax_table_content.php:589 -#: www/report/tab.php:796 -msgid "report:: historique des connexions" -msgstr "" - -#: www/report/ajax_table_content.php:596 -#: www/report/ajax_table_content.php:681 -#: www/report/tab.php:803 -#: www/report/tab.php:892 -msgid "report:: historique des telechargements" -msgstr "" - -#: www/report/ajax_table_content.php:602 -#: www/report/tab.php:809 -msgid "report:: historique des questions" -msgstr "" - -#: www/report/ajax_table_content.php:712 -#: www/report/tab.php:941 -msgid "report::version " -msgstr "" - -#: www/report/tab.php:439 -msgid "report::fonction" -msgstr "" - -#: www/report/tab.php:440 -msgid "report::activite" -msgstr "" - -#: www/report/tab.php:441 -msgid "report::pays" -msgstr "" - -#: www/report/tab.php:442 -msgid "report::societe" -msgstr "" - -#: www/thesaurus2/accept.php:46 -msgid "thesaurus:: accepter..." -msgstr "" - -#: www/thesaurus2/accept.php:165 -msgid "thesaurus:: removed_src" -msgstr "" - -#: www/thesaurus2/accept.php:168 -#: www/thesaurus2/accept.php:226 -msgid "thesaurus:: refresh" -msgstr "" - -#: www/thesaurus2/accept.php:223 -msgid "thesaurus:: removed tgt" -msgstr "" - -#: www/thesaurus2/accept.php:259 -msgid "thesaurus:: Accepter le terme comme" -msgstr "" - -#: www/thesaurus2/accept.php:261 -#: www/thesaurus2/accept.php:271 -msgid "thesaurus:: comme terme specifique" -msgstr "" - -#: www/thesaurus2/accept.php:265 -#, php-format -msgid "thesaurus:: comme synonyme de %s" -msgstr "" - -#: www/thesaurus2/accept.php:270 -msgid "thesaurus:: Accepter la branche comme" -msgstr "" - -#: www/thesaurus2/accept.php:294 -#, php-format -msgid "thesaurus:: A cet emplacement du thesaurus , un candidat du champ %s ne peut etre accepte" -msgstr "" - -#: www/thesaurus2/export_text.php:51 -#: www/thesaurus2/export_text_dlg.php:42 -#: www/thesaurus2/export_text_dlg.php:146 -msgid "thesaurus:: export au format texte" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:137 -msgid "thesaurus:: options d'export : " -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:138 -msgid "thesaurus:: example" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:151 -msgid "thesaurus:: exporter avec les synonymes sur la meme ligne" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:155 -msgid "thesaurus:: exporter avec une ligne par synonyme" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:159 -msgid "thesaurus:: export : numeroter les lignes " -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:163 -msgid "thesaurus:: export : inclure la langue" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:167 -msgid "thesaurus:: export : inclure les hits" -msgstr "" - -#: www/thesaurus2/export_text_dlg.php:173 -msgid "thesaurus:: export : format topics" -msgstr "" - -#: www/thesaurus2/export_topics.php:98 -#: www/thesaurus2/export_topics_dlg.php:43 -msgid "thesaurus:: export en topics" -msgstr "" - -#: www/thesaurus2/export_topics.php:159 -#, php-format -msgid "thesaurus:: fichier genere le %s" -msgstr "" - -#: www/thesaurus2/export_topics.php:178 -#, php-format -msgid "thesaurus:: fichier genere : %s" -msgstr "" - -#: www/thesaurus2/export_topics.php:180 -msgid "thesaurus:: erreur lors de l'enregsitrement du fichier" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:117 -msgid "thesaurus:: exporter" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:120 -msgid "thesaurus:: exporter vers topics pour toutes les langues" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:128 -msgid "thesaurus:: exporter a l'ecran pour la langue _langue_" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:135 -msgid "phraseanet:: tri" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:145 -msgid "thesaurus:: recherche" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:148 -msgid "thesaurus:: recherche thesaurus *:\"query\"" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:152 -msgid "thesaurus:: recherche fulltext" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:156 -msgid "thesaurus:: question complete (avec operateurs)" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:163 -msgid "thesaurus:: presentation" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:166 -msgid "thesaurus:: presentation : branches refermables" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:170 -msgid "thesaurus:: presentation : branche ouvertes" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:174 -msgid "thesaurus:: tout deployer - refermable" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:178 -msgid "thesaurus:: tout deployer - statique" -msgstr "" - -#: www/thesaurus2/export_topics_dlg.php:182 -msgid "thesaurus:: tout fermer" -msgstr "" - -#: www/thesaurus2/import.php:158 -#, php-format -msgid "over-indent at line %s" -msgstr "" - -#: www/thesaurus2/import.php:166 -#, php-format -msgid "bad encoding at line %s" -msgstr "" - -#: www/thesaurus2/import.php:173 -#, php-format -msgid "bad character at line %s" -msgstr "" - -#: www/thesaurus2/import_dlg.php:42 -msgid "thesaurus:: Importer" -msgstr "" - -#: www/thesaurus2/import_dlg.php:85 -msgid "thesaurus:: coller ici la liste des termes a importer" -msgstr "" - -#: www/thesaurus2/import_dlg.php:86 -msgid "thesaurus:: langue par default" -msgstr "" - -#: www/thesaurus2/import_dlg.php:93 -msgid "Fichier ASCII tabule" -msgstr "" - -#: www/thesaurus2/import_dlg.php:110 -msgid "thesaurus:: supprimer les liens des champs tbranch" -msgstr "" - -#: www/thesaurus2/import_dlg.php:113 -msgid "thesaurus:: reindexer la base apres l'import" -msgstr "" - -#: www/thesaurus2/index.php:96 -msgid "thesaurus:: Editer le thesaurus" -msgstr "" - -#: www/thesaurus2/index.php:118 -msgid "phraseanet:: choisir" -msgstr "" - -#: www/thesaurus2/index.php:144 -msgid "thesaurus:: langue pivot" -msgstr "" - -#: www/thesaurus2/index.php:161 -msgid "thesaurus:: Vous n'avez acces a aucune base" -msgstr "" - -#: www/thesaurus2/linkfield.php:32 -msgid "thesaurus:: Lier la branche de thesaurus au champ" -msgstr "" - -#: www/thesaurus2/linkfield.php:112 -#, php-format -msgid "thesaurus:: Lier la branche de thesaurus au champ %s" -msgstr "" - -#: www/thesaurus2/linkfield2.php:32 -#: www/thesaurus2/linkfield3.php:33 -msgid "thesaurus:: Lier la branche de thesaurus" -msgstr "" - -#: www/thesaurus2/linkfield2.php:116 -#, php-format -msgid "thesaurus:: Ce champ a ete modifie ; ancienne branche : %s " -msgstr "" - -#: www/thesaurus2/linkfield2.php:145 -msgid "thesaurus:: nouvelle branche" -msgstr "" - -#: www/thesaurus2/linkfield2.php:150 -msgid "thesaurus:: ce champ n'est plus lie au thesaurus, les termes indexes et candidats seront supprimes" -msgstr "" - -#: www/thesaurus2/linkfield2.php:158 -msgid "thesaurus:: ce champ doit etre lie au thesaurus. La reindexation de la base est necessaire" -msgstr "" - -#: www/thesaurus2/linkfield2.php:162 -msgid "thesaurus:: le lien au thesaurus doit etre modifie, la reindexation de la base est necessaire" -msgstr "" - -#: www/thesaurus2/linkfield2.php:177 -msgid "thesaurus:: reindexation necessaire" -msgstr "" - -#: www/thesaurus2/linkfield2.php:181 -msgid "thesaurus:: pas de reindexation" -msgstr "" - -#: www/thesaurus2/linkfield3.php:78 -#, php-format -msgid "thesaurus:: suppression du lien du champ %s" -msgstr "" - -#: www/thesaurus2/linkfield3.php:86 -#: www/thesaurus2/linkfield3.php:102 -#, php-format -msgid "thesaurus:: suppression de la branche de mot candidats pour le champ %s" -msgstr "" - -#: www/thesaurus2/linkfield3.php:112 -msgid "thesaurus:: enregistrement de la liste modifiee des mots candidats." -msgstr "" - -#: www/thesaurus2/linkfield3.php:124 -msgid "thesaurus:: suppression des indexes vers le thesaurus pour le champ" -msgstr "" - -#: www/thesaurus2/linkfield3.php:135 -msgid "thesaurus:: reindexer tous les enregistrements" -msgstr "" - -#: www/thesaurus2/loadth.php:136 -msgid "thesaurus:: corbeille" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:34 -msgid "thesaurus:: Nouveau terme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:34 -msgid "thesaurus:: terme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:37 -#: www/thesaurus2/newterm.php:38 -msgid "thesaurus:: Nouveau synonyme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:37 -msgid "thesaurus:: synonyme" -msgstr "" - -#: www/thesaurus2/newsy_dlg.php:91 -msgid "thesaurus:: contexte" -msgstr "" - -#: www/thesaurus2/newterm.php:38 -msgid "thesaurus:: Nouveau terme specifique" -msgstr "" - -#: www/thesaurus2/newterm.php:72 -#, php-format -msgid "thesaurus:: le terme %s" -msgstr "" - -#: www/thesaurus2/newterm.php:74 -#, php-format -msgid "thesaurus:: avec contexte %s" -msgstr "" - -#: www/thesaurus2/newterm.php:76 -msgid "thesaurus:: sans contexte" -msgstr "" - -#: www/thesaurus2/newterm.php:104 -msgid "thesaurus:: est deja candidat en provenance du champ acceptable : " -msgstr "" - -#: www/thesaurus2/newterm.php:106 -msgid "thesaurus:: est deja candidat en provenance des champs acceptables : " -msgstr "" - -#: www/thesaurus2/newterm.php:146 -msgid "thesaurus:: selectionner la provenance a accepter" -msgstr "" - -#: www/thesaurus2/newterm.php:162 -#: www/thesaurus2/newterm.php:164 -msgid "thesaurus:: est candidat en provenance des champs mais ne peut etre accepte a cet emplacement du thesaurus" -msgstr "" - -#: www/thesaurus2/newterm.php:169 -msgid "thesaurus:: n'est pas present dans les candidats" -msgstr "" - -#: www/thesaurus2/newterm.php:173 -msgid "thesaurus:: attention :" -msgstr "" - -#: www/thesaurus2/newterm.php:184 -msgid "thesaurus:: Ajouter le terme dans reindexer" -msgstr "" - -#: www/thesaurus2/newterm.php:186 -msgid "thesaurus:: ajouter le terme et reindexer" -msgstr "" - -#: www/thesaurus2/properties.php:47 -msgid "thesaurus:: Proprietes" -msgstr "" - -#: www/thesaurus2/properties.php:92 -msgid "thesaurus::menu: supprimer" -msgstr "" - -#: www/thesaurus2/properties.php:93 -msgid "thesaurus:: remplacer" -msgstr "" - -#: www/thesaurus2/properties.php:120 -#, php-format -msgid "thesaurus:: %s reponses retournees" -msgstr "" - -#: www/thesaurus2/properties.php:147 -msgid "thesaurus:: synonymes" -msgstr "" - -#: www/thesaurus2/properties.php:148 -msgid "thesaurus:: hits" -msgstr "" - -#: www/thesaurus2/properties.php:149 -msgid "thesaurus:: ids" -msgstr "" - -#: www/thesaurus2/properties.php:321 -#, php-format -msgid "thesaurus:: Confirmer la suppression du terme %s" -msgstr "" - -#: www/thesaurus2/search.php:77 -msgid "thesaurus:: le terme" -msgstr "" - -#: www/thesaurus2/search.php:78 -msgid "thesaurus:: est egal a " -msgstr "" - -#: www/thesaurus2/search.php:82 -msgid "thesaurus:: commence par" -msgstr "" - -#: www/thesaurus2/search.php:86 -msgid "thesaurus:: contient" -msgstr "" - -#: www/thesaurus2/search.php:91 -msgid "thesaurus:: fini par" -msgstr "" - -#: www/thesaurus2/thesaurus.php:224 -#: www/thesaurus2/thesaurus.php:249 -msgid "thesaurus::menu: proprietes" -msgstr "" - -#: www/thesaurus2/thesaurus.php:225 -msgid "thesaurus::menu: refuser" -msgstr "" - -#: www/thesaurus2/thesaurus.php:226 -msgid "thesaurus::menu: accepter" -msgstr "" - -#: www/thesaurus2/thesaurus.php:229 -msgid "thesaurus::menu: supprimer les candidats a 0 hits" -msgstr "" - -#: www/thesaurus2/thesaurus.php:231 -#: www/thesaurus2/thesaurus.php:252 -msgid "thesaurus::menu: remplacer" -msgstr "" - -#: www/thesaurus2/thesaurus.php:235 -#: www/thesaurus2/thesaurus.php:255 -msgid "thesaurus::menu: chercher" -msgstr "" - -#: www/thesaurus2/thesaurus.php:236 -#: www/thesaurus2/thesaurus.php:256 -msgid "thesaurus::menu: exporter" -msgstr "" - -#: www/thesaurus2/thesaurus.php:239 -msgid "thesaurus::menu: relire les candidats" -msgstr "" - -#: www/thesaurus2/thesaurus.php:245 -msgid "thesaurus::menu: importer" -msgstr "" - -#: www/thesaurus2/thesaurus.php:250 -msgid "thesaurus::menu: Nouveau terme" -msgstr "" - -#: www/thesaurus2/thesaurus.php:251 -msgid "thesaurus::menu: Nouveau synonyme" -msgstr "" - -#: www/thesaurus2/thesaurus.php:257 -msgid "thesaurus::menu: export topics" -msgstr "" - -#: www/thesaurus2/thesaurus.php:259 -msgid "thesaurus::menu: lier au champ" -msgstr "" - -#: www/thesaurus2/thesaurus.php:294 -msgid "thesaurus:: onglet stock" -msgstr "" - -#: www/thesaurus2/thesaurus.php:299 -msgid "thesaurus:: afficher les termes refuses" -msgstr "" - -#: www/thesaurus2/thesaurus.php:313 -msgid "thesaurus:: onglet thesaurus" -msgstr "" - -#: www/thesaurus2/thesaurus.php:513 -msgid "thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)" -msgstr "" - -#: www/thesaurus2/thesaurus.php:515 -msgid "thesaurus:: Des reponses sont retournees par cette branche. Supprimer quand meme ? (les termes concernes remonteront en candidats a la prochaine indexation)" -msgstr "" - -#: www/thesaurus2/thesaurus.php:557 -msgid "thesaurus:: Tous les termes ont des hits" -msgstr "" - -#: www/thesaurus2/thesaurus.php:563 -msgid "thesaurus:: Des termes de cette branche ne renvoient pas de hits. Les supprimer ?" -msgstr "" - -#: www/thesaurus2/thesaurus.php:652 -msgid "thesaurus:: Supprimer tous les candidats et placer toutes les fiches en reindexation-thesaurus ?" -msgstr "" - -#: www/thesaurus2/thesaurus.php:1096 -msgid "thesaurus:: deplacer le terme dans la corbeille ?" -msgstr "" - -#: www/upload/index.php:75 -msgid "upload:You do not have right to upload datas" -msgstr "" - -#: www/upload/index.php:186 -msgid "Selectionner une action" -msgstr "" - -#: www/upload/index.php:187 -msgid "Aucune enregistrement selectionne" -msgstr "" - -#: www/upload/index.php:188 -msgid "Transfert en court, vous devez attendre la fin du transfert" -msgstr "" - -#: www/upload/index.php:189 -msgid "File d'attente n'est pas vide, souhaitez vous supprimer ces elements ?" -msgstr "" - -#: www/upload/index.php:241 -#, php-format -msgid "upload:: %d fichiers uploades" -msgstr "" - -#: www/upload/index.php:243 -#: www/upload/index.php:414 -#, php-format -msgid "upload:: %d fichier uploade" -msgstr "" - -#: www/upload/index.php:247 -msgid "Certains elements uploades sont passes en quarantaine" -msgstr "" - -#: www/upload/index.php:276 -#, php-format -msgid "upload :: choisir les fichiers a uploader (max : %d MB)" -msgstr "" - -#: www/upload/index.php:343 -msgid "Upload Manager" -msgstr "" - -#: www/upload/index.php:344 -msgid "Quarantaine" -msgstr "" - -#: www/upload/index.php:351 -msgid "Utiliser l'upload classique" -msgstr "" - -#: www/upload/index.php:355 -msgid "Retour a l'upload flash" -msgstr "" - -#: www/upload/index.php:363 -msgid "upload:: Re-ordonner les fichiers" -msgstr "" - -#: www/upload/index.php:370 -msgid "upload:: inverser" -msgstr "" - -#: www/upload/index.php:377 -msgid "upload:: Selectionner des fichiers" -msgstr "" - -#: www/upload/index.php:390 -msgid "upload:: Que faire avec les fichiers" -msgstr "" - -#: www/upload/index.php:392 -msgid "upload:: Destination (collection) :" -msgstr "" - -#: www/upload/index.php:393 -msgid "upload:: Status :" -msgstr "" - -#: www/upload/index.php:407 -msgid "upload:: demarrer" -msgstr "" - -#: www/upload/index.php:416 -msgid "upload:: annuler tous les telechargements" -msgstr "" - -#: www/upload/index.php:434 -msgid "Action" -msgstr "" - -#: www/upload/index.php:437 -msgid "Ajouter les documents bloques" -msgstr "" - -#: www/upload/index.php:440 -msgid "Substituer quand possible ou Ajouter les documents bloques" -msgstr "" - -#: www/upload/index.php:443 -msgid "Supprimer les documents bloques" -msgstr "" - -#: www/upload/index.php:450 -msgid "Supprimer precedentes propositions a la substitution" -msgstr "" - -#: www/upload/upload.php:46 -#: www/upload/upload.php:55 -msgid "Internal Server Error" -msgstr "" - -#: www/upload/upload.php:141 -#: www/upload/upload.php:164 -msgid "erreur lors de l'archivage" -msgstr "" - -#: www/upload/upload.php:144 -msgid "Document ajoute a la quarantaine" -msgstr "" - -#: www/upload/upload.php:147 -msgid "Fichier uploade, en attente" -msgstr "" - -#: www/upload/upload.php:187 -msgid "Fichier uploade !" -msgstr "" - diff --git a/templates/mobile/api/auth/application_dev.twig b/templates/mobile/api/auth/application_dev.twig new file mode 100644 index 0000000000..4654beabae --- /dev/null +++ b/templates/mobile/api/auth/application_dev.twig @@ -0,0 +1,57 @@ +{% block apps %} + + + + + + + + +
      +
      +

      Phraseanet Developper Center

      +

      {% trans 'Mes applications' %}

      + {% if apps|length > 0 %} +
        + {% for app in apps %} +
      • +
        + + + + + {{app.get_name()}} + + + + {{app.get_description() }} + {{app.get_website()}} +
        +
      • + {%endfor%} +
      + {% else %} +
      + {% trans 'Aucune application creee.' %} +
      + {% endif %} +
      +
      +
      +
      + + +
      + {% trans 'Decouvrez la documentation' %} +
      +
      + + +
      + {% trans 'Creez une application pour commencer a utiliser l\'API Phraseanet' %} +
      +
      +
      + + +{% endblock %} diff --git a/templates/mobile/api/auth/application_dev_new.twig b/templates/mobile/api/auth/application_dev_new.twig new file mode 100644 index 0000000000..5490f7092c --- /dev/null +++ b/templates/mobile/api/auth/application_dev_new.twig @@ -0,0 +1,94 @@ +{% macro input(name, value, violations, property, type, size) %} + {% if violations is none %} + + {% else %} + {% set hasError = "false" %} + {% for violation in violations %} + {% if violation.getPropertyPath == property and hasError == "false" %} + {% set hasError = "true" %} + +
      {{ violation.getInvalidValue }} - {{violation.getMessage}}
      + {% endif %} + {% endfor %} + {% if hasError == "false" %} + {% endif %} + {% endif %} +{% endmacro %} + +{% macro textarea(name, value, violations,property, rows, cols) %} + {% if violations is none %} + + {% else %} + {% set hasError = "false" %} + {% for violation in violations %} + {% if violation.getPropertyPath == property and hasError == "false" %} + {% set hasError = "true" %} + +
      {{violation.getMessage}}
      + {% endif %} + {% endfor %} + {% if hasError == "false" %} + + {% endif %} + {% endif %} +{% endmacro %} + +{% block dev %} +
      + {% if form is none %} + {% set name, description, website, callback = '', '', '', ''%} + {% set app_type = 'web'%} + {% else %} + {% set name = form.name %} + {% set description = form.description %} + {% set website = form.website %} + {% set callback = form.callback %} + {% set app_type = form.type %} + {% endif %} + + + + + + + + + + + + + + + + + + {% if app_type == "web" %} + + + + + {% endif %} + + + +
      {{ _self.input("name", name, violations, 'name') }}
      {{ _self.textarea("description", description, 'description', violations, 5, 17) }}
      + + {{ _self.input("website", website, violations, 'urlwebsite') }}
      {% trans 'Application web' %} + + {% trans 'Application desktop' %} +
      + + {{ _self.input("callback", callback, violations, 'urlcallback') }}
      +
      +
      + +
      +{% endblock %} diff --git a/templates/mobile/api/auth/application_dev_show.twig b/templates/mobile/api/auth/application_dev_show.twig new file mode 100644 index 0000000000..b2d6d53388 --- /dev/null +++ b/templates/mobile/api/auth/application_dev_show.twig @@ -0,0 +1,78 @@ +{% block app_show %} +

      {% trans 'Application' %}

      + +
      + +
      +

      {% trans 'settings OAuth' %}

      +

      {% trans 'Les parametres oauth de votre application.' %}

      + + + + + + + + + + + + + {% if app.get_type == constant('API_OAuth2_Application::DESKTOP_TYPE') %} + + {% else %} + + {%endif%} + + + + + + + + + + +
      Client ID{{app.get_client_id}}
      Client Secret{{app.get_client_secret}}
      {% trans 'URL de callback' %} + {{app.get_redirect_uri}} + {{app.get_redirect_uri}} + + +
      Authorize endpoint{{registry.get('GV_ServerName')}}api/oauthv2/authorize
      Access endpoint{{registry.get('GV_ServerName')}}api/oauthv2/token
      + +

      {% trans 'Votre token d\'access' %}

      +

      {% trans 'Les paramétres oauth de votre application.' %}

      + + + + + + + + + + + +
      + {% trans 'Token' %} + + + {% if not token is none %} + {{token|default('')}} + {% else %} + {% trans 'Le token n\'a pas encore ete genere' %} + {% endif %} + +
      + + +{% endblock %} diff --git a/templates/mobile/api/auth/applications.twig b/templates/mobile/api/auth/applications.twig new file mode 100644 index 0000000000..e63fb0d1dc --- /dev/null +++ b/templates/mobile/api/auth/applications.twig @@ -0,0 +1,60 @@ +{% block applications %} + + + + + + + +
      +
      +

      {% trans 'Vous avez autorise ces applications a acceder a votre compte' %}

      + {% if apps|length > 0 %} +
        + {% for app in apps %} +
      • +
        + {% set account = app.get_user_account(user) %} + {% if account.is_revoked() is empty %} + + {% else %} + + {% endif %} + + + {{app.get_name()}} + + {% if user is not none %} + {% set user_name = app.get_creator().get_display_name() %} + {% trans %} + par {{user_name}} + {% endtrans %} + {% endif%} + + + {{app.get_created_on()|prettyDate}} + + {{app.get_description() }} +
        +
      • + {%endfor%} +
      + {% else %} +
      + {% trans 'Aucune application n\'a accés à vos données.' %} +
      + {% endif %} +
      +
      +
      +

      {% trans 'Applications' %}

      +

      + {% trans 'Naviguez et gerez les applications que vous souhaitez autoriser a acceder a vos informations Phraseanet' %} +

      +

      {% trans 'Developpeurs' %}

      +

      + {% trans 'Les developpeurs peuvent editer l\'enregistrement de leurs application grace a l\'onglet "developpeurs" ci-dessus' %} +

      +
      +
      +{% endblock %} diff --git a/templates/mobile/api/auth/end_user_authorization.twig b/templates/mobile/api/auth/end_user_authorization.twig new file mode 100644 index 0000000000..eafb6a95c6 --- /dev/null +++ b/templates/mobile/api/auth/end_user_authorization.twig @@ -0,0 +1,119 @@ + + + + + Phraseanet Authentication + + + + + + + + + + + + + + + + + + +
      +
      + +
      +

      {{home_title}}

      +
      + + {% if not session.is_authenticated %} +
      +
      + {% for key,value in auth.getParams %} + + {% endfor %} + {% if errorMessage %} + + {% endif %} + + + + +
      +

      + {% trans 'Problèmes de connexion ?' %} +

      +
      + {% else %} + {% if user is not none %} + {% set username = '' ~ user.get_display_name() ~ '' %} +
      + +
      + {% endif %} + {% if auth.getClient() is not none %} +
      +
      +

      {% trans %}Autorisation d'accès{% endtrans %}

      +
      +
      + {% set application_name = auth.getClient.get_name() %} +

      + {% trans %} + Autorisez-vous l'application "{{application_name}}" à accéder à votre contenu sur {{home_title}} ? + {% endtrans %} +

      +
      +
      + {% endif %} +
      +
      + {% for key,value in auth.getParams %} + + {% endfor %} + + +
      +
      + {% for key,value in auth.getParams %} + + {% endfor %} + + +
      +
      + {% endif %} + +
      +
      + + + + + + + + + + + + + + + + + + diff --git a/templates/mobile/api/auth/native_app_access_token.twig b/templates/mobile/api/auth/native_app_access_token.twig new file mode 100644 index 0000000000..0ba7bce308 --- /dev/null +++ b/templates/mobile/api/auth/native_app_access_token.twig @@ -0,0 +1,98 @@ + + + + + + {% if error is defined %} + {% trans 'Fail' %} + {% else %} + {% trans 'Success' %} + {% endif %} + + + + + + + + + + + + + + + + + + + +
      +
      + +
      +

      {{home_title}}

      +
      + + {% if user is not none %} + {% set username = '' ~ user.get_display_name() ~ '' %} +
      + +
      + {% endif %} +
      + {% if error is defined %} +
      +

      {% trans %}Erreur{% endtrans %}

      +
      +
      +

      + {% trans %} + {{error}} + {% endtrans %} +

      + +
      + {% else %} +
      +

      {% trans %}Code d'accès{% endtrans %}

      +
      +
      +

      + {% trans %} + Copiez le code ci-dessous, retournez dans votre application et collez-le à l'endroit requis : + {% endtrans %} +

      + +
      + {% endif %} +
      +

      + +
      +
      + + + + + + + + + + + + + + + + + + diff --git a/templates/mobile/lightbox/basket_element.twig b/templates/mobile/lightbox/basket_element.twig index 8b0761ef15..78fa9a075b 100644 --- a/templates/mobile/lightbox/basket_element.twig +++ b/templates/mobile/lightbox/basket_element.twig @@ -21,13 +21,15 @@
      {{ thumbnail.format100percent(record.get_preview(),'',session, record.get_thumbnail()) }} {% if basket_element.getBasket().getValidation() %} -
      - - + {% if basket_element.getBasket().getValidation().getParticipant(user).getCanAgree() %} +
      + + - - -
      + + +
      + {% endif %}
      {% trans 'validation:: editer ma note' %} diff --git a/templates/mobile/lightbox/validate.twig b/templates/mobile/lightbox/validate.twig index ea07721e68..ac5aba23c2 100644 --- a/templates/mobile/lightbox/validate.twig +++ b/templates/mobile/lightbox/validate.twig @@ -24,8 +24,10 @@
        {% for basket_element in basket.getElements() %}
      • -
        -
        + {% if basket_element.getBasket().getValidation() and basket_element.getBasket().getValidation().getParticipant(user).getCanAgree() %} +
        +
        + {% endif %}
        {{thumbnail.format(basket_element.getRecord().get_thumbnail(), 80, 80, '', session, true)}} diff --git a/templates/mobile/login/index.twig b/templates/mobile/login/index.twig index a193e76e82..61974a8756 100644 --- a/templates/mobile/login/index.twig +++ b/templates/mobile/login/index.twig @@ -36,7 +36,7 @@ placeholder="{% trans 'admin::compte-utilisateur identifiant' %}" /> - +
        diff --git a/templates/web/Mustache/Prod/Feedback-Badge.Mustache.html b/templates/web/Mustache/Prod/Feedback-Badge.Mustache.html index b554a491df..76a344756c 100644 --- a/templates/web/Mustache/Prod/Feedback-Badge.Mustache.html +++ b/templates/web/Mustache/Prod/Feedback-Badge.Mustache.html @@ -1,4 +1,7 @@
        + + + @@ -6,15 +9,12 @@
        -
        +
        @@ -24,18 +24,18 @@ diff --git a/templates/web/Mustache/Prod/List-Badge.Mustache.html b/templates/web/Mustache/Prod/List-Badge.Mustache.html index 8b0486e334..aa71d2f9a1 100644 --- a/templates/web/Mustache/Prod/List-Badge.Mustache.html +++ b/templates/web/Mustache/Prod/List-Badge.Mustache.html @@ -1,4 +1,7 @@
        {{ display_name }} - - -
        - - + + - - + + - - + +
        @@ -6,14 +9,11 @@
        -
        +
        diff --git a/templates/web/Mustache/Prod/Push-Badge.Mustache.html b/templates/web/Mustache/Prod/Push-Badge.Mustache.html index 7399583bc0..e5b208fecb 100644 --- a/templates/web/Mustache/Prod/Push-Badge.Mustache.html +++ b/templates/web/Mustache/Prod/Push-Badge.Mustache.html @@ -1,4 +1,7 @@
        {{ display_name }} - - -
        @@ -6,15 +9,12 @@
        -
        +
        @@ -24,8 +24,8 @@ diff --git a/templates/web/admin/databox/doc_structure.twig b/templates/web/admin/databox/doc_structure.twig index d6004cfa00..b492435e6a 100644 --- a/templates/web/admin/databox/doc_structure.twig +++ b/templates/web/admin/databox/doc_structure.twig @@ -281,15 +281,6 @@ - - - @@ -363,15 +354,6 @@ - - - diff --git a/templates/web/api/auth/application_dev_new.twig b/templates/web/api/auth/application_dev_new.twig index 8fe89acd5d..5490f7092c 100644 --- a/templates/web/api/auth/application_dev_new.twig +++ b/templates/web/api/auth/application_dev_new.twig @@ -73,7 +73,7 @@ {% if app_type == "web" %} - {% if app.get_type == constant('API_OAuth2_Application::DESKTOP_TYPE') %} {% else %} - diff --git a/templates/web/api/auth/end_user_authorization.twig b/templates/web/api/auth/end_user_authorization.twig index 0c527aac45..eafb6a95c6 100644 --- a/templates/web/api/auth/end_user_authorization.twig +++ b/templates/web/api/auth/end_user_authorization.twig @@ -1,36 +1,36 @@ - + - Phraseanet Authentication + Phraseanet Authentication - - - - - - + + + + + + - - + + - -
        + +
        - +

        {{home_title}}

        - + {% if not session.is_authenticated %} - {% else %} + {% else %} {% if user is not none %} {% set username = '' ~ user.get_display_name() ~ '' %}
        @@ -62,7 +62,7 @@ Hello {{username}} {% endtrans %}

        -
        +
        {% endif %} {% if auth.getClient() is not none %}
        @@ -95,8 +95,8 @@
        - {% endif %} - + {% endif %} +
        @@ -115,5 +115,5 @@ - - \ No newline at end of file + + diff --git a/templates/web/api/auth/native_app_access_token.twig b/templates/web/api/auth/native_app_access_token.twig index 4c04264c81..9b438febf4 100644 --- a/templates/web/api/auth/native_app_access_token.twig +++ b/templates/web/api/auth/native_app_access_token.twig @@ -1,8 +1,8 @@ - + - + <title> {% if error is defined %} {% trans 'Fail' %} {% else %} @@ -14,20 +14,20 @@ <!-- Mobile viewport optimized --> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <!-- styles --> - <link rel="stylesheet" type="text/css" href="/skins/html5/bootstrap/css/bootstrap.css" /> - <link rel="stylesheet" type="text/css" href="/skins/html5/bootstrap/css/bootstrap-responsive.css" /> - <link rel="stylesheet" type="text/css" href="/skins/oauth/default.css" /> + <!-- styles --> + <link rel="stylesheet" type="text/css" href="/skins/html5/bootstrap/css/bootstrap.css" /> + <link rel="stylesheet" type="text/css" href="/skins/html5/bootstrap/css/bootstrap-responsive.css" /> + <link rel="stylesheet" type="text/css" href="/skins/oauth/default.css" /> <!-- All JavaScript at the bottom, except this Modernizr build. Modernizr enables HTML5 elements & feature detects for optimal performance. --> <script type="text/javascript" src="/skins/html5/Boilerplate/js/modernizr-2.5.2.min.js"></script> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> - <!--[if lt IE 9]> - <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> - <![endif]--> - </head> + <!--[if lt IE 9]> + <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> + <![endif]--> + </head> <body> <div id="page" class="container"> @@ -59,7 +59,7 @@ {% endtrans %} </p> <input type="text" class="input-xlarge" name="access_token" value="{{token.access_token}}" size="{{token.access_token|length}}"/> - </div> + </div> {% else %} <div id="top-text-box"> <h4>{% trans %}Code d'accès{% endtrans %}</h4> @@ -74,6 +74,7 @@ </div> {% endif %} </div> + <p> </p> </div> </div> @@ -93,5 +94,5 @@ <script type="text/javascript" src="/skins/html5/bootstrap/js/bootstrap-transition.js"></script> <script type="text/javascript" src="/skins/html5/bootstrap/js/bootstrap-typeahead.js"></script> - </body> -</html> \ No newline at end of file + </body> +</html> diff --git a/templates/web/common/dialog_export.twig b/templates/web/common/dialog_export.twig index 7162f424a4..5440cdb9cf 100644 --- a/templates/web/common/dialog_export.twig +++ b/templates/web/common/dialog_export.twig @@ -492,12 +492,14 @@ count += parseInt($(count_el).val()); } }); + + {% set max_download = registry.get('GV_download_max', 120) %} {% set alert_too_big%} - "{% trans 'You can not directly download more than 120Mo ; time to package all documents is too long' %}\n"+ + "{% trans %} You can not directly download more than {{max_download}} Mo ; time to package all documents is too long{% endtrans %}\n"+ "{% trans 'You can alternatively receive an email when the download is ready.' %}\n\n"+ "{% trans 'Would you like to receive an e-mail when your download is ready ?' %}" {% endset %} - if(count>1 && total/1024/1024 > 120) + if(count>1 && total/1024/1024 > {{max_download}}) { if(confirm({{alert_too_big|escape("js")}})) { @@ -588,10 +590,12 @@ $('#sendmail .sendmail_button').bind('click',function(){ if(!check_subdefs($('#sendmail'))) - - return false; - $('#sendmail .sendmail_button_loader').css('visibility','visible'); - $(this).attr('disabled','disabled'); + { + return false; + } + $('#sendmail .close_button').trigger("click"); + //$('#sendmail .sendmail_button_loader').css('visibility','visible'); + //$(this).attr('disabled','disabled'); $('#sendmail form').submit(); }); $('#dialog_dwnl .datepicker').datepicker({ diff --git a/templates/web/common/drop_down_options.html b/templates/web/common/drop_down_options.html index 77fa742bad..d07ca3b41a 100644 --- a/templates/web/common/drop_down_options.html +++ b/templates/web/common/drop_down_options.html @@ -7,10 +7,10 @@ <tr> <td> <div class="context-menu context-menu-theme-vista"> - {% if user.ACL.has_right_on_base(record.get_base_id, 'canputinalbum') %} + {% if user.ACL.has_right_on_base(record.get_base_id, 'canputinalbum') and not record.is_grouping() %} <div title="" class="context-menu-item"> <div class="context-menu-item-inner" - onclick="evt_add_in_chutier('{{record.get_base_id}}','{{record.get_record_id}}',false,this);return(false);"> + onclick="evt_add_in_chutier('{{record.get_base_id}}','{{record.get_record_id}}',false,true);return(false);"> {% trans 'action : ajouter au panier' %} </div> </div> diff --git a/templates/web/common/index.twig b/templates/web/common/index.twig index 12b66755c3..c029335e96 100644 --- a/templates/web/common/index.twig +++ b/templates/web/common/index.twig @@ -13,10 +13,8 @@ <body class="PNB"> <div id="mainContainer" class="PNB"> {% include 'common/menubar.twig' %} - <div class="PNB" style="top:30px;overflow-y:auto;overflow-x:auto;"> - <div class="PNB" id="mainContent" style="min-width:900px;"> - {% block content %}{% endblock %} - </div> + <div class="PNB" id="mainContent" style="top:30px;min-width:900px;overflow-y:auto;overflow-x:auto;"> + {% block content %}{% endblock %} </div> </div> {% include 'common/analytics.twig' %} diff --git a/templates/web/common/menubar.twig b/templates/web/common/menubar.twig index ea020127eb..3dc85e9d3b 100644 --- a/templates/web/common/menubar.twig +++ b/templates/web/common/menubar.twig @@ -146,7 +146,7 @@ {% endif %} </li> <li> - <a target="_blank" href="http://docs.phraseanet.com/"> + <a target="_blank" href="https://docs.phraseanet.com/3.6/"> <span> {% trans 'phraseanet:: aide' %} <span style="display:inline-block;cursor:pointer;padding:0;border:none;" id="help-trigger"> ▼</span> diff --git a/templates/web/common/thumbnail.html b/templates/web/common/thumbnail.html index be44d1abd0..678e598a5b 100644 --- a/templates/web/common/thumbnail.html +++ b/templates/web/common/thumbnail.html @@ -40,7 +40,7 @@ {% endif %} - + {% if session.is_authenticated() == true %} {% set url = thumbnail.get_url() %} {% else %} @@ -51,7 +51,7 @@ {% endif %} {% if record_type == 'VIDEO_MP4' or record_type == 'VIDEO_FLV' %} {% set random = thumbnail.get_random() %} - <div class="record record_video imgTips" style="width:{{d_width|round}}px;height:{{d_height|round}}px;top:{{top|round}}px;"> + <div class="record record_video imgTips" style="position:relative;width:{{d_width|round}}px;height:{{d_height|round}}px;top:{{top|round}}px;"> <div id="preview{{random}}" class="PNB"></div> <input type="hidden" name="width" value="{{thumbnail.get_width()}}"/> <input type="hidden" name="height" value="{{thumbnail.get_height()}}"/> @@ -141,7 +141,7 @@ {% endif %} - + {% if session.is_authenticated() == true %} {% set url = thumbnail.get_url() %} {% else %} @@ -152,7 +152,7 @@ {% endif %} {% if record_type == 'VIDEO_MP4' or record_type == 'VIDEO_FLV' %} {% set random = thumbnail.get_random() %} - <div class="record record_video imgTips" style="width:{{d_width|round}}px;height:{{d_height|round}}px;top:{{top|round}}px;"> + <div class="record record_video imgTips" style="position:relative;width:{{d_width|round}}px;height:{{d_height|round}}px;top:{{top|round}}px;"> <div id="preview{{random}}" class="PNB"></div> <input type="hidden" name="width" value="{{thumbnail.get_width()}}"/> <input type="hidden" name="height" value="{{thumbnail.get_height()}}"/> diff --git a/templates/web/lightbox/sc_container.twig b/templates/web/lightbox/sc_container.twig index 3d7ddc7551..6baf0cc0e8 100644 --- a/templates/web/lightbox/sc_container.twig +++ b/templates/web/lightbox/sc_container.twig @@ -5,7 +5,8 @@ <div class="basket_element_wrapper"> <a href="/lightbox/ajax/LOAD_BASKET_ELEMENT/{{element.getId()}}/"> <div id="scid_{{element.getId()}}" class="basket_element ui-corner-all {% if basket_element and basket_element.getId() == element.getId() %}selected{% endif %}"> - <div class="display_id">{{element.getRecord().get_number()}}</div> + {% set record = element.getRecord().set_number(loop.index) %} + <div class="display_id">{{record.get_number()}}</div> {% if basket.getValidation() %} <div class="agreement"> <img src="/skins/lightbox/agree.png" diff --git a/templates/web/prod/Baskets/Reorder.html.twig b/templates/web/prod/Baskets/Reorder.html.twig index 383baf00dd..c9397fb82b 100644 --- a/templates/web/prod/Baskets/Reorder.html.twig +++ b/templates/web/prod/Baskets/Reorder.html.twig @@ -53,6 +53,7 @@ { var val = $.trim($('#auto_order').val()); if(val == '') + return; var sorter = {}; diff --git a/templates/web/prod/Story/Create.html.twig b/templates/web/prod/Story/Create.html.twig index 86f82d0112..af02d19bde 100644 --- a/templates/web/prod/Story/Create.html.twig +++ b/templates/web/prod/Story/Create.html.twig @@ -10,9 +10,6 @@ <label>{% trans 'Story name' %}</label> <input name="name" value="" type="text"/> - <label>{% trans 'Story description' %}</label> - <textarea name="description"></textarea> - <label for="add_sel">{% trans 'Ajouter ma selection courrante' %}</label> <input type="checkbox" name="lst" value=""/> diff --git a/templates/web/prod/Story/Reorder.html.twig b/templates/web/prod/Story/Reorder.html.twig index af77f56b26..e5db3cf0e6 100644 --- a/templates/web/prod/Story/Reorder.html.twig +++ b/templates/web/prod/Story/Reorder.html.twig @@ -53,6 +53,7 @@ { var val = $.trim($('#auto_order').val()); if(val == '') + return; var sorter = {}; diff --git a/templates/web/prod/Tooltip/Story.html.twig b/templates/web/prod/Tooltip/Story.html.twig index 944532df88..20886a1bf7 100644 --- a/templates/web/prod/Tooltip/Story.html.twig +++ b/templates/web/prod/Tooltip/Story.html.twig @@ -6,7 +6,6 @@ </span> </div> <div style="margin:5px 0"> - {{ Story.get_description()|nl2br }} </div> <div style="margin:5px 0;text-align:right;font-style:italic;position:relative;"> {% set nb_records = Story.get_children().get_elements()|length %} diff --git a/templates/web/prod/User/Add.html.twig b/templates/web/prod/User/Add.html.twig index c539b565cc..8b94aabc17 100644 --- a/templates/web/prod/User/Add.html.twig +++ b/templates/web/prod/User/Add.html.twig @@ -51,9 +51,10 @@ </td> </tr> <tr> - <td colspan="2"> - <button class="cancel">{% trans 'Cancel' %}</button> + <td></td> + <td> <button class="valid">{% trans 'Add' %}</button> + <button class="cancel">{% trans 'Cancel' %}</button> </td> </tr> </table> @@ -61,6 +62,9 @@ </div> <script type="text/javascript"> $(document).ready(function(){ + + $("#QuickAddUser button").button(); + $("#QuickAddUser form").bind('submit', function(){ diff --git a/templates/web/prod/WorkZone/Basket.html.twig b/templates/web/prod/WorkZone/Basket.html.twig index c5cf7005cb..efdeb2d6c9 100644 --- a/templates/web/prod/WorkZone/Basket.html.twig +++ b/templates/web/prod/WorkZone/Basket.html.twig @@ -33,6 +33,12 @@ <img src="/skins/icons/push16.png"/> </button> {% endif %} + + {% if user.ACL().has_right('push') %} + <button class="ui-corner-all TOOL_feedback_btn basket_window" title="{% trans 'Feedback' %}"> + <img src="/skins/icons/feedback16.png"/> + </button> + {% endif %} {% if user.ACL().has_right('bas_chupub') %} <button class="ui-corner-all TOOL_bridge_btn basket_window" title="{% trans 'action : bridge' %}"> <img src="/skins/icons/door.png"/> diff --git a/templates/web/prod/WorkZone/Browser/Basket.html.twig b/templates/web/prod/WorkZone/Browser/Basket.html.twig index 145696ae03..0eb974da4f 100644 --- a/templates/web/prod/WorkZone/Browser/Basket.html.twig +++ b/templates/web/prod/WorkZone/Browser/Basket.html.twig @@ -11,6 +11,7 @@ <td> <h1 class="title"> <img class="loader" src="/skins/prod/Basket/Browser/loader.gif" /> + {% if Basket.getValidation() is empty or Basket.getValidation().isInitiator(user) %} <a href="/prod/baskets/{{ Basket.getId() }}/archive/?archive=1" class="archiver archive_toggler" style="display:{{ Basket.getArchived ? 'none' : '' }};"> <span> <img src="/skins/prod/Basket/Browser/archive.png"/> @@ -21,6 +22,7 @@ <img src="/skins/prod/Basket/Browser/archived.png"/> </span> </a> + {% endif %} <a class="basket_link" href="#"> {{ Basket.getName() }} </a> @@ -100,7 +102,7 @@ {% for BasketElement in Basket.getElements() %} {% set record = BasketElement.getRecord() %} <div class="diapo" style="width:150px; height:180px;"> - <div class='titre'> + <div class='title'> {{record.get_original_name()}} </div> <div> diff --git a/templates/web/prod/WorkZone/Browser/Results.html.twig b/templates/web/prod/WorkZone/Browser/Results.html.twig index abad5ec4da..b74a89dce8 100644 --- a/templates/web/prod/WorkZone/Browser/Results.html.twig +++ b/templates/web/prod/WorkZone/Browser/Results.html.twig @@ -49,6 +49,7 @@ <td class="content"> <h1 class="title"> <img class="loader" src="/skins/prod/Basket/Browser/loader.gif" /> + {% if Basket.getValidation() is empty or Basket.getValidation().isInitiator(user) %} <a href="/prod/baskets/{{ Basket.getId() }}/archive/?archive=1" class="archiver archive_toggler" style="display:{{ Basket.getArchived ? 'none' : '' }};"> <span> <img src="/skins/prod/Basket/Browser/archive.png"/> @@ -59,6 +60,7 @@ <img src="/skins/prod/Basket/Browser/archived.png"/> </span> </a> + {% endif %} <a class="basket_link" href="/prod/WorkZone/Browse/Basket/{{ Basket.getId() }}/"> {{ Basket.getName() }} </a> diff --git a/templates/web/prod/WorkZone/Macros.twig b/templates/web/prod/WorkZone/Macros.twig index 38e88e0fa1..04f3e0a6df 100644 --- a/templates/web/prod/WorkZone/Macros.twig +++ b/templates/web/prod/WorkZone/Macros.twig @@ -174,7 +174,7 @@ <div tooltipsrc="/prod/tooltip/Story/{{story.getRecord().get_sbas_id()}}/{{story.getRecord().get_record_id()}}/" id="SSWZ_{{story.getId()}}" sbas="{{story.getSbasId()}}" - class="basketTips ui-accordion-header ui-state-default + class="STORY_{{ story.getRecord().get_serialize_key() }} basketTips ui-accordion-header ui-state-default ui-corner-all header SSTT grouping {% if story.getId() == selected_id and selected_type == 'story' %}active{% endif %}"> <a href="/prod/story/{{ story.getRecord().get_sbas_id }}/{{ story.getRecord().get_record_id() }}/"> diff --git a/templates/web/prod/WorkZone/Story.html.twig b/templates/web/prod/WorkZone/Story.html.twig index d9aaa454f1..c8bb284056 100644 --- a/templates/web/prod/WorkZone/Story.html.twig +++ b/templates/web/prod/WorkZone/Story.html.twig @@ -32,6 +32,12 @@ <img src="/skins/icons/push16.png"/> </button> {% endif %} + + {% if user.ACL().has_right('push') %} + <button class="ui-corner-all TOOL_feedback_btn basket_window" title="{% trans 'Feedback' %}"> + <img src="/skins/icons/feedback16.png"/> + </button> + {% endif %} {% if user.ACL().has_right('bas_chupub') %} <button class="ui-corner-all TOOL_bridge_btn story_window" title="{% trans 'action : bridge' %}"> <img src="/skins/icons/door.png"/> diff --git a/templates/web/prod/actions/Bridge/index.twig b/templates/web/prod/actions/Bridge/index.twig index e04bbb44f0..b6380e1cc1 100644 --- a/templates/web/prod/actions/Bridge/index.twig +++ b/templates/web/prod/actions/Bridge/index.twig @@ -180,12 +180,14 @@ $(function() { $(".bridge_all_selector", $panel).bind("click", function() { var checkboxes = $('.bridge_element_selector', $panel); var $this = $(this); - var event = jQuery.Event("click"); - event.selector_all = true; checkboxes.each(function(i, checkbox){ if($(checkbox).is(':checked') !== $this.is(':checked')) + { + var event = jQuery.Event("click"); + event.selector_all = true; $(checkbox).trigger(event); + } }); }); diff --git a/templates/web/prod/actions/Bridge/wrapper.twig b/templates/web/prod/actions/Bridge/wrapper.twig index 4a608a0571..ca8e5d3cc9 100644 --- a/templates/web/prod/actions/Bridge/wrapper.twig +++ b/templates/web/prod/actions/Bridge/wrapper.twig @@ -35,12 +35,12 @@ </table> </div> <div class="api_content PNB"> - <div class="blockmenu PNB" style="height:40px;bottom:auto;"> - <div class="PNB10" style="bottom:0;top:0"> + <div class="blockmenu PNB" style="height:40px;bottom:auto;overflow:hidden;z-index:2000;"> + <div class="PNB10" style="bottom:0;top:0;"> {% block menu %}{% endblock %} </div> </div> - <div class="blockresponse PNB" style="top:40px;overflow:auto;"> + <div class="blockresponse PNB" style="top:40px;overflow:auto;overflow:hidden;z-index:1800;"> {% if error_message %} <div class="ui-corner-all error_box">{{ error_message }}</div> {% endif %} diff --git a/templates/web/prod/actions/Feedback/List-Share.html.twig b/templates/web/prod/actions/Feedback/List-Share.html.twig index 689cc07c6d..55697b79e7 100644 --- a/templates/web/prod/actions/Feedback/List-Share.html.twig +++ b/templates/web/prod/actions/Feedback/List-Share.html.twig @@ -3,20 +3,21 @@ {% else %} <div id="ListShare"> <div> - <h2>{% trans 'About Roles : ' %}</h2> + <h2 style="font-size:14px; margin-bottom:10px;"><b>{% trans 'About Roles : ' %}</b></h2> <p> - {% trans 'Admin can edit shares, modify content' %} + - {% trans 'Admin can edit shares, modify content' %} </p> <p> - {% trans 'Editor can modify content' %} + - {% trans 'Editor can modify content' %} </p> <p> - {% trans 'Access user have readonly access' %} + - {% trans 'Access user have readonly access' %} </p> </div> - <div> + <div style="margin-top:10px;"> <form name="list_share_user"> - <input type="text" class="search" name="user" value="" style="width:120px" /> + <label for="use">{% trans 'Find a user' %} : </label> + <input type="text" class="search" name="user" value="" style="width:180px" /> </form> </div> <div> @@ -27,11 +28,11 @@ <td> <img src="/skins/icons/user.png"/> </td> - <td> + <td style="width:150px;padding:5px;"> {{ owner.getUser().get_display_name() }} <input type="hidden" name="usr_id" value="{{ owner.getUser().get_id() }}" /> </td> - <td> + <td style="padding-right:10px;min-width:100px;"> {% if user.get_id() == owner.getUser(user).get_id() %} {% if owner.getRole() == constant('\\Entities\\UsrListOwner::ROLE_ADMIN') %} {% trans 'You are Admin' %} @@ -51,10 +52,12 @@ </select> {% endif %} </td> - <td> - <a href="#" class="deleter"> - <img src="/skins/prod/Push/close_badge.png" title="{% trans 'Remove' %}"/> - </a> + <td style="width:15px"> + {% if user.get_id() != owner.getUser(user).get_id() %} + <a href="#" class="deleter"> + <img src="/skins/prod/Push/close_badge.png" title="{% trans 'Remove' %}"/> + </a> + {% endif %} <a href="#" class="notifier"> <img src="/skins/prod/Push/Notify.png" title="{% trans 'Notify' %}"/> </a> @@ -86,6 +89,17 @@ return false; }); + $('.deleter', $container).bind('click', function(){ + var owner = $(this).closest('.owner'); + var usr_id = owner.find('input[name="usr_id"]').val(); + + unShareWith(usr_id, function(data){ + owner.remove(); + }); + + return false; + }); + function shareWith(usr_id, role) { @@ -120,6 +134,39 @@ }); } + function unShareWith(usr_id, callback) + { + + $.ajax({ + type: 'POST', + url: '/prod/lists/list/{{ list.getId() }}/unshare/' + usr_id + '/', + dataType: 'json', + data : {}, + beforeSend:function(){ + }, + success: function(data){ + if(data.success) + { + humane.info(data.message); + callback(data); + } + else + { + humane.error(data.message); + } + $dialog.refresh(); + + return; + }, + error: function(){ + return; + }, + timeout: function(){ + return; + } + }); + } + $autocompleter.autocomplete({ minLength: 2, source: function( request, response ) { diff --git a/templates/web/prod/actions/Feedback/ListsMacros.html.twig b/templates/web/prod/actions/Feedback/ListsMacros.html.twig index c51710fce4..3b7bb3fe20 100644 --- a/templates/web/prod/actions/Feedback/ListsMacros.html.twig +++ b/templates/web/prod/actions/Feedback/ListsMacros.html.twig @@ -176,14 +176,20 @@ {% endmacro %} -{% macro badgeReadonly(entry) %} +{% macro badgeReadonly(entry, role) %} <div class="badge"> + <input type="hidden" value="{{ entry.getUser().get_id() }}" name="id"> + {% if role >= constant('\\Entities\\UsrListOwner::ROLE_EDITOR') %} + <a class="deleter" href="#"> + <img src="/skins/prod/Push/close_badge.png"> + </a> + {% endif %} <table> <tr> - <td class="icon"> + <td> <img src="/skins/icons/user.png"/> </td> - <td class="infos"> + <td class="infos" > <span class="name">{{ entry.getUser().get_display_name() }}</span> <span class="subtite"></span> </td> diff --git a/templates/web/prod/actions/Feedback/list.html.twig b/templates/web/prod/actions/Feedback/list.html.twig index 4957773073..a784a9ab2a 100644 --- a/templates/web/prod/actions/Feedback/list.html.twig +++ b/templates/web/prod/actions/Feedback/list.html.twig @@ -6,7 +6,7 @@ <tr> <td> {% if list.getOwner(user).getRole() >= constant('\\Entities\\UsrListOwner::ROLE_EDITOR') %} - <form method="POST" action="/prod/lists/list/{{ list.getId() }}/update/"> + <form method="POST" name="SaveName" action="/prod/lists/list/{{ list.getId() }}/update/"> <label>{% trans 'List Name' %}</label> <input name="name" value="{{ list.getName() }}"/> <button> @@ -50,8 +50,9 @@ </p> </div> <div class="PNB" style="top:35px;overflow:auto;"> + {% set role = list.getOwner(user).getRole() %} {% for entry in list.getEntries() %} - {{ ListsMacros.badgeReadonly(entry) }} + {{ ListsMacros.badgeReadonly(entry, role) }} {% endfor %} </div> </div> @@ -90,12 +91,26 @@ </button> </div> <div class="PNB" style="top:40px;height:120px;bottom:auto;"> - <table style="table-layout:fixed;"> + <table style="table-layout:fixed;width:100%;"> <tr> - <td style="width:20%;"> - <label> - {% trans 'Activite' %} - </label> + <td> + <label>{% trans 'Activite' %}</label> + </td> + <td> + <label>{% trans 'Template' %}</label> + </td> + <td > + <label>{% trans 'Company' %}</label> + </td> + <td > + <label>{% trans 'Country' %}</label> + </td> + <td > + <label>{% trans 'Position' %}</label> + </td> + </tr> + <tr> + <td> <select size="5" multiple="multiple" name="Activity[]" style="width:80%;"> <option value="">{% trans 'All' %}</option> {% for Activity in query.getRelatedActivities() %} @@ -103,10 +118,7 @@ {% endfor %} </select> </td> - <td style="width:20%;"> - <label> - {% trans 'Template' %} - </label> + <td> <select size="5" multiple="multiple" name="Template[]" style="width:80%;"> <option value="">{% trans 'All' %}</option> {% for Template in query.getRelatedTemplates() %} @@ -114,10 +126,7 @@ {% endfor %} </select> </td> - <td style="width:20%;"> - <label> - {% trans 'Company' %} - </label> + <td> <select size="5" multiple="multiple" name="Company[]" style="width:80%;"> <option value="">{% trans 'All' %}</option> {% for Company in query.getRelatedCompanies() %} @@ -125,10 +134,8 @@ {% endfor %} </select> </td> - <td style="width:20%;"> - <label> - {% trans 'Country' %} - </label> + <td> + <select size="5" multiple="multiple" name="Country[]" style="width:80%;"> <option value="">{% trans 'All' %}</option> {% for Code, Country in query.getRelatedCountries() %} @@ -136,10 +143,8 @@ {% endfor %} </select> </td> - <td style="width:20%;"> - <label> - {% trans 'Position' %} - </label> + <td > + <select size="5" multiple="multiple" name="Position[]" style="width:80%;"> <option value="">{% trans 'All' %}</option> {% for Position in query.getRelatedPositions() %} @@ -168,5 +173,12 @@ <script type="text/javascript"> $(document).ready(function(){ p4.ListManager.workOn({{ list.getId() }}); + $("#ListManager .readonly .badge .deleter").click(function(){ + var badge = $(this).closest(".badge"); + var usr_id = badge.find('input[name="id"]').val(); + p4.ListManager.getList().removeUser(usr_id, function(list, data){ + badge.remove(); + }); + }); }); </script> diff --git a/templates/web/prod/actions/Feedback/lists-all.html.twig b/templates/web/prod/actions/Feedback/lists-all.html.twig index 710f164e35..bdfd3c0709 100644 --- a/templates/web/prod/actions/Feedback/lists-all.html.twig +++ b/templates/web/prod/actions/Feedback/lists-all.html.twig @@ -1,16 +1,18 @@ <div class="PNB10 lists"> <h1>{% trans 'Lists' %}</h1> - <a href="/prod/lists/list/" class="list_adder link"> - {% trans "Add" %} - </a> - <a href="/prod/lists/all/" class="list_refresh link"> - {% trans "Refresh" %} - </a> + <span class="action"> + <a href="/prod/lists/list/" class="list_adder link"> + {% trans "Add" %} + </a> + <a href="/prod/lists/all/" class="list_refresh link"> + {% trans "Refresh" %} + </a> + </span> <ul class="lists"> {% for list in lists %} {% set length = '<span class="counter">' ~ list.getEntries().count() ~ '</span>' %} - <li class="list"> + <li class="list" style="padding:2px;"> <a href="/prod/push/edit-list/{{ list.getId() }}/" class="list_link"> {% if list.getOwner(user).getRole() >= constant('\\Entities\\UsrListOwner::ROLE_EDITOR') %} <img src="/skins/prod/Push/list-icon.png" /> diff --git a/templates/web/prod/actions/Push.html.twig b/templates/web/prod/actions/Push.html.twig index 1cd06fb48a..90b9bf04dd 100644 --- a/templates/web/prod/actions/Push.html.twig +++ b/templates/web/prod/actions/Push.html.twig @@ -9,41 +9,58 @@ {% endif %} </div> <div class="PNB content" style="top:150px;"> - <div class="PNB10" style="bottom:0;height:90px;"> + <div class="PNB10" style="bottom:0;height:150px;"> <h1>{% trans 'Grant rights' %}</h1> <ul class="general_togglers"> {% if context == 'Feedback' %} <li> - <a class="general_toggler" feature="agree" href="#"> - <img src="/skins/prod/Push/contributeur_menu.png" /> + <button type="button" class="general_toggler" feature="agree"> {% trans 'Contributor' %} - </a> + </button> </li> <li> - <a class="general_toggler" feature="see_others" href="#"> - <img src="/skins/prod/Push/see_other_menu.png" /> + <button type="button" class="general_toggler" feature="see_others"> {% trans 'See others' %} - </a> + </button> </li> {% endif %} <li> - <a class="general_toggler" feature="HD" href="#"> - <img src="/skins/prod/Push/download_menu.png" /> + <button type="button" class="general_toggler" feature="HD"> {% trans 'HD Download' %} - </a> + </button> </li> </ul> </div> - <div class="PNB10" style="top:110px;overflow-y:auto;"> + <div class="PNB10" style="top:150px;overflow-y:auto;"> <h1> {% trans 'Lists' %} </h1> - <a href="#" class="link list_manager"> - {% trans 'List Manager' %} - </a> - <ul> + <span style="width:100%;display:block;text-align:center;"> + <a href="#" class="link list_manager"> + <b>{% trans 'List Manager' %}</b> + </a> + </span> + <div> + <form class="list_saver"> + <table> + <tbody> + <tr> + <td> + <input name="name" placeholder="{% trans 'Save this list' %}"/> + </td> + <td> + <button> + <img src="/skins/prod/Push/save_list_as.png" /> + </button> + </td> + </tr> + </tbody> + </table> + </form> + </div> + <ul class="list"> {% for list in lists %} - <li> + <li class="list" style="padding:2px;"> <a class="list_loader" href="/prod/push/list/{{ list.getId() }}/"> {% if list.getOwner(user).getRole() >= constant('\\Entities\\UsrListOwner::ROLE_EDITOR') %} <img src="/skins/prod/Push/list-icon.png" /> @@ -61,17 +78,19 @@ </div> </div> <div class="PNB" style="left:205px;"> - <div class="PNB" style="height:150px;bottom:auto;"> + <div class="PNB" style="height:150px;bottom:auto;line-height:26px"> <div class="PNB10"> <table> - <tr> + <tr style="vertical-align:top;"> <td> - <input class="search" name="users-search" placeholder="{% trans 'Users' %}" type="text" /> - - <a href="/prod/push/add-user/" class="user_adder link">{% trans 'Add user' %}</a> - - <button class="FeedbackSend">{% trans "Send" %}</button> - <p> + <div id="find-user"> + <input class="search" name="users-search" placeholder="{% trans 'Users' %}" type="text" style="width:210px;"/> + <br/> + {% trans 'Select a user in the list'%}, <br/> + {% trans 'or' %} + <a href="/prod/push/add-user/" class="user_adder link">{% trans 'Add user' %}</a> + </div> + <p id="recommanded-users"> {% set recommendation = '' %} @@ -80,8 +99,10 @@ {% for user in RecommendedUsers %} {% if total <= 4 or loop.index <= 4 %} - {% if recommendation != '' %} + {% if recommendation != '' and not loop.last %} {% set recommendation = recommendation ~ ', ' %} + {% elseif recommendation != '' and loop.last %} + {% set recommendation = recommendation %} {% endif %} {% set recommendation = recommendation ~ ' <a href="#" class="recommended_users" tooltipsrc="/prod/tooltip/user/' @@ -107,6 +128,7 @@ {% if recommendation != '' %} + {% set recommendation = '<br/>' ~ recommandation %} {% trans %} Please consider send this validation to the following users : {{ recommendation }} {% endtrans %} @@ -134,7 +156,7 @@ </table> </div> </td> - <td style="width:600px;"> + <td style="width:550px;"> <p> {% if context == 'Push' %} {% trans 'Push::unpush permet d\'envoyer un lot d\'image a des destinataires' %} @@ -153,12 +175,6 @@ <table> <tr> <td> - <form class="list_saver"> - <input name="name" placeholder="{% trans 'Save this list' %}"/> - <button> - <img src="/skins/prod/Push/save_list_as.png" /> - </button> - </form> </td> <td class="options"> <button class="select-all">{% trans 'Select all' %}</button> @@ -183,6 +199,11 @@ <div class="PNB badges"> </div> </form> + <div class="PNB10 footer"> + <button class="FeedbackSend"> + {% trans "Send" %} + </button> + </div> </div> </div> </div> @@ -237,5 +258,7 @@ p4.Feedback = new Feedback($('#PushBox'), '{{ context }}'); p4.ListManager = new ListManager($('#ListManager')); + $(".general_toggler").button(); + }); </script> diff --git a/templates/web/prod/actions/edit_default.twig b/templates/web/prod/actions/edit_default.twig index 4166c71029..79a5941128 100644 --- a/templates/web/prod/actions/edit_default.twig +++ b/templates/web/prod/actions/edit_default.twig @@ -82,7 +82,10 @@ <img id="editSGtri_{{i}}" style="visibility:hidden;" src="/skins/prod/{{cssfile}}/images/suggested.gif" /> <img src="/skins/icons/info.gif" tooltipsrc="/prod/tooltip/metas/FieldInfos/{{field.get_databox().get_sbas_id()}}/{{field.get_id()}}/" class="fieldTips" alt=""/> {% if field.get_dces_element %} - <img src="/skins/icons/dublincore.png" tooltipsrc="/prod/tooltip/DCESInfos/{{field.get_databox().get_sbas_id()}}/{{field.get_id()}}/" alt="{% trans 'Ce champ est decrit comme un element DublinCore' %}" class="DCESTips" alt=""/> + <img src="/skins/icons/dublincore.png" tooltipsrc="/prod/tooltip/DCESInfos/{{field.get_databox().get_sbas_id()}}/{{field.get_id()}}/" alt="{% trans 'Ce champ est decrit comme un element DublinCore' %}" class="DCESTips" /> + {% endif %} + {% if field.get_thumbtitle %} + <img src="/skins/icons/titre16.png" title="{% trans 'This field is represent the title of the document' %}" /> {% endif %} <span id="spanidEditFieldBox_{{i}}"> {{field.get_name()}} {% if field.is_required() %}<span style="font-weight:bold;font-size:16px;"> * </span>{% endif %} : diff --git a/templates/web/prod/index.html.twig b/templates/web/prod/index.html.twig index 197f049787..4cb9d40936 100644 --- a/templates/web/prod/index.html.twig +++ b/templates/web/prod/index.html.twig @@ -2,7 +2,7 @@ {% set unique_id = module.getRandom() %} {% for base in search_datas['bases'] %} {% set sbas_id = base['sbas_id'] %} -<div class="sbas_list sbas_{{sbas_id}}"> +<div class="sbas_list sbas_{{sbas_id}}" style="margin-bottom:10px;"> <input type="hidden" name="reference" value="{{sbas_id}}"/> <div class="clksbas" style="text-align:center;"> <input type="checkbox" checked style="display:none" id="sbasChkr_{{sbas_id}}_{{unique_id}}" class="sbasChkr_{{sbas_id}}" /> @@ -233,35 +233,41 @@ <div id="idFrameC" class="PNB" style="right:auto;width:{{w1}}%;"> <div class="PNB wrapper"> <div class="tabs ui-tabs"> - <ul class="PNB ui-tabs-nav ui-helper-reset" style="bottom:auto;height:30px;"> + <ul class="icon-menu ui-tabs-nav ui-helper-reset"> <li class="ui-tabs-selected ui-corner-top"> <a href="#baskets"> - {% trans 'phraseanet:: panier' %} + <img src="/skins/icons/workzone32.png" title="{% trans 'phraseanet:: panier' %}"/> <span id="basket_menu_trigger" style="cursor:pointer;padding:3px;font-size:12px;">▼</span> </a> </li> {% if GV_thesaurus %} - <li> + <li class="proposals_WZ"> <a href="#proposals"> - <img class="activeproposals" src="/skins/icons/button-red.png" - style="display:none;vertical-align:middle;margin:0 3px;" title="{% trans 'phraseanet:: propositions' %}" /> - {% trans 'phraseanet:: propositions' %} + <img class="proposals_off" src="/skins/icons/proposition_off32.png" title="{% trans 'phraseanet:: propositions' %}"/> + <img class="proposals_on" src="/skins/icons/proposition_on32.png" title="{% trans 'phraseanet:: propositions' %}"/> </a> </li> <li> - <a href="#thesaurus_tab">{% trans 'phraseanet:: thesaurus' %}</a> + <a href="#thesaurus_tab"> + <img src="/skins/icons/thesaurus_32.png" title="{% trans 'phraseanet:: thesaurus' %}"/> + </a> </li> {% endif %} + <li style="float:right;"> + <a href="#" class="escamote" style="margin:8px 0;"> + <img src="/skins/icons/workzoneEscamote.png" title="{% trans 'Close the WorkZone' %}"/> + </a> + </li> </ul> - <div id="baskets" class="PNB ui-tabs-panel ui-accordion" style="top:30px;"> + <div id="baskets" class="PNB ui-tabs-panel ui-accordion" style="top:52px;"> {% import 'prod/WorkZone/Macros.twig' as WorkZoneMacros %} {{WorkZoneMacros.make_bloc(WorkZone)}} </div> {% if GV_thesaurus %} - <div id="proposals" class="PNB ui-tabs-panel ui-tabs-hide" style="top:30px;" + <div id="proposals" class="PNB ui-tabs-panel ui-tabs-hide" style="top:52px;" ondblclick="return(thesau_dblclickThesaurus(event));" onclick="return(thesau_clickThesaurus(event));"> </div> - <div id="thesaurus_tab" class="PNB ui-tabs-panel ui-tabs-hide" style="top:30px;"> + <div id="thesaurus_tab" class="PNB ui-tabs-panel ui-tabs-hide" style="top:52px;"> <div id="THPD_tabs"> <ul> <li><a href="#THPD_T"><span>{% trans 'prod::thesaurusTab:thesaurus' %}</span></a></li> @@ -423,15 +429,12 @@ <div class="adv_options" style="display:none;"> - <div> - <input onclick="reset_adv_search();" type="button" value="{% trans 'Re-initialiser' %}" class="input-button"/> - </div> <div> <table style="width:100%;table-layout:fixed;"> <tr> <td style="width:50%;vertical-align:top;"> <div class="sbasglob ui-corner-all"> - <div style="text-align:center;margin:0 10px;"> + <div style="text-align:center;margin:10px;"> <input class="input-button" type="button" value="{% trans 'boutton:: selectionner toutes les bases' %}" onclick="checkBases(true);"/> <input class="input-button" type="button" @@ -443,6 +446,9 @@ <td style="width:50%;vertical-align:top;"> <div id="sbasfiltercont" class="ui-corner-all"> <div> + <div style="margin:10px 0;"> + <input onclick="reset_adv_search();" type="button" value="{% trans 'Re-initialiser' %}" class="input-button"/> + </div> {% if registry.get('GV_sphinx') %} {% trans 'Trier par ' %} <select name="sort"> @@ -461,7 +467,7 @@ <option value=""></option> {% for field_id, field in search_datas['fields'] %} {% if field['type'] == 'date' %} - <option class="field_switch field_{{field['sbas']|implode(' field_')}}" value="{{field_id}}">{{ field['fieldname'] }}</option> + <option class="field_switch field_{{field['sbas']|implode(' field_')}}" value="{{field_id}}" {% if registry.get('GV_phrasea_sort') == field['fieldname'] %}selected="selected"{% endif %}>{{ field['fieldname'] }}</option> {% endif %} {% endfor %} </select> @@ -620,14 +626,14 @@ <span class="verticalbuttonset"> <span> - <button class="default_action TOOL_disktt_btn results_window"> - <img src="/skins/prod/000000/images/disktt_history.gif"/> {% trans 'action : exporter' %} + <button class="default_action TOOL_disktt_btn results_window" style="background: url('/skins/prod/000000/images/disktt_history.gif') no-repeat 2px center; padding-left:16px;"> + {% trans 'action : exporter' %} </button> <button class="trigger">{% trans 'Select an action' %}</button> </span> <div class="submenu"> - <button class="TOOL_print_btn results_window"> - <img src="/skins/prod/000000/images/print_history.gif"/> {% trans 'action : print' %} + <button class="TOOL_print_btn results_window" style="background: url('/skins/prod/000000/images/print_history.gif') #313131 no-repeat 2px center; padding-left:16px;"> + {% trans 'action : print' %} </button> </div> </span> @@ -659,8 +665,8 @@ <span> {% for action in actions %} {% if loop.first %} - <button class="default_action {{ action.class }} results_window"> - <img src="{{ action.icon }}"/> {{ action.label }} + <button class="default_action {{ action.class }} results_window" style="background: url('{{ action.icon }}') no-repeat 2px center; padding-left:16px;"> + {{ action.label }} </button> {% endif %} {% endfor %} @@ -669,8 +675,8 @@ <div class="submenu" > {% for action in actions %} {% if not loop.first %} - <button class="{{ action.class }} results_window"> - <img src="{{ action.icon }}"/> {{ action.label }} + <button class="{{ action.class }} results_window" style="background: url('{{ action.icon }}') #313131 no-repeat 2px center; padding-left:16px;"> + {{ action.label }} </button> {% endif %} {% endfor %} @@ -689,23 +695,19 @@ {% if user.ACL().has_right('push') and user.ACL().has_right('bas_chupub') %} <span class="verticalbuttonset"> <span> - <button class="TOOL_pushdoc_btn default_action results_window"> - <img src="/skins/icons/push16.png"/> + <button class="TOOL_pushdoc_btn default_action results_window" style="background: url('/skins/icons/push16.png') no-repeat 2px center; padding-left:16px;"> {% trans 'action : push' %} </button> <button class="trigger">{% trans 'Select an action' %}</button> </span> <div class="submenu"> - <button class="TOOL_feedback_btn results_window"> - <img src="/skins/icons/feedback16.png"/> + <button class="TOOL_feedback_btn results_window" style="background: url('/skins/icons/feedback16.png') #313131 no-repeat 2px center; padding-left:16px;"> {% trans 'Feedback' %} </button> - <button class="TOOL_bridge_btn results_window"> - <img src="/skins/icons/door.png"/> + <button class="TOOL_bridge_btn results_window" style="background: url('/skins/icons/door.png') #313131 no-repeat 2px center; padding-left:16px;"> {% trans 'action : bridge' %} </button> - <button class="TOOL_publish_btn results_window"> - <img src="/skins/icons/rss16.png"/> + <button class="TOOL_publish_btn results_window" style="background: url('/skins/icons/rss16.png') #313131 no-repeat 2px center; padding-left:16px;"> {% trans 'action : publier' %} </button> </div> @@ -713,15 +715,13 @@ {% elseif user.ACL().has_right('push') %} <span class="verticalbuttonset"> <span> - <button class="TOOL_pushdoc_btn default_action results_window"> - <img src="/skins/icons/push16.png"/> + <button class="TOOL_pushdoc_btn default_action results_window" style="background: url('/skins/icons/push16.png') no-repeat 2px center; padding-left:16px;"> {% trans 'action : push' %} </button> <button class="trigger">{% trans 'Select an action' %}</button> </span> <div class="submenu"> - <button class="TOOL_feedback_btn results_window"> - <img src="/skins/icons/feedback16.png"/> + <button class="TOOL_feedback_btn results_window" style="background: url('/skins/icons/feedback16.png') #313131 no-repeat 2px center; padding-left:16px;"> {% trans 'Feedback' %} </button> </div> @@ -729,15 +729,13 @@ {% elseif user.ACL().has_right('bas_chupub') %} <span class="verticalbuttonset"> <span> - <button class="TOOL_bridge_btn default_action results_window"> - <img src="/skins/icons/door.png"/> + <button class="TOOL_bridge_btn default_action results_window" style="background: url('/skins/icons/door.png') #313131 no-repeat 2px center; padding-left:16px;"> {% trans 'action : bridge' %} </button> <button class="trigger">{% trans 'Select an action' %}</button> </span> <div class="submenu"> - <button class="TOOL_publish_btn results_window"> - <img src="/skins/icons/rss16.png"/> + <button class="TOOL_publish_btn results_window" style="background: url('/skins/icons/rss16.png') #313131 no-repeat 2px center; padding-left:16px;"> {% trans 'action : publier' %} </button> </div> @@ -745,15 +743,14 @@ {% endif %} {% if user.ACL().has_right('doctools') %} <span class="buttonset"> - <button class="TOOL_imgtools_btn results_window"> - <img src="/skins/prod/000000/images/imgtools_history.gif"/> {% trans 'action : outils' %} + <button class="TOOL_imgtools_btn results_window" style="background: url('/skins/prod/000000/images/imgtools_history.gif') no-repeat 2px center; padding-left:16px;"> + {% trans 'action : outils' %} </button> </span> {% endif %} {% if user.ACL().has_right('deleterecord') %} <span class="buttonset"> - <button class="TOOL_trash_btn results_window"> - <img src="/skins/icons/delete.png"/> + <button class="TOOL_trash_btn results_window" style="background: url('/skins/icons/delete.png') no-repeat 2px center; padding-left:16px;" > {% trans 'action : supprimer' %} </button> </span> diff --git a/templates/web/prod/preview/tools.html b/templates/web/prod/preview/tools.html index 2f5fda19f3..e9888ad449 100644 --- a/templates/web/prod/preview/tools.html +++ b/templates/web/prod/preview/tools.html @@ -2,7 +2,7 @@ {% if (record.is_from_basket is empty) and user.ACL().has_right_on_base(record.get_base_id(), 'canputinalbum') %} <div sbas="{{record.get_sbas_id()}}" id="PREV_BASKADD_{{record.get_serialize_key}}" class="baskAdder" title="{% trans 'action : ajouter au panier' %}" - onclick="evt_add_in_chutier('{{record.get_base_id()}}','{{record.get_record_id()}}',false,this);return(false);"></div> + onclick="evt_add_in_chutier('{{record.get_base_id()}}','{{record.get_record_id()}}',false);return(false);"></div> {% endif %} <div class="printer" title="'{% trans 'action : print' %}" diff --git a/templates/web/prod/results/record.html b/templates/web/prod/results/record.html index 1629709fa6..4cc47df8de 100644 --- a/templates/web/prod/results/record.html +++ b/templates/web/prod/results/record.html @@ -7,7 +7,7 @@ {% if entry_id %} <div style="width:{{th_size+30}}px;" sbas="{{sbas_id}}" id="{{ prefix|default('IMGT') }}_{{record.get_sbas_id}}_{{record.get_record_id}}" - class="IMGT diapo grouping type-{{record.get_type}}" + class="IMGT diapo type-{{record.get_type}}" onDblClick="openPreview('FEED',{{record.get_number()}},{{entry_id}});"> {% elseif record.is_grouping() %} <div style="width:{{th_size+30}}px;" sbas="{{sbas_id}}" diff --git a/templates/web/prod/thesaurus.js b/templates/web/prod/thesaurus.js index 994a2a5701..b8af44f330 100644 --- a/templates/web/prod/thesaurus.js +++ b/templates/web/prod/thesaurus.js @@ -438,7 +438,7 @@ function T_search(menuItem, menu, cmenu, e, label) } } - $('form[name="phrasea_query"] input[name="query"]').val(v); + $('form[name="phrasea_query"] input[name="qry"]').val(v); checkFilters(); newSearch(); } @@ -635,6 +635,7 @@ function TXdblClick(e) { var sbid = tid.split(".")[1]; var term = $(x).hasClass('separator') ? $(x).prev().text() : $(x).text(); + console.log('do thes'); doThesSearch('T', sbid, term, null); } break; @@ -682,21 +683,21 @@ function doThesSearch(type, sbid, term, field) $('#adv_search input[name="bas[]"]').each( function(i,n) { - var base_id = $(n).val(); + var base_id = $(n).val(); - bas2sbas["b"+base_id].ckobj = this; - bas2sbas["b"+base_id].waschecked = this.checked; - if(bas2sbas["b"+base_id].sbid == sbid) - { - if(this.checked) - nck++; + bas2sbas["b"+base_id].ckobj = this; + bas2sbas["b"+base_id].waschecked = this.checked; + if(bas2sbas["b"+base_id].sbid == sbid) + { + if(this.checked) + nck++; + } + else + { + this.checked = false; + } } - else - { - this.checked = false; - } - } -); + ); if(nck == 0 || type=='C') { @@ -711,7 +712,7 @@ function doThesSearch(type, sbid, term, field) v = '*:"' + term.replace("(", "[").replace(")", "]") + '"'; else v = '"' + term + '" IN ' + field; - $('form[name="phrasea_query"] input[name="query"]').val(v); + $('form[name="phrasea_query"] input[name="qry"]').val(v); checkFilters(); newSearch(); } diff --git a/templates/web/report/ajax_data_content.twig b/templates/web/report/ajax_data_content.twig index 896ec76520..966a2d75ae 100644 --- a/templates/web/report/ajax_data_content.twig +++ b/templates/web/report/ajax_data_content.twig @@ -9,7 +9,7 @@ return( false ); }); - $(document).ready(function(){ + /*$(document).ready(function(){ //set slider position if(!jQuery.support.boxModel) { @@ -19,7 +19,8 @@ { $(".horizontal-scroller:visible").css("position", "fixed"); } - }); + });*/ + </script> {% if is_infouser %} diff --git a/templates/web/report/ajax_report_content.twig b/templates/web/report/ajax_report_content.twig index fe79429105..07f0aa0ff7 100644 --- a/templates/web/report/ajax_report_content.twig +++ b/templates/web/report/ajax_report_content.twig @@ -9,7 +9,7 @@ </div> {% for key, value in selection %} <div id="tab-{{ key }}-{{ param.tbl }}"> - <div class="load" style="margin-top:40px;padding-top:10px;"> + <div class="load"> {% block ajax_data_content %}{% endblock %} </div> <form style="display:none;" onsubmit="return false;" class="report_form"> @@ -23,10 +23,10 @@ </fieldset> <fieldset style="float:right;border:none;text-align:right;"> <div style="clear:right;"> + <label for="limit" style="font-size:10px"><i>nombre de ligne(s) par page</i></label> <input type="text" name="limit" value="30" size="2" class="enterformsubmiter"/> <input type="button" name="go" value ="ok" class="submiter" /> </div> - <label for="limit" style="font-size:10px;float:right;"><i>nombre de ligne(s) par page</i></label> </fieldset> <input type="hidden" name="tbl" value ="{{ param['tbl'] }}"/> <input type="hidden" name="dmin" value ="{{ param['dmin'] }}"/> diff --git a/templates/web/report/listColumn.twig b/templates/web/report/listColumn.twig index b9b05686aa..7803375922 100644 --- a/templates/web/report/listColumn.twig +++ b/templates/web/report/listColumn.twig @@ -1,4 +1,6 @@ {% block listColumn %} + + <div class='modalwrapper' style="height:400px; overflow-y: auto"> <div class="columnjson_title">{% trans "Cochez les cases correspondantes aux colonnes que vous desirez voire apparaitre dans le report" %} </div> <br /> <div> <div class="columnjson_link_box"> @@ -29,6 +31,7 @@ {% endif %} {% endfor %} </form> + </div> <script type="text/javascript"> $('a#on').click(function(){ $(this).closest('#dialog').find(':checkbox').attr('checked', true); diff --git a/templates/web/setup/step2.html.twig b/templates/web/setup/step2.html.twig index d049de1e4f..8634998f94 100644 --- a/templates/web/setup/step2.html.twig +++ b/templates/web/setup/step2.html.twig @@ -299,6 +299,11 @@ <tr> <td> <p> + {% if error is not none %} + <p class='error'> + {{error}} + </p> + {% endif %} {% trans %} Bonjour, vous etes sur le point d'installer Phraseanet. {% endtrans %} @@ -322,10 +327,10 @@ {% endif %} </td> </tr> - {% for warning in warnings %} - <tr> - <td> - <img src="/skins/icons/alert.png" /> {{ warning }} + {% for warning in warnings %} + <tr style='border-top:1px dotted grey;{{ loop.last ? " border-bottom:1px dotted grey;" : " " }}'> + <td class="warning"> + {{ warning }} </td> </tr> {% endfor %} @@ -341,7 +346,7 @@ <tr> <td> <p> - <a href="https://docs.phraseanet.com/Admin/" target="_blank"> + <a href="https://docs.phraseanet.com/3.6/Admin/" target="_blank"> {% trans 'Prerequisite and Configuration' %} </a> </p> diff --git a/www/admin/collection.php b/www/admin/collection.php index 2896a7c152..24b89917ee 100644 --- a/www/admin/collection.php +++ b/www/admin/collection.php @@ -292,6 +292,7 @@ phrasea::headers(); }, success: function(data){ alert(data.message); + return; } }); diff --git a/www/admin/demand.php b/www/admin/demand.php index 0e88ac3e5d..0d4153b76e 100644 --- a/www/admin/demand.php +++ b/www/admin/demand.php @@ -1,5 +1,4 @@ <?php - /* * This file is part of Phraseanet * @@ -112,17 +111,16 @@ if (!is_null($templates) || !is_null($parm['deny']) || !is_null($parm['accept']) if (!isset($done[$usr])) $done[$usr] = array(); - foreach($base_ids as $base_id) + foreach ($base_ids as $base_id) { - $done[$usr][$base_id] = true; + $done[$usr][$base_id] = true; } $sql = "DELETE FROM demand - WHERE usr_id = :usr_id AND (base_id = ".implode(' OR base_id = ', $base_ids).")"; + WHERE usr_id = :usr_id AND (base_id = " . implode(' OR base_id = ', $base_ids) . ")"; $stmt = $appbox->get_connection()->prepare($sql); $stmt->execute(array(':usr_id' => $usr)); $stmt->closeCursor(); - } $sql = "UPDATE demand SET en_cours=0, refuser=1, date_modif=now() @@ -153,11 +151,11 @@ if (!is_null($templates) || !is_null($parm['deny']) || !is_null($parm['accept']) $user->ACL()->give_access_to_sbas(array(phrasea::sbasFromBas($bas))); $rights = array( - 'canputinalbum'=>'1' - ,'candwnldhd'=> ($options[$usr][$bas]['HD'] ? '1' : '0') - ,'nowatermark'=>($options[$usr][$bas]['WM'] ? '0':'1') - ,'candwnldpreview'=>'1' - ,'actif'=>'1' + 'canputinalbum' => '1' + , 'candwnldhd' => ($options[$usr][$bas]['HD'] ? '1' : '0') + , 'nowatermark' => ($options[$usr][$bas]['WM'] ? '0' : '1') + , 'candwnldpreview' => '1' + , 'actif' => '1' ); $user->ACL()->give_access_to_base(array($bas)); @@ -228,7 +226,15 @@ if (!is_null($templates) || !is_null($parm['deny']) || !is_null($parm['accept']) bodySize.y = $(window).height(); bodySize.x = $(window).width(); - $('#tab_demandes').height(bodySize.y-80) + + var $heightd = $('#tab_demandes').outerHeight(true); + var maxSize = (bodySize.y - 120); + + if($heightd > maxSize) + { + $('#tab_demandes').height(maxSize); + } + } $(document).ready(function(){ @@ -238,77 +244,77 @@ if (!is_null($templates) || !is_null($parm['deny']) || !is_null($parm['accept']) }); }); - function checkDeny(el) + function checkDeny(el) + { + if($(el)[0].checked) { - if($(el)[0].checked) - { - $('.disabler_'+$(el).attr('id').substring(5)).removeAttr('checked'); - } - else - { - } + $('.disabler_'+$(el).attr('id').substring(5)).removeAttr('checked'); } - - function checkAdd(el) + else { - if($(el)[0].checked) - { - $('#accept_'+$(el).attr('id').substring(10))[0].checked = true; - $('#deny_'+$(el).attr('id').substring(10))[0].checked = false; - } } - function checkRemove(el) + } + + function checkAdd(el) + { + if($(el)[0].checked) + { + $('#accept_'+$(el).attr('id').substring(10))[0].checked = true; + $('#deny_'+$(el).attr('id').substring(10))[0].checked = false; + } + } + function checkRemove(el) + { + if(!$(el)[0].checked) + $('.disabler_'+$(el).attr('id').substring(7)).each(function(){$(this)[0].checked = false;}); + else + $('#deny_'+$(el).attr('id').substring(7))[0].checked = false; + } + + function modelChecker(usr) + { + var val = $('#model_'+usr)[0].value; + + var bool = false; + if(!isNaN(val) && val!='') + bool = true; + + if(bool) + $('#sub_usr_'+usr).slideToggle('slow'); + else + $('#sub_usr_'+usr).slideToggle('slow'); + + if(bool) + $('.checker_'+usr).attr('disabled','disabled'); + else + $('.checker_'+usr).removeAttr('disabled'); + + } + + function checkAll(that) + { + var bool = true; + var first = true; + $('.'+that+'_checker:not(:disabled)').each(function(){ + // if(!$(this)[0].disabled) + // { + if(first && $(this)[0].checked) + bool = false; + $(this)[0].checked = bool; + first = false; + if(that == 'deny') { - if(!$(el)[0].checked) - $('.disabler_'+$(el).attr('id').substring(7)).each(function(){$(this)[0].checked = false;}); - else - $('#deny_'+$(el).attr('id').substring(7))[0].checked = false; - } - - function modelChecker(usr) - { - var val = $('#model_'+usr)[0].value; - - var bool = false; - if(!isNaN(val) && val!='') - bool = true; - - if(bool) - $('#sub_usr_'+usr).slideToggle('slow'); - else - $('#sub_usr_'+usr).slideToggle('slow'); - - if(bool) - $('.checker_'+usr).attr('disabled','disabled'); - else - $('.checker_'+usr).removeAttr('disabled'); - - } - - function checkAll(that) - { - var bool = true; - var first = true; - $('.'+that+'_checker:not(:disabled)').each(function(){ - // if(!$(this)[0].disabled) - // { - if(first && $(this)[0].checked) - bool = false; - $(this)[0].checked = bool; - first = false; - if(that == 'deny') - { - checkDeny($(this)); - } - if(that == 'accept_hd') - checkAdd(this) - if(that == 'watermark') - checkAdd(this) - if(that == 'accept') - checkRemove(this) - // } - }); + checkDeny($(this)); } + if(that == 'accept_hd') + checkAdd(this) + if(that == 'watermark') + checkAdd(this) + if(that == 'accept') + checkRemove(this) + // } + }); + } </script> <style> #tooltip{ @@ -322,218 +328,218 @@ if (!is_null($templates) || !is_null($parm['deny']) || !is_null($parm['accept']) <body><form method='post' action='demand.php'> - <?php - $out = ""; +<?php +$out = ""; - $lastMonth = time() - (3 * 4 * 7 * 24 * 60 * 60); +$lastMonth = time() - (3 * 4 * 7 * 24 * 60 * 60); - $sql = "DELETE FROM demand WHERE date_modif < :date"; - $stmt = $appbox->get_connection()->prepare($sql); - $stmt->execute(array(':date' => date('Y-m-d', $lastMonth))); - $stmt->closeCursor(); +$sql = "DELETE FROM demand WHERE date_modif < :date"; +$stmt = $appbox->get_connection()->prepare($sql); +$stmt->execute(array(':date' => date('Y-m-d', $lastMonth))); +$stmt->closeCursor(); - $usr_id = $session->get_usr_id(); - $user = User_Adapter::getInstance($usr_id, $appbox); - $baslist = array_keys($user->ACL()->get_granted_base(array('canadmin'))); +$usr_id = $session->get_usr_id(); +$user = User_Adapter::getInstance($usr_id, $appbox); +$baslist = array_keys($user->ACL()->get_granted_base(array('canadmin'))); - $models = '<option value="">aucun</option>'; - $sql = 'SELECT usr_id, usr_login FROM usr WHERE model_of = :usr_id'; +$models = '<option value="">aucun</option>'; +$sql = 'SELECT usr_id, usr_login FROM usr WHERE model_of = :usr_id'; - $stmt = $appbox->get_connection()->prepare($sql); - $stmt->execute(array(':usr_id' => $session->get_usr_id())); - $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); - $stmt->closeCursor(); +$stmt = $appbox->get_connection()->prepare($sql); +$stmt->execute(array(':usr_id' => $session->get_usr_id())); +$rs = $stmt->fetchAll(PDO::FETCH_ASSOC); +$stmt->closeCursor(); - foreach ($rs as $row) - { - $models .= '<option value="%stemplate%s_' . $row['usr_id'] . '">' . $row['usr_login'] . '</option>'; - } +foreach ($rs as $row) +{ + $models .= '<option value="%stemplate%s_' . $row['usr_id'] . '">' . $row['usr_login'] . '</option>'; +} - $sql = "SELECT demand.date_modif,demand.base_id,usr.usr_id , usr.usr_login ,usr.usr_nom,usr.usr_prenom, +$sql = "SELECT demand.date_modif,demand.base_id,usr.usr_id , usr.usr_login ,usr.usr_nom,usr.usr_prenom, usr.societe,CONCAT(usr.usr_nom,' ',usr.usr_prenom,'\n',fonction,' (',societe,')') AS info FROM (demand INNER JOIN usr on demand.usr_id=usr.usr_id AND demand.en_cours=1) WHERE (base_id='" . implode("' OR base_id='", $baslist) . "') ORDER BY demand.usr_id DESC,demand.base_id ASC"; - $stmt = $appbox->get_connection()->prepare($sql); - $stmt->execute(); - $rs = $stmt->fetchAll(PDO::FETCH_ASSOC); - $stmt->closeCursor(); +$stmt = $appbox->get_connection()->prepare($sql); +$stmt->execute(); +$rs = $stmt->fetchAll(PDO::FETCH_ASSOC); +$stmt->closeCursor(); - $out .= "<div id=\"top_box\" style='height:70px;overflow:hidden;'>"; - $out .= "<div id=\"title\"><h1>" . _('admin:: demandes en cours') . "</h1></div>"; +$out .= "<div id=\"top_box\" style='height:70px;overflow:hidden;'>"; +$out .= "<div id=\"title\"><h1>" . _('admin:: demandes en cours') . "</h1></div>"; - $out .= "<div>"; - $out .= "<table style='width:100%'>" . - "<tr>" . - "<td style='width:20px'><img onclick='checkAll(\"deny\")' style='cursor:pointer;' class='tipInfoUsr' title=\"" . _('admin:: refuser l\'acces') . "\" src='/skins/icons/delete.gif'/></td>" . - "<td style='width:20px'><img onclick='checkAll(\"accept\")' style='cursor:pointer;' class='tipInfoUsr' title='" . _('admin:: donner les droits de telechargement et consultation de previews') . "' src='/skins/icons/cmdok.gif'/></td>" . - "<td style='width:20px'><span onclick='checkAll(\"accept_hd\")' style='cursor:pointer;' class='tipInfoUsr' title='" . _('admin:: donner les droits de telechargements de preview et hd') . "'>HD</span></td>" . - "<td style='width:20px'><span onclick='checkAll(\"watermark\")' style='cursor:pointer;' class='tipInfoUsr' title='" . _('admin:: watermarquer les documents') . "'>W</span></td>" . - "<td style='width:120px'>" . _('admin::compte-utilisateur identifiant') . "</td>" . - "<td style='width:auto'>" . _('admin::compte-utilisateur societe') . "</td>" . - "<td style='width:130px'>" . _('admin::compte-utilisateur date d\'inscription') . "</td>" . - "<td style='width:150px'>" . _('admin::collection') . "</td>" . - "</tr>" . - "</table>"; +$out .= "<div>"; +$out .= "<table style='width:100%'>" . + "<tr>" . + "<td style='width:20px'><img onclick='checkAll(\"deny\")' style='cursor:pointer;' class='tipInfoUsr' title=\"" . _('admin:: refuser l\'acces') . "\" src='/skins/icons/delete.gif'/></td>" . + "<td style='width:20px'><img onclick='checkAll(\"accept\")' style='cursor:pointer;' class='tipInfoUsr' title='" . _('admin:: donner les droits de telechargement et consultation de previews') . "' src='/skins/icons/cmdok.gif'/></td>" . + "<td style='width:20px'><span onclick='checkAll(\"accept_hd\")' style='cursor:pointer;' class='tipInfoUsr' title='" . _('admin:: donner les droits de telechargements de preview et hd') . "'>HD</span></td>" . + "<td style='width:20px'><span onclick='checkAll(\"watermark\")' style='cursor:pointer;' class='tipInfoUsr' title='" . _('admin:: watermarquer les documents') . "'>W</span></td>" . + "<td style='width:120px'>" . _('admin::compte-utilisateur identifiant') . "</td>" . + "<td style='width:auto'>" . _('admin::compte-utilisateur societe') . "</td>" . + "<td style='width:130px'>" . _('admin::compte-utilisateur date d\'inscription') . "</td>" . + "<td style='width:150px'>" . _('admin::collection') . "</td>" . + "</tr>" . + "</table>"; - $out .= "</div>"; - $out .= "</div><div id=\"tab_demandes\" style='overflow-y:scroll;overflow-x:hidden'>"; - $out .= "<table style='width:100%' class='ulist' cellspacing='0' cellpading='0'>" . - "<tr>" . - "<td style='width:20px'></td>" . - "<td style='width:20px'></td>" . - "<td style='width:20px'></td>" . - "<td style='width:20px'></td>" . - "<td style='width:120px'></td>" . - "<td style='width:auto'></td>" . - "<td style='width:130px'></td>" . - "<td style='width:150px'></td>" . - "</tr>"; - $class = ''; - $currentUsr = null; - $sql = "SELECT * FROM usr WHERE usr_id = :usr_id"; - $stmt = $appbox->get_connection()->prepare($sql); - foreach ($rs as $row) - { - if ($row['usr_id'] != $currentUsr) - { - if ($currentUsr !== null) - { +$out .= "</div>"; +$out .= "</div><div id=\"tab_demandes\" style='overflow-y:scroll;overflow-x:hidden'>"; +$out .= "<table style='width:100%' class='ulist' cellspacing='0' cellpading='0'>" . + "<tr>" . + "<td style='width:20px'></td>" . + "<td style='width:20px'></td>" . + "<td style='width:20px'></td>" . + "<td style='width:20px'></td>" . + "<td style='width:120px'></td>" . + "<td style='width:auto'></td>" . + "<td style='width:130px'></td>" . + "<td style='width:150px'></td>" . + "</tr>"; +$class = ''; +$currentUsr = null; +$sql = "SELECT * FROM usr WHERE usr_id = :usr_id"; +$stmt = $appbox->get_connection()->prepare($sql); +foreach ($rs as $row) +{ + if ($row['usr_id'] != $currentUsr) + { + if ($currentUsr !== null) + { - $out .= '</table></div></td></tr>'; - } + $out .= '</table></div></td></tr>'; + } - $currentUsr = $row['usr_id']; - $class = $class == 'g' ? '' : 'g'; + $currentUsr = $row['usr_id']; + $class = $class == 'g' ? '' : 'g'; - $info = ""; - $stmt->execute(array(':usr_id' => $row['usr_id'])); - $rowInfo = $stmt->fetch(PDO::FETCH_ASSOC); - if ($rowInfo) - { - $info .= "<div><div>" . _('admin::compte-utilisateur identifiant') . " : " . ($rowInfo["usr_login"]) . "</div>"; + $info = ""; + $stmt->execute(array(':usr_id' => $row['usr_id'])); + $rowInfo = $stmt->fetch(PDO::FETCH_ASSOC); + if ($rowInfo) + { + $info .= "<div><div>" . _('admin::compte-utilisateur identifiant') . " : " . ($rowInfo["usr_login"]) . "</div>"; - $info .= "<div>" . _('admin::compte-utilisateur nom') . "/" . _('admin::compte-utilisateur prenom') . " : "; - $info .= ( $rowInfo["usr_nom"]) . " "; - $info .= ( $rowInfo["usr_prenom"]); - $info .= "</div>"; + $info .= "<div>" . _('admin::compte-utilisateur nom') . "/" . _('admin::compte-utilisateur prenom') . " : "; + $info .= ( $rowInfo["usr_nom"]) . " "; + $info .= ( $rowInfo["usr_prenom"]); + $info .= "</div>"; - $info .= "<div>" . _('admin::compte-utilisateur email') . " : "; - $info .= ( $rowInfo["usr_mail"]); - $info .= "</div>"; + $info .= "<div>" . _('admin::compte-utilisateur email') . " : "; + $info .= ( $rowInfo["usr_mail"]); + $info .= "</div>"; - $info .= "<div>" . _('admin::compte-utilisateur telephone') . " : "; - $info .= ( $rowInfo["tel"]); - $info .= "</div>"; + $info .= "<div>" . _('admin::compte-utilisateur telephone') . " : "; + $info .= ( $rowInfo["tel"]); + $info .= "</div>"; - $info .= "<div>" . _('admin::compte-utilisateur poste') . " : "; - $info .= ( $rowInfo["fonction"]); - $info .= "</div>"; + $info .= "<div>" . _('admin::compte-utilisateur poste') . " : "; + $info .= ( $rowInfo["fonction"]); + $info .= "</div>"; - $info .= "<div>" . _('admin::compte-utilisateur societe') . " : "; - $info .= ( $rowInfo["societe"]); - $info .= "</div>"; + $info .= "<div>" . _('admin::compte-utilisateur societe') . " : "; + $info .= ( $rowInfo["societe"]); + $info .= "</div>"; - $info .= "<div>" . _('admin::compte-utilisateur activite') . " : "; - $info .= ( $rowInfo["activite"]); - $info .= "</div>"; + $info .= "<div>" . _('admin::compte-utilisateur activite') . " : "; + $info .= ( $rowInfo["activite"]); + $info .= "</div>"; - $info .= "<div>" . _('admin::compte-utilisateur adresse') . " : "; - $info .= "" . ($rowInfo["adresse"]); - $info .= "</div>"; + $info .= "<div>" . _('admin::compte-utilisateur adresse') . " : "; + $info .= "" . ($rowInfo["adresse"]); + $info .= "</div>"; - $info .= "<div>"; + $info .= "<div>"; - $info .= ( $rowInfo["cpostal"]) . " "; + $info .= ( $rowInfo["cpostal"]) . " "; - $info .= ( $rowInfo["ville"]); - $info .= "</div>" . "</div>"; - } + $info .= ( $rowInfo["ville"]); + $info .= "</div>" . "</div>"; + } - $info = "<div style='margin:5px;'>" . $info . "</div>"; + $info = "<div style='margin:5px;'>" . $info . "</div>"; - $out .= '<tr class="tipInfoUsr ' . $class . '" title="' . $info . '" id="USER_' . $row['usr_id'] . '"' . '>'; - $out .= "<td>"; - $out .= " "; - $out .= "</td>"; - $out .= "<td>"; - $out .= " "; - $out .= "</td>"; - $out .= "<td>"; - $out .= " "; - $out .= "</td>"; - $out .= "<td>"; - $out .= " "; - $out .= "</td>"; - $out .= '<td>'; - $out .= '' . ($row["usr_login"]); - $out .= '</td>'; + $out .= '<tr class="tipInfoUsr ' . $class . '" title="' . $info . '" id="USER_' . $row['usr_id'] . '"' . '>'; + $out .= "<td>"; + $out .= " "; + $out .= "</td>"; + $out .= "<td>"; + $out .= " "; + $out .= "</td>"; + $out .= "<td>"; + $out .= " "; + $out .= "</td>"; + $out .= "<td>"; + $out .= " "; + $out .= "</td>"; + $out .= '<td>'; + $out .= '' . ($row["usr_login"]); + $out .= '</td>'; - $tmp = $row["usr_nom"] . " " . $row["usr_prenom"] . ( $row["societe"] ? " (" . $row["societe"] . ")" : "" ); - $out .= '<td>' . (trim($tmp)) . '</td>'; + $tmp = $row["usr_nom"] . " " . $row["usr_prenom"] . ( $row["societe"] ? " (" . $row["societe"] . ")" : "" ); + $out .= '<td>' . (trim($tmp)) . '</td>'; - $out .= '<td colspan="2"> ' . _('admin:: appliquer le modele ') . ' <select name="template[]" id="model_' . $row['usr_id'] . '" onchange="modelChecker(' . $row['usr_id'] . ')">' . str_replace('%stemplate%s', $row['usr_id'], $models) . '</select></td>'; + $out .= '<td colspan="2"> ' . _('admin:: appliquer le modele ') . ' <select name="template[]" id="model_' . $row['usr_id'] . '" onchange="modelChecker(' . $row['usr_id'] . ')">' . str_replace('%stemplate%s', $row['usr_id'], $models) . '</select></td>'; - $out .= '</tr>'; - $out .= '<tr><td colspan="8"><div id="sub_usr_' . $row['usr_id'] . '"><table cellspacing="0" cellpading="0" style="width:100%">' . - "<tr style='height:0px;dispolay:none;'>" . - "<td style='width:20px'></td>" . - "<td style='width:20px'></td>" . - "<td style='width:20px'></td>" . - "<td style='width:20px'></td>" . - "<td style='width:120px'></td>" . - "<td style='width:auto'></td>" . - "<td style='width:130px'></td>" . - "<td style='width:150px'></td>" . - "</tr>"; - } + $out .= '</tr>'; + $out .= '<tr><td colspan="8"><div id="sub_usr_' . $row['usr_id'] . '"><table cellspacing="0" cellpading="0" style="width:100%">' . + "<tr style='height:0px;dispolay:none;'>" . + "<td style='width:20px'></td>" . + "<td style='width:20px'></td>" . + "<td style='width:20px'></td>" . + "<td style='width:20px'></td>" . + "<td style='width:120px'></td>" . + "<td style='width:auto'></td>" . + "<td style='width:130px'></td>" . + "<td style='width:150px'></td>" . + "</tr>"; + } - $out .= '<tr class="' . $class . '">'; - $out .= "<td>"; - $out .= "<input name='deny[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkDeny(this)' id='deny_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='deny_checker tipInfoUsr checker_" . $row['usr_id'] . "' title=\"" . _('admin:: refuser l\'acces') . "\" class='' type=\"checkbox\"/>"; - $out .= "</td>"; - $out .= "<td>"; - $out .= "<input name='accept[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkRemove(this)' id='accept_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='disabler_" . $row['usr_id'] . "_" . $row['base_id'] . " accept_checker tipInfoUsr checker_" . $row['usr_id'] . "' title='" . _('admin:: donner les droits de telechargement et consultation de previews') . "' class='checker_" . $row['usr_id'] . "' type=\"checkbox\"/>"; - $out .= "</td>"; - $out .= "<td>"; - $out .= "<input name='accept_hd[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkAdd(this)' id='accept_hd_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='disabler_" . $row['usr_id'] . "_" . $row['base_id'] . " accept_hd_checker tipInfoUsr checker_" . $row['usr_id'] . "' title='" . _('admin:: donner les droits de telechargements de preview et hd') . "' class='checker_" . $row['usr_id'] . "' type=\"checkbox\"/>"; - $out .= "</td>"; - $out .= "<td>"; - $out .= "<input name='watermark[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkAdd(this)' id='watermark_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='disabler_" . $row['usr_id'] . "_" . $row['base_id'] . " watermark_checker tipInfoUsr checker_" . $row['usr_id'] . "' title='" . _('admin:: watermarquer les documents') . "' class='checker_" . $row['usr_id'] . "' type=\"checkbox\"/>"; - $out .= "</td>"; - $out .= "<td colspan='2'>"; - $out .= "</td>"; + $out .= '<tr class="' . $class . '">'; + $out .= "<td>"; + $out .= "<input name='deny[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkDeny(this)' id='deny_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='deny_checker tipInfoUsr checker_" . $row['usr_id'] . "' title=\"" . _('admin:: refuser l\'acces') . "\" class='' type=\"checkbox\"/>"; + $out .= "</td>"; + $out .= "<td>"; + $out .= "<input name='accept[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkRemove(this)' id='accept_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='disabler_" . $row['usr_id'] . "_" . $row['base_id'] . " accept_checker tipInfoUsr checker_" . $row['usr_id'] . "' title='" . _('admin:: donner les droits de telechargement et consultation de previews') . "' class='checker_" . $row['usr_id'] . "' type=\"checkbox\"/>"; + $out .= "</td>"; + $out .= "<td>"; + $out .= "<input name='accept_hd[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkAdd(this)' id='accept_hd_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='disabler_" . $row['usr_id'] . "_" . $row['base_id'] . " accept_hd_checker tipInfoUsr checker_" . $row['usr_id'] . "' title='" . _('admin:: donner les droits de telechargements de preview et hd') . "' class='checker_" . $row['usr_id'] . "' type=\"checkbox\"/>"; + $out .= "</td>"; + $out .= "<td>"; + $out .= "<input name='watermark[]' value='" . $row['usr_id'] . "_" . $row['base_id'] . "' onclick='checkAdd(this)' id='watermark_" . $row['usr_id'] . "_" . $row['base_id'] . "' class='disabler_" . $row['usr_id'] . "_" . $row['base_id'] . " watermark_checker tipInfoUsr checker_" . $row['usr_id'] . "' title='" . _('admin:: watermarquer les documents') . "' class='checker_" . $row['usr_id'] . "' type=\"checkbox\"/>"; + $out .= "</td>"; + $out .= "<td colspan='2'>"; + $out .= "</td>"; - $out .= '<td>' . ($row["date_modif"]) . '</td>'; + $out .= '<td>' . ($row["date_modif"]) . '</td>'; - $out .= '<td>' . phrasea::bas_names($row['base_id']) . '</td>'; + $out .= '<td>' . phrasea::bas_names($row['base_id']) . '</td>'; - $out .= '</tr>'; - } - $stmt->closeCursor(); + $out .= '</tr>'; +} +$stmt->closeCursor(); - $out .= " </table><br />\n"; - $out .= " </div>\n"; +$out .= " </table><br />\n"; +$out .= " </div>\n"; - $out .= "</table>"; +$out .= "</table>"; - $out .= "</div>"; +$out .= "</div>"; - $out .= " <div id='bottom_box' style='height:40px;overflow:hidden;'>"; - $out .= " <div id=\"divboutdemand\" style=\"text-align:center;\">"; - $out .= " <input type='submit' value='" . _('boutton::valider') . "' />"; - $out .= " </div>"; - $out .= " </div></form>"; - $out .= " </body>"; - $out .= "</html>"; +$out .= " <div id='bottom_box' style='height:40px;overflow:hidden;'>"; +$out .= " <div id=\"divboutdemand\" style=\"text-align:center;\">"; +$out .= " <input type='submit' value='" . _('boutton::valider') . "' />"; +$out .= " </div>"; +$out .= " </div></form>"; +$out .= " </body>"; +$out .= "</html>"; - print($out); - ?> +print($out); +?> <script>$('.tipInfoUsr').tooltip();</script> </body> </html> diff --git a/www/admin/sitestruct.php b/www/admin/sitestruct.php index 769dce407e..e2e5f53ed0 100644 --- a/www/admin/sitestruct.php +++ b/www/admin/sitestruct.php @@ -82,6 +82,10 @@ if ($parm['flush_cache']) margin:5px 0 5px 40px; border:1px solid #404040; } + ul.setup table{ + width:100%; + table-layout: fixed; + } .setup li{ margin:0px 0; padding:2px 5px 2px 30px; @@ -98,6 +102,10 @@ if ($parm['flush_cache']) tr.even{ background-color:#CCCCCC; } + #flush_button { + width:360px; + margin: 5px 0 5px 40px; + } </style> <style> @@ -176,7 +184,7 @@ if ($parm['flush_cache']) { ?> <div> -<?php echo _('admin::Le serveur memcached a ete flushe'); ?> +<?php echo _('all caches services have been flushed'); ?> </div> <?php } @@ -319,7 +327,7 @@ if ($parm['flush_cache']) ?> <form method="post" action="sitestruct.php"> <input type="hidden" name="flush_cache" value="1"/> - <input type="submit" value="Flush Memcached"/> + <input id="flush_button" type="submit" value="Flush All Caches" /> </form> <?php } diff --git a/www/client/answer.php b/www/client/answer.php index c7b46ed416..46698f71f2 100644 --- a/www/client/answer.php +++ b/www/client/answer.php @@ -14,34 +14,34 @@ * @license http://opensource.org/licenses/gpl-3.0 GPLv3 * @link www.phraseanet.com */ - /* @var $Core \Alchemy\Phrasea\Core */ -$Core = require_once __DIR__ . "/../../lib/bootstrap.php"; +require_once __DIR__ . "/../../lib/bootstrap.php"; -$appbox = appbox::get_instance($Core); -$session = $appbox->get_session(); +$Core = \bootstrap::getCore(); +$appbox = appbox::get_instance($Core); +$session = $appbox->get_session(); $registry = $appbox->get_registry(); -$user = $Core->getAuthenticatedUser(); +$user = $Core->getAuthenticatedUser(); if (!isset($parm)) { $request = http_request::getInstance(); - $parm = $request->get_parms("mod", "bas" - , "pag" - , "qry", "search_type", "recordtype" - , "qryAdv", 'opAdv', 'status', 'datemin', 'datemax' - , 'dateminfield', 'datemaxfield' - , 'datefield' - , 'sort' - , 'stemme' - , 'infield' - , "nba" - , "regroup" // si rech par doc, regroup ,ou pizza - , "ord" + $parm = $request->get_parms("mod", "bas" + , "pag" + , "qry", "search_type", "recordtype" + , "qryAdv", 'opAdv', 'status', 'datemin', 'datemax' + , 'dateminfield', 'datemaxfield' + , 'datefield' + , 'sort' + , 'stemme' + , 'infield' + , "nba" + , "regroup" // si rech par doc, regroup ,ou pizza + , "ord" ); } -$qry = ''; +$qry = ''; if (trim($parm['qry']) != '') { @@ -87,7 +87,7 @@ else $mod_row = (int) ($mod[0]); $mod_col = (int) ($mod[1]); } -$mod_xy = $mod_col * $mod_row; +$mod_xy = $mod_col * $mod_row; $tbases = array(); @@ -101,9 +101,9 @@ $options->set_bases($parm['bas'], $user->ACL()); if (!is_array($parm['infield'])) $parm['infield'] = array(); -foreach($parm['infield'] as $offset=>$value) +foreach ($parm['infield'] as $offset => $value) { - if(trim($value) === '') + if (trim($value) === '') unset($parm['infield'][$offset]); } @@ -161,8 +161,8 @@ if ($registry->get('GV_thesaurus')) if ($registry->get('GV_clientAutoShowProposals')) { ?> - if("<?php echo p4string::MakeString(proposalsToHTML($qp['main']->proposals), "JS") ?>" != "<div class=\"proposals\"></div>") - chgOng(4); + if("<?php echo p4string::MakeString(proposalsToHTML($qp['main']->proposals), "JS") ?>" != "<div class=\"proposals\"></div>") + chgOng(4); <?php } ?> @@ -177,14 +177,14 @@ $history = queries::history(); echo '<script language="javascript" type="text/javascript">$("#history").empty().append("' . str_replace('"', '\"', $history) . '")</script>'; $nbanswers = $result->get_count_available_results(); -$longueur = strlen($parm['qry']); +$longueur = strlen($parm['qry']); $qrys = '<div>' . _('client::answers: rapport de questions par bases') . '</div>'; foreach ($qrySbas as $sbas => $qryBas) $qrys .= '<div style="font-weight:bold;">' . phrasea::sbas_names($sbas) . '</div><div>' . $qryBas . '</div>'; -$txt = "<b>" . substr($parm['qry'], 0, 36) . ($longueur > 36 ? "..." : "") . "</b>" . sprintf(_('client::answers: %d reponses'), (int) $nbanswers) . " <a style=\"float:none;display:inline-block;padding:2px 3px\" class=\"infoTips\" title=\"" . str_replace('"', "'", $qrys) . "\"> </a>"; +$txt = "<b>" . substr($parm['qry'], 0, 36) . ($longueur > 36 ? "..." : "") . "</b>" . sprintf(_('client::answers: %d reponses'), (int) $nbanswers) . " <a style=\"float:none;display:inline-block;padding:2px 3px\" class=\"infoTips\" title=\"" . str_replace('"', "'", $qrys) . "\"> </a>"; ?> <script type="text/javascript"> $(document).ready(function(){ @@ -194,13 +194,13 @@ $txt = "<b>" . substr($parm['qry'], 0, 36) . ($longueur > 36 ? "..." : "") . "</ </script> <?php $npages = $result->get_total_pages(); -$pages = ''; -$ecart = 3; -$max = (2 * $ecart) + 3; +$pages = ''; +$ecart = 3; +$max = (2 * $ecart) + 3; if ($npages > $max) { - for ($p = 1; $p < $npages; $p++) + for ($p = 1; $p <= $npages; $p++) { if ($p == $page) $pages .= '<span class="naviButton sel">' . ($p) . '</span>'; @@ -216,23 +216,23 @@ if ($npages > $max) $pages .= '<span onclick="gotopage(' . ($p ) . ');" class="naviButton">' . ($p) . '...</span>'; if (($p == $page) - || ( ( $p >= ($page - $ecart) ) && ( $p <= ($page + $ecart) )) - || ( ($page < ($ecart + 2)) && ($p < ($max - $ecart + 2) ) ) - || ( ($page >= ($npages - $ecart - 2)) && ($p >= ($npages - (2 * $ecart) - 2) ) ) - || ( $p == 0) + || ( ( $p >= ($page - $ecart) ) && ( $p <= ($page + $ecart) )) + || ( ($page < ($ecart + 2)) && ($p < ($max - $ecart + 2) ) ) + || ( ($page >= ($npages - $ecart - 2)) && ($p >= ($npages - (2 * $ecart) - 2) ) ) + || ( $p == 0) ) $pages .= '<span class="naviButton" style="cursor:default;"> - </span>'; } } else { - for ($p = 1; $p < $npages; $p++) + for ($p = 1; $p <= $npages; $p++) { if ($p == $page) $pages .= '<span class="naviButton sel">' . ($p) . '</span>'; else $pages .= '<span onclick="gotopage(' . ($p) . ');" class="naviButton">' . ($p) . '</span>'; - if ($p < $npages) + if ($p < $npages) $pages .= '<span class="naviButton" style="cursor:default;"> - </span>'; } } @@ -250,30 +250,29 @@ $string2.= '</div>'; if ($page != 0 && $nbanswers) { ?> - $("#PREV_PAGE").bind('click',function(){gotopage(<?php echo ($page - 1) ?>)}); + $("#PREV_PAGE").bind('click',function(){gotopage(<?php echo ($page - 1) ?>)}); <?php } else { ?> - $("#PREV_PAGE").unbind('click'); + $("#PREV_PAGE").unbind('click'); <?php } if ($page != $npages - 1 && $nbanswers) { ?> - $("#NEXT_PAGE").bind('click',function(){gotopage(<?php echo ($page + 1) ?>)}); + $("#NEXT_PAGE").bind('click',function(){gotopage(<?php echo ($page + 1) ?>)}); <?php } else { ?> - $("#NEXT_PAGE").unbind('click'); + $("#NEXT_PAGE").unbind('click'); <?php } ?> -}); + }); </script> <?php - $layoutmode = "grid"; if ($mod_col == 1) $layoutmode = "list"; @@ -315,8 +314,17 @@ if (count($result->get_datas()) > 0) $docType = $record->get_type(); $title = $record->get_title(); - $light_info = $twig->render('common/technical_datas.twig', array('record' => $record)); - $caption = $twig->render('common/caption.html', array('view' => 'answer', 'record' => $record)); + + try + { + $record->get_subdef('document'); + $light_info = $twig->render('common/technical_datas.twig', array('record' => $record)); + } + catch (\Exception $e) + { + $light_info = ''; + } + $caption = $twig->render('common/caption.html', array('view' => 'answer', 'record' => $record)); if ($i == 0) @@ -344,8 +352,6 @@ if (count($result->get_datas()) > 0) } ?><div class="diapo w160px" style="margin-bottom:0;border-bottom:none;"> <div class="title"><?php echo $title ?></div><?php - - $status = ''; $status .= '<div class="status">'; $status .= $record->get_status_icons(); @@ -353,21 +359,20 @@ if (count($result->get_datas()) > 0) echo $status; - $isVideo = ($docType == 'video'); - $isAudio = ($docType == 'audio'); - $isImage = ($docType == 'image'); + $isVideo = ($docType == 'video'); + $isAudio = ($docType == 'audio'); + $isImage = ($docType == 'image'); $isDocument = ($docType == 'document'); $sd = $record->get_subdefs(); - $isImage = false; + $isImage = false; $isDocument = false; if (!$isVideo && !$isAudio) { $isImage = true; } - ?><table cellpadding="0" cellspacing="0" style="margin: 0pt auto;"><?php ?><tr class="h160px"><?php ?><td class="image w160px h160px"><?php @@ -401,30 +406,27 @@ if (count($result->get_datas()) > 0) $pic_roll = '/prod/tooltip/caption/' . $record->get_sbas_id() . '/' . $record->get_record_id() . '/answer/'; $pic_roll = str_replace(array('&', '"'), array('&', '"'), $pic_roll); - ?><img style="<?php if ($thumbnail->get_width() > $thumbnail->get_height()) - { ?>width:128px;<?php } - else - { ?>height:128px;<?php } ?>" onclick="<?php echo $onclick ?>" class=" captionTips" id="IMG<?php echo $record->get_base_id() ?>_<?php echo $record->get_record_id() ?>" src="<?php echo $thumbnail->get_url() ?>" tooltipsrc="<?php echo ($pic_roll) ?>" /> + ?><img onclick="<?php echo $onclick ?>" class="<?php echo ($thumbnail->get_width() > $thumbnail->get_height()) ? 'hthbimg' : 'vthbimg' ?> captionTips" id="IMG<?php echo $record->get_base_id() ?>_<?php echo $record->get_record_id() ?>" src="<?php echo $thumbnail->get_url() ?>" tooltipsrc="<?php echo ($pic_roll) ?>" /> </td> </tr> </table> </div> <div class="diapo w160px" style="border-top:none;"><?php ?><div class="buttons"><?php - $minilogos = ""; + $minilogos = ""; - $minilogos .= '<div class="minilogos">' . collection::getLogo($record->get_base_id()); - $minilogos .= '</div>'; - $sbas_id = $record->get_sbas_id(); - echo $minilogos; + $minilogos .= '<div class="minilogos">' . collection::getLogo($record->get_base_id()); + $minilogos .= '</div>'; + $sbas_id = $record->get_sbas_id(); + echo $minilogos; - if ( - $ACL->has_right_on_base($record->get_base_id(), 'candwnldpreview') || - $ACL->has_right_on_base($record->get_base_id(), 'candwnldhd') || - $ACL->has_right_on_base($record->get_base_id(), 'cancmd') - ) - { + if ( + $ACL->has_right_on_base($record->get_base_id(), 'candwnldpreview') || + $ACL->has_right_on_base($record->get_base_id(), 'candwnldhd') || + $ACL->has_right_on_base($record->get_base_id(), 'cancmd') + ) + { ?><div class="downloader" title="<?php echo _('action : exporter') ?>" onclick="evt_dwnl('<?php echo $sbas_id ?>_<?php echo $record->get_record_id() ?>');"></div><?php - } + } ?> <div class="printer" title="<?php echo _('action : print') ?>" onClick="evt_print('<?php echo $sbas_id ?>_<?php echo $record->get_record_id() ?>');"></div> <?php @@ -489,20 +491,20 @@ function proposalsToHTML(&$proposals) { $html = '<div class="proposals">'; - $b = true; + $b = true; foreach ($proposals["BASES"] as $zbase) { if ((int) (count($proposals["BASES"]) > 1) && count($zbase["TERMS"]) > 0) { $style = $b ? 'style="margin-top:0px;"' : ''; - $b = false; + $b = false; $html .= "<h1 $style>" . sprintf(_('reponses::propositions pour la base %s'), htmlentities($zbase["NAME"])) . "</h1>"; } - $t = true; + $t = true; foreach ($zbase["TERMS"] as $path => $props) { $style = $t ? 'style="margin-top:0px;"' : ''; - $t = false; + $t = false; $html .= "<h2 $style>" . sprintf(_('reponses::propositions pour le terme %s'), htmlentities($props["TERM"])) . "</h2>"; $html .= $props["HTML"]; } diff --git a/www/client/homeinterpubbask.php b/www/client/homeinterpubbask.php index a2c6f276dc..1823d78f79 100644 --- a/www/client/homeinterpubbask.php +++ b/www/client/homeinterpubbask.php @@ -1,5 +1,4 @@ <?php - /* * This file is part of Phraseanet * @@ -15,199 +14,94 @@ * @license http://opensource.org/licenses/gpl-3.0 GPLv3 * @link www.phraseanet.com */ -$Core = \bootstrap::getCore(); +$Core = \bootstrap::getCore(); $appbox = appbox::get_instance($Core); -$session = $appbox->get_session(); - -$th_size = $user->getPrefs('images_size'); $user = $Core->getAuthenticatedUser(); -$RN = array("\r\n", "\n", "\r"); +$feeds = \Feed_Collection::load_all($appbox, $user); -$conn = $appbox->get_connection(); -$sql = 'SELECT s.public, s.pub_restrict,c.sselcont_id, c.base_id, sb.*, c.record_id, s.ssel_id, s.name, s.descript, c.ord, ' . - 'DATE_FORMAT(s.pub_date,"' . _('phraseanet::technique::datetime') . '") AS pub_date, ' . - 'DATE_FORMAT(s.updater,"' . _('phraseanet::technique::date') . '") AS updater, ' . - 's.updater as dateC1, s.pub_date as dateC2,' . - ' n.id, u.usr_nom, u.usr_prenom, u.usr_login, u.usr_mail ' . - ', bu.mask_and ' . - ', bu.mask_xor ' . - 'FROM (sselcont c, ssel s, usr u, bas b, sbas sb) ' . - 'LEFT JOIN sselnew n ' . - 'ON (n.ssel_id = s.ssel_id AND n.usr_id = :usr_id) ' . - ' LEFT JOIN basusr bu ON (bu.base_id = b.base_id AND bu.usr_id = :usr_id_bis)' . - 'WHERE s.ssel_id = c.ssel_id AND s.public="1" ' . - 'AND (s.pub_restrict="0" ' . - 'OR (s.pub_restrict="1" AND c.base_id IN ' . - ' (SELECT base_id FROM basusr WHERE usr_id = :usr_id_sub AND actif = "1")))' . - ' AND u.usr_id = s.usr_id AND temporaryType=0 ' . - ' AND b.sbas_id = sb.sbas_id' . - ' AND b.base_id = c.base_id' . - ' ORDER BY s.pub_date DESC, c.ord ASC'; - -$sqlMe = 'SELECT usr_login, usr_password FROM usr WHERE usr_id = :usr_id'; - -$stmt = $conn->prepare($sqlMe); -$stmt->execute(array(':usr_id' => $session->get_usr_id())); -$rawMe = $stmt->fetch(PDO::FETCH_ASSOC); -$stmt->closeCursor(); - -$info_usr = null; - -if ($rawMe) -{ - $info_usr = $rawMe; -} +$th_size = $user->getPrefs('images_size'); $core = \bootstrap::getCore(); $twig = $core->getTwig(); +?> +<div style="height:50px;" class="homePubTitleBox"> + <div style="float:left;width:350px;"><h1 style="font-size:20px;margin-top:15px;"> + <h1><?php echo _('publications:: dernieres publications'); ?></h1> + </div> +<!-- <div style="float:right;width:160px;text-align:right;cursor:pointer;" class="subscribe_my_rss"> + <h1 style="font-size:17px;margin-top:19px;"> +<?php echo _('publications:: s\'abonner aux publications'); ?> + <img style="border:none;" src="/skins/icons/rss16.png" /> + </h1> + </div>--> +</div> -$stmt = $conn->prepare($sql); -$usr_id = $session->get_usr_id(); -$stmt->execute(array(':usr_id' => $usr_id, ':usr_id_bis' => $usr_id, ':usr_id_sub' => $usr_id)); -$rs = $stmt->fetchAll(PDO::FETCH_ASSOC); -$stmt->closeCursor(); - -$sselid = null; -$o = 0; -$out = ''; - +<?php $feed = ''; -$feed .= '<div style="height:50px;" class="homePubTitleBox">' . - '<div style="float:left;width:350px;"><h1 style="font-size:20px;margin-top:15px;">' . _('publications:: dernieres publications') . '</h1></div>' . - '<div style="float:right;width:160px;text-align:right;cursor:pointer;" class="subscribe_my_rss"> - <h1 style="font-size:17px;margin-top:19px;"> ' . - _('publications:: s\'abonner aux publications') . ' ' . - '<img style="border:none;" src="/skins/icons/rss16.png" /> - </h1>' . - '</div></div>'; -foreach ($rs as $row) +foreach ($feeds->get_aggregate()->get_entries(0, 5)->get_entries() as $entry) { - if ($row['ssel_id'] != $sselid) + /* @var $entry \Feed_Entry_Adapter */ + + $feed .= '<div class="boxPubli">' . + '<div class="titlePubli">' . + '<h2 class="htitlePubli">' . + '<a class="homePubTitle" onclick="openCompare(\'' . $entry->get_id() . '\');">' + . $entry->get_title() . + '</a> </h2>' . + '<span class="publiInfos">' . + ' ' . \phraseadate::getPrettyString($entry->get_created_on()) . + ' '; + + if ($entry->get_author_email()) + $feed .= '<a class="homePubLink" href="mailto:' . $entry->get_author_email() . '">'; + + $feed .= $entry->get_author_name(); + + if ($entry->get_author_email()) + $feed .= '</a>'; + + if ($entry->get_updated_on() > $entry->get_created_on()) + $feed .= '<br/><span style="font-style:italic;">' . _('publications:: derniere mise a jour') + . ' ' . \phraseadate::getPrettyString($entry->get_updated_on()) . '</span><br/><br/>'; + + $feed .= '</span></div><div class="descPubli"><div style="margin:10px 0 10px 20px;width:80%;">'; + + + if (trim($entry->get_subtitle()) != '') { - if ($sselid !== null) - { - - - - $item .= '<div style="width:100%;position:relative;float:left;" id="PUBLICONT' . $sselid . '">' . $out; - $item .= '</div>' . - '</div></div>'; - - if ($itemIsOk) - $feed .= $item; - } - - $itemIsOk = false; - - $sselid = $row['ssel_id']; - $ord = $row['ord']; - $o = 0; - $out = ''; - $neverSeen = ''; - $publisher = $row['usr_prenom'] . ' ' . $row['usr_nom']; - if ($publisher == ' ') - $publisher = $row['usr_mail']; - if ($publisher == '') - $publisher = 'Unreferenced user'; - - if ($row['id'] != '') - $neverSeen = _('publications:: publication non lue'); - - $item = ''; - $item .= '<div class="boxPubli">' . - '<div class="titlePubli">' . - '<h2 class="htitlePubli">' . - '<a class="homePubTitle" onclick="openCompare(\'' . $sselid . '\');">' . $row['name'] . - '</a> <span style="font-size:12px;color:red;">' . $neverSeen . '</span></h2>' . - '<span class="publiInfos">' . - ' ' . $row['pub_date'] . - ' '; - - if ($row['usr_mail'] != '') - $item .= '<a class="homePubLink" href="mailto:' . $row['usr_mail'] . '">'; - - $item .= $publisher; - - if ($row['usr_mail'] != '') - $item .= '</a>'; - - if ($row['dateC1'] != $row['dateC2']) - $item .= '<br/><span style="font-style:italic;">' . _('publications:: derniere mise a jour') . ' ' . $row['updater'] . '</span><br/><br/>'; - - $item .= '</span></div><div class="descPubli"><div style="margin:10px 0 10px 20px;width:80%;">'; - - - if (trim(str_replace($RN, '', $row['descript'])) != '') - { - $row['descript'] = str_replace($RN, '<br/>', $row['descript']); - $item .= '' . $row['descript']; - } - $item .= '</div>'; + $feed .= '' . nl2br($entry->get_subtitle()); } + $feed .= '</div>'; + + $feed .= '<div style="width:100%;position:relative;float:left;" id="PUBLICONT' . $entry->get_id() . '">'; - $ord = $row['ord']; - $statOk = true; - if ($row['public'] == 1 && $row['pub_restrict'] == 1) + + foreach ($entry->get_content() as $Feed_item) { - $statOk = false; - - try - { - $connsbas = connection::getPDOConnection($row['sbas_id']); - - $sql = 'SELECT record_id FROM record WHERE ((status ^ ' . $row['mask_xor'] . ') & ' . $row['mask_and'] . ')=0 - AND record_id = :record_id'; - $stmt = $connsbas->prepare($sql); - $stmt->execute(array(':record_id' => $row['record_id'])); - $statOk = ($stmt->rowCount() > 0); - $stmt->closeCursor(); - } - catch (Exception $e) - { - - } - } - - - $layoutmode = $user->getPrefs('view'); - - if ($statOk) - { - $record = new record_adapter($row["sbas_id"], $row["record_id"]); - $sbas_id = phrasea::sbasFromBas($row['base_id']); - - $captionXML = $record->get_xml(); + /* @var $Feed_item \Feed_Entry_Item */ + $record = $Feed_item->get_record(); $thumbnail = $record->get_thumbnail(); - $title = $record->get_title(); - $exifinfos = $record->get_technical_infos(); - $caption = $twig->render('common/caption.html', array('view' => 'internal_publi', 'record' => $record)); + $title = $record->get_title(); + $caption = $twig->render( + 'common/caption.html', array('view' => 'internal_publi', 'record' => $record) + ); - $o++; - $itemIsOk = true; - $bottom = 0; - $right = 10; - $left = 0; - $top = 10; - - - if (trim($preview) != '') - $preview = "<div tooltipsrc='/prod/tooltip/preview/" . phrasea::sbasFromBas($row["base_id"]) . "/" . $row["record_id"] . "/' class=\"previewTips\"></div> "; + $preview = "<div tooltipsrc='/prod/tooltip/preview/" . $record->get_sbas_id() . "/" . $record->get_record_id() . "/' class=\"previewTips\"></div> "; $docType = $record->get_type(); $isVideo = ($docType == 'video'); $isAudio = ($docType == 'audio'); $isImage = ($docType == 'image'); - $isDocument = ($docType == 'document'); $duration = ''; @@ -232,11 +126,11 @@ foreach ($rs as $row) if ($ratio > 1) { - $cw = min(((int) $th_size - 30), $thumbnail->get_width()); - $ch = $cw / $ratio; - $pv = floor(($th_size - $ch) / 2); - $ph = floor(($th_size - $cw) / 2); - $imgStyle = 'xwidth:' . $cw . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;'; + $cw = min(((int) $th_size - 30), $thumbnail->get_width()); + $ch = $cw / $ratio; + $pv = floor(($th_size - $ch) / 2); + $ph = floor(($th_size - $cw) / 2); + $imgStyle = 'width:' . $cw . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;'; } else { @@ -246,64 +140,51 @@ foreach ($rs as $row) $pv = floor(($th_size - $ch) / 2); $ph = floor(($th_size - $cw) / 2); - $imgStyle = 'xheight:' . $ch . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;'; + $imgStyle = 'height:' . $ch . 'px;xpadding:' . $pv . 'px ' . $ph . 'px;'; } + $feed .= "<div style='width:" . ($th_size + 30) . "px;' sbas=\"" . $record->get_sbas_id() . "\" + id='IMGT_" . $record->get_serialize_key() . "_PUB_" . $entry->get_id() + . "' class='IMGT diapo' + onclick=\"openPreview('FEED','" . $Feed_item->get_ord() . "','" . $entry->get_id() . "');\">"; + + $feed .= '<div>'; + $feed .= "<div class=\"title\" style=\"height:40px;\">"; + + $feed .= $title; + + $feed .= "</div>\n"; + + $feed .= '</div>'; + + $feed .= "<table class=\"thumb w160px h160px\" style=\"xheight:" . (int) $th_size . "px;\" cellspacing='0' cellpadding='0' valign='middle'>\n<tr><td>"; + + $feed .= $duration . "<img title=\"" . str_replace('"', '"', $caption) . "\" class=\" captionTips\" src=\"" . $thumbnail->get_url() . "\" style=\"" . $imgStyle . "\" />"; + + $feed .= "</td></tr></table>"; + + $feed .= '<div style="height: 25px;position:relative;">'; + $feed .= '<table class="bottom">'; + $feed .= '<tr>'; + $feed .= '<td>'; + + $feed .= "</td>\n"; + + $feed .= "<td style='text-align:right;' valign='bottom' nowrap>\n"; + + $feed .= $preview; + + $feed .= "</td>"; + $feed .= "</tr>"; + $feed .= "</table>"; + $feed .= "</div>"; - $ident = $row["base_id"] . "_" . $row["record_id"]; - - - $out .= "<div style='width:" . ($th_size + 30) . "px;' sbas=\"" . $row['sbas_id'] . "\" id='IMGT_" . $row['base_id'] . "_" . $row['record_id'] . "_PUB_" . $sselid . "' class='IMGT diapo' onclick=\"openPreview('BASK','" . $ord . "','" . $sselid . "');\">"; - - $out .= '<div>'; - $out .= "<div class=\"title\" style=\"height:40px;\">"; - - $out .= $title; //$data['title']; - - $out .= "</div>\n"; - - $out .= '</div>'; - - $out .= "<table class=\"thumb w160px h160px\" style=\"xheight:" . (int) $th_size . "px;\" cellspacing='0' cellpadding='0' valign='middle'>\n<tr><td>"; - - $out .= $duration . "<img title=\"" . str_replace('"', '"', $caption) . "\" class=\" captionTips\" src=\"" . $thumbnail->get_url() . "\" style=\"" . $imgStyle . "\" />"; - - $out .= "</td></tr></table>"; - - $out .= '<div style="height: 25px;position:relative;">'; - $out .= '<table class="bottom">'; - $out .= '<tr>'; - $out .= '<td>'; - - $out .= "</td>\n"; - - $out .= "<td style='text-align:right;' valign='bottom' nowrap>\n"; - - $out .= $preview; - - $out .= "</td>"; - $out .= "</tr>"; - $out .= "</table>"; - $out .= "</div>"; - - - $out .= "</div>"; + $feed .= "</div>"; } -} - -if (isset($item)) -{ - $item .= ' <br/><div style="width:100%;position:relative;float:left;" id="PUBLICONT' . $sselid . '">' . $out; - $item .= '</div>' . - '</div></div>'; - if ($itemIsOk) - $feed .= $item; + $feed .= '</div>' . + '</div></div>'; } echo '<div>' . $feed . '</div>'; -$sql = 'DELETE FROM sselnew WHERE usr_id = :usr_id AND ssel_id IN (SELECT ssel_id FROM ssel WHERE public="1")'; -$stmt = $conn->prepare($sql); -$stmt->execute(array(':usr_id' => $usr_id)); -$stmt->closeCursor(); diff --git a/www/client/index.php b/www/client/index.php index 5dafe03272..4045b09716 100644 --- a/www/client/index.php +++ b/www/client/index.php @@ -56,7 +56,7 @@ $user = User_Adapter::getInstance($usr_id, $appbox); </style> <script type="text/javascript" src="/include/minify/f=include/jslibs/jquery-1.7.1.js"></script> <script type="text/javascript" src="/include/minify/f=include/tinymce/jscripts/tiny_mce/tiny_mce.js"></script> - <link rel="stylesheet" type="text/css" href="/include/jslibs/jquery-ui-1.8.12/css/dark-hive/jquery-ui-1.8.12.custom.css" /> + <link rel="stylesheet" type="text/css" href="/include/jslibs/jquery-ui-1.8.17/css/dark-hive/jquery-ui-1.8.17.custom.css" /> <link type="text/css" rel="stylesheet" href="/include/minify/f=include/jslibs/jquery.contextmenu.css,skins/common/main.css" /> <?php //listage des css @@ -102,6 +102,14 @@ $user = User_Adapter::getInstance($usr_id, $appbox); <?php } ?> + <style> + #PREVIEWCURRENTCONT{ + top:0; + left:0; + right:0; + bottom:0; + } + </style> </head> <body class="PNB" style="overflow:hidden;"> <div id="container" style="position:absolute;top:0;left:0;overflow:hidden;width:100%;height:100%;"> @@ -231,17 +239,6 @@ $user = User_Adapter::getInstance($usr_id, $appbox); } foreach ($user->ACL()->get_granted_base(array(), array($databox->get_sbas_id())) as $coll) { - if ($showbases) - { - $options .= '<optgroup label="' . $databox->get_viewname() . '">'; - $allbcol = array(); - $n_allbcol = 0; - if (count($databox->get_collections()) > 0) - { - $options .= '<option value="' . implode(';', $allbcol) . '">`' . $databox->get_viewname() . '`' . '</option>'; - } - foreach ($databox->get_collections() as $coll) - { $allbcol[] = $coll->get_base_id(); $n_allbcol++; @@ -262,8 +259,6 @@ $user = User_Adapter::getInstance($usr_id, $appbox); } } echo '<select id="basSelector" onchange="beforeAnswer();" style="width:245px;"><option value="' . implode(';', $allbases) . '">' . _('client::recherche: rechercher dans toutes les bases') . '</option>' . $options . '</select>'; - } - } ?> </div> <?php @@ -364,8 +359,6 @@ $user = User_Adapter::getInstance($usr_id, $appbox); { if ($registry->get('GV_view_bas_and_coll')) { - if ($registry->get('GV_view_bas_and_coll')) - { ?> <div class="basContainer"> <div class="basContTitle"> @@ -434,28 +427,6 @@ $user = User_Adapter::getInstance($usr_id, $appbox); '</table>' . '</div>'; } - } - } - if ($sxe->description) - { - foreach ($sxe->description->children() as $f => $field) - { - if ($field['type'] == 'date' && $field['searchclient'] == '1') - { - $dateFilters .= '<div><table style="width:98%;text-align:left;" cellspacing="0" cellpadding="0"><tr><td colspan="2">' . - $f . '</td></tr>' . - '<tr><td style="width:50%;">' . _('phraseanet::time:: de') . - '</td><td style="width:50%;">' . - _('phraseanet::time:: a') . - '</td></tr>' . - '<tr><td style="width:50%;">' . - '<input type="hidden" name="dateminfield[]" value="' . $databox->get_sbas_id() . '_' . $f . '">' . - ' <input db="' . $databox->get_sbas_id() . '" onchange="checkFilters();" class="datepicker" type="text" name="datemin[]"></td><td style="width:50%;">' . - '<input type="hidden" name="datemaxfield[]" value="' . $databox->get_sbas_id() . '_' . $f . '">' . - ' <input db="' . $databox->get_sbas_id() . '" onchange="checkFilters();" class="datepicker" type="text" name="datemax[]"></td></tr>' . - '</table>' . - '</div>'; - } elseif ($field['type'] != 'date') { $fieldsFilters .= '<option value="' . $databox->get_sbas_id() . '_' . $f . '">' . $f . '</option>'; @@ -481,7 +452,7 @@ $user = User_Adapter::getInstance($usr_id, $appbox); <?php } ?><div class="basGrp"><?php - foreach ($databox->get_collections() as $coll) + foreach ($user->ACL()->get_granted_base(array(), array($databox->get_sbas_id())) as $coll) { $s = "checked"; echo '<div><input type="checkbox" class="checkbox basItem basItem' . $databox->get_sbas_id() . '" ' . $s . ' name="bas[]" id="basChk' . $coll->get_base_id() . '" value="' . $coll->get_base_id() . '"><label for="basChk' . $coll->get_base_id() . '">' . $coll->get_name() . '</label></div>'; @@ -497,7 +468,6 @@ $user = User_Adapter::getInstance($usr_id, $appbox); <?php } - } if ($registry->get('GV_thesaurus')) { ?> @@ -576,7 +546,7 @@ $user = User_Adapter::getInstance($usr_id, $appbox); <div id="PREVIEWRIGHT" class="preview_col" style="width:49%;position:relative;float:right;overflow:hidden;"> <div style="margin-right:10px;"> <div id="PREVIEWIMGDESC" class="preview_col_cont" style="overflow-x:hidden;overflow-y:auto;"> - <ul style="height:30px;"> + <ul style="height:30px;overflow:hidden;"> <li><a href="#PREVIEWIMGDESCINNER-BOX"><?php echo _('preview:: Description'); ?></a></li> <li><a href="#HISTORICOPS-BOX"><?php echo _('preview:: Historique'); ?></a></li> <li><a href="#popularity-BOX"><?php echo _('preview:: Popularite'); ?></a></li> @@ -617,7 +587,7 @@ $user = User_Adapter::getInstance($usr_id, $appbox); <!--<iframe style="display:none;" id="download" name="download"></iframe>--> <form style="display:none;" action="./index.php" target="_self" id="mainForm"> </form> - <div id="dialog_dwnl" title="<?php echo _('action : exporter') ?>" style="display:none;z-index:8000;"></div> + <div id="dialog_dwnl" title="<?php echo _('action : exporter') ?>" style="display:none;z-index:12000;"></div> <form name="formChu" id="formChu" action="./baskets.php" method="post" style="visibility:hidden; display:none" > <input type="hidden" name="bas" id="formChubas" value=""> <input type="hidden" name="act" id="formChuact" value=""> @@ -737,8 +707,10 @@ setBaskStatus(); <?php if (trim($registry->get('GV_bitly_user')) !== '' && trim($registry->get('GV_bitly_key')) !== '') { + $request = new http_request(); ?> - <script type="text/javascript" src="http://bit.ly/javascript-api.js?version=latest&login=<?php echo $registry->get('GV_bitly_user') ?>&apiKey=<?php echo $registry->get('GV_bitly_key') ?>"></script> + + <script type="text/javascript" src="http<?php echo $request->is_secure() ? 's' : '' ?>://bit.ly/javascript-api.js?version=latest&login=<?php echo $registry->get('GV_bitly_user') ?>&apiKey=<?php echo $registry->get('GV_bitly_key') ?>"></script> <?php } ?> diff --git a/www/client/jquery.p4client.1.0.js b/www/client/jquery.p4client.1.0.js index f4d8877b69..a03d4341ce 100644 --- a/www/client/jquery.p4client.1.0.js +++ b/www/client/jquery.p4client.1.0.js @@ -1,1033 +1,1031 @@ -/************* - * GLOBALES - **************/ - -var p4 = { - tot:0, - preview :{open:false,current:false}, - currentViewMode:'classic', - nbNoview:0 - }; - -var baskAjax,baskAjaxrunning; -baskAjaxrunning = false; -var answAjax,answAjaxrunning; -answAjaxrunning = false; - -var wCompare = null; -var language = {}; -var bodySize = {x:0,y:0}; - -/************* - * INITIALISATION - **************/ - - -function acceptCgus(name,value) -{ - setPref(name,value); -} - -function cancelCgus(id) -{ - $.ajax({ - type: "POST", - url: "/prod/TOU/deny/" + id + "/", - dataType:'json', - success: function(data){ - if(data.success) - { - alert(language.cgusRelog); - self.location.replace(self.location.href); - } - alert - { - humane.error(data.message); - } - } - }); -} - -function activateCgus() -{ - - $('.cgu-dialog:first').dialog({ - autoOpen : true, - closeOnEscape:false, - draggable:false, - modal:true, - resizable:false, - width:800, - height:600, - open:function() { - $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar-close").remove(); - var currentdialog = $(this); - $('.cgus-accept',$(this)).bind('click',function(){ - acceptCgus($('.cgus-accept',currentdialog).attr('id'),$('.cgus-accept',currentdialog).attr('date')); - $('.cgu-dialog').dialog('close'); - }); - $('.cgus-cancel',$(this)).bind('click',function(){ - if(confirm(language.warningDenyCgus)) - { - cancelCgus($('.cgus-cancel',currentdialog).attr('id').split('_').pop()); - } - }); - }, - close:function(){ - activateCgus(); - } - }); -} - -$(document).ready(function(){ - activateCgus(); -}); - -$(document).ready(function(){ - $.ajaxSetup({ - - error: function(){ - showModal('error',{title:'Server error'}); - }, - timeout: function(){ - showModal('timeout',{title:'Server not responding'}); - } - }); - - getLanguage(); - $('.datepicker').datepicker({ - firstDay: 1, - changeYear: true, changeMonth:true, - showOn: 'button', buttonImage:'/skins/icons/cal.png', buttonImageOnly: true - }); - - checkFilters(); - window.setTimeout("checkBaskets();", 5000); - - $('.actives').hover(function(){ - $(this).addClass("hover"); - },function(){ - $(this).removeClass("hover"); - }); - - -// if (!$.browser.msie || ($.browser.msie && $.browser.version != '6.0')) { -// $('#bandeau .publilist').hover(function(){ -// $(this).addClass("hover"); -// $(this).children('.hoverlist').show(); -// },function(){ -// $(this).removeClass("hover"); -// $(this).children('.hoverlist').hide(); -// }) -// }else -// { -// $('#bandeau .publilist').hover(function(){ -// $(this).addClass("hover"); -// },function(){ -// $(this).removeClass("hover"); -// }) -// -// } - - sessionactive(); - resize(); - $(window).resize(function(){ - resize(); - resizeSearch(); - }); - initAnswerForm(); - initBasketForm(); - $('#PREVIEWHD').bind('click',function(){ - $(this).hide(); - $(this).empty(); - }); - - $('#PREVIEWHD').trigger('click'); - getBaskets(); - afterSearch(); - $(this).bind('keydown',function(event) - { - if(p4.preview.open) - { - switch(event.keyCode) - { - case 39: - getNext(); - break; - case 37: - getPrevious(); - break; - case 27: - if ($('#MODALDL').is(':visible')) { - hideDwnl(); - } - else { - closePreview(); - } - break; - case 32: - if(p4.slideShow) - stopSlide(); - else - startSlide(); - break; - } - } - else - { - switch(event.keyCode) - { - case 39: - $('#NEXT_PAGE').trigger('click'); - break; - case 27: - hideDwnl(); - break; - case 37: - $('#PREV_PAGE').trigger('click'); - break; - case 38: - $('#answers').scrollTop($('#answers').scrollTop()-50); - break; - case 40: - $('#answers').scrollTop($('#answers').scrollTop()+50); - break; - } - } - }); - - $('.boxPubli .diapo').css('width','').addClass('w160px').css('margin','0pt 0px 8px 8px'); - - } -); - -function resizePreview(){ - $('#PREVIEWCURRENTCONT').width($('#PREVIEWCURRENT').width() - 80 - ($('#PREVMAINREG').length>0?$('#PREVMAINREG').width():0) - 90); - - var h = $('#PREVIEWBOX').height(); - h = h - $('#PREVIEWTITLE').height(); - $.each($('div.preview_col'), function(i, n){ - $(n).height(h); - }); - $('#PREVIEWIMGCONT').height(h - $('#PREVIEWCURRENT').height()); - - $('#PREVIEWIMGDESC').height(h-$('#PREVIEWOTHERS').height()); - $('#PREVIEWIMGDESC .descBoxes').height($('#PREVIEWIMGDESC').height() - 30); - - p4.preview.height = $('#PREVIEWIMGCONT').height(); - p4.preview.width = $('#PREVIEWIMGCONT').width(); - setPreview(); -} - -function controlPubliSize() -{ - $('#publications ul').height('auto'); - if(50+$('#publications ul').height()>bodySize.y) - $('#publications ul').height(bodySize.y-50); -} - -function pquit(){ - if (parent.opener) - self.close(); - else - { - document.forms['logout'].submit(); - } - -} - -function resize(){ - - var h = bodySize.y = $(window).height() - $('#mainMenu').outerHeight(); - var w = bodySize.x = $(window).width(); - - - controlPubliSize(); - var rightw = w - 265; - rightw = ((rightw) > 0) ? rightw : 0; - - $('#container').height($(window).height()); - $('#container').width($(window).width()); - $('#right').width(rightw); - - $('#answers').height(h - $('#nb_answersEXT').outerHeight() - $('#navigation').outerHeight() - 20); - $('#answers').width(rightw); - - resizeSearch(); - - if (p4.preview.open) { - - resizePreview(); - } - if ($.browser.msie && $.browser.version == '6.0') { - $('#PREVIEWBOX').height(h * 0.94); - $('#OVERLAY,#OVERLAY2').width(w); - $('#OVERLAY,#OVERLAY2').height(h); - $('#left').height(h); - $('#right').height(h); - } - bodyW = rightw; - - if($('#MODALDL').is(':visible')) - { - $('#MODALDL').css({ - top:((h-$('#MODALDL').height())/2), - left:((w-$('#MODALDL').width())/2) - }); - } - reModCol(); -} - -function getHome(cas){ - switch (cas) { - case 'QUERY': - newSearch(); - break; - case 'PUBLI': - case 'HELP': - $.ajax({ - type: "POST", - url: "/client/clientFeedBack.php", - dataType: 'html', - data: { - action: "HOME", - type: cas - }, - beforeSend: function(){ -// if (answAjaxrunning) -// answAjax.abort(); - clearAnswers(); - answAjaxrunning = true; - $('#answers').addClass('loading'); - - }, - error: function(){ - answAjaxrunning = false; - $('#answers').removeClass('loading'); - }, - timeout: function(){ - answAjaxrunning = false; - $('#answers').removeClass('loading'); - }, - success: function(data){ - $('#answers').append(data); - afterSearch(); - - if(cas == 'PUBLI') - { - $('.boxPubli .diapo').css('width','').addClass('w160px').css('margin','0pt 0px 8px 8px'); - } - - return; - } - - }); - break; - - - default: - break; - } -} - - -function changeModCol(){ - reModCol(); - doSearch(); -} - -function getLanguage(){ - $.ajax({ - type: "POST", - url: "./clientFeedBack.php", - dataType: 'json', - data: { - action: "LANGUAGE" - }, - success: function(data){ - language = data; - return; - } - }); -} -function initBasketForm(){ - var options = { - target: '#baskets', - beforeSend: function(){ - if (baskAjaxrunning) - baskAjax.abort(); - baskAjaxrunning = true; - $('.baskIndicator').addClass('baskLoading'); - }, - error: function(){ - baskAjaxrunning = false; - $('#baskets').removeClass('loading'); - $('.baskIndicator').removeClass('baskLoading'); - }, - timeout: function(){ - baskAjaxrunning = false; - $('#baskets').removeClass('loading'); - $('.baskIndicator').removeClass('baskLoading'); - }, - success: function(){ - baskAjaxrunning = false; - if(p4.preview.open && $.browser.msie && $.browser.version == '6.0') - { - $('select').css({ - visibility: 'hidden' - }); - } - setBaskStatus(); - $('#baskets').removeClass('loading'); - $('.baskIndicator').removeClass('baskLoading'); - $('#blocBask img.baskTips').tooltip(); - - $("#flechenochu").bind('click', function(){ - baskDisplay = false; - saveBaskStatus(false); - $("#blocBask").slideToggle("slow"); - $("#blocNoBask").slideToggle("slow").queue(function(){ - $('#baskets').height($('#blocNoBask').height() + 6); - resizeSearch(); - $(this).dequeue(); - }); - }); - $("#flechechu").bind('click', function(){ - baskDisplay = true; - saveBaskStatus(true); - $("#blocNoBask").slideToggle("slow"); - $("#blocBask").slideToggle("slow").queue(function(){ - $('#baskets').height($('#blocBask').height() + 6); - resizeSearch(); - $(this).dequeue(); - }); - }); - $('#formChuBaskId')[0].value = $('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value; - $('#formChubas')[0].value = $('#formChuact')[0].value = $('#formChup0')[0].value = ''; - return; - } - }; - baskAjax = $('#formChu').ajaxForm(options); -} -function setBaskStatus(){ - if (baskDisplay) { - $("#blocNoBask").hide(); - $("#blocBask").show(); - $('#baskets').height($('#blocBask').height() + 6); - } - else { - $("#blocNoBask").show(); - $('#baskets').height($('#blocNoBask').height() + 6); - $("#blocBask").hide(); - } - resizeSearch(); -} - -function saveBaskStatus(value) { - $.post("clientFeedBack.php", { - action: "BASK_STATUS", - mode: (value?'1':'0') - }, function(data){ - return; - }); -} - - -function checkBaskets(){ - $.post("clientFeedBack.php", { - action: 'BASKUPDATE' - }, function(data){ - if(parseInt(data)>p4.nbNoview) - getBaskets(); - window.setTimeout("checkBaskets();", 52000); - return; - }); -} - -function initAnswerForm(){ - var options = { - target: '#answers', - beforeSend: function(formData){ - clearAnswers(); - if (answAjaxrunning) - return; - answAjaxrunning = true; - $('#tooltip').css({ - 'display': 'none' - }); - $('#answers').addClass('loading'); - }, - error: function(){ - answAjaxrunning = false; - $('#answers').removeClass('loading'); - }, - timeout: function(){ - answAjaxrunning = false; - $('#answers').removeClass('loading'); - }, - success: function(){ - answAjaxrunning = false; - afterSearch(); - return; - } - }; - $('#searchForm').ajaxForm(options); -} -/************* - * SEARCH - **************/ - -function afterSearch() -{ - - $('#answers').removeClass('loading'); - $("#answers").scrollTop(0); - $('div.infoTips, div.previewTips,img.captionTips',$('#answers')).tooltip(); - $('#nb_answers a.infoTips').tooltip(); -} - -function chkSbas(val,el){ - var bool = false; - if($(el)[0].checked) - bool = true; - $('.basItem' + val).each(function(){ - $(this)[0].checked = bool; - }); -} - -function chgOngSearch(tab){ - tTabs = new Array("ongSearch", "ongAdvSearch", "ongTopic"); - if($('#'+tab).length == 0) - return; - for (i = 0; i <= tTabs.length; i++) { - if ((o = $('#' + tTabs[i]))) - var rmC = (tTabs[i] == tab) ? "inactif" : "actif"; - var addC = (tTabs[i] == tab) ? "actif" : "inactif"; - o.addClass(addC).removeClass(rmC); - - - if ((o = document.getElementById("id" + tTabs[i]))) { - o.style.display = (tTabs[i] == tab) ? "" : "none"; - } - } - $('#idongAdvSearch :text').each(function(){ - this.value = ""; - }); - if (tab == "ongAdvSearch") { - document.getElementById("idongSearch").style.display = ""; - } - - resizeSearch(); -} - -function doSpecialSearch(qry, allbase){ -// if($('#ongSearch').length>0) -// chgOngSearch('ongSearch'); -// else -// if($('#ongAdvSearch').length>0) -// chgOngSearch('ongAdvSearch'); - if (allbase) { - $('input.basItem').each(function(){ - this.checked = true; - }); - var first = true; - $('#basSelector option').each(function(){ - this.selected = first; - first = false; - }); - } - $("form[name='search'] input[name='qry']")[0].value = decodeURIComponent(qry).replace(/\+/g, " "); - doSearch(); -} - -function clearAnswers(){ - $('#formAnswerPage')[0].value = ''; - $("#nb_answers").empty(); - $("#navigation").empty(); - $("#answers").empty(); -} - -function newSearch() -{ - $('#searchForm').submit(); -} - -function doSearch() -{ - $('#searchForm').submit(); -} - -function chgOng(num){ - for (i = 1; i <= 5; i++) { - if ((o = document.getElementById("idOnglet" + i))) - o.className = (i == num) ? "actif" : "inactif"; - if ((o = document.getElementById("onglet" + i))) - o.style.display = (i == num) ? "block" : "none"; - } - return; -} - -function checkBases(etat){ - $('.basItem, .basChecker').each(function(){ - this.checked = etat; - }); -} - -function resizeSearch(){ - - var searchh = (bodySize.y-$('#baskets').height()); - searchh = ((searchh)>0)?searchh:0; - var menu = $('#bigTabsBckg').height(); - $('#search').height(searchh); - $('#idongTopic').height($("#search").height()-8-menu); - $('#searchMiddle').height($("#search").height()-8-menu-$('#mainSearch').height()); -} -/************* - * Topics - **************/ - -function doThesSearch(type,sbid,term,field) -{ - - if(type=='T') - v = '*:"' + term.replace("(", "[").replace(")", "]") + '"'; - else - v = '"' + term + '" IN ' + field; - doSpecialSearch(v, true); -} - -function chgProp(path, v, k){ - var q2; - if (!k) - k = "*"; - if (k != null) - v = v + " [" + k + "]"; - document.getElementById("thprop_a_" + path).innerHTML = '"' + v + '"'; - - q = document.getElementById("thprop_q").innerText; - if (!q) - if (document.getElementById("thprop_q") && document.getElementById("thprop_q").textContent) - q = document.getElementById("thprop_q").textContent; - - q2 = ""; - - for (i = 0; i < q.length; i++) - q2 += q.charCodeAt(i) == 160 ? " " : q.charAt(i); // correction pour safari ! - doSpecialSearch(q2, true); - return (false); -} - -function clktri(id){ - var o = $('#TOPIC_UL' + id); - if ($('#TOPIC_UL' + id).hasClass('closed')) - $('#TOPIC_TRI' + id + ' ,#TOPIC_UL' + id).removeClass('closed').addClass('opened'); - else - $('#TOPIC_TRI' + id + ' ,#TOPIC_UL' + id).removeClass('opened').addClass('closed'); -} - - - -/************* - * CHUTIER - **************/ - -function evt_add_in_chutier(base_id, record_id){ - $('#formChubas')[0].value = base_id; - $('#formChuact')[0].value = "ADDIMG"; - $('#formChup0')[0].value = record_id; - $('#formChu').submit(); -} - -function chg_chu() -{ - var id = document.getElementById("chutier_name").value; - document.forms["formChu"].courChuId.value = id; - $("#formChu").submit(); -} - -function getBaskets() -{ - $('#formChu').submit(); -} - - -function newBasket(){ - var buttons = {}; - - buttons["OK"] = function(e){saveNewBask();$(this).dialog('close');}; - buttons[language.annuler] = function(e){$(this).dialog('close');}; - - $('#DIALOG').empty().append("<input type='text' value='' id='newBaskName' />").attr('title',language.createWinInvite).dialog({ - autoOpen:false, - closeOnEscape :true, - resizable:false, - draggable:false, - modal:true - }).dialog('open').dialog('option','buttons',buttons); - -} - -function saveNewBask(){ - var tmp = $('#newBaskName')[0].value; - if (tmp == null) - return; - mytest = false; - for (k = 0; (k < tmp.length && !mytest); k++) { - if (tmp.charAt(k) != " ") - mytest = true; - } - if (!mytest) { - alert(language.chuNameEmpty); - return; - } - document.forms["formChu"].act.value = "NEWCHU"; - document.forms["formChu"].p0.value = tmp; - $("#formChu").submit(); -} - -function evt_chutier(arg_commande){ - switch (arg_commande) { - case "DELSSEL": - if (confirm(language.confirmDelBasket)) { - if (document.forms["formChu"]) { - document.forms["formChu"].act.value = "DELCHU"; - document.forms["formChu"].p0.value = document.forms["formChu"].courChuId.value; - $("#formChu").submit(); - } - } - break; - } -} - -function reload_chu(id){ - document.forms["formChu"].courChuId.value = id; - $("#formChu").submit(); -} - -function evt_del_in_chutier(selid){ - document.forms["formChu"].act.value = "DELIMG"; - document.forms["formChu"].p0.value = selid; - $("#formChu").submit(); -} - -function openCompare(sselid){ - $('#ssel2val')[0].value = sselid; - $('#validatorEject').submit(); -} - -function setVisible(el){ - el.style.visibility = 'visible'; -} - -function beforeAnswer(){ - if ($('#basSelector')) { - var serialBas = $('#basSelector')[0].options[$('#basSelector')[0].selectedIndex].value; - serialBas = serialBas.split(';'); - $.each($('.basItem'), function(i, el){ - el.checked = false; - }); - $.each(serialBas, function(i, n){ - $('#basChk' + n)[0].checked = true; - }); - } - return true; -} - -function gotopage(pag){ - if (document.forms["search"]) { - document.forms["search"].nba.value = p4.tot; - document.forms["search"].pag.value = pag; - $("#answers").innerHTML = ""; - $('#searchForm').submit(); - } - return (false); -} - - -function evt_print(basrec){ - var url = "/include/printpage.php?callclient=1"; - - - if(typeof(basrec) == 'undefined') - url += "&SSTTID="+$('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value; - else - url += "&lst=" + basrec; - - var top; - var left; - - $('#MODALDL').attr('src',url); - - - var t = (bodySize.y - 300) / 2; - var l = (bodySize.x - 490) / 2; - - $('#MODALDL').css({ - 'display': 'block', - 'opacity': 0, - 'width': '490px', - 'position': 'absolute', - 'top': t, - 'left': l, - 'height': '300px' - }).fadeTo(500, 1); - - showOverlay(2); -} - - -function evt_dwnl(lst) -{ - var dialog_box = $('#dialog_dwnl'); - - dialog_box = $('#dialog_dwnl'); - - dialog_box.empty().addClass('loading').dialog({ - width:800, - height:600, - modal:true, - closeOnEscape : true, - resizable : false, - zIndex:10000, - overlay: { - backgroundColor: '#000', - opacity: 0.7 - }, - beforeclose:function(){ - tinyMCE.execCommand('mceRemoveControl',true,'sendmail_message'); - tinyMCE.execCommand('mceRemoveControl',true,'order_usage'); - } - }).dialog('open'); - - if(typeof(lst) == 'undefined') - var datas = "&SSTTID="+$('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value; - else - var datas = "&lst=" + lst; - - $.post("/include/multiexports.php", datas, function(data) { - - dialog_box.removeClass('loading').empty().append(data); - $('.tabs', dialog_box).tabs(); - tinyMCE.execCommand('mceAddControl',true,'sendmail_message'); - tinyMCE.execCommand('mceAddControl',true,'order_usage'); - - $('.close_button', dialog_box).bind('click',function(){ - dialog_box.dialog('close').dialog('destroy'); - }); - return false; - }); - -} - - -//function evt_dwnl(lst){ -// var top; -// var left; -// -// var url = "" + -// "/include/multiexports.php" + -// "?" + -// "&callclient=1"; -// -// -// $('#MODALDL').attr('src',url); -// -// -// var t = (bodySize.y - 400) / 2; -// var l = (bodySize.x - 550) / 2; -// -// $('#MODALDL').css({ -// 'display': 'block', -// 'opacity': 0, -// 'width': '550px', -// 'position': 'absolute', -// 'top': t, -// 'left': l, -// 'height': '400px' -// }).fadeTo(500, 1); -// -// showOverlay(2); -//} - -function profil(value) -{ - var top; - var left; - - if(value==undefined) - value = "0"; - - var url = "" + - "/include/profile.php" + - "?callclient=1&onglet="+value; - - $('#MODALDL').attr('src',url); - - - var t = (bodySize.y - 550) / 2; - var l = (bodySize.x - 490) / 2; - - $('#MODALDL').css({ - 'display': 'block', - 'opacity': 0, - 'width': '490px', - 'position': 'absolute', - 'top': t, - 'left': l, - 'height': '550px' - }).fadeTo(500, 1); - - showOverlay(2); -} - -function setCss(color) -{ - $('#skinCss').attr('href','/include/minify/f=skins/common/main.css,skins/client/'+color+'/clientcolor.css,'+ - 'skins/client/'+color+'/ui.core.css,'+ - 'skins/client/'+color+'/ui.datepicker.css,'+ - 'skins/client/'+color+'/ui.theme.css'); - $.post("clientFeedBack.php", { - action: "CSS", - color: color, - t: Math.random() - }, function(data){ - return; - }); - if ($.browser.msie && $.browser.version == '6.0') - $('select').hide().show(); -} - -function lessPubli(sselid) -{ - $('#PUBLICONTMORE'+sselid+', #PUBLICONTLESS'+sselid).toggle(); - $('#PUBLICONT'+sselid).css({height: '135px'}); - $('#PUBLIMORE'+sselid+', #PUBLILESS'+sselid).toggle(); -} - -function morePubli(sselid) -{ - $('#PUBLICONTMORE'+sselid+', #PUBLICONTLESS'+sselid).toggle(); - $('#PUBLICONT'+sselid).css({height: 'auto'}); - $('#PUBLIMORE'+sselid+', #PUBLILESS'+sselid).toggle(); -} - -function toggleFilter(filter,ele) -{ - var el = $('#'+filter); - if(el.is(':hidden')) - $(ele).parent().addClass('open'); - else - $(ele).parent().removeClass('open'); - $('#'+filter).slideToggle('fast'); -} - -function checkFilters() -{ - var danger = false; - var d = {}; - $('.filter_danger').each(function(){ - d[$(this).attr('id')] = false; - - }); - - $('.basContTitle .base_filter :text').each(function(){ - if($(this)[0].value != "") - { - danger = true; - - d['filter_danger'+parseInt($(this).attr('db'))] = true; - } - }); - $('.basContTitle .base_filter :checkbox').each(function(){ - if($(this)[0].checked) - { - danger = true; - - d['filter_danger'+parseInt($(this).attr('db'))] = true; - } - }); - $('.basContTitle .base_filter select').each(function(){ - if($(this)[0].selectedIndex != 0) - { - danger = true; - - d['filter_danger'+parseInt($(this).attr('db'))] = true; - } - }); - - $.each(d,function(i,bool){ - if(bool) - $('#'+i).show(); - else - $('#'+i).hide(); - }); - if(danger) - $('#filter_danger').show(); - else - $('#filter_danger').hide(); -} - -function removeFilters(bas) -{ - if (typeof(bas) == 'undefined') { - $('.basContTitle .base_filter :checkbox').each(function(){ - $(this)[0].checked = false; - }); - $('.basContTitle .base_filter :text').each(function(){ - $(this)[0].value = ""; - }); - $('.basContTitle .base_filter select').each(function(){ - $(this)[0].selectedIndex = 0; - }); - } - else { - $('#Filters' + bas + ' :checkbox').each(function(){ - $(this)[0].checked = false; - }); - $('#Filters' + bas + ' :text').each(function(){ - $(this)[0].value = ""; - }); - $('#Filters' + bas + ' select').each(function(){ - $(this)[0].selectedIndex = 0; - }); - } - checkFilters(); -} - -function execLastAct(lastAct) -{ - if(lastAct.act) - { - switch (lastAct.act) - { - case 'dwnl': - if(lastAct.SSTTID) - { - if (baskAjaxrunning) { - setTimeout("execLastAct(lastAct);", 500); - } - else { - if($('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value != lastAct.SSTTID) - { - $('#chutier_name option').each(function(i, n){ - if (lastAct.SSTTID == this.value) { - $('#chutier_name')[0].selectedIndex = i; - $('#chutier_name').trigger('change'); - setTimeout("execLastAct(lastAct);", 500); - } - }); - }else - evt_dwnl(); - } - } - else - if(lastAct.lst) - { - evt_dwnl(lastAct.lst); - } - break; - } - } - return; -} - +/************* + * GLOBALES + **************/ + +var p4 = { + tot:0, + preview :{open:false,current:false}, + currentViewMode:'classic', + nbNoview:0 + }; + +var baskAjax,baskAjaxrunning; +baskAjaxrunning = false; +var answAjax,answAjaxrunning; +answAjaxrunning = false; + +var wCompare = null; +var language = {}; +var bodySize = {x:0,y:0}; + +/************* + * INITIALISATION + **************/ + + +function acceptCgus(name,value) +{ + setPref(name,value); +} + +function cancelCgus(id) +{ + $.ajax({ + type: "POST", + url: "/prod/TOU/deny/" + id + "/", + dataType:'json', + success: function(data){ + if(data.success) + { + alert(language.cgusRelog); + self.location.replace(self.location.href); + } + alert + { + humane.error(data.message); + } + } + }); +} + +function activateCgus() +{ + + $('.cgu-dialog:first').dialog({ + autoOpen : true, + closeOnEscape:false, + draggable:false, + modal:true, + resizable:false, + width:800, + height:600, + open:function() { + $(this).parents(".ui-dialog:first").find(".ui-dialog-titlebar-close").remove(); + var currentdialog = $(this); + $('.cgus-accept',$(this)).bind('click',function(){ + acceptCgus($('.cgus-accept',currentdialog).attr('id'),$('.cgus-accept',currentdialog).attr('date')); + $('.cgu-dialog').dialog('close'); + }); + $('.cgus-cancel',$(this)).bind('click',function(){ + if(confirm(language.warningDenyCgus)) + { + cancelCgus($('.cgus-cancel',currentdialog).attr('id').split('_').pop()); + } + }); + }, + close:function(){ + activateCgus(); + } + }); +} + +$(document).ready(function(){ + activateCgus(); +}); + +$(document).ready(function(){ + $.ajaxSetup({ + + error: function(){ + showModal('error',{title:'Server error'}); + }, + timeout: function(){ + showModal('timeout',{title:'Server not responding'}); + } + }); + + getLanguage(); + $('.datepicker').datepicker({ + firstDay: 1, + changeYear: true, changeMonth:true, + showOn: 'button', buttonImage:'/skins/icons/cal.png', buttonImageOnly: true + }); + + checkFilters(); + window.setTimeout("checkBaskets();", 5000); + + $('.actives').hover(function(){ + $(this).addClass("hover"); + },function(){ + $(this).removeClass("hover"); + }); + + +// if (!$.browser.msie || ($.browser.msie && $.browser.version != '6.0')) { +// $('#bandeau .publilist').hover(function(){ +// $(this).addClass("hover"); +// $(this).children('.hoverlist').show(); +// },function(){ +// $(this).removeClass("hover"); +// $(this).children('.hoverlist').hide(); +// }) +// }else +// { +// $('#bandeau .publilist').hover(function(){ +// $(this).addClass("hover"); +// },function(){ +// $(this).removeClass("hover"); +// }) +// +// } + + sessionactive(); + resize(); + $(window).resize(function(){ + resize(); + resizeSearch(); + }); + initAnswerForm(); + initBasketForm(); + $('#PREVIEWHD').bind('click',function(){ + $(this).hide(); + $(this).empty(); + }); + + $('#PREVIEWHD').trigger('click'); + getBaskets(); + afterSearch(); + $(this).bind('keydown',function(event) + { + if(p4.preview.open) + { + switch(event.keyCode) + { + case 39: + getNext(); + break; + case 37: + getPrevious(); + break; + case 27: + if ($('#MODALDL').is(':visible')) { + hideDwnl(); + } + else { + closePreview(); + } + break; + case 32: + if(p4.slideShow) + stopSlide(); + else + startSlide(); + break; + } + } + else + { + switch(event.keyCode) + { + case 39: + $('#NEXT_PAGE').trigger('click'); + break; + case 27: + hideDwnl(); + break; + case 37: + $('#PREV_PAGE').trigger('click'); + break; + case 38: + $('#answers').scrollTop($('#answers').scrollTop()-50); + break; + case 40: + $('#answers').scrollTop($('#answers').scrollTop()+50); + break; + } + } + }); + + $('.boxPubli .diapo').css('width','').addClass('w160px').css('margin','0pt 0px 8px 8px'); + + } +); + +function resizePreview(){ + $('#PREVIEWCURRENTCONT').width($('#PREVIEWCURRENT').width() - 80 - ($('#PREVMAINREG').length>0?$('#PREVMAINREG').width():0) - 90); + + var h = $('#PREVIEWBOX').height(); + h = h - $('#PREVIEWTITLE').height(); + $.each($('div.preview_col'), function(i, n){ + $(n).height(h); + }); + $('#PREVIEWIMGCONT').height(h - $('#PREVIEWCURRENT').height()); + + $('#PREVIEWIMGDESC').height(h-$('#PREVIEWOTHERS').height()); + $('#PREVIEWIMGDESC .descBoxes').height($('#PREVIEWIMGDESC').height() - 30); + + p4.preview.height = $('#PREVIEWIMGCONT').height(); + p4.preview.width = $('#PREVIEWIMGCONT').width(); + setPreview(); +} + +function controlPubliSize() +{ + $('#publications ul').height('auto'); + if(50+$('#publications ul').height()>bodySize.y) + $('#publications ul').height(bodySize.y-50); +} + +function pquit(){ + if (parent.opener) + self.close(); + else + { + document.forms['logout'].submit(); + } + +} + +function resize(){ + + var h = bodySize.y = $(window).height() - $('#mainMenu').outerHeight(); + var w = bodySize.x = $(window).width(); + + + controlPubliSize(); + var rightw = w - 265; + rightw = ((rightw) > 0) ? rightw : 0; + + $('#container').height($(window).height()); + $('#container').width($(window).width()); + $('#right').width(rightw); + + $('#answers').height(h - $('#nb_answersEXT').outerHeight() - $('#navigation').outerHeight() - 20); + $('#answers').width(rightw); + + resizeSearch(); + + if (p4.preview.open) { + + resizePreview(); + } + if ($.browser.msie && $.browser.version == '6.0') { + $('#PREVIEWBOX').height(h * 0.94); + $('#OVERLAY,#OVERLAY2').width(w); + $('#OVERLAY,#OVERLAY2').height(h); + $('#left').height(h); + $('#right').height(h); + } + bodyW = rightw; + + if($('#MODALDL').is(':visible')) + { + $('#MODALDL').css({ + top:((h-$('#MODALDL').height())/2), + left:((w-$('#MODALDL').width())/2) + }); + } + reModCol(); +} + +function getHome(cas){ + switch (cas) { + case 'QUERY': + newSearch(); + break; + case 'PUBLI': + case 'HELP': + $.ajax({ + type: "POST", + url: "/client/clientFeedBack.php", + dataType: 'html', + data: { + action: "HOME", + type: cas + }, + beforeSend: function(){ +// if (answAjaxrunning) +// answAjax.abort(); + clearAnswers(); + answAjaxrunning = true; + $('#answers').addClass('loading'); + + }, + error: function(){ + answAjaxrunning = false; + $('#answers').removeClass('loading'); + }, + timeout: function(){ + answAjaxrunning = false; + $('#answers').removeClass('loading'); + }, + success: function(data){ + $('#answers').append(data); + afterSearch(); + + if(cas == 'PUBLI') + { + $('.boxPubli .diapo').css('width','').addClass('w160px').css('margin','0pt 0px 8px 8px'); + } + + return; + } + + }); + break; + + + default: + break; + } +} + + +function changeModCol(){ + reModCol(); + doSearch(); +} + +function getLanguage(){ + $.ajax({ + type: "POST", + url: "./clientFeedBack.php", + dataType: 'json', + data: { + action: "LANGUAGE" + }, + success: function(data){ + language = data; + return; + } + }); +} +function initBasketForm(){ + var options = { + target: '#baskets', + beforeSend: function(){ + if (baskAjaxrunning) + baskAjax.abort(); + baskAjaxrunning = true; + $('.baskIndicator').addClass('baskLoading'); + }, + error: function(){ + baskAjaxrunning = false; + $('#baskets').removeClass('loading'); + $('.baskIndicator').removeClass('baskLoading'); + }, + timeout: function(){ + baskAjaxrunning = false; + $('#baskets').removeClass('loading'); + $('.baskIndicator').removeClass('baskLoading'); + }, + success: function(){ + baskAjaxrunning = false; + if(p4.preview.open && $.browser.msie && $.browser.version == '6.0') + { + $('select').css({ + visibility: 'hidden' + }); + } + setBaskStatus(); + $('#baskets').removeClass('loading'); + $('.baskIndicator').removeClass('baskLoading'); + $('#blocBask img.baskTips').tooltip(); + + $("#flechenochu").bind('click', function(){ + baskDisplay = false; + saveBaskStatus(false); + $("#blocBask").slideToggle("slow"); + $("#blocNoBask").slideToggle("slow").queue(function(){ + $('#baskets').height($('#blocNoBask').height() + 6); + resizeSearch(); + $(this).dequeue(); + }); + }); + $("#flechechu").bind('click', function(){ + baskDisplay = true; + saveBaskStatus(true); + $("#blocNoBask").slideToggle("slow"); + $("#blocBask").slideToggle("slow").queue(function(){ + $('#baskets').height($('#blocBask').height() + 6); + resizeSearch(); + $(this).dequeue(); + }); + }); + $('#formChuBaskId')[0].value = $('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value; + $('#formChubas')[0].value = $('#formChuact')[0].value = $('#formChup0')[0].value = ''; + return; + } + }; + baskAjax = $('#formChu').ajaxForm(options); +} +function setBaskStatus(){ + if (baskDisplay) { + $("#blocNoBask").hide(); + $("#blocBask").show(); + $('#baskets').height($('#blocBask').height() + 6); + } + else { + $("#blocNoBask").show(); + $('#baskets').height($('#blocNoBask').height() + 6); + $("#blocBask").hide(); + } + resizeSearch(); +} + +function saveBaskStatus(value) { + $.post("clientFeedBack.php", { + action: "BASK_STATUS", + mode: (value?'1':'0') + }, function(data){ + return; + }); +} + + +function checkBaskets(){ + $.post("clientFeedBack.php", { + action: 'BASKUPDATE' + }, function(data){ + if(parseInt(data)>p4.nbNoview) + getBaskets(); + window.setTimeout("checkBaskets();", 52000); + return; + }); +} + +function initAnswerForm(){ + var options = { + target: '#answers', + beforeSend: function(formData){ + clearAnswers(); + if (answAjaxrunning) + return; + answAjaxrunning = true; + $('#tooltip').css({ + 'display': 'none' + }); + $('#answers').addClass('loading'); + }, + error: function(){ + answAjaxrunning = false; + $('#answers').removeClass('loading'); + }, + timeout: function(){ + answAjaxrunning = false; + $('#answers').removeClass('loading'); + }, + success: function(){ + answAjaxrunning = false; + afterSearch(); + return; + } + }; + $('#searchForm').ajaxForm(options); +} +/************* + * SEARCH + **************/ + +function afterSearch() +{ + + $('#answers').removeClass('loading'); + $("#answers").scrollTop(0); + $('div.infoTips, div.previewTips,img.captionTips',$('#answers')).tooltip(); + $('#nb_answers a.infoTips').tooltip(); +} + +function chkSbas(val,el){ + var bool = false; + if($(el)[0].checked) + bool = true; + $('.basItem' + val).each(function(){ + $(this)[0].checked = bool; + }); +} + +function chgOngSearch(tab){ + tTabs = new Array("ongSearch", "ongAdvSearch", "ongTopic"); + if($('#'+tab).length == 0) + return; + for (i = 0; i <= tTabs.length; i++) { + if ((o = $('#' + tTabs[i]))) + var rmC = (tTabs[i] == tab) ? "inactif" : "actif"; + var addC = (tTabs[i] == tab) ? "actif" : "inactif"; + o.addClass(addC).removeClass(rmC); + + + if ((o = document.getElementById("id" + tTabs[i]))) { + o.style.display = (tTabs[i] == tab) ? "" : "none"; + } + } + $('#idongAdvSearch :text').each(function(){ + this.value = ""; + }); + if (tab == "ongAdvSearch") { + document.getElementById("idongSearch").style.display = ""; + } + + resizeSearch(); +} + +function doSpecialSearch(qry, allbase){ +// if($('#ongSearch').length>0) +// chgOngSearch('ongSearch'); +// else +// if($('#ongAdvSearch').length>0) +// chgOngSearch('ongAdvSearch'); + if (allbase) { + $('input.basItem').each(function(){ + this.checked = true; + }); + var first = true; + $('#basSelector option').each(function(){ + this.selected = first; + first = false; + }); + } + $("form[name='search'] input[name='qry']")[0].value = decodeURIComponent(qry).replace(/\+/g, " "); + doSearch(); +} + +function clearAnswers(){ + $('#formAnswerPage')[0].value = ''; + $("#nb_answers").empty(); + $("#navigation").empty(); + $("#answers").empty(); +} + +function newSearch() +{ + $('#searchForm').submit(); +} + +function doSearch() +{ + $('#searchForm').submit(); +} + +function chgOng(num){ + for (i = 1; i <= 5; i++) { + if ((o = document.getElementById("idOnglet" + i))) + o.className = (i == num) ? "actif" : "inactif"; + if ((o = document.getElementById("onglet" + i))) + o.style.display = (i == num) ? "block" : "none"; + } + return; +} + +function checkBases(etat){ + $('.basItem, .basChecker').each(function(){ + this.checked = etat; + }); +} + +function resizeSearch(){ + + var searchh = (bodySize.y-$('#baskets').height()); + searchh = ((searchh)>0)?searchh:0; + var menu = $('#bigTabsBckg').height(); + $('#search').height(searchh); + $('#idongTopic').height($("#search").height()-8-menu); + $('#searchMiddle').height($("#search").height()-8-menu-$('#mainSearch').height()); +} +/************* + * Topics + **************/ + +function doThesSearch(type,sbid,term,field) +{ + + if(type=='T') + v = '*:"' + term.replace("(", "[").replace(")", "]") + '"'; + else + v = '"' + term + '" IN ' + field; + doSpecialSearch(v, true); +} + +function chgProp(path, v, k){ + var q2; + if (!k) + k = "*"; + if (k != null) + v = v + " [" + k + "]"; + document.getElementById("thprop_a_" + path).innerHTML = '"' + v + '"'; + + q = document.getElementById("thprop_q").innerText; + if (!q) + if (document.getElementById("thprop_q") && document.getElementById("thprop_q").textContent) + q = document.getElementById("thprop_q").textContent; + + q2 = ""; + + for (i = 0; i < q.length; i++) + q2 += q.charCodeAt(i) == 160 ? " " : q.charAt(i); // correction pour safari ! + doSpecialSearch(q2, true); + return (false); +} + +function clktri(id){ + var o = $('#TOPIC_UL' + id); + if ($('#TOPIC_UL' + id).hasClass('closed')) + $('#TOPIC_TRI' + id + ' ,#TOPIC_UL' + id).removeClass('closed').addClass('opened'); + else + $('#TOPIC_TRI' + id + ' ,#TOPIC_UL' + id).removeClass('opened').addClass('closed'); +} + + + +/************* + * CHUTIER + **************/ + +function evt_add_in_chutier(base_id, record_id){ + $('#formChubas')[0].value = base_id; + $('#formChuact')[0].value = "ADDIMG"; + $('#formChup0')[0].value = record_id; + $('#formChu').submit(); +} + +function chg_chu() +{ + var id = document.getElementById("chutier_name").value; + document.forms["formChu"].courChuId.value = id; + $("#formChu").submit(); +} + +function getBaskets() +{ + $('#formChu').submit(); +} + + +function newBasket(){ + var buttons = {}; + + buttons["OK"] = function(e){saveNewBask();$(this).dialog('close');}; + buttons[language.annuler] = function(e){$(this).dialog('close');}; + + $('#DIALOG').empty().append("<input type='text' value='' id='newBaskName' />").attr('title',language.createWinInvite).dialog({ + autoOpen:false, + closeOnEscape :true, + resizable:false, + draggable:false, + modal:true + }).dialog('open').dialog('option','buttons',buttons); + +} + +function saveNewBask(){ + var tmp = $('#newBaskName')[0].value; + if (tmp == null) + return; + mytest = false; + for (k = 0; (k < tmp.length && !mytest); k++) { + if (tmp.charAt(k) != " ") + mytest = true; + } + if (!mytest) { + alert(language.chuNameEmpty); + return; + } + document.forms["formChu"].act.value = "NEWCHU"; + document.forms["formChu"].p0.value = tmp; + $("#formChu").submit(); +} + +function evt_chutier(arg_commande){ + switch (arg_commande) { + case "DELSSEL": + if (confirm(language.confirmDelBasket)) { + if (document.forms["formChu"]) { + document.forms["formChu"].act.value = "DELCHU"; + document.forms["formChu"].p0.value = document.forms["formChu"].courChuId.value; + $("#formChu").submit(); + } + } + break; + } +} + +function reload_chu(id){ + document.forms["formChu"].courChuId.value = id; + $("#formChu").submit(); +} + +function evt_del_in_chutier(selid){ + document.forms["formChu"].act.value = "DELIMG"; + document.forms["formChu"].p0.value = selid; + $("#formChu").submit(); +} + +function openCompare(sselid){ + $('#ssel2val')[0].value = sselid; + $('#validatorEject').submit(); +} + +function setVisible(el){ + el.style.visibility = 'visible'; +} + +function beforeAnswer(){ + if ($('#basSelector')) { + var serialBas = $('#basSelector')[0].options[$('#basSelector')[0].selectedIndex].value; + serialBas = serialBas.split(';'); + $.each($('.basItem'), function(i, el){ + el.checked = false; + }); + $.each(serialBas, function(i, n){ + $('#basChk' + n)[0].checked = true; + }); + } + return true; +} + +function gotopage(pag){ + if (document.forms["search"]) { + document.forms["search"].nba.value = p4.tot; + document.forms["search"].pag.value = pag; + $("#answers").innerHTML = ""; + $('#searchForm').submit(); + } + return (false); +} + + +function evt_print(basrec){ + var url = "/include/printpage.php?callclient=1"; + + + if(typeof(basrec) == 'undefined') + url += "&SSTTID="+$('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value; + else + url += "&lst=" + basrec; + + var top; + var left; + + $('#MODALDL').attr('src',url); + + + var t = (bodySize.y - 300) / 2; + var l = (bodySize.x - 490) / 2; + + $('#MODALDL').css({ + 'display': 'block', + 'opacity': 0, + 'width': '490px', + 'position': 'absolute', + 'top': t, + 'left': l, + 'height': '300px' + }).fadeTo(500, 1); + + showOverlay(2); +} + + +function evt_dwnl(lst) +{ + var dialog_box = $('#dialog_dwnl'); + + dialog_box.empty().addClass('loading').dialog({ + width:800, + height:600, + modal:true, + closeOnEscape : true, + resizable : false, + zIndex:10000, + overlay: { + backgroundColor: '#000', + opacity: 0.7 + }, + beforeclose:function(){ + tinyMCE.execCommand('mceRemoveControl',true,'sendmail_message'); + tinyMCE.execCommand('mceRemoveControl',true,'order_usage'); + } + }).dialog('open'); + + if(typeof(lst) == 'undefined') + var datas = "&SSTTID="+$('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value; + else + var datas = "&lst=" + lst; + + $.post("/include/multiexports.php", datas, function(data) { + + dialog_box.removeClass('loading').empty().append(data); + $('.tabs', dialog_box).tabs(); + tinyMCE.execCommand('mceAddControl',true,'sendmail_message'); + tinyMCE.execCommand('mceAddControl',true,'order_usage'); + + $('.close_button', dialog_box).bind('click',function(){ + dialog_box.dialog('close').dialog('destroy'); + }); + return false; + }); + +} + + +//function evt_dwnl(lst){ +// var top; +// var left; +// +// var url = "" + +// "/include/multiexports.php" + +// "?" + +// "&callclient=1"; +// +// +// $('#MODALDL').attr('src',url); +// +// +// var t = (bodySize.y - 400) / 2; +// var l = (bodySize.x - 550) / 2; +// +// $('#MODALDL').css({ +// 'display': 'block', +// 'opacity': 0, +// 'width': '550px', +// 'position': 'absolute', +// 'top': t, +// 'left': l, +// 'height': '400px' +// }).fadeTo(500, 1); +// +// showOverlay(2); +//} + +function profil(value) +{ + var top; + var left; + + if(value==undefined) + value = "0"; + + var url = "" + + "/include/profile.php" + + "?callclient=1&onglet="+value; + + $('#MODALDL').attr('src',url); + + + var t = (bodySize.y - 550) / 2; + var l = (bodySize.x - 490) / 2; + + $('#MODALDL').css({ + 'display': 'block', + 'opacity': 0, + 'width': '490px', + 'position': 'absolute', + 'top': t, + 'left': l, + 'height': '550px' + }).fadeTo(500, 1); + + showOverlay(2); +} + +function setCss(color) +{ + $('#skinCss').attr('href','/include/minify/f=skins/common/main.css,skins/client/'+color+'/clientcolor.css,'+ + 'skins/client/'+color+'/ui.core.css,'+ + 'skins/client/'+color+'/ui.datepicker.css,'+ + 'skins/client/'+color+'/ui.theme.css'); + $.post("clientFeedBack.php", { + action: "CSS", + color: color, + t: Math.random() + }, function(data){ + return; + }); + if ($.browser.msie && $.browser.version == '6.0') + $('select').hide().show(); +} + +function lessPubli(sselid) +{ + $('#PUBLICONTMORE'+sselid+', #PUBLICONTLESS'+sselid).toggle(); + $('#PUBLICONT'+sselid).css({height: '135px'}); + $('#PUBLIMORE'+sselid+', #PUBLILESS'+sselid).toggle(); +} + +function morePubli(sselid) +{ + $('#PUBLICONTMORE'+sselid+', #PUBLICONTLESS'+sselid).toggle(); + $('#PUBLICONT'+sselid).css({height: 'auto'}); + $('#PUBLIMORE'+sselid+', #PUBLILESS'+sselid).toggle(); +} + +function toggleFilter(filter,ele) +{ + var el = $('#'+filter); + if(el.is(':hidden')) + $(ele).parent().addClass('open'); + else + $(ele).parent().removeClass('open'); + $('#'+filter).slideToggle('fast'); +} + +function checkFilters() +{ + var danger = false; + var d = {}; + $('.filter_danger').each(function(){ + d[$(this).attr('id')] = false; + + }); + + $('.basContTitle .base_filter :text').each(function(){ + if($(this)[0].value != "") + { + danger = true; + + d['filter_danger'+parseInt($(this).attr('db'))] = true; + } + }); + $('.basContTitle .base_filter :checkbox').each(function(){ + if($(this)[0].checked) + { + danger = true; + + d['filter_danger'+parseInt($(this).attr('db'))] = true; + } + }); + $('.basContTitle .base_filter select').each(function(){ + if($(this)[0].selectedIndex != 0) + { + danger = true; + + d['filter_danger'+parseInt($(this).attr('db'))] = true; + } + }); + + $.each(d,function(i,bool){ + if(bool) + $('#'+i).show(); + else + $('#'+i).hide(); + }); + if(danger) + $('#filter_danger').show(); + else + $('#filter_danger').hide(); +} + +function removeFilters(bas) +{ + if (typeof(bas) == 'undefined') { + $('.basContTitle .base_filter :checkbox').each(function(){ + $(this)[0].checked = false; + }); + $('.basContTitle .base_filter :text').each(function(){ + $(this)[0].value = ""; + }); + $('.basContTitle .base_filter select').each(function(){ + $(this)[0].selectedIndex = 0; + }); + } + else { + $('#Filters' + bas + ' :checkbox').each(function(){ + $(this)[0].checked = false; + }); + $('#Filters' + bas + ' :text').each(function(){ + $(this)[0].value = ""; + }); + $('#Filters' + bas + ' select').each(function(){ + $(this)[0].selectedIndex = 0; + }); + } + checkFilters(); +} + +function execLastAct(lastAct) +{ + if(lastAct.act) + { + switch (lastAct.act) + { + case 'dwnl': + if(lastAct.SSTTID) + { + if (baskAjaxrunning) { + setTimeout("execLastAct(lastAct);", 500); + } + else { + if($('#chutier_name')[0].options[$('#chutier_name')[0].selectedIndex].value != lastAct.SSTTID) + { + $('#chutier_name option').each(function(i, n){ + if (lastAct.SSTTID == this.value) { + $('#chutier_name')[0].selectedIndex = i; + $('#chutier_name').trigger('change'); + setTimeout("execLastAct(lastAct);", 500); + } + }); + }else + evt_dwnl(); + } + } + else + if(lastAct.lst) + { + evt_dwnl(lastAct.lst); + } + break; + } + } + return; +} + diff --git a/www/include/download.php b/www/include/download.php index 8347dc2062..db7a08ab5e 100644 --- a/www/include/download.php +++ b/www/include/download.php @@ -56,7 +56,7 @@ $list['export_name'] = $exportname . '.zip'; $endDate = new DateTime('+3 hours'); -$url = random::getUrlToken('download', $session->get_usr_id(), $endDate, serialize($list)); +$url = random::getUrlToken(\random::TYPE_DOWNLOAD, $session->get_usr_id(), $endDate, serialize($list)); if ($url) { diff --git a/www/include/error.php b/www/include/error.php index 4a88bb52e2..7e6c2473b9 100644 --- a/www/include/error.php +++ b/www/include/error.php @@ -16,7 +16,7 @@ */ include_once __DIR__ . '/../../lib/bootstrap.php'; -$appbox = appbox::get_instance(registry::get_instance()); +$appbox = appbox::get_instance(\bootstrap::getCore()); $session = $appbox->get_session(); phrasea::use_i18n(Session_Handler::get_locale()); diff --git a/www/include/js/jquery.Selection.js b/www/include/js/jquery.Selection.js index e2d7dbaaca..9297746494 100644 --- a/www/include/js/jquery.Selection.js +++ b/www/include/js/jquery.Selection.js @@ -218,10 +218,16 @@ return this.datas; }, empty : function(){ + var $this = this; this.datas = new Array(); jQuery(this.options.selector, this.$container).filter('.selected:visible').removeClass('selected'); + if(typeof $this.options.selectStop === 'function') + { + $this.options.selectStop(jQuery.Event('selectStop'), $this); + } + return this; }, length : function(){ diff --git a/www/include/sendmailpage.php b/www/include/sendmailpage.php index 80aaf46c19..28fbfbc671 100644 --- a/www/include/sendmailpage.php +++ b/www/include/sendmailpage.php @@ -16,103 +16,139 @@ * @link www.phraseanet.com */ /* @var $Core \Alchemy\Phrasea\Core */ -$Core = require_once __DIR__ . '/../../lib/bootstrap.php'; -$Request = \Symfony\Component\HttpFoundation\Request::createFromGlobals(); -$appbox = appbox::get_instance($Core); -$session = $appbox->get_session(); -$registry = $Core->getRegistry(); -ob_start(null, 0); - -$request = http_request::getInstance(); -$parm = $request->get_parms("lst", "obj", "destmail", "subjectmail", "reading_confirm", "textmail", "ssttid", "type"); - - -$gatekeeper = gatekeeper::getInstance($Core); -$gatekeeper->require_session(); - -phrasea::headers(); - -$user = User_Adapter::getInstance($session->get_usr_id(), $appbox); - -$from = array('name' => $user->get_display_name(), 'email' => $user->get_email()); - -if ($parm["type"] == "title") - $titre = true; -else - $titre=false; - -$exportname = "Export_" . date("Y-n-d") . '_' . mt_rand(100, 999); - -if ($parm["ssttid"] != "") -{ - $em = $Core->getEntityManager(); - $repository = $em->getRepository('\Entities\Basket'); - - /* @var $repository \Repositories\BasketRepository */ - - $Basket = $repository->findUserBasket($Request->get('ssttid'), $Core->getAuthenticatedUser(), false); - - $exportname = str_replace(' ', '_', $basket->getName()) . "_" . date("Y-n-d"); -} - -$download = new set_export($parm['lst'], $parm['ssttid']); - -$list = $download->prepare_export($parm['obj'], $titre); - -$list['export_name'] = $exportname . '.zip'; -$list['email'] = $parm["destmail"]; - -$endate_obj = new DateTime('+1 day'); -$endDate = $endate_obj; - -$token = random::getUrlToken('email', false, $endDate, serialize($list)); - -$emails = explode(',', $parm["destmail"]); - -$dest = array(); - -foreach ($emails as $email) - $dest = array_merge($dest, explode(';', $email)); - -$res = $dest; -if ($token) -{ - $url = $registry->get('GV_ServerName') . 'mail-export/' . $token . '/'; - - - - $reading_confirm_to = false; - if ($parm['reading_confirm'] == '1') - { - $reading_confirm_to = $user->get_email(); - } - - foreach ($dest as $key => $email) - { - if (($result = mail::send_documents(trim($email), $url, $from, $endate_obj, $parm["textmail"], $reading_confirm_to)) === true) - unset($res[$key]); - } -} - -if (count($res) == 0) - echo "<script type='text/javascript'>parent.$('#sendmail .close_button:first').trigger('click');</script>"; -else -{ - echo "<script type='text/javascript'>alert('" . str_replace("'", "\'", sprintf(_('export::mail: erreur lors de l\'envoi aux adresses emails %s'), implode(', ', $res))) . "');</script>"; -} - -echo ob_get_clean(); -ob_flush(); -flush(); set_time_limit(0); session_write_close(); ignore_user_abort(true); -$zipFile = $registry->get('GV_RootPath') . 'tmp/download/' . $token . '.zip'; +$Core = require_once __DIR__ . '/../../lib/bootstrap.php'; +$Request = \Symfony\Component\HttpFoundation\Request::createFromGlobals(); + +$registry = $Core->getRegistry(); + +$gatekeeper = gatekeeper::getInstance($Core); +$gatekeeper->require_session(); + +$events_mngr = \eventsmanager_broker::getInstance(\appbox::get_instance($Core), $Core); + + +$user = $Core->getAuthenticatedUser(); + +$from = array('name' => $user->get_display_name(), 'email' => $user->get_email()); + +$titre = $Request->get("type") == "title" ? : false; + +$exportname = "Export_" . date("Y-n-d") . '_' . mt_rand(100, 999); + +if ($Request->get("ssttid", "") != "") +{ + $em = $Core->getEntityManager(); + $repository = $em->getRepository('\Entities\Basket'); + + /* @var $repository \Repositories\BasketRepository */ + $Basket = $repository->findUserBasket($Request->get('ssttid'), $Core->getAuthenticatedUser(), false); + + $exportname = str_replace(' ', '_', $Basket->getName()) . "_" . date("Y-n-d"); +} + +$download = new set_export($Request->get('lst', ''), $Request->get('ssttid', '')); + +$list = $download->prepare_export($Request->get('obj'), $titre); +$list['export_name'] = $exportname . '.zip'; +$list['email'] = $Request->get("destmail", ""); + +$endate_obj = new DateTime('+1 day'); +$endDate = $endate_obj; + +$token = random::getUrlToken(\random::TYPE_EMAIL, false, $endDate, serialize($list)); + +//GET EMAILS + +$dest = array(); + +$mails = explode(';', $Request->get("destmail", '')); + +foreach ($mails as $email) +{ + if (filter_var($email, FILTER_VALIDATE_EMAIL)) + { + $dest[] = $email; + } + else + { + $params = array( + 'usr_id' => $Core->getAuthenticatedUser()->get_id() + , 'lst' => $Request->get('lst', '') + , 'ssttid' => $Request->get('ssttid') + , 'dest' => $email + , 'reason' => \eventsmanager_notify_downloadmailfail::MAIL_NO_VALID + ); + + $events_mngr->trigger('__EXPORT_MAIL_FAIL__', $params); + } +} + +//got some emails +if (count($dest) > 0 && $token) +{ + $reading_confirm_to = false; + + if ($Request->get('reading_confirm') == '1') + { + $reading_confirm_to = $user->get_email(); + } + + //BUILDING ZIP + + $zipFile = $registry->get('GV_RootPath') . 'tmp/download/' . $token . '.zip'; + set_export::build_zip($token, $list, $zipFile); + + $res = $dest; + + $url = $registry->get('GV_ServerName') . 'mail-export/' . $token . '/'; + + foreach ($dest as $key => $email) + { + if (($result = mail::send_documents(trim($email), $url, $from, $endate_obj, $Request->get("textmail"), $reading_confirm_to)) === true) + { + unset($res[$key]); + } + } + + //some email fails + if (count($res) > 0) + { + foreach ($res as $email) + { + $params = array( + 'usr_id' => $Core->getAuthenticatedUser()->get_id() + , 'lst' => $Request->get('lst') + , 'ssttid' => $Request->get('ssttid') + , 'dest' => $email + , 'reason' => \eventsmanager_notify_downloadmailfail::MAIL_FAIL + ); + + $events_mngr->trigger('__EXPORT_MAIL_FAIL__', $params); + } + } +} +elseif(!$token && count($dest) > 0) +{ + foreach ($res as $email) + { + $params = array( + 'usr_id' => $Core->getAuthenticatedUser()->get_id() + , 'lst' => $Request->get('lst') + , 'ssttid' => $Request->get('ssttid') + , 'dest' => $email + , 'reason' => 0 + ); + + $events_mngr->trigger('__EXPORT_MAIL_FAIL__', $params); + } +} -set_export::build_zip($token, $list, $zipFile); diff --git a/www/login/authenticate.php b/www/login/authenticate.php index ab8988b37c..e759405697 100644 --- a/www/login/authenticate.php +++ b/www/login/authenticate.php @@ -108,7 +108,7 @@ if ((!is_null($parm['login']) && !is_null($parm['pwd'])) || $is_guest) { $date = new DateTime('5 minutes'); $usr_id = User_Adapter::get_usr_id_from_login($parm['login']); - $url = random::getUrlToken('password', $usr_id, $date); + $url = random::getUrlToken(\random::TYPE_PASSWORD, $usr_id, $date); $url = '/login/forgotpwd.php?token=' . $url . '&salt=1'; diff --git a/www/login/forgotpwd.php b/www/login/forgotpwd.php index 06b1bb886c..9b5805e677 100644 --- a/www/login/forgotpwd.php +++ b/www/login/forgotpwd.php @@ -46,7 +46,7 @@ if (isset($parm["mail"]) && trim($parm["mail"]) != "") } $date = new DateTime('1 day'); - $url = random::getUrlToken('password', $user->get_id(), $date); + $url = random::getUrlToken(\random::TYPE_PASSWORD, $user->get_id(), $date); if ($url !== false) { diff --git a/www/login/register.php b/www/login/register.php index cd13cecfd3..058c8c256d 100644 --- a/www/login/register.php +++ b/www/login/register.php @@ -106,7 +106,7 @@ if ($request->has_post_datas()) $needed['form_email'] = _('forms::l\'email semble invalide'); //on verifie le login - if (strlen($parm['form_login']) < 8) + if (strlen($parm['form_login']) < 5) $needed['form_login'] = _('forms::la valeur donnee est trop courte'); if (sizeof($needed) === 1 && isset($needed['form_login']) && $needed['form_login'] === true) diff --git a/www/prod/jquery.Feedback.js b/www/prod/jquery.Feedback.js index f46e20b1bd..c91f2627d9 100644 --- a/www/prod/jquery.Feedback.js +++ b/www/prod/jquery.Feedback.js @@ -1,6 +1,7 @@ -;(function(window){ +; +(function(window){ var Feedback = function($container, context){ this.container = $($container); @@ -12,7 +13,7 @@ { selector:'.badge' } - ); + ); var $this = this; @@ -37,16 +38,16 @@ beforeSend:function(){ if($('#user_adder_dialog').length == 0) { - $('body').append('<div id="user_adder_dialog" style="display:none;"></div>'); + $('body').append('<div id="user_adder_dialog" title="' + $this.html() + '" style="display:none;"></div>'); } $('#user_adder_dialog').addClass('loading').empty().dialog({ - buttons:{}, - draggable:false, - resizable:false, - closeOnEscape:true, - modal:true, - width:'400', - height:'400' + buttons:{}, + draggable:false, + resizable:false, + closeOnEscape:true, + modal:true, + width:'400', + height:'400' }).dialog( "moveToTop" ); }, success: function(data){ @@ -154,50 +155,61 @@ return false; }); - + $('.FeedbackSend', this.container).bind('click', function(){ - if($('.badges .badge', $container).length === 0) - { - alert(language.FeedBackNoUsersSelected); - return; + if($('.badges .badge', $container).length === 0) + { + alert(language.FeedBackNoUsersSelected); + return; + } + + var buttons = {}; + + buttons[language.send] = function(){ + $dialog.Close(); + + $('input[name="name"]', $FeedBackForm).val($('input[name="name"]', $dialog.getDomElement()).val()); + $('input[name="duration"]', $FeedBackForm).val($('select[name="duration"]', $dialog.getDomElement()).val()); + $('textarea[name="message"]', $FeedBackForm).val($('textarea[name="message"]', $dialog.getDomElement()).val()); + $('input[name="recept"]', $FeedBackForm).attr('checked', $('input[name="recept"]', $dialog.getDomElement()).attr('checked')); + + $FeedBackForm.trigger('submit'); + }; + + var options = { + size : 'Small', + buttons : buttons, + loading : true, + title : language.send, + closeOnEscape : true, + cancelButton : true + }; + + var $dialog = p4.Dialog.Create(options, 2); + + $dialog.getDomElement().bind("keypress", function(event){ + if(event.which){ + if(event.which==13){ + return false; } + } + }); + + var $FeedBackForm = $('form[name="FeedBackForm"]', $container); - var buttons = {}; + var callback = function(rendered){ - buttons[language.send] = function(){ - $dialog.Close(); + $dialog.setContent(rendered); - $('input[name="name"]', $FeedBackForm).val($('input[name="name"]', $dialog.getDomElement()).val()); - $('input[name="duration"]', $FeedBackForm).val($('select[name="duration"]', $dialog.getDomElement()).val()); - $('textarea[name="message"]', $FeedBackForm).val($('textarea[name="message"]', $dialog.getDomElement()).val()); - $('input[name="recept"]', $FeedBackForm).attr('checked', $('input[name="recept"]', $dialog.getDomElement()).attr('checked')); + $('input[name="name"]', $dialog.getDomElement()).val($('input[name="name"]', $FeedBackForm).val()); + $('textarea[name="message"]', $dialog.getDomElement()).val($('textarea[name="message"]', $FeedBackForm).val()); + $('.' + $this.Context, $dialog.getDomElement()).show(); + + }; - $FeedBackForm.trigger('submit'); - }; - - var options = { - size : 'Small', - buttons : buttons, - loading : true, - title : language.send, - closeOnEscape : true, - cancelButton : true - }; - - var $dialog = p4.Dialog.Create(options, 2); - - var $FeedBackForm = $('form[name="FeedBackForm"]', $container); - - var callback = function(rendered){ - - $dialog.setContent(rendered); - - $('input[name="name"]', $dialog.getDomElement()).val($('input[name="name"]', $FeedBackForm).val()); - $('textarea[name="message"]', $dialog.getDomElement()).val($('textarea[name="message"]', $FeedBackForm).val()); - $('.' + $this.Context, $dialog.getDomElement()).show(); - }; - - p4.Mustache.Render('Feedback-SendForm', {language:language}, callback); + p4.Mustache.Render('Feedback-SendForm', { + language:language + }, callback); }).button(); $('.user_content .badges', this.container).disableSelection(); @@ -235,7 +247,9 @@ $('.user_content .badges .badge .deleter', this.container).live('click', function(event){ var $elem = $(this).closest('.badge'); - $elem.fadeOut(function(){$elem.remove();}); + $elem.fadeOut(function(){ + $elem.remove(); + }); return; }); @@ -274,65 +288,69 @@ return false; } - p4.Lists.create($input.val(), function(list){$input.val('');list.addUsers(users);}); + p4.Lists.create($input.val(), function(list){ + $input.val(''); + list.addUsers(users); + }); return false; }); $('input[name="users-search"]', this.container).autocomplete({ - minLength: 2, - source: function( request, response ) { - $.ajax({ - url: '/prod/push/search-user/', - dataType: "json", - data: { - query: request.term - }, - success: function( data ) { - response( data ); - } - }); + minLength: 2, + source: function( request, response ) { + + $.ajax({ + url: '/prod/push/search-user/', + dataType: "json", + data: { + query: request.term }, - select: function( event, ui ) { - if(ui.item.type == 'USER') - { - $this.selectUser(ui.item); - } - if(ui.item.type == 'LIST') - { - for(e in ui.item.entries) - { - $this.selectUser(ui.item.entries[e].User); - } - } - return false; + success: function( data ) { + response( data ); } + }); + }, + select: function( event, ui ) { + if(ui.item.type == 'USER') + { + $this.selectUser(ui.item); + } + if(ui.item.type == 'LIST') + { + for(e in ui.item.entries) + { + $this.selectUser(ui.item.entries[e].User); + } + } + return false; + } }) - .data( "autocomplete" )._renderItem = function( ul, item ) { + .data( "autocomplete" )._renderItem = function( ul, item ) { - var autocompleter = $('input[name="users-search"]', $this.container); + var autocompleter = $('input[name="users-search"]', $this.container); - autocompleter.addClass('loading'); + autocompleter.addClass('loading'); - var callback = function(datas){ - $(datas).data( "item.autocomplete", item ).appendTo( ul ); - autocompleter.data( "autocomplete" ).menu.refresh(); - autocompleter.data('autocomplete')._resizeMenu(); - autocompleter.removeClass('loading'); - }; - - if(item.type == 'USER') - { - var datas = p4.Mustache.Render('List-User-Item', item, callback); - } - if(item.type == 'LIST') - { - var datas = p4.Mustache.Render('List-List-Item', item, callback); - } - - return; + var callback = function(datas){ + $(datas).data( "item.autocomplete", item ).appendTo( ul ); + autocompleter.data( "autocomplete" ).menu.refresh(); + autocompleter.data('autocomplete')._resizeMenu(); + autocompleter.removeClass('loading'); }; + if(item.type == 'USER') + { + var datas = p4.Mustache.Render('List-User-Item', item, callback); + } + if(item.type == 'LIST') + { + var datas = p4.Mustache.Render('List-List-Item', item, callback); + } + + return; + }; + return this; }; @@ -360,12 +378,14 @@ }, loadUser : function(usr_id, callback) { var $this = this; - + $.ajax({ type: 'GET', url: '/prod/push/user/' + usr_id + '/', dataType: 'json', - data: {usr_id : usr_id}, + data: { + usr_id : usr_id + }, success: function(data){ if(typeof callback === 'function') { @@ -376,7 +396,7 @@ }, loadList : function(url, callback) { var $this = this; - + $.ajax({ type: 'GET', url: url, @@ -395,6 +415,7 @@ addUser : function($form, callback){ var $this = this; + $.ajax({ type: 'POST', url: '/prod/push/add-user/', @@ -456,7 +477,7 @@ $('a.user_adder', this.container).bind('click', function(){ var $this = $(this); - + $.ajax({ type: "GET", url: $this.attr('href'), @@ -467,13 +488,13 @@ $('body').append('<div id="user_adder_dialog" style="display:none;"></div>'); } $('#user_adder_dialog').addClass('loading').empty().dialog({ - buttons:{}, - draggable:false, - resizable:false, - closeOnEscape:true, - modal:true, - width:'400', - height:'400' + buttons:{}, + draggable:false, + resizable:false, + closeOnEscape:true, + modal:true, + width:'400', + height:'400' }).dialog( "moveToTop" ); }, success: function(data){ @@ -576,9 +597,9 @@ var initRight = function(){ - var $container = this.container = $('#ListManager .editor'); + var $container = $('#ListManager .editor'); - $('form[name="list-editor-search"]', this.container).bind('submit', function(){ + $('form[name="list-editor-search"]', $container).bind('submit', function(){ var $this = $(this); var dest = $('.list-editor-results', $container); @@ -599,11 +620,11 @@ return false; }); - $('form[name="list-editor-search"] select', this.container).bind('change', function(){ + $('form[name="list-editor-search"] select, form[name="list-editor-search"] input[name="ListUser"]', $container).bind('change', function(){ $(this).closest('form').trigger('submit'); }); - $('button', this.container).button(); + $('button', $container).button(); $('.EditToggle', $container).bind('click', function(){ $('.content.readonly, .content.readwrite', $('#ListManager')).toggle(); @@ -614,7 +635,44 @@ return false; }); - $('button.deleter', this.container).bind('click', function(event){ + $('form[name="SaveName"]', $container).bind('submit', function(){ + var $this = $(this); + + $.ajax({ + type: $this.attr('method'), + url: $this.attr('action'), + dataType: 'json', + data: $this.serializeArray(), + beforeSend:function(){ + + }, + success: function(data){ + if(data.success) + { + humane.info(data.message); + $('#ListManager .lists .list_refresh').trigger('click'); + } + else + { + humane.error(data.message); + } + return; + }, + error: function(){ + + return; + }, + timeout: function(){ + + return; + } + }); + + return false; + }); + + + $('button.deleter', $container).bind('click', function(event){ var list_id = $(this).find('input[name=list_id]').val(); @@ -625,7 +683,7 @@ buttons[language.valider] = function() { var callbackOK = function () { - $('a.list_refresh', $container).trigger('click'); + $('#ListManager .lists a.list_refresh', $container).trigger('click'); p4.Dialog.get(2).Close(); }; @@ -647,8 +705,7 @@ return false; }); }; - - + initLeft(); $('.badges a.deleter', this.container).live('click', function(){ diff --git a/www/prod/jquery.WorkZone.js b/www/prod/jquery.WorkZone.js index bc2fc8f83e..d7d8321818 100644 --- a/www/prod/jquery.WorkZone.js +++ b/www/prod/jquery.WorkZone.js @@ -378,12 +378,7 @@ var p4 = p4 || {}; } - - - - - - function dropOnBask(event,from,destKey) + function dropOnBask(event,from,destKey, singleSelection) { var action = "", from = $(from), dest_uri = '', lstbr = [], @@ -420,10 +415,14 @@ var p4 = p4 || {}; if(action=="IMGT2CHU" || action=="IMGT2REG") { - if($(from).hasClass('.baskAdder')) + if($(from).hasClass('.baskAdder') ) { lstbr = [$(from).attr('id').split('_').slice(2,4).join('_')]; } + else if(singleSelection) + { + lstbr = [$(from).attr('id').split('_').slice(1,3).join('_') ]; + } else { lstbr = p4.Results.Selection.get(); @@ -570,11 +569,56 @@ var p4 = p4 || {}; p4.WorkZone = { 'Selection':new Selectable($('#baskets'), {selector : '.CHIM'}), 'refresh':refreshBaskets, + 'addElementToBasket': function(sbas_id, record_id, event , singleSelection) { + singleSelection = !!singleSelection || false; + if($('#baskets .SSTT.active').length == 1) + { + return dropOnBask(event,$('#IMGT_'+ sbas_id +'_'+ record_id), $('#baskets .SSTT.active'), singleSelection); + } + }, 'reloadCurrent':function(){ var sstt = $('#baskets .content:visible'); if(sstt.length === 0) return; getContent(sstt.prev()); + }, + 'close':function(){ + + var frame = $('#idFrameC'), + that = this; + + if(!frame.hasClass('closed')) + { + frame.data('openwidth', frame.width()); + frame.animate({width:100}, + 300, + 'linear', + function(){ + answerSizer(); + linearize(); + }); + frame.addClass('closed'); + $('.escamote', frame).hide(); + $('li.ui-tabs-selected', frame).removeClass('ui-tabs-selected'); + frame.unbind('click.escamote').bind('click.escamote', function(){ + that.open(); + }) + } + }, + 'open':function(){ + + var frame = $('#idFrameC'); + + if(frame.hasClass('closed')) + { + var width = frame.data('openwidth') ? frame.data('openwidth') : 300; + frame.css({width:width}); + answerSizer(); + linearize(); + frame.removeClass('closed'); + $('.escamote', frame).show(); + frame.unbind('click.escamote'); + } } }; }); diff --git a/www/prod/jquery.edit.js b/www/prod/jquery.edit.js index 4153da43ad..ef254bee76 100644 --- a/www/prod/jquery.edit.js +++ b/www/prod/jquery.edit.js @@ -242,9 +242,8 @@ function editField(evt, meta_struct_id) }); - if(p4.edit.T_fields[meta_struct_id].explain || - p4.edit.T_fields[meta_struct_id].maxLength > 0) - { + if(p4.edit.T_fields[meta_struct_id].maxLength > 0) + { var idexplain = $("#idExplain"); idexplain.html(''); @@ -417,7 +416,7 @@ function updateCurrentMval(meta_struct_id, HighlightValue, vocabularyId) + (a[key].n != n ? " hetero " : "") + "'>" + '<table><tr><td>' + extra - + '<span class="value" vocabId="' + value.getVocabularyId() + '">' + + '<span class="value" vocabId="' + (value.getVocabularyId() ? value.getVocabularyId() : '') + '">' + word + "</span></td><td class='options'>" + '<a href="#" class="add_all"><img src="/skins/icons/plus11.png"/></a> ' @@ -1068,7 +1067,21 @@ function check_required(id_r, id_f) } else { - var check_required = $.trim(p4.edit.T_records[r].fields[f].getSerializedValues()); + + var check_required = ''; + + // le champ existe dans la fiche + if(p4.edit.T_fields[f].multi) + { + // champ multi : on compare la concat des valeurs + check_required = $.trim(p4.edit.T_records[r].fields[f].getSerializedValues()) + } + else if(p4.edit.T_records[r].fields[f].getValue()) + { + check_required = $.trim(p4.edit.T_records[r].fields[f].getValue().getValue()); + } + + if(check_required == '') { elem.show(); diff --git a/www/prod/page0.js b/www/prod/page0.js index 57b01602af..a0a99dd8f0 100644 --- a/www/prod/page0.js +++ b/www/prod/page0.js @@ -307,7 +307,7 @@ function resize(){ if(p4.preview.open) resizePreview(); $('#idFrameC').resizable('option', 'maxWidth',(bodySize.x-670)); - $('#idFrameC').resizable('option', 'minWidth',200); + $('#idFrameC').resizable('option', 'minWidth',265); $('#idFrameE').resizable('option', 'maxWidth',($('#EDITWINDOW').innerWidth()-200)); $('#idFrameE').resizable('option', 'minWidth',200); @@ -320,7 +320,6 @@ function resize(){ function clearAnswers(){ $('#formAnswerPage').val(''); - $('#searchForm input[name="sel"]').val(''); $('#searchForm input[name="nba"]').val(''); $('#answers, #dyn_tool').empty(); } @@ -346,6 +345,7 @@ function newSearch() { console.log('Fresh new search, cache empty'); } + p4.Results.Selection.empty() clearAnswers(); var val = $('#searchForm input[name="qry"]').val(); @@ -358,7 +358,8 @@ function newSearch() { $('li:last',histo).remove(); } - $('.activeproposals').hide(); + + $('#idFrameC li.proposals_WZ').removeClass('active'); $('#searchForm').submit(); return false; @@ -475,16 +476,19 @@ function initAnswerForm(){ success: function(datas){ - $('#answers').empty().append(datas.results).removeClass('loading'); $('#tool_results').empty().append(datas.infos); $('#tool_navigate').empty().append(datas.navigation); + $.each(p4.Results.Selection.get(), function(i, el){ + $('#IMGT_' + el).addClass('selected'); + }); + $('#proposals').empty().append(datas.phrasea_props); if($.trim(datas.phrasea_props) !== '') { - $('.activeproposals').show() + $('#idFrameC li.proposals_WZ').addClass('active'); } p4.tot = datas.total_answers; p4.tot_options = datas.form; @@ -711,7 +715,7 @@ function activeZoning() } $('#EDIT_query').blur(); }); - + $('#rightFrame').trigger('mousedown'); } function RGBtoHex(R,G,B) { @@ -1062,8 +1066,8 @@ $(document).ready(function(){ saveWindows(); return; } - if(nwidth<185) - nwidth = 185; + if(nwidth<265) + nwidth = 265; if(el.find('span:first').hasClass('valid') && nwidth<410) nwidth = 410; @@ -1081,6 +1085,10 @@ $(document).ready(function(){ } }); + $('#idFrameC .escamote').bind('click', function(){ + p4.WorkZone.close(); + }); + $('#look_box .tabs').tabs(); resize(); @@ -1149,7 +1157,6 @@ $(document).ready(function(){ initAnswerForm(); initLook(); - afterSearch(); setTimeout("sessionactive();", 30000); @@ -1394,6 +1401,9 @@ $(document).ready(function(){ { if(ui.tab.hash=="#thesaurus_tab") thesau_show(); + }, + select: function(event, ui){ + p4.WorkZone.open(); } }); @@ -2250,9 +2260,9 @@ function activeIcons() } } } - if(value !== '' || sstt_id !== '') + if(value !== '' || sstt_id !== '' || story !== '') { - feedbackThis(sstt_id, value); + feedbackThis(sstt_id, value, story); } else { @@ -2580,10 +2590,10 @@ function evt_print(value) printThis("lst="+value); } -function evt_add_in_chutier(a,b,event,el) +function evt_add_in_chutier(sbas_id, record_id,event, singleSelection) { - if($('#baskets .SSTT.active').length == 1) - dropOnBask(event,$('#PREV_BASKADD_'+a+'_'+b),$('#baskets .SSTT.active')); + var singleSelection = singleSelection || false; + p4.WorkZone.addElementToBasket(sbas_id, record_id, event, singleSelection); } @@ -2647,7 +2657,8 @@ function doDelete(lst) $.each(data,function(i,n){ var imgt = $('#IMGT_'+n), - chim = $('.CHIM_'+n); + chim = $('.CHIM_'+n), + stories = $('.STORY_'+n); $('.doc_infos', imgt).remove(); imgt.unbind("click").removeAttr("ondblclick").removeClass("selected").draggable("destroy").removeClass("IMGT").find("img").unbind(); imgt.find(".thumb img").attr("src","/skins/icons/deleted.png").css({ @@ -2658,7 +2669,14 @@ function doDelete(lst) imgt.find(".status,.title,.bottom").empty(); p4.Results.Selection.remove(n); - p4.WorkZone.Selection.remove(n); + if(stories.length > 0) + { + p4.WorkZone.refresh(); + } + else + { + p4.WorkZone.Selection.remove(n); + } }); viewNbSelect(); } @@ -3145,7 +3163,17 @@ function set_up_feed_box(data) url: $form.attr('action'), data: $form.serializeArray(), dataType:'json', + beforeSend:function(){ + $('button', $feed_box).attr('disabled', 'disabled'); + }, + error:function(){ + $('button', $feed_box).removeAttr('disabled'); + }, + timeout:function(){ + $('button', $feed_box).removeAttr('disabled'); + }, success: function(data){ + $('button', $feed_box).removeAttr('disabled'); if(data.error === true) { alert(data.message); diff --git a/www/prod/prodFeedBack.php b/www/prod/prodFeedBack.php index 4acdf8b71d..2e1eb7fda3 100644 --- a/www/prod/prodFeedBack.php +++ b/www/prod/prodFeedBack.php @@ -68,7 +68,7 @@ switch ($action) case 'CSS': require ($registry->get('GV_RootPath') . 'lib/classes/deprecated/prodUtils.php'); $parm = $request->get_parms('color'); - $output = $user->setPrefs('css', $color); + $output = $user->setPrefs('css', $parm['color']); break; case 'SAVETEMPPREF': diff --git a/www/report/report.js b/www/report/report.js index 4a0d2bb741..9f03cfa7d2 100644 --- a/www/report/report.js +++ b/www/report/report.js @@ -134,7 +134,7 @@ function dashboardDatePicker() numberOfMonths: 3, maxDate: "-0d", onSelect: function(selectedDate) { - id = $(".selected_em").attr('id').substr(3); + var id = $(".selected_em").attr('id').substr(3); changeDash(id); $('.btn-slide').trigger('click'); } @@ -147,8 +147,8 @@ function hideMenu() $('.hided').hide(); $(".showed").show(); $(".form").slideToggle("slow", function(){ - bodySize.y = $('#mainContainer').height(); - $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top)); + bodySize.y = $(document).height(); + $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top - 30)); }); } @@ -158,8 +158,8 @@ function showMenu() $('.showed').hide(); $(".hided").show(); $(".form").slideToggle("slow", function(){ - bodySize.y = $('#mainContainer').height(); - $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top)); + bodySize.y = $(document).height(); + $('.answers:visible').height(Math.round(bodySize.y - $('.answers:visible').position().top - 30)); }); } diff --git a/www/skins/icons/proposition_off32.png b/www/skins/icons/proposition_off32.png new file mode 100644 index 0000000000..062275e0f6 Binary files /dev/null and b/www/skins/icons/proposition_off32.png differ diff --git a/www/skins/icons/proposition_on32.png b/www/skins/icons/proposition_on32.png new file mode 100644 index 0000000000..4f4e328a1c Binary files /dev/null and b/www/skins/icons/proposition_on32.png differ diff --git a/www/skins/icons/thesaurus_32.png b/www/skins/icons/thesaurus_32.png new file mode 100644 index 0000000000..f20dc6378c Binary files /dev/null and b/www/skins/icons/thesaurus_32.png differ diff --git a/www/skins/icons/titre16.png b/www/skins/icons/titre16.png new file mode 100644 index 0000000000..a7c53b127f Binary files /dev/null and b/www/skins/icons/titre16.png differ diff --git a/www/skins/icons/user_details_off.png b/www/skins/icons/user_details_off.png new file mode 100644 index 0000000000..ecceac1fe5 Binary files /dev/null and b/www/skins/icons/user_details_off.png differ diff --git a/www/skins/icons/user_details_on.png b/www/skins/icons/user_details_on.png new file mode 100644 index 0000000000..8d92d1c0aa Binary files /dev/null and b/www/skins/icons/user_details_on.png differ diff --git a/www/skins/icons/workzone32.png b/www/skins/icons/workzone32.png new file mode 100644 index 0000000000..3f353d1018 Binary files /dev/null and b/www/skins/icons/workzone32.png differ diff --git a/www/skins/icons/workzoneEscamote.png b/www/skins/icons/workzoneEscamote.png new file mode 100644 index 0000000000..0f467f31c3 Binary files /dev/null and b/www/skins/icons/workzoneEscamote.png differ diff --git a/www/skins/lightbox/jquery.lightbox.ie6.js b/www/skins/lightbox/jquery.lightbox.ie6.js index 5a4540efb6..917dd11318 100644 --- a/www/skins/lightbox/jquery.lightbox.ie6.js +++ b/www/skins/lightbox/jquery.lightbox.ie6.js @@ -187,7 +187,11 @@ function set_release(el) { alert(data.datas); } - + if(!data.error) + { + p4.releasable = false; + } + return; } }); diff --git a/www/skins/lightbox/jquery.lightbox.js b/www/skins/lightbox/jquery.lightbox.js index 114fa50fa3..c3ed51e9f9 100644 --- a/www/skins/lightbox/jquery.lightbox.js +++ b/www/skins/lightbox/jquery.lightbox.js @@ -221,6 +221,10 @@ function set_release(el) { alert(data.datas); } + if(!data.error) + { + p4.releasable = false; + } return; } diff --git a/www/skins/oauth/default.css b/www/skins/oauth/default.css index cb39a6a878..5bb2574089 100644 --- a/www/skins/oauth/default.css +++ b/www/skins/oauth/default.css @@ -1,3 +1,5 @@ +/********* Default CSS Oauth pages *********/ + /****************** Page *******************/ html, body { @@ -20,7 +22,6 @@ html, body { background: radial-gradient(center, ellipse cover, #666666 0%,#595959 0%,#4c4c4c 12%,#474747 20%,#131313 77%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#666666', endColorstr='#131313',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */ } - #namePhr { color: #A9A9A9; text-align: center; @@ -32,19 +33,15 @@ html, body { padding: 10px; text-align: center; } - p.login_error { color: #FF0000; } - p.login_hello { color: #FFFFFF; } - #login-form { text-align: center; } - #myLogin { background: #FFFFFF; box-shadow: 0px 0px 10px #DCDCDC; @@ -53,7 +50,6 @@ p.login_hello { padding: 10px; margin-bottom: 0; } - #myPass { background: #FFFFFF; box-shadow: 0px 0px 10px #DCDCDC; @@ -62,16 +58,13 @@ p.login_hello { padding: 10px; margin-bottom: 0; } - #button_login { margin-top: 20px; } - #hello-box { padding: 10px; text-align: center; } - #text-box { background: #FFFFFF; box-shadow: 0px 0px 10px #DCDCDC; @@ -79,27 +72,22 @@ p.login_hello { padding: 10px; color: #000000; } - #top-text-box { padding-bottom: 5px; border-bottom: 1px dashed #000000; font-weight: bold; } - #main-text-box { padding-top: 10px; color: #808080; } - #main-text-box span { color: #FFA500; } - #btn-box { padding: 10px; text-align: center; } - form.access-deny { display: inline-block; margin-top: 10px; diff --git a/www/skins/prod/000000/prodcolor.css b/www/skins/prod/000000/prodcolor.css index 18e7e7bd8a..5b568dfc7b 100644 --- a/www/skins/prod/000000/prodcolor.css +++ b/www/skins/prod/000000/prodcolor.css @@ -154,6 +154,14 @@ span.ww_winTitle{ + +#idFrameC .wrapper{ + background-color: #404040; + border-top-right-radius: 10px; + border-bottom-right-radius: 10px; + right:10px; +} + .ui-tabs { background-color:tranparent; @@ -196,6 +204,39 @@ span.ww_winTitle{ border:none; overflow:hidden; } + +#idFrameC .ui-tabs .ui-tabs-nav li{ + height:52px; + float:left; +} + +#idFrameC .ui-tabs .ui-tabs-nav li a{ + padding:5px; + margin:5px; +} + +#idFrameC.closed .icon-menu li{ + clear:left; +} + +#idFrameC .ui-tabs .ui-tabs-nav li.ui-state-active a{ + background-color:#666666; +} +#idFrameC.closed .ui-tabs-panel, +#idFrameC.closed .ui-resizable-handle{ + display:none; +} + +#idFrameC li.proposals_WZ.active img.proposals_off, +#idFrameC li.proposals_WZ img.proposals_on{ + display:none; +} + +#idFrameC li.proposals_WZ.active img.proposals_on, +#idFrameC li.proposals_WZ img.proposals_off{ + display:block; +} + .ui-tabs .ui-tabs-nav li.ui-tabs-selected { background-color:#404040; @@ -452,9 +493,9 @@ span.ww_winTitle{ div.diapo { position:relative; - float:none; +/* float:none;*/ float:left; - display:inline-block; +/* display:inline-block;*/ display:block; border:1px solid #404040; -moz-border-radius:4px; @@ -508,8 +549,22 @@ div.diapo } #idFrameT .tools .verticalbuttonset { - position:relative; + position:relative; } + + +#idFrameT .tools .verticalbuttonset button img{ + height:15px; +} + +#idFrameT .tools .verticalbuttonset button{ + height:28px; +} + +#idFrameT .tools .verticalbuttonset span{ + display:inline-block; +} + #idFrameT .tools .verticalbuttonset .ui-button-text img,#idFrameT .buttonset img{ vertical-align:top; } @@ -532,10 +587,16 @@ div.diapo #idFrameT .tools .verticalbuttonset .submenu{ position: absolute; - top:1.5em; + top:28px; left:0; z-index:30; } + +/* hack all except ie 6, 7 , 8 */ +:root *> #idFrameT .tools .verticalbuttonset .submenu{ + top:1.5em; +} + #idFrameT .tools .verticalbuttonset .ui-state-default{ border: 1px solid #515151; } @@ -1592,8 +1653,7 @@ BOITES MODALES #sbasfiltercont { color:#FFFFFF; - padding:10px; - margin:10px; + margin: 0 0 0 10px; } #adv_search .sbasglob div hr { @@ -2161,7 +2221,7 @@ EDITING BORDER: #666666 1px solid; BACKGROUND-COLOR: #666666; }*/ -#idFrameE #ZTextMultiValued_values +#ZTextMultiValued_values { background-color:#444444; border:1px solid #999999; @@ -2170,13 +2230,14 @@ EDITING left:4px; right:4px; bottom:4px; - overflow:auto; + overflow-x:auto; + overflow-y:scroll; } #idFrameE #ZTextMultiValued_values div { cursor:pointer; height:20px; - padding:2px; + padding:2px 14px 2px 2px; } #idFrameE #ZTextMultiValued_values div table { @@ -2806,6 +2867,7 @@ dans l'onglet thesaurus : arbres, menus contextuels margin:0 0 30px; padding:10px; border:2px solid #212121; + float:left; } #answers .feed .entry.hover{ border:2px solid #404040; @@ -2836,11 +2898,6 @@ dans l'onglet thesaurus : arbres, menus contextuels background-position: center bottom; } -#answers .feed .contents .diapo -{ - float:none; - display:inline-block; -} #answers .feed .contents { @@ -3182,3 +3239,7 @@ dans l'onglet thesaurus : arbres, menus contextuels border:1px dotted #CCCCCC; z-index:10000; } + +#BasketBrowser .diapo .title{ + height:16px; +} diff --git a/www/skins/prod/959595/prodcolor.css b/www/skins/prod/959595/prodcolor.css index e0f2d8bf36..f83d9aabe0 100644 --- a/www/skins/prod/959595/prodcolor.css +++ b/www/skins/prod/959595/prodcolor.css @@ -154,6 +154,14 @@ span.ww_winTitle{ + +#idFrameC .wrapper{ + background-color: #999999; + border-top-right-radius: 10px; + border-bottom-right-radius: 10px; + right:10px; +} + .ui-tabs { background-color:tranparent; @@ -196,6 +204,39 @@ span.ww_winTitle{ border:none; overflow:hidden; } + +#idFrameC .ui-tabs .ui-tabs-nav li{ + height:52px; + float:left; +} + +#idFrameC .ui-tabs .ui-tabs-nav li a{ + padding:5px; + margin:5px; +} + +#idFrameC.closed .icon-menu li{ + clear:left; +} + +#idFrameC .ui-tabs .ui-tabs-nav li.ui-state-active a{ + background-color:#666666; +} +#idFrameC.closed .ui-tabs-panel, +#idFrameC.closed .ui-resizable-handle{ + display:none; +} + +#idFrameC li.proposals_WZ.active img.proposals_off, +#idFrameC li.proposals_WZ img.proposals_on{ + display:none; +} + +#idFrameC li.proposals_WZ.active img.proposals_on, +#idFrameC li.proposals_WZ img.proposals_off{ + display:block; +} + .ui-tabs .ui-tabs-nav li.ui-tabs-selected { background-color:#B1B1B1; @@ -468,8 +509,8 @@ div.diapo #answers{ - background-color: #111111; - border:1px solid #111111; + background-color: #D9D9D9; + border:1px solid #D9D9D9; } #answers_status{ @@ -512,6 +553,19 @@ div.diapo #idFrameT .tools .verticalbuttonset { position:relative; } + +#idFrameT .tools .verticalbuttonset button img{ + height:15px; +} + +#idFrameT .tools .verticalbuttonset button{ + height:28px; +} + +#idFrameT .tools .verticalbuttonset span{ + display:inline-block; +} + #idFrameT .tools .verticalbuttonset .ui-button-text img,#idFrameT .buttonset img{ vertical-align:top; } @@ -531,13 +585,18 @@ div.diapo background-color: #212121; } - #idFrameT .tools .verticalbuttonset .submenu{ position: absolute; - top:1.5em; + top:28px; left:0; z-index:30; } + +/* hack all except ie 6, 7 , 8 */ +:root *> #idFrameT .tools .verticalbuttonset .submenu{ + top:1.5em; +} + #idFrameT .tools .verticalbuttonset .ui-state-default{ border: 1px solid #515151; } @@ -1596,8 +1655,7 @@ BOITES MODALES #sbasfiltercont { color:#FFFFFF; - padding:10px; - margin:10px; + margin: 0 0 0 10px; } #adv_search .sbasglob div hr { @@ -2165,7 +2223,7 @@ EDITING BORDER: #666666 1px solid; BACKGROUND-COLOR: #666666; }*/ -#idFrameE #ZTextMultiValued_values +#ZTextMultiValued_values { background-color:#FFFFFF; border:1px solid #999999; @@ -2174,13 +2232,14 @@ EDITING left:4px; right:4px; bottom:4px; - overflow:auto; + overflow-x:auto; + overflow-y:scroll; } #idFrameE #ZTextMultiValued_values div { cursor:pointer; height:20px; - padding:2px; + padding:2px 14px 2px 2px; } #idFrameE #ZTextMultiValued_values div table { @@ -3192,3 +3251,7 @@ dans l'onglet thesaurus : arbres, menus contextuels border:1px dotted #CCCCCC; z-index:10000; } + +#BasketBrowser .diapo .title{ + height:16px; +} \ No newline at end of file diff --git a/www/skins/prod/Prod.css b/www/skins/prod/Prod.css index 05074cc424..f9f62cb712 100644 --- a/www/skins/prod/Prod.css +++ b/www/skins/prod/Prod.css @@ -3,13 +3,6 @@ bottom:10px; } -#idFrameC .wrapper{ - background-color: #404040; - border-top-right-radius: 10px; - border-bottom-right-radius: 10px; - right:10px; -} - #idFrameC .ui-tabs{ bottom:10px; left:0; diff --git a/www/skins/prod/Push.css b/www/skins/prod/Push.css index f7637da16b..6672257f1b 100644 --- a/www/skins/prod/Push.css +++ b/www/skins/prod/Push.css @@ -11,6 +11,7 @@ text-align: center; margin:5px 0; font-weight:bold; + font-size:16px; } .PushBox .LeftColumn ul{ @@ -39,11 +40,25 @@ .PushBox .user_content .header{ height:35px; bottom:auto; + right:50px; +} + +.PushBox .user_content .footer{ + height:35px; + top:auto; + text-align:right; + left:10px; + right:50px; + bottom:10px; } .PushBox .user_content .badges{ - top:35px; + top:50px; overflow:auto; + height:auto; + bottom:50px; + left:20px; + right:20px; } .PushBox .user_content .badges .badge .deleter{ @@ -58,6 +73,7 @@ display:inline-block; background-color: #515150; border:3px solid #515150; + padding:3px; } .PushBox .user_content .badges .badge.selected{ border:3px solid #EFEFEF; @@ -74,10 +90,28 @@ vertical-align: top; } +.PushBox .user_content .badges .badge td.toggle{ + vertical-align: bottom; +} + .PushBox .user_content .badges .badge .icon{ width:80px; background-color:#404040; } + +.PushBox .user_content .badges .badge .infos{ + padding-top:3px; + padding-left:5px; +} + +.PushBox .user_content .badges .badge table{ + width:95%; +} + +.PushBox .user_content .badges .badge .infos table{ + height:75px; +} + .PushBox .user_content .badges .badge .infos tr{ height:20px; } @@ -91,6 +125,18 @@ margin:7px; } +.PushBox .user_content .badges .badge .name{ + font-weight:bold; + white-space:pre-line; + display:block; + font-size:12px; +} + +.PushBox .user_content .badges .badge .subtite{ + display:block; + font-size:10px; +} + .PushBox .user_content .header .options{ text-align: right; } @@ -100,9 +146,30 @@ overflow:auto; } -.PushBox .lists .list.selected{ - background-color: #515151; + +.PushBox .LeftColumn .content ul.list li:nth-child(odd){ + background-color: none; } +.PushBox .LeftColumn .content ul.list li:nth-child(even){ + background-color: #515150; +} + +.PushBox .lists ul li:nth-child(odd){ + background-color: none; +} + +.PushBox .lists ul li:nth-child(even){ + background-color: #515150; +} + +.PushBox .LeftColumn .content ul.list li.selected{ + background-color: #AAA; +} + +.PushBox .lists .list.selected{ + background-color: #AAA; +} + .PushBox .lists .list{ padding:3px 0; } @@ -213,10 +280,109 @@ width:250px; display:inline-block; margin:5px; + background-color: #515150; + padding:5px; } + +#ListManager .content.readonly .badge .deleter{ + float:right; +} + + +#ListManager .content.readonly .badge table{ + width:auto; + table-layout: fixed; +} + +#ListManager .content.readonly .badge .infos{ + padding:2px; +} + #ListManager h1 span.title{ font-size:24px; line-height:24px; font-weight:bold; vertical-align:middle; -} \ No newline at end of file +} + +#PushBox .general_togglers li { + margin-top:5px; +} + +#PushBox .general_togglers button{ + width:100%; +} + + +#PushBox .general_togglers button .ui-button-text{ + font-weight: lighter; +} + + +#PushBox .content .list_saver{ + padding-top:20px; + padding-bottom:20px; + display:block; +} + +#PushBox .content .list_saver table{ + width:100%; + table-layout: auto; +} + +#PushBox .content .list_saver table tr{ + border:1px solid #ccc; +} + +#PushBox .content .list_saver input{ + padding:3px; + width:115px; + margin:0; +} + +#PushBox .content .list_saver button{ +} + +#find-user{ + line-height: 15px; +} + +#ListManager .content .lists span.action{ + display:block; + text-align:center; + font-weight: bold; + width:100%; +} + +#recommanded-users{ + margin-top:25px; + line-height:15px; +} + +#recommanded-users a:last-child{ + color: #1983CB; + text-decoration: none; +} + +#QuickAddUser table{ + width:100%; + table-layout:auto; +} + +#QuickAddUser table tr td{ + padding: 5px; +} + +#QuickAddUser table td:last-child{ + text-align: left; +} + +#QuickAddUser input{ + border: 1px solid #CCCCCC; + border-radius: 4px 4px 4px 4px; + box-shadow: 0 1px 1px #EEEEEE; + display: inline-block; + margin: 0 5px 0 0; + padding: 4px; + width: 95%; +} diff --git a/www/skins/report/report-table.css b/www/skins/report/report-table.css index 47e5c349e3..d9a7657ed0 100644 --- a/www/skins/report/report-table.css +++ b/www/skins/report/report-table.css @@ -60,6 +60,11 @@ iframe{ font-weight:bolder; } +.report_form fieldset{ + margin:0; + padding:0; +} + .curfilter{ font-size:12px; color:#333; @@ -84,11 +89,17 @@ iframe{ margin-top:50px; } +.horizontal-scroller{ + position:relative; + top:0; + left:0; +} + #mainTabs{ border:none; } .answers{ - background-color:#555555; + background-color:#F6F2F1; } .report-table tr.odd{ background-color:#CDCDCD; @@ -165,6 +176,9 @@ iframe{ vertical-align: 4px; text-align:center; color: #202020; + min-width:50px; + width:auto; + white-space: nowrap; } .report-table thead th { text-align: center; @@ -173,6 +187,9 @@ iframe{ border-bottom: 3px solid #f6f2f1; border-top:3px solid #f6f2f1; background-color:#FF9000; + min-width:50px; + width:auto; + white-space: nowrap; } .report-table tfoot td { background-color:#FF9000; @@ -418,7 +435,7 @@ table.tablesorter tr th.SortDown { } .onload{ - background-image:url(ajax-loader2.gif); + background-image:url(ajax-loader.gif); background-position:center center; background-repeat:no-repeat; } diff --git a/www/skins/setup/setup.css b/www/skins/setup/setup.css index ba4a9ec234..7dedae522d 100644 --- a/www/skins/setup/setup.css +++ b/www/skins/setup/setup.css @@ -109,6 +109,23 @@ input,select{ height:100%; vertical-align:middle; } +p.error { + font-weight: bold; + padding-top:5px; + padding-bottom:5px; + vertical-align: center; + border:1px dotted #EA1919; + padding-left:20px; + background: url("/skins/icons/delete.png") no-repeat left center; +} + +.main_content_wrapper td .warning{ + vertical-align:middle; + padding-left:20px; + padding-top:5px; + padding-bottom:5px; + background: url('/skins/icons/alert.png') no-repeat left center; +} .section_title{ height:30px;
        {{ display_name }} - - -
        - - + +
        {% trans 'Affiche dans report' %} - Regdate - - Regname - - Regdesc - {% trans 'Afficher en titre' %} - - - - - -
        - + {% if rights['restrict_dwnld'] > 0 %} + + {% else %} + + {% endif %}
        - + {% if rights['time_limited'] > 0 %} + + {% else %} + + {% endif %}
        - + {% if rights['masks'] > 0 %} + + {% else %} + + {% endif %}
        + {% trans 'URL de callback' %} - {{app.get_redirect_uri}} + {{app.get_redirect_uri}} {{app.get_redirect_uri}} + {{app.get_redirect_uri}}