PHRAS-3742 Admin flush session (#4131)

PHRAS-3742 : 
- flush session
- command
- redis remove by pattern
- cmd
- add log
- clean table session
This commit is contained in:
Aina Sitraka
2022-10-05 17:56:13 +03:00
committed by GitHub
parent 2c5dd80e54
commit f9de6877d2
16 changed files with 690 additions and 353 deletions

View File

@@ -107,6 +107,7 @@ $cli->command(new \module_console_systemMailCheck('system:mail-check'));
$cli->command(new \module_console_systemBackupDB('system:backup-db')); $cli->command(new \module_console_systemBackupDB('system:backup-db'));
$cli->command(new \module_console_systemClearCache('system:clear-cache')); $cli->command(new \module_console_systemClearCache('system:clear-cache'));
$cli->command(new \module_console_systemExport('system:export')); $cli->command(new \module_console_systemExport('system:export'));
$cli->command(new \module_console_systemClearSessionCache('system:clear-session-cache'));
$cli->command(new TaskRun()); $cli->command(new TaskRun());
$cli->command(new TaskList()); $cli->command(new TaskList());

View File

@@ -45,12 +45,18 @@ class Manager
/** /**
* Flushes all registered cache * Flushes all registered cache
* *
* @param null| string $pattern
*
* @return Manager * @return Manager
*/ */
public function flushAll() public function flushAll($pattern = null)
{ {
foreach ($this->drivers as $driver) { foreach ($this->drivers as $driver) {
$driver->flushAll(); if ($driver->getName() === 'redis' && !empty($pattern)) {
$driver->removeByPattern($pattern);
} else {
$driver->flushAll();
}
} }
$this->registry = []; $this->registry = [];
@@ -89,7 +95,14 @@ class Manager
if (!$this->isAlreadyRegistered($name, $label)) { if (!$this->isAlreadyRegistered($name, $label)) {
$this->register($name, $label); $this->register($name, $label);
$cache->flushAll();
// by default we use redis cache
// so only initiate the corresponding namespace after register
if ($cache->getName() === 'redis') {
$cache->removeByPattern($cache->getNamespace() . '*');
} else {
$cache->flushAll();
}
} }
return $cache; return $cache;

View File

@@ -140,6 +140,19 @@ class RedisCache extends CacheProvider implements Cache
return $this; return $this;
} }
public function removeByPattern($pattern)
{
$keysToremove = [];
$iterator = null;
while(false !== ($keys = $this->_redis->scan($iterator, $pattern))) {
$keysToremove = array_merge($keysToremove, $keys);
}
$this->_redis->del($keysToremove);
return true;
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */

View File

@@ -12,12 +12,14 @@ namespace Alchemy\Phrasea\Controller\Admin;
use Alchemy\Phrasea\Application\Helper\NotifierAware; use Alchemy\Phrasea\Application\Helper\NotifierAware;
use Alchemy\Phrasea\Authentication\Authenticator; use Alchemy\Phrasea\Authentication\Authenticator;
use Alchemy\Phrasea\Cache\Cache; use Alchemy\Phrasea\Cache\Factory;
use Alchemy\Phrasea\Cache\Manager as CacheManager;
use Alchemy\Phrasea\Controller\Controller; use Alchemy\Phrasea\Controller\Controller;
use Alchemy\Phrasea\Exception\InvalidArgumentException; use Alchemy\Phrasea\Exception\InvalidArgumentException;
use Alchemy\Phrasea\Exception\RuntimeException; use Alchemy\Phrasea\Exception\RuntimeException;
use Alchemy\Phrasea\Model\Manipulator\ACLManipulator; use Alchemy\Phrasea\Model\Manipulator\ACLManipulator;
use Alchemy\Phrasea\Model\Manipulator\UserManipulator; use Alchemy\Phrasea\Model\Manipulator\UserManipulator;
use Alchemy\Phrasea\Model\Repositories\SessionRepository;
use Alchemy\Phrasea\Model\Repositories\UserRepository; use Alchemy\Phrasea\Model\Repositories\UserRepository;
use Alchemy\Phrasea\Notification\Mail\MailTest; use Alchemy\Phrasea\Notification\Mail\MailTest;
use Alchemy\Phrasea\Notification\Receiver; use Alchemy\Phrasea\Notification\Receiver;
@@ -46,6 +48,7 @@ class DashboardController extends Controller
} }
return $this->render('admin/dashboard.html.twig', [ return $this->render('admin/dashboard.html.twig', [
'session_flushed' => $request->query->get('flush_session') === 'ok',
'cache_flushed' => $request->query->get('flush_cache') === 'ok', 'cache_flushed' => $request->query->get('flush_cache') === 'ok',
'admins' => $this->getUserRepository()->findAdmins(), 'admins' => $this->getUserRepository()->findAdmins(),
'email_status' => $emailStatus, 'email_status' => $emailStatus,
@@ -59,13 +62,39 @@ class DashboardController extends Controller
*/ */
public function flush() public function flush()
{ {
/** @var Cache $cache */ /** @var CacheManager $cache */
$cache = $this->app['phraseanet.cache-service']; $cache = $this->app['phraseanet.cache-service'];
$flushOK = $cache->flushAll() ? 'ok' : 'ko'; $namespace = $this->app['conf']->get(['main', 'cache', 'options', 'namespace'], '');
$pattern = $namespace . '*';
$flushOK = $cache->flushAll($pattern) ? 'ok' : 'ko';
return $this->app->redirectPath('admin_dashboard', ['flush_cache' => $flushOK]); return $this->app->redirectPath('admin_dashboard', ['flush_cache' => $flushOK]);
} }
public function flushRedisSession()
{
/** @var Factory $cacheFactory */
$cacheFactory = $this->app['phraseanet.cache-factory'];
$flushOK = 'ko';
try {
$cache = $cacheFactory->create('redis', ['host' => 'redis-session', 'port' => '6379']);
// remove session in redis
$flushOK = $cache->removeByPattern('PHPREDIS_SESSION*') ? 'ok' : 'ko';
/** @var SessionRepository $repoSessions */
$repoSessions = $this->app['repo.sessions'];
// remove session on table
$repoSessions->deleteAllExceptSessionId($this->app['session']->get('session_id'));
} catch (\Exception $e) {
$this->app['logger']->error('error : ' . $e->getMessage());
}
return $this->app->redirectPath('admin_dashboard', ['flush_session' => $flushOK]);
}
/** /**
* Test a mail address * Test a mail address
* *

View File

@@ -52,6 +52,9 @@ class Dashboard implements ControllerProviderInterface, ServiceProviderInterface
$controllers->post('/flush-cache/', 'controller.admin.dashboard:flush') $controllers->post('/flush-cache/', 'controller.admin.dashboard:flush')
->bind('admin_dashboard_flush_cache'); ->bind('admin_dashboard_flush_cache');
$controllers->post('/flush-redis-session/', 'controller.admin.dashboard:flushRedisSession')
->bind('admin_dashboard_flush_redis_session');
$controllers->post('/send-mail-test/', 'controller.admin.dashboard:sendMail') $controllers->post('/send-mail-test/', 'controller.admin.dashboard:sendMail')
->bind('admin_dashboard_test_mail'); ->bind('admin_dashboard_test_mail');

View File

@@ -11,6 +11,7 @@
namespace Alchemy\Phrasea\Model\Repositories; namespace Alchemy\Phrasea\Model\Repositories;
use Doctrine\Common\Collections\Criteria;
use Doctrine\ORM\EntityRepository; use Doctrine\ORM\EntityRepository;
/** /**
@@ -21,4 +22,16 @@ use Doctrine\ORM\EntityRepository;
*/ */
class SessionRepository extends EntityRepository class SessionRepository extends EntityRepository
{ {
public function deleteAllExceptSessionId($sessionId)
{
$criteria = new Criteria();
$criteria->where($criteria->expr()->neq('id', $sessionId));
$sessions = $this->matching($criteria);
foreach ($sessions as $session) {
$this->_em->remove($session);
}
$this->_em->flush();
}
} }

View File

@@ -0,0 +1,35 @@
<?php
use Alchemy\Phrasea\Cache\Factory;
use Alchemy\Phrasea\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
class module_console_systemClearSessionCache extends Command
{
public function __construct($name = null)
{
parent::__construct($name);
$this->setDescription('Empties session cache in redis');
return $this;
}
protected function doExecute(InputInterface $input, OutputInterface $output)
{
/** @var Factory $cacheFactory */
$cacheFactory = $this->container['phraseanet.cache-factory'];
$cache = $cacheFactory->create('redis', ['host' => 'redis-session', 'port' => '6379']);
$flushOK = $cache->removeByPattern('PHPREDIS_SESSION*');
if ($flushOK) {
$output->writeln('session cache in redis successfully flushed!');
} else {
$output->writeln('flush failed!');
}
return 0;
}
}

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:37:42Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:50:19Z" source-language="en" target-language="de" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>
@@ -411,6 +411,31 @@
<target state="translated">1000 Zeichen max.</target> <target state="translated">1000 Zeichen max.</target>
<jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7136e3b25b3e26722b5b03aa32a828c883121e87" resname="12h">
<source>12h</source>
<target state="new">12h</target>
<jms:reference-file line="60">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="11a2757082428311f587b7664fa9840376137f80" resname="1d">
<source>1d</source>
<target state="new">1d</target>
<jms:reference-file line="61">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="e9c9f7bc39bb993fb7ed87ec63024c583691a6bd" resname="1h">
<source>1h</source>
<target state="new">1h</target>
<jms:reference-file line="58">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="dc4ea83928e4079a6ca1eb64e1e4cc7952c8d2ac" resname="1m">
<source>1m</source>
<target state="new">1m</target>
<jms:reference-file line="65">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="323945f29da5d029038c3e22734b3c59d0f64a26" resname="1w">
<source>1w</source>
<target state="new">1w</target>
<jms:reference-file line="63">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes"> <trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes">
<source>2000 caracteres maximum</source> <source>2000 caracteres maximum</source>
<target state="translated">2000 Zeichen max.</target> <target state="translated">2000 Zeichen max.</target>
@@ -431,6 +456,21 @@
<target state="translated">255 Zeichen max.</target> <target state="translated">255 Zeichen max.</target>
<jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b8568f4703616db45865d3c1a87fb64112e677e0" resname="2w">
<source>2w</source>
<target state="new">2w</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="34f9efccd44c54c0188dd18a9d3926473292be4c" resname="3d">
<source>3d</source>
<target state="new">3d</target>
<jms:reference-file line="62">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="d9c83623b7405e70a7359bcc00d8f89bd79a8a4c" resname="3h">
<source>3h</source>
<target state="new">3h</target>
<jms:reference-file line="59">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes"> <trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes">
<source>500 caracteres maximum</source> <source>500 caracteres maximum</source>
<target state="translated">500 Zeichen max.</target> <target state="translated">500 Zeichen max.</target>
@@ -680,7 +720,7 @@
<trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes"> <trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes">
<source>Add an admin</source> <source>Add an admin</source>
<target state="translated">einen Administrator hinzufügen</target> <target state="translated">einen Administrator hinzufügen</target>
<jms:reference-file line="109">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="115">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point" approved="yes"> <trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point" approved="yes">
<source>Add an end point</source> <source>Add an end point</source>
@@ -1175,12 +1215,12 @@
<trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?"> <trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?">
<source>Are you sure you want to erase all job informations ?</source> <source>Are you sure you want to erase all job informations ?</source>
<target state="translated">Das Löschen der Jobinformationen bestätigen?</target> <target state="translated">Das Löschen der Jobinformationen bestätigen?</target>
<jms:reference-file line="314">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="302">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?"> <trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?">
<source>Are you sure you want to erase finished job informations ?</source> <source>Are you sure you want to erase finished job informations ?</source>
<target state="translated">Das Löschen der abgeschlossene Jobs bestätigen?</target> <target state="translated">Das Löschen der abgeschlossene Jobs bestätigen?</target>
<jms:reference-file line="325">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="313">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes"> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes">
<source>Are you sure you want to rebuild the sub-definitions of selected records?</source> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source>
@@ -1992,7 +2032,7 @@
<trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes"> <trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes">
<source>Could not send email</source> <source>Could not send email</source>
<target state="translated">E-Mail konnte nicht gesendet werden</target> <target state="translated">E-Mail konnte nicht gesendet werden</target>
<jms:reference-file line="44">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="46">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes">
<source>Couleur de selection</source> <source>Couleur de selection</source>
@@ -2736,7 +2776,7 @@
<source>Email</source> <source>Email</source>
<target state="translated">Email Adresse</target> <target state="translated">Email Adresse</target>
<jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file>
<jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="135">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes"> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes">
<source>Email '%email%' for login '%login%' already exists in database</source> <source>Email '%email%' for login '%login%' already exists in database</source>
@@ -2772,7 +2812,7 @@
<trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes">
<source>Email test result : %email_status%</source> <source>Email test result : %email_status%</source>
<target state="translated">E-Mail Test Ergebnis: %email_status%</target> <target state="translated">E-Mail Test Ergebnis: %email_status%</target>
<jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="142">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour." approved="yes"> <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour." approved="yes">
<source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source> <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source>
@@ -3322,6 +3362,16 @@
<jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file>
<jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5103a4a398146306aa27923e6cce52672060bbd6" resname="Flush All Caches">
<source>Flush All Caches</source>
<target state="new">Flush All Caches</target>
<jms:reference-file line="152">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f6d859db6f9a2d8c84dcf5c840b6b1d55439ad0a" resname="Flush session">
<source>Flush session</source>
<target state="new">Flush session</target>
<jms:reference-file line="156">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes">
<source>Focal length</source> <source>Focal length</source>
<target state="translated">Brennweite</target> <target state="translated">Brennweite</target>
@@ -4201,7 +4251,7 @@
<trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes">
<source>Mail sent</source> <source>Mail sent</source>
<target state="translated">E-Mail wurde gesendet</target> <target state="translated">E-Mail wurde gesendet</target>
<jms:reference-file line="41">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="43">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes"> <trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes">
<source>Maintenance message</source> <source>Maintenance message</source>
@@ -4650,7 +4700,7 @@
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes"> <trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
<source>None of the selected records can be printed</source> <source>None of the selected records can be printed</source>
<target state="translated">Keine der ausgewählte Datensätze können gedruckt werden</target> <target state="translated">Keine der ausgewählte Datensätze können gedruckt werden</target>
<jms:reference-file line="184">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="187">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes"> <trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes">
<source>Not Allowed</source> <source>Not Allowed</source>
@@ -5711,7 +5761,7 @@
<trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache" approved="yes"> <trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache" approved="yes">
<source>Reset cache</source> <source>Reset cache</source>
<target state="translated">Den Cache zurücksetzen</target> <target state="translated">Den Cache zurücksetzen</target>
<jms:reference-file line="145">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="150">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes"> <trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes">
<source>Reset rights before applying template?</source> <source>Reset rights before applying template?</source>
@@ -6017,7 +6067,7 @@
<jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes"> <trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes">
<source>Send an email to the user to setup his password</source> <source>Send an email to the user to setup his password</source>
@@ -9503,22 +9553,22 @@
<trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work" approved="yes"> <trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display error work</source> <source>admin::workermanager:tab:workerinfo: Display error work</source>
<target state="translated">Arbeiten Fehler</target> <target state="translated">Arbeiten Fehler</target>
<jms:reference-file line="87">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="80">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work" approved="yes"> <trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display finished work</source> <source>admin::workermanager:tab:workerinfo: Display finished work</source>
<target state="translated">Abgeschlossene Arbeiten</target> <target state="translated">Abgeschlossene Arbeiten</target>
<jms:reference-file line="84">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="77">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work" approved="yes"> <trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source> <source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source>
<target state="translated">Arbeiten Unterbrechen</target> <target state="translated">Arbeiten Unterbrechen</target>
<jms:reference-file line="90">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="83">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work" approved="yes"> <trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display running work</source> <source>admin::workermanager:tab:workerinfo: Display running work</source>
<target state="translated">Laufende Arbeiten</target> <target state="translated">Laufende Arbeiten</target>
<jms:reference-file line="81">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="74">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished" approved="yes"> <trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished" approved="yes">
<source>admin::workermanager:tab:workerinfo: Erase all finished</source> <source>admin::workermanager:tab:workerinfo: Erase all finished</source>
@@ -9533,7 +9583,7 @@
<trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt" approved="yes"> <trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt" approved="yes">
<source>admin::workermanager:tab:workerinfo: Manually interrupt</source> <source>admin::workermanager:tab:workerinfo: Manually interrupt</source>
<target state="translated">Unterbrechen</target> <target state="translated">Unterbrechen</target>
<jms:reference-file line="151">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="144">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list" approved="yes"> <trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list" approved="yes">
<source>admin::workermanager:tab:workerinfo: Refresh list</source> <source>admin::workermanager:tab:workerinfo: Refresh list</source>
@@ -9558,12 +9608,12 @@
<trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created" approved="yes"> <trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created" approved="yes">
<source>admin::workermanager:tab:workerinfo: created</source> <source>admin::workermanager:tab:workerinfo: created</source>
<target state="translated">Begonnen</target> <target state="translated">Begonnen</target>
<jms:reference-file line="112">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="105">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name" approved="yes"> <trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name" approved="yes">
<source>admin::workermanager:tab:workerinfo: databox_name</source> <source>admin::workermanager:tab:workerinfo: databox_name</source>
<target state="translated">Databox</target> <target state="translated">Databox</target>
<jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="99">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description" approved="yes"> <trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description" approved="yes">
<source>admin::workermanager:tab:workerinfo: description</source> <source>admin::workermanager:tab:workerinfo: description</source>
@@ -9573,12 +9623,12 @@
<trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration" approved="yes"> <trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration" approved="yes">
<source>admin::workermanager:tab:workerinfo: duration</source> <source>admin::workermanager:tab:workerinfo: duration</source>
<target state="translated">Dauer</target> <target state="translated">Dauer</target>
<jms:reference-file line="114">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="107">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished" approved="yes"> <trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished" approved="yes">
<source>admin::workermanager:tab:workerinfo: finished</source> <source>admin::workermanager:tab:workerinfo: finished</source>
<target state="translated">Beendet</target> <target state="translated">Beendet</target>
<jms:reference-file line="113">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running"> <trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running">
<source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source> <source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source>
@@ -9588,12 +9638,12 @@
<trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published" approved="yes"> <trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published" approved="yes">
<source>admin::workermanager:tab:workerinfo: published</source> <source>admin::workermanager:tab:workerinfo: published</source>
<target state="translated">Erstellt</target> <target state="translated">Erstellt</target>
<jms:reference-file line="111">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="104">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id" approved="yes"> <trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id" approved="yes">
<source>admin::workermanager:tab:workerinfo: record_id</source> <source>admin::workermanager:tab:workerinfo: record_id</source>
<target state="translated">Record ID</target> <target state="translated">Record ID</target>
<jms:reference-file line="107">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="100">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count"> <trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count">
<source>admin::workermanager:tab:workerinfo: refresh job count</source> <source>admin::workermanager:tab:workerinfo: refresh job count</source>
@@ -9608,7 +9658,7 @@
<trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status" approved="yes"> <trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status" approved="yes">
<source>admin::workermanager:tab:workerinfo: status</source> <source>admin::workermanager:tab:workerinfo: status</source>
<target state="translated">Status</target> <target state="translated">Status</target>
<jms:reference-file line="115">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="108">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title" approved="yes"> <trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title" approved="yes">
<source>admin::workermanager:tab:workerinfo: title</source> <source>admin::workermanager:tab:workerinfo: title</source>
@@ -9618,12 +9668,12 @@
<trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work" approved="yes"> <trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work" approved="yes">
<source>admin::workermanager:tab:workerinfo: work</source> <source>admin::workermanager:tab:workerinfo: work</source>
<target state="translated">Auftrag</target> <target state="translated">Auftrag</target>
<jms:reference-file line="108">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="101">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on" approved="yes"> <trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on" approved="yes">
<source>admin::workermanager:tab:workerinfo: work_on</source> <source>admin::workermanager:tab:workerinfo: work_on</source>
<target state="translated">Auftrag auf</target> <target state="translated">Auftrag auf</target>
<jms:reference-file line="109">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="102">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message"> <trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message">
<source>admin:databases:database:file-size-detail-warning-message</source> <source>admin:databases:database:file-size-detail-warning-message</source>
@@ -9877,13 +9927,18 @@
<trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all"> <trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all">
<source>all</source> <source>all</source>
<target state="new">all</target> <target state="new">all</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="66">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes">
<source>all caches services have been flushed</source> <source>all caches services have been flushed</source>
<target state="translated">Alle Cache Dienste wurden gespüllt</target> <target state="translated">Alle Cache Dienste wurden gespüllt</target>
<jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a54cbfd43ad8987c0ecbc5e8fa51d7c571369ddc" resname="all redis session flushed">
<source>all redis session flushed</source>
<target state="new">all redis session flushed</target>
<jms:reference-file line="98">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes"> <trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes">
<source>an error occured</source> <source>an error occured</source>
<target state="translated">Ein Fehler ist aufgetreten</target> <target state="translated">Ein Fehler ist aufgetreten</target>
@@ -10127,7 +10182,7 @@
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes"> <trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
<source>boutton::imprimer</source> <source>boutton::imprimer</source>
<target state="translated">Drucken</target> <target state="translated">Drucken</target>
<jms:reference-file line="180">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="183">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
<source>boutton::modifier</source> <source>boutton::modifier</source>
@@ -10175,7 +10230,7 @@
<trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes"> <trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes">
<source>boutton::reinitialiser</source> <source>boutton::reinitialiser</source>
<target state="translated">Zurücksetzen</target> <target state="translated">Zurücksetzen</target>
<jms:reference-file line="118">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="124">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes">
<source>boutton::remplacer</source> <source>boutton::remplacer</source>
@@ -10323,7 +10378,7 @@
<jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file>
<jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file>
<jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file>
<jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file>
<jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file>
<jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file>
<jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file>
@@ -10779,7 +10834,7 @@
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes"> <trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
<source>export:: erreur : aucun document selectionne</source> <source>export:: erreur : aucun document selectionne</source>
<target state="translated">Fehler: kein ausgewähltes Dokument</target> <target state="translated">Fehler: kein ausgewähltes Dokument</target>
<jms:reference-file line="186">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="189">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes"> <trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
<source>export:: telechargement</source> <source>export:: telechargement</source>
@@ -11234,7 +11289,7 @@
<trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results"> <trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results">
<source>job::tab results</source> <source>job::tab results</source>
<target state="needs-translation">Job(s)</target> <target state="needs-translation">Job(s)</target>
<jms:reference-file line="93">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="86">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since"> <trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since">
<source>job::tab time filter since</source> <source>job::tab time filter since</source>
@@ -11244,7 +11299,7 @@
<trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration"> <trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration">
<source>job::tab total duration</source> <source>job::tab total duration</source>
<target state="new">job::tab total duration</target> <target state="new">job::tab total duration</target>
<jms:reference-file line="97">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="90">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB"> <trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB">
<source>job::tab total entry in DB</source> <source>job::tab total entry in DB</source>
@@ -12096,7 +12151,7 @@
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
<source>phraseanet:: preview</source> <source>phraseanet:: preview</source>
<target state="translated">Voransicht</target> <target state="translated">Voransicht</target>
<jms:reference-file line="40">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
@@ -12477,22 +12532,22 @@
<trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef"> <trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef">
<source>print:: Can download subdef</source> <source>print:: Can download subdef</source>
<target state="translated">Einen Download-Link hinzufügen</target> <target state="translated">Einen Download-Link hinzufügen</target>
<jms:reference-file line="94">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview"> <trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
<source>print:: Choose subdef for preview</source> <source>print:: Choose subdef for preview</source>
<target state="translated">Eine Unterauflösung für den Druck der Vorschau auswählen</target> <target state="translated">Eine Unterauflösung für den Druck der Vorschau auswählen</target>
<jms:reference-file line="145">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="148">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail"> <trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
<source>print:: Choose subdef for thumbnail</source> <source>print:: Choose subdef for thumbnail</source>
<target state="translated">Die Unterauflösung für den Druck der Miniaturansicht auswählen</target> <target state="translated">Die Unterauflösung für den Druck der Miniaturansicht auswählen</target>
<jms:reference-file line="161">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="164">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf"> <trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
<source>print:: add and remember password to protect the pdf</source> <source>print:: add and remember password to protect the pdf</source>
<target state="translated">Ein Passwort für das Öffnen der PDF festlegen (optional)</target> <target state="translated">Ein Passwort für das Öffnen der PDF festlegen (optional)</target>
<jms:reference-file line="87">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="88">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes"> <trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes">
<source>print:: basket feedback</source> <source>print:: basket feedback</source>
@@ -12507,7 +12562,7 @@
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename"> <trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
<source>print:: choose filename</source> <source>print:: choose filename</source>
<target state="translated">Festlegen des Namens der hochgeladenen Dateien</target> <target state="translated">Festlegen des Namens der hochgeladenen Dateien</target>
<jms:reference-file line="124">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model"> <trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
<source>print:: choose model</source> <source>print:: choose model</source>
@@ -12517,84 +12572,84 @@
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day"> <trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
<source>print:: day</source> <source>print:: day</source>
<target state="translated">Tag</target> <target state="translated">Tag</target>
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes"> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes">
<source>print:: description</source> <source>print:: description</source>
<target state="translated">Bildunterschrift</target> <target state="translated">Bildunterschrift</target>
<jms:reference-file line="56">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="57">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color"> <trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color">
<source>print:: description field title color</source> <source>print:: description field title color</source>
<target state="translated">Farbe der Feldbezeichnungen</target> <target state="translated">Farbe der Feldbezeichnungen</target>
<jms:reference-file line="81">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="82">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size"> <trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size">
<source>print:: description font size</source> <source>print:: description font size</source>
<target state="translated">Schriftgrösse</target> <target state="translated">Schriftgrösse</target>
<jms:reference-file line="76">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="77">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download"> <trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
<source>print:: download</source> <source>print:: download</source>
<target state="translated">Download-Link</target> <target state="translated">Download-Link</target>
<jms:reference-file line="438">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="447">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="529">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="542">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="817">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="834">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable"> <trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
<source>print:: element downloadable</source> <source>print:: element downloadable</source>
<target state="translated">Wählen Sie die heruntergeladene Unterauflösung aus</target> <target state="translated">Wählen Sie die heruntergeladene Unterauflösung aus</target>
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model"> <trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
<source>print:: element printable on preview model</source> <source>print:: element printable on preview model</source>
<target state="translated">Verfügbare Unterauflösung</target> <target state="translated">Verfügbare Unterauflösung</target>
<jms:reference-file line="156">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model"> <trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
<source>print:: element printable on thumbnail model</source> <source>print:: element printable on thumbnail model</source>
<target state="translated">Verfügbare Unterauflösung</target> <target state="translated">Verfügbare Unterauflösung</target>
<jms:reference-file line="172">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="175">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour"> <trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
<source>print:: hour</source> <source>print:: hour</source>
<target state="translated">Stunde</target> <target state="translated">Stunde</target>
<jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes"> <trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
<source>print:: image de choix et description</source> <source>print:: image de choix et description</source>
<target state="translated">Voransicht und Bildunterschrift</target> <target state="translated">Voransicht und Bildunterschrift</target>
<jms:reference-file line="48">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes"> <trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
<source>print:: image de choix et description avec planche contact</source> <source>print:: image de choix et description avec planche contact</source>
<target state="translated">Voransicht und Bildunterschrift mit Mosaikansicht</target> <target state="translated">Voransicht und Bildunterschrift mit Mosaikansicht</target>
<jms:reference-file line="52">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="53">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes"> <trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
<source>print:: image de choix seulement</source> <source>print:: image de choix seulement</source>
<target state="translated">Voransicht</target> <target state="translated">Voransicht</target>
<jms:reference-file line="44">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes"> <trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
<source>print:: imagette</source> <source>print:: imagette</source>
<target state="translated">Miniaturansicht</target> <target state="translated">Miniaturansicht</target>
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes"> <trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
<source>print:: liste d'imagettes</source> <source>print:: liste d'imagettes</source>
<target state="translated">Miniaturansichten Liste</target> <target state="translated">Miniaturansichten Liste</target>
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="66">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month"> <trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
<source>print:: month</source> <source>print:: month</source>
<target state="translated">Monat</target> <target state="translated">Monat</target>
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name"> <trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
<source>print:: original media name</source> <source>print:: original media name</source>
<target state="translated">Ursprünglicher Name der Datei</target> <target state="translated">Ursprünglicher Name der Datei</target>
<jms:reference-file line="131">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="134">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description"> <trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
<source>print:: pdf description</source> <source>print:: pdf description</source>
@@ -12609,132 +12664,132 @@
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes"> <trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
<source>print:: planche contact (mosaique)</source> <source>print:: planche contact (mosaique)</source>
<target state="translated">Mosaikansicht</target> <target state="translated">Mosaikansicht</target>
<jms:reference-file line="69">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="70">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations"> <trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations">
<source>print:: print records informations</source> <source>print:: print records informations</source>
<target state="translated">Datensatz Informationsabteilung hinzufügen</target> <target state="translated">Datensatz Informationsabteilung hinzufügen</target>
<jms:reference-file line="36">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options"> <trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
<source>print:: some options</source> <source>print:: some options</source>
<target state="translated">Weitere Einstellungen</target> <target state="translated">Weitere Einstellungen</target>
<jms:reference-file line="74">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="75">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping"> <trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
<source>print:: subdef mapping</source> <source>print:: subdef mapping</source>
<target state="translated">Wählen Sie auf die Unterauflösungen für Druck</target> <target state="translated">Wählen Sie auf die Unterauflösungen für Druck</target>
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl"> <trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
<source>print:: subdef url ttl</source> <source>print:: subdef url ttl</source>
<target state="translated">Gültigkeitsdauer des Download-Links</target> <target state="translated">Gültigkeitsdauer des Download-Links</target>
<jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title"> <trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
<source>print:: title</source> <source>print:: title</source>
<target state="translated">Titel des Dokuments</target> <target state="translated">Titel des Dokuments</target>
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="130">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed"> <trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
<source>print:: warning! Only available image for chosen subdef is printed</source> <source>print:: warning! Only available image for chosen subdef is printed</source>
<target state="translated">Wenn die ausgewählte Unterauflösung fehlt, wird sie durch ein Ersatzbild ersetzt</target> <target state="translated">Wenn die ausgewählte Unterauflösung fehlt, wird sie durch ein Ersatzbild ersetzt</target>
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="144">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable"> <trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
<source>print:: warning! Only available media for chosen subdef is downloadable</source> <source>print:: warning! Only available media for chosen subdef is downloadable</source>
<target state="translated">Lassen Sie das Feld für eine dauerhafte Gültigkeit leer</target> <target state="translated">Lassen Sie das Feld für eine dauerhafte Gültigkeit leer</target>
<jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week"> <trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
<source>print:: week</source> <source>print:: week</source>
<target state="translated">Woche</target> <target state="translated">Woche</target>
<jms:reference-file line="119">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="122">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes"> <trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes">
<source>print_feedback:: Document generated on :</source> <source>print_feedback:: Document generated on :</source>
<target state="translated">Drucken erzeugt am</target> <target state="translated">Drucken erzeugt am</target>
<jms:reference-file line="589">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="602">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active" approved="yes"> <trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active" approved="yes">
<source>print_feedback:: Feedback active</source> <source>print_feedback:: Feedback active</source>
<target state="translated">Feedback ist aktiviert</target> <target state="translated">Feedback ist aktiviert</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired" approved="yes"> <trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired" approved="yes">
<source>print_feedback:: Feedback expired</source> <source>print_feedback:: Feedback expired</source>
<target state="translated">Feedback ist abgelaufen</target> <target state="translated">Feedback ist abgelaufen</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : " approved="yes"> <trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : " approved="yes">
<source>print_feedback:: Feedback expiring on :</source> <source>print_feedback:: Feedback expiring on :</source>
<target state="translated">Erlischt am</target> <target state="translated">Erlischt am</target>
<jms:reference-file line="607">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="620">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : " approved="yes"> <trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : " approved="yes">
<source>print_feedback:: Feedback initiated by :</source> <source>print_feedback:: Feedback initiated by :</source>
<target state="translated">Feedback gesendet von</target> <target state="translated">Feedback gesendet von</target>
<jms:reference-file line="595">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="608">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : " approved="yes"> <trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : " approved="yes">
<source>print_feedback:: Feedback initiated on :</source> <source>print_feedback:: Feedback initiated on :</source>
<target state="translated">Feedback Beginn am</target> <target state="translated">Feedback Beginn am</target>
<jms:reference-file line="601">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="614">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%" approved="yes"> <trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%" approved="yes">
<source>print_feedback:: Feedback on basket %name%</source> <source>print_feedback:: Feedback on basket %name%</source>
<target state="translated">Feedback auf Sammelkorb %name%</target> <target state="translated">Feedback auf Sammelkorb %name%</target>
<jms:reference-file line="583">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="596">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non" approved="yes"> <trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non" approved="yes">
<source>print_feedback:: Non</source> <source>print_feedback:: Non</source>
<target state="translated">Nein</target> <target state="translated">Nein</target>
<jms:reference-file line="868">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="885">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui" approved="yes"> <trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui" approved="yes">
<source>print_feedback:: Oui</source> <source>print_feedback:: Oui</source>
<target state="translated">Ja</target> <target state="translated">Ja</target>
<jms:reference-file line="864">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="881">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : " approved="yes"> <trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : " approved="yes">
<source>print_feedback:: Participants :</source> <source>print_feedback:: Participants :</source>
<target state="translated">Teilnehmer :</target> <target state="translated">Teilnehmer :</target>
<jms:reference-file line="617">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="630">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :" approved="yes"> <trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :" approved="yes">
<source>print_feedback:: Votes :</source> <source>print_feedback:: Votes :</source>
<target state="translated">Zustimmung :</target> <target state="translated">Zustimmung :</target>
<jms:reference-file line="836">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="853">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: "> <trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: ">
<source>print_feedback:: base name:</source> <source>print_feedback:: base name:</source>
<target state="translated">Datenbank :</target> <target state="translated">Datenbank :</target>
<jms:reference-file line="952">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="969">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: "> <trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: ">
<source>print_feedback:: document Uuid:</source> <source>print_feedback:: document Uuid:</source>
<target state="translated">Uuid Dokument :</target> <target state="translated">Uuid Dokument :</target>
<jms:reference-file line="972">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="989">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté" approved="yes"> <trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté" approved="yes">
<source>print_feedback:: non voté</source> <source>print_feedback:: non voté</source>
<target state="translated">unausgedrückt</target> <target state="translated">unausgedrückt</target>
<jms:reference-file line="859">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="876">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: "> <trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: ">
<source>print_feedback:: originale filename:</source> <source>print_feedback:: originale filename:</source>
<target state="translated">Originale Dateiname :</target> <target state="translated">Originale Dateiname :</target>
<jms:reference-file line="962">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="979">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: "> <trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: ">
<source>print_feedback:: record id:</source> <source>print_feedback:: record id:</source>
<target state="translated">Record id :</target> <target state="translated">Record id :</target>
<jms:reference-file line="942">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="959">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: "> <trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: ">
<source>print_feedback:: record title:</source> <source>print_feedback:: record title:</source>
<target state="translated">Titel :</target> <target state="translated">Titel :</target>
<jms:reference-file line="932">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="949">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes"> <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes">
<source>prive</source> <source>prive</source>
@@ -14769,12 +14824,12 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
<trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes"> <trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes">
<source>setup:: Reinitialisation des droits admins</source> <source>setup:: Reinitialisation des droits admins</source>
<target state="translated">Administratoren Rechte zurücksetzen</target> <target state="translated">Administratoren Rechte zurücksetzen</target>
<jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="123">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes"> <trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes">
<source>setup:: administrateurs de l'application</source> <source>setup:: administrateurs de l'application</source>
<target state="translated">Anwendung Administratoren</target> <target state="translated">Anwendung Administratoren</target>
<jms:reference-file line="99">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="105">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes"> <trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes">
<source>setup:: ajouter un administrateur des commandes</source> <source>setup:: ajouter un administrateur des commandes</source>
@@ -14799,7 +14854,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
<trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes"> <trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes">
<source>setup::Tests d'envois d'emails</source> <source>setup::Tests d'envois d'emails</source>
<target state="translated">Test E-Mail Überprüfungen</target> <target state="translated">Test E-Mail Überprüfungen</target>
<jms:reference-file line="127">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="133">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link" approved="yes"> <trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link" approved="yes">
<source>setup::custom-link:add-link</source> <source>setup::custom-link:add-link</source>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:37:57Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:50:35Z" source-language="en" target-language="en" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>
@@ -411,6 +411,31 @@
<target state="translated">1000 characters maximum</target> <target state="translated">1000 characters maximum</target>
<jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7136e3b25b3e26722b5b03aa32a828c883121e87" resname="12h">
<source>12h</source>
<target state="new">12h</target>
<jms:reference-file line="60">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="11a2757082428311f587b7664fa9840376137f80" resname="1d">
<source>1d</source>
<target state="new">1d</target>
<jms:reference-file line="61">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="e9c9f7bc39bb993fb7ed87ec63024c583691a6bd" resname="1h">
<source>1h</source>
<target state="new">1h</target>
<jms:reference-file line="58">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="dc4ea83928e4079a6ca1eb64e1e4cc7952c8d2ac" resname="1m">
<source>1m</source>
<target state="new">1m</target>
<jms:reference-file line="65">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="323945f29da5d029038c3e22734b3c59d0f64a26" resname="1w">
<source>1w</source>
<target state="new">1w</target>
<jms:reference-file line="63">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes"> <trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes">
<source>2000 caracteres maximum</source> <source>2000 caracteres maximum</source>
<target state="translated">2000 characters maximum</target> <target state="translated">2000 characters maximum</target>
@@ -431,6 +456,21 @@
<target state="translated">255 characters maximum</target> <target state="translated">255 characters maximum</target>
<jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b8568f4703616db45865d3c1a87fb64112e677e0" resname="2w">
<source>2w</source>
<target state="new">2w</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="34f9efccd44c54c0188dd18a9d3926473292be4c" resname="3d">
<source>3d</source>
<target state="new">3d</target>
<jms:reference-file line="62">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="d9c83623b7405e70a7359bcc00d8f89bd79a8a4c" resname="3h">
<source>3h</source>
<target state="new">3h</target>
<jms:reference-file line="59">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes"> <trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes">
<source>500 caracteres maximum</source> <source>500 caracteres maximum</source>
<target state="translated">500 characters maximum</target> <target state="translated">500 characters maximum</target>
@@ -681,7 +721,7 @@
<trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes"> <trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes">
<source>Add an admin</source> <source>Add an admin</source>
<target state="translated">Add an admin</target> <target state="translated">Add an admin</target>
<jms:reference-file line="109">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="115">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point" approved="yes"> <trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point" approved="yes">
<source>Add an end point</source> <source>Add an end point</source>
@@ -1176,12 +1216,12 @@
<trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?"> <trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?">
<source>Are you sure you want to erase all job informations ?</source> <source>Are you sure you want to erase all job informations ?</source>
<target state="translated">Confirm jobs informations deletion?</target> <target state="translated">Confirm jobs informations deletion?</target>
<jms:reference-file line="314">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="302">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?"> <trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?">
<source>Are you sure you want to erase finished job informations ?</source> <source>Are you sure you want to erase finished job informations ?</source>
<target state="translated">Confirm deletion of finished jobs?</target> <target state="translated">Confirm deletion of finished jobs?</target>
<jms:reference-file line="325">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="313">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes"> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes">
<source>Are you sure you want to rebuild the sub-definitions of selected records?</source> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source>
@@ -1994,7 +2034,7 @@
<trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes"> <trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes">
<source>Could not send email</source> <source>Could not send email</source>
<target state="translated">Could not send e-mail.</target> <target state="translated">Could not send e-mail.</target>
<jms:reference-file line="44">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="46">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes">
<source>Couleur de selection</source> <source>Couleur de selection</source>
@@ -2739,7 +2779,7 @@
<source>Email</source> <source>Email</source>
<target state="translated">E-mail</target> <target state="translated">E-mail</target>
<jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file>
<jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="135">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes"> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes">
<source>Email '%email%' for login '%login%' already exists in database</source> <source>Email '%email%' for login '%login%' already exists in database</source>
@@ -2775,7 +2815,7 @@
<trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes">
<source>Email test result : %email_status%</source> <source>Email test result : %email_status%</source>
<target state="translated">E-mail test result: %email_status%</target> <target state="translated">E-mail test result: %email_status%</target>
<jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="142">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour." approved="yes"> <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour." approved="yes">
<source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source> <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source>
@@ -3325,6 +3365,16 @@
<jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file>
<jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5103a4a398146306aa27923e6cce52672060bbd6" resname="Flush All Caches">
<source>Flush All Caches</source>
<target state="new">Flush All Caches</target>
<jms:reference-file line="152">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f6d859db6f9a2d8c84dcf5c840b6b1d55439ad0a" resname="Flush session">
<source>Flush session</source>
<target state="new">Flush session</target>
<jms:reference-file line="156">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes">
<source>Focal length</source> <source>Focal length</source>
<target state="translated">Focal length</target> <target state="translated">Focal length</target>
@@ -4204,7 +4254,7 @@
<trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes">
<source>Mail sent</source> <source>Mail sent</source>
<target state="translated">E-mail sent.</target> <target state="translated">E-mail sent.</target>
<jms:reference-file line="41">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="43">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes"> <trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes">
<source>Maintenance message</source> <source>Maintenance message</source>
@@ -4653,7 +4703,7 @@
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes"> <trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
<source>None of the selected records can be printed</source> <source>None of the selected records can be printed</source>
<target state="translated">None of the selected records can be printed</target> <target state="translated">None of the selected records can be printed</target>
<jms:reference-file line="184">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="187">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes"> <trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes">
<source>Not Allowed</source> <source>Not Allowed</source>
@@ -5714,7 +5764,7 @@
<trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache" approved="yes"> <trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache" approved="yes">
<source>Reset cache</source> <source>Reset cache</source>
<target state="translated">Reset cache</target> <target state="translated">Reset cache</target>
<jms:reference-file line="145">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="150">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes"> <trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes">
<source>Reset rights before applying template?</source> <source>Reset rights before applying template?</source>
@@ -6020,7 +6070,7 @@
<jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes"> <trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes">
<source>Send an email to the user to setup his password</source> <source>Send an email to the user to setup his password</source>
@@ -9506,22 +9556,22 @@
<trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work" approved="yes"> <trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display error work</source> <source>admin::workermanager:tab:workerinfo: Display error work</source>
<target state="translated">Job in error</target> <target state="translated">Job in error</target>
<jms:reference-file line="87">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="80">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work" approved="yes"> <trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display finished work</source> <source>admin::workermanager:tab:workerinfo: Display finished work</source>
<target state="translated">Display Finished Job(s)</target> <target state="translated">Display Finished Job(s)</target>
<jms:reference-file line="84">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="77">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work" approved="yes"> <trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source> <source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source>
<target state="translated">interrupted job</target> <target state="translated">interrupted job</target>
<jms:reference-file line="90">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="83">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work" approved="yes"> <trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display running work</source> <source>admin::workermanager:tab:workerinfo: Display running work</source>
<target state="translated">Running Job(s)</target> <target state="translated">Running Job(s)</target>
<jms:reference-file line="81">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="74">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished" approved="yes"> <trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished" approved="yes">
<source>admin::workermanager:tab:workerinfo: Erase all finished</source> <source>admin::workermanager:tab:workerinfo: Erase all finished</source>
@@ -9536,7 +9586,7 @@
<trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt" approved="yes"> <trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt" approved="yes">
<source>admin::workermanager:tab:workerinfo: Manually interrupt</source> <source>admin::workermanager:tab:workerinfo: Manually interrupt</source>
<target state="translated">Manually Acknowledge</target> <target state="translated">Manually Acknowledge</target>
<jms:reference-file line="151">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="144">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list" approved="yes"> <trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list" approved="yes">
<source>admin::workermanager:tab:workerinfo: Refresh list</source> <source>admin::workermanager:tab:workerinfo: Refresh list</source>
@@ -9561,12 +9611,12 @@
<trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created" approved="yes"> <trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created" approved="yes">
<source>admin::workermanager:tab:workerinfo: created</source> <source>admin::workermanager:tab:workerinfo: created</source>
<target state="translated">Started</target> <target state="translated">Started</target>
<jms:reference-file line="112">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="105">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name" approved="yes"> <trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name" approved="yes">
<source>admin::workermanager:tab:workerinfo: databox_name</source> <source>admin::workermanager:tab:workerinfo: databox_name</source>
<target state="translated">Databox</target> <target state="translated">Databox</target>
<jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="99">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description" approved="yes"> <trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description" approved="yes">
<source>admin::workermanager:tab:workerinfo: description</source> <source>admin::workermanager:tab:workerinfo: description</source>
@@ -9576,12 +9626,12 @@
<trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration" approved="yes"> <trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration" approved="yes">
<source>admin::workermanager:tab:workerinfo: duration</source> <source>admin::workermanager:tab:workerinfo: duration</source>
<target state="translated">Duration</target> <target state="translated">Duration</target>
<jms:reference-file line="114">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="107">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished" approved="yes"> <trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished" approved="yes">
<source>admin::workermanager:tab:workerinfo: finished</source> <source>admin::workermanager:tab:workerinfo: finished</source>
<target state="translated">Finished</target> <target state="translated">Finished</target>
<jms:reference-file line="113">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running"> <trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running">
<source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source> <source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source>
@@ -9591,12 +9641,12 @@
<trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published" approved="yes"> <trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published" approved="yes">
<source>admin::workermanager:tab:workerinfo: published</source> <source>admin::workermanager:tab:workerinfo: published</source>
<target state="translated">Created</target> <target state="translated">Created</target>
<jms:reference-file line="111">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="104">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id" approved="yes"> <trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id" approved="yes">
<source>admin::workermanager:tab:workerinfo: record_id</source> <source>admin::workermanager:tab:workerinfo: record_id</source>
<target state="translated">Record ID</target> <target state="translated">Record ID</target>
<jms:reference-file line="107">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="100">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count"> <trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count">
<source>admin::workermanager:tab:workerinfo: refresh job count</source> <source>admin::workermanager:tab:workerinfo: refresh job count</source>
@@ -9611,7 +9661,7 @@
<trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status" approved="yes"> <trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status" approved="yes">
<source>admin::workermanager:tab:workerinfo: status</source> <source>admin::workermanager:tab:workerinfo: status</source>
<target state="translated">Status</target> <target state="translated">Status</target>
<jms:reference-file line="115">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="108">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title" approved="yes"> <trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title" approved="yes">
<source>admin::workermanager:tab:workerinfo: title</source> <source>admin::workermanager:tab:workerinfo: title</source>
@@ -9621,12 +9671,12 @@
<trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work" approved="yes"> <trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work" approved="yes">
<source>admin::workermanager:tab:workerinfo: work</source> <source>admin::workermanager:tab:workerinfo: work</source>
<target state="translated">Job</target> <target state="translated">Job</target>
<jms:reference-file line="108">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="101">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on" approved="yes"> <trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on" approved="yes">
<source>admin::workermanager:tab:workerinfo: work_on</source> <source>admin::workermanager:tab:workerinfo: work_on</source>
<target state="translated">Work On</target> <target state="translated">Work On</target>
<jms:reference-file line="109">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="102">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message"> <trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message">
<source>admin:databases:database:file-size-detail-warning-message</source> <source>admin:databases:database:file-size-detail-warning-message</source>
@@ -9880,13 +9930,18 @@
<trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all"> <trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all">
<source>all</source> <source>all</source>
<target state="new">all</target> <target state="new">all</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="66">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes">
<source>all caches services have been flushed</source> <source>all caches services have been flushed</source>
<target state="translated">All caches services have been flushed</target> <target state="translated">All caches services have been flushed</target>
<jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a54cbfd43ad8987c0ecbc5e8fa51d7c571369ddc" resname="all redis session flushed">
<source>all redis session flushed</source>
<target state="new">all redis session flushed</target>
<jms:reference-file line="98">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes"> <trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes">
<source>an error occured</source> <source>an error occured</source>
<target state="translated">an error occured</target> <target state="translated">an error occured</target>
@@ -10130,7 +10185,7 @@
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes"> <trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
<source>boutton::imprimer</source> <source>boutton::imprimer</source>
<target state="translated">Print</target> <target state="translated">Print</target>
<jms:reference-file line="180">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="183">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
<source>boutton::modifier</source> <source>boutton::modifier</source>
@@ -10178,7 +10233,7 @@
<trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes"> <trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes">
<source>boutton::reinitialiser</source> <source>boutton::reinitialiser</source>
<target state="translated">Reset</target> <target state="translated">Reset</target>
<jms:reference-file line="118">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="124">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes">
<source>boutton::remplacer</source> <source>boutton::remplacer</source>
@@ -10326,7 +10381,7 @@
<jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file>
<jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file>
<jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file>
<jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file>
<jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file>
<jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file>
<jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file>
@@ -10782,7 +10837,7 @@
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes"> <trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
<source>export:: erreur : aucun document selectionne</source> <source>export:: erreur : aucun document selectionne</source>
<target state="translated">Error : no document selected</target> <target state="translated">Error : no document selected</target>
<jms:reference-file line="186">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="189">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes"> <trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
<source>export:: telechargement</source> <source>export:: telechargement</source>
@@ -11237,7 +11292,7 @@
<trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results"> <trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results">
<source>job::tab results</source> <source>job::tab results</source>
<target state="needs-translation">Job(s)</target> <target state="needs-translation">Job(s)</target>
<jms:reference-file line="93">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="86">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since"> <trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since">
<source>job::tab time filter since</source> <source>job::tab time filter since</source>
@@ -11247,7 +11302,7 @@
<trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration"> <trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration">
<source>job::tab total duration</source> <source>job::tab total duration</source>
<target state="new">job::tab total duration</target> <target state="new">job::tab total duration</target>
<jms:reference-file line="97">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="90">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB"> <trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB">
<source>job::tab total entry in DB</source> <source>job::tab total entry in DB</source>
@@ -12099,7 +12154,7 @@
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
<source>phraseanet:: preview</source> <source>phraseanet:: preview</source>
<target state="translated">Preview</target> <target state="translated">Preview</target>
<jms:reference-file line="40">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
@@ -12480,22 +12535,22 @@
<trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef"> <trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef">
<source>print:: Can download subdef</source> <source>print:: Can download subdef</source>
<target state="translated">Add a download link</target> <target state="translated">Add a download link</target>
<jms:reference-file line="94">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview"> <trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
<source>print:: Choose subdef for preview</source> <source>print:: Choose subdef for preview</source>
<target state="translated">Choose a sub-definition for printed "preview"</target> <target state="translated">Choose a sub-definition for printed "preview"</target>
<jms:reference-file line="145">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="148">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail"> <trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
<source>print:: Choose subdef for thumbnail</source> <source>print:: Choose subdef for thumbnail</source>
<target state="translated">Choose a subdefinition for printed "thumbnail"</target> <target state="translated">Choose a subdefinition for printed "thumbnail"</target>
<jms:reference-file line="161">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="164">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf"> <trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
<source>print:: add and remember password to protect the pdf</source> <source>print:: add and remember password to protect the pdf</source>
<target state="translated">Define a password to protect the PDF (optional)</target> <target state="translated">Define a password to protect the PDF (optional)</target>
<jms:reference-file line="87">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="88">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes"> <trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes">
<source>print:: basket feedback</source> <source>print:: basket feedback</source>
@@ -12510,7 +12565,7 @@
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename"> <trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
<source>print:: choose filename</source> <source>print:: choose filename</source>
<target state="translated">Definition of the name of downloaded files</target> <target state="translated">Definition of the name of downloaded files</target>
<jms:reference-file line="124">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model"> <trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
<source>print:: choose model</source> <source>print:: choose model</source>
@@ -12520,84 +12575,84 @@
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day"> <trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
<source>print:: day</source> <source>print:: day</source>
<target state="translated">Day</target> <target state="translated">Day</target>
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes"> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes">
<source>print:: description</source> <source>print:: description</source>
<target state="translated">Caption only</target> <target state="translated">Caption only</target>
<jms:reference-file line="56">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="57">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color"> <trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color">
<source>print:: description field title color</source> <source>print:: description field title color</source>
<target state="translated">Colour of field label</target> <target state="translated">Colour of field label</target>
<jms:reference-file line="81">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="82">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size"> <trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size">
<source>print:: description font size</source> <source>print:: description font size</source>
<target state="translated">Font size</target> <target state="translated">Font size</target>
<jms:reference-file line="76">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="77">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download"> <trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
<source>print:: download</source> <source>print:: download</source>
<target state="translated">Download link</target> <target state="translated">Download link</target>
<jms:reference-file line="438">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="447">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="529">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="542">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="817">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="834">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable"> <trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
<source>print:: element downloadable</source> <source>print:: element downloadable</source>
<target state="translated">Define the downloaded subdefinition</target> <target state="translated">Define the downloaded subdefinition</target>
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model"> <trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
<source>print:: element printable on preview model</source> <source>print:: element printable on preview model</source>
<target state="translated">Available for print "Preview"</target> <target state="translated">Available for print "Preview"</target>
<jms:reference-file line="156">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model"> <trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
<source>print:: element printable on thumbnail model</source> <source>print:: element printable on thumbnail model</source>
<target state="translated">Available for print "Thumbnail"</target> <target state="translated">Available for print "Thumbnail"</target>
<jms:reference-file line="172">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="175">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour"> <trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
<source>print:: hour</source> <source>print:: hour</source>
<target state="translated">Hour</target> <target state="translated">Hour</target>
<jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes"> <trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
<source>print:: image de choix et description</source> <source>print:: image de choix et description</source>
<target state="translated">Preview and caption</target> <target state="translated">Preview and caption</target>
<jms:reference-file line="48">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes"> <trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
<source>print:: image de choix et description avec planche contact</source> <source>print:: image de choix et description avec planche contact</source>
<target state="translated">Preview, caption and thumbnails</target> <target state="translated">Preview, caption and thumbnails</target>
<jms:reference-file line="52">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="53">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes"> <trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
<source>print:: image de choix seulement</source> <source>print:: image de choix seulement</source>
<target state="translated">Preview</target> <target state="translated">Preview</target>
<jms:reference-file line="44">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes"> <trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
<source>print:: imagette</source> <source>print:: imagette</source>
<target state="translated">Thumbnail</target> <target state="translated">Thumbnail</target>
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes"> <trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
<source>print:: liste d'imagettes</source> <source>print:: liste d'imagettes</source>
<target state="translated">Thumbnail list</target> <target state="translated">Thumbnail list</target>
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="66">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month"> <trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
<source>print:: month</source> <source>print:: month</source>
<target state="translated">Month</target> <target state="translated">Month</target>
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name"> <trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
<source>print:: original media name</source> <source>print:: original media name</source>
<target state="translated">Original file name</target> <target state="translated">Original file name</target>
<jms:reference-file line="131">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="134">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description"> <trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
<source>print:: pdf description</source> <source>print:: pdf description</source>
@@ -12612,132 +12667,132 @@
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes"> <trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
<source>print:: planche contact (mosaique)</source> <source>print:: planche contact (mosaique)</source>
<target state="translated">Thumbnails</target> <target state="translated">Thumbnails</target>
<jms:reference-file line="69">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="70">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations"> <trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations">
<source>print:: print records informations</source> <source>print:: print records informations</source>
<target state="translated">Add informations section of the record</target> <target state="translated">Add informations section of the record</target>
<jms:reference-file line="36">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options"> <trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
<source>print:: some options</source> <source>print:: some options</source>
<target state="translated">Additional settings</target> <target state="translated">Additional settings</target>
<jms:reference-file line="74">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="75">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping"> <trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
<source>print:: subdef mapping</source> <source>print:: subdef mapping</source>
<target state="translated">Define subdefinitions used for print</target> <target state="translated">Define subdefinitions used for print</target>
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl"> <trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
<source>print:: subdef url ttl</source> <source>print:: subdef url ttl</source>
<target state="translated">Validity period of the download link</target> <target state="translated">Validity period of the download link</target>
<jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title"> <trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
<source>print:: title</source> <source>print:: title</source>
<target state="translated">Document title</target> <target state="translated">Document title</target>
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="130">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed"> <trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
<source>print:: warning! Only available image for chosen subdef is printed</source> <source>print:: warning! Only available image for chosen subdef is printed</source>
<target state="translated">If the selected sub-definition is missing, it will be replaced by a substitute image</target> <target state="translated">If the selected sub-definition is missing, it will be replaced by a substitute image</target>
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="144">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable"> <trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
<source>print:: warning! Only available media for chosen subdef is downloadable</source> <source>print:: warning! Only available media for chosen subdef is downloadable</source>
<target state="translated">Leave the duration empty for a permanent validity</target> <target state="translated">Leave the duration empty for a permanent validity</target>
<jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week"> <trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
<source>print:: week</source> <source>print:: week</source>
<target state="translated">Week</target> <target state="translated">Week</target>
<jms:reference-file line="119">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="122">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes"> <trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes">
<source>print_feedback:: Document generated on :</source> <source>print_feedback:: Document generated on :</source>
<target state="translated">Generated on :</target> <target state="translated">Generated on :</target>
<jms:reference-file line="589">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="602">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active" approved="yes"> <trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active" approved="yes">
<source>print_feedback:: Feedback active</source> <source>print_feedback:: Feedback active</source>
<target state="translated">Feedback session still opened</target> <target state="translated">Feedback session still opened</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired" approved="yes"> <trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired" approved="yes">
<source>print_feedback:: Feedback expired</source> <source>print_feedback:: Feedback expired</source>
<target state="translated">Feedback session closed</target> <target state="translated">Feedback session closed</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : " approved="yes"> <trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : " approved="yes">
<source>print_feedback:: Feedback expiring on :</source> <source>print_feedback:: Feedback expiring on :</source>
<target state="translated">Feedback expiring on :</target> <target state="translated">Feedback expiring on :</target>
<jms:reference-file line="607">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="620">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : " approved="yes"> <trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : " approved="yes">
<source>print_feedback:: Feedback initiated by :</source> <source>print_feedback:: Feedback initiated by :</source>
<target state="translated">Feedback initiated by :</target> <target state="translated">Feedback initiated by :</target>
<jms:reference-file line="595">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="608">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : " approved="yes"> <trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : " approved="yes">
<source>print_feedback:: Feedback initiated on :</source> <source>print_feedback:: Feedback initiated on :</source>
<target state="translated">Feedback initiated on :</target> <target state="translated">Feedback initiated on :</target>
<jms:reference-file line="601">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="614">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%" approved="yes"> <trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%" approved="yes">
<source>print_feedback:: Feedback on basket %name%</source> <source>print_feedback:: Feedback on basket %name%</source>
<target state="translated">Feedback report on basket : %name%</target> <target state="translated">Feedback report on basket : %name%</target>
<jms:reference-file line="583">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="596">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non" approved="yes"> <trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non" approved="yes">
<source>print_feedback:: Non</source> <source>print_feedback:: Non</source>
<target state="translated">No</target> <target state="translated">No</target>
<jms:reference-file line="868">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="885">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui" approved="yes"> <trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui" approved="yes">
<source>print_feedback:: Oui</source> <source>print_feedback:: Oui</source>
<target state="translated">Yes</target> <target state="translated">Yes</target>
<jms:reference-file line="864">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="881">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : " approved="yes"> <trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : " approved="yes">
<source>print_feedback:: Participants :</source> <source>print_feedback:: Participants :</source>
<target state="translated">Participants list :</target> <target state="translated">Participants list :</target>
<jms:reference-file line="617">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="630">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :" approved="yes"> <trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :" approved="yes">
<source>print_feedback:: Votes :</source> <source>print_feedback:: Votes :</source>
<target state="translated">Approvals :</target> <target state="translated">Approvals :</target>
<jms:reference-file line="836">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="853">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: " approved="yes"> <trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: " approved="yes">
<source>print_feedback:: base name:</source> <source>print_feedback:: base name:</source>
<target state="translated">Base Name :</target> <target state="translated">Base Name :</target>
<jms:reference-file line="952">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="969">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: " approved="yes"> <trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: " approved="yes">
<source>print_feedback:: document Uuid:</source> <source>print_feedback:: document Uuid:</source>
<target state="translated">Document Unique Id :</target> <target state="translated">Document Unique Id :</target>
<jms:reference-file line="972">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="989">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté" approved="yes"> <trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté" approved="yes">
<source>print_feedback:: non voté</source> <source>print_feedback:: non voté</source>
<target state="translated">Unexpressed</target> <target state="translated">Unexpressed</target>
<jms:reference-file line="859">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="876">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: " approved="yes"> <trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: " approved="yes">
<source>print_feedback:: originale filename:</source> <source>print_feedback:: originale filename:</source>
<target state="translated">Original file name :</target> <target state="translated">Original file name :</target>
<jms:reference-file line="962">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="979">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: " approved="yes"> <trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: " approved="yes">
<source>print_feedback:: record id:</source> <source>print_feedback:: record id:</source>
<target state="translated">Record Id :</target> <target state="translated">Record Id :</target>
<jms:reference-file line="942">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="959">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: " approved="yes"> <trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: " approved="yes">
<source>print_feedback:: record title:</source> <source>print_feedback:: record title:</source>
<target state="translated">Record Title :</target> <target state="translated">Record Title :</target>
<jms:reference-file line="932">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="949">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes"> <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes">
<source>prive</source> <source>prive</source>
@@ -14779,12 +14834,12 @@ It is possible to place several search areas</target>
<trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes"> <trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes">
<source>setup:: Reinitialisation des droits admins</source> <source>setup:: Reinitialisation des droits admins</source>
<target state="translated">Reset admin rights</target> <target state="translated">Reset admin rights</target>
<jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="123">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes"> <trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes">
<source>setup:: administrateurs de l'application</source> <source>setup:: administrateurs de l'application</source>
<target state="translated">Administrators</target> <target state="translated">Administrators</target>
<jms:reference-file line="99">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="105">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes"> <trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes">
<source>setup:: ajouter un administrateur des commandes</source> <source>setup:: ajouter un administrateur des commandes</source>
@@ -14809,7 +14864,7 @@ It is possible to place several search areas</target>
<trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes"> <trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes">
<source>setup::Tests d'envois d'emails</source> <source>setup::Tests d'envois d'emails</source>
<target state="translated">E-mails send test</target> <target state="translated">E-mails send test</target>
<jms:reference-file line="127">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="133">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link" approved="yes"> <trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link" approved="yes">
<source>setup::custom-link:add-link</source> <source>setup::custom-link:add-link</source>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:38:15Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:50:53Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>
@@ -411,6 +411,31 @@
<target state="translated">1000 caractères maximum</target> <target state="translated">1000 caractères maximum</target>
<jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7136e3b25b3e26722b5b03aa32a828c883121e87" resname="12h">
<source>12h</source>
<target state="new">12h</target>
<jms:reference-file line="60">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="11a2757082428311f587b7664fa9840376137f80" resname="1d">
<source>1d</source>
<target state="new">1d</target>
<jms:reference-file line="61">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="e9c9f7bc39bb993fb7ed87ec63024c583691a6bd" resname="1h">
<source>1h</source>
<target state="new">1h</target>
<jms:reference-file line="58">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="dc4ea83928e4079a6ca1eb64e1e4cc7952c8d2ac" resname="1m">
<source>1m</source>
<target state="new">1m</target>
<jms:reference-file line="65">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="323945f29da5d029038c3e22734b3c59d0f64a26" resname="1w">
<source>1w</source>
<target state="new">1w</target>
<jms:reference-file line="63">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes"> <trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes">
<source>2000 caracteres maximum</source> <source>2000 caracteres maximum</source>
<target state="translated">2000 caractères maximum</target> <target state="translated">2000 caractères maximum</target>
@@ -431,6 +456,21 @@
<target state="translated">255 caractères maximum</target> <target state="translated">255 caractères maximum</target>
<jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b8568f4703616db45865d3c1a87fb64112e677e0" resname="2w">
<source>2w</source>
<target state="new">2w</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="34f9efccd44c54c0188dd18a9d3926473292be4c" resname="3d">
<source>3d</source>
<target state="new">3d</target>
<jms:reference-file line="62">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="d9c83623b7405e70a7359bcc00d8f89bd79a8a4c" resname="3h">
<source>3h</source>
<target state="new">3h</target>
<jms:reference-file line="59">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes"> <trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes">
<source>500 caracteres maximum</source> <source>500 caracteres maximum</source>
<target state="translated">500 caractères maximum</target> <target state="translated">500 caractères maximum</target>
@@ -680,7 +720,7 @@
<trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes"> <trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes">
<source>Add an admin</source> <source>Add an admin</source>
<target state="translated">Ajouter un administrateur Phraseanet</target> <target state="translated">Ajouter un administrateur Phraseanet</target>
<jms:reference-file line="109">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="115">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point" approved="yes"> <trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point" approved="yes">
<source>Add an end point</source> <source>Add an end point</source>
@@ -1175,12 +1215,12 @@
<trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?"> <trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?">
<source>Are you sure you want to erase all job informations ?</source> <source>Are you sure you want to erase all job informations ?</source>
<target state="translated">Confirmer l'effacement des informations des travaux?</target> <target state="translated">Confirmer l'effacement des informations des travaux?</target>
<jms:reference-file line="314">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="302">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?"> <trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?">
<source>Are you sure you want to erase finished job informations ?</source> <source>Are you sure you want to erase finished job informations ?</source>
<target state="translated">Confirmer l'effacement des travaux terminés?</target> <target state="translated">Confirmer l'effacement des travaux terminés?</target>
<jms:reference-file line="325">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="313">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes"> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?" approved="yes">
<source>Are you sure you want to rebuild the sub-definitions of selected records?</source> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source>
@@ -1992,7 +2032,7 @@
<trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes"> <trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes">
<source>Could not send email</source> <source>Could not send email</source>
<target state="translated">Impossible d'envoyer l'e-mail</target> <target state="translated">Impossible d'envoyer l'e-mail</target>
<jms:reference-file line="44">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="46">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes">
<source>Couleur de selection</source> <source>Couleur de selection</source>
@@ -2736,7 +2776,7 @@
<source>Email</source> <source>Email</source>
<target state="translated">E-mail</target> <target state="translated">E-mail</target>
<jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file>
<jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="135">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes"> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database" approved="yes">
<source>Email '%email%' for login '%login%' already exists in database</source> <source>Email '%email%' for login '%login%' already exists in database</source>
@@ -2772,7 +2812,7 @@
<trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes">
<source>Email test result : %email_status%</source> <source>Email test result : %email_status%</source>
<target state="translated">Résultat du test d'e-mail : %email_status%</target> <target state="translated">Résultat du test d'e-mail : %email_status%</target>
<jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="142">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour." approved="yes"> <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour." approved="yes">
<source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source> <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source>
@@ -3322,6 +3362,16 @@
<jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file>
<jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5103a4a398146306aa27923e6cce52672060bbd6" resname="Flush All Caches">
<source>Flush All Caches</source>
<target state="new">Flush All Caches</target>
<jms:reference-file line="152">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f6d859db6f9a2d8c84dcf5c840b6b1d55439ad0a" resname="Flush session">
<source>Flush session</source>
<target state="new">Flush session</target>
<jms:reference-file line="156">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes">
<source>Focal length</source> <source>Focal length</source>
<target state="translated">Longueur de focale</target> <target state="translated">Longueur de focale</target>
@@ -4201,7 +4251,7 @@
<trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes">
<source>Mail sent</source> <source>Mail sent</source>
<target state="translated">E-mail envoyé</target> <target state="translated">E-mail envoyé</target>
<jms:reference-file line="41">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="43">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes"> <trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes">
<source>Maintenance message</source> <source>Maintenance message</source>
@@ -4650,7 +4700,7 @@
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes"> <trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
<source>None of the selected records can be printed</source> <source>None of the selected records can be printed</source>
<target state="translated">Aucun des documents sélectionnés ne peut être imprimé</target> <target state="translated">Aucun des documents sélectionnés ne peut être imprimé</target>
<jms:reference-file line="184">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="187">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes"> <trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes">
<source>Not Allowed</source> <source>Not Allowed</source>
@@ -5711,7 +5761,7 @@
<trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache" approved="yes"> <trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache" approved="yes">
<source>Reset cache</source> <source>Reset cache</source>
<target state="translated">Réinitialiser le cache</target> <target state="translated">Réinitialiser le cache</target>
<jms:reference-file line="145">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="150">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes"> <trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes">
<source>Reset rights before applying template?</source> <source>Reset rights before applying template?</source>
@@ -6017,7 +6067,7 @@
<jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes"> <trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes">
<source>Send an email to the user to setup his password</source> <source>Send an email to the user to setup his password</source>
@@ -9504,22 +9554,22 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work" approved="yes"> <trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display error work</source> <source>admin::workermanager:tab:workerinfo: Display error work</source>
<target state="translated">Travaux en erreur</target> <target state="translated">Travaux en erreur</target>
<jms:reference-file line="87">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="80">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work" approved="yes"> <trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display finished work</source> <source>admin::workermanager:tab:workerinfo: Display finished work</source>
<target state="translated">Travaux terminés</target> <target state="translated">Travaux terminés</target>
<jms:reference-file line="84">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="77">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work" approved="yes"> <trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source> <source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source>
<target state="translated">Travaux interrompus</target> <target state="translated">Travaux interrompus</target>
<jms:reference-file line="90">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="83">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work" approved="yes"> <trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work" approved="yes">
<source>admin::workermanager:tab:workerinfo: Display running work</source> <source>admin::workermanager:tab:workerinfo: Display running work</source>
<target state="translated">Travaux en cours</target> <target state="translated">Travaux en cours</target>
<jms:reference-file line="81">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="74">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished" approved="yes"> <trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished" approved="yes">
<source>admin::workermanager:tab:workerinfo: Erase all finished</source> <source>admin::workermanager:tab:workerinfo: Erase all finished</source>
@@ -9534,7 +9584,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt" approved="yes"> <trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt" approved="yes">
<source>admin::workermanager:tab:workerinfo: Manually interrupt</source> <source>admin::workermanager:tab:workerinfo: Manually interrupt</source>
<target state="translated">Interrompre</target> <target state="translated">Interrompre</target>
<jms:reference-file line="151">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="144">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list" approved="yes"> <trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list" approved="yes">
<source>admin::workermanager:tab:workerinfo: Refresh list</source> <source>admin::workermanager:tab:workerinfo: Refresh list</source>
@@ -9559,12 +9609,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created" approved="yes"> <trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created" approved="yes">
<source>admin::workermanager:tab:workerinfo: created</source> <source>admin::workermanager:tab:workerinfo: created</source>
<target state="translated">Démarré</target> <target state="translated">Démarré</target>
<jms:reference-file line="112">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="105">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name" approved="yes"> <trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name" approved="yes">
<source>admin::workermanager:tab:workerinfo: databox_name</source> <source>admin::workermanager:tab:workerinfo: databox_name</source>
<target state="translated">Databox</target> <target state="translated">Databox</target>
<jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="99">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description" approved="yes"> <trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description" approved="yes">
<source>admin::workermanager:tab:workerinfo: description</source> <source>admin::workermanager:tab:workerinfo: description</source>
@@ -9574,12 +9624,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration" approved="yes"> <trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration" approved="yes">
<source>admin::workermanager:tab:workerinfo: duration</source> <source>admin::workermanager:tab:workerinfo: duration</source>
<target state="translated">Durée</target> <target state="translated">Durée</target>
<jms:reference-file line="114">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="107">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished" approved="yes"> <trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished" approved="yes">
<source>admin::workermanager:tab:workerinfo: finished</source> <source>admin::workermanager:tab:workerinfo: finished</source>
<target state="translated">Terminé</target> <target state="translated">Terminé</target>
<jms:reference-file line="113">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running"> <trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running">
<source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source> <source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source>
@@ -9589,12 +9639,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published" approved="yes"> <trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published" approved="yes">
<source>admin::workermanager:tab:workerinfo: published</source> <source>admin::workermanager:tab:workerinfo: published</source>
<target state="translated">Créé</target> <target state="translated">Créé</target>
<jms:reference-file line="111">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="104">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id" approved="yes"> <trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id" approved="yes">
<source>admin::workermanager:tab:workerinfo: record_id</source> <source>admin::workermanager:tab:workerinfo: record_id</source>
<target state="translated">Record ID</target> <target state="translated">Record ID</target>
<jms:reference-file line="107">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="100">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count"> <trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count">
<source>admin::workermanager:tab:workerinfo: refresh job count</source> <source>admin::workermanager:tab:workerinfo: refresh job count</source>
@@ -9609,7 +9659,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status" approved="yes"> <trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status" approved="yes">
<source>admin::workermanager:tab:workerinfo: status</source> <source>admin::workermanager:tab:workerinfo: status</source>
<target state="translated">Etat</target> <target state="translated">Etat</target>
<jms:reference-file line="115">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="108">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title" approved="yes"> <trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title" approved="yes">
<source>admin::workermanager:tab:workerinfo: title</source> <source>admin::workermanager:tab:workerinfo: title</source>
@@ -9619,12 +9669,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work" approved="yes"> <trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work" approved="yes">
<source>admin::workermanager:tab:workerinfo: work</source> <source>admin::workermanager:tab:workerinfo: work</source>
<target state="translated">Travaux</target> <target state="translated">Travaux</target>
<jms:reference-file line="108">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="101">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on" approved="yes"> <trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on" approved="yes">
<source>admin::workermanager:tab:workerinfo: work_on</source> <source>admin::workermanager:tab:workerinfo: work_on</source>
<target state="translated">Objet</target> <target state="translated">Objet</target>
<jms:reference-file line="109">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="102">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message"> <trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message">
<source>admin:databases:database:file-size-detail-warning-message</source> <source>admin:databases:database:file-size-detail-warning-message</source>
@@ -9878,13 +9928,18 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all"> <trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all">
<source>all</source> <source>all</source>
<target state="new">all</target> <target state="new">all</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="66">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes">
<source>all caches services have been flushed</source> <source>all caches services have been flushed</source>
<target state="translated">Tous les services de caches ont été purgés</target> <target state="translated">Tous les services de caches ont été purgés</target>
<jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a54cbfd43ad8987c0ecbc5e8fa51d7c571369ddc" resname="all redis session flushed">
<source>all redis session flushed</source>
<target state="new">all redis session flushed</target>
<jms:reference-file line="98">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes"> <trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes">
<source>an error occured</source> <source>an error occured</source>
<target state="translated">une erreur est survenue</target> <target state="translated">une erreur est survenue</target>
@@ -10128,7 +10183,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes"> <trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
<source>boutton::imprimer</source> <source>boutton::imprimer</source>
<target state="translated">Imprimer</target> <target state="translated">Imprimer</target>
<jms:reference-file line="180">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="183">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
<source>boutton::modifier</source> <source>boutton::modifier</source>
@@ -10176,7 +10231,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes"> <trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes">
<source>boutton::reinitialiser</source> <source>boutton::reinitialiser</source>
<target state="translated">Ré-initialiser</target> <target state="translated">Ré-initialiser</target>
<jms:reference-file line="118">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="124">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes">
<source>boutton::remplacer</source> <source>boutton::remplacer</source>
@@ -10324,7 +10379,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file>
<jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file>
<jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file>
<jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file>
<jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file>
<jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file>
<jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file>
@@ -10780,7 +10835,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes"> <trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
<source>export:: erreur : aucun document selectionne</source> <source>export:: erreur : aucun document selectionne</source>
<target state="translated">Erreur : aucun document sélectionné</target> <target state="translated">Erreur : aucun document sélectionné</target>
<jms:reference-file line="186">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="189">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes"> <trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
<source>export:: telechargement</source> <source>export:: telechargement</source>
@@ -11235,7 +11290,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results"> <trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results">
<source>job::tab results</source> <source>job::tab results</source>
<target state="needs-translation">Job(s)</target> <target state="needs-translation">Job(s)</target>
<jms:reference-file line="93">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="86">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since"> <trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since">
<source>job::tab time filter since</source> <source>job::tab time filter since</source>
@@ -11245,7 +11300,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration"> <trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration">
<source>job::tab total duration</source> <source>job::tab total duration</source>
<target state="new">job::tab total duration</target> <target state="new">job::tab total duration</target>
<jms:reference-file line="97">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="90">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB"> <trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB">
<source>job::tab total entry in DB</source> <source>job::tab total entry in DB</source>
@@ -12097,7 +12152,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
<source>phraseanet:: preview</source> <source>phraseanet:: preview</source>
<target state="translated">Prévisualisation</target> <target state="translated">Prévisualisation</target>
<jms:reference-file line="40">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
@@ -12478,22 +12533,22 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef"> <trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef">
<source>print:: Can download subdef</source> <source>print:: Can download subdef</source>
<target state="translated">Ajouter un lien de téléchargement</target> <target state="translated">Ajouter un lien de téléchargement</target>
<jms:reference-file line="94">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview"> <trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
<source>print:: Choose subdef for preview</source> <source>print:: Choose subdef for preview</source>
<target state="translated">Sélectionner une sous-définition pour l'impression de la prévisualisation</target> <target state="translated">Sélectionner une sous-définition pour l'impression de la prévisualisation</target>
<jms:reference-file line="145">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="148">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail"> <trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
<source>print:: Choose subdef for thumbnail</source> <source>print:: Choose subdef for thumbnail</source>
<target state="translated">Sélectionner la sous-définition pour l'impression de la vignette</target> <target state="translated">Sélectionner la sous-définition pour l'impression de la vignette</target>
<jms:reference-file line="161">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="164">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf"> <trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
<source>print:: add and remember password to protect the pdf</source> <source>print:: add and remember password to protect the pdf</source>
<target state="translated">Définir un mot de passe pour l'ouverture du PDF (optionnel)</target> <target state="translated">Définir un mot de passe pour l'ouverture du PDF (optionnel)</target>
<jms:reference-file line="87">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="88">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes"> <trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes">
<source>print:: basket feedback</source> <source>print:: basket feedback</source>
@@ -12508,7 +12563,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename"> <trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
<source>print:: choose filename</source> <source>print:: choose filename</source>
<target state="translated">Définition du nom des fichiers téléchargés</target> <target state="translated">Définition du nom des fichiers téléchargés</target>
<jms:reference-file line="124">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model"> <trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
<source>print:: choose model</source> <source>print:: choose model</source>
@@ -12518,84 +12573,84 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day"> <trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
<source>print:: day</source> <source>print:: day</source>
<target state="translated">Jour</target> <target state="translated">Jour</target>
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes"> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes">
<source>print:: description</source> <source>print:: description</source>
<target state="translated">Notice seule</target> <target state="translated">Notice seule</target>
<jms:reference-file line="56">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="57">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color"> <trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color">
<source>print:: description field title color</source> <source>print:: description field title color</source>
<target state="translated">Couleur du label de champ</target> <target state="translated">Couleur du label de champ</target>
<jms:reference-file line="81">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="82">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size"> <trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size">
<source>print:: description font size</source> <source>print:: description font size</source>
<target state="translated">Taille de la police</target> <target state="translated">Taille de la police</target>
<jms:reference-file line="76">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="77">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download"> <trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
<source>print:: download</source> <source>print:: download</source>
<target state="translated">Lien de téléchargement</target> <target state="translated">Lien de téléchargement</target>
<jms:reference-file line="438">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="447">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="529">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="542">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="817">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="834">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable"> <trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
<source>print:: element downloadable</source> <source>print:: element downloadable</source>
<target state="translated">Choisir la sous définition téléchargée</target> <target state="translated">Choisir la sous définition téléchargée</target>
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model"> <trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
<source>print:: element printable on preview model</source> <source>print:: element printable on preview model</source>
<target state="translated">Sous définition disponible</target> <target state="translated">Sous définition disponible</target>
<jms:reference-file line="156">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model"> <trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
<source>print:: element printable on thumbnail model</source> <source>print:: element printable on thumbnail model</source>
<target state="translated">Sous définition disponible</target> <target state="translated">Sous définition disponible</target>
<jms:reference-file line="172">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="175">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour"> <trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
<source>print:: hour</source> <source>print:: hour</source>
<target state="translated">Heure</target> <target state="translated">Heure</target>
<jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes"> <trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
<source>print:: image de choix et description</source> <source>print:: image de choix et description</source>
<target state="translated">Prévisualisation et notice d'indexation</target> <target state="translated">Prévisualisation et notice d'indexation</target>
<jms:reference-file line="48">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes"> <trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
<source>print:: image de choix et description avec planche contact</source> <source>print:: image de choix et description avec planche contact</source>
<target state="translated">Prévisualisation et notice avec planche contact</target> <target state="translated">Prévisualisation et notice avec planche contact</target>
<jms:reference-file line="52">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="53">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes"> <trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
<source>print:: image de choix seulement</source> <source>print:: image de choix seulement</source>
<target state="translated">Prévisualisation</target> <target state="translated">Prévisualisation</target>
<jms:reference-file line="44">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes"> <trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
<source>print:: imagette</source> <source>print:: imagette</source>
<target state="translated">Vignette</target> <target state="translated">Vignette</target>
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes"> <trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
<source>print:: liste d'imagettes</source> <source>print:: liste d'imagettes</source>
<target state="translated">Liste de vignette(s) avec notice(s)</target> <target state="translated">Liste de vignette(s) avec notice(s)</target>
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="66">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month"> <trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
<source>print:: month</source> <source>print:: month</source>
<target state="translated">Mois</target> <target state="translated">Mois</target>
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name"> <trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
<source>print:: original media name</source> <source>print:: original media name</source>
<target state="translated">Nom original du fichier</target> <target state="translated">Nom original du fichier</target>
<jms:reference-file line="131">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="134">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description"> <trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
<source>print:: pdf description</source> <source>print:: pdf description</source>
@@ -12610,132 +12665,132 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes"> <trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
<source>print:: planche contact (mosaique)</source> <source>print:: planche contact (mosaique)</source>
<target state="translated">Planche contact</target> <target state="translated">Planche contact</target>
<jms:reference-file line="69">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="70">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations"> <trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations">
<source>print:: print records informations</source> <source>print:: print records informations</source>
<target state="translated">Ajouter la section informations de l'enregistrement</target> <target state="translated">Ajouter la section informations de l'enregistrement</target>
<jms:reference-file line="36">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options"> <trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
<source>print:: some options</source> <source>print:: some options</source>
<target state="translated">Réglages supplémentaires</target> <target state="translated">Réglages supplémentaires</target>
<jms:reference-file line="74">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="75">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping"> <trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
<source>print:: subdef mapping</source> <source>print:: subdef mapping</source>
<target state="translated">Définir les sous définitions utilisées pour l'impression</target> <target state="translated">Définir les sous définitions utilisées pour l'impression</target>
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl"> <trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
<source>print:: subdef url ttl</source> <source>print:: subdef url ttl</source>
<target state="translated">Durée de validité du lien de téléchargement</target> <target state="translated">Durée de validité du lien de téléchargement</target>
<jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title"> <trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
<source>print:: title</source> <source>print:: title</source>
<target state="translated">Titre du document</target> <target state="translated">Titre du document</target>
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="130">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed"> <trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
<source>print:: warning! Only available image for chosen subdef is printed</source> <source>print:: warning! Only available image for chosen subdef is printed</source>
<target state="translated">Si la sous définition choisie n'existe pas, elle sera remplacée par une image de substitution</target> <target state="translated">Si la sous définition choisie n'existe pas, elle sera remplacée par une image de substitution</target>
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="144">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable"> <trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
<source>print:: warning! Only available media for chosen subdef is downloadable</source> <source>print:: warning! Only available media for chosen subdef is downloadable</source>
<target state="translated">Laisser la durée vide pour une validité permanente</target> <target state="translated">Laisser la durée vide pour une validité permanente</target>
<jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week"> <trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
<source>print:: week</source> <source>print:: week</source>
<target state="translated">Semaine</target> <target state="translated">Semaine</target>
<jms:reference-file line="119">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="122">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes"> <trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes">
<source>print_feedback:: Document generated on :</source> <source>print_feedback:: Document generated on :</source>
<target state="translated">Impression générée le :</target> <target state="translated">Impression générée le :</target>
<jms:reference-file line="589">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="602">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active" approved="yes"> <trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active" approved="yes">
<source>print_feedback:: Feedback active</source> <source>print_feedback:: Feedback active</source>
<target state="translated">Validation en cours</target> <target state="translated">Validation en cours</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired" approved="yes"> <trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired" approved="yes">
<source>print_feedback:: Feedback expired</source> <source>print_feedback:: Feedback expired</source>
<target state="translated">Validation Fermée</target> <target state="translated">Validation Fermée</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : " approved="yes"> <trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : " approved="yes">
<source>print_feedback:: Feedback expiring on :</source> <source>print_feedback:: Feedback expiring on :</source>
<target state="translated">Expire le :</target> <target state="translated">Expire le :</target>
<jms:reference-file line="607">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="620">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : " approved="yes"> <trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : " approved="yes">
<source>print_feedback:: Feedback initiated by :</source> <source>print_feedback:: Feedback initiated by :</source>
<target state="translated">Validation envoyée par :</target> <target state="translated">Validation envoyée par :</target>
<jms:reference-file line="595">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="608">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : " approved="yes"> <trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : " approved="yes">
<source>print_feedback:: Feedback initiated on :</source> <source>print_feedback:: Feedback initiated on :</source>
<target state="translated">Début de validation le :</target> <target state="translated">Début de validation le :</target>
<jms:reference-file line="601">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="614">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%" approved="yes"> <trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%" approved="yes">
<source>print_feedback:: Feedback on basket %name%</source> <source>print_feedback:: Feedback on basket %name%</source>
<target state="translated">Rapport de validation de : %name%</target> <target state="translated">Rapport de validation de : %name%</target>
<jms:reference-file line="583">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="596">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non" approved="yes"> <trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non" approved="yes">
<source>print_feedback:: Non</source> <source>print_feedback:: Non</source>
<target state="translated">Non</target> <target state="translated">Non</target>
<jms:reference-file line="868">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="885">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui" approved="yes"> <trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui" approved="yes">
<source>print_feedback:: Oui</source> <source>print_feedback:: Oui</source>
<target state="translated">Oui</target> <target state="translated">Oui</target>
<jms:reference-file line="864">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="881">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : " approved="yes"> <trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : " approved="yes">
<source>print_feedback:: Participants :</source> <source>print_feedback:: Participants :</source>
<target state="translated">Participants :</target> <target state="translated">Participants :</target>
<jms:reference-file line="617">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="630">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :" approved="yes"> <trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :" approved="yes">
<source>print_feedback:: Votes :</source> <source>print_feedback:: Votes :</source>
<target state="translated">Approbations :</target> <target state="translated">Approbations :</target>
<jms:reference-file line="836">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="853">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: " approved="yes"> <trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: " approved="yes">
<source>print_feedback:: base name:</source> <source>print_feedback:: base name:</source>
<target state="translated">Base :</target> <target state="translated">Base :</target>
<jms:reference-file line="952">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="969">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: " approved="yes"> <trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: " approved="yes">
<source>print_feedback:: document Uuid:</source> <source>print_feedback:: document Uuid:</source>
<target state="translated">Id unique de document :</target> <target state="translated">Id unique de document :</target>
<jms:reference-file line="972">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="989">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté" approved="yes"> <trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté" approved="yes">
<source>print_feedback:: non voté</source> <source>print_feedback:: non voté</source>
<target state="translated">Non exprimé</target> <target state="translated">Non exprimé</target>
<jms:reference-file line="859">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="876">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: " approved="yes"> <trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: " approved="yes">
<source>print_feedback:: originale filename:</source> <source>print_feedback:: originale filename:</source>
<target state="translated">Nom de fichier :</target> <target state="translated">Nom de fichier :</target>
<jms:reference-file line="962">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="979">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: "> <trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: ">
<source>print_feedback:: record id:</source> <source>print_feedback:: record id:</source>
<target state="translated">Record Id :</target> <target state="translated">Record Id :</target>
<jms:reference-file line="942">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="959">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: " approved="yes"> <trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: " approved="yes">
<source>print_feedback:: record title:</source> <source>print_feedback:: record title:</source>
<target state="translated">Titre :</target> <target state="translated">Titre :</target>
<jms:reference-file line="932">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="949">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes"> <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive" approved="yes">
<source>prive</source> <source>prive</source>
@@ -14778,12 +14833,12 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
<trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes"> <trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes">
<source>setup:: Reinitialisation des droits admins</source> <source>setup:: Reinitialisation des droits admins</source>
<target state="translated">Réinitialiser les droits des administrateurs</target> <target state="translated">Réinitialiser les droits des administrateurs</target>
<jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="123">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes"> <trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes">
<source>setup:: administrateurs de l'application</source> <source>setup:: administrateurs de l'application</source>
<target state="translated">Administrateurs de l'application</target> <target state="translated">Administrateurs de l'application</target>
<jms:reference-file line="99">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="105">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes"> <trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes">
<source>setup:: ajouter un administrateur des commandes</source> <source>setup:: ajouter un administrateur des commandes</source>
@@ -14808,7 +14863,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
<trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes"> <trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes">
<source>setup::Tests d'envois d'emails</source> <source>setup::Tests d'envois d'emails</source>
<target state="translated">Tests d'envois d'e-mails</target> <target state="translated">Tests d'envois d'e-mails</target>
<jms:reference-file line="127">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="133">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link" approved="yes"> <trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link" approved="yes">
<source>setup::custom-link:add-link</source> <source>setup::custom-link:add-link</source>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:38:37Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:51:14Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>
@@ -411,6 +411,31 @@
<target state="translated">Maximum 1000 tekens</target> <target state="translated">Maximum 1000 tekens</target>
<jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="45">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7136e3b25b3e26722b5b03aa32a828c883121e87" resname="12h">
<source>12h</source>
<target state="new">12h</target>
<jms:reference-file line="60">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="11a2757082428311f587b7664fa9840376137f80" resname="1d">
<source>1d</source>
<target state="new">1d</target>
<jms:reference-file line="61">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="e9c9f7bc39bb993fb7ed87ec63024c583691a6bd" resname="1h">
<source>1h</source>
<target state="new">1h</target>
<jms:reference-file line="58">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="dc4ea83928e4079a6ca1eb64e1e4cc7952c8d2ac" resname="1m">
<source>1m</source>
<target state="new">1m</target>
<jms:reference-file line="65">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="323945f29da5d029038c3e22734b3c59d0f64a26" resname="1w">
<source>1w</source>
<target state="new">1w</target>
<jms:reference-file line="63">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes"> <trans-unit id="fc99d2489a234a32c44e057d0d49959af5a26928" resname="2000 caracteres maximum" approved="yes">
<source>2000 caracteres maximum</source> <source>2000 caracteres maximum</source>
<target state="translated">Maximum 2000 tekens</target> <target state="translated">Maximum 2000 tekens</target>
@@ -431,6 +456,21 @@
<target state="translated">Maximum 255 tekens</target> <target state="translated">Maximum 255 tekens</target>
<jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file> <jms:reference-file line="31">Bridge/Dailymotion/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b8568f4703616db45865d3c1a87fb64112e677e0" resname="2w">
<source>2w</source>
<target state="new">2w</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="34f9efccd44c54c0188dd18a9d3926473292be4c" resname="3d">
<source>3d</source>
<target state="new">3d</target>
<jms:reference-file line="62">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="d9c83623b7405e70a7359bcc00d8f89bd79a8a4c" resname="3h">
<source>3h</source>
<target state="new">3h</target>
<jms:reference-file line="59">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes"> <trans-unit id="c5026fb21d37b3cae42754a49a16960bb776ed5e" resname="500 caracteres maximum" approved="yes">
<source>500 caracteres maximum</source> <source>500 caracteres maximum</source>
<target state="translated">Maximum 500 tekens</target> <target state="translated">Maximum 500 tekens</target>
@@ -681,7 +721,7 @@
<trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes"> <trans-unit id="18a7d7025f09d8fd494b56d81e5208ec96510c99" resname="Add an admin" approved="yes">
<source>Add an admin</source> <source>Add an admin</source>
<target state="translated">Voeg een beheerder toe</target> <target state="translated">Voeg een beheerder toe</target>
<jms:reference-file line="109">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="115">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point"> <trans-unit id="c67e5003ccafc3da11bb6a633844ddac62f79fed" resname="Add an end point">
<source>Add an end point</source> <source>Add an end point</source>
@@ -1176,12 +1216,12 @@
<trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?"> <trans-unit id="30f09ea38857b13637c9f20f2a17e7bfc3ac3b3a" resname="Are you sure you want to erase all job informations ?">
<source>Are you sure you want to erase all job informations ?</source> <source>Are you sure you want to erase all job informations ?</source>
<target state="new">Are you sure you want to erase all job informations ?</target> <target state="new">Are you sure you want to erase all job informations ?</target>
<jms:reference-file line="300">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="302">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?"> <trans-unit id="aec19ed81928870d688862753f3d3e55db655daf" resname="Are you sure you want to erase finished job informations ?">
<source>Are you sure you want to erase finished job informations ?</source> <source>Are you sure you want to erase finished job informations ?</source>
<target state="new">Are you sure you want to erase finished job informations ?</target> <target state="new">Are you sure you want to erase finished job informations ?</target>
<jms:reference-file line="311">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="313">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?"> <trans-unit id="0ad86fda5d367a9ff74a9c278344f3bb8f75c223" resname="Are you sure you want to rebuild the sub-definitions of selected records?">
<source>Are you sure you want to rebuild the sub-definitions of selected records?</source> <source>Are you sure you want to rebuild the sub-definitions of selected records?</source>
@@ -1994,7 +2034,7 @@
<trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes"> <trans-unit id="7d8c064a53d2eadc4274954c55279490c440c5d0" resname="Could not send email" approved="yes">
<source>Could not send email</source> <source>Could not send email</source>
<target state="translated">Kon geen mail versturen</target> <target state="translated">Kon geen mail versturen</target>
<jms:reference-file line="44">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="46">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes"> <trans-unit id="7ebde54d7a6733f04781a2112a3d7548cb144e1f" resname="Couleur de selection" approved="yes">
<source>Couleur de selection</source> <source>Couleur de selection</source>
@@ -2739,7 +2779,7 @@
<source>Email</source> <source>Email</source>
<target>Email</target> <target>Email</target>
<jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file> <jms:reference-file line="140">admin/publications/fiche.html.twig</jms:reference-file>
<jms:reference-file line="129">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="135">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database"> <trans-unit id="4492ab77c9378c5582b87621ecd89c96fef88640" resname="Email '%email%' for login '%login%' already exists in database">
<source>Email '%email%' for login '%login%' already exists in database</source> <source>Email '%email%' for login '%login%' already exists in database</source>
@@ -2775,7 +2815,7 @@
<trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes"> <trans-unit id="b529e23b7676146d364266e97d9f242eac2e28b4" resname="Email test result : %email_status%" approved="yes">
<source>Email test result : %email_status%</source> <source>Email test result : %email_status%</source>
<target state="translated">Email test resultaat : %email_status%</target> <target state="translated">Email test resultaat : %email_status%</target>
<jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="142">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour."> <trans-unit id="c839b2905a9c9e4e611519e461c6f3e0dde4ec78" resname="Email:deletion:request:message Hello %civility% %firstName% %lastName%.&#10; We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below.&#10; If you are not at the origin of this request, please change your password as soon as possible %resetPassword%&#10; Link is valid for one hour.">
<source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source> <source>Email:deletion:request:message Hello %civility% %firstName% %lastName%. We have received an account deletion request for your account on %urlInstance%, please confirm this deletion by clicking on the link below. If you are not at the origin of this request, please change your password as soon as possible %resetPassword% Link is valid for one hour.</source>
@@ -3328,6 +3368,16 @@
<jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file> <jms:reference-file line="35">Media/Subdef/Unknown.php</jms:reference-file>
<jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file> <jms:reference-file line="37">Media/Subdef/Image.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5103a4a398146306aa27923e6cce52672060bbd6" resname="Flush All Caches">
<source>Flush All Caches</source>
<target state="new">Flush All Caches</target>
<jms:reference-file line="152">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f6d859db6f9a2d8c84dcf5c840b6b1d55439ad0a" resname="Flush session">
<source>Flush session</source>
<target state="new">Flush session</target>
<jms:reference-file line="156">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes"> <trans-unit id="9bd85a7d22f6cdee554e5b9e865d26dcbb4dafc9" resname="Focal length" approved="yes">
<source>Focal length</source> <source>Focal length</source>
<target state="translated">Brandpuntafstand</target> <target state="translated">Brandpuntafstand</target>
@@ -4207,7 +4257,7 @@
<trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes"> <trans-unit id="fdb9efd7a759711741fc699549c92e54c664e38c" resname="Mail sent" approved="yes">
<source>Mail sent</source> <source>Mail sent</source>
<target state="translated">Mail werd verstuurd</target> <target state="translated">Mail werd verstuurd</target>
<jms:reference-file line="41">Controller/Admin/DashboardController.php</jms:reference-file> <jms:reference-file line="43">Controller/Admin/DashboardController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes"> <trans-unit id="ca62571facf94a0b6b601235fa440be30c505b24" resname="Maintenance message" approved="yes">
<source>Maintenance message</source> <source>Maintenance message</source>
@@ -4656,7 +4706,7 @@
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes"> <trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
<source>None of the selected records can be printed</source> <source>None of the selected records can be printed</source>
<target state="translated">Geen enkele van de geselecteerde records kunnen geprint worden</target> <target state="translated">Geen enkele van de geselecteerde records kunnen geprint worden</target>
<jms:reference-file line="184">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="187">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes"> <trans-unit id="7b420925e6c665d5e7ff085b6b7fd4c040af09f2" resname="Not Allowed" approved="yes">
<source>Not Allowed</source> <source>Not Allowed</source>
@@ -5717,7 +5767,7 @@
<trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache"> <trans-unit id="a99b12995cce5031b4ec97597a303d7ac6cf3e70" resname="Reset cache">
<source>Reset cache</source> <source>Reset cache</source>
<target>Reset cache</target> <target>Reset cache</target>
<jms:reference-file line="145">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="150">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes"> <trans-unit id="da1cbf7d133c606ffdf7c1c5f929764ec22c3eb5" resname="Reset rights before applying template?" approved="yes">
<source>Reset rights before applying template?</source> <source>Reset rights before applying template?</source>
@@ -6023,7 +6073,7 @@
<jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="110">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="187">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="222">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="130">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="136">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes"> <trans-unit id="3b6564ae1423d96730d38a49a4c796ed79c6e0b1" resname="Send an email to the user to setup his password" approved="yes">
<source>Send an email to the user to setup his password</source> <source>Send an email to the user to setup his password</source>
@@ -9509,22 +9559,22 @@
<trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work"> <trans-unit id="9148347be151bf870812d27383e3023050cdc547" resname="admin::workermanager:tab:workerinfo: Display error work">
<source>admin::workermanager:tab:workerinfo: Display error work</source> <source>admin::workermanager:tab:workerinfo: Display error work</source>
<target state="new">admin::workermanager:tab:workerinfo: Display error work</target> <target state="new">admin::workermanager:tab:workerinfo: Display error work</target>
<jms:reference-file line="78">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="80">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work"> <trans-unit id="a4f3faf8ed4ef945305d5be714e3962fc1afc0fc" resname="admin::workermanager:tab:workerinfo: Display finished work">
<source>admin::workermanager:tab:workerinfo: Display finished work</source> <source>admin::workermanager:tab:workerinfo: Display finished work</source>
<target state="new">admin::workermanager:tab:workerinfo: Display finished work</target> <target state="new">admin::workermanager:tab:workerinfo: Display finished work</target>
<jms:reference-file line="75">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="77">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work"> <trans-unit id="9b1c4bb50723e3e2c6d602930a398cd9514d9c7b" resname="admin::workermanager:tab:workerinfo: Display manually interrupt work">
<source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source> <source>admin::workermanager:tab:workerinfo: Display manually interrupt work</source>
<target state="new">admin::workermanager:tab:workerinfo: Display manually interrupt work</target> <target state="new">admin::workermanager:tab:workerinfo: Display manually interrupt work</target>
<jms:reference-file line="81">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="83">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work"> <trans-unit id="6f256bef318dba5647c9d5609bf1312ef1cadf0e" resname="admin::workermanager:tab:workerinfo: Display running work">
<source>admin::workermanager:tab:workerinfo: Display running work</source> <source>admin::workermanager:tab:workerinfo: Display running work</source>
<target state="new">admin::workermanager:tab:workerinfo: Display running work</target> <target state="new">admin::workermanager:tab:workerinfo: Display running work</target>
<jms:reference-file line="72">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="74">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished"> <trans-unit id="e837e79a25d040f7f4a9f1f3fbdc3ff0b121b40e" resname="admin::workermanager:tab:workerinfo: Erase all finished">
<source>admin::workermanager:tab:workerinfo: Erase all finished</source> <source>admin::workermanager:tab:workerinfo: Erase all finished</source>
@@ -9539,7 +9589,7 @@
<trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt"> <trans-unit id="8a0c668e153f9c0cde1b7ca66e99fb066ddaae58" resname="admin::workermanager:tab:workerinfo: Manually interrupt">
<source>admin::workermanager:tab:workerinfo: Manually interrupt</source> <source>admin::workermanager:tab:workerinfo: Manually interrupt</source>
<target state="new">admin::workermanager:tab:workerinfo: Manually interrupt</target> <target state="new">admin::workermanager:tab:workerinfo: Manually interrupt</target>
<jms:reference-file line="142">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="144">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list"> <trans-unit id="f2d2e6290472f0162503ac91820f811cade2ce64" resname="admin::workermanager:tab:workerinfo: Refresh list">
<source>admin::workermanager:tab:workerinfo: Refresh list</source> <source>admin::workermanager:tab:workerinfo: Refresh list</source>
@@ -9564,12 +9614,12 @@
<trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created"> <trans-unit id="224add9949a95aa2f40517f6f74ad86e4a76e376" resname="admin::workermanager:tab:workerinfo: created">
<source>admin::workermanager:tab:workerinfo: created</source> <source>admin::workermanager:tab:workerinfo: created</source>
<target state="new">admin::workermanager:tab:workerinfo: created</target> <target state="new">admin::workermanager:tab:workerinfo: created</target>
<jms:reference-file line="103">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="105">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name"> <trans-unit id="910100edbd14eded37487190272ca50d5497af60" resname="admin::workermanager:tab:workerinfo: databox_name">
<source>admin::workermanager:tab:workerinfo: databox_name</source> <source>admin::workermanager:tab:workerinfo: databox_name</source>
<target state="new">admin::workermanager:tab:workerinfo: databox_name</target> <target state="new">admin::workermanager:tab:workerinfo: databox_name</target>
<jms:reference-file line="97">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="99">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description"> <trans-unit id="462620d0bd43581cec9d88b9bc09565219cc5261" resname="admin::workermanager:tab:workerinfo: description">
<source>admin::workermanager:tab:workerinfo: description</source> <source>admin::workermanager:tab:workerinfo: description</source>
@@ -9579,12 +9629,12 @@
<trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration"> <trans-unit id="23cbc34865b1b4777a5c169cc935c74b67bcf006" resname="admin::workermanager:tab:workerinfo: duration">
<source>admin::workermanager:tab:workerinfo: duration</source> <source>admin::workermanager:tab:workerinfo: duration</source>
<target state="new">admin::workermanager:tab:workerinfo: duration</target> <target state="new">admin::workermanager:tab:workerinfo: duration</target>
<jms:reference-file line="105">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="107">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished"> <trans-unit id="7a47a4872345c5f33d3fa94838e52e8e3da538ad" resname="admin::workermanager:tab:workerinfo: finished">
<source>admin::workermanager:tab:workerinfo: finished</source> <source>admin::workermanager:tab:workerinfo: finished</source>
<target state="new">admin::workermanager:tab:workerinfo: finished</target> <target state="new">admin::workermanager:tab:workerinfo: finished</target>
<jms:reference-file line="104">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running"> <trans-unit id="d6ecf648e4dbb36172c9f3cacd96a8c4cb9b94e5" resname="admin::workermanager:tab:workerinfo: manually mark as canceled job running">
<source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source> <source>admin::workermanager:tab:workerinfo: manually mark as canceled job running</source>
@@ -9594,12 +9644,12 @@
<trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published"> <trans-unit id="4cf799c9714b4d16ca82cfac3fc68b2918b46430" resname="admin::workermanager:tab:workerinfo: published">
<source>admin::workermanager:tab:workerinfo: published</source> <source>admin::workermanager:tab:workerinfo: published</source>
<target state="new">admin::workermanager:tab:workerinfo: published</target> <target state="new">admin::workermanager:tab:workerinfo: published</target>
<jms:reference-file line="102">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="104">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id"> <trans-unit id="feed33fba251da5c0451124020d85250982721d7" resname="admin::workermanager:tab:workerinfo: record_id">
<source>admin::workermanager:tab:workerinfo: record_id</source> <source>admin::workermanager:tab:workerinfo: record_id</source>
<target state="new">admin::workermanager:tab:workerinfo: record_id</target> <target state="new">admin::workermanager:tab:workerinfo: record_id</target>
<jms:reference-file line="98">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="100">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count"> <trans-unit id="8ff3cefe308c32748dd2a2586c3291b70cbf2507" resname="admin::workermanager:tab:workerinfo: refresh job count">
<source>admin::workermanager:tab:workerinfo: refresh job count</source> <source>admin::workermanager:tab:workerinfo: refresh job count</source>
@@ -9614,7 +9664,7 @@
<trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status"> <trans-unit id="5695c41f76dc3aa0174d22160fe0ae8368c89881" resname="admin::workermanager:tab:workerinfo: status">
<source>admin::workermanager:tab:workerinfo: status</source> <source>admin::workermanager:tab:workerinfo: status</source>
<target state="new">admin::workermanager:tab:workerinfo: status</target> <target state="new">admin::workermanager:tab:workerinfo: status</target>
<jms:reference-file line="106">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="108">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title"> <trans-unit id="38edf478e9ed693cdb2ab5ec786ab92e670a44c9" resname="admin::workermanager:tab:workerinfo: title">
<source>admin::workermanager:tab:workerinfo: title</source> <source>admin::workermanager:tab:workerinfo: title</source>
@@ -9624,12 +9674,12 @@
<trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work"> <trans-unit id="d3595bcfd426abf2818b25aadd474d823f36c957" resname="admin::workermanager:tab:workerinfo: work">
<source>admin::workermanager:tab:workerinfo: work</source> <source>admin::workermanager:tab:workerinfo: work</source>
<target state="new">admin::workermanager:tab:workerinfo: work</target> <target state="new">admin::workermanager:tab:workerinfo: work</target>
<jms:reference-file line="99">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="101">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on"> <trans-unit id="2764b360bd443b91d7b611bc181e33c30bbdce07" resname="admin::workermanager:tab:workerinfo: work_on">
<source>admin::workermanager:tab:workerinfo: work_on</source> <source>admin::workermanager:tab:workerinfo: work_on</source>
<target state="new">admin::workermanager:tab:workerinfo: work_on</target> <target state="new">admin::workermanager:tab:workerinfo: work_on</target>
<jms:reference-file line="100">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="102">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message"> <trans-unit id="f153abd48aaee38d404f7d6007433850b63c631b" resname="admin:databases:database:file-size-detail-warning-message">
<source>admin:databases:database:file-size-detail-warning-message</source> <source>admin:databases:database:file-size-detail-warning-message</source>
@@ -9883,13 +9933,18 @@
<trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all"> <trans-unit id="d87c448044defb778f33158d8ccf94a20531d600" resname="all">
<source>all</source> <source>all</source>
<target state="new">all</target> <target state="new">all</target>
<jms:reference-file line="64">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="66">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes"> <trans-unit id="edde11c24ed5e6df4e416143e77248e908567faa" resname="all caches services have been flushed" approved="yes">
<source>all caches services have been flushed</source> <source>all caches services have been flushed</source>
<target state="translated">Alle caches services zijn geflushed</target> <target state="translated">Alle caches services zijn geflushed</target>
<jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="92">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a54cbfd43ad8987c0ecbc5e8fa51d7c571369ddc" resname="all redis session flushed">
<source>all redis session flushed</source>
<target state="new">all redis session flushed</target>
<jms:reference-file line="98">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes"> <trans-unit id="afaee7bf6eca9099dc9356fbc46fb4f1716b8916" resname="an error occured" approved="yes">
<source>an error occured</source> <source>an error occured</source>
<target state="translated">een fout geeft zich voorgedaan</target> <target state="translated">een fout geeft zich voorgedaan</target>
@@ -10133,7 +10188,7 @@
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes"> <trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
<source>boutton::imprimer</source> <source>boutton::imprimer</source>
<target state="translated">Print</target> <target state="translated">Print</target>
<jms:reference-file line="180">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="183">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes"> <trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
<source>boutton::modifier</source> <source>boutton::modifier</source>
@@ -10181,7 +10236,7 @@
<trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes"> <trans-unit id="5b00c6d25272209c2946e2cc9e725722e139b80d" resname="boutton::reinitialiser" approved="yes">
<source>boutton::reinitialiser</source> <source>boutton::reinitialiser</source>
<target state="translated">Herinitialiseren</target> <target state="translated">Herinitialiseren</target>
<jms:reference-file line="118">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="124">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes"> <trans-unit id="7c93f19dc5b7cef99db6fb84975ef795e3e87102" resname="boutton::remplacer" approved="yes">
<source>boutton::remplacer</source> <source>boutton::remplacer</source>
@@ -10329,7 +10384,7 @@
<jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file> <jms:reference-file line="707">web/admin/editusers.html.twig</jms:reference-file>
<jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file> <jms:reference-file line="83">web/admin/setup.html.twig</jms:reference-file>
<jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file> <jms:reference-file line="34">web/admin/structure.html.twig</jms:reference-file>
<jms:reference-file line="111">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file>
<jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file> <jms:reference-file line="274">admin/user/registrations.html.twig</jms:reference-file>
<jms:reference-file line="41">user/import/view.html.twig</jms:reference-file> <jms:reference-file line="41">user/import/view.html.twig</jms:reference-file>
<jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file> <jms:reference-file line="159">admin/statusbit/edit.html.twig</jms:reference-file>
@@ -10785,7 +10840,7 @@
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes"> <trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
<source>export:: erreur : aucun document selectionne</source> <source>export:: erreur : aucun document selectionne</source>
<target state="translated">Erreur : geen enkel document geslecteerd</target> <target state="translated">Erreur : geen enkel document geslecteerd</target>
<jms:reference-file line="186">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="189">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes"> <trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
<source>export:: telechargement</source> <source>export:: telechargement</source>
@@ -11240,7 +11295,7 @@
<trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results"> <trans-unit id="07837fb2f14fde7fb76c1d8fcbc017e871c8592b" resname="job::tab results">
<source>job::tab results</source> <source>job::tab results</source>
<target state="new">job::tab results</target> <target state="new">job::tab results</target>
<jms:reference-file line="84">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="86">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since"> <trans-unit id="24a02cbb4df9ceb5425c798fea550d8a7f6d55f5" resname="job::tab time filter since">
<source>job::tab time filter since</source> <source>job::tab time filter since</source>
@@ -11250,7 +11305,7 @@
<trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration"> <trans-unit id="6c6f34fed54a8f7a8769ef3729aaebaf0b983565" resname="job::tab total duration">
<source>job::tab total duration</source> <source>job::tab total duration</source>
<target state="new">job::tab total duration</target> <target state="new">job::tab total duration</target>
<jms:reference-file line="88">admin/worker-manager/worker_info.html.twig</jms:reference-file> <jms:reference-file line="90">admin/worker-manager/worker_info.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB"> <trans-unit id="eeb67800cf71d58c34ad9787bb17efda681177fb" resname="job::tab total entry in DB">
<source>job::tab total entry in DB</source> <source>job::tab total entry in DB</source>
@@ -12102,7 +12157,7 @@
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes"> <trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
<source>phraseanet:: preview</source> <source>phraseanet:: preview</source>
<target state="translated">Voorvertoning</target> <target state="translated">Voorvertoning</target>
<jms:reference-file line="40">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file> <jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes"> <trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
@@ -12483,22 +12538,22 @@
<trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef"> <trans-unit id="a5378b9deb644538f67be6179092beefcbf10038" resname="print:: Can download subdef">
<source>print:: Can download subdef</source> <source>print:: Can download subdef</source>
<target state="new">print:: Can download subdef</target> <target state="new">print:: Can download subdef</target>
<jms:reference-file line="94">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview"> <trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
<source>print:: Choose subdef for preview</source> <source>print:: Choose subdef for preview</source>
<target state="new">print:: Choose subdef for preview</target> <target state="new">print:: Choose subdef for preview</target>
<jms:reference-file line="145">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="148">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail"> <trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
<source>print:: Choose subdef for thumbnail</source> <source>print:: Choose subdef for thumbnail</source>
<target state="new">print:: Choose subdef for thumbnail</target> <target state="new">print:: Choose subdef for thumbnail</target>
<jms:reference-file line="161">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="164">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf"> <trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
<source>print:: add and remember password to protect the pdf</source> <source>print:: add and remember password to protect the pdf</source>
<target state="new">print:: add and remember password to protect the pdf</target> <target state="new">print:: add and remember password to protect the pdf</target>
<jms:reference-file line="87">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="88">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback"> <trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback">
<source>print:: basket feedback</source> <source>print:: basket feedback</source>
@@ -12513,7 +12568,7 @@
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename"> <trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
<source>print:: choose filename</source> <source>print:: choose filename</source>
<target state="new">print:: choose filename</target> <target state="new">print:: choose filename</target>
<jms:reference-file line="124">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model"> <trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
<source>print:: choose model</source> <source>print:: choose model</source>
@@ -12523,84 +12578,84 @@
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day"> <trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
<source>print:: day</source> <source>print:: day</source>
<target state="new">print:: day</target> <target state="new">print:: day</target>
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description"> <trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description">
<source>print:: description</source> <source>print:: description</source>
<target state="new">print:: description</target> <target state="new">print:: description</target>
<jms:reference-file line="56">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="57">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color"> <trans-unit id="4a996fb8b2c1949e78c3245993e121757bfeb1ea" resname="print:: description field title color">
<source>print:: description field title color</source> <source>print:: description field title color</source>
<target state="new">print:: description field title color</target> <target state="new">print:: description field title color</target>
<jms:reference-file line="81">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="82">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size"> <trans-unit id="21f745075d3330ad8f521c48485c187b5042aff4" resname="print:: description font size">
<source>print:: description font size</source> <source>print:: description font size</source>
<target state="new">print:: description font size</target> <target state="new">print:: description font size</target>
<jms:reference-file line="76">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="77">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download"> <trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
<source>print:: download</source> <source>print:: download</source>
<target state="new">print:: download</target> <target state="new">print:: download</target>
<jms:reference-file line="438">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="447">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="529">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="542">Out/Module/PDFRecords.php</jms:reference-file>
<jms:reference-file line="817">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="834">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable"> <trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
<source>print:: element downloadable</source> <source>print:: element downloadable</source>
<target state="new">print:: element downloadable</target> <target state="new">print:: element downloadable</target>
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model"> <trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
<source>print:: element printable on preview model</source> <source>print:: element printable on preview model</source>
<target state="new">print:: element printable on preview model</target> <target state="new">print:: element printable on preview model</target>
<jms:reference-file line="156">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model"> <trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
<source>print:: element printable on thumbnail model</source> <source>print:: element printable on thumbnail model</source>
<target state="new">print:: element printable on thumbnail model</target> <target state="new">print:: element printable on thumbnail model</target>
<jms:reference-file line="172">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="175">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour"> <trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
<source>print:: hour</source> <source>print:: hour</source>
<target state="new">print:: hour</target> <target state="new">print:: hour</target>
<jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes"> <trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
<source>print:: image de choix et description</source> <source>print:: image de choix et description</source>
<target state="translated">Het gekozen beeld en de beschrijving</target> <target state="translated">Het gekozen beeld en de beschrijving</target>
<jms:reference-file line="48">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes"> <trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
<source>print:: image de choix et description avec planche contact</source> <source>print:: image de choix et description avec planche contact</source>
<target state="translated">Het gekozen beeld en de beschrijving met de contact fiche</target> <target state="translated">Het gekozen beeld en de beschrijving met de contact fiche</target>
<jms:reference-file line="52">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="53">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes"> <trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
<source>print:: image de choix seulement</source> <source>print:: image de choix seulement</source>
<target state="translated">Enkel het gekozen beeld</target> <target state="translated">Enkel het gekozen beeld</target>
<jms:reference-file line="44">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes"> <trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
<source>print:: imagette</source> <source>print:: imagette</source>
<target state="translated">Thumbnail</target> <target state="translated">Thumbnail</target>
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes"> <trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
<source>print:: liste d'imagettes</source> <source>print:: liste d'imagettes</source>
<target state="translated">Thumbnail lijst</target> <target state="translated">Thumbnail lijst</target>
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="66">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month"> <trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
<source>print:: month</source> <source>print:: month</source>
<target state="new">print:: month</target> <target state="new">print:: month</target>
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name"> <trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
<source>print:: original media name</source> <source>print:: original media name</source>
<target state="new">print:: original media name</target> <target state="new">print:: original media name</target>
<jms:reference-file line="131">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="134">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description"> <trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
<source>print:: pdf description</source> <source>print:: pdf description</source>
@@ -12615,132 +12670,132 @@
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes"> <trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
<source>print:: planche contact (mosaique)</source> <source>print:: planche contact (mosaique)</source>
<target state="translated">Contact fiche (mosaic)</target> <target state="translated">Contact fiche (mosaic)</target>
<jms:reference-file line="69">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="70">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations"> <trans-unit id="531a66e4caa61521b869c01306e1cf73b846c03c" resname="print:: print records informations">
<source>print:: print records informations</source> <source>print:: print records informations</source>
<target state="new">print:: print records informations</target> <target state="new">print:: print records informations</target>
<jms:reference-file line="36">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options"> <trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
<source>print:: some options</source> <source>print:: some options</source>
<target state="new">print:: some options</target> <target state="new">print:: some options</target>
<jms:reference-file line="74">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="75">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping"> <trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
<source>print:: subdef mapping</source> <source>print:: subdef mapping</source>
<target state="new">print:: subdef mapping</target> <target state="new">print:: subdef mapping</target>
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl"> <trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
<source>print:: subdef url ttl</source> <source>print:: subdef url ttl</source>
<target state="new">print:: subdef url ttl</target> <target state="new">print:: subdef url ttl</target>
<jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="117">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title"> <trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
<source>print:: title</source> <source>print:: title</source>
<target state="new">print:: title</target> <target state="new">print:: title</target>
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="130">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed"> <trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
<source>print:: warning! Only available image for chosen subdef is printed</source> <source>print:: warning! Only available image for chosen subdef is printed</source>
<target state="new">print:: warning! Only available image for chosen subdef is printed</target> <target state="new">print:: warning! Only available image for chosen subdef is printed</target>
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="144">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable"> <trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
<source>print:: warning! Only available media for chosen subdef is downloadable</source> <source>print:: warning! Only available media for chosen subdef is downloadable</source>
<target state="new">print:: warning! Only available media for chosen subdef is downloadable</target> <target state="new">print:: warning! Only available media for chosen subdef is downloadable</target>
<jms:reference-file line="111">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="114">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week"> <trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
<source>print:: week</source> <source>print:: week</source>
<target state="new">print:: week</target> <target state="new">print:: week</target>
<jms:reference-file line="119">prod/actions/printer_default.html.twig</jms:reference-file> <jms:reference-file line="122">prod/actions/printer_default.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : "> <trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : ">
<source>print_feedback:: Document generated on :</source> <source>print_feedback:: Document generated on :</source>
<target state="new">print_feedback:: Document generated on : </target> <target state="new">print_feedback:: Document generated on : </target>
<jms:reference-file line="589">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="602">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active"> <trans-unit id="cc26097dfc5a781b1ed04e28740f7e404ff3465a" resname="print_feedback:: Feedback active">
<source>print_feedback:: Feedback active</source> <source>print_feedback:: Feedback active</source>
<target state="new">print_feedback:: Feedback active</target> <target state="new">print_feedback:: Feedback active</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired"> <trans-unit id="9370d2c34af12b41dce1cbe99bd38869dfdb6dc0" resname="print_feedback:: Feedback expired">
<source>print_feedback:: Feedback expired</source> <source>print_feedback:: Feedback expired</source>
<target state="new">print_feedback:: Feedback expired</target> <target state="new">print_feedback:: Feedback expired</target>
<jms:reference-file line="613">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="626">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : "> <trans-unit id="c5ed38188b58f5550c4e95b2e435f13a24fc0085" resname="print_feedback:: Feedback expiring on : ">
<source>print_feedback:: Feedback expiring on :</source> <source>print_feedback:: Feedback expiring on :</source>
<target state="new">print_feedback:: Feedback expiring on : </target> <target state="new">print_feedback:: Feedback expiring on : </target>
<jms:reference-file line="607">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="620">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : "> <trans-unit id="ab0fd755a204e2da76f99dfd4d492d24e8474edb" resname="print_feedback:: Feedback initiated by : ">
<source>print_feedback:: Feedback initiated by :</source> <source>print_feedback:: Feedback initiated by :</source>
<target state="new">print_feedback:: Feedback initiated by : </target> <target state="new">print_feedback:: Feedback initiated by : </target>
<jms:reference-file line="595">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="608">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : "> <trans-unit id="da5dba0c0f395815ac7dded599792c02606aefe2" resname="print_feedback:: Feedback initiated on : ">
<source>print_feedback:: Feedback initiated on :</source> <source>print_feedback:: Feedback initiated on :</source>
<target state="new">print_feedback:: Feedback initiated on : </target> <target state="new">print_feedback:: Feedback initiated on : </target>
<jms:reference-file line="601">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="614">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%"> <trans-unit id="bd80725e7265da3a6fc6077dcf79d4a62494bc75" resname="print_feedback:: Feedback on basket %name%">
<source>print_feedback:: Feedback on basket %name%</source> <source>print_feedback:: Feedback on basket %name%</source>
<target state="new">print_feedback:: Feedback on basket %name%</target> <target state="new">print_feedback:: Feedback on basket %name%</target>
<jms:reference-file line="583">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="596">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non"> <trans-unit id="95bf4b6ed5c087d43370ca73319e3c372b78395b" resname="print_feedback:: Non">
<source>print_feedback:: Non</source> <source>print_feedback:: Non</source>
<target state="new">print_feedback:: Non</target> <target state="new">print_feedback:: Non</target>
<jms:reference-file line="868">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="885">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui"> <trans-unit id="743fdc892edcf83c25a977c424ea05afe89b40ad" resname="print_feedback:: Oui">
<source>print_feedback:: Oui</source> <source>print_feedback:: Oui</source>
<target state="new">print_feedback:: Oui</target> <target state="new">print_feedback:: Oui</target>
<jms:reference-file line="864">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="881">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : "> <trans-unit id="f1aacdb79740120055b87b56ddbe0267e94c32f3" resname="print_feedback:: Participants : ">
<source>print_feedback:: Participants :</source> <source>print_feedback:: Participants :</source>
<target state="new">print_feedback:: Participants : </target> <target state="new">print_feedback:: Participants : </target>
<jms:reference-file line="617">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="630">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :"> <trans-unit id="3a3e145dc17ac2a1acc06b06d23061ba58bce648" resname="print_feedback:: Votes :">
<source>print_feedback:: Votes :</source> <source>print_feedback:: Votes :</source>
<target state="new">print_feedback:: Votes :</target> <target state="new">print_feedback:: Votes :</target>
<jms:reference-file line="836">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="853">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: "> <trans-unit id="0dc0c6dfc1460e9e50804a6b42b27d3ae8a2f332" resname="print_feedback:: base name: ">
<source>print_feedback:: base name:</source> <source>print_feedback:: base name:</source>
<target state="new">print_feedback:: base name: </target> <target state="new">print_feedback:: base name: </target>
<jms:reference-file line="952">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="969">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: "> <trans-unit id="797d8c23b603bbff2f1e4d0e699897232fc07001" resname="print_feedback:: document Uuid: ">
<source>print_feedback:: document Uuid:</source> <source>print_feedback:: document Uuid:</source>
<target state="new">print_feedback:: document Uuid: </target> <target state="new">print_feedback:: document Uuid: </target>
<jms:reference-file line="972">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="989">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté"> <trans-unit id="4752d52a950eba875e7e508dc1eea3f7ad4a7b07" resname="print_feedback:: non voté">
<source>print_feedback:: non voté</source> <source>print_feedback:: non voté</source>
<target state="new">print_feedback:: non voté</target> <target state="new">print_feedback:: non voté</target>
<jms:reference-file line="859">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="876">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: "> <trans-unit id="a780f008dff8f4a46e3c3c79d73d1e297f0e183c" resname="print_feedback:: originale filename: ">
<source>print_feedback:: originale filename:</source> <source>print_feedback:: originale filename:</source>
<target state="new">print_feedback:: originale filename: </target> <target state="new">print_feedback:: originale filename: </target>
<jms:reference-file line="962">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="979">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: "> <trans-unit id="dd1cd24683430c20fba9eb26cb61dbaaab589371" resname="print_feedback:: record id: ">
<source>print_feedback:: record id:</source> <source>print_feedback:: record id:</source>
<target state="new">print_feedback:: record id: </target> <target state="new">print_feedback:: record id: </target>
<jms:reference-file line="942">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="959">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: "> <trans-unit id="7ccefaa7635a56b807dc95281c6e92cf301b9b67" resname="print_feedback:: record title: ">
<source>print_feedback:: record title:</source> <source>print_feedback:: record title:</source>
<target state="new">print_feedback:: record title: </target> <target state="new">print_feedback:: record title: </target>
<jms:reference-file line="932">Out/Module/PDFRecords.php</jms:reference-file> <jms:reference-file line="949">Out/Module/PDFRecords.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive"> <trans-unit id="98ab0e2a8cf4a7c9f6952361e6c750a8009b70a5" resname="prive">
<source>prive</source> <source>prive</source>
@@ -14774,12 +14829,12 @@
<trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes"> <trans-unit id="7b2320182e62f7ea49bec8361a7ad8409d31cf14" resname="setup:: Reinitialisation des droits admins" approved="yes">
<source>setup:: Reinitialisation des droits admins</source> <source>setup:: Reinitialisation des droits admins</source>
<target state="translated">Herinitialisatie van de admin rechten</target> <target state="translated">Herinitialisatie van de admin rechten</target>
<jms:reference-file line="117">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="123">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes"> <trans-unit id="878b2c8bc7fb24bee75cdd27f96004e1b90e37fa" resname="setup:: administrateurs de l'application" approved="yes">
<source>setup:: administrateurs de l'application</source> <source>setup:: administrateurs de l'application</source>
<target state="translated">Beheerders van het programma</target> <target state="translated">Beheerders van het programma</target>
<jms:reference-file line="99">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="105">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes"> <trans-unit id="ee4685c501c77bb71f2b651b39fef5d4494c5d74" resname="setup:: ajouter un administrateur des commandes" approved="yes">
<source>setup:: ajouter un administrateur des commandes</source> <source>setup:: ajouter un administrateur des commandes</source>
@@ -14804,7 +14859,7 @@
<trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes"> <trans-unit id="c1ef95ee01b145e2cc78fd7058633ac0d65f6ad0" resname="setup::Tests d'envois d'emails" approved="yes">
<source>setup::Tests d'envois d'emails</source> <source>setup::Tests d'envois d'emails</source>
<target state="translated">Testen voor het versturen van mail</target> <target state="translated">Testen voor het versturen van mail</target>
<jms:reference-file line="127">web/admin/dashboard.html.twig</jms:reference-file> <jms:reference-file line="133">web/admin/dashboard.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link"> <trans-unit id="cf75de5e3a89d03d1888b4caccfafc65f6456fc3" resname="setup::custom-link:add-link">
<source>setup::custom-link:add-link</source> <source>setup::custom-link:add-link</source>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:37:42Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:50:19Z" source-language="en" target-language="de" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:37:57Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:50:35Z" source-language="en" target-language="en" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:38:15Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:50:53Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2"> <xliff xmlns="urn:oasis:names:tc:xliff:document:1.2" xmlns:jms="urn:jms:translation" version="1.2">
<file date="2022-10-04T13:38:37Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> <file date="2022-10-05T11:51:14Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available">
<header> <header>
<tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/> <tool tool-id="JMSTranslationBundle" tool-name="JMSTranslationBundle" tool-version="1.1.0-DEV"/>
<note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note> <note>The source node in most cases contains the sample message as written by the developer. If it looks like a dot-delimitted string such as "form.label.firstname", then the developer has not provided a default message.</note>

View File

@@ -93,6 +93,12 @@
</div> </div>
{% endif %} {% endif %}
{% if session_flushed %}
<div class="well well-small">
{{ 'all redis session flushed' | trans }}
</div>
{% endif %}
<div class="board_section"> <div class="board_section">
<form id="admin_adder" action="{{ path('admin_dashboard_add_admins') }}" method="post" class="form-inline"> <form id="admin_adder" action="{{ path('admin_dashboard_add_admins') }}" method="post" class="form-inline">
<fieldset> <fieldset>
@@ -140,12 +146,16 @@
{% if app['cache'].isServer() %} {% if app['cache'].isServer() %}
<div class="section"> <div class="section">
<form id="cache_flusher" method="post" action="{{ path('admin_dashboard_flush_cache') }}" class="form-inline">
<fieldset> <fieldset>
<legend>{% trans %}Reset cache{% endtrans %}</legend> <legend>{% trans %}Reset cache{% endtrans %}</legend>
<input type="submit" id="flush_button" class="btn btn-primary span4" value="Flush All Caches" /> <form id="cache_flusher" method="post" action="{{ path('admin_dashboard_flush_cache') }}" class="form-inline">
<input type="submit" id="flush_button" class="btn btn-primary span4" value="{{ 'Flush All Caches' | trans }}" />
</form>
<form id="" method="post" action="{{ path('admin_dashboard_flush_redis_session') }}" class="form-inline">
<input type="submit" class="btn btn-primary span4" value="{{ 'Flush session' | trans }}" />
</form>
</fieldset> </fieldset>
</form>
</div> </div>
{% endif %} {% endif %}