diff --git a/lib/classes/databox.php b/lib/classes/databox.php index 2aac36fc7c..12d3c3a246 100644 --- a/lib/classes/databox.php +++ b/lib/classes/databox.php @@ -148,7 +148,7 @@ class databox extends base } if (!$row) { - throw new NotFoundHttpException(sprintf('databox %d not found', $sbas_id)); + throw new NotFoundHttpException(sprintf('databox %d not found', $this->id)); } $this->ord = $row['ord']; diff --git a/lib/classes/module/report/dashboard/feed.php b/lib/classes/module/report/dashboard/feed.php index d5b34eff52..a49ce226ae 100644 --- a/lib/classes/module/report/dashboard/feed.php +++ b/lib/classes/module/report/dashboard/feed.php @@ -72,7 +72,10 @@ class module_report_dashboard_feed implements module_report_dashboard_componentI $cache_id = 'feed_' . md5($sbasid . '_' . $sbas_coll . '_' . $dmin . '_' . $dmax); try { - return $app['phraseanet.appbox']->get_data_from_cache($cache_id); + $result = $app['phraseanet.appbox']->get_data_from_cache($cache_id); + $result->setApplication($app); + + return $result; } catch (Exception $e) { } @@ -231,4 +234,21 @@ class module_report_dashboard_feed implements module_report_dashboard_componentI return false; } } + + private function setApplication(Application $app) + { + $this->app = $app; + } + + public function __sleep() + { + $vars = array(); + foreach ($this as $key => $value) { + if (in_array($key, array('app'))) + continue; + $vars[] = $key; + } + + return $vars; + } } diff --git a/lib/classes/patch/380a3.php b/lib/classes/patch/380a3.php index dd16158130..6f125c4cd5 100644 --- a/lib/classes/patch/380a3.php +++ b/lib/classes/patch/380a3.php @@ -58,71 +58,70 @@ class patch_380a3 implements patchInterface { $conn = $databox->get_connection(); - try { - $removeProc = "DROP PROCEDURE IF EXISTS explode_log_table"; + $removeProc = "DROP PROCEDURE IF EXISTS explode_log_table"; - $stmt = $conn->prepare($removeProc); - $stmt->execute(); - $stmt->closeCursor(); - unset($stmt); + $stmt = $conn->prepare($removeProc); + $stmt->execute(); + $stmt->closeCursor(); + unset($stmt); - $procedure = " - CREATE PROCEDURE explode_log_table(bound VARCHAR(255)) - BEGIN - DECLARE l_log_id INT UNSIGNED DEFAULT 0; - DECLARE l_coll_list TEXT; - DECLARE occurance INT DEFAULT 0; - DECLARE i INT DEFAULT 0; - DECLARE dest_coll_id INT; - DECLARE done INT DEFAULT 0; - DECLARE result_set CURSOR FOR - SELECT l.id, l.coll_list - FROM log l - LEFT JOIN log_colls lc ON (lc.log_id = l.id) - WHERE (lc.log_id IS NULL) AND coll_list != ''; - DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1; - OPEN result_set; - read_loop: LOOP - FETCH result_set INTO l_log_id, l_coll_list; - IF done THEN - LEAVE read_loop; - END IF; - SET occurance = (SELECT LENGTH(l_coll_list) - LENGTH(REPLACE(l_coll_list, bound, ''))+1); - SET i=1; - START TRANSACTION; - WHILE i <= occurance DO - SET dest_coll_id = (SELECT REPLACE( - SUBSTRING( - SUBSTRING_INDEX(l_coll_list, bound, i), - LENGTH(SUBSTRING_INDEX(l_coll_list, bound, i - 1)) + 1 - ), - ',', - '' - )); - IF dest_coll_id > 0 THEN - INSERT INTO log_colls VALUES (null, l_log_id, dest_coll_id); - END IF; - SET i = i + 1; - END WHILE; - COMMIT; - END LOOP; - CLOSE result_set; - END;"; + $procedure = " + CREATE PROCEDURE explode_log_table(bound VARCHAR(255)) + BEGIN + DECLARE l_log_id INT UNSIGNED DEFAULT 0; + DECLARE l_coll_list TEXT; + DECLARE occurance INT DEFAULT 0; + DECLARE i INT DEFAULT 0; + DECLARE dest_coll_id INT; + DECLARE done INT DEFAULT 0; + DECLARE result_set CURSOR FOR + SELECT l.id, l.coll_list + FROM log l + LEFT JOIN log_colls lc ON (lc.log_id = l.id) + WHERE (lc.log_id IS NULL) AND coll_list != ''; + DECLARE CONTINUE HANDLER FOR NOT FOUND SET done = 1; + OPEN result_set; + read_loop: LOOP + FETCH result_set INTO l_log_id, l_coll_list; + IF done THEN + LEAVE read_loop; + END IF; + SET occurance = (SELECT LENGTH(l_coll_list) - LENGTH(REPLACE(l_coll_list, bound, ''))+1); + SET i=1; + START TRANSACTION; + WHILE i <= occurance DO + SET dest_coll_id = (SELECT REPLACE( + SUBSTRING( + SUBSTRING_INDEX(l_coll_list, bound, i), + LENGTH(SUBSTRING_INDEX(l_coll_list, bound, i - 1)) + 1 + ), + ',', + '' + )); + IF dest_coll_id > 0 THEN + INSERT INTO log_colls VALUES (null, l_log_id, dest_coll_id); + END IF; + SET i = i + 1; + END WHILE; + COMMIT; + END LOOP; + CLOSE result_set; + END;"; - $stmt = $conn->prepare($procedure); - $stmt->execute(); - $stmt->closeCursor(); - unset($stmt); + $stmt = $conn->prepare($procedure); + $stmt->execute(); + $stmt->closeCursor(); - $sql = "CALL explode_log_table(',')"; - $stmt = $conn->prepare($sql); - $stmt->execute(); - $stmt->closeCursor(); - unset($stmt); - } catch (\PDOEXception $e) { - return false; - } + $sql = "CALL explode_log_table(',')"; + $stmt = $conn->prepare($sql); + $stmt->execute(); + $stmt->closeCursor(); + + $stmt = $conn->prepare($removeProc); + $stmt->execute(); + $stmt->closeCursor(); + return true; } } diff --git a/locale/de_DE/LC_MESSAGES/phraseanet.mo b/locale/de_DE/LC_MESSAGES/phraseanet.mo index 5f2b2a31f5..8281ec39a1 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 3f16ef2c2e..21f78a6313 100644 --- a/locale/de_DE/LC_MESSAGES/phraseanet.po +++ b/locale/de_DE/LC_MESSAGES/phraseanet.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-05 14:36+0100\n" -"PO-Revision-Date: 2013-09-10 20:13+0100\n" +"POT-Creation-Date: 2013-09-18 13:38+0100\n" +"PO-Revision-Date: 2013-09-19 14:42+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" -"X-Launchpad-Export-Date: 2013-09-10 17:56+0000\n" +"X-Launchpad-Export-Date: 2013-09-18 18:02+0000\n" "X-Generator: Poedit 1.5.7\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" @@ -212,8 +212,8 @@ msgstr "Dieser Wert kann nicht leer sein" msgid "Url non valide" msgstr "URL nicht gültig" -#: lib/classes/API/V1/adapter.php:1098 lib/classes/API/V1/adapter.php:1144 -#: lib/classes/API/V1/adapter.php:1194 lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1101 lib/classes/API/V1/adapter.php:1147 +#: lib/classes/API/V1/adapter.php:1197 lib/classes/API/V1/adapter.php:1221 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 @@ -258,11 +258,11 @@ msgstr "URL nicht gültig" msgid "An error occured" msgstr "Ein Fehler ist aufgetreten" -#: lib/classes/API/V1/adapter.php:1192 +#: lib/classes/API/V1/adapter.php:1195 msgid "Record Not Found" msgstr "Datensatz wurde nicht gefunden" -#: lib/classes/API/V1/adapter.php:1216 +#: lib/classes/API/V1/adapter.php:1219 msgid "Story Not Found" msgstr "Bericht wurde nicht gefunden" @@ -1666,23 +1666,27 @@ msgstr "" "*Phraseanet Navigator* ist eine Smartphone Anwendung, die dem Benutzer " "ermöglicht, sich auf diese Instanz zu verbinden." -#: lib/conf.d/_GV_template.inc.php:211 +#: lib/conf.d/_GV_template.inc.php:212 +msgid "Authorize Microsoft Office Plugin to connect." +msgstr "Verbindung mit Microsoft Office Plugin erlauben" + +#: lib/conf.d/_GV_template.inc.php:218 msgid "Documents storage" msgstr "Dokumente Speicherung" -#: lib/conf.d/_GV_template.inc.php:217 +#: lib/conf.d/_GV_template.inc.php:224 msgid "Default path for datas" msgstr "Default-Pfad für Daten" -#: lib/conf.d/_GV_template.inc.php:223 +#: lib/conf.d/_GV_template.inc.php:230 msgid "Executables settings" msgstr "Einstellungen von ausführbaren Programme" -#: lib/conf.d/_GV_template.inc.php:228 +#: lib/conf.d/_GV_template.inc.php:235 msgid "Enable H264 stream mode" msgstr "H264 Stream Modus aktivieren" -#: lib/conf.d/_GV_template.inc.php:229 +#: lib/conf.d/_GV_template.inc.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1690,321 +1694,321 @@ msgstr "" "Mit mod_token benutzen. Vorsicht, benötigt die folgende Module: Apache und " "mod_h264_streaming mod_auth_token" -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.inc.php:243 msgid "Auth_token mount point" msgstr "Auth_token Mount-Punkt" -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.inc.php:250 msgid "Auth_token directory path" msgstr "Auth_token Verzeichnispfad" -#: lib/conf.d/_GV_template.inc.php:249 +#: lib/conf.d/_GV_template.inc.php:256 msgid "Auth_token passphrase" msgstr "Auth_token Passphrase" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.inc.php:257 msgid "Defined in Apache configuration" msgstr "in der Apache Konfiguration definiert" -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.inc.php:263 msgid "php.ini path" msgstr "php.ini Pfad" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.inc.php:264 msgid "Empty if not used" msgstr "leer, wenn nicht benutzt" -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.inc.php:271 msgid "Imagine driver" msgstr "Imagine driver" -#: lib/conf.d/_GV_template.inc.php:276 +#: lib/conf.d/_GV_template.inc.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Anzahl von Fäden für FFMpeg zu benutzen" -#: lib/conf.d/_GV_template.inc.php:282 +#: lib/conf.d/_GV_template.inc.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Seitenhöchstzahl aus PDF extrahiert" -#: lib/conf.d/_GV_template.inc.php:287 +#: lib/conf.d/_GV_template.inc.php:294 msgid "Main configuration" msgstr "Hauptkonfiguration" -#: lib/conf.d/_GV_template.inc.php:292 +#: lib/conf.d/_GV_template.inc.php:299 msgid "Admin email" msgstr "Admin-E-Mailadresse" -#: lib/conf.d/_GV_template.inc.php:298 +#: lib/conf.d/_GV_template.inc.php:305 msgid "Display the name of databases and collections" msgstr "Zeigen Sie den Name der Datenbanken und Kollektionen an" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.inc.php:312 msgid "Choose the title of the document to export" msgstr "Wählen Sie den Titel des Dokuments zu exportieren" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.inc.php:319 msgid "Default export title" msgstr "Standard Export Titel" -#: lib/conf.d/_GV_template.inc.php:315 +#: lib/conf.d/_GV_template.inc.php:322 msgid "Document title" msgstr "Titel des Dokuments" -#: lib/conf.d/_GV_template.inc.php:316 +#: lib/conf.d/_GV_template.inc.php:323 msgid "Original name" msgstr "ursprünglicher Name" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.inc.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "" "Aktivieren Sie diese Einstellung, um Dateien auf Facebook und Twitter zu " "teilen" -#: lib/conf.d/_GV_template.inc.php:324 +#: lib/conf.d/_GV_template.inc.php:331 msgid "Disabled" msgstr "Deaktiviert" -#: lib/conf.d/_GV_template.inc.php:325 +#: lib/conf.d/_GV_template.inc.php:332 msgid "Publishers" msgstr "Veröffentlicher" -#: lib/conf.d/_GV_template.inc.php:326 +#: lib/conf.d/_GV_template.inc.php:333 msgid "Enabled" msgstr "Aktiviert" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.inc.php:340 msgid "Homepage" msgstr "Homeseite" -#: lib/conf.d/_GV_template.inc.php:339 +#: lib/conf.d/_GV_template.inc.php:346 msgid "Homepage slideshow" msgstr "Homeseite Diashow" -#: lib/conf.d/_GV_template.inc.php:342 +#: lib/conf.d/_GV_template.inc.php:349 msgid "Single image" msgstr "Einzelbild" -#: lib/conf.d/_GV_template.inc.php:343 +#: lib/conf.d/_GV_template.inc.php:350 msgid "Slide show" msgstr "Diashow" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.inc.php:357 msgid "Search engine" msgstr "Suchmaschine" -#: lib/conf.d/_GV_template.inc.php:356 +#: lib/conf.d/_GV_template.inc.php:363 msgid "Minimum number of letters before truncation" msgstr "Mindestzeichenzahl vor der Kürzung" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.inc.php:364 msgid "Used in search engine" msgstr "im Suchmaschine benutzt" -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.inc.php:370 msgid "Default query" msgstr "Standardsuche" -#: lib/conf.d/_GV_template.inc.php:369 +#: lib/conf.d/_GV_template.inc.php:376 msgid "Default searched type" msgstr "Standard Suchoptionen" -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.inc.php:377 msgid "Used when opening the application" msgstr "wird benutzt beim Eröffnen der Anwendung" -#: lib/conf.d/_GV_template.inc.php:372 +#: lib/conf.d/_GV_template.inc.php:379 msgid "Documents" msgstr "Dokumente" -#: lib/conf.d/_GV_template.inc.php:373 +#: lib/conf.d/_GV_template.inc.php:380 msgid "Stories" msgstr "Berichte" -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.inc.php:386 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Report" -#: lib/conf.d/_GV_template.inc.php:385 +#: lib/conf.d/_GV_template.inc.php:392 msgid "Anonymous report" msgstr "anonymer Bericht" -#: lib/conf.d/_GV_template.inc.php:386 +#: lib/conf.d/_GV_template.inc.php:393 msgid "Hide information about users" msgstr "Informationen über die Benutzer ausblenden" -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.inc.php:399 msgid "Additionnal modules" msgstr "Zusatzmodule" -#: lib/conf.d/_GV_template.inc.php:398 +#: lib/conf.d/_GV_template.inc.php:405 msgid "Enable thesaurus" msgstr "Thesaurus aktivieren" -#: lib/conf.d/_GV_template.inc.php:403 +#: lib/conf.d/_GV_template.inc.php:410 msgid "Enable multi-doc mode" msgstr "MultiDoc modus aktivieren" -#: lib/conf.d/_GV_template.inc.php:408 +#: lib/conf.d/_GV_template.inc.php:415 msgid "Enable HD substitution" msgstr "HD Ersetzung aktivieren" -#: lib/conf.d/_GV_template.inc.php:413 +#: lib/conf.d/_GV_template.inc.php:420 msgid "Enable thumbnail substitution" msgstr "Miniaturansicht Ersetzung aktivieren" -#: lib/conf.d/_GV_template.inc.php:419 +#: lib/conf.d/_GV_template.inc.php:426 msgid "Emails" msgstr "E-Mail Adressen" -#: lib/conf.d/_GV_template.inc.php:424 +#: lib/conf.d/_GV_template.inc.php:431 msgid "Default mail sender address" msgstr "Standard E-Mail Absenderadresse" -#: lib/conf.d/_GV_template.inc.php:430 +#: lib/conf.d/_GV_template.inc.php:437 msgid "Prefix for notification emails" msgstr "Präfix für Benachrichtigungs-E-Mails" -#: lib/conf.d/_GV_template.inc.php:436 +#: lib/conf.d/_GV_template.inc.php:443 msgid "Use a SMTP server" msgstr "Benutzen Sie einen SMTP Server" -#: lib/conf.d/_GV_template.inc.php:442 +#: lib/conf.d/_GV_template.inc.php:449 msgid "Enable SMTP authentication" msgstr "SMTP Authentifizierung aktivieren" -#: lib/conf.d/_GV_template.inc.php:448 +#: lib/conf.d/_GV_template.inc.php:455 msgid "SMTP host" msgstr "SMTP Host" -#: lib/conf.d/_GV_template.inc.php:454 +#: lib/conf.d/_GV_template.inc.php:461 msgid "SMTP port" msgstr "SMTP Port" -#: lib/conf.d/_GV_template.inc.php:460 +#: lib/conf.d/_GV_template.inc.php:467 msgid "SMTP encryption" msgstr "SMTP Verschlüsselung" -#: lib/conf.d/_GV_template.inc.php:463 +#: lib/conf.d/_GV_template.inc.php:470 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 #: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 msgid "None" msgstr "Keine" -#: lib/conf.d/_GV_template.inc.php:471 +#: lib/conf.d/_GV_template.inc.php:478 msgid "SMTP user" msgstr "SMTP Benutzer" -#: lib/conf.d/_GV_template.inc.php:477 +#: lib/conf.d/_GV_template.inc.php:484 msgid "SMTP password" msgstr "SMTP Passwort" -#: lib/conf.d/_GV_template.inc.php:482 +#: lib/conf.d/_GV_template.inc.php:489 msgid "FTP Export" msgstr "FTP Export" -#: lib/conf.d/_GV_template.inc.php:487 +#: lib/conf.d/_GV_template.inc.php:494 msgid "Enable FTP export" msgstr "FTP Export aktivieren" -#: lib/conf.d/_GV_template.inc.php:488 +#: lib/conf.d/_GV_template.inc.php:495 msgid "Available in multi-export tab" msgstr "In der Mehrfachexport Registerkarte verfügbar" -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.inc.php:501 msgid "Enable FTP for users" msgstr "FTP für die Benutzer aktivieren" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.inc.php:502 msgid "By default it is available for admins" msgstr "Standardmässig ist es für die Administratoren verfügbar" -#: lib/conf.d/_GV_template.inc.php:500 +#: lib/conf.d/_GV_template.inc.php:507 msgid "Client" msgstr "Kunde" -#: lib/conf.d/_GV_template.inc.php:505 +#: lib/conf.d/_GV_template.inc.php:512 msgid "Maximum megabytes allowed for download" msgstr "genehmigte Menge in Megabytes für Download" -#: lib/conf.d/_GV_template.inc.php:506 +#: lib/conf.d/_GV_template.inc.php:513 msgid "If request is bigger, then mail is still available" msgstr "Wenn die Anfrage ist grösser, können Sie durch E-Mail senden" -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.inc.php:519 msgid "Search tab position" msgstr "Lage von der Registerkarte \"Suchen\"" -#: lib/conf.d/_GV_template.inc.php:518 +#: lib/conf.d/_GV_template.inc.php:525 msgid "Advanced search tab position" msgstr "Lage von der Registerkarte \"Erweiterte Suche\"" -#: lib/conf.d/_GV_template.inc.php:524 +#: lib/conf.d/_GV_template.inc.php:531 msgid "Topics tab position" msgstr "Lage von der Registerkarte \"Themen\"" -#: lib/conf.d/_GV_template.inc.php:530 +#: lib/conf.d/_GV_template.inc.php:537 msgid "Active tab position" msgstr "Lage von der Registerkarte \"Aktiv\"" -#: lib/conf.d/_GV_template.inc.php:536 +#: lib/conf.d/_GV_template.inc.php:543 msgid "Topics display mode" msgstr "Themen Anzeigemodus" -#: lib/conf.d/_GV_template.inc.php:538 +#: lib/conf.d/_GV_template.inc.php:545 msgid "Trees" msgstr "Bäume" -#: lib/conf.d/_GV_template.inc.php:539 lib/conf.d/_GV_template.inc.php:561 +#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 msgid "Drop-down" msgstr "Dropdown" -#: lib/conf.d/_GV_template.inc.php:546 +#: lib/conf.d/_GV_template.inc.php:553 msgid "Enable roll-over on stories" msgstr "Rollover auf die Berichte aktivieren" -#: lib/conf.d/_GV_template.inc.php:552 +#: lib/conf.d/_GV_template.inc.php:559 msgid "Enable roll-over on basket elements" msgstr "Rollover auf die Sammelkorb Elemente" -#: lib/conf.d/_GV_template.inc.php:558 +#: lib/conf.d/_GV_template.inc.php:565 msgid "Collections display mode" msgstr "Anzeigemodus der Kollektionen" -#: lib/conf.d/_GV_template.inc.php:562 +#: lib/conf.d/_GV_template.inc.php:569 msgid "Check-box" msgstr "Kontrollkästchen" -#: lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.inc.php:575 msgid "Display the total size of the document basket" msgstr "Gesamtgröße des Sammelkorbes anzeigen" -#: lib/conf.d/_GV_template.inc.php:574 +#: lib/conf.d/_GV_template.inc.php:581 msgid "Display proposals tab" msgstr "Registerkarte der Vorschläge anzeigen" -#: lib/conf.d/_GV_template.inc.php:580 +#: lib/conf.d/_GV_template.inc.php:587 msgid "Require authentication to download documents" msgstr "Authentifizierung benötigen, um Dokumente zu herunterladen" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.inc.php:588 msgid "Used for guest account" msgstr "Für Gastkonto benutzt" -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.inc.php:594 msgid "Users must accept Terms of Use for each export" msgstr "" "Die Benutzer müssen die Nutzungsbedingungen für jeden Export akzeptieren" -#: lib/conf.d/_GV_template.inc.php:592 +#: lib/conf.d/_GV_template.inc.php:599 msgid "Registration" msgstr "Anmeldung" -#: lib/conf.d/_GV_template.inc.php:597 +#: lib/conf.d/_GV_template.inc.php:604 msgid "Auto select databases" msgstr "automatische Wahl von Datenbanken" -#: lib/conf.d/_GV_template.inc.php:598 +#: lib/conf.d/_GV_template.inc.php:605 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -2013,56 +2017,56 @@ msgstr "" "Benutzer sich selbst anmelden kann und Anmeldung wird auf alle gewährte " "Datenbanken gehandelt." -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.inc.php:611 msgid "Enable auto registration" msgstr "Automatische Anmeldung aktivieren" -#: lib/conf.d/_GV_template.inc.php:609 +#: lib/conf.d/_GV_template.inc.php:616 msgid "Push configuration" msgstr "Push Konfiguration" -#: lib/conf.d/_GV_template.inc.php:614 +#: lib/conf.d/_GV_template.inc.php:621 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Anzahl von Tagen vor der Ende der Validierung, um eine E-Mail Errinerung zu " "senden" -#: lib/conf.d/_GV_template.inc.php:620 +#: lib/conf.d/_GV_template.inc.php:627 msgid "Default validation links duration" msgstr "Standarddauer für die Validierungslinke" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.inc.php:628 msgid "If set to 0, duration is permanent" msgstr "Ist es auf null gestellt, ist die Zeitdauer bleibend" -#: lib/conf.d/_GV_template.inc.php:626 +#: lib/conf.d/_GV_template.inc.php:633 msgid "Robot indexing" msgstr "Roboter Indexierung" -#: lib/conf.d/_GV_template.inc.php:631 +#: lib/conf.d/_GV_template.inc.php:638 msgid "Application title" msgstr "Anwendung Titel" -#: lib/conf.d/_GV_template.inc.php:637 +#: lib/conf.d/_GV_template.inc.php:644 msgid "Keywords used for indexing purposes by search engines robots" msgstr "" "Schlüsselwörter, die für Indexierung Zwecke von Suchroboter benutzt werden" -#: lib/conf.d/_GV_template.inc.php:643 +#: lib/conf.d/_GV_template.inc.php:650 msgid "Application description" msgstr "Anwendung Bezeichnung" -#: lib/conf.d/_GV_template.inc.php:649 +#: lib/conf.d/_GV_template.inc.php:656 msgid "Google Analytics identifier" msgstr "Google Analytics Bezeichner" -#: lib/conf.d/_GV_template.inc.php:655 +#: lib/conf.d/_GV_template.inc.php:662 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.inc.php:661 +#: lib/conf.d/_GV_template.inc.php:668 msgid "Enable Google Chrome frame" msgstr "Google Chrome Frame aktivieren" @@ -2322,7 +2326,7 @@ msgstr "Welche Fotosets möchten Sie benutzen, für die %number% Fotos?" #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 @@ -2352,7 +2356,7 @@ msgstr "Welche Fotosets möchten Sie benutzen, für die %number% Fotos?" #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 #: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:94 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 @@ -2387,8 +2391,8 @@ msgstr "Zurück" #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 @@ -2401,7 +2405,7 @@ msgstr "exportieren" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 @@ -2411,62 +2415,62 @@ msgstr "drucken" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 msgid "action : editer" msgstr "bearbeiten" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 msgid "action : status" msgstr "Eigenschaften" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 msgid "action : collection" msgstr "verschieben" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Feedback" msgstr "Feedback" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 msgid "action : publier" msgstr "Veröffentlichen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 msgid "action : outils" msgstr "Werkzeuge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 @@ -2635,21 +2639,21 @@ msgstr "Keine Anmeldung für Registrierung wurde verzeichnet" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 #: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 msgid "%nb_view% vue" -msgstr "" +msgstr "%nb_view% Ansicht" #: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 #: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 msgid "%nb_view% vues" -msgstr "" +msgstr "%nb_view% Ansichten" #: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 msgid "%nb_rating% like" -msgstr "" +msgstr "%nb_rating% « Gefällt mir »" #: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 msgid "%nb_rating% likes" -msgstr "" +msgstr "%nb_rating% « Gefällt mir »" #: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 @@ -3331,7 +3335,7 @@ msgstr "Kommentare" #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 @@ -3472,7 +3476,7 @@ msgid "admin::utilisateurs: demandes en cours" msgstr "Anfragen" #: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 #: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 #: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 @@ -3751,11 +3755,11 @@ msgstr "Ihre Sammelkörbe" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:54 msgid "%value% like" -msgstr "" +msgstr "%value% « Gefällt mir »" #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:60 msgid "%value% likes" -msgstr "" +msgstr "%value% « Gefällt mir »" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:27 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:27 @@ -3907,11 +3911,11 @@ msgstr "Ersatz" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:466 msgid "A record matches the unique identifier :" -msgstr "" +msgstr "Ein Datensatz entspricht dem eindeutigen Bezeichner :" #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:472 msgid "%record_count% records match the unique identifier :" -msgstr "" +msgstr "%record_count% Datensätze entsprechen dem eindeutigen Bezeichner :" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:26 msgid "No account yet?" @@ -4113,7 +4117,7 @@ msgid "" msgstr "Benutzer und Rechte von der Kollektion anwenden : " #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 msgid "choisir" msgstr "wählen" @@ -4203,7 +4207,7 @@ msgid "status:: retrouver sous forme de filtre dans la recherche" msgstr "Status Suche in der erweiterten Suche aktivieren" #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:697 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 msgid "" @@ -5593,7 +5597,7 @@ msgstr "Tabelle drucken" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:127 msgid "%total_count% results" -msgstr "" +msgstr "%total_count% Ergebnisse" #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:173 #: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:177 @@ -5686,8 +5690,8 @@ msgid "phraseanet:: tri par nom" msgstr "alphabetische Sortierung" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 msgid "Preferences" msgstr "Einstellungen" @@ -5696,7 +5700,7 @@ msgid "Advanced Search" msgstr "Erweiterte Suche" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 msgid "phraseanet::type:: documents" msgstr "Dokumente" @@ -5746,253 +5750,253 @@ msgstr "Zurücksetzen" msgid "Trier par " msgstr "Sortieren nach " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 msgid "rechercher par stemme" msgstr "nach Theme suchen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 msgid "Les termes apparaissent dans le(s) champs" msgstr "Die Begriffe befinden sich in Feld(er):" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 msgid "rechercher dans tous les champs" msgstr "Alle Felder" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 msgid "Status des documents a rechercher" msgstr "Zustand der Dokumente zu suchen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 msgid "Rechercher dans un champ date" msgstr "im Feld \"Datum\" suchen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 msgid "phraseanet::time:: de" msgstr "von" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 msgid "phraseanet::time:: a" msgstr "zu" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 msgid "reponses:: selectionner tout" msgstr "alles" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 msgid "reponses:: selectionner rien" msgstr "nichts" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 msgid "phraseanet::type:: images" msgstr "Bilder" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 msgid "raccourci :: a propos des raccourcis claviers" msgstr "Über Abkürzungen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 msgid "Raccourcis claviers en cours de recherche : " msgstr "Hauptfenster Abkürzungen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : alles auswählen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : drucken " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : Auswahl bearbeiten " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 msgid "Raccourcis::fleche gauche : page precedente " msgstr "Linkspfeil: vorherige Seite " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 msgid "Raccourcis::fleche droite : page suivante " msgstr "Rechtspfeil: nächste Seite " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "Pfeil oben: vertikal scrollen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "Abwärtspfeil: vertikal scrollen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Sammelkörbe und Funktionen Abkürzungen " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 msgid "Raccourcis claviers en cours de editing : " msgstr "Fenster Abkürzungen bearbeiten " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : Feld ändern " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 msgid "Raccourcis claviers en cours de preview : " msgstr "Fenster Abkürzungen, Detailansicht " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 msgid "Raccourcis::fleche gauche : en avant " msgstr "Rechtspfeil: nächstes Dokument " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 msgid "Raccourcis::fleche gauche : en arriere " msgstr "Abwärtspfeil: letztes Dokument " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "Dia-Schau starten " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 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/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 msgid "raccourcis :: ne plus montrer cette aide" msgstr "diese Hilfe nicht mehr anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 msgid "Affichage" msgstr "Anzeige" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 msgid "Configuration" msgstr "Konfiguration" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 msgid "Mode de presentation" msgstr "Anzeigemodus" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 msgid "reponses:: mode vignettes" msgstr "Miniaturansichten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 msgid "reponses:: mode liste" msgstr "Liste" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 msgid "Theme" msgstr "Thema" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 msgid "Selecteur de theme" msgstr "Thema Selektor" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 msgid "Presentation de vignettes" msgstr "Miniaturansichten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 msgid "Iconographe (description au rollover)" msgstr "Bildredakteur (Beschreibung mit Rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 msgid "Graphiste (preview au rollover)" msgstr "Grafiker (Voransicht mit Rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 msgid "Informations techniques" msgstr "Technische Informationen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 msgid "Afficher" msgstr "zeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 msgid "Afficher dans la notice" msgstr "in Beschreibung zeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 msgid "Ne pas afficher" msgstr "verstecken" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 msgid "Type de documents" msgstr "Dokumenttyp" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 msgid "Afficher une icone" msgstr "eine Ikone anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 msgid "reponses:: images par pages : " msgstr "Suchergebnisse nach Seite " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 msgid "reponses:: taille des images : " msgstr "Miniaturansichtengrösse " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 msgid "Couleur de selection" msgstr "Farbauswahl" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 msgid "Affichage au demarrage" msgstr "beim Start anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 msgid "Ma derniere question" msgstr "meine letzte Suchabfrage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 msgid "Une question personnelle" msgstr "eine persönliche Frage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 msgid "Aide" msgstr "die Hilfe" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 msgid "preview:: Description" msgstr "Beschreibung" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 msgid "preview:: Historique" msgstr "Historie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 msgid "preview:: Popularite" msgstr "Beliebtheit" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 msgid "Presentation de vignettes de panier" msgstr "Vorstellung der Voransichten des Sammelkorbes" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 msgid "Afficher les status" msgstr "die Zustände anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 msgid "Afficher la fiche descriptive" msgstr "das beschriftliche Blatt anzeigen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 msgid "Afficher le titre" msgstr "den Titel anzeigen" @@ -6435,7 +6439,6 @@ msgid "Charset to use for indexation" msgstr "Zeichensatz für die Indexierung zu benutzen" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 msgid "Date fields available for search" msgstr "verfügbare Datumsfelder für die Suche" @@ -6782,20 +6785,20 @@ msgstr "Sie haben keinen Zugriff darauf" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:74 msgid "One document can not be modified." -msgstr "" +msgstr "Ein Dokument kann nicht geändert werden" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:80 #, php-format msgid "%countable% documents can not be modified." -msgstr "" +msgstr "%countable% datensätze zur ausgewählten Kollektion verschieben." #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:99 msgid "Move one record to the chosen collection in the list." -msgstr "" +msgstr "Einen Datensatz zur ausgewählten Kollektion verschieben" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:105 msgid "Move %countable% records to the chosen collection in the list." -msgstr "" +msgstr "%countable% Datensätze zur ausgewählten Kollektion verschieben" #: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:142 msgid "" @@ -6850,10 +6853,12 @@ msgstr "" "hochgeladenen Inhalt der Videos verantwortlich und haben auch die Rechte für " "diese Videos" +#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:28 #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 msgid "Aucune notification" msgstr "keine Benachrichtigungen" +#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:37 #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 msgid "toutes les notifications" msgstr "Alle Benachrichtigungen" @@ -7110,7 +7115,7 @@ msgstr "senden" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:518 msgid "Un document commande" -msgstr "" +msgstr "Ein bestelltes Dokument" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 #, php-format @@ -7119,7 +7124,7 @@ msgstr "%docs_orderable% bestellte Dokumente" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:539 msgid "Un document ne peut etre commande" -msgstr "" +msgstr "Ein Dokument kann nicht bestellt werden" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:545 #, php-format @@ -7657,12 +7662,12 @@ msgstr "Letzte Aktualisierung" #: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 msgid "The user has been created." -msgstr "" +msgstr "Der Benutzer wurde erstellt" #: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 #, php-format msgid "%user_count% users have been created." -msgstr "" +msgstr "%user_count% benutzer wurden erstellt" #: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:72 msgid "admin::user: nouvel utilisateur" @@ -8091,11 +8096,11 @@ msgstr "Datensätze Typ" #: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 msgid "You have selected one record." -msgstr "" +msgstr "Sie haben einen Datensatz ausgewählt" #: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 msgid "You have selected %nbReceivedDocuments% records." -msgstr "" +msgstr "Sie haben %nbReceivedDocuments% Datensätze ausgewählt" #: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 msgid "None of the records can be modified." @@ -8103,11 +8108,11 @@ msgstr "Kein Datensatz kann geändert werden" #: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 msgid "Only one record can be modified." -msgstr "" +msgstr "Nur einen Datensatz kann geändert werden" #: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 msgid "Only %nbEditableDocuments% records can be modified." -msgstr "" +msgstr "Nur %nbEditableDocuments% Datensätze können nicht geändert werden" #: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 msgid "Stories status edition" @@ -8689,15 +8694,15 @@ msgstr "im Gange" #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 msgid "Start" -msgstr "" +msgstr "Start" #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 msgid "Stop" -msgstr "" +msgstr "Stop" #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 msgid "Logs" -msgstr "" +msgstr "Logs" #: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 msgid "admin::tasks: Nouvelle tache" @@ -9142,7 +9147,15 @@ msgstr "Empfehlungen" msgid "Phrasea search-engine configuration" msgstr "Phrasea Suchmaschine Konfiguration" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:65 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stemming" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Stemming erlauben" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 msgid "Default sort" msgstr "Standard-Sortierung" @@ -9299,21 +9312,21 @@ msgstr "" msgid "Envoie avec succes" msgstr "erfolgreich versendet" -#: lib/Alchemy/Phrasea/Controller/Setup.php:88 +#: lib/Alchemy/Phrasea/Controller/Setup.php:99 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" "Es wird nicht empfehlenswert Phraseanet ohne HTTPS Unterstützung zu " "installieren." -#: lib/Alchemy/Phrasea/Controller/Setup.php:123 +#: lib/Alchemy/Phrasea/Controller/Setup.php:134 msgid "Appbox is unreachable" msgstr "Appbox ist unerreichbar" -#: lib/Alchemy/Phrasea/Controller/Setup.php:133 +#: lib/Alchemy/Phrasea/Controller/Setup.php:144 msgid "Databox is unreachable" msgstr "Databox ist unerreichbar" -#: lib/Alchemy/Phrasea/Controller/Setup.php:175 +#: lib/Alchemy/Phrasea/Controller/Setup.php:186 #, php-format msgid "an error occured : %s" msgstr "Ein Fehler ist aufgetreten: %s" @@ -10022,15 +10035,15 @@ msgstr "Verteilen" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 msgid "Move" -msgstr "" +msgstr "Verschieben" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 msgid "Tool box" -msgstr "" +msgstr "Toolbox" #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 msgid "Attention !" -msgstr "" +msgstr "Achtung !" #: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:212 #: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:261 @@ -11241,26 +11254,26 @@ msgstr "Diese Nachricht ist eine Test E-Mail Überprüfung von %s" msgid "No sort" msgstr "keine Sortierung" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:126 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:130 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:136 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:138 msgid "descendant" msgstr "absteigend" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:127 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:131 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:137 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:139 msgid "ascendant" msgstr "aufsteigend" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:405 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:415 msgid "Unable to execute query" msgstr "unmöglich, die Query auszuführen" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:485 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:495 #, php-format msgid "reponses::propositions pour la base %s" msgstr "Vorschläge für die Datenbank %s" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:491 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:501 #, php-format msgid "reponses::propositions pour le terme %s" msgstr "für den Begriff \"%s\"" @@ -11311,21 +11324,21 @@ msgstr "%s kann nicht ein Operator folgen" msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " msgstr "falsche Formulierung, braucht mehrere Zeichen " -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:118 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:126 msgid "pertinence" msgstr "Relevanz" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:119 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:127 msgid "date dajout" msgstr "hinzugefügtes Datum" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:120 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:128 msgid "aleatoire" msgstr "zufällig" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:149 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:153 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:469 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:157 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:161 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:477 msgid "Sphinx server is offline" msgstr "Sphinx Server ist offline" diff --git a/locale/en_GB/LC_MESSAGES/phraseanet.mo b/locale/en_GB/LC_MESSAGES/phraseanet.mo index d7f448c054..2425524752 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 ce8eedd452..46d86d2387 100644 --- a/locale/en_GB/LC_MESSAGES/phraseanet.po +++ b/locale/en_GB/LC_MESSAGES/phraseanet.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-05 14:36+0100\n" -"PO-Revision-Date: 2013-09-10 20:12+0100\n" +"POT-Creation-Date: 2013-09-18 13:38+0100\n" +"PO-Revision-Date: 2013-09-19 14:42+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" -"X-Launchpad-Export-Date: 2013-09-10 17:56+0000\n" +"X-Launchpad-Export-Date: 2013-09-18 18:02+0000\n" "X-Generator: Poedit 1.5.7\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" @@ -208,8 +208,8 @@ msgstr "This value can't be empty" msgid "Url non valide" msgstr "Url is not valid" -#: lib/classes/API/V1/adapter.php:1098 lib/classes/API/V1/adapter.php:1144 -#: lib/classes/API/V1/adapter.php:1194 lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1101 lib/classes/API/V1/adapter.php:1147 +#: lib/classes/API/V1/adapter.php:1197 lib/classes/API/V1/adapter.php:1221 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 @@ -254,11 +254,11 @@ msgstr "Url is not valid" msgid "An error occured" msgstr "An error occurred" -#: lib/classes/API/V1/adapter.php:1192 +#: lib/classes/API/V1/adapter.php:1195 msgid "Record Not Found" msgstr "Record Not Found" -#: lib/classes/API/V1/adapter.php:1216 +#: lib/classes/API/V1/adapter.php:1219 msgid "Story Not Found" msgstr "Story not found" @@ -1642,23 +1642,27 @@ msgstr "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance." -#: lib/conf.d/_GV_template.inc.php:211 +#: lib/conf.d/_GV_template.inc.php:212 +msgid "Authorize Microsoft Office Plugin to connect." +msgstr "Authorize Microsoft Office Plugin to connect" + +#: lib/conf.d/_GV_template.inc.php:218 msgid "Documents storage" msgstr "Documents storage" -#: lib/conf.d/_GV_template.inc.php:217 +#: lib/conf.d/_GV_template.inc.php:224 msgid "Default path for datas" msgstr "Default path for datas" -#: lib/conf.d/_GV_template.inc.php:223 +#: lib/conf.d/_GV_template.inc.php:230 msgid "Executables settings" msgstr "Executables settings" -#: lib/conf.d/_GV_template.inc.php:228 +#: lib/conf.d/_GV_template.inc.php:235 msgid "Enable H264 stream mode" msgstr "Enable H264 stream mode" -#: lib/conf.d/_GV_template.inc.php:229 +#: lib/conf.d/_GV_template.inc.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1666,318 +1670,318 @@ msgstr "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token." -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.inc.php:243 msgid "Auth_token mount point" msgstr "Auth_token mount point" -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.inc.php:250 msgid "Auth_token directory path" msgstr "Auth_token directory path" -#: lib/conf.d/_GV_template.inc.php:249 +#: lib/conf.d/_GV_template.inc.php:256 msgid "Auth_token passphrase" msgstr "Auth_token passphrase" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.inc.php:257 msgid "Defined in Apache configuration" msgstr "Defined in Apache configuration." -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.inc.php:263 msgid "php.ini path" msgstr "php.ini path" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.inc.php:264 msgid "Empty if not used" msgstr "Empty if not used." -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.inc.php:271 msgid "Imagine driver" msgstr "Imagine driver" -#: lib/conf.d/_GV_template.inc.php:276 +#: lib/conf.d/_GV_template.inc.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Number of threads to use for FFMpeg" -#: lib/conf.d/_GV_template.inc.php:282 +#: lib/conf.d/_GV_template.inc.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Maximum number of pages to be extracted from PDF" -#: lib/conf.d/_GV_template.inc.php:287 +#: lib/conf.d/_GV_template.inc.php:294 msgid "Main configuration" msgstr "Main configuration" -#: lib/conf.d/_GV_template.inc.php:292 +#: lib/conf.d/_GV_template.inc.php:299 msgid "Admin email" msgstr "Admin e-mail" -#: lib/conf.d/_GV_template.inc.php:298 +#: lib/conf.d/_GV_template.inc.php:305 msgid "Display the name of databases and collections" msgstr "Display the name of databases and collections" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.inc.php:312 msgid "Choose the title of the document to export" msgstr "Choose the title of the document to export" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.inc.php:319 msgid "Default export title" msgstr "Default export title" -#: lib/conf.d/_GV_template.inc.php:315 +#: lib/conf.d/_GV_template.inc.php:322 msgid "Document title" msgstr "Document title" -#: lib/conf.d/_GV_template.inc.php:316 +#: lib/conf.d/_GV_template.inc.php:323 msgid "Original name" msgstr "Original name" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.inc.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "Enable this setting to share on Facebook and Twitter" -#: lib/conf.d/_GV_template.inc.php:324 +#: lib/conf.d/_GV_template.inc.php:331 msgid "Disabled" msgstr "Disabled" -#: lib/conf.d/_GV_template.inc.php:325 +#: lib/conf.d/_GV_template.inc.php:332 msgid "Publishers" msgstr "Publishers" -#: lib/conf.d/_GV_template.inc.php:326 +#: lib/conf.d/_GV_template.inc.php:333 msgid "Enabled" msgstr "Enabled" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.inc.php:340 msgid "Homepage" msgstr "Homepage" -#: lib/conf.d/_GV_template.inc.php:339 +#: lib/conf.d/_GV_template.inc.php:346 msgid "Homepage slideshow" msgstr "Homepage slideshow setting" -#: lib/conf.d/_GV_template.inc.php:342 +#: lib/conf.d/_GV_template.inc.php:349 msgid "Single image" msgstr "Single image" -#: lib/conf.d/_GV_template.inc.php:343 +#: lib/conf.d/_GV_template.inc.php:350 msgid "Slide show" msgstr "Slideshow" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.inc.php:357 msgid "Search engine" msgstr "Search engine" -#: lib/conf.d/_GV_template.inc.php:356 +#: lib/conf.d/_GV_template.inc.php:363 msgid "Minimum number of letters before truncation" msgstr "Minimum number of letters before truncation" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.inc.php:364 msgid "Used in search engine" msgstr "Used in search engine." -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.inc.php:370 msgid "Default query" msgstr "Default query" -#: lib/conf.d/_GV_template.inc.php:369 +#: lib/conf.d/_GV_template.inc.php:376 msgid "Default searched type" msgstr "Default searched type" -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.inc.php:377 msgid "Used when opening the application" msgstr "Used when opening the application." -#: lib/conf.d/_GV_template.inc.php:372 +#: lib/conf.d/_GV_template.inc.php:379 msgid "Documents" msgstr "Documents" -#: lib/conf.d/_GV_template.inc.php:373 +#: lib/conf.d/_GV_template.inc.php:380 msgid "Stories" msgstr "Stories" -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.inc.php:386 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Report" -#: lib/conf.d/_GV_template.inc.php:385 +#: lib/conf.d/_GV_template.inc.php:392 msgid "Anonymous report" msgstr "Anonymous report" -#: lib/conf.d/_GV_template.inc.php:386 +#: lib/conf.d/_GV_template.inc.php:393 msgid "Hide information about users" msgstr "Hide information about users." -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.inc.php:399 msgid "Additionnal modules" msgstr "Additional modules" -#: lib/conf.d/_GV_template.inc.php:398 +#: lib/conf.d/_GV_template.inc.php:405 msgid "Enable thesaurus" msgstr "Enable thesaurus" -#: lib/conf.d/_GV_template.inc.php:403 +#: lib/conf.d/_GV_template.inc.php:410 msgid "Enable multi-doc mode" msgstr "Enable multi-doc mode" -#: lib/conf.d/_GV_template.inc.php:408 +#: lib/conf.d/_GV_template.inc.php:415 msgid "Enable HD substitution" msgstr "Enable source document substitution" -#: lib/conf.d/_GV_template.inc.php:413 +#: lib/conf.d/_GV_template.inc.php:420 msgid "Enable thumbnail substitution" msgstr "Enable thumbnail substitution" -#: lib/conf.d/_GV_template.inc.php:419 +#: lib/conf.d/_GV_template.inc.php:426 msgid "Emails" msgstr "E-mails" -#: lib/conf.d/_GV_template.inc.php:424 +#: lib/conf.d/_GV_template.inc.php:431 msgid "Default mail sender address" msgstr "Default mail sender address" -#: lib/conf.d/_GV_template.inc.php:430 +#: lib/conf.d/_GV_template.inc.php:437 msgid "Prefix for notification emails" msgstr "Prefix for e-mail notifications" -#: lib/conf.d/_GV_template.inc.php:436 +#: lib/conf.d/_GV_template.inc.php:443 msgid "Use a SMTP server" msgstr "Use a SMTP server" -#: lib/conf.d/_GV_template.inc.php:442 +#: lib/conf.d/_GV_template.inc.php:449 msgid "Enable SMTP authentication" msgstr "Enable SMTP authentication" -#: lib/conf.d/_GV_template.inc.php:448 +#: lib/conf.d/_GV_template.inc.php:455 msgid "SMTP host" msgstr "SMTP host" -#: lib/conf.d/_GV_template.inc.php:454 +#: lib/conf.d/_GV_template.inc.php:461 msgid "SMTP port" msgstr "SMTP port" -#: lib/conf.d/_GV_template.inc.php:460 +#: lib/conf.d/_GV_template.inc.php:467 msgid "SMTP encryption" msgstr "SMTP encryption" -#: lib/conf.d/_GV_template.inc.php:463 +#: lib/conf.d/_GV_template.inc.php:470 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 #: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 msgid "None" msgstr "None" -#: lib/conf.d/_GV_template.inc.php:471 +#: lib/conf.d/_GV_template.inc.php:478 msgid "SMTP user" msgstr "SMTP user" -#: lib/conf.d/_GV_template.inc.php:477 +#: lib/conf.d/_GV_template.inc.php:484 msgid "SMTP password" msgstr "SMTP password" -#: lib/conf.d/_GV_template.inc.php:482 +#: lib/conf.d/_GV_template.inc.php:489 msgid "FTP Export" msgstr "FTP Export" -#: lib/conf.d/_GV_template.inc.php:487 +#: lib/conf.d/_GV_template.inc.php:494 msgid "Enable FTP export" msgstr "Enable FTP export" -#: lib/conf.d/_GV_template.inc.php:488 +#: lib/conf.d/_GV_template.inc.php:495 msgid "Available in multi-export tab" msgstr "Available in multi-export tab." -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.inc.php:501 msgid "Enable FTP for users" msgstr "Enable FTP for users" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.inc.php:502 msgid "By default it is available for admins" msgstr "By default it is available for admins." -#: lib/conf.d/_GV_template.inc.php:500 +#: lib/conf.d/_GV_template.inc.php:507 msgid "Client" msgstr "Client" -#: lib/conf.d/_GV_template.inc.php:505 +#: lib/conf.d/_GV_template.inc.php:512 msgid "Maximum megabytes allowed for download" msgstr "Maximum megabytes allowed for download" -#: lib/conf.d/_GV_template.inc.php:506 +#: lib/conf.d/_GV_template.inc.php:513 msgid "If request is bigger, then mail is still available" msgstr "If request is bigger, then mail is still available." -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.inc.php:519 msgid "Search tab position" msgstr "Search tab position" -#: lib/conf.d/_GV_template.inc.php:518 +#: lib/conf.d/_GV_template.inc.php:525 msgid "Advanced search tab position" msgstr "Advanced search tab position" -#: lib/conf.d/_GV_template.inc.php:524 +#: lib/conf.d/_GV_template.inc.php:531 msgid "Topics tab position" msgstr "Topics tab position" -#: lib/conf.d/_GV_template.inc.php:530 +#: lib/conf.d/_GV_template.inc.php:537 msgid "Active tab position" msgstr "Active tab position" -#: lib/conf.d/_GV_template.inc.php:536 +#: lib/conf.d/_GV_template.inc.php:543 msgid "Topics display mode" msgstr "Topics display mode" -#: lib/conf.d/_GV_template.inc.php:538 +#: lib/conf.d/_GV_template.inc.php:545 msgid "Trees" msgstr "Trees" -#: lib/conf.d/_GV_template.inc.php:539 lib/conf.d/_GV_template.inc.php:561 +#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 msgid "Drop-down" msgstr "Drop-down" -#: lib/conf.d/_GV_template.inc.php:546 +#: lib/conf.d/_GV_template.inc.php:553 msgid "Enable roll-over on stories" msgstr "Enable roll-over on stories" -#: lib/conf.d/_GV_template.inc.php:552 +#: lib/conf.d/_GV_template.inc.php:559 msgid "Enable roll-over on basket elements" msgstr "Enable roll-over on basket elements" -#: lib/conf.d/_GV_template.inc.php:558 +#: lib/conf.d/_GV_template.inc.php:565 msgid "Collections display mode" msgstr "Collections display mode" -#: lib/conf.d/_GV_template.inc.php:562 +#: lib/conf.d/_GV_template.inc.php:569 msgid "Check-box" msgstr "Check-box" -#: lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.inc.php:575 msgid "Display the total size of the document basket" msgstr "Display the total size of the document basket" -#: lib/conf.d/_GV_template.inc.php:574 +#: lib/conf.d/_GV_template.inc.php:581 msgid "Display proposals tab" msgstr "Display proposals tab" -#: lib/conf.d/_GV_template.inc.php:580 +#: lib/conf.d/_GV_template.inc.php:587 msgid "Require authentication to download documents" msgstr "Require authentication to download documents" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.inc.php:588 msgid "Used for guest account" msgstr "Used for guest account." -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.inc.php:594 msgid "Users must accept Terms of Use for each export" msgstr "Terms of Use must be accepted by users for each export" -#: lib/conf.d/_GV_template.inc.php:592 +#: lib/conf.d/_GV_template.inc.php:599 msgid "Registration" msgstr "Registration" -#: lib/conf.d/_GV_template.inc.php:597 +#: lib/conf.d/_GV_template.inc.php:604 msgid "Auto select databases" msgstr "Auto select databases" -#: lib/conf.d/_GV_template.inc.php:598 +#: lib/conf.d/_GV_template.inc.php:605 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -1985,53 +1989,53 @@ msgstr "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.inc.php:611 msgid "Enable auto registration" msgstr "Enable auto registration" -#: lib/conf.d/_GV_template.inc.php:609 +#: lib/conf.d/_GV_template.inc.php:616 msgid "Push configuration" msgstr "Push configuration" -#: lib/conf.d/_GV_template.inc.php:614 +#: lib/conf.d/_GV_template.inc.php:621 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Number of days before the end of the validation to send a reminder e-mail" -#: lib/conf.d/_GV_template.inc.php:620 +#: lib/conf.d/_GV_template.inc.php:627 msgid "Default validation links duration" msgstr "Default validation links duration" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.inc.php:628 msgid "If set to 0, duration is permanent" msgstr "If set to 0, duration is permanent." -#: lib/conf.d/_GV_template.inc.php:626 +#: lib/conf.d/_GV_template.inc.php:633 msgid "Robot indexing" msgstr "Robot indexing" -#: lib/conf.d/_GV_template.inc.php:631 +#: lib/conf.d/_GV_template.inc.php:638 msgid "Application title" msgstr "Application title" -#: lib/conf.d/_GV_template.inc.php:637 +#: lib/conf.d/_GV_template.inc.php:644 msgid "Keywords used for indexing purposes by search engines robots" msgstr "Keywords used for indexing purposes by search engines robots" -#: lib/conf.d/_GV_template.inc.php:643 +#: lib/conf.d/_GV_template.inc.php:650 msgid "Application description" msgstr "Application description" -#: lib/conf.d/_GV_template.inc.php:649 +#: lib/conf.d/_GV_template.inc.php:656 msgid "Google Analytics identifier" msgstr "Google Analytics identifier" -#: lib/conf.d/_GV_template.inc.php:655 +#: lib/conf.d/_GV_template.inc.php:662 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.inc.php:661 +#: lib/conf.d/_GV_template.inc.php:668 msgid "Enable Google Chrome frame" msgstr "Enable Google Chrome frame" @@ -2291,7 +2295,7 @@ msgstr "In which photoset do you want to add your %number% photos ?" #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 @@ -2321,7 +2325,7 @@ msgstr "In which photoset do you want to add your %number% photos ?" #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 #: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:94 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 @@ -2356,8 +2360,8 @@ msgstr "Back" #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 @@ -2370,7 +2374,7 @@ msgstr "Export" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 @@ -2380,62 +2384,62 @@ msgstr "Print" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 msgid "action : editer" msgstr "Edit" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 msgid "action : status" msgstr "Properties" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 msgid "action : collection" msgstr "Move" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Feedback" msgstr "Feedback" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 msgid "action : publier" msgstr "Publish" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 msgid "action : outils" msgstr "Tools" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 @@ -3290,7 +3294,7 @@ msgstr "Comments" #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 @@ -3431,7 +3435,7 @@ msgid "admin::utilisateurs: demandes en cours" msgstr "Demands" #: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 #: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 #: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 @@ -4072,7 +4076,7 @@ msgid "" msgstr "apply users and rights from collection : " #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 msgid "choisir" msgstr "Select" @@ -4159,7 +4163,7 @@ msgid "status:: retrouver sous forme de filtre dans la recherche" msgstr "Enable status search in advanced search." #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:697 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 msgid "" @@ -5620,8 +5624,8 @@ msgid "phraseanet:: tri par nom" msgstr "Sort by name" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 msgid "Preferences" msgstr "Settings" @@ -5630,7 +5634,7 @@ msgid "Advanced Search" msgstr "Advanced Search" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 msgid "phraseanet::type:: documents" msgstr "Documents" @@ -5680,253 +5684,253 @@ msgstr "Reset" msgid "Trier par " msgstr "Sort by " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 msgid "rechercher par stemme" msgstr "Stemme search" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 msgid "Les termes apparaissent dans le(s) champs" msgstr "Word(s) from field(s)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 msgid "rechercher dans tous les champs" msgstr "All fields" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 msgid "Status des documents a rechercher" msgstr "Document status" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 msgid "Rechercher dans un champ date" msgstr "In a date field" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 msgid "phraseanet::time:: de" msgstr "From" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 msgid "phraseanet::time:: a" msgstr "To" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 msgid "reponses:: selectionner tout" msgstr "All" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 msgid "reponses:: selectionner rien" msgstr "None" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 msgid "phraseanet::type:: images" msgstr "Images" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 msgid "raccourci :: a propos des raccourcis claviers" msgstr "About shortcuts" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 msgid "Raccourcis claviers en cours de recherche : " msgstr "Main windows shortcuts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : select all " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : print selected " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : edit selection " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 msgid "Raccourcis::fleche gauche : page precedente " msgstr "left arrow : previous page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 msgid "Raccourcis::fleche droite : page suivante " msgstr "right arrow : next page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "up arrow : vertical scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "down arrow : vertical scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Baskets & features zone shortcuts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 msgid "Raccourcis claviers en cours de editing : " msgstr "Edit window shortcuts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab : change field " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 msgid "Raccourcis claviers en cours de preview : " msgstr "Detailed View window shortcut " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 msgid "Raccourcis::fleche gauche : en avant " msgstr "right arrow : next document " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 msgid "Raccourcis::fleche gauche : en arriere " msgstr "left arrow : previous document " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "space : start/stop diaporama " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 msgid "" "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "esc : close most of overlayed windows " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Do not display help anymore" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 msgid "Affichage" msgstr "Display" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 msgid "Configuration" msgstr "Configuration" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 msgid "Mode de presentation" msgstr "Display mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 msgid "reponses:: mode vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 msgid "reponses:: mode liste" msgstr "List" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 msgid "Theme" msgstr "Skin" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 msgid "Selecteur de theme" msgstr "Theme picker" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 msgid "Presentation de vignettes" msgstr "Thumbnails" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 msgid "Iconographe (description au rollover)" msgstr "Iconograph (caption on rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 msgid "Graphiste (preview au rollover)" msgstr "Graphist (preview on rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 msgid "Informations techniques" msgstr "Technical informations" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 msgid "Afficher" msgstr "Display" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 msgid "Afficher dans la notice" msgstr "Display in caption" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 msgid "Ne pas afficher" msgstr "Hide" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 msgid "Type de documents" msgstr "Document(s) Type" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 msgid "Afficher une icone" msgstr "Display an Icon" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 msgid "reponses:: images par pages : " msgstr "Results per page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 msgid "reponses:: taille des images : " msgstr "Thumbnails size " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 msgid "Couleur de selection" msgstr "Selection color" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 msgid "Affichage au demarrage" msgstr "Display On startup" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 msgid "Ma derniere question" msgstr "My last query" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 msgid "Une question personnelle" msgstr "The query" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 msgid "Aide" msgstr "Help" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 msgid "preview:: Description" msgstr "Caption" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 msgid "preview:: Historique" msgstr "Timeline" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 msgid "preview:: Popularite" msgstr "Statistics" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 msgid "Presentation de vignettes de panier" msgstr "Basket display setup" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 msgid "Afficher les status" msgstr "Show Status" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 msgid "Afficher la fiche descriptive" msgstr "Show Caption" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 msgid "Afficher le titre" msgstr "Show Title" @@ -6366,7 +6370,6 @@ msgid "Charset to use for indexation" msgstr "Charset to use for indexation" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 msgid "Date fields available for search" msgstr "Date fields available for search" @@ -6771,10 +6774,12 @@ msgstr "" "video content you are about to put online is compliant to service the Terms " "of Use" +#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:28 #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 msgid "Aucune notification" msgstr "No notification" +#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:37 #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 msgid "toutes les notifications" msgstr "All Notifications" @@ -9040,7 +9045,15 @@ msgstr "Recommandations" msgid "Phrasea search-engine configuration" msgstr "Phrasea search-engine configuration" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:65 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stemming" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Enable stemming" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 msgid "Default sort" msgstr "Default sort" @@ -9191,19 +9204,19 @@ msgstr "You have to give at least one document feedback to send a report" msgid "Envoie avec succes" msgstr "Succesfully delivered" -#: lib/Alchemy/Phrasea/Controller/Setup.php:88 +#: lib/Alchemy/Phrasea/Controller/Setup.php:99 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.php:123 +#: lib/Alchemy/Phrasea/Controller/Setup.php:134 msgid "Appbox is unreachable" msgstr "Appbox can't be reached" -#: lib/Alchemy/Phrasea/Controller/Setup.php:133 +#: lib/Alchemy/Phrasea/Controller/Setup.php:144 msgid "Databox is unreachable" msgstr "Databox can't be reached" -#: lib/Alchemy/Phrasea/Controller/Setup.php:175 +#: lib/Alchemy/Phrasea/Controller/Setup.php:186 #, php-format msgid "an error occured : %s" msgstr "an error occurred : %s" @@ -11087,26 +11100,26 @@ msgstr "This e-mail is a send test from %s" msgid "No sort" msgstr "No sort" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:126 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:130 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:136 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:138 msgid "descendant" msgstr "descending" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:127 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:131 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:137 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:139 msgid "ascendant" msgstr "ascending" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:405 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:415 msgid "Unable to execute query" msgstr "Unable to execute query." -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:485 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:495 #, php-format msgid "reponses::propositions pour la base %s" msgstr "Proposals for database %s" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:491 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:501 #, php-format msgid "reponses::propositions pour le terme %s" msgstr "Proposals for term \"%s\"" @@ -11157,21 +11170,21 @@ msgstr "%s can't be after an operator" msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " msgstr "Too few characters to search " -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:118 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:126 msgid "pertinence" msgstr "Relevance" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:119 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:127 msgid "date dajout" msgstr "Add date" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:120 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:128 msgid "aleatoire" msgstr "Random" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:149 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:153 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:469 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:157 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:161 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:477 msgid "Sphinx server is offline" msgstr "Sphinx server is offline" diff --git a/locale/fr_FR/LC_MESSAGES/phraseanet.mo b/locale/fr_FR/LC_MESSAGES/phraseanet.mo index b2200bf15d..77c973e2a5 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 e0b75a0434..000573fab4 100644 --- a/locale/fr_FR/LC_MESSAGES/phraseanet.po +++ b/locale/fr_FR/LC_MESSAGES/phraseanet.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-09-05 14:36+0100\n" -"PO-Revision-Date: 2013-09-10 20:12+0100\n" +"POT-Creation-Date: 2013-09-18 13:38+0100\n" +"PO-Revision-Date: 2013-09-19 14:42+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" -"X-Launchpad-Export-Date: 2013-09-10 17:56+0000\n" +"X-Launchpad-Export-Date: 2013-09-18 18:02+0000\n" "X-Generator: Poedit 1.5.7\n" "X-Poedit-SourceCharset: utf-8\n" "X-Poedit-Basepath: /Users/romain/Documents/workspace/Phraseanet\n" @@ -213,8 +213,8 @@ msgstr "Cette valeur ne peut être vide" msgid "Url non valide" msgstr "Url non valide" -#: lib/classes/API/V1/adapter.php:1098 lib/classes/API/V1/adapter.php:1144 -#: lib/classes/API/V1/adapter.php:1194 lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1101 lib/classes/API/V1/adapter.php:1147 +#: lib/classes/API/V1/adapter.php:1197 lib/classes/API/V1/adapter.php:1221 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 #: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 @@ -259,11 +259,11 @@ msgstr "Url non valide" msgid "An error occured" msgstr "Une erreur est survenue." -#: lib/classes/API/V1/adapter.php:1192 +#: lib/classes/API/V1/adapter.php:1195 msgid "Record Not Found" msgstr "Enregistrement non trouvé" -#: lib/classes/API/V1/adapter.php:1216 +#: lib/classes/API/V1/adapter.php:1219 msgid "Story Not Found" msgstr "Reportage inconnu" @@ -1656,23 +1656,27 @@ msgstr "" "*Phraseanet Navigator* est une application mobile permettant à des " "utilisateurs de se connecter sur cette instance Phraseanet." -#: lib/conf.d/_GV_template.inc.php:211 +#: lib/conf.d/_GV_template.inc.php:212 +msgid "Authorize Microsoft Office Plugin to connect." +msgstr "Autoriser la connexion d'un plugin Microsoft Office" + +#: lib/conf.d/_GV_template.inc.php:218 msgid "Documents storage" msgstr "Stockage de documents" -#: lib/conf.d/_GV_template.inc.php:217 +#: lib/conf.d/_GV_template.inc.php:224 msgid "Default path for datas" msgstr "Chemin par défaut pour les données" -#: lib/conf.d/_GV_template.inc.php:223 +#: lib/conf.d/_GV_template.inc.php:230 msgid "Executables settings" msgstr "Paramètres d'exécutables" -#: lib/conf.d/_GV_template.inc.php:228 +#: lib/conf.d/_GV_template.inc.php:235 msgid "Enable H264 stream mode" msgstr "Activer H264 en mode flux continu (lecture en streaming)" -#: lib/conf.d/_GV_template.inc.php:229 +#: lib/conf.d/_GV_template.inc.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1680,320 +1684,320 @@ msgstr "" "Utiliser avec mod_token (requiert les modules Apache mod_token, " "mod_auth_token et mod_h264_streaming)." -#: lib/conf.d/_GV_template.inc.php:236 +#: lib/conf.d/_GV_template.inc.php:243 msgid "Auth_token mount point" msgstr "Point de montage Auth_token" -#: lib/conf.d/_GV_template.inc.php:243 +#: lib/conf.d/_GV_template.inc.php:250 msgid "Auth_token directory path" msgstr "Chemin du répertoire Auth_token" -#: lib/conf.d/_GV_template.inc.php:249 +#: lib/conf.d/_GV_template.inc.php:256 msgid "Auth_token passphrase" msgstr "Passphrase Auth_token" -#: lib/conf.d/_GV_template.inc.php:250 +#: lib/conf.d/_GV_template.inc.php:257 msgid "Defined in Apache configuration" msgstr "Définie dans la configuration de Apache." -#: lib/conf.d/_GV_template.inc.php:256 +#: lib/conf.d/_GV_template.inc.php:263 msgid "php.ini path" msgstr "Chemin du répertoire de fichier php.ini" -#: lib/conf.d/_GV_template.inc.php:257 +#: lib/conf.d/_GV_template.inc.php:264 msgid "Empty if not used" msgstr "Vider si non utilisé." -#: lib/conf.d/_GV_template.inc.php:264 +#: lib/conf.d/_GV_template.inc.php:271 msgid "Imagine driver" msgstr "\"Imagine Driver\"" -#: lib/conf.d/_GV_template.inc.php:276 +#: lib/conf.d/_GV_template.inc.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Nombre de threads réservés à FFmpeg" -#: lib/conf.d/_GV_template.inc.php:282 +#: lib/conf.d/_GV_template.inc.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Nombre maximum de pages à extraire depuis les documents PDF" -#: lib/conf.d/_GV_template.inc.php:287 +#: lib/conf.d/_GV_template.inc.php:294 msgid "Main configuration" msgstr "Configuration principale" -#: lib/conf.d/_GV_template.inc.php:292 +#: lib/conf.d/_GV_template.inc.php:299 msgid "Admin email" msgstr "Adresse e-mail de l'administrateur" -#: lib/conf.d/_GV_template.inc.php:298 +#: lib/conf.d/_GV_template.inc.php:305 msgid "Display the name of databases and collections" msgstr "Afficher le nom des bases et collections" -#: lib/conf.d/_GV_template.inc.php:305 +#: lib/conf.d/_GV_template.inc.php:312 msgid "Choose the title of the document to export" msgstr "Choix du nom de fichier à l'export du document" -#: lib/conf.d/_GV_template.inc.php:312 +#: lib/conf.d/_GV_template.inc.php:319 msgid "Default export title" msgstr "Nom de fichier attribué par défaut" -#: lib/conf.d/_GV_template.inc.php:315 +#: lib/conf.d/_GV_template.inc.php:322 msgid "Document title" msgstr "Le titre du document" -#: lib/conf.d/_GV_template.inc.php:316 +#: lib/conf.d/_GV_template.inc.php:323 msgid "Original name" msgstr "Le nom de fichier original" -#: lib/conf.d/_GV_template.inc.php:322 +#: lib/conf.d/_GV_template.inc.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "Activer le partage sur Facebook et Twitter" -#: lib/conf.d/_GV_template.inc.php:324 +#: lib/conf.d/_GV_template.inc.php:331 msgid "Disabled" msgstr "Désactivé" -#: lib/conf.d/_GV_template.inc.php:325 +#: lib/conf.d/_GV_template.inc.php:332 msgid "Publishers" msgstr "Editeurs" -#: lib/conf.d/_GV_template.inc.php:326 +#: lib/conf.d/_GV_template.inc.php:333 msgid "Enabled" msgstr "Activé" -#: lib/conf.d/_GV_template.inc.php:333 +#: lib/conf.d/_GV_template.inc.php:340 msgid "Homepage" msgstr "Page d'acceuil" -#: lib/conf.d/_GV_template.inc.php:339 +#: lib/conf.d/_GV_template.inc.php:346 msgid "Homepage slideshow" msgstr "Diaporama de page d'accueil" -#: lib/conf.d/_GV_template.inc.php:342 +#: lib/conf.d/_GV_template.inc.php:349 msgid "Single image" msgstr "Image seule" -#: lib/conf.d/_GV_template.inc.php:343 +#: lib/conf.d/_GV_template.inc.php:350 msgid "Slide show" msgstr "Diaporama" -#: lib/conf.d/_GV_template.inc.php:350 +#: lib/conf.d/_GV_template.inc.php:357 msgid "Search engine" msgstr "Moteur de recherche" -#: lib/conf.d/_GV_template.inc.php:356 +#: lib/conf.d/_GV_template.inc.php:363 msgid "Minimum number of letters before truncation" msgstr "Nombre minimal de caractères avant la troncature" -#: lib/conf.d/_GV_template.inc.php:357 +#: lib/conf.d/_GV_template.inc.php:364 msgid "Used in search engine" msgstr "Utilisé dans le moteur de recherche." -#: lib/conf.d/_GV_template.inc.php:363 +#: lib/conf.d/_GV_template.inc.php:370 msgid "Default query" msgstr "Requête par défaut" -#: lib/conf.d/_GV_template.inc.php:369 +#: lib/conf.d/_GV_template.inc.php:376 msgid "Default searched type" msgstr "Type de média recherchés par défaut" -#: lib/conf.d/_GV_template.inc.php:370 +#: lib/conf.d/_GV_template.inc.php:377 msgid "Used when opening the application" msgstr "Utilisé à l'ouverture de l'application." -#: lib/conf.d/_GV_template.inc.php:372 +#: lib/conf.d/_GV_template.inc.php:379 msgid "Documents" msgstr "Documents" -#: lib/conf.d/_GV_template.inc.php:373 +#: lib/conf.d/_GV_template.inc.php:380 msgid "Stories" msgstr "Reportages" -#: lib/conf.d/_GV_template.inc.php:379 +#: lib/conf.d/_GV_template.inc.php:386 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Afficher dans Phraseanet Report" -#: lib/conf.d/_GV_template.inc.php:385 +#: lib/conf.d/_GV_template.inc.php:392 msgid "Anonymous report" msgstr "Report anonyme" -#: lib/conf.d/_GV_template.inc.php:386 +#: lib/conf.d/_GV_template.inc.php:393 msgid "Hide information about users" msgstr "Masquer les informations à propos des utilisateurs." -#: lib/conf.d/_GV_template.inc.php:392 +#: lib/conf.d/_GV_template.inc.php:399 msgid "Additionnal modules" msgstr "Modules additionnels" -#: lib/conf.d/_GV_template.inc.php:398 +#: lib/conf.d/_GV_template.inc.php:405 msgid "Enable thesaurus" msgstr "Activer le thésaurus" -#: lib/conf.d/_GV_template.inc.php:403 +#: lib/conf.d/_GV_template.inc.php:410 msgid "Enable multi-doc mode" msgstr "Activer le mode multi-doc" -#: lib/conf.d/_GV_template.inc.php:408 +#: lib/conf.d/_GV_template.inc.php:415 msgid "Enable HD substitution" msgstr "Activer la substitution de documents sources" -#: lib/conf.d/_GV_template.inc.php:413 +#: lib/conf.d/_GV_template.inc.php:420 msgid "Enable thumbnail substitution" msgstr "Activer la substitution de vignettes" -#: lib/conf.d/_GV_template.inc.php:419 +#: lib/conf.d/_GV_template.inc.php:426 msgid "Emails" msgstr "E-mails" -#: lib/conf.d/_GV_template.inc.php:424 +#: lib/conf.d/_GV_template.inc.php:431 msgid "Default mail sender address" msgstr "Adresse par défaut de l'expéditeur" -#: lib/conf.d/_GV_template.inc.php:430 +#: lib/conf.d/_GV_template.inc.php:437 msgid "Prefix for notification emails" msgstr "Préfixe pour les notifications adressées par email" -#: lib/conf.d/_GV_template.inc.php:436 +#: lib/conf.d/_GV_template.inc.php:443 msgid "Use a SMTP server" msgstr "Utiliser un serveur SMTP" -#: lib/conf.d/_GV_template.inc.php:442 +#: lib/conf.d/_GV_template.inc.php:449 msgid "Enable SMTP authentication" msgstr "Activer l'authentification SMTP" -#: lib/conf.d/_GV_template.inc.php:448 +#: lib/conf.d/_GV_template.inc.php:455 msgid "SMTP host" msgstr "Serveur hôte SMTP" -#: lib/conf.d/_GV_template.inc.php:454 +#: lib/conf.d/_GV_template.inc.php:461 msgid "SMTP port" msgstr "Port SMTP" -#: lib/conf.d/_GV_template.inc.php:460 +#: lib/conf.d/_GV_template.inc.php:467 msgid "SMTP encryption" msgstr "Chiffrement SMTP (SMTP encryption)" -#: lib/conf.d/_GV_template.inc.php:463 +#: lib/conf.d/_GV_template.inc.php:470 #: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 #: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 msgid "None" msgstr "Aucun" -#: lib/conf.d/_GV_template.inc.php:471 +#: lib/conf.d/_GV_template.inc.php:478 msgid "SMTP user" msgstr "Utilisateur ou identifiant SMTP" -#: lib/conf.d/_GV_template.inc.php:477 +#: lib/conf.d/_GV_template.inc.php:484 msgid "SMTP password" msgstr "Mot de passe SMTP" -#: lib/conf.d/_GV_template.inc.php:482 +#: lib/conf.d/_GV_template.inc.php:489 msgid "FTP Export" msgstr "Export FTP" -#: lib/conf.d/_GV_template.inc.php:487 +#: lib/conf.d/_GV_template.inc.php:494 msgid "Enable FTP export" msgstr "Activer l'export FTP" -#: lib/conf.d/_GV_template.inc.php:488 +#: lib/conf.d/_GV_template.inc.php:495 msgid "Available in multi-export tab" msgstr "Rendre disponible dans les onglets de la fenêtre d'export." -#: lib/conf.d/_GV_template.inc.php:494 +#: lib/conf.d/_GV_template.inc.php:501 msgid "Enable FTP for users" msgstr "Activer l'export FTP pour les utilisateurs" -#: lib/conf.d/_GV_template.inc.php:495 +#: lib/conf.d/_GV_template.inc.php:502 msgid "By default it is available for admins" msgstr "Par défaut cette option est disponible pour les administrateurs." -#: lib/conf.d/_GV_template.inc.php:500 +#: lib/conf.d/_GV_template.inc.php:507 msgid "Client" msgstr "Client" -#: lib/conf.d/_GV_template.inc.php:505 +#: lib/conf.d/_GV_template.inc.php:512 msgid "Maximum megabytes allowed for download" msgstr "Limite maximale autorisée par téléchargement en Megaoctet (Mo)" -#: lib/conf.d/_GV_template.inc.php:506 +#: lib/conf.d/_GV_template.inc.php:513 msgid "If request is bigger, then mail is still available" msgstr "Au-delà le téléchargement par E-mail reste disponible." -#: lib/conf.d/_GV_template.inc.php:512 +#: lib/conf.d/_GV_template.inc.php:519 msgid "Search tab position" msgstr "Position de l'onglet de recherche" -#: lib/conf.d/_GV_template.inc.php:518 +#: lib/conf.d/_GV_template.inc.php:525 msgid "Advanced search tab position" msgstr "Postion de l'onglet de recherche avancée" -#: lib/conf.d/_GV_template.inc.php:524 +#: lib/conf.d/_GV_template.inc.php:531 msgid "Topics tab position" msgstr "Position de l'onglet des thèmes" -#: lib/conf.d/_GV_template.inc.php:530 +#: lib/conf.d/_GV_template.inc.php:537 msgid "Active tab position" msgstr "Activer le positionnement des onglets" -#: lib/conf.d/_GV_template.inc.php:536 +#: lib/conf.d/_GV_template.inc.php:543 msgid "Topics display mode" msgstr "Mode d'affichage des thèmes" -#: lib/conf.d/_GV_template.inc.php:538 +#: lib/conf.d/_GV_template.inc.php:545 msgid "Trees" msgstr "Arborescence thématique" -#: lib/conf.d/_GV_template.inc.php:539 lib/conf.d/_GV_template.inc.php:561 +#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 msgid "Drop-down" msgstr "Liste déroulante" -#: lib/conf.d/_GV_template.inc.php:546 +#: lib/conf.d/_GV_template.inc.php:553 msgid "Enable roll-over on stories" msgstr "Activer le roll-over sur les reportages" -#: lib/conf.d/_GV_template.inc.php:552 +#: lib/conf.d/_GV_template.inc.php:559 msgid "Enable roll-over on basket elements" msgstr "Activer le roll-over sur les paniers" -#: lib/conf.d/_GV_template.inc.php:558 +#: lib/conf.d/_GV_template.inc.php:565 msgid "Collections display mode" msgstr "Mode d'affichage des collections" -#: lib/conf.d/_GV_template.inc.php:562 +#: lib/conf.d/_GV_template.inc.php:569 msgid "Check-box" msgstr "Case à cocher" -#: lib/conf.d/_GV_template.inc.php:568 +#: lib/conf.d/_GV_template.inc.php:575 msgid "Display the total size of the document basket" msgstr "Afficher la taille des paniers" -#: lib/conf.d/_GV_template.inc.php:574 +#: lib/conf.d/_GV_template.inc.php:581 msgid "Display proposals tab" msgstr "Affichage de l'onglet des propositions de thésaurus" -#: lib/conf.d/_GV_template.inc.php:580 +#: lib/conf.d/_GV_template.inc.php:587 msgid "Require authentication to download documents" msgstr "Exiger de s'authentifier pour télécharger des documents" -#: lib/conf.d/_GV_template.inc.php:581 +#: lib/conf.d/_GV_template.inc.php:588 msgid "Used for guest account" msgstr "Utilisé pour le compte invité." -#: lib/conf.d/_GV_template.inc.php:587 +#: lib/conf.d/_GV_template.inc.php:594 msgid "Users must accept Terms of Use for each export" msgstr "" "Les utilisateurs doivent accepter les conditions générales d'utilisation à " "chaque export" -#: lib/conf.d/_GV_template.inc.php:592 +#: lib/conf.d/_GV_template.inc.php:599 msgid "Registration" msgstr "Inscription" -#: lib/conf.d/_GV_template.inc.php:597 +#: lib/conf.d/_GV_template.inc.php:604 msgid "Auto select databases" msgstr "Sélection automatique des bases de données" -#: lib/conf.d/_GV_template.inc.php:598 +#: lib/conf.d/_GV_template.inc.php:605 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -2002,57 +2006,57 @@ msgstr "" "l'utilisateur fait une demande d'inscription. L'inscription est alors " "effectuée d'office sur toutes les bases et collections rendues disponibles." -#: lib/conf.d/_GV_template.inc.php:604 +#: lib/conf.d/_GV_template.inc.php:611 msgid "Enable auto registration" msgstr "Activer l'inscription automatique" -#: lib/conf.d/_GV_template.inc.php:609 +#: lib/conf.d/_GV_template.inc.php:616 msgid "Push configuration" msgstr "Configuration de la Validation (Push de validation)" -#: lib/conf.d/_GV_template.inc.php:614 +#: lib/conf.d/_GV_template.inc.php:621 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Nombre de jours avant la fin de la validation pour l'envoi d'un rappel par e-" "mail" -#: lib/conf.d/_GV_template.inc.php:620 +#: lib/conf.d/_GV_template.inc.php:627 msgid "Default validation links duration" msgstr "" "Durée de validité (en jours) des liens générés pour les process de Push et " "de Validation" -#: lib/conf.d/_GV_template.inc.php:621 +#: lib/conf.d/_GV_template.inc.php:628 msgid "If set to 0, duration is permanent" msgstr "Indiquer 0 pour une durée de validité permanente." -#: lib/conf.d/_GV_template.inc.php:626 +#: lib/conf.d/_GV_template.inc.php:633 msgid "Robot indexing" msgstr "Optimisations destinées aux robots d'indexation" -#: lib/conf.d/_GV_template.inc.php:631 +#: lib/conf.d/_GV_template.inc.php:638 msgid "Application title" msgstr "Titre donné à l'instance Phraseanet" -#: lib/conf.d/_GV_template.inc.php:637 +#: lib/conf.d/_GV_template.inc.php:644 msgid "Keywords used for indexing purposes by search engines robots" msgstr "Contenu de la balise Keywords" -#: lib/conf.d/_GV_template.inc.php:643 +#: lib/conf.d/_GV_template.inc.php:650 msgid "Application description" msgstr "Contenu de la balise Description" -#: lib/conf.d/_GV_template.inc.php:649 +#: lib/conf.d/_GV_template.inc.php:656 msgid "Google Analytics identifier" msgstr "Identifiant Google Analytics" -#: lib/conf.d/_GV_template.inc.php:655 +#: lib/conf.d/_GV_template.inc.php:662 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.inc.php:661 +#: lib/conf.d/_GV_template.inc.php:668 msgid "Enable Google Chrome frame" msgstr "Proposer Google Chrome Frame aux utilisateurs d'Internet Explorer" @@ -2312,7 +2316,7 @@ msgstr "A quel Photoset souhaitez vous ajouter les %number% photos ?" #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 @@ -2342,7 +2346,7 @@ msgstr "A quel Photoset souhaitez vous ajouter les %number% photos ?" #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 #: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:94 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 #: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 @@ -2377,8 +2381,8 @@ msgstr "Retour" #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 @@ -2391,7 +2395,7 @@ msgstr "Exporter" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 @@ -2401,62 +2405,62 @@ msgstr "Imprimer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 msgid "action : editer" msgstr "Editer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 msgid "action : status" msgstr "Propriétés" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 msgid "action : collection" msgstr "Déplacer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Feedback" msgstr "Validation" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 msgid "action : publier" msgstr "Publier" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 msgid "action : outils" msgstr "Outils" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 @@ -3320,7 +3324,7 @@ msgstr "Annotation" #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 @@ -3461,7 +3465,7 @@ msgid "admin::utilisateurs: demandes en cours" msgstr "Demandes" #: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 #: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 #: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 @@ -4107,7 +4111,7 @@ msgid "" msgstr "Copier les droits utilisateur de la collection : " #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 msgid "choisir" msgstr "Choisir" @@ -4197,7 +4201,7 @@ msgid "status:: retrouver sous forme de filtre dans la recherche" msgstr "Activer les recherches sur ce status dans la recherche avancée." #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:697 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 msgid "" @@ -5685,8 +5689,8 @@ msgid "phraseanet:: tri par nom" msgstr "Tri alphabétique" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 msgid "Preferences" msgstr "Préférences" @@ -5695,7 +5699,7 @@ msgid "Advanced Search" msgstr "Recherche avancée" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 msgid "phraseanet::type:: documents" msgstr "Documents" @@ -5745,255 +5749,255 @@ msgstr "Ré-initialiser" msgid "Trier par " msgstr "Trier par " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 msgid "rechercher par stemme" msgstr "Rechercher par Stemme" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 msgid "Les termes apparaissent dans le(s) champs" msgstr "Le(s) mot(s) contenu(s) dans le(s) champ(s)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 msgid "rechercher dans tous les champs" msgstr "Tous les champs" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 msgid "Status des documents a rechercher" msgstr "Status des documents pour la recherche" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 msgid "Rechercher dans un champ date" msgstr "Dans un champ date" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 msgid "phraseanet::time:: de" msgstr "De" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 msgid "phraseanet::time:: a" msgstr "A" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 msgid "reponses:: selectionner tout" msgstr "Tout" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 msgid "reponses:: selectionner rien" msgstr "Aucun" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 msgid "phraseanet::type:: images" msgstr "Images" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 msgid "phraseanet::type:: videos" msgstr "Vidéos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 msgid "raccourci :: a propos des raccourcis claviers" msgstr "A propos des raccourcis clavier" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 msgid "Raccourcis claviers en cours de recherche : " msgstr "Raccourcis de la fenêtre principale " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : sélectionner tout " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : imprimer la sélection " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : éditer la sélection " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 msgid "Raccourcis::fleche gauche : page precedente " msgstr "flèche gauche : page précédente " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 msgid "Raccourcis::fleche droite : page suivante " msgstr "flèche droite : page suivante " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "flèche haute : défilement vers le haut " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "flèche basse : défilement vers le bas " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Raccourcis de la zone des paniers & reportages " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 msgid "Raccourcis claviers en cours de editing : " msgstr "Raccourci de la fenêtre d'édition " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "Tab/shift-tab : Changer de champs " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 msgid "Raccourcis claviers en cours de preview : " msgstr "Raccourcis de la fenêtre vue détaillée " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 msgid "Raccourcis::fleche gauche : en avant " msgstr "flèche droite : document suivant " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 msgid "Raccourcis::fleche gauche : en arriere " msgstr "flèche gauche : document précédent " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "espace : démarrer/arrêter le diaporama " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 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/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Ne plus montrer cette aide" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 msgid "Affichage" msgstr "Affichage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 msgid "Configuration" msgstr "Configuration" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 msgid "Mode de presentation" msgstr "Mode de présentation" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 msgid "reponses:: mode vignettes" msgstr "Vignettes" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 msgid "reponses:: mode liste" msgstr "Liste" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 msgid "Theme" msgstr "Thème" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 msgid "Selecteur de theme" msgstr "Sélecteur de thème" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 msgid "Presentation de vignettes" msgstr "Présentation de vignettes" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 msgid "Iconographe (description au rollover)" msgstr "Iconographe (description au rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 msgid "Graphiste (preview au rollover)" msgstr "Graphiste (prévisualisation au rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 msgid "Informations techniques" msgstr "Informations techniques" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 msgid "Afficher" msgstr "Afficher" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 msgid "Afficher dans la notice" msgstr "Afficher dans la notice" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 msgid "Ne pas afficher" msgstr "Ne pas afficher" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 msgid "Type de documents" msgstr "Type de document" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 msgid "Afficher une icone" msgstr "Afficher une icône" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 msgid "reponses:: images par pages : " msgstr "Résultats par page " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 msgid "reponses:: taille des images : " msgstr "Taille des vignettes " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 msgid "Couleur de selection" msgstr "Couleur de sélection" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 msgid "Affichage au demarrage" msgstr "Afficher au démarrage" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 msgid "Ma derniere question" msgstr "Ma dernière question" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 msgid "Une question personnelle" msgstr "La question" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 msgid "Aide" msgstr "Aide" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 msgid "preview:: Description" msgstr "Notice" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 msgid "preview:: Historique" msgstr "Historique" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 #: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 msgid "preview:: Popularite" msgstr "Popularité" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 msgid "Presentation de vignettes de panier" msgstr "Présentation des vignettes de panier" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 msgid "Afficher les status" msgstr "Afficher les Status" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 msgid "Afficher la fiche descriptive" msgstr "Afficher la notice" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 msgid "Afficher le titre" msgstr "Afficher le titre" @@ -6434,7 +6438,6 @@ msgid "Charset to use for indexation" msgstr "Jeu de caractères à utiliser pour l'indexation" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 msgid "Date fields available for search" msgstr "Champs de type date disponibles pour la recherche" @@ -6848,10 +6851,12 @@ msgstr "" "contenu de la vidéo que vous allez mettre en ligne est conforme aux " "conditions générales d'utilisation." +#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:28 #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:28 msgid "Aucune notification" msgstr "Aucune notification" +#: tmp/cache_twig/79/0e/4f5d1bbed28162b27c12114a2a16.php:37 #: tmp/cache_twig/79/42/534d64903c47aaa38ba389558bfb.php:37 msgid "toutes les notifications" msgstr "Toutes les notifications" @@ -9146,7 +9151,15 @@ msgstr "Recommandation" msgid "Phrasea search-engine configuration" msgstr "Configuration du moteur de recherche Phrasea" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:65 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stemmes" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Activiter les Stemmes" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 msgid "Default sort" msgstr "Tri par défaut" @@ -9299,19 +9312,19 @@ msgstr "Vous devez donner au moins un avis pour envoyer un report" msgid "Envoie avec succes" msgstr "Envoi avec succès" -#: lib/Alchemy/Phrasea/Controller/Setup.php:88 +#: lib/Alchemy/Phrasea/Controller/Setup.php:99 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.php:123 +#: lib/Alchemy/Phrasea/Controller/Setup.php:134 msgid "Appbox is unreachable" msgstr "L'ApplicationBox est inaccessible" -#: lib/Alchemy/Phrasea/Controller/Setup.php:133 +#: lib/Alchemy/Phrasea/Controller/Setup.php:144 msgid "Databox is unreachable" msgstr "La Databox est inaccessible" -#: lib/Alchemy/Phrasea/Controller/Setup.php:175 +#: lib/Alchemy/Phrasea/Controller/Setup.php:186 #, php-format msgid "an error occured : %s" msgstr "L'erreur %s est survenue" @@ -11012,7 +11025,7 @@ msgstr "" #: lib/Alchemy/Phrasea/Notification/Mail/MailInfoPushReceived.php:48 #, php-format msgid "Reception of %s" -msgstr "Reçu de %s" +msgstr "Réception d'un Push : %s" #: lib/Alchemy/Phrasea/Notification/Mail/MailInfoPushReceived.php:64 #, php-format @@ -11244,26 +11257,26 @@ msgstr "Ce mail est un test d'envoi d'e-mail depuis %s" msgid "No sort" msgstr "Pas de tri" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:126 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:130 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:136 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:138 msgid "descendant" msgstr "Descendant" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:127 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:131 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:137 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:139 msgid "ascendant" msgstr "Ascendant" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:405 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:415 msgid "Unable to execute query" msgstr "Impossible d'exécuter la requête" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:485 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:495 #, php-format msgid "reponses::propositions pour la base %s" msgstr "Proposition pour la base %s" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:491 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:501 #, php-format msgid "reponses::propositions pour le terme %s" msgstr "pour le terme \"%s\"" @@ -11322,21 +11335,21 @@ msgstr "" "Formulation de la question incorrecte, question trop courte (nécessite plus " "de caractères). " -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:118 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:126 msgid "pertinence" msgstr "Pertinence" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:119 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:127 msgid "date dajout" msgstr "Date d'ajout" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:120 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:128 msgid "aleatoire" msgstr "Aléatoire" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:149 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:153 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:469 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:157 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:161 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:477 msgid "Sphinx server is offline" msgstr "Serveur Sphinx inaccessible" @@ -11347,12 +11360,12 @@ msgstr "test" #: lib/Doctrine/Entities/ValidationSession.php:259 #, php-format msgid "Vous aviez envoye cette demande a %d utilisateurs" -msgstr "Vous avez envoyé cette demande à %d utilisateurs" +msgstr "Vous avez envoyé cette demande à %d utilisateurs." #: lib/Doctrine/Entities/ValidationSession.php:264 #, php-format msgid "Vous avez envoye cette demande a %d utilisateurs" -msgstr "Vous avez envoyé cette demande à %d utilisateurs" +msgstr "Vous avez envoyé cette demande auprès de %d utilisateurs." #: lib/Doctrine/Entities/ValidationSession.php:271 #, php-format diff --git a/locale/nl_NL/LC_MESSAGES/phraseanet.mo b/locale/nl_NL/LC_MESSAGES/phraseanet.mo index cbc1501edc..027ea1fe88 100644 Binary files a/locale/nl_NL/LC_MESSAGES/phraseanet.mo and b/locale/nl_NL/LC_MESSAGES/phraseanet.mo differ diff --git a/locale/nl_NL/LC_MESSAGES/phraseanet.po b/locale/nl_NL/LC_MESSAGES/phraseanet.po index d59cc071f8..b7474a0a21 100644 --- a/locale/nl_NL/LC_MESSAGES/phraseanet.po +++ b/locale/nl_NL/LC_MESSAGES/phraseanet.po @@ -7,18 +7,17 @@ msgid "" msgstr "" "Project-Id-Version: phraseanettranslation\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-07-04 14:47+0100\n" -"PO-Revision-Date: 2013-07-10 11:35+0100\n" +"POT-Creation-Date: 2013-09-18 13:38+0100\n" +"PO-Revision-Date: 2013-09-19 14:42+0100\n" "Last-Translator: Romain Neutron \n" "Language-Team: Dutch \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: 2013-07-10 09:21+0000\n" -"X-Generator: Poedit 1.5.6\n" +"X-Launchpad-Export-Date: 2013-09-18 18:02+0000\n" +"X-Generator: Poedit 1.5.7\n" -#: lib/classes/appbox.php:299 lib/classes/appbox.php:381 +#: lib/classes/appbox.php:299 lib/classes/appbox.php:384 msgid "Flushing cache" msgstr "Cache wordt gewist" @@ -30,29 +29,29 @@ msgstr "Niewe tabellen maken" msgid "Purging directories" msgstr "Mappen ledigen" -#: lib/classes/appbox.php:339 +#: lib/classes/appbox.php:342 msgid "Copying files" msgstr "Bezig met kopiëren" -#: lib/classes/appbox.php:358 +#: lib/classes/appbox.php:361 msgid "Upgrading appbox" msgstr "Appbox wordt geüpdate" -#: lib/classes/appbox.php:366 +#: lib/classes/appbox.php:369 #, php-format msgid "Upgrading %s" msgstr "%s wordt bijgewerkt" -#: lib/classes/appbox.php:374 +#: lib/classes/appbox.php:377 msgid "Post upgrade" msgstr "Laadt update" -#: lib/classes/appbox.php:388 lib/classes/appbox.php:390 +#: lib/classes/appbox.php:391 lib/classes/appbox.php:393 msgid "" "Your install requires data migration, please execute the following command" msgstr "Uw installatie heeft data migratie nodig, voer volgend commando uit" -#: lib/classes/appbox.php:394 lib/classes/appbox.php:395 +#: lib/classes/appbox.php:397 lib/classes/appbox.php:398 msgid "Your install might need to re-read technical datas" msgstr "Uw installatie moet de technische data herlezen" @@ -98,58 +97,58 @@ msgstr "" "FOUT : de klasse van de subdef is nodig en gelijk aan \"thumbnail\", " "\"voorvertoning\" of \"document\"" -#: lib/classes/phrasea.php:123 lib/classes/record/preview.php:540 +#: lib/classes/phrasea.php:112 lib/classes/record/preview.php:540 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:30 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:117 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 msgid "admin::monitor: module production" msgstr "Productie" -#: lib/classes/phrasea.php:124 lib/classes/record/preview.php:542 +#: lib/classes/phrasea.php:113 lib/classes/record/preview.php:542 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:40 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:118 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 msgid "admin::monitor: module client" msgstr "Klant module" -#: lib/classes/phrasea.php:125 +#: lib/classes/phrasea.php:114 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:50 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:139 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:119 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 msgid "admin::monitor: module admin" msgstr "Beheerder" -#: lib/classes/phrasea.php:126 +#: lib/classes/phrasea.php:115 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:60 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:166 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:120 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 msgid "admin::monitor: module report" msgstr "Rapport" -#: lib/classes/phrasea.php:127 +#: lib/classes/phrasea.php:116 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:70 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:111 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:121 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:125 msgid "admin::monitor: module thesaurus" msgstr "Thesaurus" -#: lib/classes/phrasea.php:128 +#: lib/classes/phrasea.php:117 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:80 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:122 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:126 msgid "admin::monitor: module comparateur" msgstr "Vergelijkings module" -#: lib/classes/phrasea.php:129 +#: lib/classes/phrasea.php:118 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:90 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:185 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:244 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:298 #: lib/Alchemy/Phrasea/Controller/Lightbox.php:331 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:123 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:127 msgid "admin::monitor: module validation" msgstr "Lightbox" -#: lib/classes/phrasea.php:130 +#: lib/classes/phrasea.php:119 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:225 -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:124 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:128 msgid "admin::monitor: module upload" msgstr "Upload" @@ -182,7 +181,7 @@ msgstr "gisteren" #: lib/classes/queries.php:168 lib/classes/queries.php:181 #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:202 #: tmp/cache_twig/1c/65/d2ed8ab46a78263f0810164b22f3.php:104 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:185 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:198 #: tmp/cache_twig/cd/52/49abe653b79251910b076e041dee.php:1402 msgid "boutton::chercher" msgstr "zoeken" @@ -201,25 +200,27 @@ msgstr "Deze waarde mag leeg zijn" msgid "Url non valide" msgstr "Geen geldig url" -#: lib/classes/API/V1/adapter.php:1098 lib/classes/API/V1/adapter.php:1144 -#: lib/classes/API/V1/adapter.php:1194 lib/classes/API/V1/adapter.php:1218 +#: lib/classes/API/V1/adapter.php:1101 lib/classes/API/V1/adapter.php:1147 +#: lib/classes/API/V1/adapter.php:1197 lib/classes/API/V1/adapter.php:1221 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:58 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:35 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:46 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:53 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:65 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:848 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:546 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:581 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:616 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:652 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:872 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:942 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:980 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1018 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1057 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1091 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1125 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1224 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:861 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:228 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:331 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:548 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:583 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:618 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:654 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:874 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:944 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:982 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1020 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1059 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1093 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1127 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1226 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:466 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:530 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:559 @@ -228,28 +229,28 @@ msgstr "Geen geldig url" #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:780 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:852 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:928 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1004 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:930 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 #: lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php:159 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:318 #: lib/Alchemy/Phrasea/Controller/Prod/Feed.php:70 #: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:341 #: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:425 -#: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:493 +#: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:499 #: lib/Alchemy/Phrasea/Controller/Prod/MoveCollection.php:112 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:199 #: lib/Alchemy/Phrasea/Controller/Prod/Order.php:205 #: lib/Alchemy/Phrasea/Controller/Prod/Story.php:201 #: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:117 -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:172 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:178 msgid "An error occured" msgstr "Er is een fout opgetreden" -#: lib/classes/API/V1/adapter.php:1192 +#: lib/classes/API/V1/adapter.php:1195 msgid "Record Not Found" msgstr "Document niet gevonden" -#: lib/classes/API/V1/adapter.php:1216 +#: lib/classes/API/V1/adapter.php:1219 msgid "Story Not Found" msgstr "Artikel niet gevonden" @@ -457,7 +458,7 @@ msgstr "" msgid "Service youtube introuvable." msgstr "Youtube service kan niet gevonden worden." -#: lib/classes/caption/record.php:278 +#: lib/classes/caption/record.php:279 msgid "Open the URL in a new window" msgstr "Open de url in een nieuw venster" @@ -594,33 +595,33 @@ msgstr "" "Meldingen ontvangen wanneer een gebruiker zich inschrijft op een collectie" #: lib/classes/eventsmanager/notify/autoregister.php:195 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:255 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:311 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:843 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:290 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:647 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:140 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:671 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:163 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:287 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:62 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:72 msgid "admin::compte-utilisateur nom" msgstr "Naam" #: lib/classes/eventsmanager/notify/autoregister.php:196 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:257 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:313 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:829 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:660 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:684 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:176 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:288 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:55 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:65 msgid "admin::compte-utilisateur prenom" msgstr "Voornaam" #: lib/classes/eventsmanager/notify/autoregister.php:197 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:267 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:323 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:857 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:314 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:673 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:315 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:166 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:697 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:328 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:189 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:289 msgid "admin::compte-utilisateur email" msgstr "Email" @@ -668,9 +669,8 @@ msgid "Feeds" msgstr "Feeds" #: lib/classes/eventsmanager/notify/feed.php:174 -#: lib/classes/eventsmanager/notify/push.php:161 -msgid "Recevoir des notifications lorsqu'on me push quelque chose" -msgstr "Meldingen ontvangen wanneer iemand mij iets doorstuurt" +msgid "Receive notification when a publication is available" +msgstr "Ontvang een mededeling wanneer een publicatie beschikbaar is" #: lib/classes/eventsmanager/notify/order.php:159 #, php-format @@ -724,9 +724,14 @@ msgid "%1$s vous a envoye un %2$spanier%3$s" msgstr "%1$s heeft u %2$spanier%3$s toegezonden" #: lib/classes/eventsmanager/notify/push.php:152 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:108 msgid "Push" msgstr "Push" +#: lib/classes/eventsmanager/notify/push.php:161 +msgid "Receive notification when I receive a push" +msgstr "Ontvang een mededeling wanneer ik een pus ontvang" + #: lib/classes/eventsmanager/notify/register.php:169 #, php-format msgid "%1$s demande votre approbation sur une ou plusieurs %2$scollections%3$s" @@ -765,16 +770,16 @@ msgstr "wordt gemeld wanneer een document in quarantaine wordt geplaatst" #: lib/classes/eventsmanager/notify/validate.php:31 #: lib/classes/eventsmanager/notify/validate.php:179 #: lib/classes/eventsmanager/notify/validationdone.php:31 -#: lib/classes/eventsmanager/notify/validationreminder.php:30 -#: lib/classes/eventsmanager/notify/validationreminder.php:176 +#: lib/classes/eventsmanager/notify/validationreminder.php:31 +#: lib/classes/eventsmanager/notify/validationreminder.php:177 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:179 msgid "Validation" msgstr "Goedkeuring" #: lib/classes/eventsmanager/notify/validate.php:152 #: lib/classes/eventsmanager/notify/validate.php:154 -#: lib/classes/eventsmanager/notify/validationreminder.php:151 -#: lib/classes/eventsmanager/notify/validationreminder.php:153 +#: lib/classes/eventsmanager/notify/validationreminder.php:152 +#: lib/classes/eventsmanager/notify/validationreminder.php:154 msgid "Une selection" msgstr "Een selectie" @@ -801,12 +806,12 @@ msgstr "Rapport van goedkeuring" msgid "Reception d'un rapport de validation" msgstr "Ontvangst van een goedkeuringsrapport" -#: lib/classes/eventsmanager/notify/validationreminder.php:162 +#: lib/classes/eventsmanager/notify/validationreminder.php:163 #, php-format msgid "Rappel : Il vous reste %1$d jours pour valider %2$s de %3$s" msgstr "Aanmaning : nog %1$d dagen te gaan voor het goedkeuren %2$s de %3$s" -#: lib/classes/eventsmanager/notify/validationreminder.php:185 +#: lib/classes/eventsmanager/notify/validationreminder.php:186 msgid "Rappel pour une demande de validation" msgstr "Aanmaning voor een goedkeuringsaanvraag" @@ -1146,7 +1151,7 @@ msgstr "Modules" msgid "report:: Information sur les utilisateurs correspondant a %s" msgstr "Informatie over gebruikers die corresponderen met %s" -#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1372 +#: lib/classes/module/report/nav.php:471 lib/classes/User/Adapter.php:1375 msgid "phraseanet::utilisateur inconnu" msgstr "Onbekende gebruiker" @@ -1225,159 +1230,159 @@ msgstr "Manuele instellingen" msgid "Commande du %s" msgstr "Bestelling van %s" -#: lib/classes/task/period/archive.php:73 +#: lib/classes/task/period/archive.php:69 msgid "task::archive:Archivage" msgstr "Archivering" -#: lib/classes/task/period/archive.php:215 +#: lib/classes/task/period/archive.php:211 msgid "task::archive:archivage sur base/collection/" msgstr "Archivering van database/collection/" -#: lib/classes/task/period/archive.php:230 +#: lib/classes/task/period/archive.php:226 msgid "task::_common_:hotfolder" msgstr "Hotfolder" -#: lib/classes/task/period/archive.php:236 lib/classes/task/period/ftp.php:156 -#: lib/classes/task/period/ftpPull.php:229 -#: lib/classes/task/period/RecordMover.php:292 -#: lib/classes/task/period/subdef.php:211 -#: lib/classes/task/period/writemeta.php:176 +#: lib/classes/task/period/archive.php:232 lib/classes/task/period/ftp.php:157 +#: lib/classes/task/period/ftpPull.php:226 +#: lib/classes/task/period/RecordMover.php:288 +#: lib/classes/task/period/subdef.php:226 +#: lib/classes/task/period/writemeta.php:172 msgid "task::_common_:periodicite de la tache" msgstr "Periodiciteit van de taak" -#: lib/classes/task/period/archive.php:239 -#: lib/classes/task/period/archive.php:246 lib/classes/task/period/ftp.php:159 -#: lib/classes/task/period/ftpPull.php:232 -#: lib/classes/task/period/RecordMover.php:295 -#: lib/classes/task/period/subdef.php:214 -#: lib/classes/task/period/writemeta.php:179 +#: lib/classes/task/period/archive.php:235 +#: lib/classes/task/period/archive.php:242 lib/classes/task/period/ftp.php:160 +#: lib/classes/task/period/ftpPull.php:229 +#: lib/classes/task/period/RecordMover.php:291 +#: lib/classes/task/period/subdef.php:229 +#: lib/classes/task/period/writemeta.php:175 msgid "task::_common_:secondes (unite temporelle)" msgstr "secondes (unite temporelle)" -#: lib/classes/task/period/archive.php:243 +#: lib/classes/task/period/archive.php:239 msgid "task::archive:delai de 'repos' avant traitement" msgstr "Periode van 'rust' voor de behandeling" -#: lib/classes/task/period/archive.php:253 +#: lib/classes/task/period/archive.php:249 msgid "task::archive:deplacer les fichiers archives dans _archived" msgstr "verplaats document van archief dans _archived" -#: lib/classes/task/period/archive.php:261 +#: lib/classes/task/period/archive.php:257 msgid "task::archive:deplacer les fichiers non-archives dans _error" msgstr "cerplaats document van archief dans _error" -#: lib/classes/task/period/archive.php:269 +#: lib/classes/task/period/archive.php:265 msgid "" "task::archive:copier les fichiers '.phrasea.xml' et '.grouping.xml' dans " "_archived" msgstr "kopieer de documenten '.phrasea.xml' en '.grouping.xml' dans _archived" -#: lib/classes/task/period/archive.php:277 +#: lib/classes/task/period/archive.php:273 msgid "task::archive:supprimer les repertoires apres archivage" msgstr "verwijder de mappen na archivering" -#: lib/classes/task/period/archive.php:293 +#: lib/classes/task/period/archive.php:289 msgid "task::archive:Archiving files found into a 'hotfolder'" msgstr "Archivering files gevonden in een 'hotfolder'" -#: lib/classes/task/period/cindexer.php:108 +#: lib/classes/task/period/cindexer.php:104 msgid "Indexation task" msgstr "Index taak" -#: lib/classes/task/period/cindexer.php:117 +#: lib/classes/task/period/cindexer.php:113 msgid "This task is used to index records for Phrasea engine." msgstr "" "Deze taak wordt gebruikt om records te indexeren voor de Phrasea toepassing" -#: lib/classes/task/period/cindexer.php:264 +#: lib/classes/task/period/cindexer.php:260 msgid "MySQL Host" msgstr "MySQL Host" -#: lib/classes/task/period/cindexer.php:270 +#: lib/classes/task/period/cindexer.php:264 msgid "MySQL Port" msgstr "MySQL Poort" -#: lib/classes/task/period/cindexer.php:276 +#: lib/classes/task/period/cindexer.php:268 msgid "MySQL Database" msgstr "MySQL-database" -#: lib/classes/task/period/cindexer.php:282 +#: lib/classes/task/period/cindexer.php:272 msgid "MySQL Login" msgstr "MySQL Login" -#: lib/classes/task/period/cindexer.php:288 +#: lib/classes/task/period/cindexer.php:276 msgid "MySQL password" msgstr "MySQL wachtwoord" -#: lib/classes/task/period/cindexer.php:294 -msgid "MySQL charset" -msgstr "MySQL kararkterset" +#: lib/classes/task/period/cindexer.php:280 +msgid "MySQL connection charset" +msgstr "MySQL verbindingscollatie" -#: lib/classes/task/period/cindexer.php:300 +#: lib/classes/task/period/cindexer.php:286 msgid "Socket port" msgstr "Socket poort" -#: lib/classes/task/period/cindexer.php:306 +#: lib/classes/task/period/cindexer.php:292 msgid "Debug binary mask" msgstr "Debug binair masker" -#: lib/classes/task/period/cindexer.php:312 +#: lib/classes/task/period/cindexer.php:298 msgid "Default language for thesaurus candidates" msgstr "Standaard taal voor thesaurus kandidaten" -#: lib/classes/task/period/cindexer.php:318 +#: lib/classes/task/period/cindexer.php:304 msgid "Enable stemming languages" msgstr "Minder talen inschakelen" -#: lib/classes/task/period/cindexer.php:321 +#: lib/classes/task/period/cindexer.php:307 msgid "example : fr,en" msgstr "voorbeeld: fr, en, nl" -#: lib/classes/task/period/cindexer.php:325 +#: lib/classes/task/period/cindexer.php:311 msgid "Sort records with an empty field" msgstr "Sorteer records met een leeg veld" -#: lib/classes/task/period/cindexer.php:328 +#: lib/classes/task/period/cindexer.php:314 msgid "Hide records" msgstr "Verberg records" -#: lib/classes/task/period/cindexer.php:329 +#: lib/classes/task/period/cindexer.php:315 msgid "At the beginning" msgstr "Bij het begin" -#: lib/classes/task/period/cindexer.php:330 +#: lib/classes/task/period/cindexer.php:316 msgid "At the end" msgstr "Bij het einde" -#: lib/classes/task/period/cindexer.php:338 -msgid "Do not (sys)log, output to console)" -msgstr "Voer geen (sys)log uit naar de console" +#: lib/classes/task/period/cindexer.php:324 +msgid "Do not log, output to console" +msgstr "Neem niet op in de log-files, stuur door naar de console" -#: lib/classes/task/period/cindexer.php:346 -msgid "Windows specific" -msgstr "Windows specifiek" - -#: lib/classes/task/period/cindexer.php:348 +#: lib/classes/task/period/cindexer.php:332 msgid "Run as application, not as service" msgstr "Voer uit als een programma, niet als een service" -#: lib/classes/task/period/emptyColl.php:25 +#: lib/classes/task/period/cindexer.php:333 +msgid "Windows specific" +msgstr "Windows specifiek" + +#: lib/classes/task/period/emptyColl.php:22 msgid "Vidage de collection" msgstr "Dump collectie" -#: lib/classes/task/period/ftp.php:26 +#: lib/classes/task/period/ftp.php:27 msgid "task::ftp:FTP Push" msgstr "FTP Push" -#: lib/classes/task/period/ftp.php:144 lib/classes/task/period/ftpPull.php:167 +#: lib/classes/task/period/ftp.php:145 lib/classes/task/period/ftpPull.php:164 msgid "task::ftp:proxy" msgstr "task::ftp:proxy" -#: lib/classes/task/period/ftp.php:150 lib/classes/task/period/ftpPull.php:173 +#: lib/classes/task/period/ftp.php:151 lib/classes/task/period/ftpPull.php:170 msgid "task::ftp:proxy port" msgstr "task::ftp:proxy poort" -#: lib/classes/task/period/ftp.php:337 +#: lib/classes/task/period/ftp.php:338 #, php-format msgid "" "task::ftp:Etat d'envoi FTP vers le serveur \"%1$s\" avec le compte \"%2$s\" " @@ -1386,12 +1391,12 @@ msgstr "" "Staat van versturing FTP naar server \"%1$s\" met de rekening \"%2$s\" en " "met bestemming map : \"%3$s\"" -#: lib/classes/task/period/ftp.php:348 +#: lib/classes/task/period/ftp.php:349 #, php-format msgid "task::ftp:TENTATIVE no %s, %s" msgstr "POGING no %s, %s" -#: lib/classes/task/period/ftp.php:475 +#: lib/classes/task/period/ftp.php:476 #, php-format msgid "" "task::ftp:File \"%1$s\" (record %2$s) de la base \"%3$s\" (Export du " @@ -1400,82 +1405,86 @@ msgstr "" "File \"%1$s\" (record %2$s) van database \"%3$s\" (Export van het " "document) : Transfert gestopt (het document bestaat niet meer)" -#: lib/classes/task/period/ftp.php:615 +#: lib/classes/task/period/ftp.php:616 msgid "task::ftp:Tous les documents ont ete transferes avec succes" msgstr "Alle documenten zijn met succes overgezet" -#: lib/classes/task/period/ftp.php:625 lib/classes/task/period/ftp.php:631 +#: lib/classes/task/period/ftp.php:626 lib/classes/task/period/ftp.php:632 #, php-format msgid "task::ftp:Record %1$s - %2$s de la base (%3$s - %4$s) - %5$s" msgstr "Record %1$s - %2$s van database (%3$s - %4$s) - %5$s" -#: lib/classes/task/period/ftp.php:628 +#: lib/classes/task/period/ftp.php:629 msgid "Transfert OK" msgstr "Transfert OK" -#: lib/classes/task/period/ftp.php:634 +#: lib/classes/task/period/ftp.php:635 msgid "Transfert Annule" msgstr "Transfert Gestopt" -#: lib/classes/task/period/ftp.php:635 +#: lib/classes/task/period/ftp.php:636 msgid "task::ftp:Certains documents n'ont pas pu etre tranferes" msgstr "Sommige documenten zijn niet overgezet" -#: lib/classes/task/period/ftp.php:649 +#: lib/classes/task/period/ftp.php:650 msgid "Des difficultes ont ete rencontres a la connection au serveur distant" msgstr "Er zijn moeilijkheden ontstaan met de connectie naar de server" -#: lib/classes/task/period/ftp.php:651 +#: lib/classes/task/period/ftp.php:652 msgid "La connection vers le serveur distant est OK" msgstr "Connectie met de server is OK" -#: lib/classes/task/period/ftp.php:664 +#: lib/classes/task/period/ftp.php:665 msgid "task::ftp:Details des fichiers" msgstr "Details van het document" -#: lib/classes/task/period/ftpPull.php:31 +#: lib/classes/task/period/ftpPull.php:28 msgid "task::ftp:FTP Pull" msgstr "FTP Pull" -#: lib/classes/task/period/ftpPull.php:215 +#: lib/classes/task/period/ftpPull.php:212 msgid "task::ftp:mode passif" msgstr "mode passif" -#: lib/classes/task/period/ftpPull.php:224 +#: lib/classes/task/period/ftpPull.php:221 msgid "task::ftp:utiliser SSL" msgstr "SSL gebruiker" -#: lib/classes/task/period/RecordMover.php:25 +#: lib/classes/task/period/RecordMover.php:21 msgid "Record Mover" msgstr "Record Mover" -#: lib/classes/task/period/RecordMover.php:301 +#: lib/classes/task/period/RecordMover.php:297 msgid "Log changes" msgstr "Log aanpassingen" -#: lib/classes/task/period/subdef.php:41 +#: lib/classes/task/period/subdef.php:47 msgid "task::subdef:creation des sous definitions des documents d'origine" msgstr "aanmaak van onderverdelingen bij orginele documenten" -#: lib/classes/task/period/subdef.php:52 +#: lib/classes/task/period/subdef.php:58 msgid "task::subdef:creation des sous definitions" msgstr "aanmaak onderverdelingen" -#: lib/classes/task/period/subdef.php:218 +#: lib/classes/task/period/subdef.php:233 #, php-format -msgid "Number of records before proceeding the next step" -msgstr "Aantal records alvorens naar de volgende stap over te gaan" +msgid "Number of records to process per batch" +msgstr "Aantal records te verwerken per batch" -#: lib/classes/task/period/subdef.php:224 -#: lib/classes/task/period/writemeta.php:191 +#: lib/classes/task/period/subdef.php:239 +#: lib/classes/task/period/writemeta.php:187 msgid "Restart the task every X records" msgstr "Herstart de taak om de X records" -#: lib/classes/task/period/subdef.php:230 +#: lib/classes/task/period/subdef.php:245 msgid "Restart the task if memory reaches" msgstr "Herstart de taak als het geheugen bereikt" -#: lib/classes/task/period/writemeta.php:28 +#: lib/classes/task/period/subdef.php:252 +msgid "Try to extract embedded thumbnails" +msgstr "Probeer om de ingesloten thumbnails te extraheren" + +#: lib/classes/task/period/writemeta.php:24 msgid "" "task::writemeta:(re)ecriture des metadatas dans les documents (et subdefs " "concernees)" @@ -1483,15 +1492,15 @@ msgstr "" "(her)schrijven van de metadatas in de documenten (en betreffende " "onderverdeligen)" -#: lib/classes/task/period/writemeta.php:39 +#: lib/classes/task/period/writemeta.php:35 msgid "task::writemeta:ecriture des metadatas" msgstr "wegschrijven van de metadatas" -#: lib/classes/task/period/writemeta.php:186 +#: lib/classes/task/period/writemeta.php:182 msgid "task::writemeta:effacer les metadatas non presentes dans la structure" msgstr "verwijder metadatas die niet in de structuur voorkomen" -#: lib/classes/task/period/writemeta.php:197 +#: lib/classes/task/period/writemeta.php:193 msgid "task::_common_:records, ou si la memoire depasse" msgstr "records, of als het geheugen is opgebruikt" @@ -1500,139 +1509,139 @@ msgstr "records, of als het geheugen is opgebruikt" msgid "A user already exists with email addres %s" msgstr "Een gebruiker met dit email adres %s bestaat reeds" -#: lib/classes/User/Adapter.php:1366 +#: lib/classes/User/Adapter.php:1369 #, php-format msgid "modele %s" msgstr "model %s" -#: lib/conf.d/gvtemplate.php:26 +#: lib/conf.d/_GV_template.inc.php:38 msgid "HTTP Server" msgstr "HTTP Server" -#: lib/conf.d/gvtemplate.php:31 +#: lib/conf.d/_GV_template.inc.php:43 msgid "Default language" msgstr "Standaardtaal" -#: lib/conf.d/gvtemplate.php:40 +#: lib/conf.d/_GV_template.inc.php:52 msgid "Static URL" msgstr "Statische URL" -#: lib/conf.d/gvtemplate.php:41 +#: lib/conf.d/_GV_template.inc.php:53 msgid "optional" msgstr "optioneel" -#: lib/conf.d/gvtemplate.php:46 +#: lib/conf.d/_GV_template.inc.php:58 msgid "Maintenance state" msgstr "Staat van onderhoud" -#: lib/conf.d/gvtemplate.php:52 +#: lib/conf.d/_GV_template.inc.php:64 msgid "Maintenance message" msgstr "Mededeling van onderhoud" -#: lib/conf.d/gvtemplate.php:58 +#: lib/conf.d/_GV_template.inc.php:70 msgid "Enable maintenance message broadcast" msgstr "Onderhoud mededling van de uitzending inschakelen" -#: lib/conf.d/gvtemplate.php:64 +#: lib/conf.d/_GV_template.inc.php:76 msgid "Log errors" msgstr "Log fouten" -#: lib/conf.d/gvtemplate.php:69 +#: lib/conf.d/_GV_template.inc.php:81 msgid "Webservices connectivity" msgstr "Webservices connectiviteit" -#: lib/conf.d/gvtemplate.php:74 +#: lib/conf.d/_GV_template.inc.php:86 msgid "Use Google API" msgstr "Gebruik Google API" -#: lib/conf.d/gvtemplate.php:81 +#: lib/conf.d/_GV_template.inc.php:93 msgid "Geonames server address" msgstr "Geonames server adres" -#: lib/conf.d/gvtemplate.php:89 +#: lib/conf.d/_GV_template.inc.php:101 msgid "Use recaptcha API" msgstr "Gebruik recaptcha API" -#: lib/conf.d/gvtemplate.php:97 +#: lib/conf.d/_GV_template.inc.php:109 msgid "Recaptcha public key" msgstr "Recaptcha publieke sleutel" -#: lib/conf.d/gvtemplate.php:103 +#: lib/conf.d/_GV_template.inc.php:115 msgid "Recaptcha private key" msgstr "Recaptcha private sleutel" -#: lib/conf.d/gvtemplate.php:108 +#: lib/conf.d/_GV_template.inc.php:120 msgid "Youtube connectivity" msgstr "Youtube connectiviteit" -#: lib/conf.d/gvtemplate.php:113 +#: lib/conf.d/_GV_template.inc.php:125 msgid "Use youtube API" msgstr "Gebruik youtube API" -#: lib/conf.d/gvtemplate.php:114 lib/conf.d/gvtemplate.php:145 -#: lib/conf.d/gvtemplate.php:169 +#: lib/conf.d/_GV_template.inc.php:126 lib/conf.d/_GV_template.inc.php:157 +#: lib/conf.d/_GV_template.inc.php:181 #, php-format msgid "Create API account at %s, then use %s as callback URL value" msgstr "Maak API gebruiker op %s, gebruik dan %s als callback URL waarde" -#: lib/conf.d/gvtemplate.php:121 +#: lib/conf.d/_GV_template.inc.php:133 msgid "Youtube public key" msgstr "Youtube publieke sleutel" -#: lib/conf.d/gvtemplate.php:127 +#: lib/conf.d/_GV_template.inc.php:139 msgid "Youtube secret key" msgstr "Youtube geheime sleutel" -#: lib/conf.d/gvtemplate.php:133 +#: lib/conf.d/_GV_template.inc.php:145 msgid "Youtube developer key" msgstr "Youtube ontwikkelaarssleutel" -#: lib/conf.d/gvtemplate.php:134 +#: lib/conf.d/_GV_template.inc.php:146 #, php-format msgid "See %s" msgstr "Bekijk %s" -#: lib/conf.d/gvtemplate.php:139 +#: lib/conf.d/_GV_template.inc.php:151 msgid "FlickR connectivity" msgstr "FlickR connectiviteit" -#: lib/conf.d/gvtemplate.php:144 +#: lib/conf.d/_GV_template.inc.php:156 msgid "Use Flickr API" msgstr "Gebruik Flickr API" -#: lib/conf.d/gvtemplate.php:152 +#: lib/conf.d/_GV_template.inc.php:164 msgid "Flickr public key" msgstr "Flickr publieke sleutel" -#: lib/conf.d/gvtemplate.php:158 +#: lib/conf.d/_GV_template.inc.php:170 msgid "Flickr secret key" msgstr "Flickr geheime sleutel" -#: lib/conf.d/gvtemplate.php:163 +#: lib/conf.d/_GV_template.inc.php:175 msgid "Dailymotion connectivity" msgstr "Dailymotion connectiviteit" -#: lib/conf.d/gvtemplate.php:168 +#: lib/conf.d/_GV_template.inc.php:180 msgid "Use Dailymotion API" msgstr "Gebruik Dailymotion API" -#: lib/conf.d/gvtemplate.php:176 +#: lib/conf.d/_GV_template.inc.php:188 msgid "Dailymotion public key" msgstr "Dailymotion publieke sleutel" -#: lib/conf.d/gvtemplate.php:182 +#: lib/conf.d/_GV_template.inc.php:194 msgid "Dailymotion secret key" msgstr "Dailymotion geheime sleutel" -#: lib/conf.d/gvtemplate.php:187 +#: lib/conf.d/_GV_template.inc.php:199 msgid "Phraseanet client API" msgstr "Phraseanet klant API" -#: lib/conf.d/gvtemplate.php:192 +#: lib/conf.d/_GV_template.inc.php:204 msgid "Authorize *Phraseanet Navigator*" msgstr "Sta *Phraseanet Navigator* toe" -#: lib/conf.d/gvtemplate.php:193 +#: lib/conf.d/_GV_template.inc.php:205 msgid "" "*Phraseanet Navigator* is a smartphone application that allow user to " "connect on this instance" @@ -1640,23 +1649,27 @@ msgstr "" "*Phraseanet Navigator* is ten smartphone applicatie waarmee de gebruiker " "verbinding maken met op deze instantie" -#: lib/conf.d/gvtemplate.php:199 +#: lib/conf.d/_GV_template.inc.php:212 +msgid "Authorize Microsoft Office Plugin to connect." +msgstr "Laat Microsoft Office Plugin toe om te connecteren." + +#: lib/conf.d/_GV_template.inc.php:218 msgid "Documents storage" msgstr "Documenten opslag" -#: lib/conf.d/gvtemplate.php:205 +#: lib/conf.d/_GV_template.inc.php:224 msgid "Default path for datas" msgstr "Standaard pad voor data's" -#: lib/conf.d/gvtemplate.php:211 +#: lib/conf.d/_GV_template.inc.php:230 msgid "Executables settings" msgstr "Executables instellingen" -#: lib/conf.d/gvtemplate.php:216 +#: lib/conf.d/_GV_template.inc.php:235 msgid "Enable H264 stream mode" msgstr "Maak H264 stream mode actief" -#: lib/conf.d/gvtemplate.php:217 +#: lib/conf.d/_GV_template.inc.php:236 msgid "" "Use with mod_token. Attention requires the apache modules and " "mod_h264_streaming mod_auth_token" @@ -1664,317 +1677,318 @@ msgstr "" "Gebruik met mod_token. Opgepast heeft de apache modelus en " "mod_h264_streaming mod_auth_token nodig." -#: lib/conf.d/gvtemplate.php:224 +#: lib/conf.d/_GV_template.inc.php:243 msgid "Auth_token mount point" msgstr "Auth_token mount point" -#: lib/conf.d/gvtemplate.php:231 +#: lib/conf.d/_GV_template.inc.php:250 msgid "Auth_token directory path" msgstr "Auth_token folderpad" -#: lib/conf.d/gvtemplate.php:237 +#: lib/conf.d/_GV_template.inc.php:256 msgid "Auth_token passphrase" msgstr "Auth_token toegangszin" -#: lib/conf.d/gvtemplate.php:238 +#: lib/conf.d/_GV_template.inc.php:257 msgid "Defined in Apache configuration" msgstr "Gedefinieerd in de Apache configuratie" -#: lib/conf.d/gvtemplate.php:244 +#: lib/conf.d/_GV_template.inc.php:263 msgid "php.ini path" msgstr "php.ini pad" -#: lib/conf.d/gvtemplate.php:245 +#: lib/conf.d/_GV_template.inc.php:264 msgid "Empty if not used" msgstr "Leeg als niet wordt gebruikt" -#: lib/conf.d/gvtemplate.php:252 +#: lib/conf.d/_GV_template.inc.php:271 msgid "Imagine driver" msgstr "Imagine driver" -#: lib/conf.d/gvtemplate.php:264 +#: lib/conf.d/_GV_template.inc.php:283 msgid "Number of threads to use for FFMpeg" msgstr "Aantal lijnen te gebruiken voor FFMpeg" -#: lib/conf.d/gvtemplate.php:270 +#: lib/conf.d/_GV_template.inc.php:289 msgid "Maximum number of pages to be extracted from PDF" msgstr "Maximum aantal pagina's die uit een PDF kunnen worden gedownload" -#: lib/conf.d/gvtemplate.php:275 +#: lib/conf.d/_GV_template.inc.php:294 msgid "Main configuration" msgstr "Hoofd configuratie" -#: lib/conf.d/gvtemplate.php:280 +#: lib/conf.d/_GV_template.inc.php:299 msgid "Admin email" msgstr "Beheerder email" -#: lib/conf.d/gvtemplate.php:286 +#: lib/conf.d/_GV_template.inc.php:305 msgid "Display the name of databases and collections" msgstr "Toon de naam van de databases en de collecties" -#: lib/conf.d/gvtemplate.php:293 +#: lib/conf.d/_GV_template.inc.php:312 msgid "Choose the title of the document to export" msgstr "Kies een naam voor het document bij de export" -#: lib/conf.d/gvtemplate.php:300 +#: lib/conf.d/_GV_template.inc.php:319 msgid "Default export title" msgstr "Standaard export naam" -#: lib/conf.d/gvtemplate.php:303 +#: lib/conf.d/_GV_template.inc.php:322 msgid "Document title" msgstr "Document naam" -#: lib/conf.d/gvtemplate.php:304 +#: lib/conf.d/_GV_template.inc.php:323 msgid "Original name" msgstr "Originele naam" -#: lib/conf.d/gvtemplate.php:310 +#: lib/conf.d/_GV_template.inc.php:329 msgid "Enable this setting to share on Facebook and Twitter" msgstr "Gebruik deze instellingen voor het delen op Facebook en Twitter" -#: lib/conf.d/gvtemplate.php:312 +#: lib/conf.d/_GV_template.inc.php:331 msgid "Disabled" msgstr "Uitgeschakeld" -#: lib/conf.d/gvtemplate.php:313 +#: lib/conf.d/_GV_template.inc.php:332 msgid "Publishers" msgstr "Uitgevers" -#: lib/conf.d/gvtemplate.php:314 +#: lib/conf.d/_GV_template.inc.php:333 msgid "Enabled" msgstr "Ingeschakeld" -#: lib/conf.d/gvtemplate.php:321 +#: lib/conf.d/_GV_template.inc.php:340 msgid "Homepage" msgstr "Startpagina" -#: lib/conf.d/gvtemplate.php:327 +#: lib/conf.d/_GV_template.inc.php:346 msgid "Homepage slideshow" msgstr "Startpagina diavoorstelling" -#: lib/conf.d/gvtemplate.php:330 +#: lib/conf.d/_GV_template.inc.php:349 msgid "Single image" msgstr "Enkel beeld" -#: lib/conf.d/gvtemplate.php:331 +#: lib/conf.d/_GV_template.inc.php:350 msgid "Slide show" msgstr "Diavoorstelling" -#: lib/conf.d/gvtemplate.php:338 +#: lib/conf.d/_GV_template.inc.php:357 msgid "Search engine" msgstr "Zoekmachine" -#: lib/conf.d/gvtemplate.php:344 +#: lib/conf.d/_GV_template.inc.php:363 msgid "Minimum number of letters before truncation" msgstr "Minimum aantal tekens alvorens te ledigen" -#: lib/conf.d/gvtemplate.php:345 +#: lib/conf.d/_GV_template.inc.php:364 msgid "Used in search engine" msgstr "Gebruikt in de zoekmachine" -#: lib/conf.d/gvtemplate.php:351 +#: lib/conf.d/_GV_template.inc.php:370 msgid "Default query" msgstr "Standaard vraag" -#: lib/conf.d/gvtemplate.php:357 +#: lib/conf.d/_GV_template.inc.php:376 msgid "Default searched type" msgstr "Standaard gezocht type" -#: lib/conf.d/gvtemplate.php:358 +#: lib/conf.d/_GV_template.inc.php:377 msgid "Used when opening the application" msgstr "Gebruikt tijdens het openen van het programma" -#: lib/conf.d/gvtemplate.php:360 +#: lib/conf.d/_GV_template.inc.php:379 msgid "Documents" msgstr "Documenten" -#: lib/conf.d/gvtemplate.php:361 +#: lib/conf.d/_GV_template.inc.php:380 msgid "Stories" msgstr "Verhalen" -#: lib/conf.d/gvtemplate.php:367 +#: lib/conf.d/_GV_template.inc.php:386 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:312 msgid "Report" msgstr "Overzicht" -#: lib/conf.d/gvtemplate.php:373 +#: lib/conf.d/_GV_template.inc.php:392 msgid "Anonymous report" msgstr "Anoniem verslag" -#: lib/conf.d/gvtemplate.php:374 +#: lib/conf.d/_GV_template.inc.php:393 msgid "Hide information about users" msgstr "Verberg de informatie over gebruikers" -#: lib/conf.d/gvtemplate.php:380 +#: lib/conf.d/_GV_template.inc.php:399 msgid "Additionnal modules" msgstr "Bijkomende modules" -#: lib/conf.d/gvtemplate.php:386 +#: lib/conf.d/_GV_template.inc.php:405 msgid "Enable thesaurus" msgstr "Maak de thesaurus actief" -#: lib/conf.d/gvtemplate.php:391 +#: lib/conf.d/_GV_template.inc.php:410 msgid "Enable multi-doc mode" msgstr "Maak de multi-doc mode actief" -#: lib/conf.d/gvtemplate.php:396 +#: lib/conf.d/_GV_template.inc.php:415 msgid "Enable HD substitution" msgstr "Maak de HD substitutie actief" -#: lib/conf.d/gvtemplate.php:401 +#: lib/conf.d/_GV_template.inc.php:420 msgid "Enable thumbnail substitution" msgstr "Maak de thumbnail substitutie actief" -#: lib/conf.d/gvtemplate.php:407 +#: lib/conf.d/_GV_template.inc.php:426 msgid "Emails" msgstr "Emails" -#: lib/conf.d/gvtemplate.php:412 +#: lib/conf.d/_GV_template.inc.php:431 msgid "Default mail sender address" msgstr "Standaard mail adres" -#: lib/conf.d/gvtemplate.php:418 +#: lib/conf.d/_GV_template.inc.php:437 msgid "Prefix for notification emails" msgstr "Prefix voor email notificatie" -#: lib/conf.d/gvtemplate.php:424 +#: lib/conf.d/_GV_template.inc.php:443 msgid "Use a SMTP server" msgstr "Gebruik een SMPT server" -#: lib/conf.d/gvtemplate.php:430 +#: lib/conf.d/_GV_template.inc.php:449 msgid "Enable SMTP authentication" msgstr "SMTP-verificatie inschakelen" -#: lib/conf.d/gvtemplate.php:436 +#: lib/conf.d/_GV_template.inc.php:455 msgid "SMTP host" msgstr "SMTP host" -#: lib/conf.d/gvtemplate.php:442 +#: lib/conf.d/_GV_template.inc.php:461 msgid "SMTP port" msgstr "SMTP poort" -#: lib/conf.d/gvtemplate.php:448 +#: lib/conf.d/_GV_template.inc.php:467 msgid "SMTP encryption" msgstr "SMTP-encryptie" -#: lib/conf.d/gvtemplate.php:451 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:443 +#: lib/conf.d/_GV_template.inc.php:470 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:466 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:172 msgid "None" msgstr "Geen" -#: lib/conf.d/gvtemplate.php:459 +#: lib/conf.d/_GV_template.inc.php:478 msgid "SMTP user" msgstr "SMTP gebruiker" -#: lib/conf.d/gvtemplate.php:465 +#: lib/conf.d/_GV_template.inc.php:484 msgid "SMTP password" msgstr "SMTP wachtwoord" -#: lib/conf.d/gvtemplate.php:470 +#: lib/conf.d/_GV_template.inc.php:489 msgid "FTP Export" msgstr "FTP Export" -#: lib/conf.d/gvtemplate.php:475 +#: lib/conf.d/_GV_template.inc.php:494 msgid "Enable FTP export" msgstr "Schakel FPT export in" -#: lib/conf.d/gvtemplate.php:476 +#: lib/conf.d/_GV_template.inc.php:495 msgid "Available in multi-export tab" msgstr "Actief in de multi-export tab" -#: lib/conf.d/gvtemplate.php:482 +#: lib/conf.d/_GV_template.inc.php:501 msgid "Enable FTP for users" msgstr "Schakel FTP in voor gebruikers" -#: lib/conf.d/gvtemplate.php:483 +#: lib/conf.d/_GV_template.inc.php:502 msgid "By default it is available for admins" msgstr "Standaard is dit voor de beheerders beschikbaar" -#: lib/conf.d/gvtemplate.php:488 +#: lib/conf.d/_GV_template.inc.php:507 msgid "Client" msgstr "Client" -#: lib/conf.d/gvtemplate.php:493 +#: lib/conf.d/_GV_template.inc.php:512 msgid "Maximum megabytes allowed for download" msgstr "Maximum toegestaan megabytes voor de download" -#: lib/conf.d/gvtemplate.php:494 +#: lib/conf.d/_GV_template.inc.php:513 msgid "If request is bigger, then mail is still available" msgstr "Als de aanvraag groter is, dan is de mail nog steeds beschikbaar" -#: lib/conf.d/gvtemplate.php:500 +#: lib/conf.d/_GV_template.inc.php:519 msgid "Search tab position" msgstr "Zoek de tab positie" -#: lib/conf.d/gvtemplate.php:506 +#: lib/conf.d/_GV_template.inc.php:525 msgid "Advanced search tab position" msgstr "Uitgebreid zoeken tab positie" -#: lib/conf.d/gvtemplate.php:512 +#: lib/conf.d/_GV_template.inc.php:531 msgid "Topics tab position" msgstr "Topics tab positie" -#: lib/conf.d/gvtemplate.php:518 +#: lib/conf.d/_GV_template.inc.php:537 msgid "Active tab position" msgstr "Actieve tab positie" -#: lib/conf.d/gvtemplate.php:524 +#: lib/conf.d/_GV_template.inc.php:543 msgid "Topics display mode" msgstr "Topics scherm modus" -#: lib/conf.d/gvtemplate.php:526 +#: lib/conf.d/_GV_template.inc.php:545 msgid "Trees" msgstr "Takken" -#: lib/conf.d/gvtemplate.php:527 lib/conf.d/gvtemplate.php:549 +#: lib/conf.d/_GV_template.inc.php:546 lib/conf.d/_GV_template.inc.php:568 msgid "Drop-down" msgstr "Drop-down" -#: lib/conf.d/gvtemplate.php:534 +#: lib/conf.d/_GV_template.inc.php:553 msgid "Enable roll-over on stories" msgstr "Schakel roll-over in op verhalen" -#: lib/conf.d/gvtemplate.php:540 +#: lib/conf.d/_GV_template.inc.php:559 msgid "Enable roll-over on basket elements" msgstr "Schakel roll-over in op de elementen in mandjes" -#: lib/conf.d/gvtemplate.php:546 +#: lib/conf.d/_GV_template.inc.php:565 msgid "Collections display mode" msgstr "Collections weergave modus" -#: lib/conf.d/gvtemplate.php:550 +#: lib/conf.d/_GV_template.inc.php:569 msgid "Check-box" msgstr "Check-box" -#: lib/conf.d/gvtemplate.php:556 +#: lib/conf.d/_GV_template.inc.php:575 msgid "Display the total size of the document basket" msgstr "Toon de volledige grootte van het documenten mandje" -#: lib/conf.d/gvtemplate.php:562 +#: lib/conf.d/_GV_template.inc.php:581 msgid "Display proposals tab" msgstr "Toon de voorstellen tab" -#: lib/conf.d/gvtemplate.php:568 +#: lib/conf.d/_GV_template.inc.php:587 msgid "Require authentication to download documents" msgstr "Inloggen vereist om de documenten te downloaden" -#: lib/conf.d/gvtemplate.php:569 +#: lib/conf.d/_GV_template.inc.php:588 msgid "Used for guest account" msgstr "Gebruikt voor gast toegang" -#: lib/conf.d/gvtemplate.php:575 +#: lib/conf.d/_GV_template.inc.php:594 msgid "Users must accept Terms of Use for each export" msgstr "Gebruiker moet gebruiksvoorwaarden aanvaarden bij iedere export" -#: lib/conf.d/gvtemplate.php:580 +#: lib/conf.d/_GV_template.inc.php:599 msgid "Registration" msgstr "Registratie" -#: lib/conf.d/gvtemplate.php:585 +#: lib/conf.d/_GV_template.inc.php:604 msgid "Auto select databases" msgstr "Auto select databanken" -#: lib/conf.d/gvtemplate.php:586 +#: lib/conf.d/_GV_template.inc.php:605 msgid "" "This option disables the selecting of the databases on which a user can " "register himself, and registration is made on all granted databases." @@ -1983,54 +1997,54 @@ msgstr "" "kan registreren uit en registratie is van toepassing voor alle toegankelijke " "databanken." -#: lib/conf.d/gvtemplate.php:592 +#: lib/conf.d/_GV_template.inc.php:611 msgid "Enable auto registration" msgstr "Schakel automatisch registreren in" -#: lib/conf.d/gvtemplate.php:597 +#: lib/conf.d/_GV_template.inc.php:616 msgid "Push configuration" msgstr "Push configurative" -#: lib/conf.d/gvtemplate.php:602 +#: lib/conf.d/_GV_template.inc.php:621 msgid "" "Number of days before the end of the validation to send a reminder email" msgstr "" "Aantal dagen voor het einde van de validatie om een herinneringsmail te " "sturen." -#: lib/conf.d/gvtemplate.php:608 +#: lib/conf.d/_GV_template.inc.php:627 msgid "Default validation links duration" msgstr "Standaard tijd voor de validatie links" -#: lib/conf.d/gvtemplate.php:609 +#: lib/conf.d/_GV_template.inc.php:628 msgid "If set to 0, duration is permanent" msgstr "Als waar gelijk is aan 0, altijd beschikbaar" -#: lib/conf.d/gvtemplate.php:614 +#: lib/conf.d/_GV_template.inc.php:633 msgid "Robot indexing" msgstr "Robot indexring" -#: lib/conf.d/gvtemplate.php:619 +#: lib/conf.d/_GV_template.inc.php:638 msgid "Application title" msgstr "Programma naam" -#: lib/conf.d/gvtemplate.php:625 +#: lib/conf.d/_GV_template.inc.php:644 msgid "Keywords used for indexing purposes by search engines robots" msgstr "Sleutelwoorden die gebruikt worden voor het indexeren bij zoek robots" -#: lib/conf.d/gvtemplate.php:631 +#: lib/conf.d/_GV_template.inc.php:650 msgid "Application description" msgstr "Programma omschrijving" -#: lib/conf.d/gvtemplate.php:637 +#: lib/conf.d/_GV_template.inc.php:656 msgid "Google Analytics identifier" msgstr "Google Analytics-id" -#: lib/conf.d/gvtemplate.php:643 +#: lib/conf.d/_GV_template.inc.php:662 msgid "Allow the website to be indexed by search engines like Google" msgstr "Sta toe om de website te indexeren voor zoek robots zoals Google" -#: lib/conf.d/gvtemplate.php:649 +#: lib/conf.d/_GV_template.inc.php:668 msgid "Enable Google Chrome frame" msgstr "Schakel Google Chrome frame in" @@ -2073,6 +2087,7 @@ msgstr "Stel deel permissies in" #: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:72 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:415 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:419 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:147 msgid "Delete" msgstr "Verwijder" @@ -2082,6 +2097,7 @@ msgid "%length% peoples" msgstr "%length% personen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:113 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:129 msgid "Edit" msgstr "Wijzigen" @@ -2090,27 +2106,26 @@ msgid "View" msgstr "Bekijken" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:161 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:109 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:122 msgid "Push::filter on login" msgstr "filter bij login" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:167 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:117 msgid "Push::filter on name" msgstr "filter op naam" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:173 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:125 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:138 msgid "Push::filter on countries" msgstr "filter op landen" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:179 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:133 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:146 msgid "Push::filter on companies" msgstr "filter op bedrijven" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:185 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:141 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:154 msgid "Push::filter on emails" msgstr "filter op emails" @@ -2119,7 +2134,7 @@ msgid "Push::filter on templates" msgstr "filter op templates" #: tmp/cache_twig/01/e2/866da83d51d90405f333f4d52156.php:197 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:146 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:159 msgid "Push::filter starts" msgstr "filter starts" @@ -2219,21 +2234,36 @@ msgstr "Vorige" msgid "Next" msgstr "Volgende" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:228 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:228 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:215 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:215 +msgid "You are using an outdated browser." +msgstr "U gebruikt een verouderde browser" + +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:219 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:219 +msgid "" +"Please upgrade %browserLink% or activate %GCFLink% to improve your " +"experience." +msgstr "" +"Gelieve uw %browserLink% te vernieuwen of activeer %GCFLink% om uw ervaring " +"te verbeteren." + +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:285 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:285 #: tmp/cache_twig/d1/ea/9cba922417b2c8b6f151de26f77d.php:95 +#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:25 #: tmp/cache_twig/e2/ab/044b174593da583734b27aa1445d.php:65 msgid "Home" msgstr "Startpagina" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:234 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:234 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:291 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:291 msgid "Help" msgstr "Help" -#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:268 +#: tmp/cache_twig/02/96/a8203479b71f81db4bb020cb62b2.php:325 #: tmp/cache_twig/20/2a/cf1743e1bb55096c5575ff1c651a.php:34 -#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:268 +#: tmp/cache_twig/2b/f1/2b4c8d3aa6aa9fd1d06f190e14d8.php:325 #: lib/Alchemy/Phrasea/Controller/Prod/TOU.php:128 msgid "Terms of use" msgstr "Gebruikersvoorwaarden" @@ -2254,27 +2284,27 @@ msgstr "In welke photoset wilt u %number% foto's plaatsen ?" #: tmp/cache_twig/03/25/7dbb6ae036a4ec0201b66f629de8.php:103 #: tmp/cache_twig/06/95/054c36ceb514c44a8429173ba322.php:103 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:488 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:503 #: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:74 #: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:74 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:990 #: tmp/cache_twig/15/9a/b78610d119198577b503228f50ca.php:81 -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:65 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:75 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:221 #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:233 #: tmp/cache_twig/2c/1c/804f9f3b79218edbd018e6ec0609.php:480 #: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:74 #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:113 #: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:74 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:299 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:315 #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:67 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:109 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:78 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:730 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:734 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:67 #: tmp/cache_twig/46/cf/84fcd6e6d0142196cf67e7150061.php:195 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:63 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1946 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1950 #: tmp/cache_twig/64/04/6c72ca87230da615bdfc47580c03.php:74 #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:111 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:103 @@ -2294,6 +2324,7 @@ msgstr "In welke photoset wilt u %number% foto's plaatsen ?" #: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:152 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:305 #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:160 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:129 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:180 #: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:120 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:103 @@ -2303,9 +2334,9 @@ msgstr "In welke photoset wilt u %number% foto's plaatsen ?" #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:462 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:485 #: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:134 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:94 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:76 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:137 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:486 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:509 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:47 msgid "boutton::valider" msgstr "bevestigen" @@ -2315,10 +2346,10 @@ msgstr "bevestigen" #: tmp/cache_twig/0b/44/eb09dc6220f5b9b1a0f7549a0c81.php:78 #: tmp/cache_twig/10/90/0f86d56b208a1a1b9d032c6d72d5.php:78 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:996 -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:151 +#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:213 #: tmp/cache_twig/33/3d/90131b33a90f6725d7d6e3b3e014.php:78 #: tmp/cache_twig/36/7b/75184cf268ca2e6d1261fa36aeae.php:78 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:308 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:324 #: tmp/cache_twig/3e/8a/2ec77779fbe28cfbd32895b8a085.php:223 #: tmp/cache_twig/42/f4/c1a64461c9d4399f811220cdc847.php:82 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:67 @@ -2329,7 +2360,7 @@ msgstr "bevestigen" #: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:142 #: tmp/cache_twig/d9/05/b2c53e59d917b029caed87cf02de.php:107 #: tmp/cache_twig/d9/c0/b8270ed2ef479a11209ec2bae5f4.php:188 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:125 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:131 msgid "boutton::retour" msgstr "terug" @@ -2338,21 +2369,21 @@ msgstr "terug" #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:343 #: tmp/cache_twig/32/d6/cb628ba1205d4bf84a1f69575641.php:231 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:488 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1080 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1084 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2117 #: tmp/cache_twig/67/b7/e2062f697eeee5a56a35f0685357.php:228 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:29 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:144 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:335 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:83 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:1028 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:1024 #: tmp/cache_twig/de/bb/21c5bedae9d3c32735f514b04e17.php:88 msgid "action : exporter" msgstr "Exporteer" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:34 #: tmp/cache_twig/3a/ba/8f1ddbe33d83bf16f3431e103d32.php:498 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1090 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1094 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:35 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:155 #: tmp/cache_twig/95/d9/07d569ecca0909112e1c4240627c.php:69 @@ -2362,61 +2393,62 @@ msgstr "Print" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:44 #: tmp/cache_twig/1c/0e/1c4c1db9f7e963f3095b45cf970e.php:34 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:45 msgid "action : editer" msgstr "Wijzigen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:57 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1127 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1131 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:58 msgid "action : status" msgstr "Status" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:70 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1145 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1149 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:71 msgid "action : collection" msgstr "Collectie" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:83 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1324 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1369 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1328 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1373 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:84 msgid "action : push" msgstr "Push" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:96 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1334 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1379 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1338 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1383 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:97 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:109 msgid "Feedback" msgstr "Feedback" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:107 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1344 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1394 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2104 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1348 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1398 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2108 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:108 msgid "action : bridge" msgstr "Bridge" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:113 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1354 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1404 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2109 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1358 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1408 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2113 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:114 msgid "action : publier" msgstr "Publiceren" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:126 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1424 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1428 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:127 msgid "action : outils" msgstr "Gereedschappen" #: tmp/cache_twig/03/35/35c03b00866173dfbd01540bf60d.php:134 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1440 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1444 #: tmp/cache_twig/72/66/13ba9da9e0f41b7ad7bd948ddbc5.php:135 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:129 #: tmp/cache_twig/7b/dc/8fe6c71478ad63fbc116ed63ca55.php:325 @@ -2456,7 +2488,7 @@ msgstr "JA" #: tmp/cache_twig/05/71/7b0e8262b3e07506f688261c2b03.php:144 #: tmp/cache_twig/a1/51/962e8f450036575bab788d3ba9f3.php:138 -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:115 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:114 msgid "validation:: NON" msgstr "NEE" @@ -2465,141 +2497,140 @@ msgstr "NEE" msgid "Which playlist you want to put you %number% elements into ?" msgstr "In welke playlist wilt u %number% items plaatsen ?" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:131 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:202 msgid "admin:: demandes en cours" msgstr "Aanvragen in behandeling" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:143 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:214 msgid "Requests for the application registrations were recorded successfully" msgstr "Aanvragen voor de programma registraties zijn met succes opgenomen" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:161 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:352 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:356 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:232 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:405 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 msgid "admin:: refuser l'acces" msgstr "Weiger de toegang" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:167 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:371 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:375 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:238 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:416 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:420 msgid "admin:: donner les droits de telechargement et consultation de previews" msgstr "" "Geef de rechten voor het downloaden en het consulteren van voorvertoningen" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:173 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:390 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:394 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:244 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:427 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:431 msgid "admin:: donner les droits de telechargements de preview et hd" msgstr "Geef de rechten voor het downloaden van voorvertoningen en hd" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:179 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:409 -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:413 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:250 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:438 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:442 msgid "admin:: watermarquer les documents" msgstr "Watermerk de documenten" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:189 -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:119 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:119 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:260 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:116 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:116 #: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:358 msgid "Informations" msgstr "Informatie" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:193 -msgid "admin::compte-utilisateur date d'inscription" -msgstr "Inschrijvingsdatum" - -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:197 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:264 msgid "admin::collection" msgstr "Collectie" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:201 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:268 msgid "Models" msgstr "Modellen" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:247 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:303 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:779 #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:112 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:67 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1520 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:267 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1554 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:280 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:112 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:83 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:406 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:36 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:105 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:429 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:46 msgid "admin::compte-utilisateur identifiant" msgstr "Identificatie" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:275 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:331 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:927 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:298 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:699 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:299 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:249 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:723 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:312 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:272 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:299 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:97 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:107 msgid "admin::compte-utilisateur societe" msgstr "Bedrijf" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:283 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:339 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:913 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:712 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:236 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:736 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:259 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:298 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:90 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:100 msgid "admin::compte-utilisateur poste" msgstr "Postcode" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:291 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:347 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:941 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:262 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:285 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:300 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:104 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:114 msgid "admin::compte-utilisateur activite" msgstr "Activiteit" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:299 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:355 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:956 #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:306 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:686 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:275 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:710 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:298 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:296 msgid "admin::compte-utilisateur telephone" msgstr "Telefoon" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:307 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:363 #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:871 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:725 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:197 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:749 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:220 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:292 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:69 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:79 msgid "admin::compte-utilisateur adresse" msgstr "Adres" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:433 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:456 msgid "admin:: appliquer le modele" msgstr "admin:: gebruik dit model" -#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:496 +#: tmp/cache_twig/07/8f/d0c3fa64680c453cdf6bd01444b7.php:511 msgid "No application for registration has been recorded" msgstr "Geen programma registraties werden opgenomen" #: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:29 -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 #: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:29 -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 #: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:29 -#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 msgid "%nb_view% vue" -msgid_plural "%nb_view% vues" -msgstr[0] "%nb_view% weergave" -msgstr[1] "%nb_view% weergaves" +msgstr "%nb_view% weergave" -#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:54 +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:35 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:35 +#: tmp/cache_twig/9e/30/e82b55706e68988f0eda6d41286f.php:35 +msgid "%nb_view% vues" +msgstr "%nb_view% weergaven" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:57 msgid "%nb_rating% like" -msgid_plural "%nb_rating% likes" -msgstr[0] "%nb_rating% like" -msgstr[1] "%nb_rating% likes" +msgstr "%nb_rating% vindt ik leuk" + +#: tmp/cache_twig/09/26/061226e9a43de9ff125800077639.php:63 +msgid "%nb_rating% likes" +msgstr "%nb_rating% vindt ik leuks" #: tmp/cache_twig/09/e0/50b063e8242ffca115d00e377a9a.php:195 #: tmp/cache_twig/0b/5a/a4b9585489c871b0e0bad98ec91f.php:168 @@ -2701,9 +2732,9 @@ msgstr "Bewerken" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:314 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:344 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:378 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:427 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:476 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:525 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:434 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:490 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:546 #: tmp/cache_twig/81/cf/2dad00c9ad0614896cb709fdfacb.php:53 #: tmp/cache_twig/a1/3e/0eda43a1005f858d70e63056da57.php:328 #: tmp/cache_twig/a8/78/de763e0f3935755ff9545380dfb3.php:53 @@ -2806,23 +2837,23 @@ msgstr "" "De vereiste API connector is niet juist ingesteld, gelieve een administrator " "te contacteren" -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:129 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:129 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:126 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:126 msgid "Acces" msgstr "Toegang" -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:139 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:139 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:136 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:136 msgid "Sessions" msgstr "Sessies" -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:149 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:149 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:146 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:146 msgid "Applications" msgstr "Programma's" -#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:159 -#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:159 +#: tmp/cache_twig/0f/ac/e0096612d06e1c6f9e34fa6ef8f7.php:156 +#: tmp/cache_twig/21/b6/d0b018bc82ce40b057648f63df94.php:156 msgid "Developpeur" msgstr "Ontwikkelaar" @@ -2836,101 +2867,101 @@ msgstr "%n_element% video verwijderen" msgid "Etes vous sur de supprimer %number% videos ?" msgstr "Bent u zeker om %number% videos te verwijderen ?" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:75 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:69 msgid "Rights" msgstr "Rechten" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:85 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:79 msgid "Infos" msgstr "Informaties" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:77 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:111 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:90 msgid "Reglages:: reglages d acces guest" msgstr "instellingen voor gasttoegang" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:123 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:85 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:117 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:98 msgid "Reglages:: reglages d inscitpition automatisee" msgstr "instellingen voor automatisch inschrijven" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:135 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:129 msgid "Edition des droits de %display_name%" msgstr "Rechten aanpassingen voor %display_name%" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:147 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:141 msgid "Edition des droits de %number% utilisateurs" msgstr "Rechten aanpassingen voor %number% gebruikers" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:156 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:197 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:150 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:210 msgid "Apply a template" msgstr "Pas een sjabloon toe" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:161 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:202 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:155 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:215 msgid "boutton::choisir" msgstr "kiezen" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:183 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:237 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:177 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:250 msgid "Delete all users rights" msgstr "Verwijder alle gebruikersrechten" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:467 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:461 msgid "Allowed to publish" msgstr "Publiceren toegelaten" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:476 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:470 msgid "Manage Thesaurus" msgstr "Beheer Thesaurus" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:485 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:479 msgid "Manage Database" msgstr "Beheer Database" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:494 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:488 msgid "Manage DB fields" msgstr "Begeer DB velden" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:515 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:509 #: tmp/cache_twig/c4/55/f52a9e49661d7d55726b8756576d.php:113 msgid "Access" msgstr "Toegang" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:524 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:518 msgid "Active" msgstr "Actief" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:533 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:527 msgid "Allowed to add in basket" msgstr "Toegestaan om in mandje te plaatsen" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:542 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:536 msgid "Access to preview" msgstr "Toegang tot voorvertoning" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:551 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:545 msgid "Remove watermark" msgstr "Verwijder watermerk" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:560 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:554 msgid "Access to HD" msgstr "Toegang tot HD" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:569 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:563 msgid "Allowed to order" msgstr "Toegestaan om te sorteren" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:578 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:572 msgid "Set download quotas" msgstr "Stel downloaden quota in" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:603 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:599 msgid "Set time restrictions" msgstr "Stel tijdsbeperkingen in" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:628 +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:626 msgid "Set statuses restrictions" msgstr "Stel statusbeperkingen in" @@ -2975,59 +3006,59 @@ msgid "Manage values lists" msgstr "Beheer waarden lijsten" #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:793 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:96 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:44 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:118 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:54 msgid "admin::compte-utilisateur sexe" msgstr "Geslacht" #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:804 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:622 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:108 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:49 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:646 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:131 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:59 msgid "admin::compte-utilisateur:sexe: mademoiselle" msgstr "Jufrouw" #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:812 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:630 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:119 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:50 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:654 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:142 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:60 msgid "admin::compte-utilisateur:sexe: madame" msgstr "Mevrouw" #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:820 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:638 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:130 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:51 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:662 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:153 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:61 msgid "admin::compte-utilisateur:sexe: monsieur" msgstr "De heer" #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:885 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:738 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:210 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:762 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:233 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:294 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:76 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:86 msgid "admin::compte-utilisateur code postal" msgstr "Postcode" #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:899 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:751 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:223 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:775 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:246 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:293 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:83 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:93 msgid "admin::compte-utilisateur ville" msgstr "Star" #: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:970 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:764 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:288 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:788 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:311 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:297 -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:118 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:128 msgid "admin::compte-utilisateur fax" msgstr "Fax" -#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1005 -msgid "are you sure you want reset rights ?" -msgstr "bent u zeker om de rechten te herstellen ?" +#: tmp/cache_twig/12/80/35667ec1fcb35fe4ea1777c210d3.php:1022 +msgid "Are you sure you want to reset rights?" +msgstr "Bent u zeker om de rechten te herstellen?" #: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:31 #: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:282 @@ -3036,6 +3067,7 @@ msgstr "Geen resultaten" #: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:37 #: tmp/cache_twig/14/bf/9c01aa0715b96773c0e7996927f2.php:288 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:121 msgid "1 result" msgstr "1 resultaat" @@ -3089,8 +3121,8 @@ msgid "Save this list" msgstr "Bewaar deze lijst" #: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:151 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:26 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:64 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:91 #: lib/Alchemy/Phrasea/Vocabulary/ControlProvider/UserProvider.php:48 msgid "Users" msgstr "Gebruikers" @@ -3157,7 +3189,8 @@ msgid "Deselect all" msgstr "Alles deselecteren" #: tmp/cache_twig/15/fd/f2d9b199f00a42485f03d55dfddc.php:419 -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:309 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:262 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:312 #: tmp/cache_twig/59/de/7c02fb51e3480557084dc4687fb9.php:107 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:307 #: tmp/cache_twig/f9/a1/b353838bc56869bf92a7e455d17d.php:175 @@ -3205,7 +3238,8 @@ msgstr "Verwijder ook de records die in de groepen voorkomen?" #: tmp/cache_twig/16/0c/dc1f9e2458390ebae91faddb2857.php:78 #: tmp/cache_twig/30/72/2930c8c05372eb3a7c0286ccfb00.php:102 #: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:151 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:295 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:328 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:135 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:117 msgid "Cancel" msgstr "Annuleren" @@ -3267,16 +3301,16 @@ msgstr "uw nota" #: tmp/cache_twig/36/98/d86d23f16fdf5e4e0efd14df579e.php:79 #: tmp/cache_twig/45/fc/ad5b8eb1b4a2d9a634a7e5757d83.php:79 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:86 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2019 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2023 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:54 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:972 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:968 #: tmp/cache_twig/b0/74/5c4f8cb2093973ee3556bffe1851.php:135 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:196 #: tmp/cache_twig/bc/dc/79261dd8d83c16a51bdcc19a695c.php:225 #: tmp/cache_twig/ea/5d/1a1d164264d851d3f35d38bd6620.php:283 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:516 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:524 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:275 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:274 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:56 msgid "boutton::fermer" msgstr "Sluiten" @@ -3285,17 +3319,21 @@ msgstr "Sluiten" msgid "boutton::enregistrer" msgstr "bewaren" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:46 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:22 +msgid "Reorder collections" +msgstr "Hersorteer collecties" + +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:53 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:164 msgid "admin::base:collorder: monter" msgstr "Laden" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:50 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:57 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:168 msgid "admin::base:collorder: descendre" msgstr "Afdalen" -#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:54 +#: tmp/cache_twig/1a/5b/03b46967fb31de5cc63654182091.php:61 #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:176 msgid "admin::base:collorder: reinitialiser en ordre alphabetique" msgstr "Herinitialiseren in alfabetische volgorde" @@ -3310,21 +3348,21 @@ msgid "Suggested values" msgstr "Voorgestelde waardes" #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:48 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:25 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:36 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:55 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:980 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1018 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1057 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1091 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1125 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1224 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:982 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1020 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1059 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1093 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1127 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1226 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:530 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:559 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:592 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:780 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:817 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:954 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1004 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:956 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1007 msgid "Successful update" msgstr "Geslaagde update" @@ -3340,12 +3378,12 @@ msgid "admin::sugval: Valeurs suggerees/Preferences de la collection" msgstr "Voorgestelde waardes/Voorkeuren van de collectie" #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:111 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:108 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:104 msgid "boutton::vue xml" msgstr "xml weergave" #: tmp/cache_twig/1b/30/753738c0c4f81bf7a9aba183affd.php:115 -#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:104 +#: tmp/cache_twig/b8/ec/453b197e82c6c1695c8bf49b2a73.php:108 msgid "boutton::vue graphique" msgstr "grafische weergave" @@ -3404,7 +3442,7 @@ msgid "admin::utilisateurs: demandes en cours" msgstr "aanvraag wordt verwerkt" #: tmp/cache_twig/1b/77/414e4c8e792d6e03335779186359.php:153 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1919 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1923 #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:247 #: tmp/cache_twig/91/10/8fd4c4648bb481da6b76539ce814.php:23 #: tmp/cache_twig/fe/69/f30994e5ae0571c27f749684eff6.php:23 @@ -3477,13 +3515,10 @@ msgstr "bevat" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:324 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:47 #: tmp/cache_twig/6d/65/1532a96b132583505bf8e4e8bab9.php:107 -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:35 -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:49 -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:63 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:270 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:486 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:805 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1032 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:829 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1056 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:163 #: tmp/cache_twig/85/b5/dc2fef68f3159d0d089de2c61eb5.php:240 #: tmp/cache_twig/8e/02/bb9643d72d636512b0dd7273cc08.php:47 @@ -3498,12 +3533,12 @@ msgstr "bevat" #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:47 #: tmp/cache_twig/cf/54/5df1aa52892a0a5d8dc3e6731756.php:184 #: tmp/cache_twig/d1/9d/01e349c894b434d79490f52ac9da.php:188 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:104 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:107 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:250 #: tmp/cache_twig/f5/8b/722fe9c2f9f12433d3100c930965.php:489 #: tmp/cache_twig/fb/4a/4b7a727bdb22076158e1e12190d2.php:207 #: tmp/cache_twig/fd/2d/efdc6903cabe0e9244bd196ad77a.php:132 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:274 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:273 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:41 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:48 msgid "boutton::annuler" @@ -3522,9 +3557,9 @@ msgstr "Goede dag, wilt u zich bekendmaken op %home_title% :" #: tmp/cache_twig/1c/fe/06ae4748f1b9884407a4d6c6427c.php:116 #: tmp/cache_twig/40/e3/491959f190743d7ae676add2ba17.php:79 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:845 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1536 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1570 #: tmp/cache_twig/ae/a7/6e84d8e1b53bc92e183f2cc3fc0c.php:116 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:419 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:442 msgid "admin::compte-utilisateur mot de passe" msgstr "Paswoord" @@ -3632,31 +3667,32 @@ msgid "Details" msgstr "Details" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:41 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:40 -msgid "phraseanet:: collection" +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:381 +#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:25 +msgid "Collection" msgstr "Collectie" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:55 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 -msgid "admin::base: objet" -msgstr "Object" +msgid "Subdef" +msgstr "Thumbnail" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:61 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 -msgid "admin::base: nombre" -msgstr "Aantal" +msgid "Number" +msgstr "Nummer" #: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:65 -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:69 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 -msgid "admin::base: poids" +msgid "Weight" msgstr "Gewicht" -#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:127 -msgid "report:: total" +#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:163 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:111 +msgid "Total" msgstr "Totaal" +#: tmp/cache_twig/22/cd/c1915a824fdb6dfc1849ba3a219a.php:194 +msgid "Cumulative total" +msgstr "Cumulatief totaal" + #: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:70 #: tmp/cache_twig/25/b9/b11a6409fff81c542efc686af7cd.php:114 msgid "a propos" @@ -3683,11 +3719,13 @@ msgstr "Een controle in proces" msgid "Voici vos paniers" msgstr "Uw mandjes" -#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:51 +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:54 msgid "%value% like" -msgid_plural "%value% likes" -msgstr[0] "%value% zoals" -msgstr[1] "%value% zoals" +msgstr "%value% vindt ik leuk" + +#: tmp/cache_twig/28/45/cab46c7ff23963e50d925a53e4f1.php:60 +msgid "%value% likes" +msgstr "%value% vindt ik leuks" #: tmp/cache_twig/29/8d/9325235728f604d30512a6772066.php:27 #: tmp/cache_twig/49/2b/191d44280d45c2b367004a0cff19.php:27 @@ -3771,8 +3809,8 @@ msgstr "Modules" #: tmp/cache_twig/29/a8/576bbda2b5d009a2179bb6743568.php:133 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:831 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:85 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1490 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1524 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:416 msgid "phraseanet:: adresse" msgstr "Adres" @@ -3832,21 +3870,18 @@ msgstr "Datum" msgid "Uploaded by : %username%" msgstr "Opgeladen door : %username%" -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:381 -#: tmp/cache_twig/9b/ba/47d2bc434142d2378f100fdb6184.php:25 -msgid "Collection" -msgstr "Collectie" - #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:427 #: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:431 msgid "Substitute" msgstr "Vervangen" -#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:463 -msgid "%record_count% record match the unique identifier :" -msgid_plural "%record_count% records match the unique identifier :" -msgstr[0] "%record_count% record komt met de unieke identificatie overeen :" -msgstr[1] "%record_count% record komen met de unieke identificatie overeen :" +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:466 +msgid "A record matches the unique identifier :" +msgstr "Een record is gelijk aan de unieke id :" + +#: tmp/cache_twig/2e/0a/9c25d3c1de90fbf0567ed2c42573.php:472 +msgid "%record_count% records match the unique identifier :" +msgstr "%record_count% records zijn gelijk aan de unieke id :" #: tmp/cache_twig/2e/3b/80316458148f2a1e7f4387e76ba5.php:26 msgid "No account yet?" @@ -4049,7 +4084,7 @@ msgid "" msgstr "U kan een standaard collectie kiezen voor toegang te verlenen " #: tmp/cache_twig/35/34/f6dd881337003adfb8c6a2aa2955.php:85 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1871 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1875 #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:411 msgid "choisir" msgstr "kiezen" @@ -4090,43 +4125,55 @@ msgid "admin::status: case A" msgstr "Case A" #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:55 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:167 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:175 msgid "admin::status: texte a afficher" msgstr "te tonen tekst" #: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:93 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:205 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:213 msgid "Labels" msgstr "Labels" -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:123 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:235 -msgid "admin::status: symboliser par" -msgstr "gesymboliseerd door" +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:124 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:244 +msgid "Symbolized by" +msgstr "Gesymboliseerd door" -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:146 -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:258 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:132 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:252 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:399 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:455 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:511 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:567 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:123 +msgid "Select files..." +msgstr "Selecteer files..." + +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:154 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:274 msgid "admin::status:: aucun symbole" msgstr "geen enkel symbool" -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:161 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:169 msgid "admin::status: case B" msgstr "Case B" -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:278 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:294 msgid "" "status:: Afficher le status dans les feuilles de reponses pour tous les " "utilisateurs" msgstr "Toon de statussen in de bladeren van de antwoorden aan alle gebruikers" -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:288 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:304 msgid "status:: retrouver sous forme de filtre dans la recherche" msgstr "vindt als filter terug in de zoek" -#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:334 -#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:702 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:649 -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:140 +#: tmp/cache_twig/36/7d/f1589e8a4f15369785f096984430.php:350 +#: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:696 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:594 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:146 msgid "" "Invalid file type, only (%supported_file_types%) file formats are supported" msgstr "" @@ -4411,7 +4458,7 @@ msgstr "Technische informaties" #: tmp/cache_twig/44/a7/587e734704a47080eddd1a16d5b2.php:22 #: tmp/cache_twig/64/da/953da7fe66f1c5da37a090a32e34.php:22 #: tmp/cache_twig/83/fd/a6760447b59ebe5a4e901f8e030b.php:22 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:653 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:666 msgid "boutton::modifier" msgstr "bewerken" @@ -4467,19 +4514,22 @@ msgid "mediatype" msgstr "mediatype" #: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:475 -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:601 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:605 #: tmp/cache_twig/74/d5/be3c51602bdff8e3c0512f97a222.php:30 #: tmp/cache_twig/94/7a/b324e1169f7c835b91d3339f5a24.php:29 msgid "Choisir" msgstr "Kiezen" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:635 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:639 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:207 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:172 msgid "yes" msgstr "Ja" -#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:644 +#: tmp/cache_twig/44/df/c1fbe2cfe292312b2a352083f51a.php:648 #: tmp/cache_twig/50/4f/d9797dda91c90533fa9a3b2d1b61.php:213 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:168 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:61 msgid "no" msgstr "Nee" @@ -4490,7 +4540,7 @@ msgstr "Mislukt" #: tmp/cache_twig/46/20/9ef3a249eba1a0d11257a9757176.php:35 #: tmp/cache_twig/4a/28/29ec180571494dad97554966352f.php:35 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1326 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1360 msgid "Success" msgstr "Gelukt" @@ -4552,83 +4602,83 @@ msgstr "De taal insluiten" msgid "thesaurus:: export : inclure les hits" msgstr "De hits insluiten" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:60 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:71 msgid "Do not forget to restart the tasks scheduler" msgstr "Vergeet niet om de taakbeheerder te herstarten" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:90 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:101 msgid "version" msgstr "versie" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:121 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:132 msgid "admin::base: Version" msgstr "Versie" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:129 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:140 msgid "update::Votre application necessite une mise a jour vers : " msgstr "Uw programma vereist een update naar : " -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:137 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:148 msgid "update::Votre version est a jour : " msgstr "Uw versie is up to date : " -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:178 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:189 msgid "Propositions de modifications des tables" msgstr "Voorgestelde wijzigingen in tabellen" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:206 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:217 msgid "update::Verifier els tables" msgstr "Controleer de tabellen" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:214 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 msgid "admin::base: creer une base" msgstr "Maak een database" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:225 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 msgid "" "phraseanet:: Creer une base sur un serveur different de l'application box" msgstr "Maak een database op een andere server dan die van de programma box" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:231 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:312 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:242 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:323 msgid "phraseanet:: hostname" msgstr "Hostname" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:236 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:247 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:328 #: tmp/cache_twig/59/46/9072e2f8e9240ff52020a0c05c65.php:852 msgid "phraseanet:: port" msgstr "Poort" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:241 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:322 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 msgid "phraseanet:: user" msgstr "Gebruiker" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:246 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:327 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:338 msgid "phraseanet:: password" msgstr "Paswoord" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:252 -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:333 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:263 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:344 msgid "phraseanet:: dbname" msgstr "Dbname" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:257 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:268 msgid "phraseanet:: Modele de donnees" msgstr "Modelgegevens" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:286 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:297 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:49 msgid "boutton::creer" msgstr "Maken" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:295 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 msgid "admin::base: Monter une base" msgstr "Toon een database" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:306 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:317 msgid "" "phraseanet:: Monter une base provenant d'un serveur different de " "l'application box" @@ -4636,7 +4686,7 @@ msgstr "" "Toon een database die van een verschillende server komt dan die van de " "programma box" -#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:339 +#: tmp/cache_twig/49/1b/d8e8861bb8887118509951ea955f.php:350 msgid "boutton::monter" msgstr "Tonen" @@ -4650,22 +4700,13 @@ msgid "Create an account manually" msgstr "Maak manueel een gebruiker" #: tmp/cache_twig/49/1e/9da2b6cbdec8fbb3e9416154a9b2.php:82 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:231 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:233 #: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:177 msgid "Or login with" msgstr "Of meld aan met" -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:40 -#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 -#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 -#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 -#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 -#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 -msgid "Login" -msgstr "Login" - -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:90 -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:201 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:92 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:203 #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:51 #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:178 #: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:151 @@ -4674,16 +4715,16 @@ msgstr "Login" msgid "Connection" msgstr "Verbinding" -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:111 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:113 msgid "Your account is locked, please follow the following link to unlock it" msgstr "" "Uw gebruiker is geblokkeerd, volg de onderstaande link om die te deblokkeren" -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:119 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:121 msgid "login:: Envoyer a nouveau le mail de confirmation" msgstr "Stuur de bevestigingsmail opnieuw" -#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:176 +#: tmp/cache_twig/4c/f2/79acdb2dbb5126fbeec130e8a38c.php:178 #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:149 #: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:121 #: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:125 @@ -4708,8 +4749,8 @@ msgstr "Gebruiker kan andere keuzes zien" #: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:133 #: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:137 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:244 -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:248 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:279 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:283 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:101 msgid "User can download HD" msgstr "Gebruiker kan HD downloaden" @@ -4729,7 +4770,7 @@ msgstr "Bent u zeker deze lijst te verwijderen ?" msgid "Time for feedback (days)" msgstr "Tijd voor feedback (dagen)" -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:192 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:227 #: tmp/cache_twig/5a/1c/22c648764c06aa4717454c211a73.php:49 #: tmp/cache_twig/60/9e/08e5cd324575093580f38cce0603.php:99 #: tmp/cache_twig/de/85/dcc2bacfb8cb7d5c27a964d9a960.php:86 @@ -4737,12 +4778,12 @@ msgstr "Tijd voor feedback (dagen)" msgid "Name" msgstr "Naam" -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:199 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:234 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:86 msgid "Message" msgstr "Bericht" -#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:208 +#: tmp/cache_twig/4d/2a/0abbdb1c83a151aebb422790d82d.php:243 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:89 msgid "Accuse de reception" msgstr "Ontvangstbevestiging" @@ -4796,7 +4837,12 @@ msgstr "Document verstuurd door %name%" msgid "Selectionnez des documents et " msgstr "Selecteer documenten en " -#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:265 +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:266 +#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 +msgid "Deny" +msgstr "Weiger" + +#: tmp/cache_twig/4f/62/d5c7ff2f7bbb0c742f22dfc936d6.php:270 msgid "Retour aux commandes" msgstr "Terug naar de bestellingen" @@ -4919,11 +4965,6 @@ msgstr "Algemene Voorwaarden" msgid "Quarantine" msgstr "Quarantaine" -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:69 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:412 -msgid "Select files..." -msgstr "Selecteer files..." - #: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:77 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:70 msgid "maximum : %maxFileSizeReadable%" @@ -4952,27 +4993,26 @@ msgstr "Bestemming" msgid "upload:: Status :" msgstr "Status" -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:301 -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 -msgid "Selected files" -msgstr "Geselecteerde files" +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:304 +msgid "%quantity%selected files" +msgstr "%quantity% geselecteerde documenten" -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:305 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:308 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:303 msgid "Clear list" msgstr "Lijst wissen" -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:321 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:324 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:318 msgid "Transmited files" msgstr "Verzonden bestanden" -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:333 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:336 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:324 msgid "Cancel all" msgstr "Annuleer alles" -#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:351 +#: tmp/cache_twig/54/87/e481d0c88eebca0f11a2fa8fd90f.php:354 #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:287 msgid "You can not upload files" msgstr "U kunt geen files uploaden" @@ -5466,7 +5506,7 @@ msgstr "" "legenda." #: tmp/cache_twig/59/d0/175a8ecfde6e10981fb604ad016a.php:197 -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:116 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:119 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:98 msgid "Attention" msgstr "Let op!" @@ -5515,34 +5555,32 @@ msgstr "Configureer het paneel" msgid "report :: imprimer le tableau" msgstr "Print het panel" -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:116 -msgid "Number of result" -msgid_plural "Number of results" -msgstr[0] "Aantal van het resultaat" -msgstr[1] "Aantallen van het resultaat" +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:127 +msgid "%total_count% results" +msgstr "%total_count% resultaten" -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:159 -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:163 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:173 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:177 msgid "Trier" msgstr "Sorteren" -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:190 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:204 msgid "Filtrer" msgstr "Filteren" -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:194 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:208 msgid "report :: filtrer" msgstr "Filteren" -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:205 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:219 msgid "Grouper" msgstr "Groeperen" -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:209 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:223 msgid "report :: grouper" msgstr "Groeperen" -#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:375 +#: tmp/cache_twig/5a/21/afcf75d33b47be375cb124fe7895.php:389 msgid "report :: aucun resultat trouve" msgstr "geen enkel resultaat gevonden" @@ -5552,7 +5590,7 @@ msgstr "Laden" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:235 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:239 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:456 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:452 msgid "phraseanet:: propositions" msgstr "Voorstellen" @@ -5578,7 +5616,7 @@ msgstr "vervangen door de term" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:320 #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:588 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:423 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:419 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:50 msgid "boutton::rechercher" msgstr "zoeken" @@ -5612,8 +5650,8 @@ msgid "phraseanet:: tri par nom" msgstr "Op naam sorteren" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:557 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1477 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1658 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1481 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1662 msgid "Preferences" msgstr "Voorkeuren" @@ -5622,13 +5660,13 @@ msgid "Advanced Search" msgstr "Geavanceerd zoeken" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:606 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1049 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:401 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1053 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:397 msgid "phraseanet::type:: documents" msgstr "Documenten" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:618 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:409 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:405 msgid "phraseanet::type:: reportages" msgstr "Reportages" @@ -5653,12 +5691,12 @@ msgid "Document" msgstr "Document" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:668 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:482 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:478 msgid "boutton:: selectionner toutes les bases" msgstr "Selecteer alle databases" #: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:673 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:486 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:482 msgid "boutton:: selectionner aucune base" msgstr "Selecteer geen enkele database" @@ -5672,255 +5710,255 @@ msgstr "Herinitialiseren" msgid "Trier par " msgstr "Sorteren op " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:745 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:749 msgid "rechercher par stemme" msgstr "zoeken op stemmen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:755 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:759 msgid "Les termes apparaissent dans le(s) champs" msgstr "De termen verschijnen in de veld(en)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:760 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:941 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:945 msgid "rechercher dans tous les champs" msgstr "in alle velden zoeken" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:801 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:805 msgid "Status des documents a rechercher" msgstr "Status van de te zoeken documenten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:913 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:917 msgid "Rechercher dans un champ date" msgstr "Zoeken in een datum veld" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:950 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:707 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:954 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:703 msgid "phraseanet::time:: de" msgstr "de" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:960 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:713 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:964 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:709 msgid "phraseanet::time:: a" msgstr "a" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1022 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1026 msgid "reponses:: selectionner tout" msgstr "alles selecteren" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1031 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1035 msgid "reponses:: selectionner rien" msgstr "niks selecteren" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1040 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1044 msgid "phraseanet::type:: images" msgstr "Beelden" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1058 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1062 msgid "phraseanet::type:: videos" msgstr "Videos" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1067 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1071 msgid "phraseanet::type:: audios" msgstr "Audios" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1538 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1542 msgid "raccourci :: a propos des raccourcis claviers" msgstr "Over toetsenbord sneltoetsen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1543 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1547 msgid "Raccourcis claviers en cours de recherche : " msgstr "Sneltoetsen tijdens het zoeken : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1548 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1584 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 msgid "Raccourcis:: ctrl-a : tout selectionner " msgstr "ctrl-a : alles selecteren " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1552 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1588 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 msgid "Raccourcis:: ctrl-p : imprimer la selection " msgstr "ctrl-p : print de selectie " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1556 -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1592 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1596 msgid "Raccourcis:: ctrl-e : editer la selection " msgstr "ctrl-e : bewerk de selectie " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1560 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 msgid "Raccourcis::fleche gauche : page precedente " msgstr "pijl links : vorige pagina " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1564 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 msgid "Raccourcis::fleche droite : page suivante " msgstr "pijl rechts : volgende pagina " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1568 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 msgid "Raccourcis::fleche haut : scroll vertical " msgstr "pijl boven : verticale scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1572 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1576 msgid "Raccourcis::fleche bas : scroll vertical " msgstr "pijl onder : verticale scroll " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1579 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1583 msgid "Raccourcis claviers de la zone des paniers : " msgstr "Sneltoetsen in de mandjes zone : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1599 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1603 msgid "Raccourcis claviers en cours de editing : " msgstr "Sneltoetsen tijdens het bewerken : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1604 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1608 msgid "Raccourcis::tab/shift-tab se ballade dans les champs " msgstr "tab/shift-tab verspringt tussen de velden " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1611 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1615 msgid "Raccourcis claviers en cours de preview : " msgstr "Sneltoetsen tijdens de voorvertoning : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1616 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 msgid "Raccourcis::fleche gauche : en avant " msgstr "pijl rechts : voorwaarts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1620 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 msgid "Raccourcis::fleche gauche : en arriere " msgstr "pijl links : achterwaarts " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1624 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1628 msgid "Raccourcis::espace : arreter/demarrer le diaporama " msgstr "espace : start/stop de slideshow " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1632 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1636 msgid "" "Vous pouvez quitter la plupart des fenetres survolantes via la touche echap " msgstr "" "U kunt het grootste deel van de bovenliggende vensters sluiten met de escape " "toets " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1643 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1647 msgid "raccourcis :: ne plus montrer cette aide" msgstr "Deze help niet meer tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1664 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 msgid "Affichage" msgstr "Tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1668 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1672 msgid "Configuration" msgstr "Configuratie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1676 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1680 msgid "Mode de presentation" msgstr "Presentatie mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1691 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1695 msgid "reponses:: mode vignettes" msgstr "Thumbnail mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1703 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1707 msgid "reponses:: mode liste" msgstr "Lijst mode" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1710 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1714 msgid "Theme" msgstr "Thema" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1719 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1723 msgid "Selecteur de theme" msgstr "Thema selector" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1741 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1745 msgid "Presentation de vignettes" msgstr "Presentatie van de thumbnails" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1752 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1756 msgid "Iconographe (description au rollover)" msgstr "Iconographe (beschrijving bij de rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1764 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1768 msgid "Graphiste (preview au rollover)" msgstr "Graficus (preview au rollover)" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1774 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1778 msgid "Informations techniques" msgstr "Technische informaties" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1785 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1789 msgid "Afficher" msgstr "Tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1797 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1801 msgid "Afficher dans la notice" msgstr "In de nota tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1809 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1813 msgid "Ne pas afficher" msgstr "Niet tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1819 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1823 msgid "Type de documents" msgstr "Type van de documenten" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1830 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1834 msgid "Afficher une icone" msgstr "Pictogram tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1839 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1843 msgid "reponses:: images par pages : " msgstr "Beelden per pagina : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1852 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1856 msgid "reponses:: taille des images : " msgstr "Grootte van de beelden : " -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1866 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1870 msgid "Couleur de selection" msgstr "Kleur van de selectie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1881 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1885 msgid "Affichage au demarrage" msgstr "Tonen bij opstart" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1897 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1901 msgid "Ma derniere question" msgstr "Mijn laatste vraag" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1908 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1912 msgid "Une question personnelle" msgstr "Een persoonlijke vraag" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1930 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1934 msgid "Aide" msgstr "Help" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1977 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:987 msgid "preview:: Description" msgstr "Beschrijving" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1981 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1985 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:991 msgid "preview:: Historique" msgstr "Historie" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1988 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:999 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:1992 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:995 msgid "preview:: Popularite" msgstr "Populariteit" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2037 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2041 msgid "Presentation de vignettes de panier" msgstr "Presentatie van de thumbnails in het mandje" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2055 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2059 msgid "Afficher les status" msgstr "De statussen tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2075 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2079 msgid "Afficher la fiche descriptive" msgstr "De beschrijvingsfiche tonen" -#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2095 +#: tmp/cache_twig/5a/56/9f36f7ac1ae4c31e7980d2778047.php:2099 msgid "Afficher le titre" msgstr "De titel tonen" @@ -6061,9 +6099,9 @@ msgstr "Verwijder het logo" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:536 #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:389 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:438 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:487 -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:536 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:445 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:501 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:557 msgid "admin::base:collection: aucun fichier (minilogo, watermark ...)" msgstr "Geen enkel bestand (minilogo, watermerk ...)" @@ -6072,7 +6110,7 @@ msgid "admin::base: envoyer un logo (jpeg 35px de hauteur max)" msgstr "Verstuur een logo (jpeg 35px maximale hoogte)" #: tmp/cache_twig/5d/bc/c63b23805fe23f5982fed816065d.php:569 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:943 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:945 msgid "admin::base: aucun alias" msgstr "Geen enkel snelkoppeling" @@ -6112,6 +6150,14 @@ msgstr "Thumbnail" msgid "Thumbnail" msgstr "Thumbnail" +#: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:38 +#: tmp/cache_twig/7d/1f/dcfa5707551f8a8f0dc190a05319.php:40 +#: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:53 +#: tmp/cache_twig/b6/95/2179e074bd091df7f02b3f962659.php:38 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:23 +msgid "Login" +msgstr "Login" + #: tmp/cache_twig/61/87/22f0522ef94c39c79c7cfdeb82dd.php:60 msgid "Your %provider_name% account matchs a Phraseanet account" msgstr "Uw %provider_name% gebruiker is gelijk aan een Phraseanet gebruiker" @@ -6352,7 +6398,6 @@ msgid "Charset to use for indexation" msgstr "Te gebruiken karakterset voor de indexatie" #: tmp/cache_twig/66/3c/c10b3bbc30c7bd401877feb88aca.php:85 -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 msgid "Date fields available for search" msgstr "Datum velden zijn beschikbaar bij het zoeken" @@ -6420,6 +6465,10 @@ msgstr "%n_element% foto's verwijderen" msgid "Etes vous sur de supprimer %number% photos ?" msgstr "Bent u zeker om %number% te verwijderen ?" +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:40 +msgid "phraseanet:: collection" +msgstr "Collectie" + #: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:91 msgid "admin::base:collection: numero de collection distante" msgstr "Aantal externe collecties" @@ -6496,18 +6545,23 @@ msgstr "Bevestigt u de verwijdering van deze collectie ?" msgid "admin::base:collection: minilogo actuel" msgstr "Actueel minilogo" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:407 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:414 msgid "Watermark" msgstr "Watermerk" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:456 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:470 msgid "Stamp logo" msgstr "Stempel logo" -#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:505 +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:526 msgid "admin::base:collection: image de presentation : " msgstr "Presentatie beeld : " +#: tmp/cache_twig/6e/03/096a0850c1efe4871b2d8449c6bc.php:584 +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 +msgid "Invalid file type" +msgstr "Ongeldig bestandstype" + #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:118 msgid "regeneration of sub-definitions" msgstr "thumbnails opnieuw genereren" @@ -6632,7 +6686,7 @@ msgid "processing" msgstr "verwerken" #: tmp/cache_twig/6e/47/fa57c2115503350503b01c881d2f.php:1070 -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:230 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:242 msgid "an error occured" msgstr "een fout geeft zich voorgedaan" @@ -6671,7 +6725,7 @@ msgstr "Hersorteren" msgid "Inverser" msgstr "Omkeren" -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:30 +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:33 msgid "" "prod::Les enregistrements ne provienent pas tous de la meme base et ne " "peuvent donc etre traites ensemble" @@ -6679,26 +6733,33 @@ msgstr "" "De records zijn niet allemaal afkomstig van dezelfde database en kan dus " "niet samen behandeld worden" -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:44 +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:42 msgid "prod::Vous n'avez le droit d'effectuer l'operation sur aucun document" msgstr "" "U hebt niet het recht om deze handeling uit te voeren op geen enkel document" -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:58 +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:51 msgid "erreur : Vous n'avez pas les droits" msgstr "U hebt niet de rechten" -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:79 -#, php-format -msgid "prod::collection %countable% documents ne pouvant etres mofiies" -msgstr "Collection %countable% documenten kunnen niet worden aangepast" +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:74 +msgid "One document can not be modified." +msgstr "Eén document kan niet worden aangepast." -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:91 +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:80 #, php-format -msgid "prod::collection %countable% documents a deplacer" -msgstr "Collection %countable% documenten te verplaatsen" +msgid "%countable% documents can not be modified." +msgstr "%countable% documenten kunnen niet worden aangepast." -#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:128 +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:99 +msgid "Move one record to the chosen collection in the list." +msgstr "Verplaats één record naar de gekozen collectie in de lijst." + +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:105 +msgid "Move %countable% records to the chosen collection in the list." +msgstr "Verplaats %countable% records naar de gekozen collectie in de lijst." + +#: tmp/cache_twig/75/75/d2760c154b682efc3567d3377d33.php:142 msgid "" "prod::collection deplacer egalement les documents rattaches a ce(s) " "regroupement(s)" @@ -6937,27 +6998,27 @@ msgid "export:: commande" msgstr "Opdracht" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:90 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:820 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:844 msgid "export:: FTP" msgstr "FTP" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:172 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:385 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:536 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:929 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:560 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:953 msgid "Documents indisponibles" msgstr "Documenten niet beschikbaar" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:230 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:445 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:989 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1013 msgid "Include Business-fields in caption" msgstr "Business-fields opnemen in caption" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:256 #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:471 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:789 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1012 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:813 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1036 msgid "" "By checking this box, you accept %beginning_link% Terms of Use %end_link%" msgstr "" @@ -6987,82 +7048,90 @@ msgid "export::mail: contenu du mail" msgstr "Inhoud van de mail" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:341 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:885 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:909 msgid "export::mail: fichiers joint" msgstr "Toegevoegde bestanden" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:404 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:547 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:948 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:571 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:972 msgid "La sous resolution n'est pas disponible pour les documents suivants" msgstr "De onder resolutie is niet beschikbaar voor de volgende documenten" #: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:481 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1027 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1051 msgid "boutton::envoyer" msgstr "Verzenden" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:515 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:518 +msgid "Un document commande" +msgstr "Een document bestelling" + +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 #, php-format msgid "%docs_orderable% documents commandes" msgstr "%docs_orderable% documenten besteld" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:524 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:539 +msgid "Un document ne peut etre commande" +msgstr "Eén document kan niet worden besteld" + +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:545 #, php-format msgid "%docs_not_orderable% documents ne peuvent pas etre commandes" msgstr "%docs_not_orderable% documenten kunnen niet worden besteld" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:592 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:616 msgid "commande::utilisation prevue" msgstr "Utilisation gepland" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:602 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:626 msgid "commande::deadline" msgstr "Deadline" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:612 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:636 msgid "Civility" msgstr "Beleefdheid" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:800 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:824 msgid "boutton::commander" msgstr "Bestellen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:838 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:862 msgid "phraseanet:: prereglages" msgstr "Voorinstellingen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1022 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1046 msgid "boutton::essayer" msgstr "Proberen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1071 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1099 msgid "You must agree to the Terms of Use to continue." msgstr "U moet de gebruiksvoorwaarden aanvaarden." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1083 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1139 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1169 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1331 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1388 -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1415 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1111 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1167 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1197 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1365 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1422 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1449 msgid "Warning !" msgstr "Waarschuwing !" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1127 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1155 msgid "Certains champs sont obligatoires, veuillez les remplir" msgstr "Sommige velden zijn verplicht, wilt u ze invullen" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1157 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1185 msgid "Vous devez selectionner un type de sous definitions" msgstr "U moet een type thumbnail selecteren" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1189 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1217 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:62 msgid "Terms of Use" msgstr "Gebruiksvoorwaarden" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1252 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1286 msgid "" "You can not directly download more than %max_download% Mo ; time to package " "all documents is too long" @@ -7070,51 +7139,51 @@ msgstr "" "U kan niet meer dan %max_download% Mb downloaded ; tijd om alle documenten " "compresseren is te lang" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1261 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1295 msgid "You can alternatively receive an email when the download is ready." msgstr "" "Als alternatief kunt u een email ontvangen wanneer de download klaar is." -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1270 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1304 msgid "Would you like to receive an e-mail when your download is ready ?" msgstr "Wilt u een email ontvangen wanneer de download klaar is ?" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1506 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1540 msgid "phraseanet:: utiliser SSL" msgstr "Gebruik SSL" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1552 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:460 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1586 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:483 msgid "admin::compte-utilisateur:ftp: Utiliser le mode passif" msgstr "Gebruik de passive mode" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1570 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:474 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1604 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:497 msgid "admin::compte-utilisateur:ftp: Nombre d'essais max" msgstr "Aantal max probeersels" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1586 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:432 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1620 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:455 msgid "admin::compte-utilisateur:ftp: repertoire de destination ftp" msgstr "Bestemmings ftp-map" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1602 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1636 msgid "admin::compte-utilisateur:ftp: creer un dossier" msgstr "Maak een map" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1630 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1664 msgid "admin::compte-utilisateur:ftp: ecrire un fichier de log" msgstr "Een logbestand maken" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1672 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1706 msgid "Nom des fichiers a l'export" msgstr "Naam van het bestand bij de export" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1689 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1723 msgid "export::titre: titre du documument" msgstr "Titel van het document" -#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1706 +#: tmp/cache_twig/85/6c/5840584a8a831733294f96ab8ed4.php:1740 msgid "export::titre: nom original du document" msgstr "Originele naam van het document" @@ -7197,7 +7266,7 @@ msgid "Guest" msgstr "Gast" #: tmp/cache_twig/89/69/3419e8324ba01f7e10a999d5e211.php:343 -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:56 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:78 msgid "login:: Mon compte" msgstr "Mijn account" @@ -7223,7 +7292,7 @@ msgid "Apply to all selected documents" msgstr "Pas toe op alle geselecteerde documenten" #: tmp/cache_twig/8c/38/516eeca13b148530c0d1cf3e553b.php:147 -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:291 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:322 msgid "Apply changes" msgstr "Wijzigingen toepassen" @@ -7255,6 +7324,8 @@ msgid "validation::envoyer mon rapport" msgstr "stuur mijn rapport" #: tmp/cache_twig/93/c0/d257ccd42b0af16549afd152737d.php:71 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:130 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:296 msgid "First/Last Name" msgstr "Voor/Achter naam" @@ -7270,8 +7341,8 @@ msgstr "Laatste template" msgid "Creation date" msgstr "Aanmaakdatum" -#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:118 -#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:118 +#: tmp/cache_twig/94/a8/1814850160e0659ca296eec889d8.php:122 +#: tmp/cache_twig/a4/e6/37b7b0242481fdeee31af26924ea.php:122 msgid "More" msgstr "Meer" @@ -7300,6 +7371,7 @@ msgid "No" msgstr "Nee" #: tmp/cache_twig/97/85/c00855af5ba3b6d08f4b430272b0.php:113 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:55 msgid "Yes" msgstr "Ja" @@ -7367,7 +7439,7 @@ msgstr "U hebt tot geen enkele database toegang" #: tmp/cache_twig/9f/67/4359144b39664d30c38e26517164.php:38 #: tmp/cache_twig/c7/a8/881040e8d2b25f1bd6bed6314f01.php:36 -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:39 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:58 msgid "Renew password" msgstr "Vernieuw password" @@ -7438,92 +7510,92 @@ msgstr "Naam of email" msgid "You are not the feed owner" msgstr "U bent niet de feed eigenaar" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:150 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:146 msgid "client:: recherche" msgstr "Zoeken" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:169 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:165 msgid "client:: recherche avancee" msgstr "Geavanceerd zoeken" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:188 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:184 msgid "client:: topics" msgstr "Topics" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:223 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:246 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:219 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:221 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:242 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:244 #: lib/Alchemy/Phrasea/Controller/Thesaurus/Thesaurus.php:534 msgid "phraseanet::technique:: et" msgstr "en" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:229 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:252 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:225 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:227 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:248 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:250 msgid "phraseanet::technique:: or" msgstr "of" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:235 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:237 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:258 -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:260 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:231 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:233 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:254 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:256 msgid "phraseanet::technique:: except" msgstr "behalve" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:273 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:269 msgid "client::recherche: rechercher dans les bases :" msgstr "Zoeken in de databases :" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:283 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:279 msgid "client::recherche: rechercher dans toutes les bases" msgstr "Zoeken in alle databases" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:347 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:343 msgid "phraseanet:: presentation des resultats" msgstr "Voorstelling van de resultaten" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:438 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:434 msgid "phraseanet:: collections" msgstr "Collecties" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:440 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:436 msgid "" "client::recherche: cliquez ici pour desactiver tous les filtres de toutes " "base" msgstr "Klik hier om alle filters op alle databases te deactiveren" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:467 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:463 msgid "phraseanet:: historique" msgstr "Historie" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:525 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:521 msgid "" "client::recherche: cliquez ici pour desactiver tous les filtres de cette base" msgstr "Klik hier om alle filters op deze database te deactiveren" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:797 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:793 msgid "client::recherche: filter sur" msgstr "Filter op" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:810 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:806 msgid "client::recherche: filtrer par dates" msgstr "Filter per datum" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:823 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:819 msgid "client::recherche: filtrer par status" msgstr "Filter per status" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:836 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:832 msgid "client::recherche: filtrer par champs" msgstr "Filter per veld" -#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:845 +#: tmp/cache_twig/a8/10/e776db7a92763dc7d301748547e2.php:841 msgid "client::recherche: filtrer par champs : tous les champs" msgstr "Filter per veld : alle velden" -#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:128 +#: tmp/cache_twig/a8/24/ab8649165be87bb56f906b5336a5.php:127 msgid "validation:: editer ma note" msgstr "bewerk mijn mededeling" @@ -7535,97 +7607,91 @@ msgstr "Laatste publicaties" msgid "publications:: derniere mise a jour" msgstr "Laatste update" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:41 -#, php-format -msgid "%user_count% user has been crreated" -msgid_plural "%user_count% users have been created" -msgstr[0] "" -msgstr[1] "" +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:44 +msgid "The user has been created." +msgstr "De gebruiker werd aangemaakt." -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:59 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:51 +#, php-format +msgid "%user_count% users have been created." +msgstr "%user_count% users have been created." + +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:72 msgid "admin::user: nouvel utilisateur" msgstr "nieuwe gebruiker" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:63 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:76 msgid "admin::user: nouveau template" msgstr "nieuwe template" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:69 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:82 msgid "admin::user: import d'utilisateurs" msgstr "Gebruikers importeren" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:73 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:86 msgid "admin::user: export d'utilisateurs" msgstr "Gebruikers exporteren" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:100 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:113 msgid "Filter" msgstr "Filter" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:154 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:167 msgid "Last applied template" msgstr "Laatst gebruikte template" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:159 -msgid "Any template" -msgstr "Eender welke template" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:224 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:237 msgid "boutton::appliquer" msgstr "Toepassen" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:253 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:266 msgid "admin::compte-utilisateur id utilisateur" msgstr "Gebruikersid" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:283 -msgid "admin::compte-utilisateur nom/prenom" -msgstr "Naam/Voornaam" - -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:331 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:344 #: lib/Alchemy/Phrasea/Controller/Admin/Users.php:295 msgid "admin::compte-utilisateur pays" msgstr "Land" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:347 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:360 msgid "admin::compte-utilisateur dernier modele applique" msgstr "Laatst toegepast model" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:363 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:376 msgid "admin::compte-utilisateur date de creation" msgstr "Aanmaakdatum" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:408 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:421 msgid "This is a template" msgstr "Dit is een template" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:417 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:430 msgid "This user has no rights" msgstr "Deze gebruiker heeft geen rechten" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:626 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:637 -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:648 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:639 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:650 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:661 msgid "%n_par_page% par page" msgstr "%n_par_page% per pagina" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:657 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:670 msgid "Supprimer" msgstr "Verwijderen" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:795 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:808 msgid "boutton::exporter" msgstr "Exporteren" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:819 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:832 msgid "select at least one user" msgstr "selecteer ten minste één gebruiker" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:831 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:844 msgid "Are you sure you want delete users rights ?" msgstr "Bent u zeker om de gebruikersrechten te verwijderen?" -#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:855 +#: tmp/cache_twig/ab/35/251193e0619e9e973b99cc7a568b.php:868 msgid "users rights have been reseted" msgstr "gebruikersrechten werden teruggezet" @@ -7769,6 +7835,10 @@ msgstr "" msgid "Use the HTML5 uploader" msgstr "Gebruik de HTML5 uploader" +#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:299 +msgid "Selected files" +msgstr "Geselecteerde files" + #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:457 msgid "You have attempted to queue too many files" msgstr "U hebt geprobeerd om te veel bestanden in de wachtrij te plaatsen" @@ -7781,10 +7851,6 @@ msgstr "Onbekende fout" msgid "Cannot upload Zero Byte files" msgstr "Kan geen 0 byte bestanden uploaden" -#: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:480 -msgid "Invalid file type" -msgstr "Ongeldig bestandstype" - #: tmp/cache_twig/b9/33/49d44f5c6933ef36910da9d090f5.php:487 msgid "Unhandled Error" msgstr "Onbehandelde fout" @@ -7979,27 +8045,35 @@ msgstr "Status van de records" msgid "Records type" msgstr "Type van de records" -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:54 -msgid "You have selected one document." -msgid_plural "You have selected %nbReceivedDocuments% documents." -msgstr[0] "U hebt één document geselecteerd." -msgstr[1] "U hebt %nbReceivedDocuments% documenten geselecteerd." +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:57 +msgid "You have selected one record." +msgstr "U hebt één record geselecteerd." -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:62 -msgid "Only one document is editable." -msgid_plural "Only %nbEditableDocuments% documents are editable." -msgstr[0] "Enkel één document is wijzigbaar." -msgstr[1] "Enkel %nbEditableDocuments% documenten zijn wijzigbaar." +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:63 +msgid "You have selected %nbReceivedDocuments% records." +msgstr "U hebt %nbReceivedDocuments% records geselecteerd." -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:115 -msgid "Status edition of stories" -msgstr "Status editie van verhalen" +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:74 +msgid "None of the records can be modified." +msgstr "Geen enkele van de records kunnen worden aangepast." -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:121 -msgid "Status edition of documents" -msgstr "Status editie van documenten" +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:86 +msgid "Only one record can be modified." +msgstr "Enkel één record kan worden aangepast." -#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:325 +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:92 +msgid "Only %nbEditableDocuments% records can be modified." +msgstr "Enkel %nbEditableDocuments% records kunnen worden aangepast." + +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:151 +msgid "Stories status edition" +msgstr "Stories status editie" + +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:157 +msgid "Records status edition" +msgstr "Records status editie" + +#: tmp/cache_twig/c5/19/3069cbda7450140db2d1d9422b11.php:358 #: tmp/cache_twig/c7/84/6dcf2718be10567a18997fe25f67.php:463 msgid "Loading" msgstr "Bezig met laden" @@ -8008,29 +8082,42 @@ msgstr "Bezig met laden" msgid "Access history" msgstr "Geschiedenis van de toegang" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:51 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:47 +msgid "" +"If you notice any unfamiliar devices or locations, click 'End Activity' to " +"end the session." +msgstr "" +"Als u om het even welke vreemde toestellen of locaties bemerkt, klik dan op " +"'Einde Activiteit' om de sessie te stoppen." + +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 msgid "Date de connexion" msgstr "Datum van de verbinding" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:57 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 msgid "Dernier access" msgstr "Laatste verbinding" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:63 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 msgid "IP" msgstr "IP" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:69 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 msgid "Browser" msgstr "Browser" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:75 -msgid "ecran" -msgstr "scherm" +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:101 +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:103 +msgid "End Activity" +msgstr "Einde activiteit" -#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:81 -msgid "Session persistante" -msgstr "Blijvende sessie" +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:156 +msgid "End session activity" +msgstr "Einde sessie activiteit" + +#: tmp/cache_twig/c5/a8/6ec7dba884066100469c9e910311.php:162 +msgid "Do you really want to end the activity of this session?" +msgstr "Wilt u werkelijk de activiteit van deze sessie stoppen?" #: tmp/cache_twig/c5/f0/e10507b1b1da15c5f8dd70dd94b0.php:22 msgid "thesaurus:: Nouveau terme" @@ -8052,15 +8139,27 @@ msgstr "Inhoud" msgid "phraseanet:: language" msgstr "Taal" -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:22 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:29 +msgid "The following errors have been detected" +msgstr "De volgende fouten werden opgemerkt" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:50 +msgid "Would you like to continue ?" +msgstr "Wilt u verdergaan?" + +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:87 msgid "Apply a model" msgstr "Gebruik een model" -#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:71 +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:146 msgid "You need define a model before importing a list of users" msgstr "" "U moet eerst een model kiezen alvorens een lijst van gebruikers te importeren" +#: tmp/cache_twig/c6/3b/afe1f5197924bfabc3d6b0dd8a3d.php:155 +msgid "There is no user to add." +msgstr "Er is geen gebruiker om toe te voegen." + #: tmp/cache_twig/c6/b9/1b91719fd89374b630478b0471b9.php:25 #: tmp/cache_twig/d1/7c/c1133a34a49e0ed89541149a4844.php:25 #: tmp/cache_twig/e8/27/bb969e0a6f15900c114595073f43.php:25 @@ -8216,9 +8315,18 @@ msgstr "" msgid "do you want to validate" msgstr "Wilt u goedkeuren" -#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:111 -msgid "Total" -msgstr "Totaal" +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:33 +msgid "admin::base: objet" +msgstr "Object" + +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:37 +msgid "admin::base: nombre" +msgstr "Aantal" + +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:41 +#: tmp/cache_twig/d4/46/323cc237efb87a3f924c57ff84a8.php:45 +msgid "admin::base: poids" +msgstr "Gewicht" #: tmp/cache_twig/d5/4a/7d295223f798bb96c47772c97e52.php:25 msgid "Updated structure" @@ -8280,7 +8388,7 @@ msgstr "alles uitschakelen" msgid "tout decocher" msgstr "alles inschakelen" -#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:41 +#: tmp/cache_twig/dc/a5/78b2174457540345b2ac826652fe.php:62 msgid "language" msgstr "taal" @@ -8410,21 +8518,21 @@ msgid "Row password is missing, script has stopped" msgstr "Rij met het paswoord ontbreekt, het script is gestopt" #: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:58 +msgid "Row mail is missing, script has stopped" +msgstr "Lijn mail ontbreekt, het script is gestopt" + +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:64 msgid "The file does not contains any user to add" msgstr "De file bevat geen enkele gebruiker om toe te voegen" -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:102 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:108 msgid "You can download an example by clicking here" msgstr "U kan een voorbeeld downloaden door hier te klikken" -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:110 +#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:116 msgid "You can download the documentation here" msgstr "U kan de documentatie hier downloaden" -#: tmp/cache_twig/e7/df/2d980edd0f7e0db33b999ad500e1.php:117 -msgid "Select a file" -msgstr "Selecteer een bestand" - #: tmp/cache_twig/e8/54/9fc68d04fcb636875f80ea4bca8f.php:39 msgid "Ajouter une publication" msgstr "Voeg een publicatie toe" @@ -8539,11 +8647,23 @@ msgstr "process_id van de taak" msgid "admin::tasks: etat de progression de la tache" msgstr "voortgang van de taak" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:206 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:135 +msgid "Start" +msgstr "Start" + +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:141 +msgid "Stop" +msgstr "Stop" + +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:153 +msgid "Logs" +msgstr "Logs" + +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:216 msgid "admin::tasks: Nouvelle tache" msgstr "Nieuwe taak" -#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:454 +#: tmp/cache_twig/eb/d5/30360bacfc70e40ba0934fff6501.php:468 msgid "admin::tasks: supprimer la tache ?" msgstr "De taak verwijderen ?" @@ -8575,13 +8695,13 @@ msgstr "Nee" #: tmp/cache_twig/ed/8d/23e15e5a3513dcf68efe56ea753a.php:184 #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:489 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:874 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:872 #: lib/Alchemy/Phrasea/Controller/Prod/Basket.php:282 msgid "An error occurred" msgstr "Er is een fout opgetreden" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:76 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:79 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:269 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:34 msgid "" "phraseanet::erreur: Une erreur est survenue, si ce probleme persiste, " @@ -8590,71 +8710,71 @@ msgstr "" "Een fout heeft zicht voorgedaan, als dit probleem aanhoudt, contacteer dan " "de technishe support" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:80 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:83 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:270 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:36 msgid "" "phraseanet::erreur: La connection au serveur Phraseanet semble etre " "indisponible" msgstr "De connectie met de Phraseanet server blijkt niet mogelijk te zijn" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:84 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:272 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:87 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:271 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:37 msgid "" "phraseanet::erreur: Votre session est fermee, veuillez vous re-authentifier" msgstr "Uw sessile werd afgesloten, gelieve opnieuw in te loggen" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:88 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:91 msgid "Cocher toute la colonne" msgstr "Verberg de hele kolom" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:92 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:95 msgid "Decocher toute la colonne" msgstr "Toon de hele kolom" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:96 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:99 msgid "Creer un model" msgstr "Maak een model" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:100 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:103 msgid "Creer un utilisateur" msgstr "Maak een gebruiker" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:108 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:111 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:93 msgid "This file is too big" msgstr "Deze file is te groot" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:112 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:115 msgid "This field is required" msgstr "Dit veld is verplicht" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:302 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:299 msgid "Successful install" msgstr "Installatie geslaagd" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:320 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:317 msgid "Ajouter un nouvel utilisateur" msgstr "Voeg een nieuwe gebruiker toe" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:325 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:322 msgid "Adresse email du nouvel utilisateur" msgstr "Email adres van de nieuwe gebruiker" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:332 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:329 msgid "Send an email to the user to setup his password" msgstr "Stuur een email naar de gebruiker om zijn wachtwoord in te stellen" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:339 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:336 msgid "Require email validation to activate the account" msgstr "Email validatie verwacht om de gebruiker te activeren" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:347 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:344 msgid "Creer un modele" msgstr "Maak een model" -#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:352 +#: tmp/cache_twig/ed/ca/949b07cdcbc076496c22ecc77843.php:349 msgid "Nom du nouveau modele" msgstr "Naam van het nieuwe model" @@ -8676,7 +8796,7 @@ msgid "Mandatory fields" msgstr "Verplichte velden" #: tmp/cache_twig/f3/8b/672747b38db21d07d44145513cc7.php:149 -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:149 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:153 msgid "I have read the terms of use" msgstr "Ik heb de gebruiksvoorwaarden gelezen" @@ -8705,10 +8825,6 @@ msgstr "" msgid "Authorize" msgstr "Toestaan" -#: tmp/cache_twig/f4/80/e2901a0c5a2d60f8ef7a84d6d038.php:95 -msgid "Deny" -msgstr "Weiger" - #: tmp/cache_twig/f5/6d/8805aeae939f704732ddf23046ab.php:56 msgid "validation:: note" msgstr "Nota" @@ -8990,7 +9106,15 @@ msgstr "Aanbevelingen" msgid "Phrasea search-engine configuration" msgstr "Phrasea zoekmotor configuratie" -#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:65 +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:33 +msgid "Stemming" +msgstr "Stoppen" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:37 +msgid "Enable stemming" +msgstr "Sta stoppen toe" + +#: tmp/cache_twig/fa/bd/e1efca70b5fe3cbd7a0da43824ed.php:47 msgid "Default sort" msgstr "Standaard sortering" @@ -9022,45 +9146,46 @@ msgstr "Verwijder de links van de tak velden" msgid "thesaurus:: reindexer la base apres l'import" msgstr "Herindexeer de database na het importeren" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:78 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:100 msgid "Informations personnelles" msgstr "Persoonlijke informaties" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:175 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:198 msgid "login:: Changer mon adresse email" msgstr "Verander mijn email adres" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:183 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:206 #: lib/Alchemy/Phrasea/Form/Login/PhraseaAuthenticationForm.php:32 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:53 msgid "Password" msgstr "Wachtwoord" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:190 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:213 msgid "admin::compte-utilisateur changer mon mot de passe" msgstr "Verander mijn paswoord" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:301 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:324 msgid "Notification par email" msgstr "Melding via email" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:363 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:386 msgid "FTP" msgstr "FTP" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:370 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:393 msgid "admin::compte-utilisateur:ftp: Activer le compte FTP" msgstr "De FTP-account activeren" -#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:445 +#: tmp/cache_twig/fd/d0/f21a99a74cac4146d2ba1e6b9aa4.php:468 msgid "admin::compte-utilisateur:ftp: prefixe des noms de dossier ftp" msgstr "Voorvoegsel bij de namen van de ftp map" #: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:57 -msgid "Complete the fields below to register on %home_title%!" -msgstr "Vervolledig de onderstaande velden om op %home_title% te registreren!" +msgid "Complete the fields below to register on %instance_title%!" +msgstr "" +"Vervolledig de onderstaande velden om op %instance_title% te registreren!" -#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:198 +#: tmp/cache_twig/fe/b1/a6b88a5fb8c0e9e8dc010e184ff3.php:202 msgid "Request access" msgstr "Aanvraag toegang" @@ -9142,20 +9267,20 @@ msgstr "" msgid "Envoie avec succes" msgstr "Met succes verstuurd" -#: lib/Alchemy/Phrasea/Controller/Setup.php:88 +#: lib/Alchemy/Phrasea/Controller/Setup.php:99 msgid "It is not recommended to install Phraseanet without HTTPS support" msgstr "" "Het is niet aangeraden om Phraseanet te installeren zonder HTTPS support" -#: lib/Alchemy/Phrasea/Controller/Setup.php:123 +#: lib/Alchemy/Phrasea/Controller/Setup.php:134 msgid "Appbox is unreachable" msgstr "Appbox is niet bereikbaar" -#: lib/Alchemy/Phrasea/Controller/Setup.php:133 +#: lib/Alchemy/Phrasea/Controller/Setup.php:144 msgid "Databox is unreachable" msgstr "Databox is niet bereikbaar" -#: lib/Alchemy/Phrasea/Controller/Setup.php:176 +#: lib/Alchemy/Phrasea/Controller/Setup.php:186 #, php-format msgid "an error occured : %s" msgstr "een fout heeft zich voorgedaan : %s" @@ -9176,7 +9301,7 @@ msgid "The file is too big" msgstr "Het bestand is te groot" #: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:413 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:878 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:880 msgid "Empty the collection before removing" msgstr "Maak eerst de collectie leeg alvorens te verwijderen" @@ -9184,47 +9309,42 @@ msgstr "Maak eerst de collectie leeg alvorens te verwijderen" msgid "Collection empty successful" msgstr "Collectie met succes geledigd" -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:500 -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:887 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:502 msgid "A task has been creted, please run it to complete empty collection" msgstr "" "Een taak werd gemaakt, gelieve deze op een volledig lege collectie uit te " "voeren" -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:546 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:581 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:616 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:652 -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:883 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:548 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:583 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:618 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:654 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:885 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:477 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:747 msgid "Successful removal" msgstr "Met succes verwijderd" -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:942 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:944 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:852 msgid "The publication has been stopped" msgstr "Het programma is gestopt" -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:963 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:965 msgid "Missing name parameter" msgstr "Ontbrekende parameter voor naam" -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:994 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:996 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:506 msgid "Missing labels parameter" msgstr "Ontbrekende parameter voor labels" -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:997 +#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:999 #: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:509 msgid "Invalid labels parameter" msgstr "Ongeldige parameter voor labels" -#: lib/Alchemy/Phrasea/Controller/Admin/Collection.php:1040 -msgid "Missing pub_wm format" -msgstr "Ontbrekend pub_wm formaat" - -#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:116 +#: lib/Alchemy/Phrasea/Controller/Admin/ConnectedUsers.php:120 msgid "admin::monitor: module inconnu" msgstr "Ongekende module" @@ -9244,13 +9364,19 @@ msgstr "Maak eerst de database leeg alvorens te verwijderen" msgid "Missing view name parameter" msgstr "Ontbrekende parameter voor weergave" -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:883 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:888 msgid "Base empty successful" msgstr "Database met succes geledigd" -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:921 +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:892 +msgid "A task has been created, please run it to complete empty collection" +msgstr "" +"Een taak werd aangemaakt, gelieve deze uit te voeren om de lege collectie te " +"vervolledigen." + +#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:923 #: lib/Alchemy/Phrasea/Controller/Admin/Root.php:167 -#: lib/Alchemy/Phrasea/Controller/Admin/Root.php:299 +#: lib/Alchemy/Phrasea/Controller/Admin/Root.php:319 #: lib/Alchemy/Phrasea/Controller/Root/Account.php:213 #: lib/Alchemy/Phrasea/Controller/Root/Developers.php:185 #: lib/Alchemy/Phrasea/Controller/Root/Developers.php:211 @@ -9259,10 +9385,6 @@ msgstr "Database met succes geledigd" msgid "Bad request format, only JSON is allowed" msgstr "Slecht verzoek formaat, enkel JSON is toegestaan" -#: lib/Alchemy/Phrasea/Controller/Admin/Databox.php:1103 -msgid "admin::base: enregistrements orphelins" -msgstr "Zwevende records" - #: lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php:134 msgid "Unreachable server" msgstr "Onbereikbare server" @@ -9350,7 +9472,7 @@ msgid "You are not the owner of this feed, you can not edit it" msgstr "U bent niet de eigenaar van deze feed, u kunt hem niet bewerken" #: lib/Alchemy/Phrasea/Controller/Admin/Publications.php:157 -#: lib/Alchemy/Phrasea/Controller/Prod/Upload.php:265 +#: lib/Alchemy/Phrasea/Controller/Prod/Upload.php:290 msgid "Unable to add file to Phraseanet" msgstr "Onmogelijk om een bestand aan Phraseanet toe te voegen" @@ -9394,8 +9516,8 @@ msgstr "Met succes bijgewerkt" msgid "Update failed" msgstr "Update mislukt" -#: lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:104 -#: lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:144 +#: lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:109 +#: lib/Alchemy/Phrasea/Controller/Admin/TaskManager.php:149 msgid "Clear" msgstr "Wis" @@ -9409,28 +9531,38 @@ msgid "" "login::register:email: Vous avez ete refuse sur les collections suivantes : " msgstr "U bent geweigerd voor volgende collecties : " -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:634 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:652 #, php-format msgid "Login line %d is empty" msgstr "Login lijn %d is leeg" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:636 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:654 #, php-format msgid "Login %s is already defined in the file at line %d" msgstr "Login %s is al in de file gedefinieerd op lijn %d" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:639 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:657 #, php-format msgid "Login %s already exists in database" msgstr "Login %s bestaat reeds in de database" -#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:651 +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:668 +#, php-format +msgid "Mail line %d is empty" +msgstr "Mail lijn %d is leeg" + +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:670 +#, php-format +msgid "Email '%s' for login '%s' already exists in database" +msgstr "Email '%s' door login '%s' bestaat reeds in de database" + +#: lib/Alchemy/Phrasea/Controller/Admin/Users.php:680 #, php-format msgid "Password is empty at line %d" msgstr "Wachtwoor is leeg op lijn %d" #: lib/Alchemy/Phrasea/Controller/Api/Oauth2.php:82 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:973 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1011 msgid "login::erreur: Erreur d'authentification" msgstr "Verificatiefout" @@ -9438,16 +9570,16 @@ msgstr "Verificatiefout" msgid "The use of phraseanet Navigator is not allowed" msgstr "Het gebruik van de phraseanet Navigator is niet toegestaan" +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:264 #: lib/Alchemy/Phrasea/Controller/Client/Root.php:265 -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:266 msgid "paniers:: Quel nom souhaitez vous donner a votre panier ?" msgstr "Welke naam wenst u uw mandje te geven ?" -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:267 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:266 msgid "export:: aucun document n'est disponible au telechargement" msgstr "geen enkel document kan gedownload worden" -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:268 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:267 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:74 msgid "" "invite:: Redirection vers la zone d'authentification, cliquez sur OK pour " @@ -9455,7 +9587,7 @@ msgid "" msgstr "" "Doorsturen naar de authenticatiezone, klik op OK om door te gaan of annuleer" -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:273 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:272 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:33 msgid "" "paniers::Vous etes sur le point de supprimer ce panier. Cette action est " @@ -9464,16 +9596,17 @@ msgstr "" "U staat op het punt op uw mandje te verwijderen. Deze actie kan niet " "ongedaan gemaakt worden. Wenst u door te gaan ?" -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:276 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:275 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:51 msgid "boutton::renouveller" msgstr "Vernieuwen" -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:277 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:276 +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:111 msgid "Print" msgstr "Afdrukken" -#: lib/Alchemy/Phrasea/Controller/Client/Root.php:278 +#: lib/Alchemy/Phrasea/Controller/Client/Root.php:277 msgid "Please create a basket before adding an element" msgstr "Gelieve eerst een mandje aan te maken alvorens elementen toe te voegen" @@ -9552,9 +9685,6 @@ msgid "%d elements en attente" msgstr "%d elementen in wacht" #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:120 -msgid "Export download" -msgstr "Exporteer download" - #: lib/Alchemy/Phrasea/Controller/Prod/DoDownload.php:121 #: lib/Alchemy/Phrasea/Controller/Prod/Language.php:105 msgid "Export" @@ -9847,6 +9977,18 @@ msgstr "Forceer het versturen van dit document?" msgid "Share" msgstr "Deel" +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:107 +msgid "Move" +msgstr "Verplaats" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:110 +msgid "Tool box" +msgstr "Gereedschappen" + +#: lib/Alchemy/Phrasea/Controller/Prod/Language.php:112 +msgid "Attention !" +msgstr "Opgelet !" + #: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:212 #: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:261 #: lib/Alchemy/Phrasea/Controller/Prod/Lazaret.php:369 @@ -10031,26 +10173,26 @@ msgstr "U kan deze story niet bewerken" msgid "Story updated" msgstr "Story updated" -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:153 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:159 msgid "Document has been successfully substitued" msgstr "Document werd met succes vervangen" -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:155 -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:158 -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:203 -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:206 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:161 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:164 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:215 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:218 msgid "file is not valid" msgstr "bestand is niet geldig" -#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:201 +#: lib/Alchemy/Phrasea/Controller/Prod/Tools.php:213 msgid "Thumbnail has been successfully substitued" msgstr "Thumbnail werd met succes vervangen" -#: lib/Alchemy/Phrasea/Controller/Prod/Upload.php:244 +#: lib/Alchemy/Phrasea/Controller/Prod/Upload.php:246 msgid "The record was successfully created" msgstr "De record werd met succes gemaakt" -#: lib/Alchemy/Phrasea/Controller/Prod/Upload.php:253 +#: lib/Alchemy/Phrasea/Controller/Prod/Upload.php:278 msgid "The file was moved to the quarantine" msgstr "De file werd naar de quarantaine verplaatst" @@ -10297,7 +10439,7 @@ msgid "report:: module" msgstr "Module" #: lib/Alchemy/Phrasea/Controller/Root/Account.php:100 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:552 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:592 msgid "login::notification: Mise a jour du mot de passe avec succes" msgstr "Update van het paswoord met succes uitgevoerd" @@ -10355,163 +10497,159 @@ msgstr "Veranderingen zijn bewaard" msgid "forms::erreurs lors de l'enregistrement des modifications" msgstr "Fouten bij het opslaan van de wijzigingen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:177 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:205 msgid "Please provide a value." msgstr "Geef een waarde" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:178 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:206 #, php-format msgid "Please select at least %s choice." msgstr "Gelieve tenminste één %s keuze." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:179 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:207 msgid "Please provide a valid email address." msgstr "Gelieve een geldig email adres op te geven" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:180 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:208 msgid "Please provide a valid IP address." msgstr "Gelieve een geldig IP adres op te geven" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:181 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:209 #, php-format msgid "Please provide a longer value. It should have %s character or more." msgstr "Gelieve een langere waarde op te geven. Tenminste %s of meer tekens." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:182 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:210 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRecoverPasswordForm.php:44 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:50 #: lib/Alchemy/Phrasea/Form/Login/PhraseaRenewPasswordForm.php:36 msgid "Please provide the same passwords." msgstr "Gelieve dezelfde wachtwoorden op te geven" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:183 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:211 msgid "Please provide the same emails." msgstr "Gelieve dezelfde emails op te geven." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:184 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:212 msgid "Please accept the terms of use to register." msgstr "Gelieve de gebruiksvoorwaarden te aanvaarden alvorens te registreren." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:185 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:213 msgid "No collection selected" msgstr "Geen collectie geselecteerd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:186 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:214 #, php-format msgid "%d collection selected" msgstr "%d collectie geselecteerd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:187 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:215 #, php-format msgid "%d collections selected" msgstr "%d collecties geselecteerd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:188 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:216 msgid "Select all collections" msgstr "Alle collecties selecteren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:190 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:218 msgid "Weak" msgstr "Matig" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:191 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:219 msgid "Ordinary" msgstr "Gewoon" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:192 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 msgid "Good" msgstr "Goed" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:193 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:221 msgid "Great" msgstr "Uitstekend" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:220 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:228 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:256 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:264 msgid "You tried to register with an unknown provider" msgstr "U probeerde met een ongekende provider te registreren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:255 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:291 msgid "Invalid captcha answer." msgstr "Ongeldig captcha antwoord" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:356 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:427 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:396 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:467 msgid "login::notification: demande de confirmation par mail envoyee" msgstr "Aanvraag tot goedkeuring per mail verstuurd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:359 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:430 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:399 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:470 msgid "Unable to send your account unlock email." msgstr "Het was niet mogelijk om uw ontgrendelings-email te versturen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:420 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:460 msgid "Invalid link." msgstr "Ongeldige link" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:469 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:477 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:485 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:509 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:517 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:525 msgid "Invalid unlock link." msgstr "Ongeldige ontgrendelings-link" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:491 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:531 msgid "Account is already unlocked, you can login." msgstr "Deze gebruiker is reeds ontgrendeld, u kunt zich aanmelden." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:502 -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:513 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:542 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:553 msgid "Account has been unlocked, you can now login." msgstr "Gebruiker is ontgrendeld, u kunt zich aanmelden." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:518 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:558 msgid "Account has been unlocked, you still have to wait for admin approval." msgstr "" "Gebruiker is ontgrendeld, u dient nog te wachten op goedkeuring van een " "beheerder." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:588 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:628 msgid "phraseanet::erreur: Le compte n'a pas ete trouve" msgstr "De account werd niet gevonden" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:594 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:634 msgid "Invalid email address" msgstr "Ongeldig emailadres" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:609 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:650 msgid "phraseanet:: Un email vient de vous etre envoye" msgstr "Een email werd u toegestuurd" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:658 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:698 msgid "Vous etes maintenant deconnecte. A bientot." msgstr "U bent nu uitgelogd. Tot later." -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:685 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:725 msgid "login::erreur: No available connection - Please contact sys-admin" msgstr "Geen beschikbare verbinding - Neem contact op met sys-admin" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:696 -msgid "Accueil" -msgstr "Home" - -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:731 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:770 msgid "Phraseanet guest-access is disabled" msgstr "Gast toegang voor Phraseanet is niet actief" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:852 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:890 #, php-format msgid "Unable to authenticate with %s" msgstr "Het is niet mogelijk om zich aan te melden met %s" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:876 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:914 msgid "Unable to retrieve provider identity" msgstr "Het is niet mogelijk om de identiteit van de provider te ontvangen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:915 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:953 msgid "Your identity is not recognized." msgstr "Uw identiteit werd niet herkend" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:947 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:985 msgid "" "An unexpected error occured during authentication process, please contact an " "admin" @@ -10519,15 +10657,15 @@ msgstr "" "Er heeft zich een onverwachte fout voor gedaan bij het aanmelden, gelieve " "een beheerder te contacteren" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:962 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1000 msgid "Please fill the captcha" msgstr "Gelieve de captcha in te vullen" -#: lib/Alchemy/Phrasea/Controller/Root/Login.php:966 +#: lib/Alchemy/Phrasea/Controller/Root/Login.php:1004 msgid "login::erreur: Vous n'avez pas confirme votre email" msgstr "U hebt uw email adres niet bevestigd" -#: lib/Alchemy/Phrasea/Controller/Root/Session.php:116 +#: lib/Alchemy/Phrasea/Controller/Root/Session.php:124 msgid "The application is going down for maintenance, please logout." msgstr "Het programma sluit af voor onderhoud, gelieve uit te loggen." @@ -10582,7 +10720,7 @@ msgid "Error while saving preference" msgstr "Fout bij het bewaren van de voorkeuren" #: lib/Alchemy/Phrasea/Controller/User/Preferences.php:89 -#: lib/Alchemy/Phrasea/Controller/User/Preferences.php:115 +#: lib/Alchemy/Phrasea/Controller/User/Preferences.php:116 msgid "Preference saved !" msgstr "Voorkeuren bewaard !" @@ -10604,7 +10742,7 @@ msgid "Sorry, site is currently undergoing maintenance, come back soon." msgstr "" "Sorry, de site wordt momenteel aangepast, gelieve later terug te keren." -#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:111 +#: lib/Alchemy/Phrasea/Core/Provider/RegistrationServiceProvider.php:121 msgid "admin::compte-utilisateur tel" msgstr "admin::gebruiker tel" @@ -10657,7 +10795,7 @@ msgstr "Wachtwoord (bevestiging)" msgid "Please accept the Terms and conditions in order to register." msgstr "Gelieve de gebruiksvoorwaarden te aanvaarden om te registreren" -#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:115 +#: lib/Alchemy/Phrasea/Form/Login/PhraseaRegisterForm.php:116 #, php-format msgid "You must select at least %s collection." msgstr "U moet tenminste %s collectie selecteren." @@ -10967,19 +11105,16 @@ msgstr "U moet nu uw wachtwoord invullen" msgid "Setup my password" msgstr "Bewerk mijn wachtwoord" -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:21 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:36 msgid "login:: Forgot your password" msgstr "Paswoord vergeten?" -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:29 -msgid "" -"login:: Quelqu'un a demande a reinitialiser le mode passe correspondant au " -"login suivant : " -msgstr "" -"Lemand heeft gevraagd om reinitialisatie van de passieve modus die " -"overeenkomt met volgende login : " +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:48 +#, php-format +msgid "Password renewal for login \"%s\" has been requested" +msgstr "Verniewing password voor login \"%s\" werd aangevraagd" -#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:31 +#: lib/Alchemy/Phrasea/Notification/Mail/MailRequestPasswordUpdate.php:50 msgid "" "login:: Visitez le lien suivant et suivez les instructions pour continuer, " "sinon ignorez cet email et il ne se passera rien" @@ -11051,30 +11186,30 @@ msgstr "Test versturen van email" msgid "Ce mail est un test d'envoi de mail depuis %s" msgstr "Deze email is een test voor het versturen van mail vanaf %s" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:109 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:111 msgid "No sort" msgstr "Geen sortering" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:124 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:130 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:136 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:138 msgid "descendant" msgstr "oplopend" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:125 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:131 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:137 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:139 msgid "ascendant" msgstr "aflopend" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:403 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:415 msgid "Unable to execute query" msgstr "Onmogelijk om de zoekactie uit te voeren" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:480 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:495 #, php-format msgid "reponses::propositions pour la base %s" msgstr "Voorstellen voor database %s" -#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:486 +#: lib/Alchemy/Phrasea/SearchEngine/Phrasea/PhraseaEngine.php:501 #, php-format msgid "reponses::propositions pour le terme %s" msgstr "Voorstellen voor de term %s" @@ -11126,21 +11261,21 @@ msgstr "Verkeerde formulering, %s mag niet na een operator komen" msgid "qparser:: Formulation incorrecte, necessite plus de caractere : " msgstr "Verkeerde formulering, meer tekens nodig : " -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:118 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:126 msgid "pertinence" msgstr "relevantie" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:119 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:127 msgid "date dajout" msgstr "Datum toegevoegd" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:120 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:128 msgid "aleatoire" msgstr "toeval" -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:149 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:153 -#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:469 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:157 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:161 +#: lib/Alchemy/Phrasea/SearchEngine/SphinxSearch/SphinxSearchEngine.php:477 msgid "Sphinx server is offline" msgstr "Sphinx server is offline" diff --git a/www/skins/prod/Basket.css b/www/skins/prod/Basket.css index 6135c65b5b..9daf4598e2 100644 --- a/www/skins/prod/Basket.css +++ b/www/skins/prod/Basket.css @@ -1,3 +1,9 @@ +#BasketBrowser h1 { + font-size: 14px; + line-height: 20px; + margin: 0; + padding: 0; +} #BasketBrowser .Browser{ background-color: #111111; } @@ -13,6 +19,9 @@ position:relative; height:100px; } +#BasketBrowser .result .PNB10 { + overflow: hidden; +} #BasketBrowser .results .datas{ top:50px; @@ -49,6 +58,7 @@ box-shadow: none; line-height: 18px; text-align: center; + vertical-align:top; } #BasketBrowser .result td.thumbnail .counter{ @@ -120,4 +130,4 @@ } #BasketBrowser form ul li label{ margin: 0 0 0 40px; -} \ No newline at end of file +}