PHRAS-3555 add more webhook events

This commit is contained in:
aynsix
2021-11-16 17:15:49 +03:00
parent 3a5452bae7
commit 074920353a
30 changed files with 896 additions and 153 deletions

View File

@@ -13,5 +13,5 @@ module.exports = {
setupDir: _root + 'tests/setup/node.js', setupDir: _root + 'tests/setup/node.js',
karmaConf: _root + 'config/karma.conf.js', karmaConf: _root + 'config/karma.conf.js',
// change this version when you change JS file for lazy loading // change this version when you change JS file for lazy loading
assetFileVersion: 30 assetFileVersion: 31
}; };

View File

@@ -4210,6 +4210,19 @@ var account = function account(services) {
}); });
}); });
$container.on('click', '.update-listened-event', function () {
var $this = (0, _jquery2.default)(this);
_jquery2.default.ajax({
type: 'POST',
url: $this.attr('data-path'),
dataType: 'json',
data: {
action: $this.is(':checked') ? 'add' : 'remove'
},
success: function success(data) {}
});
});
// delete an application // delete an application
/* $('a.delete-app').bind('click', function (e) { /* $('a.delete-app').bind('click', function (e) {
e.preventDefault(); e.preventDefault();

View File

@@ -4210,6 +4210,19 @@ var account = function account(services) {
}); });
}); });
$container.on('click', '.update-listened-event', function () {
var $this = (0, _jquery2.default)(this);
_jquery2.default.ajax({
type: 'POST',
url: $this.attr('data-path'),
dataType: 'json',
data: {
action: $this.is(':checked') ? 'add' : 'remove'
},
success: function success(data) {}
});
});
// delete an application // delete an application
/* $('a.delete-app').bind('click', function (e) { /* $('a.delete-app').bind('click', function (e) {
e.preventDefault(); e.preventDefault();

View File

@@ -96,7 +96,7 @@ return /******/ (function(modules) { // webpackBootstrap
/******/ if (__webpack_require__.nc) { /******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc); /******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ } /******/ }
/******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".js?v=30"; /******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".js?v=31";
/******/ var timeout = setTimeout(onScriptComplete, 120000); /******/ var timeout = setTimeout(onScriptComplete, 120000);
/******/ script.onerror = script.onload = onScriptComplete; /******/ script.onerror = script.onload = onScriptComplete;
/******/ function onScriptComplete() { /******/ function onScriptComplete() {

View File

@@ -96,7 +96,7 @@ return /******/ (function(modules) { // webpackBootstrap
/******/ if (__webpack_require__.nc) { /******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc); /******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ } /******/ }
/******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".min.js?v=30"; /******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".min.js?v=31";
/******/ var timeout = setTimeout(onScriptComplete, 120000); /******/ var timeout = setTimeout(onScriptComplete, 120000);
/******/ script.onerror = script.onload = onScriptComplete; /******/ script.onerror = script.onload = onScriptComplete;
/******/ function onScriptComplete() { /******/ function onScriptComplete() {

View File

@@ -91,7 +91,7 @@
/******/ if (__webpack_require__.nc) { /******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc); /******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ } /******/ }
/******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".js?v=30"; /******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".js?v=31";
/******/ var timeout = setTimeout(onScriptComplete, 120000); /******/ var timeout = setTimeout(onScriptComplete, 120000);
/******/ script.onerror = script.onload = onScriptComplete; /******/ script.onerror = script.onload = onScriptComplete;
/******/ function onScriptComplete() { /******/ function onScriptComplete() {

View File

@@ -91,7 +91,7 @@
/******/ if (__webpack_require__.nc) { /******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc); /******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ } /******/ }
/******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".min.js?v=30"; /******/ script.src = __webpack_require__.p + "lazy-" + ({}[chunkId]||chunkId) + ".min.js?v=31";
/******/ var timeout = setTimeout(onScriptComplete, 120000); /******/ var timeout = setTimeout(onScriptComplete, 120000);
/******/ script.onerror = script.onload = onScriptComplete; /******/ script.onerror = script.onload = onScriptComplete;
/******/ function onScriptComplete() { /******/ function onScriptComplete() {

View File

@@ -168,6 +168,20 @@ const account = (services) => {
}); });
}); });
$container.on('click', '.update-listened-event', function () {
let $this = $(this);
$.ajax({
type: 'POST',
url: $this.attr('data-path'),
dataType: 'json',
data: {
action: $this.is(':checked') ? 'add' : 'remove'
},
success: function (data) {
}
});
});
// delete an application // delete an application
/* $('a.delete-app').bind('click', function (e) { /* $('a.delete-app').bind('click', function (e) {
e.preventDefault(); e.preventDefault();

View File

@@ -9,10 +9,12 @@
*/ */
namespace Alchemy\Phrasea\Controller\Root; namespace Alchemy\Phrasea\Controller\Root;
use Alchemy\Phrasea\Application\Helper\EntityManagerAware;
use Alchemy\Phrasea\Controller\Controller; use Alchemy\Phrasea\Controller\Controller;
use Alchemy\Phrasea\ControllerProvider\Api\V2; use Alchemy\Phrasea\ControllerProvider\Api\V2;
use Alchemy\Phrasea\Exception\InvalidArgumentException; use Alchemy\Phrasea\Exception\InvalidArgumentException;
use Alchemy\Phrasea\Model\Entities\ApiApplication; use Alchemy\Phrasea\Model\Entities\ApiApplication;
use Alchemy\Phrasea\Model\Entities\WebhookEvent;
use Alchemy\Phrasea\Model\Manipulator\ApiAccountManipulator; use Alchemy\Phrasea\Model\Manipulator\ApiAccountManipulator;
use Alchemy\Phrasea\Model\Manipulator\ApiApplicationManipulator; use Alchemy\Phrasea\Model\Manipulator\ApiApplicationManipulator;
use Alchemy\Phrasea\Model\Manipulator\ApiOauthTokenManipulator; use Alchemy\Phrasea\Model\Manipulator\ApiOauthTokenManipulator;
@@ -29,6 +31,8 @@ use Symfony\Component\Validator\Validator\ValidatorInterface;
class DeveloperController extends Controller class DeveloperController extends Controller
{ {
use EntityManagerAware;
/** /**
* Delete application. * Delete application.
* *
@@ -253,9 +257,34 @@ class DeveloperController extends Controller
"deliveries" => $deliveries, "deliveries" => $deliveries,
"user" => $user, "user" => $user,
"token" => $token, "token" => $token,
"webhook_event_list" => $this->getWebhookEventsList()
]); ]);
} }
/**
* Update listenedEvents in application
*
* @param Request $request
* @param ApiApplication $application
* @return JsonResponse
*/
public function updateListenedEvent(Request $request, ApiApplication $application)
{
$manager = $this->getEntityManager();
$eventName = $request->query->get('event_name');
if ($request->request->get('action') == 'add') {
$application->addListenedEvent($eventName);
} elseif ($request->request->get('action') == 'remove') {
$application->removeListenedEvent($eventName);
}
$manager->persist($application);
$manager->flush();
return $this->app->json(['success' => true]);
}
/** /**
* @return ApiAccountRepository * @return ApiAccountRepository
*/ */
@@ -311,4 +340,37 @@ class DeveloperController extends Controller
{ {
return $this->app['webhook.delivery_repository']; return $this->app['webhook.delivery_repository'];
} }
private function getWebhookEventsList()
{
return [
WebhookEvent::RECORD_TYPE => [
WebhookEvent::RECORD_CREATED => $this->app->trans("developers:: record or story created"),
WebhookEvent::RECORD_EDITED => $this->app->trans('developers:: record or story edited'),
WebhookEvent::RECORD_DELETED => $this->app->trans('developers:: record or story deleted'),
WebhookEvent::RECORD_MEDIA_SUBSTITUTED => $this->app->trans('developers:: media substituted for record'),
WebhookEvent::RECORD_COLLECTION_CHANGED => $this->app->trans('developers:: collection changed for record'),
WebhookEvent::RECORD_STATUS_CHANGED => $this->app->trans('developers:: status changed for record')
],
WebhookEvent::RECORD_SUBDEF_TYPE => [
WebhookEvent::RECORD_SUBDEF_CREATED => $this->app->trans('developers:: subdef created for a record'),
WebhookEvent::RECORD_SUBDEF_FAILED => $this->app->trans('developers:: subdef creation failed for a record'),
],
WebhookEvent::USER_DELETED_TYPE => [
WebhookEvent::USER_DELETED => $this->app->trans('developers:: user deleted on phraseanet')
],
WebhookEvent::USER_REGISTRATION_TYPE => [
WebhookEvent::USER_REGISTRATION_GRANTED => $this->app->trans('developers:: user registration granted on phraseanet'),
WebhookEvent::USER_REGISTRATION_REJECTED => $this->app->trans('developers:: user registration rejected on phraseanet')
],
WebhookEvent::FEED_ENTRY_TYPE => [
WebhookEvent::NEW_FEED_ENTRY => $this->app->trans('developers:: new feed entry on phraseanet')
],
WebhookEvent::ORDER_TYPE => [
WebhookEvent::ORDER_CREATED => $this->app->trans('developers:: new order created'),
WebhookEvent::ORDER_DELIVERED => $this->app->trans('developers:: a order delivered'),
WebhookEvent::ORDER_DENIED => $this->app->trans('developers:: a order denied')
]
];
}
} }

View File

@@ -14,6 +14,7 @@ namespace Alchemy\Phrasea\ControllerProvider\Root;
use Alchemy\Phrasea\Application as PhraseaApplication; use Alchemy\Phrasea\Application as PhraseaApplication;
use Alchemy\Phrasea\Controller\Root\DeveloperController; use Alchemy\Phrasea\Controller\Root\DeveloperController;
use Alchemy\Phrasea\ControllerProvider\ControllerProviderTrait; use Alchemy\Phrasea\ControllerProvider\ControllerProviderTrait;
use Alchemy\Phrasea\Core\LazyLocator;
use Silex\Application; use Silex\Application;
use Silex\ControllerProviderInterface; use Silex\ControllerProviderInterface;
use Silex\ServiceProviderInterface; use Silex\ServiceProviderInterface;
@@ -25,7 +26,8 @@ class Developers implements ControllerProviderInterface, ServiceProviderInterfac
public function register(Application $app) public function register(Application $app)
{ {
$app['controller.account.developers'] = $app->share(function (PhraseaApplication $app) { $app['controller.account.developers'] = $app->share(function (PhraseaApplication $app) {
return (new DeveloperController($app)); return (new DeveloperController($app))
->setEntityManagerLocator(new LazyLocator($app, 'orm.em'));
}); });
} }
@@ -58,6 +60,11 @@ class Developers implements ControllerProviderInterface, ServiceProviderInterfac
->assert('application', '\d+') ->assert('application', '\d+')
->bind('developers_application'); ->bind('developers_application');
$controllers->post('/application/{application}/listened-event', 'controller.account.developers:updateListenedEvent')
->before($app['middleware.api-application.converter'])
->assert('application', '\d+')
->bind('developers_application_listened_event');
$controllers->delete('/application/{application}/', 'controller.account.developers:deleteApp') $controllers->delete('/application/{application}/', 'controller.account.developers:deleteApp')
->before($app['middleware.api-application.converter']) ->before($app['middleware.api-application.converter'])
->assert('application', '\d+') ->assert('application', '\d+')

View File

@@ -0,0 +1,127 @@
<?php
namespace Alchemy\Phrasea\Core\Event\Subscriber;
use Alchemy\Phrasea\Application;
use Alchemy\Phrasea\Core\Event\Record\RecordEvent;
use Alchemy\Phrasea\Core\Event\Record\RecordEvents;
use Alchemy\Phrasea\Core\LazyLocator;
use Alchemy\Phrasea\Core\PhraseaEvents;
use Alchemy\Phrasea\Model\Entities\WebhookEvent;
use Alchemy\Phrasea\Model\RecordInterface;
use Assert\Assertion;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class WebhookRecordEventSubscriber implements EventSubscriberInterface
{
/**
* @var Application
*/
private $app;
/**
* @var callable
*/
private $appboxLocator;
/**
* @param Application $application
*/
public function __construct(Application $application)
{
$this->app = $application;
$this->appboxLocator = new LazyLocator($this->app, 'phraseanet.appbox');
}
public function onRecordCreated(RecordEvent $event)
{
$this->createWebhookEvent($event, WebhookEvent::RECORD_CREATED);
}
public function onRecordEdit(RecordEvent $event)
{
$this->createWebhookEvent($event, WebhookEvent::RECORD_EDITED);
}
public function onRecordDeleted(RecordEvent $event)
{
$this->createWebhookEvent($event, WebhookEvent::RECORD_DELETED);
}
public function onRecordMediaSubstituted(RecordEvent $event)
{
// event only from record_type = record
$this->createWebhookEvent($event, WebhookEvent::RECORD_MEDIA_SUBSTITUTED);
}
public function onRecordCollectionChanged(RecordEvent $event)
{
$this->createWebhookEvent($event, WebhookEvent::RECORD_COLLECTION_CHANGED);
}
public function onRecordStatusChanged(RecordEvent $event)
{
$this->createWebhookEvent($event, WebhookEvent::RECORD_STATUS_CHANGED);
}
/**
* @inheritDoc
*/
public static function getSubscribedEvents()
{
return [
RecordEvents::CREATED => 'onRecordCreated', /** @uses onRecordCreated */
PhraseaEvents::RECORD_EDIT => 'onRecordEdit', /** @uses onRecordEdit */
RecordEvents::DELETED => 'onRecordDeleted', /** @uses onRecordDeleted */
RecordEvents::MEDIA_SUBSTITUTED => 'onRecordMediaSubstituted', /** @uses onRecordMediaSubstituted */
RecordEvents::COLLECTION_CHANGED => 'onRecordCollectionChanged', /** @uses onRecordCollectionChanged */
RecordEvents::STATUS_CHANGED => 'onRecordStatusChanged', /** @uses onRecordStatusChanged */
];
}
private function createWebhookEvent(RecordEvent $event, $webhookEventName)
{
$record = $this->convertToRecordAdapter($event->getRecord());
if ($record !== null) {
$eventData = [
'databox_id' => $event->getRecord()->getDataboxId(),
'record_id' => $event->getRecord()->getRecordId(),
'collection_name' => $record->getCollection()->get_name(),
'record_type' => $event->getRecord()->isStory() ? "story" : "record"
];
$this->app['manipulator.webhook-event']->create(
$webhookEventName,
WebhookEvent::RECORD_TYPE,
$eventData,
[$event->getRecord()->getBaseId()]
);
} else {
$this->app['logger']->error("Record not found when wanting to create webhook data!");
}
}
private function convertToRecordAdapter(RecordInterface $record)
{
if ($record instanceof \record_adapter) {
return $record;
}
$databox = $this->getApplicationBox()->get_databox($record->getDataboxId());
$recordAdapter = $databox->getRecordRepository()->find($record->getRecordId());
return ($recordAdapter !== null) ? $recordAdapter : null;
}
/**
* @return \appbox
*/
private function getApplicationBox()
{
$callable = $this->appboxLocator;
return $callable();
}
}

View File

@@ -2,6 +2,7 @@
namespace Alchemy\Phrasea\Core\Provider; namespace Alchemy\Phrasea\Core\Provider;
use Alchemy\Phrasea\Core\Event\Subscriber\WebhookRecordEventSubscriber;
use Alchemy\Phrasea\Core\Event\Subscriber\WebhookSubdefEventSubscriber; use Alchemy\Phrasea\Core\Event\Subscriber\WebhookSubdefEventSubscriber;
use Alchemy\Phrasea\Webhook\EventProcessorFactory; use Alchemy\Phrasea\Webhook\EventProcessorFactory;
use Alchemy\Phrasea\Webhook\EventProcessorWorker; use Alchemy\Phrasea\Webhook\EventProcessorWorker;
@@ -64,6 +65,7 @@ class WebhookServiceProvider implements ServiceProviderInterface
$app['dispatcher'] = $app->share( $app['dispatcher'] = $app->share(
$app->extend('dispatcher', function (EventDispatcher $dispatcher, Application $app) { $app->extend('dispatcher', function (EventDispatcher $dispatcher, Application $app) {
$dispatcher->addSubscriber(new WebhookSubdefEventSubscriber($app)); $dispatcher->addSubscriber(new WebhookSubdefEventSubscriber($app));
$dispatcher->addSubscriber(new WebhookRecordEventSubscriber($app));
return $dispatcher; return $dispatcher;
}) })

View File

@@ -131,6 +131,14 @@ class ApiApplication
*/ */
private $webhookUrl; private $webhookUrl;
/**
* List of events to trigger webhook
* @var array
*
* @ORM\Column(name="listened_events", type="json_array", nullable=true)
*/
private $listenedEvents;
public function __construct() public function __construct()
{ {
$this->accounts = new ArrayCollection(); $this->accounts = new ArrayCollection();
@@ -431,4 +439,43 @@ class ApiApplication
return $this; return $this;
} }
/**
* @param array $listenedEvents
*/
public function setListenedEvents(array $listenedEvents)
{
$this->listenedEvents = $listenedEvents;
}
/**
* @param $eventName
*/
public function addListenedEvent($eventName)
{
$this->listenedEvents[] = $eventName;
}
/**
* @param $eventName
* @return $this
*/
public function removeListenedEvent($eventName)
{
$keys = array_keys($this->listenedEvents, $eventName, true);
foreach ($keys as $key) {
unset($this->listenedEvents[$key]);
}
return $this;
}
/**
* @return array
*/
public function getListenedEvents()
{
return $this->listenedEvents;
}
} }

View File

@@ -31,6 +31,15 @@ class WebhookEvent
const ORDER_DELIVERED = 'order.delivered'; const ORDER_DELIVERED = 'order.delivered';
const ORDER_DENIED = 'order.denied'; const ORDER_DENIED = 'order.denied';
// const use only as name and type of a webhook
const RECORD_TYPE = 'record';
const RECORD_CREATED = 'record.created';
const RECORD_EDITED = 'record.edited';
const RECORD_DELETED = 'record.deleted';
const RECORD_MEDIA_SUBSTITUTED = 'record.media_substituted';
const RECORD_COLLECTION_CHANGED = 'record.collection_changed';
const RECORD_STATUS_CHANGED = 'record.status_changed';
/** /**
* @ORM\Column(type="integer") * @ORM\Column(type="integer")
* @ORM\Id * @ORM\Id

View File

@@ -20,6 +20,7 @@ use Alchemy\Phrasea\Core\Event\Record\Structure\RecordStructureEvents;
use Alchemy\Phrasea\Core\Event\Thesaurus\ReindexRequiredEvent; use Alchemy\Phrasea\Core\Event\Thesaurus\ReindexRequiredEvent;
use Alchemy\Phrasea\Core\Event\Thesaurus\ThesaurusEvent; use Alchemy\Phrasea\Core\Event\Thesaurus\ThesaurusEvent;
use Alchemy\Phrasea\Core\Event\Thesaurus\ThesaurusEvents; use Alchemy\Phrasea\Core\Event\Thesaurus\ThesaurusEvents;
use Alchemy\Phrasea\WorkerManager\Event\WorkerEvents;
use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface;
/** /**
@@ -81,6 +82,7 @@ class IndexerSubscriber implements EventSubscriberInterface
CollectionEvents::NAME_CHANGED => 'onCollectionChange', CollectionEvents::NAME_CHANGED => 'onCollectionChange',
RecordEvents::CREATED => 'onRecordChange', RecordEvents::CREATED => 'onRecordChange',
RecordEvents::DELETED => 'onRecordDelete', RecordEvents::DELETED => 'onRecordDelete',
WorkerEvents::RECORD_DELETE_INDEX => 'onRecordDelete',
RecordEvents::COLLECTION_CHANGED => 'onRecordChange', RecordEvents::COLLECTION_CHANGED => 'onRecordChange',
RecordEvents::METADATA_CHANGED => 'onRecordChange', RecordEvents::METADATA_CHANGED => 'onRecordChange',
RecordEvents::ORIGINAL_NAME_CHANGED => 'onRecordChange', RecordEvents::ORIGINAL_NAME_CHANGED => 'onRecordChange',

View File

@@ -59,7 +59,7 @@ class PhraseanetExtension extends \Twig_Extension
{ {
return [ return [
// change this version when you change JS file to force the navigation to reload js file // change this version when you change JS file to force the navigation to reload js file
'assetFileVersion' => 30 'assetFileVersion' => 31
]; ];
} }

View File

@@ -10,6 +10,7 @@ use Alchemy\Phrasea\Webhook\Processor\FeedEntryProcessorFactory;
use Alchemy\Phrasea\Webhook\Processor\OrderNotificationProcessorFactory; use Alchemy\Phrasea\Webhook\Processor\OrderNotificationProcessorFactory;
use Alchemy\Phrasea\Webhook\Processor\ProcessorFactory; use Alchemy\Phrasea\Webhook\Processor\ProcessorFactory;
use Alchemy\Phrasea\Webhook\Processor\ProcessorInterface; use Alchemy\Phrasea\Webhook\Processor\ProcessorInterface;
use Alchemy\Phrasea\Webhook\Processor\RecordEventProcessor;
use Alchemy\Phrasea\Webhook\Processor\UserDeletedProcessorFactory; use Alchemy\Phrasea\Webhook\Processor\UserDeletedProcessorFactory;
use Alchemy\Phrasea\Webhook\Processor\UserRegistrationProcessorFactory; use Alchemy\Phrasea\Webhook\Processor\UserRegistrationProcessorFactory;
use Alchemy\Phrasea\Webhook\Processor\SubdefEventProcessor; use Alchemy\Phrasea\Webhook\Processor\SubdefEventProcessor;
@@ -34,6 +35,9 @@ class EventProcessorFactory
$this->registerCallableFactory(WebhookEvent::RECORD_SUBDEF_TYPE, function () { $this->registerCallableFactory(WebhookEvent::RECORD_SUBDEF_TYPE, function () {
return new SubdefEventProcessor(); return new SubdefEventProcessor();
}); });
$this->registerCallableFactory(WebhookEvent::RECORD_TYPE, function () {
return new RecordEventProcessor();
});
} }
/** /**

View File

@@ -0,0 +1,16 @@
<?php
namespace Alchemy\Phrasea\Webhook\Processor;
use Alchemy\Phrasea\Model\Entities\WebhookEvent;
class RecordEventProcessor implements ProcessorInterface
{
public function process(WebhookEvent $event)
{
return [
'event' => $event->getName(),
'data' => $event->getData()
];
}
}

View File

@@ -27,4 +27,6 @@ final class WorkerEvents
const RECORD_EDIT_IN_WORKER = 'record.edit_in_worker'; const RECORD_EDIT_IN_WORKER = 'record.edit_in_worker';
const RECORDS_WRITE_META = 'records.write_meta'; const RECORDS_WRITE_META = 'records.write_meta';
const RECORD_DELETE_INDEX = 'record.delete_index';
} }

View File

@@ -78,7 +78,7 @@ class RecordSubscriber implements EventSubscriberInterface
public function onDelete(DeleteEvent $event) public function onDelete(DeleteEvent $event)
{ {
// first remove record from the grid answer, so first delete the record in the index elastic // first remove record from the grid answer, so first delete the record in the index elastic
$this->app['dispatcher']->dispatch(RecordEvents::DELETED, new DeletedEvent($event->getRecord())); $this->app['dispatcher']->dispatch(WorkerEvents::RECORD_DELETE_INDEX, new DeletedEvent($event->getRecord()));
// publish payload to queue // publish payload to queue
$payload = [ $payload = [

View File

@@ -161,6 +161,12 @@ class WebhookWorker implements WorkerInterface
continue; continue;
} }
// check if the third-application listen this event
// if listenedEvents is empty, third-application can received all webhookevent
if (!empty($thirdPartyApplication->getListenedEvents()) && !in_array($webhookevent->getName(), $thirdPartyApplication->getListenedEvents())) {
continue;
}
$creatorGrantedBaseIds = array_keys($this->app['acl']->get($creator)->get_granted_base()); $creatorGrantedBaseIds = array_keys($this->app['acl']->get($creator)->get_granted_base());
$concernedBaseIds = array_intersect($webhookevent->getCollectionBaseIds(), $creatorGrantedBaseIds); $concernedBaseIds = array_intersect($webhookevent->getCollectionBaseIds(), $creatorGrantedBaseIds);

View File

@@ -1,14 +1,14 @@
<?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="2021-09-24T11:10:19Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:30:36Z" 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>
</header> </header>
<body> <body>
<trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname=""> <trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname="">
<source/> <source></source>
<target state="new"/> <target state="new"></target>
<jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file> <jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file>
<jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> <jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -196,7 +196,7 @@
<jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> <jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents&lt;br/&gt;selectionnes" approved="yes"> <trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents&lt;br/&gt;selectionnes" approved="yes">
<source>%number% documents&lt;br/&gt;selectionnes</source> <source><![CDATA[%number% documents<br/>selectionnes]]></source>
<target state="translated"><![CDATA[%number% Dokumente<br/> ausgewählt]]></target> <target state="translated"><![CDATA[%number% Dokumente<br/> ausgewählt]]></target>
<jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file> <jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -249,7 +249,7 @@
<trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes"> <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes">
<source>%quantity% selected files</source> <source>%quantity% selected files</source>
<target state="translated">%quantity% ausgewählte Dateien</target> <target state="translated">%quantity% ausgewählte Dateien</target>
<jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes"> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes">
<source>%quantity_records% records have been sent for validation to %quantity_users% users</source> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source>
@@ -264,7 +264,7 @@
<trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes">
<source>%record_count% records match the unique identifier :</source> <source>%record_count% records match the unique identifier :</source>
<target state="translated">%record_count% Datensätze entsprechen dem eindeutigen Bezeichner:</target> <target state="translated">%record_count% Datensätze entsprechen dem eindeutigen Bezeichner:</target>
<jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="592">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes">
<source>%s field has been created with success.</source> <source>%s field has been created with success.</source>
@@ -466,12 +466,12 @@
<trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes"> <trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes">
<source>A file with the same UUID already exists in database</source> <source>A file with the same UUID already exists in database</source>
<target state="translated">Eine Datei mit ähnlichen UUID ist schon in der Datenbank</target> <target state="translated">Eine Datei mit ähnlichen UUID ist schon in der Datenbank</target>
<jms:reference-file line="95">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="84">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes"> <trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes">
<source>A file with the same checksum already exists in database</source> <source>A file with the same checksum already exists in database</source>
<target state="translated">Eine Datei mit selber Checksumme ist schon in der Datenbank</target> <target state="translated">Eine Datei mit selber Checksumme ist schon in der Datenbank</target>
<jms:reference-file line="85">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes"> <trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes">
<source>A file with the same filename already exists in database</source> <source>A file with the same filename already exists in database</source>
@@ -481,7 +481,7 @@
<trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes">
<source>A record matches the unique identifier :</source> <source>A record matches the unique identifier :</source>
<target state="translated">Ein Datensatz entspricht dem eindeutigen Bezeichner :</target> <target state="translated">Ein Datensatz entspricht dem eindeutigen Bezeichner :</target>
<jms:reference-file line="588">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes">
<source>A required field is missing or has an empty value</source> <source>A required field is missing or has an empty value</source>
@@ -670,8 +670,8 @@
<target state="translated">Hinzufügen</target> <target state="translated">Hinzufügen</target>
<jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file>
<jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="514">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="515">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field" approved="yes"> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field" approved="yes">
<source>Add a new field</source> <source>Add a new field</source>
@@ -970,7 +970,7 @@
<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>
<jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="285">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="245">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file>
<jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file> <jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file>
@@ -1595,7 +1595,7 @@
<trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes">
<source>Cancel all</source> <source>Cancel all</source>
<target state="translated">Alle abbrechen</target> <target state="translated">Alle abbrechen</target>
<jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="133">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes">
@@ -1791,7 +1791,7 @@
<trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes">
<source>Clear list</source> <source>Clear list</source>
<target state="translated">Liste löschen</target> <target state="translated">Liste löschen</target>
<jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="114">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes">
@@ -2382,8 +2382,8 @@
<trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes">
<source>Delete</source> <source>Delete</source>
<target state="translated">Löschen</target> <target state="translated">Löschen</target>
<jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="519">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="518">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="520">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes"> <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes">
@@ -2455,7 +2455,7 @@
<trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois" approved="yes"> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois" approved="yes">
<source>Derniers envois</source> <source>Derniers envois</source>
<target state="translated">Letzte Sendungen</target> <target state="translated">Letzte Sendungen</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="165">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes"> <trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes">
<source>Des difficultes ont ete rencontres a la connection au serveur distant</source> <source>Des difficultes ont ete rencontres a la connection au serveur distant</source>
@@ -2534,7 +2534,7 @@
<jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file> <jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display &amp; action settings" approved="yes"> <trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display &amp; action settings" approved="yes">
<source>Display &amp; action settings</source> <source><![CDATA[Display & action settings]]></source>
<target state="translated">Anzeige und Handlung-Einstellungen</target> <target state="translated">Anzeige und Handlung-Einstellungen</target>
<jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file> <jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -3283,8 +3283,8 @@
<source>File is not present in quarantine anymore, please refresh</source> <source>File is not present in quarantine anymore, please refresh</source>
<target state="translated">Datei befindet sich nicht mehr in der Quarantäne, bitte aktualisieren</target> <target state="translated">Datei befindet sich nicht mehr in der Quarantäne, bitte aktualisieren</target>
<jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="140">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="136">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="170">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="157">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -5922,7 +5922,7 @@
<trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application" approved="yes"> <trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application" approved="yes">
<source>Résultats des derniers envois effectués pour cette application</source> <source>Résultats des derniers envois effectués pour cette application</source>
<target state="translated">Ergebnisse der letzten gesendeten Nachrichten für diese Anwendung</target> <target state="translated">Ergebnisse der letzten gesendeten Nachrichten für diese Anwendung</target>
<jms:reference-file line="127">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="166">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes"> <trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes">
<source>SMTP encryption</source> <source>SMTP encryption</source>
@@ -6113,7 +6113,7 @@
<jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file>
<jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="115">prod/upload/upload.html.twig</jms:reference-file>
<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="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file>
@@ -6472,8 +6472,8 @@
<trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes">
<source>Substitute</source> <source>Substitute</source>
<target state="translated">Ersetzung</target> <target state="translated">Ersetzung</target>
<jms:reference-file line="521">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="523">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="522">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="524">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes">
<source>Substitution is not possible for this kind of record</source> <source>Substitution is not possible for this kind of record</source>
@@ -6745,7 +6745,7 @@
<trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes">
<source>The file was moved to the quarantine</source> <source>The file was moved to the quarantine</source>
<target state="translated">Datei wurde unter Quarantäne gestellt</target> <target state="translated">Datei wurde unter Quarantäne gestellt</target>
<jms:reference-file line="338">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="283">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes">
<source>The following errors have been detected</source> <source>The following errors have been detected</source>
@@ -6761,7 +6761,7 @@
<trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes">
<source>The record was successfully created</source> <source>The record was successfully created</source>
<target state="translated">Datensatz wurde erfolgreich erstellt</target> <target state="translated">Datensatz wurde erfolgreich erstellt</target>
<jms:reference-file line="292">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes">
<source>The records have been properly ordered</source> <source>The records have been properly ordered</source>
@@ -6996,7 +6996,7 @@
<trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes">
<source>Transmited files</source> <source>Transmited files</source>
<target state="translated">Übermittelte Dateien</target> <target state="translated">Übermittelte Dateien</target>
<jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="124">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes">
@@ -7058,7 +7058,7 @@
<trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes">
<source>Unable to add file to Phraseanet</source> <source>Unable to add file to Phraseanet</source>
<target state="translated">Unmöglich, Datei zu Phraseanet hinzuzufügen</target> <target state="translated">Unmöglich, Datei zu Phraseanet hinzuzufügen</target>
<jms:reference-file line="350">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="295">Controller/Prod/UploadController.php</jms:reference-file>
<jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes">
@@ -7848,7 +7848,7 @@
<trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes">
<source>You can not upload files</source> <source>You can not upload files</source>
<target state="translated">Sie dürfen Dateien nicht hochladen</target> <target state="translated">Sie dürfen Dateien nicht hochladen</target>
<jms:reference-file line="144">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes">
@@ -9988,7 +9988,7 @@
<trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes">
<source>boutton::retour</source> <source>boutton::retour</source>
<target state="translated">Zurück</target> <target state="translated">Zurück</target>
<jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="193">web/developers/application.html.twig</jms:reference-file>
<jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file> <jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file>
@@ -10345,6 +10345,101 @@
<target state="translated">absteigend</target> <target state="translated">absteigend</target>
<jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> <jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e82b164f61602c25d57b485ed09c7a59a8e0919" resname="developers:: Events name">
<source>developers:: Events name</source>
<target state="new">developers:: Events name</target>
<jms:reference-file line="134">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f717955140c0a034f0e08cfc1416b8443e86cbb5" resname="developers:: Events trigger this webhook">
<source>developers:: Events trigger this webhook</source>
<target state="new">developers:: Events trigger this webhook</target>
<jms:reference-file line="125">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="3a425cde38ee310e52988e9e9970f1c8dd376c13" resname="developers:: Events type">
<source>developers:: Events type</source>
<target state="new">developers:: Events type</target>
<jms:reference-file line="131">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="0b3e5bbe37fa58fc7ce4682309017ffcebe95a23" resname="developers:: Select events to trigger this webhook url">
<source>developers:: Select events to trigger this webhook url</source>
<target state="new">developers:: Select events to trigger this webhook url</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="bffa41c7a64fc38e50153ea0f6f7c2368b008028" resname="developers:: a order delivered">
<source>developers:: a order delivered</source>
<target state="new">developers:: a order delivered</target>
<jms:reference-file line="372">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="9b74fc2656c9e78eec665260f31b446edf548932" resname="developers:: a order denied">
<source>developers:: a order denied</source>
<target state="new">developers:: a order denied</target>
<jms:reference-file line="373">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="c2d24cc69b826a71661c25cbd5291cdaaf95208c" resname="developers:: collection changed for record">
<source>developers:: collection changed for record</source>
<target state="new">developers:: collection changed for record</target>
<jms:reference-file line="353">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1066a8925f76bd4aadebd7ec114b0ff771ab05ed" resname="developers:: media substituted for record">
<source>developers:: media substituted for record</source>
<target state="new">developers:: media substituted for record</target>
<jms:reference-file line="352">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="ab1c856fecf799bb87498cb26ea74b3db85b4f0b" resname="developers:: new feed entry on phraseanet">
<source>developers:: new feed entry on phraseanet</source>
<target state="new">developers:: new feed entry on phraseanet</target>
<jms:reference-file line="368">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="92259dc5125d969b7ba7fb1af0afd121147d1839" resname="developers:: new order created">
<source>developers:: new order created</source>
<target state="new">developers:: new order created</target>
<jms:reference-file line="371">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="4d09e2ac8748c5ea4bb66d3cd247941f99478125" resname="developers:: record or story created">
<source>developers:: record or story created</source>
<target state="new">developers:: record or story created</target>
<jms:reference-file line="349">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1f036a4965ecb781192393a08a5aa0510a94524c" resname="developers:: record or story deleted">
<source>developers:: record or story deleted</source>
<target state="new">developers:: record or story deleted</target>
<jms:reference-file line="351">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="98121e43abc2802cfec12de894e041f54d7c9b2c" resname="developers:: record or story edited">
<source>developers:: record or story edited</source>
<target state="new">developers:: record or story edited</target>
<jms:reference-file line="350">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="7479330e0d56c8b37e71013043acecd329ce5f08" resname="developers:: status changed for record">
<source>developers:: status changed for record</source>
<target state="new">developers:: status changed for record</target>
<jms:reference-file line="354">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="db026e337fa7eeba8352e87ca00a28e19c854453" resname="developers:: subdef created for a record">
<source>developers:: subdef created for a record</source>
<target state="new">developers:: subdef created for a record</target>
<jms:reference-file line="357">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="18fc15413169b19baf33adc2572d53a76b86f1f5" resname="developers:: subdef creation failed for a record">
<source>developers:: subdef creation failed for a record</source>
<target state="new">developers:: subdef creation failed for a record</target>
<jms:reference-file line="358">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="e59d8fc44e34b786247fa5924eeb12a4a1202215" resname="developers:: user deleted on phraseanet">
<source>developers:: user deleted on phraseanet</source>
<target state="new">developers:: user deleted on phraseanet</target>
<jms:reference-file line="361">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="13577491a21410883cb7990ce9fdd481fca5c58b" resname="developers:: user registration granted on phraseanet">
<source>developers:: user registration granted on phraseanet</source>
<target state="new">developers:: user registration granted on phraseanet</target>
<jms:reference-file line="364">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="b7786ecdfe826e6f347dbf643191d79a196c6057" resname="developers:: user registration rejected on phraseanet">
<source>developers:: user registration rejected on phraseanet</source>
<target state="new">developers:: user registration rejected on phraseanet</target>
<jms:reference-file line="365">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes"> <trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes">
<source>do you want to validate</source> <source>do you want to validate</source>
<target state="translated">Möchten Sie bestätigen?</target> <target state="translated">Möchten Sie bestätigen?</target>
@@ -11720,7 +11815,7 @@
<jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file> <jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt; " approved="yes"> <trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt; " approved="yes">
<source>phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt;</source> <source><![CDATA[phraseanet::account: << your account can be deleted via admin interface >>]]></source>
<target state="translated">Ihr Benutzerkonto kann nur durch die Administration Anwendung gelöscht werden.</target> <target state="translated">Ihr Benutzerkonto kann nur durch die Administration Anwendung gelöscht werden.</target>
<jms:reference-file line="289">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="289">web/account/account.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -13864,12 +13959,12 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
<trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID" approved="yes"> <trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID" approved="yes">
<source>same UUID</source> <source>same UUID</source>
<target state="translated">dieselbe UUID</target> <target state="translated">dieselbe UUID</target>
<jms:reference-file line="87">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="76">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum" approved="yes"> <trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum" approved="yes">
<source>same checksum</source> <source>same checksum</source>
<target state="translated">gleiche Prüfsumme</target> <target state="translated">gleiche Prüfsumme</target>
<jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="69">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename" approved="yes"> <trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename" approved="yes">
<source>same filename</source> <source>same filename</source>
@@ -14349,7 +14444,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
<jms:reference-file line="1338">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="1338">web/thesaurus/thesaurus.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes"> <trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes">
<source>thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)</source> <source><![CDATA[thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)]]></source>
<target state="translated"><![CDATA[Diese Verzweigung löschen?&#10; (die betroffenende Begriffe werden als mögliche Begriffe beim nächsten Indexierung erscheinen)]]></target> <target state="translated"><![CDATA[Diese Verzweigung löschen?&#10; (die betroffenende Begriffe werden als mögliche Begriffe beim nächsten Indexierung erscheinen)]]></target>
<jms:reference-file line="542">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="542">web/thesaurus/thesaurus.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -14927,9 +15022,9 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
<trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes">
<source>upload:: Status :</source> <source>upload:: Status :</source>
<target state="translated">Status</target> <target state="translated">Status</target>
<jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="81">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="462">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="463">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes">
<source>users rights have been reseted</source> <source>users rights have been reseted</source>

View File

@@ -1,14 +1,14 @@
<?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="2021-09-24T11:10:36Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:30:52Z" 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>
</header> </header>
<body> <body>
<trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname=""> <trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname="">
<source/> <source></source>
<target state="new"/> <target state="new"></target>
<jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file> <jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file>
<jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> <jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -196,7 +196,7 @@
<jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> <jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents&lt;br/&gt;selectionnes" approved="yes"> <trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents&lt;br/&gt;selectionnes" approved="yes">
<source>%number% documents&lt;br/&gt;selectionnes</source> <source><![CDATA[%number% documents<br/>selectionnes]]></source>
<target state="translated"><![CDATA[%number% documents<br/>selected]]></target> <target state="translated"><![CDATA[%number% documents<br/>selected]]></target>
<jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file> <jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -249,7 +249,7 @@
<trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes"> <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes">
<source>%quantity% selected files</source> <source>%quantity% selected files</source>
<target state="translated">%quantity% selected files</target> <target state="translated">%quantity% selected files</target>
<jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes"> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes">
<source>%quantity_records% records have been sent for validation to %quantity_users% users</source> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source>
@@ -264,7 +264,7 @@
<trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes">
<source>%record_count% records match the unique identifier :</source> <source>%record_count% records match the unique identifier :</source>
<target state="translated">%record_count% records match the unique identifier:</target> <target state="translated">%record_count% records match the unique identifier:</target>
<jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="592">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes">
<source>%s field has been created with success.</source> <source>%s field has been created with success.</source>
@@ -466,12 +466,12 @@
<trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes"> <trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes">
<source>A file with the same UUID already exists in database</source> <source>A file with the same UUID already exists in database</source>
<target state="translated">A file with the same UUID already exists in the database</target> <target state="translated">A file with the same UUID already exists in the database</target>
<jms:reference-file line="95">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="84">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes"> <trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes">
<source>A file with the same checksum already exists in database</source> <source>A file with the same checksum already exists in database</source>
<target state="translated">A file with the same checksum already exists in the database</target> <target state="translated">A file with the same checksum already exists in the database</target>
<jms:reference-file line="85">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes"> <trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes">
<source>A file with the same filename already exists in database</source> <source>A file with the same filename already exists in database</source>
@@ -481,7 +481,7 @@
<trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes">
<source>A record matches the unique identifier :</source> <source>A record matches the unique identifier :</source>
<target state="translated">A record matches the unique identifier:</target> <target state="translated">A record matches the unique identifier:</target>
<jms:reference-file line="588">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes">
<source>A required field is missing or has an empty value</source> <source>A required field is missing or has an empty value</source>
@@ -670,8 +670,8 @@
<target state="translated">Add</target> <target state="translated">Add</target>
<jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file>
<jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="514">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="515">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field" approved="yes"> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field" approved="yes">
<source>Add a new field</source> <source>Add a new field</source>
@@ -971,7 +971,7 @@
<source>An error occured</source> <source>An error occured</source>
<target state="translated">An error occurred</target> <target state="translated">An error occurred</target>
<jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="285">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="245">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file>
<jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file> <jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file>
@@ -1596,7 +1596,7 @@
<trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes">
<source>Cancel all</source> <source>Cancel all</source>
<target state="translated">Cancel all</target> <target state="translated">Cancel all</target>
<jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="133">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes">
@@ -1793,7 +1793,7 @@
<trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes">
<source>Clear list</source> <source>Clear list</source>
<target state="translated">Clear list</target> <target state="translated">Clear list</target>
<jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="114">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes">
@@ -2385,8 +2385,8 @@
<trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes">
<source>Delete</source> <source>Delete</source>
<target state="translated">Delete</target> <target state="translated">Delete</target>
<jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="519">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="518">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="520">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes"> <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes">
@@ -2458,7 +2458,7 @@
<trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois" approved="yes"> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois" approved="yes">
<source>Derniers envois</source> <source>Derniers envois</source>
<target state="translated">Last sent</target> <target state="translated">Last sent</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="165">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes"> <trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes">
<source>Des difficultes ont ete rencontres a la connection au serveur distant</source> <source>Des difficultes ont ete rencontres a la connection au serveur distant</source>
@@ -2537,7 +2537,7 @@
<jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file> <jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display &amp; action settings" approved="yes"> <trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display &amp; action settings" approved="yes">
<source>Display &amp; action settings</source> <source><![CDATA[Display & action settings]]></source>
<target state="translated">Display and action settings</target> <target state="translated">Display and action settings</target>
<jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file> <jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -3286,8 +3286,8 @@
<source>File is not present in quarantine anymore, please refresh</source> <source>File is not present in quarantine anymore, please refresh</source>
<target state="translated">Document is not in quarantine anymore, please refresh</target> <target state="translated">Document is not in quarantine anymore, please refresh</target>
<jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="140">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="136">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="170">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="157">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -5925,7 +5925,7 @@
<trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application" approved="yes"> <trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application" approved="yes">
<source>Résultats des derniers envois effectués pour cette application</source> <source>Résultats des derniers envois effectués pour cette application</source>
<target state="translated">Last webhooks sent for this application</target> <target state="translated">Last webhooks sent for this application</target>
<jms:reference-file line="127">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="166">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes"> <trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes">
<source>SMTP encryption</source> <source>SMTP encryption</source>
@@ -6116,7 +6116,7 @@
<jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file>
<jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="115">prod/upload/upload.html.twig</jms:reference-file>
<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="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file>
@@ -6475,8 +6475,8 @@
<trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes">
<source>Substitute</source> <source>Substitute</source>
<target state="translated">Substitute</target> <target state="translated">Substitute</target>
<jms:reference-file line="521">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="523">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="522">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="524">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes">
<source>Substitution is not possible for this kind of record</source> <source>Substitution is not possible for this kind of record</source>
@@ -6748,7 +6748,7 @@
<trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes">
<source>The file was moved to the quarantine</source> <source>The file was moved to the quarantine</source>
<target state="translated">The file has moved to quarantine</target> <target state="translated">The file has moved to quarantine</target>
<jms:reference-file line="338">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="283">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes">
<source>The following errors have been detected</source> <source>The following errors have been detected</source>
@@ -6764,7 +6764,7 @@
<trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes">
<source>The record was successfully created</source> <source>The record was successfully created</source>
<target state="translated">The record has been successfully created</target> <target state="translated">The record has been successfully created</target>
<jms:reference-file line="292">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes">
<source>The records have been properly ordered</source> <source>The records have been properly ordered</source>
@@ -6999,7 +6999,7 @@
<trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes">
<source>Transmited files</source> <source>Transmited files</source>
<target state="translated">Transmitted files</target> <target state="translated">Transmitted files</target>
<jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="124">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes">
@@ -7061,7 +7061,7 @@
<trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes">
<source>Unable to add file to Phraseanet</source> <source>Unable to add file to Phraseanet</source>
<target state="translated">Unable to add files to Phraseanet</target> <target state="translated">Unable to add files to Phraseanet</target>
<jms:reference-file line="350">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="295">Controller/Prod/UploadController.php</jms:reference-file>
<jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes">
@@ -7851,7 +7851,7 @@
<trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes">
<source>You can not upload files</source> <source>You can not upload files</source>
<target state="translated">You are not allowed to upload files</target> <target state="translated">You are not allowed to upload files</target>
<jms:reference-file line="144">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes">
@@ -9991,7 +9991,7 @@
<trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes">
<source>boutton::retour</source> <source>boutton::retour</source>
<target state="translated">Back</target> <target state="translated">Back</target>
<jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="193">web/developers/application.html.twig</jms:reference-file>
<jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file> <jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file>
@@ -10348,6 +10348,101 @@
<target state="translated">descending</target> <target state="translated">descending</target>
<jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> <jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e82b164f61602c25d57b485ed09c7a59a8e0919" resname="developers:: Events name">
<source>developers:: Events name</source>
<target state="new">developers:: Events name</target>
<jms:reference-file line="134">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f717955140c0a034f0e08cfc1416b8443e86cbb5" resname="developers:: Events trigger this webhook">
<source>developers:: Events trigger this webhook</source>
<target state="new">developers:: Events trigger this webhook</target>
<jms:reference-file line="125">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="3a425cde38ee310e52988e9e9970f1c8dd376c13" resname="developers:: Events type">
<source>developers:: Events type</source>
<target state="new">developers:: Events type</target>
<jms:reference-file line="131">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="0b3e5bbe37fa58fc7ce4682309017ffcebe95a23" resname="developers:: Select events to trigger this webhook url">
<source>developers:: Select events to trigger this webhook url</source>
<target state="new">developers:: Select events to trigger this webhook url</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="bffa41c7a64fc38e50153ea0f6f7c2368b008028" resname="developers:: a order delivered">
<source>developers:: a order delivered</source>
<target state="new">developers:: a order delivered</target>
<jms:reference-file line="372">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="9b74fc2656c9e78eec665260f31b446edf548932" resname="developers:: a order denied">
<source>developers:: a order denied</source>
<target state="new">developers:: a order denied</target>
<jms:reference-file line="373">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="c2d24cc69b826a71661c25cbd5291cdaaf95208c" resname="developers:: collection changed for record">
<source>developers:: collection changed for record</source>
<target state="new">developers:: collection changed for record</target>
<jms:reference-file line="353">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1066a8925f76bd4aadebd7ec114b0ff771ab05ed" resname="developers:: media substituted for record">
<source>developers:: media substituted for record</source>
<target state="new">developers:: media substituted for record</target>
<jms:reference-file line="352">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="ab1c856fecf799bb87498cb26ea74b3db85b4f0b" resname="developers:: new feed entry on phraseanet">
<source>developers:: new feed entry on phraseanet</source>
<target state="new">developers:: new feed entry on phraseanet</target>
<jms:reference-file line="368">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="92259dc5125d969b7ba7fb1af0afd121147d1839" resname="developers:: new order created">
<source>developers:: new order created</source>
<target state="new">developers:: new order created</target>
<jms:reference-file line="371">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="4d09e2ac8748c5ea4bb66d3cd247941f99478125" resname="developers:: record or story created">
<source>developers:: record or story created</source>
<target state="new">developers:: record or story created</target>
<jms:reference-file line="349">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1f036a4965ecb781192393a08a5aa0510a94524c" resname="developers:: record or story deleted">
<source>developers:: record or story deleted</source>
<target state="new">developers:: record or story deleted</target>
<jms:reference-file line="351">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="98121e43abc2802cfec12de894e041f54d7c9b2c" resname="developers:: record or story edited">
<source>developers:: record or story edited</source>
<target state="new">developers:: record or story edited</target>
<jms:reference-file line="350">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="7479330e0d56c8b37e71013043acecd329ce5f08" resname="developers:: status changed for record">
<source>developers:: status changed for record</source>
<target state="new">developers:: status changed for record</target>
<jms:reference-file line="354">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="db026e337fa7eeba8352e87ca00a28e19c854453" resname="developers:: subdef created for a record">
<source>developers:: subdef created for a record</source>
<target state="new">developers:: subdef created for a record</target>
<jms:reference-file line="357">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="18fc15413169b19baf33adc2572d53a76b86f1f5" resname="developers:: subdef creation failed for a record">
<source>developers:: subdef creation failed for a record</source>
<target state="new">developers:: subdef creation failed for a record</target>
<jms:reference-file line="358">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="e59d8fc44e34b786247fa5924eeb12a4a1202215" resname="developers:: user deleted on phraseanet">
<source>developers:: user deleted on phraseanet</source>
<target state="new">developers:: user deleted on phraseanet</target>
<jms:reference-file line="361">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="13577491a21410883cb7990ce9fdd481fca5c58b" resname="developers:: user registration granted on phraseanet">
<source>developers:: user registration granted on phraseanet</source>
<target state="new">developers:: user registration granted on phraseanet</target>
<jms:reference-file line="364">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="b7786ecdfe826e6f347dbf643191d79a196c6057" resname="developers:: user registration rejected on phraseanet">
<source>developers:: user registration rejected on phraseanet</source>
<target state="new">developers:: user registration rejected on phraseanet</target>
<jms:reference-file line="365">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes"> <trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes">
<source>do you want to validate</source> <source>do you want to validate</source>
<target state="translated">Do you want to validate</target> <target state="translated">Do you want to validate</target>
@@ -11723,7 +11818,7 @@
<jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file> <jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt; " approved="yes"> <trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt; " approved="yes">
<source>phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt;</source> <source><![CDATA[phraseanet::account: << your account can be deleted via admin interface >>]]></source>
<target state="translated">Your rights do not allow to perform this action. Your account can only be deleted via the Administration interface.</target> <target state="translated">Your rights do not allow to perform this action. Your account can only be deleted via the Administration interface.</target>
<jms:reference-file line="289">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="289">web/account/account.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -13872,12 +13967,12 @@ It is possible to place several search areas</target>
<trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID" approved="yes"> <trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID" approved="yes">
<source>same UUID</source> <source>same UUID</source>
<target state="translated">A file with the same UUID already exists in the database</target> <target state="translated">A file with the same UUID already exists in the database</target>
<jms:reference-file line="87">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="76">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum" approved="yes"> <trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum" approved="yes">
<source>same checksum</source> <source>same checksum</source>
<target state="translated">A file with the same checksum already exists in the database</target> <target state="translated">A file with the same checksum already exists in the database</target>
<jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="69">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename" approved="yes"> <trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename" approved="yes">
<source>same filename</source> <source>same filename</source>
@@ -14357,7 +14452,7 @@ It is possible to place several search areas</target>
<jms:reference-file line="1338">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="1338">web/thesaurus/thesaurus.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes"> <trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes">
<source>thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)</source> <source><![CDATA[thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)]]></source>
<target state="translated"><![CDATA[Delete branch : &#10 (concerned terms will be displayed as candidates on future indexation)]]></target> <target state="translated"><![CDATA[Delete branch : &#10 (concerned terms will be displayed as candidates on future indexation)]]></target>
<jms:reference-file line="542">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="542">web/thesaurus/thesaurus.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -14935,9 +15030,9 @@ It is possible to place several search areas</target>
<trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes">
<source>upload:: Status :</source> <source>upload:: Status :</source>
<target state="translated">Apply status</target> <target state="translated">Apply status</target>
<jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="81">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="462">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="463">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes">
<source>users rights have been reseted</source> <source>users rights have been reseted</source>

View File

@@ -1,14 +1,14 @@
<?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="2021-09-24T11:10:54Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:31:10Z" 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>
</header> </header>
<body> <body>
<trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname=""> <trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname="">
<source/> <source></source>
<target state="new"/> <target state="new"></target>
<jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file> <jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file>
<jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file> <jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -196,7 +196,7 @@
<jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file> <jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents&lt;br/&gt;selectionnes" approved="yes"> <trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents&lt;br/&gt;selectionnes" approved="yes">
<source>%number% documents&lt;br/&gt;selectionnes</source> <source><![CDATA[%number% documents<br/>selectionnes]]></source>
<target state="translated"><![CDATA[%number% documents<br/>sélectionnés]]></target> <target state="translated"><![CDATA[%number% documents<br/>sélectionnés]]></target>
<jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file> <jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -249,7 +249,7 @@
<trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes"> <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files" approved="yes">
<source>%quantity% selected files</source> <source>%quantity% selected files</source>
<target state="translated">%quantity% fichiers sélectionnés</target> <target state="translated">%quantity% fichiers sélectionnés</target>
<jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes"> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users" approved="yes">
<source>%quantity_records% records have been sent for validation to %quantity_users% users</source> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source>
@@ -264,7 +264,7 @@
<trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes">
<source>%record_count% records match the unique identifier :</source> <source>%record_count% records match the unique identifier :</source>
<target state="translated">%record_count% enregistrements correspondent à des identifiants uniques existants:</target> <target state="translated">%record_count% enregistrements correspondent à des identifiants uniques existants:</target>
<jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="592">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes">
<source>%s field has been created with success.</source> <source>%s field has been created with success.</source>
@@ -466,12 +466,12 @@
<trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes"> <trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes">
<source>A file with the same UUID already exists in database</source> <source>A file with the same UUID already exists in database</source>
<target state="translated">Un fichier avec le même UUID existe déjà dans la base de données</target> <target state="translated">Un fichier avec le même UUID existe déjà dans la base de données</target>
<jms:reference-file line="95">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="84">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes"> <trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes">
<source>A file with the same checksum already exists in database</source> <source>A file with the same checksum already exists in database</source>
<target state="translated">Un fichier avec la même somme de contrôle existe déjà dans la base de données</target> <target state="translated">Un fichier avec la même somme de contrôle existe déjà dans la base de données</target>
<jms:reference-file line="85">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes"> <trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes">
<source>A file with the same filename already exists in database</source> <source>A file with the same filename already exists in database</source>
@@ -481,7 +481,7 @@
<trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes">
<source>A record matches the unique identifier :</source> <source>A record matches the unique identifier :</source>
<target state="translated">Un enregistrement correspond à un identifiant unique existant :</target> <target state="translated">Un enregistrement correspond à un identifiant unique existant :</target>
<jms:reference-file line="588">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes">
<source>A required field is missing or has an empty value</source> <source>A required field is missing or has an empty value</source>
@@ -670,8 +670,8 @@
<target state="translated">Ajouter</target> <target state="translated">Ajouter</target>
<jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file>
<jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="514">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="515">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field" approved="yes"> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field" approved="yes">
<source>Add a new field</source> <source>Add a new field</source>
@@ -970,7 +970,7 @@
<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>
<jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="285">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="245">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file>
<jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file> <jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file>
@@ -1595,7 +1595,7 @@
<trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes">
<source>Cancel all</source> <source>Cancel all</source>
<target state="translated">Annuler tout</target> <target state="translated">Annuler tout</target>
<jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="133">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes">
@@ -1791,7 +1791,7 @@
<trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes">
<source>Clear list</source> <source>Clear list</source>
<target state="translated">Vider la liste</target> <target state="translated">Vider la liste</target>
<jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="114">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes">
@@ -2382,8 +2382,8 @@
<trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes">
<source>Delete</source> <source>Delete</source>
<target state="translated">Supprimer</target> <target state="translated">Supprimer</target>
<jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="519">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="518">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="520">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes"> <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull" approved="yes">
@@ -2455,7 +2455,7 @@
<trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois" approved="yes"> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois" approved="yes">
<source>Derniers envois</source> <source>Derniers envois</source>
<target state="translated">Derniers envois</target> <target state="translated">Derniers envois</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="165">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes"> <trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes">
<source>Des difficultes ont ete rencontres a la connection au serveur distant</source> <source>Des difficultes ont ete rencontres a la connection au serveur distant</source>
@@ -2534,7 +2534,7 @@
<jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file> <jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display &amp; action settings" approved="yes"> <trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display &amp; action settings" approved="yes">
<source>Display &amp; action settings</source> <source><![CDATA[Display & action settings]]></source>
<target state="translated">Paramétrage d'affichage et d'action</target> <target state="translated">Paramétrage d'affichage et d'action</target>
<jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file> <jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -3283,8 +3283,8 @@
<source>File is not present in quarantine anymore, please refresh</source> <source>File is not present in quarantine anymore, please refresh</source>
<target state="translated">Ce fichier n'est plus en quarantaine, rafraîchissez la page</target> <target state="translated">Ce fichier n'est plus en quarantaine, rafraîchissez la page</target>
<jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="140">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="136">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="170">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="157">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -5924,7 +5924,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application" approved="yes"> <trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application" approved="yes">
<source>Résultats des derniers envois effectués pour cette application</source> <source>Résultats des derniers envois effectués pour cette application</source>
<target state="translated">Résultats des derniers envois effectués pour cette application</target> <target state="translated">Résultats des derniers envois effectués pour cette application</target>
<jms:reference-file line="127">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="166">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes"> <trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes">
<source>SMTP encryption</source> <source>SMTP encryption</source>
@@ -6115,7 +6115,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file>
<jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="115">prod/upload/upload.html.twig</jms:reference-file>
<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="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file>
@@ -6474,8 +6474,8 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes">
<source>Substitute</source> <source>Substitute</source>
<target state="translated">Substituer</target> <target state="translated">Substituer</target>
<jms:reference-file line="521">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="523">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="522">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="524">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes">
<source>Substitution is not possible for this kind of record</source> <source>Substitution is not possible for this kind of record</source>
@@ -6747,7 +6747,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes">
<source>The file was moved to the quarantine</source> <source>The file was moved to the quarantine</source>
<target state="translated">Le fichier a été déplacé en quarantaine</target> <target state="translated">Le fichier a été déplacé en quarantaine</target>
<jms:reference-file line="338">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="283">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes">
<source>The following errors have been detected</source> <source>The following errors have been detected</source>
@@ -6763,7 +6763,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes">
<source>The record was successfully created</source> <source>The record was successfully created</source>
<target state="translated">L'enregistrement a été créé</target> <target state="translated">L'enregistrement a été créé</target>
<jms:reference-file line="292">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes">
<source>The records have been properly ordered</source> <source>The records have been properly ordered</source>
@@ -6998,7 +6998,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes">
<source>Transmited files</source> <source>Transmited files</source>
<target state="translated">Fichiers transmis</target> <target state="translated">Fichiers transmis</target>
<jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="124">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes">
@@ -7060,7 +7060,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes">
<source>Unable to add file to Phraseanet</source> <source>Unable to add file to Phraseanet</source>
<target state="translated">Impossible d'ajouter des fichiers à Phraseanet</target> <target state="translated">Impossible d'ajouter des fichiers à Phraseanet</target>
<jms:reference-file line="350">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="295">Controller/Prod/UploadController.php</jms:reference-file>
<jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes">
@@ -7850,7 +7850,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
<trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes">
<source>You can not upload files</source> <source>You can not upload files</source>
<target state="translated">Vous ne pouvez ajouter des fichiers</target> <target state="translated">Vous ne pouvez ajouter des fichiers</target>
<jms:reference-file line="144">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes">
@@ -9991,7 +9991,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes">
<source>boutton::retour</source> <source>boutton::retour</source>
<target state="translated">Retour</target> <target state="translated">Retour</target>
<jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="193">web/developers/application.html.twig</jms:reference-file>
<jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file> <jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file>
@@ -10348,6 +10348,101 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<target state="translated">Descendant</target> <target state="translated">Descendant</target>
<jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> <jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e82b164f61602c25d57b485ed09c7a59a8e0919" resname="developers:: Events name">
<source>developers:: Events name</source>
<target state="new">developers:: Events name</target>
<jms:reference-file line="134">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f717955140c0a034f0e08cfc1416b8443e86cbb5" resname="developers:: Events trigger this webhook">
<source>developers:: Events trigger this webhook</source>
<target state="new">developers:: Events trigger this webhook</target>
<jms:reference-file line="125">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="3a425cde38ee310e52988e9e9970f1c8dd376c13" resname="developers:: Events type">
<source>developers:: Events type</source>
<target state="new">developers:: Events type</target>
<jms:reference-file line="131">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="0b3e5bbe37fa58fc7ce4682309017ffcebe95a23" resname="developers:: Select events to trigger this webhook url">
<source>developers:: Select events to trigger this webhook url</source>
<target state="new">developers:: Select events to trigger this webhook url</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="bffa41c7a64fc38e50153ea0f6f7c2368b008028" resname="developers:: a order delivered">
<source>developers:: a order delivered</source>
<target state="new">developers:: a order delivered</target>
<jms:reference-file line="372">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="9b74fc2656c9e78eec665260f31b446edf548932" resname="developers:: a order denied">
<source>developers:: a order denied</source>
<target state="new">developers:: a order denied</target>
<jms:reference-file line="373">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="c2d24cc69b826a71661c25cbd5291cdaaf95208c" resname="developers:: collection changed for record">
<source>developers:: collection changed for record</source>
<target state="new">developers:: collection changed for record</target>
<jms:reference-file line="353">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1066a8925f76bd4aadebd7ec114b0ff771ab05ed" resname="developers:: media substituted for record">
<source>developers:: media substituted for record</source>
<target state="new">developers:: media substituted for record</target>
<jms:reference-file line="352">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="ab1c856fecf799bb87498cb26ea74b3db85b4f0b" resname="developers:: new feed entry on phraseanet">
<source>developers:: new feed entry on phraseanet</source>
<target state="new">developers:: new feed entry on phraseanet</target>
<jms:reference-file line="368">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="92259dc5125d969b7ba7fb1af0afd121147d1839" resname="developers:: new order created">
<source>developers:: new order created</source>
<target state="new">developers:: new order created</target>
<jms:reference-file line="371">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="4d09e2ac8748c5ea4bb66d3cd247941f99478125" resname="developers:: record or story created">
<source>developers:: record or story created</source>
<target state="new">developers:: record or story created</target>
<jms:reference-file line="349">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1f036a4965ecb781192393a08a5aa0510a94524c" resname="developers:: record or story deleted">
<source>developers:: record or story deleted</source>
<target state="new">developers:: record or story deleted</target>
<jms:reference-file line="351">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="98121e43abc2802cfec12de894e041f54d7c9b2c" resname="developers:: record or story edited">
<source>developers:: record or story edited</source>
<target state="new">developers:: record or story edited</target>
<jms:reference-file line="350">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="7479330e0d56c8b37e71013043acecd329ce5f08" resname="developers:: status changed for record">
<source>developers:: status changed for record</source>
<target state="new">developers:: status changed for record</target>
<jms:reference-file line="354">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="db026e337fa7eeba8352e87ca00a28e19c854453" resname="developers:: subdef created for a record">
<source>developers:: subdef created for a record</source>
<target state="new">developers:: subdef created for a record</target>
<jms:reference-file line="357">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="18fc15413169b19baf33adc2572d53a76b86f1f5" resname="developers:: subdef creation failed for a record">
<source>developers:: subdef creation failed for a record</source>
<target state="new">developers:: subdef creation failed for a record</target>
<jms:reference-file line="358">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="e59d8fc44e34b786247fa5924eeb12a4a1202215" resname="developers:: user deleted on phraseanet">
<source>developers:: user deleted on phraseanet</source>
<target state="new">developers:: user deleted on phraseanet</target>
<jms:reference-file line="361">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="13577491a21410883cb7990ce9fdd481fca5c58b" resname="developers:: user registration granted on phraseanet">
<source>developers:: user registration granted on phraseanet</source>
<target state="new">developers:: user registration granted on phraseanet</target>
<jms:reference-file line="364">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="b7786ecdfe826e6f347dbf643191d79a196c6057" resname="developers:: user registration rejected on phraseanet">
<source>developers:: user registration rejected on phraseanet</source>
<target state="new">developers:: user registration rejected on phraseanet</target>
<jms:reference-file line="365">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes"> <trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes">
<source>do you want to validate</source> <source>do you want to validate</source>
<target state="translated">Souhaitez vous valider l'opération?</target> <target state="translated">Souhaitez vous valider l'opération?</target>
@@ -11723,7 +11818,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
<jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file> <jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt; " approved="yes"> <trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt; " approved="yes">
<source>phraseanet::account: &lt;&lt; your account can be deleted via admin interface &gt;&gt;</source> <source><![CDATA[phraseanet::account: << your account can be deleted via admin interface >>]]></source>
<target state="translated">Vos droits ne vous permettent pas de réaliser cette action, votre compte ne peut être supprimé que via l'interface d'Administration.</target> <target state="translated">Vos droits ne vous permettent pas de réaliser cette action, votre compte ne peut être supprimé que via l'interface d'Administration.</target>
<jms:reference-file line="289">web/account/account.html.twig</jms:reference-file> <jms:reference-file line="289">web/account/account.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -13875,12 +13970,12 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
<trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID" approved="yes"> <trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID" approved="yes">
<source>same UUID</source> <source>same UUID</source>
<target state="translated">Un fichier avec le même UUID existe déjà dans la base de données</target> <target state="translated">Un fichier avec le même UUID existe déjà dans la base de données</target>
<jms:reference-file line="87">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="76">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum" approved="yes"> <trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum" approved="yes">
<source>same checksum</source> <source>same checksum</source>
<target state="translated">Un fichier avec la même somme de contrôle existe déjà dans la base de données</target> <target state="translated">Un fichier avec la même somme de contrôle existe déjà dans la base de données</target>
<jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="69">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename" approved="yes"> <trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename" approved="yes">
<source>same filename</source> <source>same filename</source>
@@ -14360,7 +14455,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
<jms:reference-file line="1338">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="1338">web/thesaurus/thesaurus.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes"> <trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes">
<source>thesaurus:: Supprimer cette branche ?&amp;#10;(les termes concernes remonteront en candidats a la prochaine indexation)</source> <source><![CDATA[thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)]]></source>
<target state="translated"><![CDATA[Supprimer cette branche ? &#10; (les termes concernés remonteront en candidats à la prochaine indexation)]]></target> <target state="translated"><![CDATA[Supprimer cette branche ? &#10; (les termes concernés remonteront en candidats à la prochaine indexation)]]></target>
<jms:reference-file line="542">web/thesaurus/thesaurus.html.twig</jms:reference-file> <jms:reference-file line="542">web/thesaurus/thesaurus.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
@@ -14938,9 +15033,9 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
<trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes">
<source>upload:: Status :</source> <source>upload:: Status :</source>
<target state="translated">Appliquer les status</target> <target state="translated">Appliquer les status</target>
<jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="81">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="462">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="463">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes">
<source>users rights have been reseted</source> <source>users rights have been reseted</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="2021-09-24T11:11:14Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:31:31Z" 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>
@@ -249,7 +249,7 @@
<trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files"> <trans-unit id="d7c38bf41291d1f920c6e0b56a1c4a1cfc0b6743" resname="%quantity% selected files">
<source>%quantity% selected files</source> <source>%quantity% selected files</source>
<target state="new">%quantity% selected files</target> <target state="new">%quantity% selected files</target>
<jms:reference-file line="111">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users"> <trans-unit id="eae910e840fe7df8ef8211d587e72af74ab69463" resname="%quantity_records% records have been sent for validation to %quantity_users% users">
<source>%quantity_records% records have been sent for validation to %quantity_users% users</source> <source>%quantity_records% records have been sent for validation to %quantity_users% users</source>
@@ -264,7 +264,7 @@
<trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes"> <trans-unit id="4d90df6ce9691d4bc172b9129250a5af4bef4b7f" resname="%record_count% records match the unique identifier :" approved="yes">
<source>%record_count% records match the unique identifier :</source> <source>%record_count% records match the unique identifier :</source>
<target state="translated">%record_count% records zijn gelijk aan de unieke id :</target> <target state="translated">%record_count% records zijn gelijk aan de unieke id :</target>
<jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="592">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes"> <trans-unit id="1d847e60f4e92e438c94f0eb3176ce96113c63e5" resname="%s field has been created with success." approved="yes">
<source>%s field has been created with success.</source> <source>%s field has been created with success.</source>
@@ -466,12 +466,12 @@
<trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes"> <trans-unit id="fa591b39e82a5a47573a9ed70172620c2660596c" resname="A file with the same UUID already exists in database" approved="yes">
<source>A file with the same UUID already exists in database</source> <source>A file with the same UUID already exists in database</source>
<target state="translated">Een bestand met dezelfde UUID bestaat al in de database</target> <target state="translated">Een bestand met dezelfde UUID bestaat al in de database</target>
<jms:reference-file line="95">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="84">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes"> <trans-unit id="3111a4c2d6a675604d8bed8fe7ac2d7ec859bca2" resname="A file with the same checksum already exists in database" approved="yes">
<source>A file with the same checksum already exists in database</source> <source>A file with the same checksum already exists in database</source>
<target state="translated">Een bestand met dezelfde checksum bestaat al in de database</target> <target state="translated">Een bestand met dezelfde checksum bestaat al in de database</target>
<jms:reference-file line="85">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes"> <trans-unit id="aee62b552774745bfc7778349545413b39c33a9a" resname="A file with the same filename already exists in database" approved="yes">
<source>A file with the same filename already exists in database</source> <source>A file with the same filename already exists in database</source>
@@ -481,7 +481,7 @@
<trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes"> <trans-unit id="e6558cad562de9eeae699e5f7fc7c8ae076d38c8" resname="A record matches the unique identifier :" approved="yes">
<source>A record matches the unique identifier :</source> <source>A record matches the unique identifier :</source>
<target state="translated">Een record is gelijk aan de unieke id :</target> <target state="translated">Een record is gelijk aan de unieke id :</target>
<jms:reference-file line="588">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="590">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes"> <trans-unit id="b73e8cb42d796f56db9989972e41942d9135c2cc" resname="A required field is missing or has an empty value" approved="yes">
<source>A required field is missing or has an empty value</source> <source>A required field is missing or has an empty value</source>
@@ -670,8 +670,8 @@
<target state="translated">Toevoegen</target> <target state="translated">Toevoegen</target>
<jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file> <jms:reference-file line="29">prod/User/Add.html.twig</jms:reference-file>
<jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="161">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="514">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="516">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="515">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field"> <trans-unit id="983c5aed52d2f74bf36e97dc34dbce97fdd43f5b" resname="Add a&#10; new field">
<source>Add a <source>Add a
@@ -972,7 +972,7 @@
<source>An error occured</source> <source>An error occured</source>
<target state="translated">Er is een fout opgetreden</target> <target state="translated">Er is een fout opgetreden</target>
<jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="120">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="285">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="245">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file> <jms:reference-file line="164">Controller/Prod/MoveCollectionController.php</jms:reference-file>
<jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="257">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file> <jms:reference-file line="262">Controller/Prod/BasketController.php</jms:reference-file>
@@ -1597,7 +1597,7 @@
<trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes"> <trans-unit id="ae1f9ef7dc1cee4760e7f208f36c225e3ab1aa1f" resname="Cancel all" approved="yes">
<source>Cancel all</source> <source>Cancel all</source>
<target state="translated">Annuleer alles</target> <target state="translated">Annuleer alles</target>
<jms:reference-file line="131">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="133">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="121">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes"> <trans-unit id="82695f04e6097106923a58949a9e1b0fadd1a989" resname="Cannot upload Zero Byte files" approved="yes">
@@ -1795,7 +1795,7 @@
<trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes"> <trans-unit id="7135ee5eaed0e404c4fcf48d6eb7d2808f8e55f2" resname="Clear list" approved="yes">
<source>Clear list</source> <source>Clear list</source>
<target state="translated">Lijst wissen</target> <target state="translated">Lijst wissen</target>
<jms:reference-file line="112">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="114">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="109">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes"> <trans-unit id="0fcdb8c5215c8bd73769c3492e47d86ec3f6837e" resname="Client application" approved="yes">
@@ -2388,8 +2388,8 @@
<trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes"> <trans-unit id="f6fdbe48dc54dd86f63097a03bd24094dedd713a" resname="Delete" approved="yes">
<source>Delete</source> <source>Delete</source>
<target state="translated">Verwijder</target> <target state="translated">Verwijder</target>
<jms:reference-file line="517">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="519">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="518">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="520">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file> <jms:reference-file line="25">admin/task-manager/templates.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull"> <trans-unit id="1b5737dea168495fa0495e00ce58b4832772a492" resname="Delete account successfull">
@@ -2461,7 +2461,7 @@
<trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois"> <trans-unit id="dcce9368ad626fe4addfa719b7a16807d464aa9b" resname="Derniers envois">
<source>Derniers envois</source> <source>Derniers envois</source>
<target state="new">Derniers envois</target> <target state="new">Derniers envois</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="165">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes"> <trans-unit id="ec52b98c45f63139a4bee23fa7d177838f2b3628" resname="Des difficultes ont ete rencontres a la connection au serveur distant" approved="yes">
<source>Des difficultes ont ete rencontres a la connection au serveur distant</source> <source>Des difficultes ont ete rencontres a la connection au serveur distant</source>
@@ -3295,8 +3295,8 @@
<source>File is not present in quarantine anymore, please refresh</source> <source>File is not present in quarantine anymore, please refresh</source>
<target state="translated">Bestand is niet meer in de quarantiane aanwezig, gelieve te vernieuwen</target> <target state="translated">Bestand is niet meer in de quarantiane aanwezig, gelieve te vernieuwen</target>
<jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="56">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="140">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="136">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="170">Model/Manipulator/LazaretManipulator.php</jms:reference-file> <jms:reference-file line="157">Model/Manipulator/LazaretManipulator.php</jms:reference-file>
<jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="78">Controller/Prod/LazaretController.php</jms:reference-file>
<jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file> <jms:reference-file line="207">Controller/Prod/LazaretController.php</jms:reference-file>
</trans-unit> </trans-unit>
@@ -5934,7 +5934,7 @@
<trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application"> <trans-unit id="1d72d3b024f99631791dcfbc8288caa16d3ff388" resname="Résultats des derniers envois effectués pour cette application">
<source>Résultats des derniers envois effectués pour cette application</source> <source>Résultats des derniers envois effectués pour cette application</source>
<target state="new">Résultats des derniers envois effectués pour cette application</target> <target state="new">Résultats des derniers envois effectués pour cette application</target>
<jms:reference-file line="127">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="166">web/developers/application.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes"> <trans-unit id="741cd64a01685389e2fabdb7091a3b70f6be63ee" resname="SMTP encryption" approved="yes">
<source>SMTP encryption</source> <source>SMTP encryption</source>
@@ -6125,7 +6125,7 @@
<jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file> <jms:reference-file line="46">web/login/forgot-password.html.twig</jms:reference-file>
<jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="330">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file> <jms:reference-file line="332">prod/actions/Push.html.twig</jms:reference-file>
<jms:reference-file line="113">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="115">prod/upload/upload.html.twig</jms:reference-file>
<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="185">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="185">prod/orders/order_item.html.twig</jms:reference-file>
<jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file> <jms:reference-file line="220">prod/orders/order_item.html.twig</jms:reference-file>
@@ -6484,8 +6484,8 @@
<trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes"> <trans-unit id="8017bd7de9961cf42f59abc587d0495a9d25c2a9" resname="Substitute" approved="yes">
<source>Substitute</source> <source>Substitute</source>
<target state="translated">Vervangen</target> <target state="translated">Vervangen</target>
<jms:reference-file line="521">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="523">prod/upload/lazaret.html.twig</jms:reference-file>
<jms:reference-file line="522">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="524">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes"> <trans-unit id="3d48a1d66362cef46e567ddf521b0dc3233f57a2" resname="Substitution is not possible for this kind of record" approved="yes">
<source>Substitution is not possible for this kind of record</source> <source>Substitution is not possible for this kind of record</source>
@@ -6757,7 +6757,7 @@
<trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes"> <trans-unit id="1d5dadcdeeecd294a88baf096ba0440053ecf738" resname="The file was moved to the quarantine" approved="yes">
<source>The file was moved to the quarantine</source> <source>The file was moved to the quarantine</source>
<target state="translated">De file werd naar de quarantaine verplaatst</target> <target state="translated">De file werd naar de quarantaine verplaatst</target>
<jms:reference-file line="338">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="283">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes"> <trans-unit id="1818502d42e14ffcb9c664fd1365fafa969971ff" resname="The following errors have been detected" approved="yes">
<source>The following errors have been detected</source> <source>The following errors have been detected</source>
@@ -6773,7 +6773,7 @@
<trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes"> <trans-unit id="bae1c72ecbe1459751e4a0fee382a305bbf933b7" resname="The record was successfully created" approved="yes">
<source>The record was successfully created</source> <source>The record was successfully created</source>
<target state="translated">De record werd met succes gemaakt</target> <target state="translated">De record werd met succes gemaakt</target>
<jms:reference-file line="292">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="253">Controller/Prod/UploadController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes"> <trans-unit id="209817489c23cec8b7a15f6b8ca3e45daf08656d" resname="The records have been properly ordered" approved="yes">
<source>The records have been properly ordered</source> <source>The records have been properly ordered</source>
@@ -7008,7 +7008,7 @@
<trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes"> <trans-unit id="9764c016bb5a296069109116fa95c49815dcba82" resname="Transmited files" approved="yes">
<source>Transmited files</source> <source>Transmited files</source>
<target state="translated">Verzonden bestanden</target> <target state="translated">Verzonden bestanden</target>
<jms:reference-file line="122">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="124">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="118">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes"> <trans-unit id="6e764776541fbe428a3566f42ee7956312af98b7" resname="Trier par" approved="yes">
@@ -7070,7 +7070,7 @@
<trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes"> <trans-unit id="d32751443628a0d2c5b31b441c1e2b3001f35dfd" resname="Unable to add file to Phraseanet" approved="yes">
<source>Unable to add file to Phraseanet</source> <source>Unable to add file to Phraseanet</source>
<target state="translated">Onmogelijk om een bestand aan Phraseanet toe te voegen</target> <target state="translated">Onmogelijk om een bestand aan Phraseanet toe te voegen</target>
<jms:reference-file line="350">Controller/Prod/UploadController.php</jms:reference-file> <jms:reference-file line="295">Controller/Prod/UploadController.php</jms:reference-file>
<jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file> <jms:reference-file line="195">Controller/Admin/FeedController.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes"> <trans-unit id="8b233593eb66b5be4da2f44ff527bd641b3a6fc1" resname="Unable to add usr to list" approved="yes">
@@ -7860,7 +7860,7 @@
<trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes"> <trans-unit id="4a67615bcd64fcc9443c499676a462d835ad841e" resname="You can not upload files" approved="yes">
<source>You can not upload files</source> <source>You can not upload files</source>
<target state="translated">U kunt geen files uploaden</target> <target state="translated">U kunt geen files uploaden</target>
<jms:reference-file line="144">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="146">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="102">prod/upload/upload-flash.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes"> <trans-unit id="4faca55769348dcbc9714b19438181057aa2510e" resname="You do not enough rights to update status" approved="yes">
@@ -10000,7 +10000,7 @@
<trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes"> <trans-unit id="e0af1d0d7872c48928d4faef76c45567426e62f9" resname="boutton::retour" approved="yes">
<source>boutton::retour</source> <source>boutton::retour</source>
<target state="translated">terug</target> <target state="translated">terug</target>
<jms:reference-file line="154">web/developers/application.html.twig</jms:reference-file> <jms:reference-file line="193">web/developers/application.html.twig</jms:reference-file>
<jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file> <jms:reference-file line="116">web/developers/application_form.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photo_deleteelement.html.twig</jms:reference-file>
<jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file> <jms:reference-file line="20">Bridge/Flickr/photoset_deleteelement.html.twig</jms:reference-file>
@@ -10357,6 +10357,101 @@
<target state="translated">oplopend</target> <target state="translated">oplopend</target>
<jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file> <jms:reference-file line="184">SearchEngine/Elastic/ElasticSearchEngine.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="8e82b164f61602c25d57b485ed09c7a59a8e0919" resname="developers:: Events name">
<source>developers:: Events name</source>
<target state="new">developers:: Events name</target>
<jms:reference-file line="134">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="f717955140c0a034f0e08cfc1416b8443e86cbb5" resname="developers:: Events trigger this webhook">
<source>developers:: Events trigger this webhook</source>
<target state="new">developers:: Events trigger this webhook</target>
<jms:reference-file line="125">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="3a425cde38ee310e52988e9e9970f1c8dd376c13" resname="developers:: Events type">
<source>developers:: Events type</source>
<target state="new">developers:: Events type</target>
<jms:reference-file line="131">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="0b3e5bbe37fa58fc7ce4682309017ffcebe95a23" resname="developers:: Select events to trigger this webhook url">
<source>developers:: Select events to trigger this webhook url</source>
<target state="new">developers:: Select events to trigger this webhook url</target>
<jms:reference-file line="126">web/developers/application.html.twig</jms:reference-file>
</trans-unit>
<trans-unit id="bffa41c7a64fc38e50153ea0f6f7c2368b008028" resname="developers:: a order delivered">
<source>developers:: a order delivered</source>
<target state="new">developers:: a order delivered</target>
<jms:reference-file line="372">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="9b74fc2656c9e78eec665260f31b446edf548932" resname="developers:: a order denied">
<source>developers:: a order denied</source>
<target state="new">developers:: a order denied</target>
<jms:reference-file line="373">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="c2d24cc69b826a71661c25cbd5291cdaaf95208c" resname="developers:: collection changed for record">
<source>developers:: collection changed for record</source>
<target state="new">developers:: collection changed for record</target>
<jms:reference-file line="353">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1066a8925f76bd4aadebd7ec114b0ff771ab05ed" resname="developers:: media substituted for record">
<source>developers:: media substituted for record</source>
<target state="new">developers:: media substituted for record</target>
<jms:reference-file line="352">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="ab1c856fecf799bb87498cb26ea74b3db85b4f0b" resname="developers:: new feed entry on phraseanet">
<source>developers:: new feed entry on phraseanet</source>
<target state="new">developers:: new feed entry on phraseanet</target>
<jms:reference-file line="368">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="92259dc5125d969b7ba7fb1af0afd121147d1839" resname="developers:: new order created">
<source>developers:: new order created</source>
<target state="new">developers:: new order created</target>
<jms:reference-file line="371">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="4d09e2ac8748c5ea4bb66d3cd247941f99478125" resname="developers:: record or story created">
<source>developers:: record or story created</source>
<target state="new">developers:: record or story created</target>
<jms:reference-file line="349">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="1f036a4965ecb781192393a08a5aa0510a94524c" resname="developers:: record or story deleted">
<source>developers:: record or story deleted</source>
<target state="new">developers:: record or story deleted</target>
<jms:reference-file line="351">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="98121e43abc2802cfec12de894e041f54d7c9b2c" resname="developers:: record or story edited">
<source>developers:: record or story edited</source>
<target state="new">developers:: record or story edited</target>
<jms:reference-file line="350">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="7479330e0d56c8b37e71013043acecd329ce5f08" resname="developers:: status changed for record">
<source>developers:: status changed for record</source>
<target state="new">developers:: status changed for record</target>
<jms:reference-file line="354">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="db026e337fa7eeba8352e87ca00a28e19c854453" resname="developers:: subdef created for a record">
<source>developers:: subdef created for a record</source>
<target state="new">developers:: subdef created for a record</target>
<jms:reference-file line="357">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="18fc15413169b19baf33adc2572d53a76b86f1f5" resname="developers:: subdef creation failed for a record">
<source>developers:: subdef creation failed for a record</source>
<target state="new">developers:: subdef creation failed for a record</target>
<jms:reference-file line="358">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="e59d8fc44e34b786247fa5924eeb12a4a1202215" resname="developers:: user deleted on phraseanet">
<source>developers:: user deleted on phraseanet</source>
<target state="new">developers:: user deleted on phraseanet</target>
<jms:reference-file line="361">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="13577491a21410883cb7990ce9fdd481fca5c58b" resname="developers:: user registration granted on phraseanet">
<source>developers:: user registration granted on phraseanet</source>
<target state="new">developers:: user registration granted on phraseanet</target>
<jms:reference-file line="364">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="b7786ecdfe826e6f347dbf643191d79a196c6057" resname="developers:: user registration rejected on phraseanet">
<source>developers:: user registration rejected on phraseanet</source>
<target state="new">developers:: user registration rejected on phraseanet</target>
<jms:reference-file line="365">Controller/Root/DeveloperController.php</jms:reference-file>
</trans-unit>
<trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes"> <trans-unit id="55a2ad6e3d1c02d871104d64fb811f08c54bd1b9" resname="do you want to validate" approved="yes">
<source>do you want to validate</source> <source>do you want to validate</source>
<target state="translated">Wilt u goedkeuren</target> <target state="translated">Wilt u goedkeuren</target>
@@ -13875,12 +13970,12 @@
<trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID"> <trans-unit id="ae34347293abc9a106150c8db2b2a3b1b7739c0b" resname="same UUID">
<source>same UUID</source> <source>same UUID</source>
<target state="new">same UUID</target> <target state="new">same UUID</target>
<jms:reference-file line="87">Border/Checker/UUID.php</jms:reference-file> <jms:reference-file line="76">Border/Checker/UUID.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum"> <trans-unit id="9efb800c6df15d107be9c0aeb19e2d218ebfe135" resname="same checksum">
<source>same checksum</source> <source>same checksum</source>
<target state="new">same checksum</target> <target state="new">same checksum</target>
<jms:reference-file line="77">Border/Checker/Sha256.php</jms:reference-file> <jms:reference-file line="69">Border/Checker/Sha256.php</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename"> <trans-unit id="99e3a652745118f0d3c79e13d81168544afe2b77" resname="same filename">
<source>same filename</source> <source>same filename</source>
@@ -14938,9 +15033,9 @@
<trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes"> <trans-unit id="39e4890a2d75f483b1cb2131b2d19f8cf96a502b" resname="upload:: Status :" approved="yes">
<source>upload:: Status :</source> <source>upload:: Status :</source>
<target state="translated">Status</target> <target state="translated">Status</target>
<jms:reference-file line="80">prod/upload/upload.html.twig</jms:reference-file> <jms:reference-file line="81">prod/upload/upload.html.twig</jms:reference-file>
<jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file> <jms:reference-file line="75">prod/upload/upload-flash.html.twig</jms:reference-file>
<jms:reference-file line="462">prod/upload/lazaret.html.twig</jms:reference-file> <jms:reference-file line="463">prod/upload/lazaret.html.twig</jms:reference-file>
</trans-unit> </trans-unit>
<trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes"> <trans-unit id="4fea0574cc81b5fd40ab0537b0905cc4c3806039" resname="users rights have been reseted" approved="yes">
<source>users rights have been reseted</source> <source>users rights have been reseted</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="2021-09-24T11:10:19Z" source-language="en" target-language="de" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:30:36Z" 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="2021-09-24T11:10:36Z" source-language="en" target-language="en" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:30:52Z" 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="2021-09-24T11:10:54Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:31:10Z" 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="2021-09-24T11:11:14Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available"> <file date="2021-11-16T13:31:31Z" 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

@@ -122,6 +122,45 @@
</tbody> </tbody>
</table> </table>
<h1>{{ "developers:: Events trigger this webhook" | trans }}</h1>
<p>{{ "developers:: Select events to trigger this webhook url" | trans }}</p>
<table class="table table-condensed table-bordered">
<thead>
<tr>
<th>
{{ "developers:: Events type" | trans }}
</th>
<th>
{{ "developers:: Events name" | trans }}
</th>
</tr>
</thead>
<tbody>
{% for webhook_type, webhooks in webhook_event_list %}
<tr>
<td>
{{ webhook_type }}
</td>
<td>
<ul class="unstyled">
{% for webhook_name, webhook_description in webhooks %}
<li>
<label class="checkbox" for="{{ webhook_name }}" >
<input class="update-listened-event" type="checkbox" id="{{ webhook_name }}"
data-path="{{ path('developers_application_listened_event', {"application" : application.getId(), "event_name": webhook_name}) }}"
{% if webhook_name in application.getListenedEvents() %} checked {% endif %}
name="{{ webhook_name }}" value="1"/>
<strong> {{ webhook_name }} </strong>
<p> {{ webhook_description }} </p>
</label>
</li>
{% endfor %}
</ul>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% if deliveries | length > 0 %} {% if deliveries | length > 0 %}
<h1>{{ "Derniers envois" | trans }}</h1> <h1>{{ "Derniers envois" | trans }}</h1>
<p> {{ "Résultats des derniers envois effectués pour cette application" | trans }}</p> <p> {{ "Résultats des derniers envois effectués pour cette application" | trans }}</p>