mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-17 06:53:15 +00:00
Merge pull request #3926 from alchemy-fr/PHRAS-3595-publication-notification
PHRAS-3595 merge publication can notify email on update
This commit is contained in:
38
Phraseanet-production-client/dist/production.js
vendored
38
Phraseanet-production-client/dist/production.js
vendored
@@ -3298,6 +3298,7 @@ var publication = function publication(services) {
|
||||
var $feed_title_warning = (0, _jquery2.default)('.feed_title_warning', modal.getDomElement());
|
||||
var $feed_subtitle_field = (0, _jquery2.default)('#feed_add_subtitle', modal.getDomElement());
|
||||
var $feed_subtitle_warning = (0, _jquery2.default)('.feed_subtitle_warning', modal.getDomElement());
|
||||
var $feed_add_notify = (0, _jquery2.default)('#feed_add_notify', modal.getDomElement());
|
||||
feedFieldValidator($feed_title_field, $feed_title_warning, 128);
|
||||
feedFieldValidator($feed_subtitle_field, $feed_subtitle_warning, 1024);
|
||||
|
||||
@@ -3305,6 +3306,11 @@ var publication = function publication(services) {
|
||||
$feeds_item.removeClass('selected');
|
||||
(0, _jquery2.default)(this).addClass('selected');
|
||||
(0, _jquery2.default)('input[name="feed_id"]', $form).val((0, _jquery2.default)('input', this).val());
|
||||
if ((0, _jquery2.default)('#modal_feed #feed_add_notify').is(':checked')) {
|
||||
getUserCount();
|
||||
} else {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty();
|
||||
}
|
||||
}).hover(function () {
|
||||
(0, _jquery2.default)(this).addClass('hover');
|
||||
}, function () {
|
||||
@@ -3337,9 +3343,41 @@ var publication = function publication(services) {
|
||||
}
|
||||
});
|
||||
|
||||
(0, _jquery2.default)('#modal_feed #feed_add_notify').on('click', function () {
|
||||
var $this = (0, _jquery2.default)(this);
|
||||
|
||||
if ($this.is(':checked')) {
|
||||
getUserCount();
|
||||
} else {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty();
|
||||
}
|
||||
});
|
||||
|
||||
return;
|
||||
};
|
||||
|
||||
var getUserCount = function getUserCount() {
|
||||
_jquery2.default.ajax({
|
||||
type: 'POST',
|
||||
url: '/prod/feeds/notify/count/',
|
||||
dataType: 'json',
|
||||
data: {
|
||||
feed_id: (0, _jquery2.default)('#modal_feed input[name="feed_id"]').val()
|
||||
},
|
||||
beforeSend: function beforeSend() {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty().html('<img src="/assets/common/images/icons/main-loader.gif" alt="loading"/>');
|
||||
},
|
||||
success: function success(data) {
|
||||
if (data.success) {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty().append(data.message);
|
||||
} else {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty().append(data.message);
|
||||
(0, _jquery2.default)('#modal_feed #feed_add_notify').prop('checked', false);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var onSubmitPublication = function onSubmitPublication() {
|
||||
var $dialog = _dialog2.default.get(1);
|
||||
var error = false;
|
||||
|
@@ -3298,6 +3298,7 @@ var publication = function publication(services) {
|
||||
var $feed_title_warning = (0, _jquery2.default)('.feed_title_warning', modal.getDomElement());
|
||||
var $feed_subtitle_field = (0, _jquery2.default)('#feed_add_subtitle', modal.getDomElement());
|
||||
var $feed_subtitle_warning = (0, _jquery2.default)('.feed_subtitle_warning', modal.getDomElement());
|
||||
var $feed_add_notify = (0, _jquery2.default)('#feed_add_notify', modal.getDomElement());
|
||||
feedFieldValidator($feed_title_field, $feed_title_warning, 128);
|
||||
feedFieldValidator($feed_subtitle_field, $feed_subtitle_warning, 1024);
|
||||
|
||||
@@ -3305,6 +3306,11 @@ var publication = function publication(services) {
|
||||
$feeds_item.removeClass('selected');
|
||||
(0, _jquery2.default)(this).addClass('selected');
|
||||
(0, _jquery2.default)('input[name="feed_id"]', $form).val((0, _jquery2.default)('input', this).val());
|
||||
if ((0, _jquery2.default)('#modal_feed #feed_add_notify').is(':checked')) {
|
||||
getUserCount();
|
||||
} else {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty();
|
||||
}
|
||||
}).hover(function () {
|
||||
(0, _jquery2.default)(this).addClass('hover');
|
||||
}, function () {
|
||||
@@ -3337,9 +3343,41 @@ var publication = function publication(services) {
|
||||
}
|
||||
});
|
||||
|
||||
(0, _jquery2.default)('#modal_feed #feed_add_notify').on('click', function () {
|
||||
var $this = (0, _jquery2.default)(this);
|
||||
|
||||
if ($this.is(':checked')) {
|
||||
getUserCount();
|
||||
} else {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty();
|
||||
}
|
||||
});
|
||||
|
||||
return;
|
||||
};
|
||||
|
||||
var getUserCount = function getUserCount() {
|
||||
_jquery2.default.ajax({
|
||||
type: 'POST',
|
||||
url: '/prod/feeds/notify/count/',
|
||||
dataType: 'json',
|
||||
data: {
|
||||
feed_id: (0, _jquery2.default)('#modal_feed input[name="feed_id"]').val()
|
||||
},
|
||||
beforeSend: function beforeSend() {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty().html('<img src="/assets/common/images/icons/main-loader.gif" alt="loading"/>');
|
||||
},
|
||||
success: function success(data) {
|
||||
if (data.success) {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty().append(data.message);
|
||||
} else {
|
||||
(0, _jquery2.default)('#publication-notify-message').empty().append(data.message);
|
||||
(0, _jquery2.default)('#modal_feed #feed_add_notify').prop('checked', false);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
var onSubmitPublication = function onSubmitPublication() {
|
||||
var $dialog = _dialog2.default.get(1);
|
||||
var error = false;
|
||||
|
@@ -261,6 +261,7 @@ const publication = (services) => {
|
||||
let $feed_title_warning = $('.feed_title_warning', modal.getDomElement());
|
||||
let $feed_subtitle_field = $('#feed_add_subtitle', modal.getDomElement());
|
||||
let $feed_subtitle_warning = $('.feed_subtitle_warning', modal.getDomElement());
|
||||
let $feed_add_notify = $('#feed_add_notify', modal.getDomElement());
|
||||
feedFieldValidator($feed_title_field,$feed_title_warning, 128);
|
||||
feedFieldValidator($feed_subtitle_field,$feed_subtitle_warning, 1024);
|
||||
|
||||
@@ -268,6 +269,11 @@ const publication = (services) => {
|
||||
$feeds_item.removeClass('selected');
|
||||
$(this).addClass('selected');
|
||||
$('input[name="feed_id"]', $form).val($('input', this).val());
|
||||
if ($('#modal_feed #feed_add_notify').is(':checked')) {
|
||||
getUserCount();
|
||||
} else {
|
||||
$('#publication-notify-message').empty();
|
||||
}
|
||||
}).hover(function () {
|
||||
$(this).addClass('hover');
|
||||
}, function () {
|
||||
@@ -302,9 +308,41 @@ const publication = (services) => {
|
||||
}
|
||||
});
|
||||
|
||||
$('#modal_feed #feed_add_notify').on('click', function() {
|
||||
let $this = $(this);
|
||||
|
||||
if ($this.is(':checked')) {
|
||||
getUserCount();
|
||||
} else {
|
||||
$('#publication-notify-message').empty();
|
||||
}
|
||||
});
|
||||
|
||||
return;
|
||||
};
|
||||
|
||||
var getUserCount = function () {
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '/prod/feeds/notify/count/',
|
||||
dataType: 'json',
|
||||
data: {
|
||||
feed_id: $('#modal_feed input[name="feed_id"]').val(),
|
||||
},
|
||||
beforeSend: function () {
|
||||
$('#publication-notify-message').empty().html('<img src="/assets/common/images/icons/main-loader.gif" alt="loading"/>');
|
||||
},
|
||||
success: function (data) {
|
||||
if (data.success) {
|
||||
$('#publication-notify-message').empty().append(data.message);
|
||||
} else {
|
||||
$('#publication-notify-message').empty().append(data.message);
|
||||
$('#modal_feed #feed_add_notify').prop('checked', false);
|
||||
}
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
const onSubmitPublication = () => {
|
||||
var $dialog = dialog.get(1);
|
||||
var error = false;
|
||||
|
@@ -79,6 +79,10 @@ class FeedController extends Controller
|
||||
->setPublisher($publisher)
|
||||
->setSubtitle($request->request->get('subtitle', ''));
|
||||
|
||||
if ($request->request->get('notify')) {
|
||||
$entry->setNotifyEmailOn(new \DateTime());
|
||||
}
|
||||
|
||||
$feed->addEntry($entry);
|
||||
|
||||
$publishing = RecordsRequest::fromRequest($this->app, $request, true, [], [\ACL::BAS_CHUPUB]);
|
||||
@@ -118,7 +122,37 @@ class FeedController extends Controller
|
||||
);
|
||||
}
|
||||
|
||||
public function updateEntryAction(Request $request, $id) {
|
||||
public function notifyCountAction(Request $request)
|
||||
{
|
||||
/** @var Feed|null $feed */
|
||||
$feed = $this->getFeedRepository()->find($request->request->get('feed_id'));
|
||||
|
||||
/** @var \User_Query $Query */
|
||||
$Query = $this->app['phraseanet.user-query'];
|
||||
|
||||
$Query->include_phantoms(true)
|
||||
->include_invite(false)
|
||||
->include_templates(false)
|
||||
->email_not_null(true);
|
||||
|
||||
if ($feed !== null && $feed->getCollection($this->app)) {
|
||||
$Query->on_base_ids([$feed->getCollection($this->app)->get_base_id()]);
|
||||
} elseif ($feed == null) {
|
||||
return $this->app->json([
|
||||
'success' => false,
|
||||
'message' => $this->app->trans('publication:: no feed selected')
|
||||
]);
|
||||
}
|
||||
|
||||
return $this->app->json([
|
||||
'success' => true,
|
||||
'message' => $this->app->trans('publication:: %count% users to notify', ['%count%' => $Query->execute()->get_total()])
|
||||
]);
|
||||
}
|
||||
|
||||
public function updateEntryAction(Request $request, $id)
|
||||
{
|
||||
/** @var FeedEntry $entry */
|
||||
$entry = $this->getFeedEntryRepository()->find($id);
|
||||
|
||||
if (null === $entry) {
|
||||
@@ -138,6 +172,10 @@ class FeedController extends Controller
|
||||
->setSubtitle($request->request->get('subtitle', ''))
|
||||
;
|
||||
|
||||
if ($request->request->get('notify')) {
|
||||
$entry->setNotifyEmailOn(new \DateTime());
|
||||
}
|
||||
|
||||
$current_feed_id = $entry->getFeed()->getId();
|
||||
$new_feed_id = $request->request->get('feed_id', $current_feed_id);
|
||||
if ($current_feed_id !== (int)$new_feed_id) {
|
||||
@@ -170,6 +208,10 @@ class FeedController extends Controller
|
||||
$manager->persist($entry);
|
||||
$manager->flush();
|
||||
|
||||
$this->dispatch(PhraseaEvents::FEED_ENTRY_UPDATE, new FeedEntryEvent(
|
||||
$entry, $request->request->get('notify')
|
||||
));
|
||||
|
||||
return $this->app->json([
|
||||
'error' => false,
|
||||
'message' => 'success',
|
||||
|
@@ -75,6 +75,9 @@ class Feed implements ControllerProviderInterface, ServiceProviderInterface
|
||||
->bind('prod_feeds_subscribe_feed')
|
||||
->assert('id', '\d+');
|
||||
|
||||
$controllers->post('/notify/count/', 'controller.prod.feed:notifyCountAction')
|
||||
->bind('prod_feeds_notify_count');
|
||||
|
||||
return $controllers;
|
||||
}
|
||||
}
|
||||
|
@@ -13,6 +13,7 @@ namespace Alchemy\Phrasea\Core\Event\Subscriber;
|
||||
|
||||
use Alchemy\Phrasea\Core\Event\FeedEntryEvent;
|
||||
use Alchemy\Phrasea\Core\PhraseaEvents;
|
||||
use Alchemy\Phrasea\Model\Entities\FeedEntry;
|
||||
use Alchemy\Phrasea\Model\Entities\User;
|
||||
use Alchemy\Phrasea\Model\Entities\WebhookEvent;
|
||||
use Alchemy\Phrasea\Model\Manipulator\TokenManipulator;
|
||||
@@ -23,20 +24,51 @@ class FeedEntrySubscriber extends AbstractNotificationSubscriber
|
||||
{
|
||||
public function onCreate(FeedEntryEvent $event)
|
||||
{
|
||||
$entry = $event->getFeedEntry();
|
||||
|
||||
$params = [
|
||||
'entry_id' => $entry->getId(),
|
||||
'entry_id' => $event->getFeedEntry()->getId(),
|
||||
'notify_email' => $event->hasEmailNotification(),
|
||||
];
|
||||
|
||||
$this->app['manipulator.webhook-event']->create(
|
||||
WebhookEvent::NEW_FEED_ENTRY,
|
||||
WebhookEvent::FEED_ENTRY_TYPE,
|
||||
array_merge(array('feed_id' => $entry->getFeed()->getId()), $params),
|
||||
array_merge(array('feed_id' => $event->getFeedEntry()->getFeed()->getId()), $params),
|
||||
[]
|
||||
);
|
||||
|
||||
$this->sendEmailNotification($event);
|
||||
}
|
||||
|
||||
public function onUpdate(FeedEntryEvent $event)
|
||||
{
|
||||
$this->sendEmailNotification($event);
|
||||
}
|
||||
|
||||
public static function getSubscribedEvents()
|
||||
{
|
||||
return [
|
||||
PhraseaEvents::FEED_ENTRY_CREATE => 'onCreate',
|
||||
PhraseaEvents::FEED_ENTRY_UPDATE => 'onUpdate'
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return TokenManipulator
|
||||
*/
|
||||
private function getTokenManipulator()
|
||||
{
|
||||
return $this->app['manipulator.token'];
|
||||
}
|
||||
|
||||
private function sendEmailNotification(FeedEntryEvent $event)
|
||||
{
|
||||
$entry = $event->getFeedEntry();
|
||||
|
||||
$params = [
|
||||
'entry_id' => $entry->getId(),
|
||||
'notify_email' => $event->hasEmailNotification(),
|
||||
];
|
||||
|
||||
$datas = json_encode($params);
|
||||
|
||||
$Query = $this->app['phraseanet.user-query'];
|
||||
@@ -98,19 +130,4 @@ class FeedEntrySubscriber extends AbstractNotificationSubscriber
|
||||
}
|
||||
while (count($results) > 0);
|
||||
}
|
||||
|
||||
public static function getSubscribedEvents()
|
||||
{
|
||||
return [
|
||||
PhraseaEvents::FEED_ENTRY_CREATE => 'onCreate',
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return TokenManipulator
|
||||
*/
|
||||
private function getTokenManipulator()
|
||||
{
|
||||
return $this->app['manipulator.token'];
|
||||
}
|
||||
}
|
||||
|
@@ -31,6 +31,7 @@ final class PhraseaEvents
|
||||
const ORDER_DENY = 'order.deny';
|
||||
|
||||
const FEED_ENTRY_CREATE = 'feed-entry.create';
|
||||
const FEED_ENTRY_UPDATE = 'feed-entry.update';
|
||||
|
||||
const REGISTRATION_CREATE = 'registration.create';
|
||||
const REGISTRATION_AUTOREGISTER = 'registration.autoregister';
|
||||
|
@@ -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">
|
||||
<file date="2022-02-10T14:27:27Z" source-language="en" target-language="de" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:09:55Z" source-language="en" target-language="de" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname="">
|
||||
<source/>
|
||||
<target state="new"/>
|
||||
<source></source>
|
||||
<target state="new"></target>
|
||||
<jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file>
|
||||
<jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -196,7 +196,7 @@
|
||||
<jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents<br/>selectionnes" approved="yes">
|
||||
<source>%number% documents<br/>selectionnes</source>
|
||||
<source><![CDATA[%number% documents<br/>selectionnes]]></source>
|
||||
<target state="translated"><![CDATA[%number% Dokumente<br/> ausgewählt]]></target>
|
||||
<jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -620,7 +620,7 @@
|
||||
<trans-unit id="43c8f4baa612c748fb9c0b6672d77827013ff2be" resname="Action Forbidden : You are not the publisher" approved="yes">
|
||||
<source>Action Forbidden : You are not the publisher</source>
|
||||
<target state="translated">Aktion verboten: Sie sind nicht der Veröffentlicher</target>
|
||||
<jms:reference-file line="189">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="231">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes">
|
||||
<source>Actions</source>
|
||||
@@ -2534,7 +2534,7 @@
|
||||
<jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display & action settings" approved="yes">
|
||||
<source>Display & action settings</source>
|
||||
<source><![CDATA[Display & action settings]]></source>
|
||||
<target state="translated">Anzeige und Handlung-Einstellungen</target>
|
||||
<jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -3321,8 +3321,8 @@
|
||||
<trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes">
|
||||
<source>Fils disponibles</source>
|
||||
<target state="translated">Verfügbare Threads</target>
|
||||
<jms:reference-file line="58">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="44">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="61">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d7decf1aa22b02ae8abf9a96849ee423eee838e4" resname="Filter" approved="yes">
|
||||
<source>Filter</source>
|
||||
@@ -4724,7 +4724,7 @@
|
||||
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
|
||||
<source>None of the selected records can be printed</source>
|
||||
<target state="translated">Keine der ausgewählte Datensätze können gedruckt werden</target>
|
||||
<jms:reference-file line="163">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="166">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="7c12e38fb384f87d975fd0ebf1070b400504663f" resname="None of the selected records can be pushed.">
|
||||
<source>None of the selected records can be pushed.</source>
|
||||
@@ -4771,7 +4771,8 @@
|
||||
<trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes">
|
||||
<source>Notify users about this publication</source>
|
||||
<target state="translated">Die Benutzer über diese Veröffentlichung informieren</target>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="56">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="50">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="b60af374cd884ac6a6ae5b76829ba6efa085f0f7" resname="Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations" approved="yes">
|
||||
<source>Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations</source>
|
||||
@@ -6853,7 +6854,7 @@
|
||||
<trans-unit id="19a0de998e454fffb6e0636256a5bdcdccbb9033" resname="This feed is public" approved="yes">
|
||||
<source>This feed is public</source>
|
||||
<target state="translated">Dieses Feed ist öffentlich</target>
|
||||
<jms:reference-file line="65">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="68">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="89">admin/publications/list.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="dedbaded6d5a4ed17eefa2e4ee3eee026b7d1d11" resname="This field is required" approved="yes">
|
||||
@@ -9930,7 +9931,7 @@
|
||||
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
|
||||
<source>boutton::imprimer</source>
|
||||
<target state="translated">Drucken</target>
|
||||
<jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="162">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
|
||||
<source>boutton::modifier</source>
|
||||
@@ -10559,7 +10560,7 @@
|
||||
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
|
||||
<source>export:: erreur : aucun document selectionne</source>
|
||||
<target state="translated">Fehler: kein ausgewähltes Dokument</target>
|
||||
<jms:reference-file line="165">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="168">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
|
||||
<source>export:: telechargement</source>
|
||||
@@ -11679,7 +11680,7 @@
|
||||
<trans-unit id="674a843ed98ba8a423f7bbdbee30c9ca1a4aab96" resname="phraseanet:: basket feedback" approved="yes">
|
||||
<source>phraseanet:: basket feedback</source>
|
||||
<target state="translated">Sammelkorb Feedback</target>
|
||||
<jms:reference-file line="9">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="17">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets" approved="yes">
|
||||
<source>phraseanet:: baskets</source>
|
||||
@@ -11757,7 +11758,7 @@
|
||||
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
|
||||
<source>phraseanet:: preview</source>
|
||||
<target state="translated">Voransicht</target>
|
||||
<jms:reference-file line="25">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
|
||||
@@ -11831,7 +11832,7 @@
|
||||
<jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: << your account can be deleted via admin interface >> " approved="yes">
|
||||
<source>phraseanet::account: << your account can be deleted via admin interface >></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>
|
||||
<jms:reference-file line="289">web/account/account.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -12143,12 +12144,12 @@
|
||||
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
|
||||
<source>print:: Choose subdef for preview</source>
|
||||
<target state="needs-translation">Eine Unterauflösung für den Druck der Vorschau auswählen</target>
|
||||
<jms:reference-file line="125">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
|
||||
<source>print:: Choose subdef for thumbnail</source>
|
||||
<target state="needs-translation">Die Unterauflösung für den Druck der Miniaturansicht auswählen</target>
|
||||
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="143">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
|
||||
<source>print:: add and remember password to protect the pdf</source>
|
||||
@@ -12158,32 +12159,32 @@
|
||||
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes">
|
||||
<source>print:: basket feedback</source>
|
||||
<target state="translated">Feedback Bericht mit Beschreibung</target>
|
||||
<jms:reference-file line="18">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="26">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="caf52ea38dea74643f03f40f3e9bae808f90d1f7" resname="print:: basket feedback only" approved="yes">
|
||||
<source>print:: basket feedback only</source>
|
||||
<target state="translated">Feedback Bericht</target>
|
||||
<jms:reference-file line="14">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="22">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
|
||||
<source>print:: choose filename</source>
|
||||
<target state="needs-translation">Festlegen des Namens der hochgeladenen Dateien</target>
|
||||
<jms:reference-file line="105">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="106">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
|
||||
<source>print:: choose model</source>
|
||||
<target state="needs-translation">Eine Druckschablone auswählen</target>
|
||||
<jms:reference-file line="5">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="13">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
|
||||
<source>print:: day</source>
|
||||
<target state="needs-translation">Tag</target>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes">
|
||||
<source>print:: description</source>
|
||||
<target state="translated">Bildunterschrift</target>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
|
||||
<source>print:: download</source>
|
||||
@@ -12195,107 +12196,107 @@
|
||||
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
|
||||
<source>print:: element downloadable</source>
|
||||
<target state="needs-translation">Wählen Sie die heruntergeladene Unterauflösung aus</target>
|
||||
<jms:reference-file line="89">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="90">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
|
||||
<source>print:: element printable on preview model</source>
|
||||
<target state="needs-translation">Verfügbare Unterauflösung</target>
|
||||
<jms:reference-file line="136">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
|
||||
<source>print:: element printable on thumbnail model</source>
|
||||
<target state="needs-translation">Verfügbare Unterauflösung</target>
|
||||
<jms:reference-file line="152">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="154">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
|
||||
<source>print:: hour</source>
|
||||
<target state="needs-translation">Stunde</target>
|
||||
<jms:reference-file line="98">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
|
||||
<source>print:: image de choix et description</source>
|
||||
<target state="translated">Voransicht und Bildunterschrift</target>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
|
||||
<source>print:: image de choix et description avec planche contact</source>
|
||||
<target state="translated">Voransicht und Bildunterschrift mit Mosaikansicht</target>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
|
||||
<source>print:: image de choix seulement</source>
|
||||
<target state="translated">Voransicht</target>
|
||||
<jms:reference-file line="29">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
|
||||
<source>print:: imagette</source>
|
||||
<target state="translated">Miniaturansicht</target>
|
||||
<jms:reference-file line="46">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
|
||||
<source>print:: liste d'imagettes</source>
|
||||
<target state="translated">Miniaturansichten Liste</target>
|
||||
<jms:reference-file line="50">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
|
||||
<source>print:: month</source>
|
||||
<target state="needs-translation">Monat</target>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="102">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
|
||||
<source>print:: original media name</source>
|
||||
<target state="needs-translation">Ursprünglicher Name der Datei</target>
|
||||
<jms:reference-file line="112">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="113">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
|
||||
<source>print:: pdf description</source>
|
||||
<target state="needs-translation">Nachricht (optional)</target>
|
||||
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="10">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ab85773220ced0dddd0e679a51116015c6436143" resname="print:: pdf title">
|
||||
<source>print:: pdf title</source>
|
||||
<target state="needs-translation">PDF Titel (optional)</target>
|
||||
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="6">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
|
||||
<source>print:: planche contact (mosaique)</source>
|
||||
<target state="translated">Mosaikansicht</target>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
|
||||
<source>print:: some options</source>
|
||||
<target state="needs-translation">Weitere Optionen</target>
|
||||
<jms:reference-file line="59">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="67">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
|
||||
<source>print:: subdef mapping</source>
|
||||
<target state="needs-translation">Wählen Sie auf die Unterauflösungen für Druck</target>
|
||||
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
|
||||
<source>print:: subdef url ttl</source>
|
||||
<target state="needs-translation">Gültigkeitsdauer des Download-Links</target>
|
||||
<jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="96">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
|
||||
<source>print:: title</source>
|
||||
<target state="needs-translation">Titel des Dokuments</target>
|
||||
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="109">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
|
||||
<source>print:: warning! Only available image for chosen subdef is printed</source>
|
||||
<target state="needs-translation">Wenn die ausgewählte Unterauflösung fehlt, wird sie durch ein Ersatzbild ersetzt</target>
|
||||
<jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
|
||||
<source>print:: warning! Only available media for chosen subdef is downloadable</source>
|
||||
<target state="needs-translation">Lassen Sie das Feld für eine dauerhafte Gültigkeit leer (oder auf 0 setzen)</target>
|
||||
<jms:reference-file line="92">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="93">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
|
||||
<source>print:: week</source>
|
||||
<target state="needs-translation">Woche</target>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes">
|
||||
<source>print_feedback:: Document generated on :</source>
|
||||
@@ -13386,56 +13387,71 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
|
||||
<trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes">
|
||||
<source>publication : autheur</source>
|
||||
<target state="translated">Autor</target>
|
||||
<jms:reference-file line="51">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="12f6f5d3ef3c414e9819bcf0fbbdaf454ce0fd27" resname="publication : email autheur" approved="yes">
|
||||
<source>publication : email autheur</source>
|
||||
<target state="translated">Autor E-Mail</target>
|
||||
<jms:reference-file line="53">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="47">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ccb2f7d7041e31cd822bd95ee74b5f9b38d9f7ac" resname="publication : sous titre" approved="yes">
|
||||
<source>publication : sous titre</source>
|
||||
<target state="translated">Untertitel</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="e53680d42ba7c2071293a23790dfaef8d0761e60" resname="publication : subtitle alert" approved="yes">
|
||||
<source>publication : subtitle alert</source>
|
||||
<target state="translated"><![CDATA[Zeichenanzahl > 1024]]></target>
|
||||
<jms:reference-file line="48">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="42">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="34">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="3cc295db2f960fa339ba3b57e33fe421923e3026" resname="publication : subtitle warning" approved="yes">
|
||||
<source>publication : subtitle warning</source>
|
||||
<target state="translated">Höchtens 1024 Zeichen</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="af22a65a7f5adb86b9f18a891c7a895146af5f23" resname="publication : title alert" approved="yes">
|
||||
<source>publication : title alert</source>
|
||||
<target state="translated"><![CDATA[Zeichenanzahl > 128]]></target>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="31">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="856fe6736a6901d5c5b1e079b82ce987dd06ff7b" resname="publication : title warning" approved="yes">
|
||||
<source>publication : title warning</source>
|
||||
<target state="translated">Höchstens 128 Zeichen</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be21ab93e45780fe4f40141bc3569f200fb4a028" resname="publication : titre" approved="yes">
|
||||
<source>publication : titre</source>
|
||||
<target state="translated">Titel</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a85c5b39743bad12b07c179a912cf5dbc47860f8" resname="publication:: %count% users to notify">
|
||||
<source>publication:: %count% users to notify</source>
|
||||
<target state="new">publication:: %count% users to notify</target>
|
||||
<jms:reference-file line="149">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c4664885fa2a9f300cc01beed066cfcfafe4dd39" resname="publication:: no feed selected">
|
||||
<source>publication:: no feed selected</source>
|
||||
<target state="new">publication:: no feed selected</target>
|
||||
<jms:reference-file line="143">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ca39344d1a31b5ef8ebb4f9104fd83a5d70a3d46" resname="publication:: notification done on">
|
||||
<source>publication:: notification done on</source>
|
||||
<target state="new">publication:: notification done on</target>
|
||||
<jms:reference-file line="54">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="02387557776e7e3b2a78b21c54e9fb019a9a6fc3" resname="publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." approved="yes">
|
||||
<source>publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications.</source>
|
||||
<target state="translated">Hier finden Sie Ihr eigenes RSS Feed. Dank des RSS werden Sie über neue Veröffentlichungen automatisch informiert</target>
|
||||
<jms:reference-file line="243">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="268">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="285">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="310">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bc8cb61c550777cb4f094762ef7744693875ce09" resname="publications:: s'abonner aux publications" approved="yes">
|
||||
<source>publications:: s'abonner aux publications</source>
|
||||
@@ -13446,20 +13462,20 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
|
||||
<trans-unit id="d16bcb6609333ab86ad12c169212d30658b18ed4" resname="publications::Ne le partagez pas, il est strictement confidentiel" approved="yes">
|
||||
<source>publications::Ne le partagez pas, il est strictement confidentiel</source>
|
||||
<target state="translated">Dieses RSS nicht weiterleiten - es ist vertraulich</target>
|
||||
<jms:reference-file line="245">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="270">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="287">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="312">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bf670e94fb7cc858d6c28745ea4fd8248eed01fb" resname="publications::copy" approved="yes">
|
||||
<source>publications::copy</source>
|
||||
<target state="translated">URL kopieren</target>
|
||||
<jms:reference-file line="247">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="272">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="289">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="314">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="317aac7149d4bb63238dbe1f9461b3d817f1ff65" resname="publications::votre rss personnel" approved="yes">
|
||||
<source>publications::votre rss personnel</source>
|
||||
<target state="translated">Ihr eigenes RSS</target>
|
||||
<jms:reference-file line="248">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="273">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="290">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="315">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="70e2a7238a2b25916f8dda4ca72e2b8617edde67" resname="push::mail:: Rapport de validation de %user% pour %title%" approved="yes">
|
||||
<source>push::mail:: Rapport de validation de %user% pour %title%</source>
|
||||
@@ -14577,7 +14593,7 @@ Vorsicht: die aktuelle Werte werden durch die neue Werte überschrieben</target>
|
||||
<jms:reference-file line="1327">web/thesaurus/thesaurus.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes">
|
||||
<source>thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)</source>
|
||||
<source><![CDATA[thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)]]></source>
|
||||
<target state="translated"><![CDATA[Diese Verzweigung löschen? (die betroffenende Begriffe werden als mögliche Begriffe beim nächsten Indexierung erscheinen)]]></target>
|
||||
<jms:reference-file line="536">web/thesaurus/thesaurus.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
|
@@ -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">
|
||||
<file date="2022-02-10T14:27:41Z" source-language="en" target-language="en" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:10:09Z" source-language="en" target-language="en" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname="">
|
||||
<source/>
|
||||
<target state="new"/>
|
||||
<source></source>
|
||||
<target state="new"></target>
|
||||
<jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file>
|
||||
<jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -196,7 +196,7 @@
|
||||
<jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents<br/>selectionnes" approved="yes">
|
||||
<source>%number% documents<br/>selectionnes</source>
|
||||
<source><![CDATA[%number% documents<br/>selectionnes]]></source>
|
||||
<target state="translated"><![CDATA[%number% documents<br/>selected]]></target>
|
||||
<jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -620,7 +620,7 @@
|
||||
<trans-unit id="43c8f4baa612c748fb9c0b6672d77827013ff2be" resname="Action Forbidden : You are not the publisher" approved="yes">
|
||||
<source>Action Forbidden : You are not the publisher</source>
|
||||
<target state="translated">Forbidden: You are not the publisher</target>
|
||||
<jms:reference-file line="189">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="231">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes">
|
||||
<source>Actions</source>
|
||||
@@ -2537,7 +2537,7 @@
|
||||
<jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display & action settings" approved="yes">
|
||||
<source>Display & action settings</source>
|
||||
<source><![CDATA[Display & action settings]]></source>
|
||||
<target state="translated">Display and action settings</target>
|
||||
<jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -3324,8 +3324,8 @@
|
||||
<trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes">
|
||||
<source>Fils disponibles</source>
|
||||
<target state="translated">Available feed</target>
|
||||
<jms:reference-file line="58">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="44">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="61">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d7decf1aa22b02ae8abf9a96849ee423eee838e4" resname="Filter" approved="yes">
|
||||
<source>Filter</source>
|
||||
@@ -4727,7 +4727,7 @@
|
||||
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
|
||||
<source>None of the selected records can be printed</source>
|
||||
<target state="translated">None of the selected records can be printed</target>
|
||||
<jms:reference-file line="163">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="166">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="7c12e38fb384f87d975fd0ebf1070b400504663f" resname="None of the selected records can be pushed." approved="yes">
|
||||
<source>None of the selected records can be pushed.</source>
|
||||
@@ -4774,7 +4774,8 @@
|
||||
<trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes">
|
||||
<source>Notify users about this publication</source>
|
||||
<target state="translated">Notify users about this publication.</target>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="56">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="50">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="b60af374cd884ac6a6ae5b76829ba6efa085f0f7" resname="Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations" approved="yes">
|
||||
<source>Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations</source>
|
||||
@@ -6856,7 +6857,7 @@
|
||||
<trans-unit id="19a0de998e454fffb6e0636256a5bdcdccbb9033" resname="This feed is public" approved="yes">
|
||||
<source>This feed is public</source>
|
||||
<target state="translated">This feed is public</target>
|
||||
<jms:reference-file line="65">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="68">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="89">admin/publications/list.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="dedbaded6d5a4ed17eefa2e4ee3eee026b7d1d11" resname="This field is required" approved="yes">
|
||||
@@ -9933,7 +9934,7 @@
|
||||
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
|
||||
<source>boutton::imprimer</source>
|
||||
<target state="translated">Print</target>
|
||||
<jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="162">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
|
||||
<source>boutton::modifier</source>
|
||||
@@ -10562,7 +10563,7 @@
|
||||
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
|
||||
<source>export:: erreur : aucun document selectionne</source>
|
||||
<target state="translated">Error : no document selected</target>
|
||||
<jms:reference-file line="165">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="168">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
|
||||
<source>export:: telechargement</source>
|
||||
@@ -11682,7 +11683,7 @@
|
||||
<trans-unit id="674a843ed98ba8a423f7bbdbee30c9ca1a4aab96" resname="phraseanet:: basket feedback" approved="yes">
|
||||
<source>phraseanet:: basket feedback</source>
|
||||
<target state="translated">Feedback report with caption</target>
|
||||
<jms:reference-file line="9">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="17">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets" approved="yes">
|
||||
<source>phraseanet:: baskets</source>
|
||||
@@ -11760,7 +11761,7 @@
|
||||
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
|
||||
<source>phraseanet:: preview</source>
|
||||
<target state="translated">Preview</target>
|
||||
<jms:reference-file line="25">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
|
||||
@@ -11834,7 +11835,7 @@
|
||||
<jms:reference-file line="564">Controller/Root/AccountController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: << your account can be deleted via admin interface >> " approved="yes">
|
||||
<source>phraseanet::account: << your account can be deleted via admin interface >></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>
|
||||
<jms:reference-file line="289">web/account/account.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -12146,12 +12147,12 @@
|
||||
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
|
||||
<source>print:: Choose subdef for preview</source>
|
||||
<target state="needs-translation">Choose a sub-definition for printed "preview"</target>
|
||||
<jms:reference-file line="125">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
|
||||
<source>print:: Choose subdef for thumbnail</source>
|
||||
<target state="translated">Choose a subdefinition for printed "thumbnail"</target>
|
||||
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="143">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
|
||||
<source>print:: add and remember password to protect the pdf</source>
|
||||
@@ -12161,32 +12162,32 @@
|
||||
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes">
|
||||
<source>print:: basket feedback</source>
|
||||
<target state="translated">Feedback report with caption</target>
|
||||
<jms:reference-file line="18">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="26">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="caf52ea38dea74643f03f40f3e9bae808f90d1f7" resname="print:: basket feedback only" approved="yes">
|
||||
<source>print:: basket feedback only</source>
|
||||
<target state="translated">Feedback report</target>
|
||||
<jms:reference-file line="14">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="22">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
|
||||
<source>print:: choose filename</source>
|
||||
<target state="needs-translation">Definition of the name of downloaded files</target>
|
||||
<jms:reference-file line="105">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="106">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
|
||||
<source>print:: choose model</source>
|
||||
<target state="translated">Select a printing template</target>
|
||||
<jms:reference-file line="5">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="13">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
|
||||
<source>print:: day</source>
|
||||
<target state="translated">Day</target>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes">
|
||||
<source>print:: description</source>
|
||||
<target state="translated">Caption only</target>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
|
||||
<source>print:: download</source>
|
||||
@@ -12198,107 +12199,107 @@
|
||||
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
|
||||
<source>print:: element downloadable</source>
|
||||
<target state="translated">Define the downloaded subdefinition</target>
|
||||
<jms:reference-file line="89">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="90">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
|
||||
<source>print:: element printable on preview model</source>
|
||||
<target state="needs-translation">Available for print "Preview"</target>
|
||||
<jms:reference-file line="136">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
|
||||
<source>print:: element printable on thumbnail model</source>
|
||||
<target state="needs-translation">Available for print "Thumbnail"</target>
|
||||
<jms:reference-file line="152">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="154">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
|
||||
<source>print:: hour</source>
|
||||
<target state="translated">Hour</target>
|
||||
<jms:reference-file line="98">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
|
||||
<source>print:: image de choix et description</source>
|
||||
<target state="translated">Preview and caption</target>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
|
||||
<source>print:: image de choix et description avec planche contact</source>
|
||||
<target state="translated">Preview, caption and thumbnails</target>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
|
||||
<source>print:: image de choix seulement</source>
|
||||
<target state="translated">Preview</target>
|
||||
<jms:reference-file line="29">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
|
||||
<source>print:: imagette</source>
|
||||
<target state="translated">Thumbnail</target>
|
||||
<jms:reference-file line="46">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
|
||||
<source>print:: liste d'imagettes</source>
|
||||
<target state="translated">Thumbnail list</target>
|
||||
<jms:reference-file line="50">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
|
||||
<source>print:: month</source>
|
||||
<target state="translated">Month</target>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="102">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
|
||||
<source>print:: original media name</source>
|
||||
<target state="needs-translation">Original file name</target>
|
||||
<jms:reference-file line="112">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="113">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
|
||||
<source>print:: pdf description</source>
|
||||
<target state="translated">Message (optional)</target>
|
||||
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="10">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ab85773220ced0dddd0e679a51116015c6436143" resname="print:: pdf title">
|
||||
<source>print:: pdf title</source>
|
||||
<target state="translated">PDF Title (optional)</target>
|
||||
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="6">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
|
||||
<source>print:: planche contact (mosaique)</source>
|
||||
<target state="translated">Thumbnails</target>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
|
||||
<source>print:: some options</source>
|
||||
<target state="translated">More Options</target>
|
||||
<jms:reference-file line="59">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="67">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
|
||||
<source>print:: subdef mapping</source>
|
||||
<target state="translated">Define subdefinitions used for print</target>
|
||||
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
|
||||
<source>print:: subdef url ttl</source>
|
||||
<target state="needs-translation">Validity period of the download link</target>
|
||||
<jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="96">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
|
||||
<source>print:: title</source>
|
||||
<target state="needs-translation">Document title</target>
|
||||
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="109">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
|
||||
<source>print:: warning! Only available image for chosen subdef is printed</source>
|
||||
<target state="needs-translation">If the selected sub-definition is missing, it will be replaced by a substitute image</target>
|
||||
<jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
|
||||
<source>print:: warning! Only available media for chosen subdef is downloadable</source>
|
||||
<target state="needs-translation">Leave the duration empty or set to 0 for a permanent validity</target>
|
||||
<jms:reference-file line="92">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="93">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
|
||||
<source>print:: week</source>
|
||||
<target state="translated">Week</target>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes">
|
||||
<source>print_feedback:: Document generated on :</source>
|
||||
@@ -13394,56 +13395,71 @@ It is possible to place several search areas</target>
|
||||
<trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes">
|
||||
<source>publication : autheur</source>
|
||||
<target state="translated">Author</target>
|
||||
<jms:reference-file line="51">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="12f6f5d3ef3c414e9819bcf0fbbdaf454ce0fd27" resname="publication : email autheur" approved="yes">
|
||||
<source>publication : email autheur</source>
|
||||
<target state="translated">Author's e-mail</target>
|
||||
<jms:reference-file line="53">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="47">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ccb2f7d7041e31cd822bd95ee74b5f9b38d9f7ac" resname="publication : sous titre" approved="yes">
|
||||
<source>publication : sous titre</source>
|
||||
<target state="translated">Sub Title</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="e53680d42ba7c2071293a23790dfaef8d0761e60" resname="publication : subtitle alert" approved="yes">
|
||||
<source>publication : subtitle alert</source>
|
||||
<target state="translated"><![CDATA[Characters > 1024]]></target>
|
||||
<jms:reference-file line="48">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="42">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="34">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="3cc295db2f960fa339ba3b57e33fe421923e3026" resname="publication : subtitle warning" approved="yes">
|
||||
<source>publication : subtitle warning</source>
|
||||
<target state="translated">1024 Characters Max</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="af22a65a7f5adb86b9f18a891c7a895146af5f23" resname="publication : title alert" approved="yes">
|
||||
<source>publication : title alert</source>
|
||||
<target state="translated"><![CDATA[Characters > 128]]></target>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="31">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="856fe6736a6901d5c5b1e079b82ce987dd06ff7b" resname="publication : title warning" approved="yes">
|
||||
<source>publication : title warning</source>
|
||||
<target state="translated">128 Characters Max</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be21ab93e45780fe4f40141bc3569f200fb4a028" resname="publication : titre" approved="yes">
|
||||
<source>publication : titre</source>
|
||||
<target state="translated">Title</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a85c5b39743bad12b07c179a912cf5dbc47860f8" resname="publication:: %count% users to notify">
|
||||
<source>publication:: %count% users to notify</source>
|
||||
<target state="new">publication:: %count% users to notify</target>
|
||||
<jms:reference-file line="149">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c4664885fa2a9f300cc01beed066cfcfafe4dd39" resname="publication:: no feed selected">
|
||||
<source>publication:: no feed selected</source>
|
||||
<target state="new">publication:: no feed selected</target>
|
||||
<jms:reference-file line="143">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ca39344d1a31b5ef8ebb4f9104fd83a5d70a3d46" resname="publication:: notification done on">
|
||||
<source>publication:: notification done on</source>
|
||||
<target state="new">publication:: notification done on</target>
|
||||
<jms:reference-file line="54">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="02387557776e7e3b2a78b21c54e9fb019a9a6fc3" resname="publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." approved="yes">
|
||||
<source>publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications.</source>
|
||||
<target state="translated">This is your personnal rss flow, it will inform you about publications</target>
|
||||
<jms:reference-file line="243">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="268">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="285">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="310">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bc8cb61c550777cb4f094762ef7744693875ce09" resname="publications:: s'abonner aux publications" approved="yes">
|
||||
<source>publications:: s'abonner aux publications</source>
|
||||
@@ -13454,20 +13470,20 @@ It is possible to place several search areas</target>
|
||||
<trans-unit id="d16bcb6609333ab86ad12c169212d30658b18ed4" resname="publications::Ne le partagez pas, il est strictement confidentiel" approved="yes">
|
||||
<source>publications::Ne le partagez pas, il est strictement confidentiel</source>
|
||||
<target state="translated">Don't share it, it's yours only</target>
|
||||
<jms:reference-file line="245">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="270">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="287">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="312">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bf670e94fb7cc858d6c28745ea4fd8248eed01fb" resname="publications::copy" approved="yes">
|
||||
<source>publications::copy</source>
|
||||
<target state="translated">Copy URL</target>
|
||||
<jms:reference-file line="247">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="272">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="289">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="314">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="317aac7149d4bb63238dbe1f9461b3d817f1ff65" resname="publications::votre rss personnel" approved="yes">
|
||||
<source>publications::votre rss personnel</source>
|
||||
<target state="translated">Your own rss</target>
|
||||
<jms:reference-file line="248">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="273">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="290">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="315">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="70e2a7238a2b25916f8dda4ca72e2b8617edde67" resname="push::mail:: Rapport de validation de %user% pour %title%" approved="yes">
|
||||
<source>push::mail:: Rapport de validation de %user% pour %title%</source>
|
||||
@@ -14585,7 +14601,7 @@ It is possible to place several search areas</target>
|
||||
<jms:reference-file line="1327">web/thesaurus/thesaurus.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes">
|
||||
<source>thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)</source>
|
||||
<source><![CDATA[thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)]]></source>
|
||||
<target state="translated"><![CDATA[Delete branch : 
 (concerned terms will be displayed as candidates on future indexation)]]></target>
|
||||
<jms:reference-file line="536">web/thesaurus/thesaurus.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
|
@@ -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">
|
||||
<file date="2022-02-10T14:27:58Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:10:26Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
</header>
|
||||
<body>
|
||||
<trans-unit id="da39a3ee5e6b4b0d3255bfef95601890afd80709" resname="">
|
||||
<source/>
|
||||
<target state="new"/>
|
||||
<source></source>
|
||||
<target state="new"></target>
|
||||
<jms:reference-file line="51">Form/Configuration/EmailFormType.php</jms:reference-file>
|
||||
<jms:reference-file line="64">Form/Login/PhraseaAuthenticationForm.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -196,7 +196,7 @@
|
||||
<jms:reference-file line="7">Bridge/Dailymotion/element_informations.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="de0804eb70c10b14d71df74292e45c6daa13d672" resname="%number% documents<br/>selectionnes" approved="yes">
|
||||
<source>%number% documents<br/>selectionnes</source>
|
||||
<source><![CDATA[%number% documents<br/>selectionnes]]></source>
|
||||
<target state="translated"><![CDATA[%number% documents<br/>sélectionnés]]></target>
|
||||
<jms:reference-file line="263">Controller/Prod/QueryController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -620,7 +620,7 @@
|
||||
<trans-unit id="43c8f4baa612c748fb9c0b6672d77827013ff2be" resname="Action Forbidden : You are not the publisher" approved="yes">
|
||||
<source>Action Forbidden : You are not the publisher</source>
|
||||
<target state="translated">Action non autorisée: Vous n'êtes pas la personne qui a publié</target>
|
||||
<jms:reference-file line="189">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="231">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes">
|
||||
<source>Actions</source>
|
||||
@@ -2534,7 +2534,7 @@
|
||||
<jms:reference-file line="68">Form/Configuration/ActionsFormType.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="fa9fd169cd55f0433c6e7a4b5d758f90d0847411" resname="Display & action settings" approved="yes">
|
||||
<source>Display & action settings</source>
|
||||
<source><![CDATA[Display & action settings]]></source>
|
||||
<target state="translated">Paramétrage d'affichage et d'action</target>
|
||||
<jms:reference-file line="152">admin/fields/templates.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -3321,8 +3321,8 @@
|
||||
<trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes">
|
||||
<source>Fils disponibles</source>
|
||||
<target state="translated">Fils disponibles</target>
|
||||
<jms:reference-file line="58">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="44">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="61">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d7decf1aa22b02ae8abf9a96849ee423eee838e4" resname="Filter" approved="yes">
|
||||
<source>Filter</source>
|
||||
@@ -4724,7 +4724,7 @@
|
||||
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
|
||||
<source>None of the selected records can be printed</source>
|
||||
<target state="translated">Aucun des documents sélectionnés ne peut être imprimé</target>
|
||||
<jms:reference-file line="163">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="166">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="7c12e38fb384f87d975fd0ebf1070b400504663f" resname="None of the selected records can be pushed." approved="yes">
|
||||
<source>None of the selected records can be pushed.</source>
|
||||
@@ -4771,7 +4771,8 @@
|
||||
<trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes">
|
||||
<source>Notify users about this publication</source>
|
||||
<target state="translated">Notifier les utilisateurs à propos de cette publication.</target>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="56">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="50">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="b60af374cd884ac6a6ae5b76829ba6efa085f0f7" resname="Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations" approved="yes">
|
||||
<source>Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations</source>
|
||||
@@ -6855,7 +6856,7 @@ Pour les utilisateurs authentifiés, la demande de validation est également dis
|
||||
<trans-unit id="19a0de998e454fffb6e0636256a5bdcdccbb9033" resname="This feed is public" approved="yes">
|
||||
<source>This feed is public</source>
|
||||
<target state="translated">Ce flux est public</target>
|
||||
<jms:reference-file line="65">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="68">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="89">admin/publications/list.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="dedbaded6d5a4ed17eefa2e4ee3eee026b7d1d11" resname="This field is required" approved="yes">
|
||||
@@ -9933,7 +9934,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
|
||||
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
|
||||
<source>boutton::imprimer</source>
|
||||
<target state="translated">Imprimer</target>
|
||||
<jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="162">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
|
||||
<source>boutton::modifier</source>
|
||||
@@ -10562,7 +10563,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
|
||||
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
|
||||
<source>export:: erreur : aucun document selectionne</source>
|
||||
<target state="translated">Erreur : aucun document sélectionné</target>
|
||||
<jms:reference-file line="165">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="168">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
|
||||
<source>export:: telechargement</source>
|
||||
@@ -11682,7 +11683,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
|
||||
<trans-unit id="674a843ed98ba8a423f7bbdbee30c9ca1a4aab96" resname="phraseanet:: basket feedback" approved="yes">
|
||||
<source>phraseanet:: basket feedback</source>
|
||||
<target state="translated">Rapport de validation avec Notice</target>
|
||||
<jms:reference-file line="9">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="17">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets" approved="yes">
|
||||
<source>phraseanet:: baskets</source>
|
||||
@@ -11760,7 +11761,7 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
|
||||
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
|
||||
<source>phraseanet:: preview</source>
|
||||
<target state="translated">Prévisualisation</target>
|
||||
<jms:reference-file line="25">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
|
||||
@@ -11834,7 +11835,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>
|
||||
</trans-unit>
|
||||
<trans-unit id="bf7028b694aea3fc9ede5014a9f8b5d617b83b6f" resname="phraseanet::account: << your account can be deleted via admin interface >> " approved="yes">
|
||||
<source>phraseanet::account: << your account can be deleted via admin interface >></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>
|
||||
<jms:reference-file line="289">web/account/account.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
@@ -12146,12 +12147,12 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
|
||||
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
|
||||
<source>print:: Choose subdef for preview</source>
|
||||
<target state="needs-translation">Sélectionner une sous-définition pour l'impression de la prévisualisation</target>
|
||||
<jms:reference-file line="125">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
|
||||
<source>print:: Choose subdef for thumbnail</source>
|
||||
<target state="translated">Sélectionner la sous-définition pour l'impression de la vignette</target>
|
||||
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="143">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
|
||||
<source>print:: add and remember password to protect the pdf</source>
|
||||
@@ -12161,32 +12162,32 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
|
||||
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback" approved="yes">
|
||||
<source>print:: basket feedback</source>
|
||||
<target state="translated">Rapport de validation avec description</target>
|
||||
<jms:reference-file line="18">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="26">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="caf52ea38dea74643f03f40f3e9bae808f90d1f7" resname="print:: basket feedback only" approved="yes">
|
||||
<source>print:: basket feedback only</source>
|
||||
<target state="translated">Rapport de validation</target>
|
||||
<jms:reference-file line="14">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="22">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
|
||||
<source>print:: choose filename</source>
|
||||
<target state="needs-translation">Définition du nom des fichiers téléchargés</target>
|
||||
<jms:reference-file line="105">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="106">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
|
||||
<source>print:: choose model</source>
|
||||
<target state="translated">Choisir un gabarit d'impression</target>
|
||||
<jms:reference-file line="5">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="13">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
|
||||
<source>print:: day</source>
|
||||
<target state="translated">Jour</target>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description" approved="yes">
|
||||
<source>print:: description</source>
|
||||
<target state="translated">Notice seule</target>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
|
||||
<source>print:: download</source>
|
||||
@@ -12198,107 +12199,107 @@ Si vous recevez cet e-mail sans l'avoir sollicité, merci de l'ignorer ou de le
|
||||
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
|
||||
<source>print:: element downloadable</source>
|
||||
<target state="translated">Choisir la sous définition téléchargée</target>
|
||||
<jms:reference-file line="89">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="90">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
|
||||
<source>print:: element printable on preview model</source>
|
||||
<target state="translated">Sous définition disponible</target>
|
||||
<jms:reference-file line="136">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
|
||||
<source>print:: element printable on thumbnail model</source>
|
||||
<target state="translated">Sous définition disponible</target>
|
||||
<jms:reference-file line="152">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="154">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
|
||||
<source>print:: hour</source>
|
||||
<target state="translated">Heure</target>
|
||||
<jms:reference-file line="98">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
|
||||
<source>print:: image de choix et description</source>
|
||||
<target state="translated">Prévisualisation et notice d'indexation</target>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
|
||||
<source>print:: image de choix et description avec planche contact</source>
|
||||
<target state="translated">Prévisualisation et notice avec planche contact</target>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
|
||||
<source>print:: image de choix seulement</source>
|
||||
<target state="translated">Prévisualisation</target>
|
||||
<jms:reference-file line="29">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
|
||||
<source>print:: imagette</source>
|
||||
<target state="translated">Vignette</target>
|
||||
<jms:reference-file line="46">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
|
||||
<source>print:: liste d'imagettes</source>
|
||||
<target state="translated">Liste de vignette(s) avec notice(s)</target>
|
||||
<jms:reference-file line="50">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
|
||||
<source>print:: month</source>
|
||||
<target state="translated">Mois</target>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="102">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
|
||||
<source>print:: original media name</source>
|
||||
<target state="needs-translation">Nom original du fichier</target>
|
||||
<jms:reference-file line="112">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="113">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
|
||||
<source>print:: pdf description</source>
|
||||
<target state="translated">Message (optionnel)</target>
|
||||
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="10">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ab85773220ced0dddd0e679a51116015c6436143" resname="print:: pdf title">
|
||||
<source>print:: pdf title</source>
|
||||
<target state="translated">Titre du PDF (optionnel)</target>
|
||||
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="6">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
|
||||
<source>print:: planche contact (mosaique)</source>
|
||||
<target state="translated">Planche contact</target>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
|
||||
<source>print:: some options</source>
|
||||
<target state="translated">Options supplémentaires</target>
|
||||
<jms:reference-file line="59">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="67">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
|
||||
<source>print:: subdef mapping</source>
|
||||
<target state="translated">Définir les sous définitions utilisées pour l'impression</target>
|
||||
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
|
||||
<source>print:: subdef url ttl</source>
|
||||
<target state="needs-translation">Durée de validité du lien de téléchargement</target>
|
||||
<jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="96">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
|
||||
<source>print:: title</source>
|
||||
<target state="needs-translation">Le titre du document</target>
|
||||
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="109">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
|
||||
<source>print:: warning! Only available image for chosen subdef is printed</source>
|
||||
<target state="translated">Si la sous définition choisie n'existe pas, elle sera remplacée par une image de substitution</target>
|
||||
<jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
|
||||
<source>print:: warning! Only available media for chosen subdef is downloadable</source>
|
||||
<target state="needs-translation">Laisser la durée vide (ou 0) pour une validité permanente</target>
|
||||
<jms:reference-file line="92">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="93">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
|
||||
<source>print:: week</source>
|
||||
<target state="needs-translation">Semaine</target>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : " approved="yes">
|
||||
<source>print_feedback:: Document generated on :</source>
|
||||
@@ -13397,56 +13398,71 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
|
||||
<trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes">
|
||||
<source>publication : autheur</source>
|
||||
<target state="translated">Auteur</target>
|
||||
<jms:reference-file line="51">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="12f6f5d3ef3c414e9819bcf0fbbdaf454ce0fd27" resname="publication : email autheur" approved="yes">
|
||||
<source>publication : email autheur</source>
|
||||
<target state="translated">Adresse e-mail de l'auteur</target>
|
||||
<jms:reference-file line="53">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="47">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ccb2f7d7041e31cd822bd95ee74b5f9b38d9f7ac" resname="publication : sous titre" approved="yes">
|
||||
<source>publication : sous titre</source>
|
||||
<target state="translated">Sous-titre</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="e53680d42ba7c2071293a23790dfaef8d0761e60" resname="publication : subtitle alert" approved="yes">
|
||||
<source>publication : subtitle alert</source>
|
||||
<target state="translated">Nombre de caractères supérieur à 1024</target>
|
||||
<jms:reference-file line="48">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="42">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="34">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="3cc295db2f960fa339ba3b57e33fe421923e3026" resname="publication : subtitle warning" approved="yes">
|
||||
<source>publication : subtitle warning</source>
|
||||
<target state="translated">1024 Caractères Max</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="af22a65a7f5adb86b9f18a891c7a895146af5f23" resname="publication : title alert" approved="yes">
|
||||
<source>publication : title alert</source>
|
||||
<target state="translated">Nombre de caractères supérieur à 128</target>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="31">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="856fe6736a6901d5c5b1e079b82ce987dd06ff7b" resname="publication : title warning" approved="yes">
|
||||
<source>publication : title warning</source>
|
||||
<target state="translated">128 Caractères Max</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be21ab93e45780fe4f40141bc3569f200fb4a028" resname="publication : titre" approved="yes">
|
||||
<source>publication : titre</source>
|
||||
<target state="translated">Titre de la publication</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a85c5b39743bad12b07c179a912cf5dbc47860f8" resname="publication:: %count% users to notify">
|
||||
<source>publication:: %count% users to notify</source>
|
||||
<target state="new">publication:: %count% users to notify</target>
|
||||
<jms:reference-file line="149">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c4664885fa2a9f300cc01beed066cfcfafe4dd39" resname="publication:: no feed selected">
|
||||
<source>publication:: no feed selected</source>
|
||||
<target state="new">publication:: no feed selected</target>
|
||||
<jms:reference-file line="143">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ca39344d1a31b5ef8ebb4f9104fd83a5d70a3d46" resname="publication:: notification done on">
|
||||
<source>publication:: notification done on</source>
|
||||
<target state="new">publication:: notification done on</target>
|
||||
<jms:reference-file line="54">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="02387557776e7e3b2a78b21c54e9fb019a9a6fc3" resname="publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." approved="yes">
|
||||
<source>publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications.</source>
|
||||
<target state="translated">Voici votre fil RSS personnel. Il vous permettra d'être tenu informé des publications.</target>
|
||||
<jms:reference-file line="243">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="268">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="285">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="310">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bc8cb61c550777cb4f094762ef7744693875ce09" resname="publications:: s'abonner aux publications" approved="yes">
|
||||
<source>publications:: s'abonner aux publications</source>
|
||||
@@ -13457,20 +13473,20 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
|
||||
<trans-unit id="d16bcb6609333ab86ad12c169212d30658b18ed4" resname="publications::Ne le partagez pas, il est strictement confidentiel" approved="yes">
|
||||
<source>publications::Ne le partagez pas, il est strictement confidentiel</source>
|
||||
<target state="translated">Ne le partagez pas, il est strictement confidentiel</target>
|
||||
<jms:reference-file line="245">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="270">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="287">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="312">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bf670e94fb7cc858d6c28745ea4fd8248eed01fb" resname="publications::copy" approved="yes">
|
||||
<source>publications::copy</source>
|
||||
<target state="translated">Copier l'url</target>
|
||||
<jms:reference-file line="247">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="272">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="289">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="314">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="317aac7149d4bb63238dbe1f9461b3d817f1ff65" resname="publications::votre rss personnel" approved="yes">
|
||||
<source>publications::votre rss personnel</source>
|
||||
<target state="translated">Votre rss personnel</target>
|
||||
<jms:reference-file line="248">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="273">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="290">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="315">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="70e2a7238a2b25916f8dda4ca72e2b8617edde67" resname="push::mail:: Rapport de validation de %user% pour %title%" approved="yes">
|
||||
<source>push::mail:: Rapport de validation de %user% pour %title%</source>
|
||||
@@ -14588,7 +14604,7 @@ Attention: les valeurs actuellement en place seront écrasées par ces nouvelles
|
||||
<jms:reference-file line="1327">web/thesaurus/thesaurus.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="33df70d7fa528a31071e11d1b987b49dc947ce16" resname="thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)" approved="yes">
|
||||
<source>thesaurus:: Supprimer cette branche ?&#10;(les termes concernes remonteront en candidats a la prochaine indexation)</source>
|
||||
<source><![CDATA[thesaurus:: Supprimer cette branche ? (les termes concernes remonteront en candidats a la prochaine indexation)]]></source>
|
||||
<target state="translated"><![CDATA[Supprimer cette branche ? (les termes concernés remonteront en candidats à la prochaine indexation)]]></target>
|
||||
<jms:reference-file line="536">web/thesaurus/thesaurus.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?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">
|
||||
<file date="2022-02-10T14:28:18Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:10:45Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
@@ -620,7 +620,7 @@
|
||||
<trans-unit id="43c8f4baa612c748fb9c0b6672d77827013ff2be" resname="Action Forbidden : You are not the publisher" approved="yes">
|
||||
<source>Action Forbidden : You are not the publisher</source>
|
||||
<target state="translated">Verboden actie : U bent niet de publisher</target>
|
||||
<jms:reference-file line="189">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="231">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c3cd636a585b20c40ac2df5ffb403e83cb2eef51" resname="Actions" approved="yes">
|
||||
<source>Actions</source>
|
||||
@@ -3333,8 +3333,8 @@
|
||||
<trans-unit id="246a65679a39e030c98cad396903b0a3d8874dbc" resname="Fils disponibles" approved="yes">
|
||||
<source>Fils disponibles</source>
|
||||
<target state="translated">Beschikbare paden</target>
|
||||
<jms:reference-file line="58">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="44">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="61">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d7decf1aa22b02ae8abf9a96849ee423eee838e4" resname="Filter">
|
||||
<source>Filter</source>
|
||||
@@ -4736,7 +4736,7 @@
|
||||
<trans-unit id="665a328fd4112e6d1d5600a541f322438eae5605" resname="None of the selected records can be printed" approved="yes">
|
||||
<source>None of the selected records can be printed</source>
|
||||
<target state="translated">Geen enkele van de geselecteerde records kunnen geprint worden</target>
|
||||
<jms:reference-file line="163">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="166">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="7c12e38fb384f87d975fd0ebf1070b400504663f" resname="None of the selected records can be pushed." approved="yes">
|
||||
<source>None of the selected records can be pushed.</source>
|
||||
@@ -4783,7 +4783,8 @@
|
||||
<trans-unit id="3ccc3824ae2ffdfea7482564cbc8cf35de78766d" resname="Notify users about this publication" approved="yes">
|
||||
<source>Notify users about this publication</source>
|
||||
<target state="translated">Meld gebruikers over deze publicatie</target>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="56">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="50">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="b60af374cd884ac6a6ae5b76829ba6efa085f0f7" resname="Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations" approved="yes">
|
||||
<source>Nous vous rappelons qu'il est de votre responsabilité de vous assurer que le contenu de la vidéo que vous allez mettre en ligne est conforme aux conditions d'utilisations</source>
|
||||
@@ -6865,7 +6866,7 @@
|
||||
<trans-unit id="19a0de998e454fffb6e0636256a5bdcdccbb9033" resname="This feed is public" approved="yes">
|
||||
<source>This feed is public</source>
|
||||
<target state="translated">Deze feed is publiek</target>
|
||||
<jms:reference-file line="65">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="68">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="89">admin/publications/list.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="dedbaded6d5a4ed17eefa2e4ee3eee026b7d1d11" resname="This field is required" approved="yes">
|
||||
@@ -9942,7 +9943,7 @@
|
||||
<trans-unit id="b93e2160edf563e86eb2e7ef4d92dce4856759ee" resname="boutton::imprimer" approved="yes">
|
||||
<source>boutton::imprimer</source>
|
||||
<target state="translated">Print</target>
|
||||
<jms:reference-file line="159">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="162">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1e4c65d295605a0e884818b5c06d32a63fd692d5" resname="boutton::modifier" approved="yes">
|
||||
<source>boutton::modifier</source>
|
||||
@@ -10571,7 +10572,7 @@
|
||||
<trans-unit id="d67a3a7adb767f230b62fd72ec7f3d8624ca8e33" resname="export:: erreur : aucun document selectionne" approved="yes">
|
||||
<source>export:: erreur : aucun document selectionne</source>
|
||||
<target state="translated">Erreur : geen enkel document geslecteerd</target>
|
||||
<jms:reference-file line="165">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="168">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="87ebe3542857dc472902c8fa173b6147a8ed6f86" resname="export:: telechargement" approved="yes">
|
||||
<source>export:: telechargement</source>
|
||||
@@ -11691,7 +11692,7 @@
|
||||
<trans-unit id="674a843ed98ba8a423f7bbdbee30c9ca1a4aab96" resname="phraseanet:: basket feedback">
|
||||
<source>phraseanet:: basket feedback</source>
|
||||
<target state="new">phraseanet:: basket feedback</target>
|
||||
<jms:reference-file line="9">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="17">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="20f45a77e291b513c2fb6c389574ccca61cfb141" resname="phraseanet:: baskets">
|
||||
<source>phraseanet:: baskets</source>
|
||||
@@ -11769,7 +11770,7 @@
|
||||
<trans-unit id="da1f4cb9f98aef274dbb8f5992dedaf20e91ea71" resname="phraseanet:: preview" approved="yes">
|
||||
<source>phraseanet:: preview</source>
|
||||
<target state="translated">Voorvertoning</target>
|
||||
<jms:reference-file line="25">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="267">prod/actions/edit_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2baca947f8536e2ff6bab1c45c1876c04706a6a0" resname="phraseanet:: propositions" approved="yes">
|
||||
@@ -12155,12 +12156,12 @@
|
||||
<trans-unit id="5dfd076ab7424cb8f409096cd1fcc674f4634386" resname="print:: Choose subdef for preview">
|
||||
<source>print:: Choose subdef for preview</source>
|
||||
<target state="new">print:: Choose subdef for preview</target>
|
||||
<jms:reference-file line="125">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="127">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="175a292d892bd53e1449e70d810c7c8f5a799a82" resname="print:: Choose subdef for thumbnail">
|
||||
<source>print:: Choose subdef for thumbnail</source>
|
||||
<target state="new">print:: Choose subdef for thumbnail</target>
|
||||
<jms:reference-file line="141">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="143">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="803a88bdcb07cb8055e10ca28aee9b3c74992da6" resname="print:: add and remember password to protect the pdf">
|
||||
<source>print:: add and remember password to protect the pdf</source>
|
||||
@@ -12170,32 +12171,32 @@
|
||||
<trans-unit id="ab6e7dd76557336eb64bba71b09faadb822dd91f" resname="print:: basket feedback">
|
||||
<source>print:: basket feedback</source>
|
||||
<target state="new">print:: basket feedback</target>
|
||||
<jms:reference-file line="18">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="26">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="caf52ea38dea74643f03f40f3e9bae808f90d1f7" resname="print:: basket feedback only">
|
||||
<source>print:: basket feedback only</source>
|
||||
<target state="new">print:: basket feedback only</target>
|
||||
<jms:reference-file line="14">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="22">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed8bd782df1ab7fd098439e5832a0744cad5d051" resname="print:: choose filename">
|
||||
<source>print:: choose filename</source>
|
||||
<target state="new">print:: choose filename</target>
|
||||
<jms:reference-file line="105">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="106">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="50176955761a18d473255055c57e8653cc1be124" resname="print:: choose model">
|
||||
<source>print:: choose model</source>
|
||||
<target state="new">print:: choose model</target>
|
||||
<jms:reference-file line="5">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="13">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="1eaa7dd62af622612377b17dacd8b2ebbee9ff90" resname="print:: day">
|
||||
<source>print:: day</source>
|
||||
<target state="new">print:: day</target>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d369ca0ef132e64f45e4cef5bfa2aaff9104a276" resname="print:: description">
|
||||
<source>print:: description</source>
|
||||
<target state="new">print:: description</target>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="49">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="8e7fd7ad380fbbffb814c1bf6dcc60fbbc57ec39" resname="print:: download">
|
||||
<source>print:: download</source>
|
||||
@@ -12207,107 +12208,107 @@
|
||||
<trans-unit id="502dbd857425df79d57c72240847110224a79aa6" resname="print:: element downloadable">
|
||||
<source>print:: element downloadable</source>
|
||||
<target state="new">print:: element downloadable</target>
|
||||
<jms:reference-file line="89">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="90">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="732e978726502a9af6249fecfbe0aa53c3c8cf25" resname="print:: element printable on preview model">
|
||||
<source>print:: element printable on preview model</source>
|
||||
<target state="new">print:: element printable on preview model</target>
|
||||
<jms:reference-file line="136">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="138">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="2c2b50d9e4af36a43e41cb3f95fd578c869d57cd" resname="print:: element printable on thumbnail model">
|
||||
<source>print:: element printable on thumbnail model</source>
|
||||
<target state="new">print:: element printable on thumbnail model</target>
|
||||
<jms:reference-file line="152">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="154">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="03dcea0e67ff75a7d366e7abd21c7124ed67dc92" resname="print:: hour">
|
||||
<source>print:: hour</source>
|
||||
<target state="new">print:: hour</target>
|
||||
<jms:reference-file line="98">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="99">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="6f25fd9ac189dce63bc51d1eccc253051ada2bf4" resname="print:: image de choix et description" approved="yes">
|
||||
<source>print:: image de choix et description</source>
|
||||
<target state="translated">Het gekozen beeld en de beschrijving</target>
|
||||
<jms:reference-file line="33">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="41">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ed44939b592221e0287a12c4bd83cea4d62b5ee3" resname="print:: image de choix et description avec planche contact" approved="yes">
|
||||
<source>print:: image de choix et description avec planche contact</source>
|
||||
<target state="translated">Het gekozen beeld en de beschrijving met de contact fiche</target>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="564995e2b08aa43131fc90cd342b5abd9a995559" resname="print:: image de choix seulement" approved="yes">
|
||||
<source>print:: image de choix seulement</source>
|
||||
<target state="translated">Enkel het gekozen beeld</target>
|
||||
<jms:reference-file line="29">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="36f3ca7be80558bac003359763567e8a23be4c0a" resname="print:: imagette" approved="yes">
|
||||
<source>print:: imagette</source>
|
||||
<target state="translated">Thumbnail</target>
|
||||
<jms:reference-file line="46">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="04bf007de37e21c5f9c47f069856c4146eef1f4a" resname="print:: liste d'imagettes" approved="yes">
|
||||
<source>print:: liste d'imagettes</source>
|
||||
<target state="translated">Thumbnail lijst</target>
|
||||
<jms:reference-file line="50">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="58">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="81f119c55f14043d43beccb64c0bf0b090a624c8" resname="print:: month">
|
||||
<source>print:: month</source>
|
||||
<target state="new">print:: month</target>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="102">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ad790dd900033c4e8547f115ae71efce8809bf88" resname="print:: original media name">
|
||||
<source>print:: original media name</source>
|
||||
<target state="new">print:: original media name</target>
|
||||
<jms:reference-file line="112">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="113">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="49bc88aef571df633eac0a80173eb1c76a9d06d7" resname="print:: pdf description">
|
||||
<source>print:: pdf description</source>
|
||||
<target state="new">print:: pdf description</target>
|
||||
<jms:reference-file line="65">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="10">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ab85773220ced0dddd0e679a51116015c6436143" resname="print:: pdf title">
|
||||
<source>print:: pdf title</source>
|
||||
<target state="new">print:: pdf title</target>
|
||||
<jms:reference-file line="61">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="6">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="f9a447b4210f0a24a385031830ab4848abb61793" resname="print:: planche contact (mosaique)" approved="yes">
|
||||
<source>print:: planche contact (mosaique)</source>
|
||||
<target state="translated">Contact fiche (mosaic)</target>
|
||||
<jms:reference-file line="54">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="62">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a37895cb1cf6b1e86a9a4e1581d5b682568b44fa" resname="print:: some options">
|
||||
<source>print:: some options</source>
|
||||
<target state="new">print:: some options</target>
|
||||
<jms:reference-file line="59">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="67">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be0543f570963b35cd3c119d878d45410b363316" resname="print:: subdef mapping">
|
||||
<source>print:: subdef mapping</source>
|
||||
<target state="new">print:: subdef mapping</target>
|
||||
<jms:reference-file line="118">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="120">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="64522de5f98e57af6d90d10707181ef4fecdafdd" resname="print:: subdef url ttl">
|
||||
<source>print:: subdef url ttl</source>
|
||||
<target state="new">print:: subdef url ttl</target>
|
||||
<jms:reference-file line="95">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="96">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="501f2f6dd77b371a4408b96b29d4045a8e8d15ba" resname="print:: title">
|
||||
<source>print:: title</source>
|
||||
<target state="new">print:: title</target>
|
||||
<jms:reference-file line="108">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="109">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="698d678afe4394e810eda66c18abb93d7c5b8a00" resname="print:: warning! Only available image for chosen subdef is printed">
|
||||
<source>print:: warning! Only available image for chosen subdef is printed</source>
|
||||
<target state="new">print:: warning! Only available image for chosen subdef is printed</target>
|
||||
<jms:reference-file line="121">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="123">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="d16a375bd489fa9232346a1c6e48570bbf53a479" resname="print:: warning! Only available media for chosen subdef is downloadable">
|
||||
<source>print:: warning! Only available media for chosen subdef is downloadable</source>
|
||||
<target state="new">print:: warning! Only available media for chosen subdef is downloadable</target>
|
||||
<jms:reference-file line="92">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="93">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="52acc8afb73e42ebb15886d76b723d8e8907d8eb" resname="print:: week">
|
||||
<source>print:: week</source>
|
||||
<target state="new">print:: week</target>
|
||||
<jms:reference-file line="100">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="101">prod/actions/printer_default.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="55f21f807565b041654d25f1167637cfdb1b272c" resname="print_feedback:: Document generated on : ">
|
||||
<source>print_feedback:: Document generated on : </source>
|
||||
@@ -13397,56 +13398,71 @@
|
||||
<trans-unit id="9647ab4603346566d2218fda731606baafcbe408" resname="publication : autheur" approved="yes">
|
||||
<source>publication : autheur</source>
|
||||
<target state="translated">Auteur</target>
|
||||
<jms:reference-file line="51">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="12f6f5d3ef3c414e9819bcf0fbbdaf454ce0fd27" resname="publication : email autheur" approved="yes">
|
||||
<source>publication : email autheur</source>
|
||||
<target state="translated">Email auteur</target>
|
||||
<jms:reference-file line="53">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="47">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ccb2f7d7041e31cd822bd95ee74b5f9b38d9f7ac" resname="publication : sous titre" approved="yes">
|
||||
<source>publication : sous titre</source>
|
||||
<target state="translated">Onder titel</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="e53680d42ba7c2071293a23790dfaef8d0761e60" resname="publication : subtitle alert">
|
||||
<source>publication : subtitle alert</source>
|
||||
<target state="new">publication : subtitle alert</target>
|
||||
<jms:reference-file line="48">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="42">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="34">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="3cc295db2f960fa339ba3b57e33fe421923e3026" resname="publication : subtitle warning">
|
||||
<source>publication : subtitle warning</source>
|
||||
<target state="new">publication : subtitle warning</target>
|
||||
<jms:reference-file line="46">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="40">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="32">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="af22a65a7f5adb86b9f18a891c7a895146af5f23" resname="publication : title alert">
|
||||
<source>publication : title alert</source>
|
||||
<target state="new">publication : title alert</target>
|
||||
<jms:reference-file line="45">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="39">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="31">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="856fe6736a6901d5c5b1e079b82ce987dd06ff7b" resname="publication : title warning">
|
||||
<source>publication : title warning</source>
|
||||
<target state="new">publication : title warning</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="be21ab93e45780fe4f40141bc3569f200fb4a028" resname="publication : titre" approved="yes">
|
||||
<source>publication : titre</source>
|
||||
<target state="translated">Titel</target>
|
||||
<jms:reference-file line="43">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="37">actions/publish/publish.html.twig</jms:reference-file>
|
||||
<jms:reference-file line="29">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="a85c5b39743bad12b07c179a912cf5dbc47860f8" resname="publication:: %count% users to notify">
|
||||
<source>publication:: %count% users to notify</source>
|
||||
<target state="new">publication:: %count% users to notify</target>
|
||||
<jms:reference-file line="149">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="c4664885fa2a9f300cc01beed066cfcfafe4dd39" resname="publication:: no feed selected">
|
||||
<source>publication:: no feed selected</source>
|
||||
<target state="new">publication:: no feed selected</target>
|
||||
<jms:reference-file line="143">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="ca39344d1a31b5ef8ebb4f9104fd83a5d70a3d46" resname="publication:: notification done on">
|
||||
<source>publication:: notification done on</source>
|
||||
<target state="new">publication:: notification done on</target>
|
||||
<jms:reference-file line="54">actions/publish/publish_edit.html.twig</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="02387557776e7e3b2a78b21c54e9fb019a9a6fc3" resname="publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications." approved="yes">
|
||||
<source>publication::Voici votre fil RSS personnel. Il vous permettra d'etre tenu au courrant des publications.</source>
|
||||
<target state="translated">Hier uw persoonlijke RSS feed. Deze laat u toe om op de hoogte te blijven van de publicaties.</target>
|
||||
<jms:reference-file line="243">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="268">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="285">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="310">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bc8cb61c550777cb4f094762ef7744693875ce09" resname="publications:: s'abonner aux publications" approved="yes">
|
||||
<source>publications:: s'abonner aux publications</source>
|
||||
@@ -13457,20 +13473,20 @@
|
||||
<trans-unit id="d16bcb6609333ab86ad12c169212d30658b18ed4" resname="publications::Ne le partagez pas, il est strictement confidentiel" approved="yes">
|
||||
<source>publications::Ne le partagez pas, il est strictement confidentiel</source>
|
||||
<target state="translated">Deel deze niet, hij is strikt confidentieel</target>
|
||||
<jms:reference-file line="245">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="270">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="287">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="312">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="bf670e94fb7cc858d6c28745ea4fd8248eed01fb" resname="publications::copy">
|
||||
<source>publications::copy</source>
|
||||
<target state="new">publications::copy</target>
|
||||
<jms:reference-file line="247">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="272">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="289">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="314">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="317aac7149d4bb63238dbe1f9461b3d817f1ff65" resname="publications::votre rss personnel" approved="yes">
|
||||
<source>publications::votre rss personnel</source>
|
||||
<target state="translated">Uw persoonlijke rss feed</target>
|
||||
<jms:reference-file line="248">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="273">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="290">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
<jms:reference-file line="315">Controller/Prod/FeedController.php</jms:reference-file>
|
||||
</trans-unit>
|
||||
<trans-unit id="70e2a7238a2b25916f8dda4ca72e2b8617edde67" resname="push::mail:: Rapport de validation de %user% pour %title%">
|
||||
<source>push::mail:: Rapport de validation de %user% pour %title%</source>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?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">
|
||||
<file date="2022-02-10T14:27:27Z" source-language="en" target-language="de" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:09:55Z" source-language="en" target-language="de" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?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">
|
||||
<file date="2022-02-10T14:27:41Z" source-language="en" target-language="en" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:10:10Z" source-language="en" target-language="en" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?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">
|
||||
<file date="2022-02-10T14:27:58Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:10:26Z" source-language="en" target-language="fr" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<?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">
|
||||
<file date="2022-02-10T14:28:18Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available">
|
||||
<file date="2022-02-15T09:10:46Z" source-language="en" target-language="nl" datatype="plaintext" original="not.available">
|
||||
<header>
|
||||
<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>
|
||||
|
@@ -33,13 +33,7 @@
|
||||
{% set title = publishing.basket().getName() %}
|
||||
{% set desc = publishing.basket().getDescription() %}
|
||||
{% endif %}
|
||||
{% if app['conf'].get(['registry', 'actions', 'enable-feed-notification']) %}
|
||||
<label class="checkbox">
|
||||
<input class="required_text checkbox" type="checkbox" name="notify" id="feed_add_notify" value="1" style="min-height: 0; height: auto" />
|
||||
<i class="icon fa fa-envelope"
|
||||
aria-hidden="true"></i> {{ 'Notify users about this publication' | trans }}
|
||||
</label>
|
||||
{% endif %}
|
||||
|
||||
<label for="feed_add_title"><b>{{ 'publication : titre' | trans }}</b> <span>( {{ 'publication : title warning' | trans }} )</span></label>
|
||||
<input class="required_text input-block-level" style="max-width:500px" type="text" name="title" id="feed_add_title" value="{{title}}" />
|
||||
<label><span class="feed_title_warning feed_warning">{{ 'publication : title alert' | trans }}</span></label>
|
||||
@@ -54,6 +48,15 @@
|
||||
<input class="required_text input-block-level" style="max-width:500px" type="text" name="author_mail" id="feed_add_author_mail" value="{{ app.getAuthenticatedUser().getEmail() }}" />
|
||||
</div>
|
||||
<div class="span4">
|
||||
{% if app['conf'].get(['registry', 'actions', 'enable-feed-notification']) %}
|
||||
<label class="checkbox">
|
||||
<input class="required_text checkbox" type="checkbox" name="notify" id="feed_add_notify"
|
||||
value="1" style="min-height: 0; height: auto" data-path="{{ path('prod_feeds_notify_count') }}"/>
|
||||
<i class="icon fa fa-envelope"
|
||||
aria-hidden="true"></i> {{ 'Notify users about this publication' | trans }}
|
||||
<span id="publication-notify-message" style="color: #10a4cc;"></span>
|
||||
</label>
|
||||
{% endif %}
|
||||
<div class="feeds">
|
||||
<label>{{ 'Fils disponibles' | trans }}</label>
|
||||
<div class="list">
|
||||
|
@@ -40,6 +40,20 @@
|
||||
<input class="required_text input-block-level" style="max-width:500px" type="text" name="author_mail" id="feed_add_author_mail" value="{{ entry.getAuthorEmail() }}" />
|
||||
</div>
|
||||
<div class="span4">
|
||||
{% if app['conf'].get(['registry', 'actions', 'enable-feed-notification']) %}
|
||||
{% if entry.getNotifyEmailOn() is null %}
|
||||
<label class="checkbox">
|
||||
<input class="required_text checkbox" type="checkbox" name="notify"
|
||||
id="feed_add_notify" value="1" style="min-height: 0; height: auto"
|
||||
data-path="{{ path('prod_feeds_notify_count') }}"/>
|
||||
<i class="icon fa fa-envelope"
|
||||
aria-hidden="true"></i> {{ 'Notify users about this publication' | trans }}
|
||||
<span id="publication-notify-message" style="color: #10a4cc;"></span>
|
||||
</label>
|
||||
{% else %}
|
||||
<span style="color: #10a4cc;">{{ 'publication:: notification done on'| trans }} : {{ app['date-formatter'].getDateTranslated(entry.getNotifyEmailOn()) }}</span>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
<div class="feeds">
|
||||
<label>{{ 'Fils disponibles' | trans }}</label>
|
||||
<div class="list">
|
||||
|
Reference in New Issue
Block a user